From 5692209782f4f46b52a3e42d59788a2c925ede4a Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Tue, 23 Apr 2024 01:02:15 +0200 Subject: [PATCH 1/3] fix: Adjust styles for Nextcloud 30 (default heading styles) Signed-off-by: Ferdinand Thiessen --- src/components/Card.vue | 6 ++++-- src/components/SlideShow.vue | 6 +++--- src/components/WizardPage.vue | 8 +++++--- src/components/pages/KeyNotes.vue | 14 ++++++++++---- src/components/pages/SharePage.vue | 10 +++++++++- 5 files changed, 31 insertions(+), 13 deletions(-) diff --git a/src/components/Card.vue b/src/components/Card.vue index ce565a7e..98355f8d 100644 --- a/src/components/Card.vue +++ b/src/components/Card.vue @@ -42,8 +42,8 @@ const isLink = computed(() => !!props.href) .icon { display: flex; - flex: 0 0 44px; - align-items: center; + flex: 0 0 var(--default-clickable-area); + align-items: start; &:empty { display: none; @@ -51,6 +51,8 @@ const isLink = computed(() => !!props.href) } .heading { + // While this is semantically a heading, visually it should be bold text + font-size: var(--default-font-size); font-weight: bold; margin: 0; } diff --git a/src/components/SlideShow.vue b/src/components/SlideShow.vue index 22a2cfda..edd82c09 100644 --- a/src/components/SlideShow.vue +++ b/src/components/SlideShow.vue @@ -70,12 +70,12 @@ import type { IPage } from '../pages' import { translate as t } from '@nextcloud/l10n' import { imagePath } from '@nextcloud/router' -import NcButton from '@nextcloud/vue/dist/Components/NcButton.js' -import NcIconSvgWrapper from '@nextcloud/vue/dist/Components/NcIconSvgWrapper.js' +import { mdiArrowLeft, mdiArrowRight, mdiClose } from '@mdi/js' import { useIsSmallMobile } from '@nextcloud/vue/dist/Composables/useIsMobile.js' import { computed, ref, useCssModule, watch } from 'vue' +import NcButton from '@nextcloud/vue/dist/Components/NcButton.js' +import NcIconSvgWrapper from '@nextcloud/vue/dist/Components/NcIconSvgWrapper.js' -import { mdiArrowLeft, mdiArrowRight, mdiClose } from '@mdi/js' const props = defineProps<{ pages: IPage[] diff --git a/src/components/WizardPage.vue b/src/components/WizardPage.vue index 80da297f..783363d8 100644 --- a/src/components/WizardPage.vue +++ b/src/components/WizardPage.vue @@ -37,10 +37,12 @@ defineProps<{ .scroller { overflow-y: scroll; - margin-top: calc(var(--default-grid-baseline) * 8); + margin-top: calc(4 * var(--default-grid-baseline)); } .heading { + font-size: 20px; + margin-block: 0; text-align: center; } @@ -53,8 +55,8 @@ defineProps<{ .content { display: flex; flex-wrap: wrap; - gap: calc(var(--default-grid-baseline) * 6); + gap: calc(6 * var(--default-grid-baseline)); justify-content: center; - margin: calc(var(--default-grid-baseline) * 10) 0; + margin: calc(8 * var(--default-grid-baseline)) 0; } diff --git a/src/components/pages/KeyNotes.vue b/src/components/pages/KeyNotes.vue index 01267cd9..f0314990 100644 --- a/src/components/pages/KeyNotes.vue +++ b/src/components/pages/KeyNotes.vue @@ -8,19 +8,19 @@ :title="t('firstrunwizard', 'A collaboration platform that puts you in control')"> - + - + - + - + @@ -37,3 +37,9 @@ defineProps<{ scrollerClasses?: string | string[] | Record }>() + + diff --git a/src/components/pages/SharePage.vue b/src/components/pages/SharePage.vue index 89b7870a..0b01a7a6 100644 --- a/src/components/pages/SharePage.vue +++ b/src/components/pages/SharePage.vue @@ -10,7 +10,9 @@
-

{{ t('firstrunwizard', 'Share your opinion about Nextcloud Hub {version}', { version: HubRelease.version }) }}

+

+ {{ t('firstrunwizard', 'Share your opinion about Nextcloud Hub {version}', { version: HubRelease.version }) }} +

From 731866867352d506ea708eaaad762f141fd04b82 Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Tue, 6 Aug 2024 15:47:07 +0200 Subject: [PATCH 2/3] fix: Adust menu button logic for Nextcloud 30 changes Signed-off-by: Ferdinand Thiessen --- src/app-menu.js | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/app-menu.js b/src/app-menu.js index 0fd9c8ef..fd0396ff 100644 --- a/src/app-menu.js +++ b/src/app-menu.js @@ -10,12 +10,10 @@ import 'vite/modulepreload-polyfill' * Handle adding the first-run-wizard as an app menu entry */ document.addEventListener('DOMContentLoaded', function() { - const aboutEntry = document.querySelector('#firstrunwizard_about button') + const aboutEntry = () => document.querySelector('#firstrunwizard_about') const addListener = () => { - const aboutEntry = document.querySelector('#firstrunwizard_about button') - - aboutEntry.addEventListener('click', async function(event) { + aboutEntry().addEventListener('click', async function(event) { event.stopPropagation() event.preventDefault() const focusReturn = document.querySelector('[aria-controls="header-menu-user-menu"]') ?? undefined @@ -25,7 +23,7 @@ document.addEventListener('DOMContentLoaded', function() { }) } - if (aboutEntry) { + if (aboutEntry()) { addListener() } else { window._nc_event_bus.subscribe('core:user-menu:mounted', addListener) From fdfcb9047775e8e408a5b20cab89d24e735bea64 Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Tue, 6 Aug 2024 15:47:30 +0200 Subject: [PATCH 3/3] chore: Compile assets Signed-off-by: Ferdinand Thiessen Signed-off-by: nextcloud-command --- css/firstrunwizard-main.css | 2 +- js/firstrunwizard-about.mjs | 2 +- js/firstrunwizard-about.mjs.map | 2 +- js/main.chunk.mjs | 2 +- js/main.chunk.mjs.map | 2 +- src/components/SlideShow.vue | 1 - 6 files changed, 5 insertions(+), 6 deletions(-) diff --git a/css/firstrunwizard-main.css b/css/firstrunwizard-main.css index ee6921e0..ff5e39ff 100644 --- a/css/firstrunwizard-main.css +++ b/css/firstrunwizard-main.css @@ -1 +1 @@ -.material-design-icon[data-v-0d4052a3]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.modal-mask[data-v-0d4052a3]{position:fixed;z-index:9998;top:0;left:0;display:block;width:100%;height:100%;background-color:#00000080}.modal-mask--dark[data-v-0d4052a3]{background-color:#000000eb}.modal-header[data-v-0d4052a3]{position:absolute;z-index:10001;top:0;right:0;left:0;display:flex!important;align-items:center;justify-content:center;width:100%;height:50px;overflow:hidden;transition:opacity .25s,visibility .25s}.modal-header__name[data-v-0d4052a3]{overflow-x:hidden;box-sizing:border-box;width:100%;padding:0 calc(var(--default-clickable-area) * 3) 0 12px;transition:padding ease .1s;white-space:nowrap;text-overflow:ellipsis;font-size:16px;margin-block:0}@media only screen and (min-width: 1024px){.modal-header__name[data-v-0d4052a3]{padding-left:calc(var(--default-clickable-area) * 3);text-align:center}}.modal-header .icons-menu[data-v-0d4052a3]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end}.modal-header .icons-menu .header-close[data-v-0d4052a3]{display:flex;align-items:center;justify-content:center;box-sizing:border-box;margin:calc((50px - var(--default-clickable-area)) / 2);padding:0}.modal-header .icons-menu .play-pause-icons[data-v-0d4052a3]{position:relative;width:50px;height:50px;margin:0;padding:0;cursor:pointer;border:none;background-color:transparent}.modal-header .icons-menu .play-pause-icons:hover .play-pause-icons__play[data-v-0d4052a3],.modal-header .icons-menu .play-pause-icons:hover .play-pause-icons__pause[data-v-0d4052a3],.modal-header .icons-menu .play-pause-icons:focus .play-pause-icons__play[data-v-0d4052a3],.modal-header .icons-menu .play-pause-icons:focus .play-pause-icons__pause[data-v-0d4052a3]{opacity:1;border-radius:calc(var(--default-clickable-area) / 2);background-color:#7f7f7f40}.modal-header .icons-menu .play-pause-icons__play[data-v-0d4052a3],.modal-header .icons-menu .play-pause-icons__pause[data-v-0d4052a3]{box-sizing:border-box;width:var(--default-clickable-area);height:var(--default-clickable-area);margin:calc((50px - var(--default-clickable-area)) / 2);cursor:pointer;opacity:.7}.modal-header .icons-menu[data-v-0d4052a3] .action-item{margin:calc((50px - var(--default-clickable-area)) / 2)}.modal-header .icons-menu[data-v-0d4052a3] .action-item--single{box-sizing:border-box;width:var(--default-clickable-area);height:var(--default-clickable-area);cursor:pointer;background-position:center;background-size:22px}.modal-header .icons-menu .header-actions[data-v-0d4052a3] button:focus-visible{box-shadow:none!important;outline:2px solid #fff!important}.modal-header .icons-menu[data-v-0d4052a3] .action-item__menutoggle{padding:0}.modal-header .icons-menu[data-v-0d4052a3] .action-item__menutoggle span,.modal-header .icons-menu[data-v-0d4052a3] .action-item__menutoggle svg{width:var(--icon-size);height:var(--icon-size)}.modal-wrapper[data-v-0d4052a3]{display:flex;align-items:center;justify-content:center;box-sizing:border-box;width:100%;height:100%}.modal-wrapper .prev[data-v-0d4052a3],.modal-wrapper .next[data-v-0d4052a3]{z-index:10000;height:35vh;min-height:300px;position:absolute;transition:opacity .25s;color:#fff}.modal-wrapper .prev[data-v-0d4052a3]:focus-visible,.modal-wrapper .next[data-v-0d4052a3]:focus-visible{box-shadow:0 0 0 2px var(--color-primary-element-text);background-color:var(--color-box-shadow)}.modal-wrapper .prev[data-v-0d4052a3]{left:2px}.modal-wrapper .next[data-v-0d4052a3]{right:2px}.modal-wrapper .modal-container[data-v-0d4052a3]{position:relative;display:flex;padding:0;transition:transform .3s ease;border-radius:var(--border-radius-large);background-color:var(--color-main-background);color:var(--color-main-text);box-shadow:0 0 40px #0003}.modal-wrapper .modal-container__close[data-v-0d4052a3]{z-index:1;position:absolute;top:4px;right:4px}.modal-wrapper .modal-container__content[data-v-0d4052a3]{width:100%;min-height:52px;overflow:auto}.modal-wrapper--small>.modal-container[data-v-0d4052a3]{width:400px;max-width:90%;max-height:min(90%,100% - 100px)}.modal-wrapper--normal>.modal-container[data-v-0d4052a3]{max-width:90%;width:600px;max-height:min(90%,100% - 100px)}.modal-wrapper--large>.modal-container[data-v-0d4052a3]{max-width:90%;width:900px;max-height:min(90%,100% - 100px)}.modal-wrapper--full>.modal-container[data-v-0d4052a3]{width:100%;height:calc(100% - var(--header-height));position:absolute;top:50px;border-radius:0}@media only screen and ((max-width: 512px) or (max-height: 400px)){.modal-wrapper .modal-container[data-v-0d4052a3]{max-width:initial;width:100%;max-height:initial;height:calc(100% - var(--header-height));position:absolute;top:50px;border-radius:0}}.fade-enter-active[data-v-0d4052a3],.fade-leave-active[data-v-0d4052a3]{transition:opacity .25s}.fade-enter[data-v-0d4052a3],.fade-leave-to[data-v-0d4052a3]{opacity:0}.fade-visibility-enter[data-v-0d4052a3],.fade-visibility-leave-to[data-v-0d4052a3]{visibility:hidden;opacity:0}.modal-in-enter-active[data-v-0d4052a3],.modal-in-leave-active[data-v-0d4052a3],.modal-out-enter-active[data-v-0d4052a3],.modal-out-leave-active[data-v-0d4052a3]{transition:opacity .25s}.modal-in-enter[data-v-0d4052a3],.modal-in-leave-to[data-v-0d4052a3],.modal-out-enter[data-v-0d4052a3],.modal-out-leave-to[data-v-0d4052a3]{opacity:0}.modal-in-enter .modal-container[data-v-0d4052a3],.modal-in-leave-to .modal-container[data-v-0d4052a3]{transform:scale(.9)}.modal-out-enter .modal-container[data-v-0d4052a3],.modal-out-leave-to .modal-container[data-v-0d4052a3]{transform:scale(1.1)}.modal-mask .play-pause-icons .progress-ring[data-v-0d4052a3]{position:absolute;top:0;left:0;transform:rotate(-90deg)}.modal-mask .play-pause-icons .progress-ring .progress-ring__circle[data-v-0d4052a3]{transition:.1s stroke-dashoffset;transform-origin:50% 50%;animation:progressring-0d4052a3 linear var(--slideshow-duration) infinite;stroke-linecap:round;stroke-dashoffset:94.2477796077;stroke-dasharray:94.2477796077}.modal-mask .play-pause-icons--paused .icon-pause[data-v-0d4052a3]{animation:breath-0d4052a3 2s cubic-bezier(.4,0,.2,1) infinite}.modal-mask .play-pause-icons--paused .progress-ring__circle[data-v-0d4052a3]{animation-play-state:paused!important}@keyframes progressring-0d4052a3{0%{stroke-dashoffset:94.2477796077}to{stroke-dashoffset:0}}@keyframes breath-0d4052a3{0%{opacity:1}50%{opacity:0}to{opacity:1}}.material-design-icon[data-v-3713841c]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.action-items[data-v-3713841c]{display:flex;align-items:center}.action-items>button[data-v-3713841c]{margin-right:calc((var(--default-clickable-area) - 16px) / 2 / 2)}.action-item[data-v-3713841c]{--open-background-color: var(--color-background-hover, $action-background-hover);position:relative;display:inline-block}.action-item.action-item--primary[data-v-3713841c]{--open-background-color: var(--color-primary-element-hover)}.action-item.action-item--secondary[data-v-3713841c]{--open-background-color: var(--color-primary-element-light-hover)}.action-item.action-item--error[data-v-3713841c]{--open-background-color: var(--color-error-hover)}.action-item.action-item--warning[data-v-3713841c]{--open-background-color: var(--color-warning-hover)}.action-item.action-item--success[data-v-3713841c]{--open-background-color: var(--color-success-hover)}.action-item.action-item--tertiary-no-background[data-v-3713841c]{--open-background-color: transparent}.action-item.action-item--open .action-item__menutoggle[data-v-3713841c]{background-color:var(--open-background-color)}.action-item__menutoggle__icon[data-v-3713841c]{width:20px;height:20px;object-fit:contain}.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper{border-radius:var(--border-radius-large);overflow:hidden}.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper .v-popper__inner{border-radius:var(--border-radius-large);padding:4px;max-height:calc(100vh - var(--header-height));overflow:auto}.material-design-icon[data-v-44398b0c]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.button-vue[data-v-44398b0c]{--button-size: var(--default-clickable-area);--button-radius: var(--border-radius-element, calc(var(--button-size) / 2));--button-padding: clamp(var(--default-grid-baseline), var(--button-radius), calc(var(--default-grid-baseline) * 4));position:relative;width:fit-content;overflow:hidden;border:0;padding:0;font-size:var(--default-font-size);font-weight:700;min-height:var(--button-size);min-width:var(--button-size);display:flex;align-items:center;justify-content:center;cursor:pointer;border-radius:var(--button-radius);transition-property:color,border-color,background-color;transition-duration:.1s;transition-timing-function:linear;color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light)}.button-vue--size-small[data-v-44398b0c]{--button-size: var(--clickable-area-small, 24px);--button-radius: var(--border-radius)}.button-vue--size-large[data-v-44398b0c]{--button-size: var(--clickable-area-large, 48px)}.button-vue *[data-v-44398b0c],.button-vue span[data-v-44398b0c]{cursor:pointer}.button-vue[data-v-44398b0c]:focus{outline:none}.button-vue[data-v-44398b0c]:disabled{cursor:default;opacity:.5;filter:saturate(.7)}.button-vue:disabled *[data-v-44398b0c]{cursor:default}.button-vue[data-v-44398b0c]:hover:not(:disabled){background-color:var(--color-primary-element-light-hover)}.button-vue[data-v-44398b0c]:active{background-color:var(--color-primary-element-light)}.button-vue__wrapper[data-v-44398b0c]{display:inline-flex;align-items:center;justify-content:center;width:100%}.button-vue--end .button-vue__wrapper[data-v-44398b0c]{justify-content:end}.button-vue--start .button-vue__wrapper[data-v-44398b0c]{justify-content:start}.button-vue--reverse .button-vue__wrapper[data-v-44398b0c]{flex-direction:row-reverse}.button-vue--reverse.button-vue--icon-and-text[data-v-44398b0c]{padding-inline:var(--button-padding) var(--default-grid-baseline)}.button-vue__icon[data-v-44398b0c]{height:var(--button-size);width:var(--button-size);min-height:var(--button-size);min-width:var(--button-size);display:flex;justify-content:center;align-items:center}.button-vue--size-small .button-vue__icon[data-v-44398b0c]>*{max-height:16px;max-width:16px}.button-vue--size-small .button-vue__icon[data-v-44398b0c] svg{height:16px;width:16px}.button-vue__text[data-v-44398b0c]{font-weight:700;margin-bottom:1px;padding:2px 0;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.button-vue--icon-only[data-v-44398b0c]{line-height:1;width:var(--button-size)!important}.button-vue--text-only[data-v-44398b0c]{padding:0 var(--button-padding)}.button-vue--text-only .button-vue__text[data-v-44398b0c]{margin-left:4px;margin-right:4px}.button-vue--icon-and-text[data-v-44398b0c]{--button-padding: min(calc(var(--default-grid-baseline) + var(--button-radius)), calc(var(--default-grid-baseline) * 4));padding-block:0;padding-inline:var(--default-grid-baseline) var(--button-padding)}.button-vue--wide[data-v-44398b0c]{width:100%}.button-vue[data-v-44398b0c]:focus-visible{outline:2px solid var(--color-main-text)!important;box-shadow:0 0 0 4px var(--color-main-background)!important}.button-vue:focus-visible.button-vue--vue-tertiary-on-primary[data-v-44398b0c]{outline:2px solid var(--color-primary-element-text);border-radius:var(--border-radius-element, var(--border-radius));background-color:transparent}.button-vue--vue-primary[data-v-44398b0c]{background-color:var(--color-primary-element);color:var(--color-primary-element-text)}.button-vue--vue-primary[data-v-44398b0c]:hover:not(:disabled){background-color:var(--color-primary-element-hover)}.button-vue--vue-primary[data-v-44398b0c]:active{background-color:var(--color-primary-element)}.button-vue--vue-secondary[data-v-44398b0c]{color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light)}.button-vue--vue-secondary[data-v-44398b0c]:hover:not(:disabled){color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light-hover)}.button-vue--vue-tertiary[data-v-44398b0c]{color:var(--color-main-text);background-color:transparent}.button-vue--vue-tertiary[data-v-44398b0c]:hover:not(:disabled){background-color:var(--color-background-hover)}.button-vue--vue-tertiary-no-background[data-v-44398b0c]{color:var(--color-main-text);background-color:transparent}.button-vue--vue-tertiary-no-background[data-v-44398b0c]:hover:not(:disabled){background-color:transparent}.button-vue--vue-tertiary-on-primary[data-v-44398b0c]{color:var(--color-primary-element-text);background-color:transparent}.button-vue--vue-tertiary-on-primary[data-v-44398b0c]:hover:not(:disabled){background-color:transparent}.button-vue--vue-success[data-v-44398b0c]{background-color:var(--color-success);color:#fff}.button-vue--vue-success[data-v-44398b0c]:hover:not(:disabled){background-color:var(--color-success-hover)}.button-vue--vue-success[data-v-44398b0c]:active{background-color:var(--color-success)}.button-vue--vue-warning[data-v-44398b0c]{background-color:var(--color-warning);color:#fff}.button-vue--vue-warning[data-v-44398b0c]:hover:not(:disabled){background-color:var(--color-warning-hover)}.button-vue--vue-warning[data-v-44398b0c]:active{background-color:var(--color-warning)}.button-vue--vue-error[data-v-44398b0c]{background-color:var(--color-error);color:#fff}.button-vue--vue-error[data-v-44398b0c]:hover:not(:disabled){background-color:var(--color-error-hover)}.button-vue--vue-error[data-v-44398b0c]:active{background-color:var(--color-error)}.resize-observer{position:absolute;top:0;left:0;z-index:-1;width:100%;height:100%;border:none;background-color:transparent;pointer-events:none;display:block;overflow:hidden;opacity:0}.resize-observer object{display:block;position:absolute;top:0;left:0;height:100%;width:100%;overflow:hidden;pointer-events:none;z-index:-1}.v-popper--theme-dropdown.v-popper__popper{z-index:100000;top:0;left:0;display:block!important;filter:drop-shadow(0 1px 10px var(--color-box-shadow))}.v-popper--theme-dropdown.v-popper__popper .v-popper__inner{padding:0;color:var(--color-main-text);border-radius:var(--border-radius-large);overflow:hidden;background:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper .v-popper__arrow-container{position:absolute;z-index:1;width:0;height:0;border-style:solid;border-color:transparent;border-width:10px}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-container{bottom:-10px;border-bottom-width:0;border-top-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-container{top:-10px;border-top-width:0;border-bottom-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-container{left:-10px;border-left-width:0;border-right-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-container{right:-10px;border-right-width:0;border-left-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[aria-hidden=true]{visibility:hidden;transition:opacity var(--animation-quick),visibility var(--animation-quick);opacity:0}.v-popper--theme-dropdown.v-popper__popper[aria-hidden=false]{visibility:visible;transition:opacity var(--animation-quick);opacity:1}.material-design-icon{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.v-popper--theme-tooltip.v-popper__popper{position:absolute;z-index:100000;top:0;right:auto;left:auto;display:block;margin:0;padding:0;text-align:left;text-align:start;opacity:0;line-height:1.6;line-break:auto;filter:drop-shadow(0 1px 10px var(--color-box-shadow))}.v-popper--theme-tooltip.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-container{bottom:-10px;border-bottom-width:0;border-top-color:var(--color-main-background)}.v-popper--theme-tooltip.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-container{top:-10px;border-top-width:0;border-bottom-color:var(--color-main-background)}.v-popper--theme-tooltip.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-container{right:100%;border-left-width:0;border-right-color:var(--color-main-background)}.v-popper--theme-tooltip.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-container{left:100%;border-right-width:0;border-left-color:var(--color-main-background)}.v-popper--theme-tooltip.v-popper__popper[aria-hidden=true]{visibility:hidden;transition:opacity .15s,visibility .15s;opacity:0}.v-popper--theme-tooltip.v-popper__popper[aria-hidden=false]{visibility:visible;transition:opacity .15s;opacity:1}.v-popper--theme-tooltip .v-popper__inner{max-width:350px;padding:5px 8px;text-align:center;color:var(--color-main-text);border-radius:var(--border-radius);background-color:var(--color-main-background)}.v-popper--theme-tooltip .v-popper__arrow-container{position:absolute;z-index:1;width:0;height:0;margin:0;border-style:solid;border-color:transparent;border-width:10px}._video_1p112_2{width:100%;height:100%;object-fit:cover}._wrapper_1p112_8{background-color:var(--color-primary-element)}.material-design-icon[data-v-2d0a4d76]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.icon-vue[data-v-2d0a4d76]{display:flex;justify-content:center;align-items:center;min-width:var(--default-clickable-area);min-height:var(--default-clickable-area);opacity:1}.icon-vue--inline[data-v-2d0a4d76]{display:inline-flex;min-width:fit-content;min-height:fit-content;vertical-align:text-bottom}.icon-vue[data-v-2d0a4d76] svg{fill:currentColor;width:var(--icon-size, 20px);height:var(--icon-size, 20px);max-width:var(--icon-size, 20px);max-height:var(--icon-size, 20px)}._wrapper_1pqur_1{position:relative;overflow:hidden;padding:calc(var(--default-grid-baseline) * 5);display:flex;flex-direction:column;justify-content:space-between;width:100%}._background_circle_1pqur_11{height:6000px;width:6000px;border-radius:3000px;background-color:var(--color-primary-element);position:absolute;top:-5900px;left:calc(-3000px + 50%)}._background_bar_1pqur_21{position:absolute;top:0;left:0;width:100%;height:10px;background-color:var(--color-primary-element)}._button_back_1pqur_30{position:absolute!important;top:var(--default-grid-baseline);left:var(--default-grid-baseline)}._button_close_1pqur_36{position:absolute!important;top:var(--default-grid-baseline);right:var(--default-grid-baseline)}._button_wrapper_1pqur_42{display:flex;flex-wrap:wrap;gap:22px;width:100%}._button_wrapper_1pqur_42>*{flex:0 0 fit-content}._button_wrapper_1pqur_42>*:last-of-type{flex:1 0 fit-content}._logo_1pqur_55{height:70px;background-image:var(--image-logoheader, var(--image-logo, var(--2e2ad5bd)));background-repeat:no-repeat;background-position:center;background-size:100px;margin:auto;position:absolute;left:0;width:100%;pointer-events:none}._first_page_scroller_1pqur_68{margin-top:calc(var(--default-grid-baseline) * 8 + 70px)!important}._slide-active_8t7o1_5{transition:all .2s}._slide-left-enter_8t7o1_9{opacity:0;transform:translate(30%)}._slide-left-leave-to_8t7o1_14,._slide-right-enter_8t7o1_19{opacity:0;transform:translate(-30%)}._slide-right-leave-to_8t7o1_24{opacity:0;transform:translate(30%)}._slide-up-enter_8t7o1_29{top:-5900px}._slide-up-leave-to_8t7o1_33,._slide-down-enter_8t7o1_37{top:-5980px}._slide-down-leave-to_8t7o1_41{top:-5900px}._card_ogulh_1{display:flex;max-width:250px;box-sizing:border-box;height:fit-content}._icon_ogulh_8{display:flex;flex:0 0 44px;align-items:center}._icon_ogulh_8:empty{display:none}._heading_ogulh_17{font-weight:700;margin:0}._link_ogulh_22{box-shadow:0 0 10px 0 var(--color-box-shadow);border-radius:var(--border-radius-large);padding:calc(var(--default-grid-baseline) * 4)}._link_ogulh_22:focus-visible{outline:2px solid var(--color-main-text);box-shadow:0 0 0 4px var(--color-main-background)}._text_ogulh_32{display:flex;flex-direction:column;justify-content:center}._wrapper_101zf_2{display:flex;flex-direction:column;justify-content:space-between;min-height:min(520px,50dvh)}._scroller_101zf_9{overflow-y:scroll;margin-top:calc(var(--default-grid-baseline) * 8)}._heading_101zf_14{text-align:center}._subtitle_101zf_18{max-width:450px;margin:auto;text-align:center}._content_101zf_24{display:flex;flex-wrap:wrap;gap:calc(var(--default-grid-baseline) * 6);justify-content:center;margin:calc(var(--default-grid-baseline) * 10) 0}._version_m2t30_2{color:var(--color-text-maxcontrast);margin-block:calc(var(--default-grid-baseline) * 4) 0;text-align:center}._badge_1lvp9_1{height:74px;width:250px;background-image:var(--7adda1c6);background-size:contain;background-repeat:no-repeat}._badge_1lvp9_1:focus-visible{outline:2px solid var(--color-main-text);box-shadow:0 0 0 4px var(--color-main-background)}._anchor_y1t00_2{width:100%}._animation_y1t00_6{border-radius:var(--border-radius-rounded);object-fit:contain;width:100%}._share_section_1a4qx_2{width:100%}._share_wrapper_1a4qx_6{display:flex;flex-direction:row;flex-wrap:wrap;gap:calc(var(--default-grid-baseline) * 4);justify-content:space-around;width:100%}._card_1a4qx_15{flex:1 1 auto;padding:calc(var(--default-grid-baseline) * 2)!important}._list_lk7o9_2{margin-inline:2em auto}._entry_lk7o9_6{padding-block:var(--default-grid-baseline)}.first-run-wizard .modal-wrapper .modal-container{overflow:hidden}.first-run-wizard .modal-wrapper .modal-container__content{overflow:hidden;height:100%;display:contents}.first-run-wizard .modal-wrapper .modal-container__close{display:none}@media only screen and (max-width: 512px){.first-run-wizard .modal-wrapper .modal-container{height:100dvh;top:0}.first-run-wizard .modal-header{pointer-events:none}} +.material-design-icon[data-v-0d4052a3]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.modal-mask[data-v-0d4052a3]{position:fixed;z-index:9998;top:0;left:0;display:block;width:100%;height:100%;background-color:#00000080}.modal-mask--dark[data-v-0d4052a3]{background-color:#000000eb}.modal-header[data-v-0d4052a3]{position:absolute;z-index:10001;top:0;right:0;left:0;display:flex!important;align-items:center;justify-content:center;width:100%;height:50px;overflow:hidden;transition:opacity .25s,visibility .25s}.modal-header__name[data-v-0d4052a3]{overflow-x:hidden;box-sizing:border-box;width:100%;padding:0 calc(var(--default-clickable-area) * 3) 0 12px;transition:padding ease .1s;white-space:nowrap;text-overflow:ellipsis;font-size:16px;margin-block:0}@media only screen and (min-width: 1024px){.modal-header__name[data-v-0d4052a3]{padding-left:calc(var(--default-clickable-area) * 3);text-align:center}}.modal-header .icons-menu[data-v-0d4052a3]{position:absolute;right:0;display:flex;align-items:center;justify-content:flex-end}.modal-header .icons-menu .header-close[data-v-0d4052a3]{display:flex;align-items:center;justify-content:center;box-sizing:border-box;margin:calc((50px - var(--default-clickable-area)) / 2);padding:0}.modal-header .icons-menu .play-pause-icons[data-v-0d4052a3]{position:relative;width:50px;height:50px;margin:0;padding:0;cursor:pointer;border:none;background-color:transparent}.modal-header .icons-menu .play-pause-icons:hover .play-pause-icons__play[data-v-0d4052a3],.modal-header .icons-menu .play-pause-icons:hover .play-pause-icons__pause[data-v-0d4052a3],.modal-header .icons-menu .play-pause-icons:focus .play-pause-icons__play[data-v-0d4052a3],.modal-header .icons-menu .play-pause-icons:focus .play-pause-icons__pause[data-v-0d4052a3]{opacity:1;border-radius:calc(var(--default-clickable-area) / 2);background-color:#7f7f7f40}.modal-header .icons-menu .play-pause-icons__play[data-v-0d4052a3],.modal-header .icons-menu .play-pause-icons__pause[data-v-0d4052a3]{box-sizing:border-box;width:var(--default-clickable-area);height:var(--default-clickable-area);margin:calc((50px - var(--default-clickable-area)) / 2);cursor:pointer;opacity:.7}.modal-header .icons-menu[data-v-0d4052a3] .action-item{margin:calc((50px - var(--default-clickable-area)) / 2)}.modal-header .icons-menu[data-v-0d4052a3] .action-item--single{box-sizing:border-box;width:var(--default-clickable-area);height:var(--default-clickable-area);cursor:pointer;background-position:center;background-size:22px}.modal-header .icons-menu .header-actions[data-v-0d4052a3] button:focus-visible{box-shadow:none!important;outline:2px solid #fff!important}.modal-header .icons-menu[data-v-0d4052a3] .action-item__menutoggle{padding:0}.modal-header .icons-menu[data-v-0d4052a3] .action-item__menutoggle span,.modal-header .icons-menu[data-v-0d4052a3] .action-item__menutoggle svg{width:var(--icon-size);height:var(--icon-size)}.modal-wrapper[data-v-0d4052a3]{display:flex;align-items:center;justify-content:center;box-sizing:border-box;width:100%;height:100%}.modal-wrapper .prev[data-v-0d4052a3],.modal-wrapper .next[data-v-0d4052a3]{z-index:10000;height:35vh;min-height:300px;position:absolute;transition:opacity .25s;color:#fff}.modal-wrapper .prev[data-v-0d4052a3]:focus-visible,.modal-wrapper .next[data-v-0d4052a3]:focus-visible{box-shadow:0 0 0 2px var(--color-primary-element-text);background-color:var(--color-box-shadow)}.modal-wrapper .prev[data-v-0d4052a3]{left:2px}.modal-wrapper .next[data-v-0d4052a3]{right:2px}.modal-wrapper .modal-container[data-v-0d4052a3]{position:relative;display:flex;padding:0;transition:transform .3s ease;border-radius:var(--border-radius-large);background-color:var(--color-main-background);color:var(--color-main-text);box-shadow:0 0 40px #0003}.modal-wrapper .modal-container__close[data-v-0d4052a3]{z-index:1;position:absolute;top:4px;right:4px}.modal-wrapper .modal-container__content[data-v-0d4052a3]{width:100%;min-height:52px;overflow:auto}.modal-wrapper--small>.modal-container[data-v-0d4052a3]{width:400px;max-width:90%;max-height:min(90%,100% - 100px)}.modal-wrapper--normal>.modal-container[data-v-0d4052a3]{max-width:90%;width:600px;max-height:min(90%,100% - 100px)}.modal-wrapper--large>.modal-container[data-v-0d4052a3]{max-width:90%;width:900px;max-height:min(90%,100% - 100px)}.modal-wrapper--full>.modal-container[data-v-0d4052a3]{width:100%;height:calc(100% - var(--header-height));position:absolute;top:50px;border-radius:0}@media only screen and ((max-width: 512px) or (max-height: 400px)){.modal-wrapper .modal-container[data-v-0d4052a3]{max-width:initial;width:100%;max-height:initial;height:calc(100% - var(--header-height));position:absolute;top:50px;border-radius:0}}.fade-enter-active[data-v-0d4052a3],.fade-leave-active[data-v-0d4052a3]{transition:opacity .25s}.fade-enter[data-v-0d4052a3],.fade-leave-to[data-v-0d4052a3]{opacity:0}.fade-visibility-enter[data-v-0d4052a3],.fade-visibility-leave-to[data-v-0d4052a3]{visibility:hidden;opacity:0}.modal-in-enter-active[data-v-0d4052a3],.modal-in-leave-active[data-v-0d4052a3],.modal-out-enter-active[data-v-0d4052a3],.modal-out-leave-active[data-v-0d4052a3]{transition:opacity .25s}.modal-in-enter[data-v-0d4052a3],.modal-in-leave-to[data-v-0d4052a3],.modal-out-enter[data-v-0d4052a3],.modal-out-leave-to[data-v-0d4052a3]{opacity:0}.modal-in-enter .modal-container[data-v-0d4052a3],.modal-in-leave-to .modal-container[data-v-0d4052a3]{transform:scale(.9)}.modal-out-enter .modal-container[data-v-0d4052a3],.modal-out-leave-to .modal-container[data-v-0d4052a3]{transform:scale(1.1)}.modal-mask .play-pause-icons .progress-ring[data-v-0d4052a3]{position:absolute;top:0;left:0;transform:rotate(-90deg)}.modal-mask .play-pause-icons .progress-ring .progress-ring__circle[data-v-0d4052a3]{transition:.1s stroke-dashoffset;transform-origin:50% 50%;animation:progressring-0d4052a3 linear var(--slideshow-duration) infinite;stroke-linecap:round;stroke-dashoffset:94.2477796077;stroke-dasharray:94.2477796077}.modal-mask .play-pause-icons--paused .icon-pause[data-v-0d4052a3]{animation:breath-0d4052a3 2s cubic-bezier(.4,0,.2,1) infinite}.modal-mask .play-pause-icons--paused .progress-ring__circle[data-v-0d4052a3]{animation-play-state:paused!important}@keyframes progressring-0d4052a3{0%{stroke-dashoffset:94.2477796077}to{stroke-dashoffset:0}}@keyframes breath-0d4052a3{0%{opacity:1}50%{opacity:0}to{opacity:1}}.material-design-icon[data-v-3713841c]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.action-items[data-v-3713841c]{display:flex;align-items:center}.action-items>button[data-v-3713841c]{margin-right:calc((var(--default-clickable-area) - 16px) / 2 / 2)}.action-item[data-v-3713841c]{--open-background-color: var(--color-background-hover, $action-background-hover);position:relative;display:inline-block}.action-item.action-item--primary[data-v-3713841c]{--open-background-color: var(--color-primary-element-hover)}.action-item.action-item--secondary[data-v-3713841c]{--open-background-color: var(--color-primary-element-light-hover)}.action-item.action-item--error[data-v-3713841c]{--open-background-color: var(--color-error-hover)}.action-item.action-item--warning[data-v-3713841c]{--open-background-color: var(--color-warning-hover)}.action-item.action-item--success[data-v-3713841c]{--open-background-color: var(--color-success-hover)}.action-item.action-item--tertiary-no-background[data-v-3713841c]{--open-background-color: transparent}.action-item.action-item--open .action-item__menutoggle[data-v-3713841c]{background-color:var(--open-background-color)}.action-item__menutoggle__icon[data-v-3713841c]{width:20px;height:20px;object-fit:contain}.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper{border-radius:var(--border-radius-large);overflow:hidden}.v-popper--theme-dropdown.v-popper__popper.action-item__popper .v-popper__wrapper .v-popper__inner{border-radius:var(--border-radius-large);padding:4px;max-height:calc(100vh - var(--header-height));overflow:auto}.material-design-icon[data-v-44398b0c]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.button-vue[data-v-44398b0c]{--button-size: var(--default-clickable-area);--button-radius: var(--border-radius-element, calc(var(--button-size) / 2));--button-padding: clamp(var(--default-grid-baseline), var(--button-radius), calc(var(--default-grid-baseline) * 4));position:relative;width:fit-content;overflow:hidden;border:0;padding:0;font-size:var(--default-font-size);font-weight:700;min-height:var(--button-size);min-width:var(--button-size);display:flex;align-items:center;justify-content:center;cursor:pointer;border-radius:var(--button-radius);transition-property:color,border-color,background-color;transition-duration:.1s;transition-timing-function:linear;color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light)}.button-vue--size-small[data-v-44398b0c]{--button-size: var(--clickable-area-small, 24px);--button-radius: var(--border-radius)}.button-vue--size-large[data-v-44398b0c]{--button-size: var(--clickable-area-large, 48px)}.button-vue *[data-v-44398b0c],.button-vue span[data-v-44398b0c]{cursor:pointer}.button-vue[data-v-44398b0c]:focus{outline:none}.button-vue[data-v-44398b0c]:disabled{cursor:default;opacity:.5;filter:saturate(.7)}.button-vue:disabled *[data-v-44398b0c]{cursor:default}.button-vue[data-v-44398b0c]:hover:not(:disabled){background-color:var(--color-primary-element-light-hover)}.button-vue[data-v-44398b0c]:active{background-color:var(--color-primary-element-light)}.button-vue__wrapper[data-v-44398b0c]{display:inline-flex;align-items:center;justify-content:center;width:100%}.button-vue--end .button-vue__wrapper[data-v-44398b0c]{justify-content:end}.button-vue--start .button-vue__wrapper[data-v-44398b0c]{justify-content:start}.button-vue--reverse .button-vue__wrapper[data-v-44398b0c]{flex-direction:row-reverse}.button-vue--reverse.button-vue--icon-and-text[data-v-44398b0c]{padding-inline:var(--button-padding) var(--default-grid-baseline)}.button-vue__icon[data-v-44398b0c]{height:var(--button-size);width:var(--button-size);min-height:var(--button-size);min-width:var(--button-size);display:flex;justify-content:center;align-items:center}.button-vue--size-small .button-vue__icon[data-v-44398b0c]>*{max-height:16px;max-width:16px}.button-vue--size-small .button-vue__icon[data-v-44398b0c] svg{height:16px;width:16px}.button-vue__text[data-v-44398b0c]{font-weight:700;margin-bottom:1px;padding:2px 0;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.button-vue--icon-only[data-v-44398b0c]{line-height:1;width:var(--button-size)!important}.button-vue--text-only[data-v-44398b0c]{padding:0 var(--button-padding)}.button-vue--text-only .button-vue__text[data-v-44398b0c]{margin-left:4px;margin-right:4px}.button-vue--icon-and-text[data-v-44398b0c]{--button-padding: min(calc(var(--default-grid-baseline) + var(--button-radius)), calc(var(--default-grid-baseline) * 4));padding-block:0;padding-inline:var(--default-grid-baseline) var(--button-padding)}.button-vue--wide[data-v-44398b0c]{width:100%}.button-vue[data-v-44398b0c]:focus-visible{outline:2px solid var(--color-main-text)!important;box-shadow:0 0 0 4px var(--color-main-background)!important}.button-vue:focus-visible.button-vue--vue-tertiary-on-primary[data-v-44398b0c]{outline:2px solid var(--color-primary-element-text);border-radius:var(--border-radius-element, var(--border-radius));background-color:transparent}.button-vue--vue-primary[data-v-44398b0c]{background-color:var(--color-primary-element);color:var(--color-primary-element-text)}.button-vue--vue-primary[data-v-44398b0c]:hover:not(:disabled){background-color:var(--color-primary-element-hover)}.button-vue--vue-primary[data-v-44398b0c]:active{background-color:var(--color-primary-element)}.button-vue--vue-secondary[data-v-44398b0c]{color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light)}.button-vue--vue-secondary[data-v-44398b0c]:hover:not(:disabled){color:var(--color-primary-element-light-text);background-color:var(--color-primary-element-light-hover)}.button-vue--vue-tertiary[data-v-44398b0c]{color:var(--color-main-text);background-color:transparent}.button-vue--vue-tertiary[data-v-44398b0c]:hover:not(:disabled){background-color:var(--color-background-hover)}.button-vue--vue-tertiary-no-background[data-v-44398b0c]{color:var(--color-main-text);background-color:transparent}.button-vue--vue-tertiary-no-background[data-v-44398b0c]:hover:not(:disabled){background-color:transparent}.button-vue--vue-tertiary-on-primary[data-v-44398b0c]{color:var(--color-primary-element-text);background-color:transparent}.button-vue--vue-tertiary-on-primary[data-v-44398b0c]:hover:not(:disabled){background-color:transparent}.button-vue--vue-success[data-v-44398b0c]{background-color:var(--color-success);color:#fff}.button-vue--vue-success[data-v-44398b0c]:hover:not(:disabled){background-color:var(--color-success-hover)}.button-vue--vue-success[data-v-44398b0c]:active{background-color:var(--color-success)}.button-vue--vue-warning[data-v-44398b0c]{background-color:var(--color-warning);color:#fff}.button-vue--vue-warning[data-v-44398b0c]:hover:not(:disabled){background-color:var(--color-warning-hover)}.button-vue--vue-warning[data-v-44398b0c]:active{background-color:var(--color-warning)}.button-vue--vue-error[data-v-44398b0c]{background-color:var(--color-error);color:#fff}.button-vue--vue-error[data-v-44398b0c]:hover:not(:disabled){background-color:var(--color-error-hover)}.button-vue--vue-error[data-v-44398b0c]:active{background-color:var(--color-error)}.resize-observer{position:absolute;top:0;left:0;z-index:-1;width:100%;height:100%;border:none;background-color:transparent;pointer-events:none;display:block;overflow:hidden;opacity:0}.resize-observer object{display:block;position:absolute;top:0;left:0;height:100%;width:100%;overflow:hidden;pointer-events:none;z-index:-1}.v-popper--theme-dropdown.v-popper__popper{z-index:100000;top:0;left:0;display:block!important;filter:drop-shadow(0 1px 10px var(--color-box-shadow))}.v-popper--theme-dropdown.v-popper__popper .v-popper__inner{padding:0;color:var(--color-main-text);border-radius:var(--border-radius-large);overflow:hidden;background:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper .v-popper__arrow-container{position:absolute;z-index:1;width:0;height:0;border-style:solid;border-color:transparent;border-width:10px}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-container{bottom:-10px;border-bottom-width:0;border-top-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-container{top:-10px;border-top-width:0;border-bottom-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-container{left:-10px;border-left-width:0;border-right-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-container{right:-10px;border-right-width:0;border-left-color:var(--color-main-background)}.v-popper--theme-dropdown.v-popper__popper[aria-hidden=true]{visibility:hidden;transition:opacity var(--animation-quick),visibility var(--animation-quick);opacity:0}.v-popper--theme-dropdown.v-popper__popper[aria-hidden=false]{visibility:visible;transition:opacity var(--animation-quick);opacity:1}.material-design-icon{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.v-popper--theme-tooltip.v-popper__popper{position:absolute;z-index:100000;top:0;right:auto;left:auto;display:block;margin:0;padding:0;text-align:left;text-align:start;opacity:0;line-height:1.6;line-break:auto;filter:drop-shadow(0 1px 10px var(--color-box-shadow))}.v-popper--theme-tooltip.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-container{bottom:-10px;border-bottom-width:0;border-top-color:var(--color-main-background)}.v-popper--theme-tooltip.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-container{top:-10px;border-top-width:0;border-bottom-color:var(--color-main-background)}.v-popper--theme-tooltip.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-container{right:100%;border-left-width:0;border-right-color:var(--color-main-background)}.v-popper--theme-tooltip.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-container{left:100%;border-right-width:0;border-left-color:var(--color-main-background)}.v-popper--theme-tooltip.v-popper__popper[aria-hidden=true]{visibility:hidden;transition:opacity .15s,visibility .15s;opacity:0}.v-popper--theme-tooltip.v-popper__popper[aria-hidden=false]{visibility:visible;transition:opacity .15s;opacity:1}.v-popper--theme-tooltip .v-popper__inner{max-width:350px;padding:5px 8px;text-align:center;color:var(--color-main-text);border-radius:var(--border-radius);background-color:var(--color-main-background)}.v-popper--theme-tooltip .v-popper__arrow-container{position:absolute;z-index:1;width:0;height:0;margin:0;border-style:solid;border-color:transparent;border-width:10px}._video_1p112_2{width:100%;height:100%;object-fit:cover}._wrapper_1p112_8{background-color:var(--color-primary-element)}.material-design-icon[data-v-2d0a4d76]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.icon-vue[data-v-2d0a4d76]{display:flex;justify-content:center;align-items:center;min-width:var(--default-clickable-area);min-height:var(--default-clickable-area);opacity:1}.icon-vue--inline[data-v-2d0a4d76]{display:inline-flex;min-width:fit-content;min-height:fit-content;vertical-align:text-bottom}.icon-vue[data-v-2d0a4d76] svg{fill:currentColor;width:var(--icon-size, 20px);height:var(--icon-size, 20px);max-width:var(--icon-size, 20px);max-height:var(--icon-size, 20px)}._wrapper_1pqur_1{position:relative;overflow:hidden;padding:calc(var(--default-grid-baseline) * 5);display:flex;flex-direction:column;justify-content:space-between;width:100%}._background_circle_1pqur_11{height:6000px;width:6000px;border-radius:3000px;background-color:var(--color-primary-element);position:absolute;top:-5900px;left:calc(-3000px + 50%)}._background_bar_1pqur_21{position:absolute;top:0;left:0;width:100%;height:10px;background-color:var(--color-primary-element)}._button_back_1pqur_30{position:absolute!important;top:var(--default-grid-baseline);left:var(--default-grid-baseline)}._button_close_1pqur_36{position:absolute!important;top:var(--default-grid-baseline);right:var(--default-grid-baseline)}._button_wrapper_1pqur_42{display:flex;flex-wrap:wrap;gap:22px;width:100%}._button_wrapper_1pqur_42>*{flex:0 0 fit-content}._button_wrapper_1pqur_42>*:last-of-type{flex:1 0 fit-content}._logo_1pqur_55{height:70px;background-image:var(--image-logoheader, var(--image-logo, var(--a8212066)));background-repeat:no-repeat;background-position:center;background-size:100px;margin:auto;position:absolute;left:0;width:100%;pointer-events:none}._first_page_scroller_1pqur_68{margin-top:calc(var(--default-grid-baseline) * 8 + 70px)!important}._slide-active_8t7o1_5{transition:all .2s}._slide-left-enter_8t7o1_9{opacity:0;transform:translate(30%)}._slide-left-leave-to_8t7o1_14,._slide-right-enter_8t7o1_19{opacity:0;transform:translate(-30%)}._slide-right-leave-to_8t7o1_24{opacity:0;transform:translate(30%)}._slide-up-enter_8t7o1_29{top:-5900px}._slide-up-leave-to_8t7o1_33,._slide-down-enter_8t7o1_37{top:-5980px}._slide-down-leave-to_8t7o1_41{top:-5900px}._card_rb2xk_1{display:flex;max-width:250px;box-sizing:border-box;height:fit-content}._icon_rb2xk_8{display:flex;flex:0 0 var(--default-clickable-area);align-items:start}._icon_rb2xk_8:empty{display:none}._heading_rb2xk_17{font-size:var(--default-font-size);font-weight:700;margin:0}._link_rb2xk_23{box-shadow:0 0 10px 0 var(--color-box-shadow);border-radius:var(--border-radius-large);padding:calc(var(--default-grid-baseline) * 4)}._link_rb2xk_23:focus-visible{outline:2px solid var(--color-main-text);box-shadow:0 0 0 4px var(--color-main-background)}._text_rb2xk_33{display:flex;flex-direction:column;justify-content:center}._wrapper_1b76s_2{display:flex;flex-direction:column;justify-content:space-between;min-height:min(520px,50dvh)}._scroller_1b76s_9{overflow-y:scroll;margin-top:calc(4 * var(--default-grid-baseline))}._heading_1b76s_14{font-size:20px;margin-block:0;text-align:center}._subtitle_1b76s_20{max-width:450px;margin:auto;text-align:center}._content_1b76s_26{display:flex;flex-wrap:wrap;gap:calc(6 * var(--default-grid-baseline));justify-content:center;margin:calc(8 * var(--default-grid-baseline)) 0}._version_m2t30_2{color:var(--color-text-maxcontrast);margin-block:calc(var(--default-grid-baseline) * 4) 0;text-align:center}._badge_1lvp9_1{height:74px;width:250px;background-image:var(--7adda1c6);background-size:contain;background-repeat:no-repeat}._badge_1lvp9_1:focus-visible{outline:2px solid var(--color-main-text);box-shadow:0 0 0 4px var(--color-main-background)}._anchor_y1t00_2{width:100%}._animation_y1t00_6{border-radius:var(--border-radius-rounded);object-fit:contain;width:100%}._icon_rxix9_2{margin-block:calc((1lh - 20px)/2)}._share_section_nuzul_2{width:100%}._share_wrapper_nuzul_6{display:flex;flex-direction:row;flex-wrap:wrap;gap:calc(var(--default-grid-baseline) * 4);justify-content:space-around;width:100%}._card_nuzul_15{flex:1 1 auto;padding:calc(var(--default-grid-baseline) * 2)!important}._heading_nuzul_22{font-size:var(--default-font-size);font-weight:700}._list_lk7o9_2{margin-inline:2em auto}._entry_lk7o9_6{padding-block:var(--default-grid-baseline)}.first-run-wizard .modal-wrapper .modal-container{overflow:hidden}.first-run-wizard .modal-wrapper .modal-container__content{overflow:hidden;height:100%;display:contents}.first-run-wizard .modal-wrapper .modal-container__close{display:none}@media only screen and (max-width: 512px){.first-run-wizard .modal-wrapper .modal-container{height:100dvh;top:0}.first-run-wizard .modal-header{pointer-events:none}} diff --git a/js/firstrunwizard-about.mjs b/js/firstrunwizard-about.mjs index 0a499e80..3ede9512 100644 --- a/js/firstrunwizard-about.mjs +++ b/js/firstrunwizard-about.mjs @@ -1,3 +1,3 @@ const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=[window.OC.filePath('firstrunwizard', '', 'js/main.chunk.mjs'),window.OC.filePath('firstrunwizard', '', 'css/firstrunwizard-main.css')])))=>i.map(i=>d[i]); /*! third party licenses: js/vendor.LICENSE.txt */ -import{_ as a}from"./modulepreload-polyfill.chunk.mjs";document.addEventListener("DOMContentLoaded",function(){const o=document.querySelector("#firstrunwizard_about button"),t=()=>{document.querySelector("#firstrunwizard_about button").addEventListener("click",async function(e){var n;e.stopPropagation(),e.preventDefault();const r=(n=document.querySelector('[aria-controls="header-menu-user-menu"]'))!=null?n:void 0,{open:u}=await a(async()=>{const{open:i}=await import("./main.chunk.mjs");return{open:i}},__vite__mapDeps([0,1]),import.meta.url);u(r),OC.hideMenus(()=>!1)})};o?t():window._nc_event_bus.subscribe("core:user-menu:mounted",t)}); +import{_ as a}from"./modulepreload-polyfill.chunk.mjs";document.addEventListener("DOMContentLoaded",function(){const e=()=>document.querySelector("#firstrunwizard_about"),n=()=>{e().addEventListener("click",async function(t){var o;t.stopPropagation(),t.preventDefault();const r=(o=document.querySelector('[aria-controls="header-menu-user-menu"]'))!=null?o:void 0,{open:u}=await a(async()=>{const{open:i}=await import("./main.chunk.mjs");return{open:i}},__vite__mapDeps([0,1]),import.meta.url);u(r),OC.hideMenus(()=>!1)})};e()?n():window._nc_event_bus.subscribe("core:user-menu:mounted",n)}); diff --git a/js/firstrunwizard-about.mjs.map b/js/firstrunwizard-about.mjs.map index 179a74ce..ee03e9b4 100644 --- a/js/firstrunwizard-about.mjs.map +++ b/js/firstrunwizard-about.mjs.map @@ -1 +1 @@ -{"version":3,"mappings":";;uDAWA,SAAS,iBAAiB,mBAAoB,UAAW,CACxD,MAAMA,EAAa,SAAS,cAAc,8BAA8B,EAElEC,EAAc,IAAM,CACN,SAAS,cAAc,8BAA8B,EAE7D,iBAAiB,QAAS,eAAeC,EAAO,OAC1DA,EAAM,gBAAiB,EACvBA,EAAM,eAAgB,EACtB,MAAMC,GAAcC,EAAA,SAAS,cAAc,yCAAyC,IAAhE,KAAAA,EAAqE,OACnF,CAAE,KAAAC,CAAM,EAAG,MAAKC,EAAA,qBAAAD,GAAA,aAAQ,kBAAW,EAAC,YAAAA,CAAA,2CAC1CA,EAAKF,CAAW,EAChB,GAAG,UAAU,IAAM,EAAK,CAC3B,CAAG,CACD,EAEGH,EACHC,EAAa,EAEb,OAAO,cAAc,UAAU,yBAA0BA,CAAW,CAEtE,CAAC","names":["aboutEntry","addListener","event","focusReturn","_a","open","__vitePreload"],"ignoreList":[],"sources":["../src/app-menu.js"],"sourcesContent":["/**\n * SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\n\n// eslint-disable-next-line import/no-unresolved, n/no-missing-import\nimport 'vite/modulepreload-polyfill'\n\n/**\n * Handle adding the first-run-wizard as an app menu entry\n */\ndocument.addEventListener('DOMContentLoaded', function() {\n\tconst aboutEntry = document.querySelector('#firstrunwizard_about button')\n\n\tconst addListener = () => {\n\t\tconst aboutEntry = document.querySelector('#firstrunwizard_about button')\n\n\t\taboutEntry.addEventListener('click', async function(event) {\n\t\t\tevent.stopPropagation()\n\t\t\tevent.preventDefault()\n\t\t\tconst focusReturn = document.querySelector('[aria-controls=\"header-menu-user-menu\"]') ?? undefined\n\t\t\tconst { open } = await import('./main.js')\n\t\t\topen(focusReturn)\n\t\t\tOC.hideMenus(() => false)\n\t\t})\n\t}\n\n\tif (aboutEntry) {\n\t\taddListener()\n\t} else {\n\t\twindow._nc_event_bus.subscribe('core:user-menu:mounted', addListener)\n\t}\n})\n"],"file":"js/firstrunwizard-about.mjs"} \ No newline at end of file +{"version":3,"mappings":";;uDAWA,SAAS,iBAAiB,mBAAoB,UAAW,CACxD,MAAMA,EAAa,IAAM,SAAS,cAAc,uBAAuB,EAEjEC,EAAc,IAAM,CACzBD,IAAa,iBAAiB,QAAS,eAAeE,EAAO,OAC5DA,EAAM,gBAAiB,EACvBA,EAAM,eAAgB,EACtB,MAAMC,GAAcC,EAAA,SAAS,cAAc,yCAAyC,IAAhE,KAAAA,EAAqE,OACnF,CAAE,KAAAC,CAAM,EAAG,MAAKC,EAAA,qBAAAD,GAAA,KAAC,QAAO,kBAAW,EAAC,YAAAA,CAAA,2CAC1CA,EAAKF,CAAW,EAChB,GAAG,UAAU,IAAM,EAAK,CAC3B,CAAG,CACD,EAEGH,EAAU,EACbC,EAAa,EAEb,OAAO,cAAc,UAAU,yBAA0BA,CAAW,CAEtE,CAAC","names":["aboutEntry","addListener","event","focusReturn","_a","open","__vitePreload"],"ignoreList":[],"sources":["../src/app-menu.js"],"sourcesContent":["/**\n * SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\n\n// eslint-disable-next-line import/no-unresolved, n/no-missing-import\nimport 'vite/modulepreload-polyfill'\n\n/**\n * Handle adding the first-run-wizard as an app menu entry\n */\ndocument.addEventListener('DOMContentLoaded', function() {\n\tconst aboutEntry = () => document.querySelector('#firstrunwizard_about')\n\n\tconst addListener = () => {\n\t\taboutEntry().addEventListener('click', async function(event) {\n\t\t\tevent.stopPropagation()\n\t\t\tevent.preventDefault()\n\t\t\tconst focusReturn = document.querySelector('[aria-controls=\"header-menu-user-menu\"]') ?? undefined\n\t\t\tconst { open } = await import('./main.js')\n\t\t\topen(focusReturn)\n\t\t\tOC.hideMenus(() => false)\n\t\t})\n\t}\n\n\tif (aboutEntry()) {\n\t\taddListener()\n\t} else {\n\t\twindow._nc_event_bus.subscribe('core:user-menu:mounted', addListener)\n\t}\n})\n"],"file":"js/firstrunwizard-about.mjs"} \ No newline at end of file diff --git a/js/main.chunk.mjs b/js/main.chunk.mjs index 53a64669..afd3098e 100644 --- a/js/main.chunk.mjs +++ b/js/main.chunk.mjs @@ -1,2 +1,2 @@ /*! third party licenses: js/vendor.LICENSE.txt */ -var Rf=Object.defineProperty;var If=(t,e,n)=>e in t?Rf(t,e,{enumerable:!0,configurable:!0,writable:!0,value:n}):t[e]=n;var li=(t,e,n)=>If(t,typeof e!="symbol"?e+"":e,n);const an=globalThis||void 0||self;var Ff={},Pt=Object.freeze({}),Y=Array.isArray;function K(t){return t==null}function E(t){return t!=null}function yt(t){return t===!0}function Bf(t){return t===!1}function xr(t){return typeof t=="string"||typeof t=="number"||typeof t=="symbol"||typeof t=="boolean"}function pt(t){return typeof t=="function"}function Ot(t){return t!==null&&typeof t=="object"}var Ss=Object.prototype.toString;function It(t){return Ss.call(t)==="[object Object]"}function Df(t){return Ss.call(t)==="[object RegExp]"}function Gu(t){var e=parseFloat(String(t));return e>=0&&Math.floor(e)===e&&isFinite(t)}function Li(t){return E(t)&&typeof t.then=="function"&&typeof t.catch=="function"}function Mf(t){return t==null?"":Array.isArray(t)||It(t)&&t.toString===Ss?JSON.stringify(t,zf,2):String(t)}function zf(t,e){return e&&e.__v_isRef?e.value:e}function hr(t){var e=parseFloat(t);return isNaN(e)?t:e}function se(t,e){for(var n=Object.create(null),r=t.split(","),o=0;o-1)return t.splice(r,1)}}var Uf=Object.prototype.hasOwnProperty;function Rt(t,e){return Uf.call(t,e)}function mn(t){var e=Object.create(null);return function(n){var r=e[n];return r||(e[n]=t(n))}}var Hf=/-(\w)/g,ln=mn(function(t){return t.replace(Hf,function(e,n){return n?n.toUpperCase():""})}),Vf=mn(function(t){return t.charAt(0).toUpperCase()+t.slice(1)}),Wf=/\B([A-Z])/g,Er=mn(function(t){return t.replace(Wf,"-$1").toLowerCase()});function Gf(t,e){function n(r){var o=arguments.length;return o?o>1?t.apply(e,arguments):t.call(e,r):t.call(e)}return n._length=t.length,n}function qf(t,e){return t.bind(e)}var qu=Function.prototype.bind?qf:Gf;function Ri(t,e){e=e||0;for(var n=t.length-e,r=new Array(n);n--;)r[n]=t[n+e];return r}function ht(t,e){for(var n in e)t[n]=e[n];return t}function Xu(t){for(var e={},n=0;n0,Qu=Zt&&Zt.indexOf("edge/")>0;Zt&&Zt.indexOf("android")>0;var Jf=Zt&&/iphone|ipad|ipod|ios/.test(Zt),Sa=Zt&&Zt.match(/firefox\/(\d+)/),Fi={}.watch,tc=!1;if(zt)try{var Aa={};Object.defineProperty(Aa,"passive",{get:function(){tc=!0}}),window.addEventListener("test-passive",null,Aa)}catch{}var Lr,Ge=function(){return Lr===void 0&&(!zt&&typeof an<"u"?Lr=an.process&&Ff.VUE_ENV==="server":Lr=!1),Lr},vo=zt&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function $n(t){return typeof t=="function"&&/native code/.test(t.toString())}var Cr=typeof Symbol<"u"&&$n(Symbol)&&typeof Reflect<"u"&&$n(Reflect.ownKeys),mr;typeof Set<"u"&&$n(Set)?mr=Set:mr=function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(e){return this.set[e]===!0},t.prototype.add=function(e){this.set[e]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var $t=null;function ec(){return $t&&{proxy:$t}}function Ue(t){t===void 0&&(t=null),t||$t&&$t._scope.off(),$t=t,t&&t._scope.on()}var Ht=function(){function t(e,n,r,o,i,s,l,u){this.tag=e,this.data=n,this.children=r,this.text=o,this.elm=i,this.ns=void 0,this.context=s,this.fnContext=void 0,this.fnOptions=void 0,this.fnScopeId=void 0,this.key=n&&n.key,this.componentOptions=l,this.componentInstance=void 0,this.parent=void 0,this.raw=!1,this.isStatic=!1,this.isRootInsert=!0,this.isComment=!1,this.isCloned=!1,this.isOnce=!1,this.asyncFactory=u,this.asyncMeta=void 0,this.isAsyncPlaceholder=!1}return Object.defineProperty(t.prototype,"child",{get:function(){return this.componentInstance},enumerable:!1,configurable:!0}),t}(),Rn=function(t){t===void 0&&(t="");var e=new Ht;return e.text=t,e.isComment=!0,e};function Tn(t){return new Ht(void 0,void 0,void 0,String(t))}function Bi(t){var e=new Ht(t.tag,t.data,t.children&&t.children.slice(),t.text,t.elm,t.context,t.componentOptions,t.asyncFactory);return e.ns=t.ns,e.isStatic=t.isStatic,e.key=t.key,e.isComment=t.isComment,e.fnContext=t.fnContext,e.fnOptions=t.fnOptions,e.fnScopeId=t.fnScopeId,e.asyncMeta=t.asyncMeta,e.isCloned=!0,e}var Qf=0,Jr=[],td=function(){for(var t=0;t0&&(o=pc(o,"".concat(e||"","_").concat(r)),Jn(o[0])&&Jn(s)&&(n[i]=Tn(s.text+o[0].text),o.shift()),n.push.apply(n,o)):xr(o)?Jn(s)?n[i]=Tn(s.text+o):o!==""&&n.push(Tn(o)):Jn(o)&&Jn(s)?n[i]=Tn(s.text+o.text):(yt(t._isVList)&&E(o.tag)&&K(o.key)&&E(e)&&(o.key="__vlist".concat(e,"_").concat(r,"__")),n.push(o)));return n}function yd(t,e){var n=null,r,o,i,s;if(Y(t)||typeof t=="string")for(n=new Array(t.length),r=0,o=t.length;r0,s=e?!!e.$stable:!i,l=e&&e.$key;if(!e)o={};else{if(e._normalized)return e._normalized;if(s&&r&&r!==Pt&&l===r.$key&&!i&&!r.$hasNormal)return r;o={};for(var u in e)e[u]&&u[0]!=="$"&&(o[u]=Pd(t,n,u,e[u]))}for(var f in n)f in o||(o[f]=$d(n,f));return e&&Object.isExtensible(e)&&(e._normalized=o),Ct(o,"$stable",s),Ct(o,"$key",l),Ct(o,"$hasNormal",i),o}function Pd(t,e,n,r){var o=function(){var i=$t;Ue(t);var s=arguments.length?r.apply(null,arguments):r({});s=s&&typeof s=="object"&&!Y(s)?[s]:$s(s);var l=s&&s[0];return Ue(i),s&&(!l||s.length===1&&l.isComment&&!vr(l))?void 0:s};return r.proxy&&Object.defineProperty(e,n,{get:o,enumerable:!0,configurable:!0}),o}function $d(t,e){return function(){return t[e]}}function kd(t){var e=t.$options,n=e.setup;if(n){var r=t._setupContext=Od(t);Ue(t),Un();var o=Te(n,null,[t._props||sc({}),r],t,"setup");if(Hn(),Ue(),pt(o))e.render=o;else if(Ot(o))if(t._setupState=o,o.__sfc){var i=t._setupProxy={};for(var s in o)s!=="__sfc"&&Mi(i,o,s)}else for(var s in o)Ju(s)||Mi(t,o,s)}}function Od(t){return{get attrs(){if(!t._attrsProxy){var e=t._attrsProxy={};Ct(e,"_v_attr_proxy",!0),yo(e,t.$attrs,Pt,t,"$attrs")}return t._attrsProxy},get listeners(){if(!t._listenersProxy){var e=t._listenersProxy={};yo(e,t.$listeners,Pt,t,"$listeners")}return t._listenersProxy},get slots(){return Rd(t)},emit:qu(t.$emit,t),expose:function(e){e&&Object.keys(e).forEach(function(n){return Mi(t,e,n)})}}}function yo(t,e,n,r,o){var i=!1;for(var s in e)s in t?e[s]!==n[s]&&(i=!0):(i=!0,Ld(t,s,r,o));for(var s in t)s in e||(i=!0,delete t[s]);return i}function Ld(t,e,n,r){Object.defineProperty(t,e,{enumerable:!0,configurable:!0,get:function(){return n[r][e]}})}function Rd(t){return t._slotsProxy||mc(t._slotsProxy={},t.$scopedSlots),t._slotsProxy}function mc(t,e){for(var n in e)t[n]=e[n];for(var n in t)n in e||delete t[n]}function Id(t){t._vnode=null,t._staticTrees=null;var e=t.$options,n=t.$vnode=e._parentVnode,r=n&&n.context;t.$slots=ks(e._renderChildren,r),t.$scopedSlots=n?lr(t.$parent,n.data.scopedSlots,t.$slots):Pt,t._c=function(i,s,l,u){return wo(t,i,s,l,u,!1)},t.$createElement=function(i,s,l,u){return wo(t,i,s,l,u,!0)};var o=n&&n.data;Ve(t,"$attrs",o&&o.attrs||Pt,null,!0),Ve(t,"$listeners",e._parentListeners||Pt,null,!0)}var eo=null;function Fd(t){hc(t.prototype),t.prototype.$nextTick=function(e){return jo(e,this)},t.prototype._render=function(){var e=this,n=e.$options,r=n.render,o=n._parentVnode;o&&e._isMounted&&(e.$scopedSlots=lr(e.$parent,o.data.scopedSlots,e.$slots,e.$scopedSlots),e._slotsProxy&&mc(e._slotsProxy,e.$scopedSlots)),e.$vnode=o;var i=$t,s=eo,l;try{Ue(e),eo=e,l=r.call(e._renderProxy,e.$createElement)}catch(u){cn(u,e,"render"),l=e._vnode}finally{eo=s,Ue(i)}return Y(l)&&l.length===1&&(l=l[0]),l instanceof Ht||(l=Rn()),l.parent=o,l}}function ui(t,e){return(t.__esModule||Cr&&t[Symbol.toStringTag]==="Module")&&(t=t.default),Ot(t)?e.extend(t):t}function Bd(t,e,n,r,o){var i=Rn();return i.asyncFactory=t,i.asyncMeta={data:e,context:n,children:r,tag:o},i}function Dd(t,e){if(yt(t.error)&&E(t.errorComp))return t.errorComp;if(E(t.resolved))return t.resolved;var n=eo;if(n&&E(t.owners)&&t.owners.indexOf(n)===-1&&t.owners.push(n),yt(t.loading)&&E(t.loadingComp))return t.loadingComp;if(n&&!E(t.owners)){var r=t.owners=[n],o=!0,i=null,s=null;n.$on("hook:destroyed",function(){return We(r,n)});var l=function(h){for(var y=0,g=r.length;y1?Ri(o):o;for(var i=Ri(arguments,1),s='event handler for "'.concat(n,'"'),l=0,u=o.length;ldocument.createEvent("Event").timeStamp&&(Wi=function(){return ci.now()})}var ih=function(t,e){if(t.post){if(!e.post)return 1}else if(e.post)return-1;return t.id-e.id};function sh(){Sc=Wi(),Rs=!0;var t,e;for(be.sort(ih),Nn=0;NnNn&&be[n].id>t.id;)n--;be.splice(n+1,0,t)}Vi||(Vi=!0,jo(sh))}}function ch(t){var e=t.$options.provide;if(e){var n=pt(e)?e.call(t):e;if(!Ot(n))return;for(var r=md(t),o=Cr?Reflect.ownKeys(n):Object.keys(n),i=0;i-1){if(i&&!Rt(o,"default"))s=!1;else if(s===""||s===Er(t)){var u=qa(String,o.type);(u<0||l-1)return this;var r=Ri(arguments,1);return r.unshift(this),pt(e.install)?e.install.apply(e,r):pt(e)&&e.apply(null,r),n.push(e),this}}function zh(t){t.mixin=function(e){return this.options=pn(this.options,e),this}}function jh(t){t.cid=0;var e=1;t.extend=function(n){n=n||{};var r=this,o=r.cid,i=n._Ctor||(n._Ctor={});if(i[o])return i[o];var s=bo(n)||bo(r.options),l=function(u){this._init(u)};return l.prototype=Object.create(r.prototype),l.prototype.constructor=l,l.cid=e++,l.options=pn(r.options,n),l.super=r,l.options.props&&Uh(l),l.options.computed&&Hh(l),l.extend=r.extend,l.mixin=r.mixin,l.use=r.use,Do.forEach(function(u){l[u]=r[u]}),s&&(l.options.components[s]=l),l.superOptions=r.options,l.extendOptions=n,l.sealedOptions=ht({},l.options),i[o]=l,l}}function Uh(t){var e=t.options.props;for(var n in e)Ds(t.prototype,"_props",n)}function Hh(t){var e=t.options.computed;for(var n in e)Nc(t.prototype,n,e[n])}function Vh(t){Do.forEach(function(e){t[e]=function(n,r){return r?(e==="component"&&It(r)&&(r.name=r.name||n,r=this.options._base.extend(r)),e==="directive"&&pt(r)&&(r={bind:r,update:r}),this.options[e+"s"][n]=r,r):this.options[e+"s"][n]}})}function Za(t){return t&&(bo(t.Ctor.options)||t.tag)}function Fr(t,e){return Y(t)?t.indexOf(e)>-1:typeof t=="string"?t.split(",").indexOf(e)>-1:Df(t)?t.test(e):!1}function Ya(t,e){var n=t.cache,r=t.keys,o=t._vnode,i=t.$vnode;for(var s in n){var l=n[s];if(l){var u=l.name;u&&!e(u)&&Ki(n,s,r,o)}}i.componentOptions.children=void 0}function Ki(t,e,n,r){var o=t[e];o&&(!r||o.tag!==r.tag)&&o.componentInstance.$destroy(),t[e]=null,We(n,e)}var Ja=[String,RegExp,Array],Wh={name:"keep-alive",abstract:!0,props:{include:Ja,exclude:Ja,max:[String,Number]},methods:{cacheVNode:function(){var t=this,e=t.cache,n=t.keys,r=t.vnodeToCache,o=t.keyToCache;if(r){var i=r.tag,s=r.componentInstance,l=r.componentOptions;e[o]={name:Za(l),tag:i,componentInstance:s},n.push(o),this.max&&n.length>parseInt(this.max)&&Ki(e,n[0],n,this._vnode),this.vnodeToCache=null}}},created:function(){this.cache=Object.create(null),this.keys=[]},destroyed:function(){for(var t in this.cache)Ki(this.cache,t,this.keys)},mounted:function(){var t=this;this.cacheVNode(),this.$watch("include",function(e){Ya(t,function(n){return Fr(e,n)})}),this.$watch("exclude",function(e){Ya(t,function(n){return!Fr(e,n)})})},updated:function(){this.cacheVNode()},render:function(){var t=this.$slots.default,e=vc(t),n=e&&e.componentOptions;if(n){var r=Za(n),o=this,i=o.include,s=o.exclude;if(i&&(!r||!Fr(i,r))||s&&r&&Fr(s,r))return e;var l=this,u=l.cache,f=l.keys,p=e.key==null?n.Ctor.cid+(n.tag?"::".concat(n.tag):""):e.key;u[p]?(e.componentInstance=u[p].componentInstance,We(f,p),f.push(p)):(this.vnodeToCache=e,this.keyToCache=p),e.data.keepAlive=!0}return e||t&&t[0]}},Gh={KeepAlive:Wh};function qh(t){var e={};e.get=function(){return Xt},Object.defineProperty(t,"config",e),t.util={warn:gh,extend:ht,mergeOptions:pn,defineReactive:Ve},t.set=Ts,t.delete=oc,t.nextTick=jo,t.observable=function(n){return Ae(n),n},t.options=Object.create(null),Do.forEach(function(n){t.options[n+"s"]=Object.create(null)}),t.options._base=t,ht(t.options.components,Gh),Mh(t),zh(t),jh(t),Vh(t)}qh(st),Object.defineProperty(st.prototype,"$isServer",{get:Ge}),Object.defineProperty(st.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Object.defineProperty(st,"FunctionalRenderContext",{value:Is}),st.version=qd;var Xh=se("style,class"),Kh=se("input,textarea,option,select,progress"),Zh=function(t,e,n){return n==="value"&&Kh(t)&&e!=="button"||n==="selected"&&t==="option"||n==="checked"&&t==="input"||n==="muted"&&t==="video"},Pc=se("contenteditable,draggable,spellcheck"),Yh=se("events,caret,typing,plaintext-only"),Jh=function(t,e){return Eo(e)||e==="false"?"false":t==="contenteditable"&&Yh(e)?e:"true"},Qh=se("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,truespeed,typemustmatch,visible"),Zi="http://www.w3.org/1999/xlink",zs=function(t){return t.charAt(5)===":"&&t.slice(0,5)==="xlink"},$c=function(t){return zs(t)?t.slice(6,t.length):""},Eo=function(t){return t==null||t===!1};function tm(t){for(var e=t.data,n=t,r=t;E(r.componentInstance);)r=r.componentInstance._vnode,r&&r.data&&(e=Qa(r.data,e));for(;E(n=n.parent);)n&&n.data&&(e=Qa(e,n.data));return em(e.staticClass,e.class)}function Qa(t,e){return{staticClass:js(t.staticClass,e.staticClass),class:E(t.class)?[t.class,e.class]:e.class}}function em(t,e){return E(t)||E(e)?js(t,Us(e)):""}function js(t,e){return t?e?t+" "+e:t:e||""}function Us(t){return Array.isArray(t)?nm(t):Ot(t)?rm(t):typeof t=="string"?t:""}function nm(t){for(var e="",n,r=0,o=t.length;r-1?Br[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:Br[t]=/HTMLUnknownElement/.test(e.toString())}var Yi=se("text,number,password,search,email,tel,url");function lm(t){if(typeof t=="string"){var e=document.querySelector(t);return e||document.createElement("div")}else return t}function um(t,e){var n=document.createElement(t);return t!=="select"||e.data&&e.data.attrs&&e.data.attrs.multiple!==void 0&&n.setAttribute("multiple","multiple"),n}function cm(t,e){return document.createElementNS(om[t],e)}function pm(t){return document.createTextNode(t)}function fm(t){return document.createComment(t)}function dm(t,e,n){t.insertBefore(e,n)}function hm(t,e){t.removeChild(e)}function mm(t,e){t.appendChild(e)}function vm(t){return t.parentNode}function gm(t){return t.nextSibling}function ym(t){return t.tagName}function wm(t,e){t.textContent=e}function _m(t,e){t.setAttribute(e,"")}var bm=Object.freeze({__proto__:null,createElement:um,createElementNS:cm,createTextNode:pm,createComment:fm,insertBefore:dm,removeChild:hm,appendChild:mm,parentNode:vm,nextSibling:gm,tagName:ym,setTextContent:wm,setStyleScope:_m}),xm={create:function(t,e){Pn(e)},update:function(t,e){t.data.ref!==e.data.ref&&(Pn(t,!0),Pn(e))},destroy:function(t){Pn(t,!0)}};function Pn(t,e){var n=t.data.ref;if(E(n)){var r=t.context,o=t.componentInstance||t.elm,i=e?null:o,s=e?void 0:o;if(pt(n)){Te(n,r,[i],r,"template ref function");return}var l=t.data.refInFor,u=typeof n=="string"||typeof n=="number",f=kt(n),p=r.$refs;if(u||f){if(l){var h=u?p[n]:n.value;e?Y(h)&&We(h,o):Y(h)?h.includes(o)||h.push(o):u?(p[n]=[o],tl(r,n,p[n])):n.value=[o]}else if(u){if(e&&p[n]!==o)return;p[n]=s,tl(r,n,i)}else if(f){if(e&&n.value!==o)return;n.value=i}}}}function tl(t,e,n){var r=t._setupState;r&&Rt(r,e)&&(kt(r[e])?r[e].value=n:r[e]=n)}var ze=new Ht("",{},[]),Qn=["create","activate","update","remove","destroy"];function Ke(t,e){return t.key===e.key&&t.asyncFactory===e.asyncFactory&&(t.tag===e.tag&&t.isComment===e.isComment&&E(t.data)===E(e.data)&&Em(t,e)||yt(t.isAsyncPlaceholder)&&K(e.asyncFactory.error))}function Em(t,e){if(t.tag!=="input")return!0;var n,r=E(n=t.data)&&E(n=n.attrs)&&n.type,o=E(n=e.data)&&E(n=n.attrs)&&n.type;return r===o||Yi(r)&&Yi(o)}function Cm(t,e,n){var r,o,i={};for(r=e;r<=n;++r)o=t[r].key,E(o)&&(i[o]=r);return i}function Sm(t){var e,n,r={},o=t.modules,i=t.nodeOps;for(e=0;eW?(Wt=K(S[G+1])?null:S[G+1].elm,R(w,Wt,S,V,G,O)):V>G&&q(_,D,W)}function Q(w,_,S,O){for(var F=S;F-1?ol(t,e,n):Qh(e)?Eo(n)?t.removeAttribute(e):(n=e==="allowfullscreen"&&t.tagName==="EMBED"?"true":e,t.setAttribute(e,n)):Pc(e)?t.setAttribute(e,Jh(e,n)):zs(e)?Eo(n)?t.removeAttributeNS(Zi,$c(e)):t.setAttributeNS(Zi,e,n):ol(t,e,n)}function ol(t,e,n){if(Eo(n))t.removeAttribute(e);else{if(zn&&!jn&&t.tagName==="TEXTAREA"&&e==="placeholder"&&n!==""&&!t.__ieph){var r=function(o){o.stopImmediatePropagation(),t.removeEventListener("input",r)};t.addEventListener("input",r),t.__ieph=!0}t.setAttribute(e,n)}}var km={create:nl,update:nl};function il(t,e){var n=e.elm,r=e.data,o=t.data;if(!(K(r.staticClass)&&K(r.class)&&(K(o)||K(o.staticClass)&&K(o.class)))){var i=tm(e),s=n._transitionClasses;E(s)&&(i=js(i,Us(s))),i!==n._prevClass&&(n.setAttribute("class",i),n._prevClass=i)}}var Om={create:il,update:il},fi="__r",di="__c";function Lm(t){if(E(t[fi])){var e=zn?"change":"input";t[e]=[].concat(t[fi],t[e]||[]),delete t[fi]}E(t[di])&&(t.change=[].concat(t[di],t.change||[]),delete t[di])}var wr;function Rm(t,e,n){var r=wr;return function o(){var i=e.apply(null,arguments);i!==null&&Oc(t,o,n,r)}}var Im=ji&&!(Sa&&Number(Sa[1])<=53);function Fm(t,e,n,r){if(Im){var o=Sc,i=e;e=i._wrapper=function(s){if(s.target===s.currentTarget||s.timeStamp>=o||s.timeStamp<=0||s.target.ownerDocument!==document)return i.apply(this,arguments)}}wr.addEventListener(t,e,tc?{capture:n,passive:r}:n)}function Oc(t,e,n,r){(r||wr).removeEventListener(t,e._wrapper||e,n)}function hi(t,e){if(!(K(t.data.on)&&K(e.data.on))){var n=e.data.on||{},r=t.data.on||{};wr=e.elm||t.elm,Lm(n),cc(n,r,Fm,Oc,Rm,e.context),wr=void 0}}var Bm={create:hi,update:hi,destroy:function(t){return hi(t,ze)}},Dr;function sl(t,e){if(!(K(t.data.domProps)&&K(e.data.domProps))){var n,r,o=e.elm,i=t.data.domProps||{},s=e.data.domProps||{};(E(s.__ob__)||yt(s._v_attr_proxy))&&(s=e.data.domProps=ht({},s));for(n in i)n in s||(o[n]="");for(n in s){if(r=s[n],n==="textContent"||n==="innerHTML"){if(e.children&&(e.children.length=0),r===i[n])continue;o.childNodes.length===1&&o.removeChild(o.childNodes[0])}if(n==="value"&&o.tagName!=="PROGRESS"){o._value=r;var l=K(r)?"":String(r);Dm(o,l)&&(o.value=l)}else if(n==="innerHTML"&&Hs(o.tagName)&&K(o.innerHTML)){Dr=Dr||document.createElement("div"),Dr.innerHTML="".concat(r,"");for(var u=Dr.firstChild;o.firstChild;)o.removeChild(o.firstChild);for(;u.firstChild;)o.appendChild(u.firstChild)}else if(r!==i[n])try{o[n]=r}catch{}}}}function Dm(t,e){return!t.composing&&(t.tagName==="OPTION"||Mm(t,e)||zm(t,e))}function Mm(t,e){var n=!0;try{n=document.activeElement!==t}catch{}return n&&t.value!==e}function zm(t,e){var n=t.value,r=t._vModifiers;if(E(r)){if(r.number)return hr(n)!==hr(e);if(r.trim)return n.trim()!==e.trim()}return n!==e}var jm={create:sl,update:sl},Um=mn(function(t){var e={},n=/;(?![^(]*\))/g,r=/:(.+)/;return t.split(n).forEach(function(o){if(o){var i=o.split(r);i.length>1&&(e[i[0].trim()]=i[1].trim())}}),e});function mi(t){var e=Lc(t.style);return t.staticStyle?ht(t.staticStyle,e):e}function Lc(t){return Array.isArray(t)?Xu(t):typeof t=="string"?Um(t):t}function Hm(t,e){var n={},r;if(e)for(var o=t;o.componentInstance;)o=o.componentInstance._vnode,o&&o.data&&(r=mi(o.data))&&ht(n,r);(r=mi(t.data))&&ht(n,r);for(var i=t;i=i.parent;)i.data&&(r=mi(i.data))&&ht(n,r);return n}var Vm=/^--/,al=/\s*!important$/,ll=function(t,e,n){if(Vm.test(e))t.style.setProperty(e,n);else if(al.test(n))t.style.setProperty(Er(e),n.replace(al,""),"important");else{var r=Wm(e);if(Array.isArray(n))for(var o=0,i=n.length;o-1?e.split(Rc).forEach(function(r){return t.classList.add(r)}):t.classList.add(e);else{var n=" ".concat(t.getAttribute("class")||""," ");n.indexOf(" "+e+" ")<0&&t.setAttribute("class",(n+e).trim())}}function Fc(t,e){if(!(!e||!(e=e.trim())))if(t.classList)e.indexOf(" ")>-1?e.split(Rc).forEach(function(o){return t.classList.remove(o)}):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{for(var n=" ".concat(t.getAttribute("class")||""," "),r=" "+e+" ";n.indexOf(r)>=0;)n=n.replace(r," ");n=n.trim(),n?t.setAttribute("class",n):t.removeAttribute("class")}}function Bc(t){if(t){if(typeof t=="object"){var e={};return t.css!==!1&&ht(e,pl(t.name||"v")),ht(e,t),e}else if(typeof t=="string")return pl(t)}}var pl=mn(function(t){return{enterClass:"".concat(t,"-enter"),enterToClass:"".concat(t,"-enter-to"),enterActiveClass:"".concat(t,"-enter-active"),leaveClass:"".concat(t,"-leave"),leaveToClass:"".concat(t,"-leave-to"),leaveActiveClass:"".concat(t,"-leave-active")}}),Dc=zt&&!jn,Cn="transition",vi="animation",ro="transition",Co="transitionend",Ji="animation",Mc="animationend";Dc&&(window.ontransitionend===void 0&&window.onwebkittransitionend!==void 0&&(ro="WebkitTransition",Co="webkitTransitionEnd"),window.onanimationend===void 0&&window.onwebkitanimationend!==void 0&&(Ji="WebkitAnimation",Mc="webkitAnimationEnd"));var fl=zt?window.requestAnimationFrame?window.requestAnimationFrame.bind(window):setTimeout:function(t){return t()};function zc(t){fl(function(){fl(t)})}function sn(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),Ic(t,e))}function xe(t,e){t._transitionClasses&&We(t._transitionClasses,e),Fc(t,e)}function jc(t,e,n){var r=Uc(t,e),o=r.type,i=r.timeout,s=r.propCount;if(!o)return n();var l=o===Cn?Co:Mc,u=0,f=function(){t.removeEventListener(l,p),n()},p=function(h){h.target===t&&++u>=s&&f()};setTimeout(function(){u0&&(f=Cn,p=i,h=o.length):e===vi?u>0&&(f=vi,p=u,h=l.length):(p=Math.max(i,u),f=p>0?i>u?Cn:vi:null,h=f?f===Cn?o.length:l.length:0);var y=f===Cn&&qm.test(n[ro+"Property"]);return{type:f,timeout:p,propCount:h,hasTransform:y}}function dl(t,e){for(;t.length1}function ml(t,e){e.data.show!==!0&&Qi(e)}var Xm=zt?{create:ml,activate:ml,remove:function(t,e){t.data.show!==!0?Hc(t,e):e()}}:{},Km=[km,Om,Bm,jm,Gm,Xm],Zm=Km.concat($m),Ym=Sm({nodeOps:bm,modules:Zm});jn&&document.addEventListener("selectionchange",function(){var t=document.activeElement;t&&t.vmodel&&Ws(t,"input")});var Wc={inserted:function(t,e,n,r){n.tag==="select"?(r.elm&&!r.elm._vOptions?Me(n,"postpatch",function(){Wc.componentUpdated(t,e,n)}):vl(t,e,n.context),t._vOptions=[].map.call(t.options,So)):(n.tag==="textarea"||Yi(t.type))&&(t._vModifiers=e.modifiers,e.modifiers.lazy||(t.addEventListener("compositionstart",Jm),t.addEventListener("compositionend",wl),t.addEventListener("change",wl),jn&&(t.vmodel=!0)))},componentUpdated:function(t,e,n){if(n.tag==="select"){vl(t,e,n.context);var r=t._vOptions,o=t._vOptions=[].map.call(t.options,So);if(o.some(function(s,l){return!un(s,r[l])})){var i=t.multiple?e.value.some(function(s){return yl(s,o)}):e.value!==e.oldValue&&yl(e.value,o);i&&Ws(t,"change")}}}};function vl(t,e,n){gl(t,e),(zn||Qu)&&setTimeout(function(){gl(t,e)},0)}function gl(t,e,n){var r=e.value,o=t.multiple;if(!(o&&!Array.isArray(r))){for(var i,s,l=0,u=t.options.length;l-1,s.selected!==i&&(s.selected=i);else if(un(So(s),r)){t.selectedIndex!==l&&(t.selectedIndex=l);return}o||(t.selectedIndex=-1)}}function yl(t,e){return e.every(function(n){return!un(n,t)})}function So(t){return"_value"in t?t._value:t.value}function Jm(t){t.target.composing=!0}function wl(t){t.target.composing&&(t.target.composing=!1,Ws(t.target,"input"))}function Ws(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function ts(t){return t.componentInstance&&(!t.data||!t.data.transition)?ts(t.componentInstance._vnode):t}var Qm={bind:function(t,e,n){var r=e.value;n=ts(n);var o=n.data&&n.data.transition,i=t.__vOriginalDisplay=t.style.display==="none"?"":t.style.display;r&&o?(n.data.show=!0,Qi(n,function(){t.style.display=i})):t.style.display=r?i:"none"},update:function(t,e,n){var r=e.value,o=e.oldValue;if(!r!=!o){n=ts(n);var i=n.data&&n.data.transition;i?(n.data.show=!0,r?Qi(n,function(){t.style.display=t.__vOriginalDisplay}):Hc(n,function(){t.style.display="none"})):t.style.display=r?t.__vOriginalDisplay:"none"}},unbind:function(t,e,n,r,o){o||(t.style.display=t.__vOriginalDisplay)}},tv={model:Wc,show:Qm},Gc={name:String,appear:Boolean,css:Boolean,mode:String,type:String,enterClass:String,leaveClass:String,enterToClass:String,leaveToClass:String,enterActiveClass:String,leaveActiveClass:String,appearClass:String,appearActiveClass:String,appearToClass:String,duration:[Number,String,Object]};function es(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?es(vc(e.children)):t}function qc(t){var e={},n=t.$options;for(var r in n.propsData)e[r]=t[r];var o=n._parentListeners;for(var r in o)e[ln(r)]=o[r];return e}function _l(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}function ev(t){for(;t=t.parent;)if(t.data.transition)return!0}function nv(t,e){return e.key===t.key&&e.tag===t.tag}var rv=function(t){return t.tag||vr(t)},ov=function(t){return t.name==="show"},iv={name:"transition",props:Gc,abstract:!0,render:function(t){var e=this,n=this.$slots.default;if(n&&(n=n.filter(rv),!!n.length)){var r=this.mode,o=n[0];if(ev(this.$vnode))return o;var i=es(o);if(!i)return o;if(this._leaving)return _l(t,o);var s="__transition-".concat(this._uid,"-");i.key=i.key==null?i.isComment?s+"comment":s+i.tag:xr(i.key)?String(i.key).indexOf(s)===0?i.key:s+i.key:i.key;var l=(i.data||(i.data={})).transition=qc(this),u=this._vnode,f=es(u);if(i.data.directives&&i.data.directives.some(ov)&&(i.data.show=!0),f&&f.data&&!nv(i,f)&&!vr(f)&&!(f.componentInstance&&f.componentInstance._vnode.isComment)){var p=f.data.transition=ht({},l);if(r==="out-in")return this._leaving=!0,Me(p,"afterLeave",function(){e._leaving=!1,e.$forceUpdate()}),_l(t,o);if(r==="in-out"){if(vr(i))return u;var h,y=function(){h()};Me(l,"afterEnter",y),Me(l,"enterCancelled",y),Me(p,"delayLeave",function(g){h=g})}}return o}}},Xc=ht({tag:String,moveClass:String},Gc);delete Xc.mode;var sv={props:Xc,beforeMount:function(){var t=this,e=this._update;this._update=function(n,r){var o=xc(t);t.__patch__(t._vnode,t.kept,!1,!0),t._vnode=t.kept,o(),e.call(t,n,r)}},render:function(t){for(var e=this.tag||this.$vnode.data.tag||"span",n=Object.create(null),r=this.prevChildren=this.children,o=this.$slots.default||[],i=this.children=[],s=qc(this),l=0;l{const r=Object.assign({escape:!0},n||{}),o=function(i,s){return s=s||{},i.replace(/{([^{}]*)}/g,function(l,u){const f=s[u];return r.escape?encodeURIComponent(typeof f=="string"||typeof f=="number"?f.toString():l):typeof f=="string"||typeof f=="number"?f.toString():l})};return t.charAt(0)!=="/"&&(t="/"+t),o(t,e||{})},Gs=(t,e,n)=>{var r,o,i;const s=Object.assign({noRewrite:!1},n||{}),l=(r=n==null?void 0:n.baseURL)!=null?r:Kc();return((i=(o=window==null?void 0:window.OC)==null?void 0:o.config)==null?void 0:i.modRewriteWorking)===!0&&!s.noRewrite?l+bl(t,e,n):l+"/index.php"+bl(t,e,n)},fn=(t,e)=>e.includes(".")?xl(t,"img",e):xl(t,"img","".concat(e,".svg")),xl=(t,e,n)=>{var r,o,i;const s=(i=(o=(r=window==null?void 0:window.OC)==null?void 0:r.coreApps)==null?void 0:o.includes(t))!=null?i:!1,l=n.slice(-3)==="php";let u=Kc();return l&&!s?(u+="/index.php/apps/".concat(t),e&&(u+="/".concat(encodeURI(e))),n!=="index.php"&&(u+="/".concat(n))):!l&&!s?(u=fv(t),e&&(u+="/".concat(e,"/")),u.at(-1)!=="/"&&(u+="/"),u+=n):((t==="settings"||t==="core"||t==="search")&&e==="ajax"&&(u+="/index.php"),t&&(u+="/".concat(t)),e&&(u+="/".concat(e)),u+="/".concat(n)),u};function Kc(){let t=window._oc_webroot;if(typeof t>"u"){t=location.pathname;const e=t.indexOf("/index.php/");if(e!==-1)t=t.slice(0,e);else{const n=t.indexOf("/",1);t=t.slice(0,n>0?n:void 0)}}return t}function fv(t){var e,n;return(n=((e=window._oc_appswebroots)!=null?e:{})[t])!=null?n:""}const{entries:Zc,setPrototypeOf:El,isFrozen:dv,getPrototypeOf:hv,getOwnPropertyDescriptor:mv}=Object;let{freeze:Ft,seal:Yt,create:Yc}=Object,{apply:ns,construct:rs}=typeof Reflect<"u"&&Reflect;Ft||(Ft=function(t){return t}),Yt||(Yt=function(t){return t}),ns||(ns=function(t,e,n){return t.apply(e,n)}),rs||(rs=function(t,e){return new t(...e)});const zr=Vt(Array.prototype.forEach),Cl=Vt(Array.prototype.pop),er=Vt(Array.prototype.push),oo=Vt(String.prototype.toLowerCase),gi=Vt(String.prototype.toString),Sl=Vt(String.prototype.match),nr=Vt(String.prototype.replace),vv=Vt(String.prototype.indexOf),gv=Vt(String.prototype.trim),re=Vt(Object.prototype.hasOwnProperty),Mt=Vt(RegExp.prototype.test),rr=yv(TypeError);function Vt(t){return function(e){for(var n=arguments.length,r=new Array(n>1?n-1:0),o=1;o2&&arguments[2]!==void 0?arguments[2]:oo;El&&El(t,null);let r=e.length;for(;r--;){let o=e[r];if(typeof o=="string"){const i=n(o);i!==o&&(dv(e)||(e[r]=i),o=i)}t[o]=!0}return t}function wv(t){for(let e=0;e/gm),Cv=Yt(/\${[\w\W]*}/gm),Sv=Yt(/^data-[\-\w.\u00B7-\uFFFF]/),Av=Yt(/^aria-[\-\w]+$/),Jc=Yt(/^(?:(?:(?:f|ht)tps?|mailto|tel|callto|sms|cid|xmpp):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i),Tv=Yt(/^(?:\w+script|data):/i),Nv=Yt(/[\u0000-\u0020\u00A0\u1680\u180E\u2000-\u2029\u205F\u3000]/g),Qc=Yt(/^html$/i),Pv=Yt(/^[a-z][.\w]*(-[.\w]+)+$/i);var $l=Object.freeze({__proto__:null,MUSTACHE_EXPR:xv,ERB_EXPR:Ev,TMPLIT_EXPR:Cv,DATA_ATTR:Sv,ARIA_ATTR:Av,IS_ALLOWED_URI:Jc,IS_SCRIPT_OR_DATA:Tv,ATTR_WHITESPACE:Nv,DOCTYPE_NAME:Qc,CUSTOM_ELEMENT:Pv});const $v=function(){return typeof window>"u"?null:window},kv=function(t,e){if(typeof t!="object"||typeof t.createPolicy!="function")return null;let n=null;const r="data-tt-policy-suffix";e&&e.hasAttribute(r)&&(n=e.getAttribute(r));const o="dompurify"+(n?"#"+n:"");try{return t.createPolicy(o,{createHTML(i){return i},createScriptURL(i){return i}})}catch{return console.warn("TrustedTypes policy "+o+" could not be created."),null}};function tp(){let t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:$v();const e=m=>tp(m);if(e.version="3.1.2",e.removed=[],!t||!t.document||t.document.nodeType!==9)return e.isSupported=!1,e;let{document:n}=t;const r=n,o=r.currentScript,{DocumentFragment:i,HTMLTemplateElement:s,Node:l,Element:u,NodeFilter:f,NamedNodeMap:p=t.NamedNodeMap||t.MozNamedAttrMap,HTMLFormElement:h,DOMParser:y,trustedTypes:g}=t,b=u.prototype,$=jr(b,"cloneNode"),P=jr(b,"nextSibling"),B=jr(b,"childNodes"),R=jr(b,"parentNode");if(typeof s=="function"){const m=n.createElement("template");m.content&&m.content.ownerDocument&&(n=m.content.ownerDocument)}let j,q="";const{implementation:et,createNodeIterator:ft,createDocumentFragment:Q,getElementsByTagName:U}=n,{importNode:T}=r;let C={};e.isSupported=typeof Zc=="function"&&typeof R=="function"&&et&&et.createHTMLDocument!==void 0;const{MUSTACHE_EXPR:I,ERB_EXPR:w,TMPLIT_EXPR:_,DATA_ATTR:S,ARIA_ATTR:O,IS_SCRIPT_OR_DATA:F,ATTR_WHITESPACE:D,CUSTOM_ELEMENT:V}=$l;let{IS_ALLOWED_URI:W}=$l,M=null;const X=J({},[...Al,...yi,...wi,..._i,...Tl]);let G=null;const ot=J({},[...Nl,...bi,...Pl,...Ur]);let H=Object.seal(Yc(null,{tagNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},attributeNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},allowCustomizedBuiltInElements:{writable:!0,configurable:!1,enumerable:!0,value:!1}})),it=null,St=null,Tt=!0,Wt=!0,jt=!1,te=!0,Lt=!1,ke=!0,ae=!1,Kn=!1,vn=!1,Ut=!1,le=!1,gn=!1,$r=!0,yn=!1;const ii="user-content-";let Zn=!0,Oe=!1,ee={},At=null;const wn=J({},["annotation-xml","audio","colgroup","desc","foreignobject","head","iframe","math","mi","mn","mo","ms","mtext","noembed","noframes","noscript","plaintext","script","style","svg","template","thead","title","video","xmp"]);let kr=null;const ne=J({},["audio","video","img","source","image","track"]);let Yn=null;const a=J({},["alt","class","for","id","label","name","pattern","placeholder","role","summary","title","value","style","xmlns"]),c="http://www.w3.org/1998/Math/MathML",d="http://www.w3.org/2000/svg",v="http://www.w3.org/1999/xhtml";let x=v,A=!1,k=null;const ut=J({},[c,d,v],gi);let vt=null;const dt=["application/xhtml+xml","text/html"],ct="text/html";let Z=null,_n=null;const ca=255,Nf=n.createElement("form"),pa=function(m){return m instanceof RegExp||m instanceof Function},si=function(){let m=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};if(!(_n&&_n===m)){if((!m||typeof m!="object")&&(m={}),m=Ye(m),vt=dt.indexOf(m.PARSER_MEDIA_TYPE)===-1?ct:m.PARSER_MEDIA_TYPE,Z=vt==="application/xhtml+xml"?gi:oo,M=re(m,"ALLOWED_TAGS")?J({},m.ALLOWED_TAGS,Z):X,G=re(m,"ALLOWED_ATTR")?J({},m.ALLOWED_ATTR,Z):ot,k=re(m,"ALLOWED_NAMESPACES")?J({},m.ALLOWED_NAMESPACES,gi):ut,Yn=re(m,"ADD_URI_SAFE_ATTR")?J(Ye(a),m.ADD_URI_SAFE_ATTR,Z):a,kr=re(m,"ADD_DATA_URI_TAGS")?J(Ye(ne),m.ADD_DATA_URI_TAGS,Z):ne,At=re(m,"FORBID_CONTENTS")?J({},m.FORBID_CONTENTS,Z):wn,it=re(m,"FORBID_TAGS")?J({},m.FORBID_TAGS,Z):{},St=re(m,"FORBID_ATTR")?J({},m.FORBID_ATTR,Z):{},ee=re(m,"USE_PROFILES")?m.USE_PROFILES:!1,Tt=m.ALLOW_ARIA_ATTR!==!1,Wt=m.ALLOW_DATA_ATTR!==!1,jt=m.ALLOW_UNKNOWN_PROTOCOLS||!1,te=m.ALLOW_SELF_CLOSE_IN_ATTR!==!1,Lt=m.SAFE_FOR_TEMPLATES||!1,ke=m.SAFE_FOR_XML!==!1,ae=m.WHOLE_DOCUMENT||!1,Ut=m.RETURN_DOM||!1,le=m.RETURN_DOM_FRAGMENT||!1,gn=m.RETURN_TRUSTED_TYPE||!1,vn=m.FORCE_BODY||!1,$r=m.SANITIZE_DOM!==!1,yn=m.SANITIZE_NAMED_PROPS||!1,Zn=m.KEEP_CONTENT!==!1,Oe=m.IN_PLACE||!1,W=m.ALLOWED_URI_REGEXP||Jc,x=m.NAMESPACE||v,H=m.CUSTOM_ELEMENT_HANDLING||{},m.CUSTOM_ELEMENT_HANDLING&&pa(m.CUSTOM_ELEMENT_HANDLING.tagNameCheck)&&(H.tagNameCheck=m.CUSTOM_ELEMENT_HANDLING.tagNameCheck),m.CUSTOM_ELEMENT_HANDLING&&pa(m.CUSTOM_ELEMENT_HANDLING.attributeNameCheck)&&(H.attributeNameCheck=m.CUSTOM_ELEMENT_HANDLING.attributeNameCheck),m.CUSTOM_ELEMENT_HANDLING&&typeof m.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements=="boolean"&&(H.allowCustomizedBuiltInElements=m.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements),Lt&&(Wt=!1),le&&(Ut=!0),ee&&(M=J({},Tl),G=[],ee.html===!0&&(J(M,Al),J(G,Nl)),ee.svg===!0&&(J(M,yi),J(G,bi),J(G,Ur)),ee.svgFilters===!0&&(J(M,wi),J(G,bi),J(G,Ur)),ee.mathMl===!0&&(J(M,_i),J(G,Pl),J(G,Ur))),m.ADD_TAGS&&(M===X&&(M=Ye(M)),J(M,m.ADD_TAGS,Z)),m.ADD_ATTR&&(G===ot&&(G=Ye(G)),J(G,m.ADD_ATTR,Z)),m.ADD_URI_SAFE_ATTR&&J(Yn,m.ADD_URI_SAFE_ATTR,Z),m.FORBID_CONTENTS&&(At===wn&&(At=Ye(At)),J(At,m.FORBID_CONTENTS,Z)),Zn&&(M["#text"]=!0),ae&&J(M,["html","head","body"]),M.table&&(J(M,["tbody"]),delete it.tbody),m.TRUSTED_TYPES_POLICY){if(typeof m.TRUSTED_TYPES_POLICY.createHTML!="function")throw rr('TRUSTED_TYPES_POLICY configuration option must provide a "createHTML" hook.');if(typeof m.TRUSTED_TYPES_POLICY.createScriptURL!="function")throw rr('TRUSTED_TYPES_POLICY configuration option must provide a "createScriptURL" hook.');j=m.TRUSTED_TYPES_POLICY,q=j.createHTML("")}else j===void 0&&(j=kv(g,o)),j!==null&&typeof q=="string"&&(q=j.createHTML(""));Ft&&Ft(m),_n=m}},fa=J({},["mi","mo","mn","ms","mtext"]),da=J({},["foreignobject","annotation-xml"]),Pf=J({},["title","style","font","a","script"]),ha=J({},[...yi,...wi,..._v]),ma=J({},[..._i,...bv]),$f=function(m){let z=R(m);(!z||!z.tagName)&&(z={namespaceURI:x,tagName:"template"});const L=oo(m.tagName),lt=oo(z.tagName);return k[m.namespaceURI]?m.namespaceURI===d?z.namespaceURI===v?L==="svg":z.namespaceURI===c?L==="svg"&&(lt==="annotation-xml"||fa[lt]):!!ha[L]:m.namespaceURI===c?z.namespaceURI===v?L==="math":z.namespaceURI===d?L==="math"&&da[lt]:!!ma[L]:m.namespaceURI===v?z.namespaceURI===d&&!da[lt]||z.namespaceURI===c&&!fa[lt]?!1:!ma[L]&&(Pf[L]||!ha[L]):!!(vt==="application/xhtml+xml"&&k[m.namespaceURI]):!1},Le=function(m){er(e.removed,{element:m});try{m.parentNode.removeChild(m)}catch{m.remove()}},ai=function(m,z){try{er(e.removed,{attribute:z.getAttributeNode(m),from:z})}catch{er(e.removed,{attribute:null,from:z})}if(z.removeAttribute(m),m==="is"&&!G[m])if(Ut||le)try{Le(z)}catch{}else try{z.setAttribute(m,"")}catch{}},va=function(m){let z=null,L=null;if(vn)m=""+m;else{const Et=Sl(m,/^[\r\n\t ]+/);L=Et&&Et[0]}vt==="application/xhtml+xml"&&x===v&&(m=''+m+"");const lt=j?j.createHTML(m):m;if(x===v)try{z=new y().parseFromString(lt,vt)}catch{}if(!z||!z.documentElement){z=et.createDocument(x,"template",null);try{z.documentElement.innerHTML=A?q:lt}catch{}}const at=z.body||z.documentElement;return m&&L&&at.insertBefore(n.createTextNode(L),at.childNodes[0]||null),x===v?U.call(z,ae?"html":"body")[0]:ae?z.documentElement:at},ga=function(m){return ft.call(m.ownerDocument||m,m,f.SHOW_ELEMENT|f.SHOW_COMMENT|f.SHOW_TEXT|f.SHOW_PROCESSING_INSTRUCTION|f.SHOW_CDATA_SECTION,null)},kf=function(m){return m instanceof h&&(typeof m.__depth<"u"&&typeof m.__depth!="number"||typeof m.__removalCount<"u"&&typeof m.__removalCount!="number"||typeof m.nodeName!="string"||typeof m.textContent!="string"||typeof m.removeChild!="function"||!(m.attributes instanceof p)||typeof m.removeAttribute!="function"||typeof m.setAttribute!="function"||typeof m.namespaceURI!="string"||typeof m.insertBefore!="function"||typeof m.hasChildNodes!="function")},ya=function(m){return typeof l=="function"&&m instanceof l},ye=function(m,z,L){C[m]&&zr(C[m],lt=>{lt.call(e,z,L,_n)})},wa=function(m){let z=null;if(ye("beforeSanitizeElements",m,null),kf(m))return Le(m),!0;const L=Z(m.nodeName);if(ye("uponSanitizeElement",m,{tagName:L,allowedTags:M}),m.hasChildNodes()&&!ya(m.firstElementChild)&&Mt(/<[/\w]/g,m.innerHTML)&&Mt(/<[/\w]/g,m.textContent)||m.nodeType===7||ke&&m.nodeType===8&&Mt(/<[/\w]/g,m.data))return Le(m),!0;if(!M[L]||it[L]){if(!it[L]&&ba(L)&&(H.tagNameCheck instanceof RegExp&&Mt(H.tagNameCheck,L)||H.tagNameCheck instanceof Function&&H.tagNameCheck(L)))return!1;if(Zn&&!At[L]){const lt=R(m)||m.parentNode,at=B(m)||m.childNodes;if(at&<){const Et=at.length;for(let we=Et-1;we>=0;--we){const Gt=$(at[we],!0);Gt.__removalCount=(m.__removalCount||0)+1,lt.insertBefore(Gt,P(m))}}}return Le(m),!0}return m instanceof u&&!$f(m)||(L==="noscript"||L==="noembed"||L==="noframes")&&Mt(/<\/no(script|embed|frames)/i,m.innerHTML)?(Le(m),!0):(Lt&&m.nodeType===3&&(z=m.textContent,zr([I,w,_],lt=>{z=nr(z,lt," ")}),m.textContent!==z&&(er(e.removed,{element:m.cloneNode()}),m.textContent=z)),ye("afterSanitizeElements",m,null),!1)},_a=function(m,z,L){if($r&&(z==="id"||z==="name")&&(L in n||L in Nf))return!1;if(!(Wt&&!St[z]&&Mt(S,z))&&!(Tt&&Mt(O,z))){if(!G[z]||St[z]){if(!(ba(m)&&(H.tagNameCheck instanceof RegExp&&Mt(H.tagNameCheck,m)||H.tagNameCheck instanceof Function&&H.tagNameCheck(m))&&(H.attributeNameCheck instanceof RegExp&&Mt(H.attributeNameCheck,z)||H.attributeNameCheck instanceof Function&&H.attributeNameCheck(z))||z==="is"&&H.allowCustomizedBuiltInElements&&(H.tagNameCheck instanceof RegExp&&Mt(H.tagNameCheck,L)||H.tagNameCheck instanceof Function&&H.tagNameCheck(L))))return!1}else if(!Yn[z]&&!Mt(W,nr(L,D,""))&&!((z==="src"||z==="xlink:href"||z==="href")&&m!=="script"&&vv(L,"data:")===0&&kr[m])&&!(jt&&!Mt(F,nr(L,D,"")))&&L)return!1}return!0},ba=function(m){return m!=="annotation-xml"&&Sl(m,V)},xa=function(m){ye("beforeSanitizeAttributes",m,null);const{attributes:z}=m;if(!z)return;const L={attrName:"",attrValue:"",keepAttr:!0,allowedAttributes:G};let lt=z.length;for(;lt--;){const at=z[lt],{name:Et,namespaceURI:we,value:Gt}=at,Bt=Z(Et);let Dt=Et==="value"?Gt:gv(Gt);if(L.attrName=Bt,L.attrValue=Dt,L.keepAttr=!0,L.forceKeepAttr=void 0,ye("uponSanitizeAttribute",m,L),Dt=L.attrValue,L.forceKeepAttr||(ai(Et,m),!L.keepAttr))continue;if(!te&&Mt(/\/>/i,Dt)){ai(Et,m);continue}Lt&&zr([I,w,_],Lf=>{Dt=nr(Dt,Lf," ")});const Ea=Z(m.nodeName);if(_a(Ea,Bt,Dt)){if(yn&&(Bt==="id"||Bt==="name")&&(ai(Et,m),Dt=ii+Dt),j&&typeof g=="object"&&typeof g.getAttributeType=="function"&&!we)switch(g.getAttributeType(Ea,Bt)){case"TrustedHTML":{Dt=j.createHTML(Dt);break}case"TrustedScriptURL":{Dt=j.createScriptURL(Dt);break}}try{we?m.setAttributeNS(we,Et,Dt):m.setAttribute(Et,Dt),Cl(e.removed)}catch{}}}ye("afterSanitizeAttributes",m,null)},Of=function m(z){let L=null;const lt=ga(z);for(ye("beforeSanitizeShadowDOM",z,null);L=lt.nextNode();){if(ye("uponSanitizeShadowNode",L,null),wa(L))continue;const at=R(L);L.nodeType===1&&(at&&at.__depth?L.__depth=(L.__removalCount||0)+at.__depth+1:L.__depth=1),L.__depth>=ca&&Le(L),L.content instanceof i&&(L.content.__depth=L.__depth,m(L.content)),xa(L)}ye("afterSanitizeShadowDOM",z,null)};return e.sanitize=function(m){let z=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},L=null,lt=null,at=null,Et=null;if(A=!m,A&&(m=""),typeof m!="string"&&!ya(m))if(typeof m.toString=="function"){if(m=m.toString(),typeof m!="string")throw rr("dirty is not a string, aborting")}else throw rr("toString is not a function");if(!e.isSupported)return m;if(Kn||si(z),e.removed=[],typeof m=="string"&&(Oe=!1),Oe){if(m.nodeName){const Bt=Z(m.nodeName);if(!M[Bt]||it[Bt])throw rr("root node is forbidden and cannot be sanitized in-place")}}else if(m instanceof l)L=va(""),lt=L.ownerDocument.importNode(m,!0),lt.nodeType===1&<.nodeName==="BODY"||lt.nodeName==="HTML"?L=lt:L.appendChild(lt);else{if(!Ut&&!Lt&&!ae&&m.indexOf("<")===-1)return j&&gn?j.createHTML(m):m;if(L=va(m),!L)return Ut?null:gn?q:""}L&&vn&&Le(L.firstChild);const we=ga(Oe?m:L);for(;at=we.nextNode();){if(wa(at))continue;const Bt=R(at);at.nodeType===1&&(Bt&&Bt.__depth?at.__depth=(at.__removalCount||0)+Bt.__depth+1:at.__depth=1),at.__depth>=ca&&Le(at),at.content instanceof i&&(at.content.__depth=at.__depth,Of(at.content)),xa(at)}if(Oe)return m;if(Ut){if(le)for(Et=Q.call(L.ownerDocument);L.firstChild;)Et.appendChild(L.firstChild);else Et=L;return(G.shadowroot||G.shadowrootmode)&&(Et=T.call(r,Et,!0)),Et}let Gt=ae?L.outerHTML:L.innerHTML;return ae&&M["!doctype"]&&L.ownerDocument&&L.ownerDocument.doctype&&L.ownerDocument.doctype.name&&Mt(Qc,L.ownerDocument.doctype.name)&&(Gt="\n"+Gt),Lt&&zr([I,w,_],Bt=>{Gt=nr(Gt,Bt," ")}),j&&gn?j.createHTML(Gt):Gt},e.setConfig=function(){let m=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};si(m),Kn=!0},e.clearConfig=function(){_n=null,Kn=!1},e.isValidAttribute=function(m,z,L){_n||si({});const lt=Z(m),at=Z(z);return _a(lt,at,L)},e.addHook=function(m,z){typeof z=="function"&&(C[m]=C[m]||[],er(C[m],z))},e.removeHook=function(m){if(C[m])return Cl(C[m])},e.removeHooks=function(m){C[m]&&(C[m]=[])},e.removeAllHooks=function(){C={}},e}var ep=tp(),Hr=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function Uo(t){return t&&t.__esModule&&Object.prototype.hasOwnProperty.call(t,"default")?t.default:t}var Ov=/["'&<>]/,Lv=Rv;function Rv(t){var e=""+t,n=Ov.exec(e);if(!n)return e;var r,o="",i=0,s=0;for(i=n.index;ii}}function rt(t,e,n,r,o){const i={escape:!0,sanitize:!0,...o||{}},s=y=>y,l=i.sanitize?ep.sanitize:s,u=i.escape?kl:s,f=y=>typeof y=="string"||typeof y=="number",p=(y,g,b)=>y.replace(/%n/g,""+b).replace(/{([^{}]*)}/g,($,P)=>{if(g===void 0||!(P in g))return u($);const B=g[P];return f(B)?u("".concat(B)):typeof B=="object"&&f(B.value)?(B.escape!==!1?kl:s)("".concat(B.value)):u($)});let h=np(t).translations[e]||e;return h=Array.isArray(h)?h[0]:h,l(typeof n=="object"||r!==void 0?p(h,n,r):h)}function Iv(t,e,n,r,o,i){const s="_"+e+"_::_"+n+"_",l=np(t),u=l.translations[s];if(typeof u<"u"){const f=u;if(Array.isArray(f)){const p=l.pluralFunction(r);return rt(t,f[p],o,r,i)}}return r===1?rt(t,e,o,r,i):rt(t,n,o,r,i)}const Fv=t=>{t.mounted?Array.isArray(t.mounted)||(t.mounted=[t.mounted]):t.mounted=[],t.mounted.push(function(){this.$el.setAttribute("data-v-".concat("5977e1c"),"")})};st.util.warn;function Ho(t){return uc()?(hd(t),!0):!1}function Vo(t){return typeof t=="function"?t():od(t)}const Bv=typeof window<"u"&&typeof document<"u";typeof WorkerGlobalScope<"u"&&globalThis instanceof WorkerGlobalScope;const Dv=t=>t!=null,Mv=Object.prototype.toString,zv=t=>Mv.call(t)==="[object Object]",os=()=>{};function jv(t){return t||ec()}function rp(t,e=!0,n){jv()?_c(t,n):e?t():jo(t)}st.util.warn;function Fn(t){var e;const n=Vo(t);return(e=n==null?void 0:n.$el)!=null?e:n}const Wn=Bv?window:void 0;function kn(...t){let e,n,r,o;if(typeof t[0]=="string"||Array.isArray(t[0])?([n,r,o]=t,e=Wn):[e,n,r,o]=t,!e)return os;Array.isArray(n)||(n=[n]),Array.isArray(r)||(r=[r]);const i=[],s=()=>{i.forEach(p=>p()),i.length=0},l=(p,h,y,g)=>(p.addEventListener(h,y,g),()=>p.removeEventListener(h,y,g)),u=Vn(()=>[Fn(e),Vo(o)],([p,h])=>{if(s(),!p)return;const y=zv(h)?{...h}:h;i.push(...n.flatMap(g=>r.map(b=>l(p,g,b,y))))},{immediate:!0,flush:"post"}),f=()=>{u(),s()};return Ho(f),f}function Uv(){const t=xt(!1);return ec()&&_c(()=>{t.value=!0},null),t}function qs(t){const e=Uv();return _t(()=>(e.value,!!t()))}function Hv(t,e={}){const{window:n=Wn}=e,r=qs(()=>n&&"matchMedia"in n&&typeof n.matchMedia=="function");let o;const i=xt(!1),s=f=>{i.value=f.matches},l=()=>{o&&("removeEventListener"in o?o.removeEventListener("change",s):o.removeListener(s))},u=lc(()=>{r.value&&(l(),o=n.matchMedia(Vo(t)),"addEventListener"in o?o.addEventListener("change",s):o.addListener(s),i.value=o.matches)});return Ho(()=>{u(),l(),o=void 0}),i}function Vv(t,e,n={}){const{window:r=Wn,...o}=n;let i;const s=qs(()=>r&&"MutationObserver"in r),l=()=>{i&&(i.disconnect(),i=void 0)},u=_t(()=>{const y=Vo(t),g=(Array.isArray(y)?y:[y]).map(Fn).filter(Dv);return new Set(g)}),f=Vn(()=>u.value,y=>{l(),s.value&&r&&y.size&&(i=new MutationObserver(e),y.forEach(g=>i.observe(g,o)))},{immediate:!0,flush:"post"}),p=()=>i==null?void 0:i.takeRecords(),h=()=>{l(),f()};return Ho(h),{isSupported:s,stop:h,takeRecords:p}}function Wv(t,e,n={}){const{window:r=Wn,...o}=n;let i;const s=qs(()=>r&&"ResizeObserver"in r),l=()=>{i&&(i.disconnect(),i=void 0)},u=_t(()=>Array.isArray(t)?t.map(h=>Fn(h)):[Fn(t)]),f=Vn(u,h=>{if(l(),s.value&&r){i=new ResizeObserver(e);for(const y of h)y&&i.observe(y,o)}},{immediate:!0,flush:"post"}),p=()=>{l(),f()};return Ho(p),{isSupported:s,stop:p}}function Ol(t,e={}){const{reset:n=!0,windowResize:r=!0,windowScroll:o=!0,immediate:i=!0}=e,s=xt(0),l=xt(0),u=xt(0),f=xt(0),p=xt(0),h=xt(0),y=xt(0),g=xt(0);function b(){const $=Fn(t);if(!$){n&&(s.value=0,l.value=0,u.value=0,f.value=0,p.value=0,h.value=0,y.value=0,g.value=0);return}const P=$.getBoundingClientRect();s.value=P.height,l.value=P.bottom,u.value=P.left,f.value=P.right,p.value=P.top,h.value=P.width,y.value=P.x,g.value=P.y}return Wv(t,b),Vn(()=>Fn(t),$=>!$&&b()),Vv(t,b,{attributeFilter:["style","class"]}),o&&kn("scroll",b,{capture:!0,passive:!0}),r&&kn("resize",b,{passive:!0}),rp(()=>{i&&b()}),{height:s,bottom:l,left:u,right:f,top:p,width:h,x:y,y:g,update:b}}function Gv(t,e={}){const{threshold:n=50,onSwipe:r,onSwipeEnd:o,onSwipeStart:i,passive:s=!0,window:l=Wn}=e,u=Pa({x:0,y:0}),f=Pa({x:0,y:0}),p=_t(()=>u.x-f.x),h=_t(()=>u.y-f.y),{max:y,abs:g}=Math,b=_t(()=>y(g(p.value),g(h.value))>=n),$=xt(!1),P=_t(()=>b.value?g(p.value)>g(h.value)?p.value>0?"left":"right":h.value>0?"up":"down":"none"),B=U=>[U.touches[0].clientX,U.touches[0].clientY],R=(U,T)=>{u.x=U,u.y=T},j=(U,T)=>{f.x=U,f.y=T};let q;const et=qv(l==null?void 0:l.document);s?q=et?{passive:!0}:{capture:!1}:q=et?{passive:!1,capture:!0}:{capture:!0};const ft=U=>{$.value&&(o==null||o(U,P.value)),$.value=!1},Q=[kn(t,"touchstart",U=>{if(U.touches.length!==1)return;q.capture&&!q.passive&&U.preventDefault();const[T,C]=B(U);R(T,C),j(T,C),i==null||i(U)},q),kn(t,"touchmove",U=>{if(U.touches.length!==1)return;const[T,C]=B(U);j(T,C),!$.value&&b.value&&($.value=!0),$.value&&(r==null||r(U))},q),kn(t,["touchend","touchcancel"],ft,q)];return{isPassiveEventSupported:et,isSwiping:$,direction:P,coordsStart:u,coordsEnd:f,lengthX:p,lengthY:h,stop:()=>Q.forEach(U=>U())}}function qv(t){if(!t)return!1;let e=!1;const n={get passive(){return e=!0,!1}};return t.addEventListener("x",os,n),t.removeEventListener("x",os),e}function Xv(t={}){const{window:e=Wn,initialWidth:n=Number.POSITIVE_INFINITY,initialHeight:r=Number.POSITIVE_INFINITY,listenOrientation:o=!0,includeScrollbar:i=!0}=t,s=xt(n),l=xt(r),u=()=>{e&&(i?(s.value=e.innerWidth,l.value=e.innerHeight):(s.value=e.document.documentElement.clientWidth,l.value=e.document.documentElement.clientHeight))};if(u(),rp(u),kn("resize",u,{passive:!0}),o){const f=Hv("(orientation: portrait)");Vn(f,()=>u())}return{width:s,height:l}}var op=["input:not([inert])","select:not([inert])","textarea:not([inert])","a[href]:not([inert])","button:not([inert])","[tabindex]:not(slot):not([inert])","audio[controls]:not([inert])","video[controls]:not([inert])",'[contenteditable]:not([contenteditable="false"]):not([inert])',"details>summary:first-of-type:not([inert])","details:not([inert])"],Ao=op.join(","),ip=typeof Element>"u",dn=ip?function(){}:Element.prototype.matches||Element.prototype.msMatchesSelector||Element.prototype.webkitMatchesSelector,To=!ip&&Element.prototype.getRootNode?function(t){var e;return t==null||(e=t.getRootNode)===null||e===void 0?void 0:e.call(t)}:function(t){return t==null?void 0:t.ownerDocument},No=function t(e,n){var r;n===void 0&&(n=!0);var o=e==null||(r=e.getAttribute)===null||r===void 0?void 0:r.call(e,"inert"),i=o===""||o==="true",s=i||n&&e&&t(e.parentNode);return s},Kv=function(t){var e,n=t==null||(e=t.getAttribute)===null||e===void 0?void 0:e.call(t,"contenteditable");return n===""||n==="true"},sp=function(t,e,n){if(No(t))return[];var r=Array.prototype.slice.apply(t.querySelectorAll(Ao));return e&&dn.call(t,Ao)&&r.unshift(t),r=r.filter(n),r},ap=function t(e,n,r){for(var o=[],i=Array.from(e);i.length;){var s=i.shift();if(!No(s,!1))if(s.tagName==="SLOT"){var l=s.assignedElements(),u=l.length?l:s.children,f=t(u,!0,r);r.flatten?o.push.apply(o,f):o.push({scopeParent:s,candidates:f})}else{var p=dn.call(s,Ao);p&&r.filter(s)&&(n||!e.includes(s))&&o.push(s);var h=s.shadowRoot||typeof r.getShadowRoot=="function"&&r.getShadowRoot(s),y=!No(h,!1)&&(!r.shadowRootFilter||r.shadowRootFilter(s));if(h&&y){var g=t(h===!0?s.children:h.children,!0,r);r.flatten?o.push.apply(o,g):o.push({scopeParent:s,candidates:g})}else i.unshift.apply(i,s.children)}}return o},lp=function(t){return!isNaN(parseInt(t.getAttribute("tabindex"),10))},tn=function(t){if(!t)throw new Error("No node provided");return t.tabIndex<0&&(/^(AUDIO|VIDEO|DETAILS)$/.test(t.tagName)||Kv(t))&&!lp(t)?0:t.tabIndex},Zv=function(t,e){var n=tn(t);return n<0&&e&&!lp(t)?0:n},Yv=function(t,e){return t.tabIndex===e.tabIndex?t.documentOrder-e.documentOrder:t.tabIndex-e.tabIndex},up=function(t){return t.tagName==="INPUT"},Jv=function(t){return up(t)&&t.type==="hidden"},Qv=function(t){var e=t.tagName==="DETAILS"&&Array.prototype.slice.apply(t.children).some(function(n){return n.tagName==="SUMMARY"});return e},t0=function(t,e){for(var n=0;nsummary:first-of-type"),i=o?t.parentElement:t;if(dn.call(i,"details:not([open]) *"))return!0;if(!n||n==="full"||n==="legacy-full"){if(typeof r=="function"){for(var s=t;t;){var l=t.parentElement,u=To(t);if(l&&!l.shadowRoot&&r(l)===!0)return Ll(t);t.assignedSlot?t=t.assignedSlot:!l&&u!==t.ownerDocument?t=u.host:t=l}t=s}if(o0(t))return!t.getClientRects().length;if(n!=="legacy-full")return!0}else if(n==="non-zero-area")return Ll(t);return!1},s0=function(t){if(/^(INPUT|BUTTON|SELECT|TEXTAREA)$/.test(t.tagName))for(var e=t.parentElement;e;){if(e.tagName==="FIELDSET"&&e.disabled){for(var n=0;n=0)},l0=function t(e){var n=[],r=[];return e.forEach(function(o,i){var s=!!o.scopeParent,l=s?o.scopeParent:o,u=Zv(l,s),f=s?t(o.candidates):l;u===0?s?n.push.apply(n,f):n.push(l):r.push({documentOrder:i,tabIndex:u,item:o,isScope:s,content:f})}),r.sort(Yv).reduce(function(o,i){return i.isScope?o.push.apply(o,i.content):o.push(i.content),o},[]).concat(n)},u0=function(t,e){e=e||{};var n;return e.getShadowRoot?n=ap([t],e.includeContainer,{filter:is.bind(null,e),flatten:!1,getShadowRoot:e.getShadowRoot,shadowRootFilter:a0}):n=sp(t,e.includeContainer,is.bind(null,e)),l0(n)},c0=function(t,e){e=e||{};var n;return e.getShadowRoot?n=ap([t],e.includeContainer,{filter:Po.bind(null,e),flatten:!0,getShadowRoot:e.getShadowRoot}):n=sp(t,e.includeContainer,Po.bind(null,e)),n},bn=function(t,e){if(e=e||{},!t)throw new Error("No node provided");return dn.call(t,Ao)===!1?!1:is(e,t)},p0=op.concat("iframe").join(","),xi=function(t,e){if(e=e||{},!t)throw new Error("No node provided");return dn.call(t,p0)===!1?!1:Po(e,t)};function Rl(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable})),n.push.apply(n,r)}return n}function Il(t){for(var e=1;e0){var n=t[t.length-1];n!==e&&n.pause()}var r=t.indexOf(e);r===-1||t.splice(r,1),t.push(e)},deactivateTrap:function(t,e){var n=t.indexOf(e);n!==-1&&t.splice(n,1),t.length>0&&t[t.length-1].unpause()}},m0=function(t){return t.tagName&&t.tagName.toLowerCase()==="input"&&typeof t.select=="function"},v0=function(t){return(t==null?void 0:t.key)==="Escape"||(t==null?void 0:t.key)==="Esc"||(t==null?void 0:t.keyCode)===27},ur=function(t){return(t==null?void 0:t.key)==="Tab"||(t==null?void 0:t.keyCode)===9},g0=function(t){return ur(t)&&!t.shiftKey},y0=function(t){return ur(t)&&t.shiftKey},Bl=function(t){return setTimeout(t,0)},Dl=function(t,e){var n=-1;return t.every(function(r,o){return e(r)?(n=o,!1):!0}),n},or=function(t){for(var e=arguments.length,n=new Array(e>1?e-1:0),r=1;r1?I-1:0),_=1;_=0)T=n.activeElement;else{var C=i.tabbableGroups[0],I=C&&C.firstTabbableNode;T=I||f("fallbackFocus")}if(!T)throw new Error("Your focus-trap needs to have at least one focusable element");return T},h=function(){if(i.containerGroups=i.containers.map(function(T){var C=u0(T,o.tabbableOptions),I=c0(T,o.tabbableOptions),w=C.length>0?C[0]:void 0,_=C.length>0?C[C.length-1]:void 0,S=I.find(function(D){return bn(D)}),O=I.slice().reverse().find(function(D){return bn(D)}),F=!!C.find(function(D){return tn(D)>0});return{container:T,tabbableNodes:C,focusableNodes:I,posTabIndexesFound:F,firstTabbableNode:w,lastTabbableNode:_,firstDomTabbableNode:S,lastDomTabbableNode:O,nextTabbableNode:function(D){var V=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0,W=C.indexOf(D);return W<0?V?I.slice(I.indexOf(D)+1).find(function(M){return bn(M)}):I.slice(0,I.indexOf(D)).reverse().find(function(M){return bn(M)}):C[W+(V?1:-1)]}}}),i.tabbableGroups=i.containerGroups.filter(function(T){return T.tabbableNodes.length>0}),i.tabbableGroups.length<=0&&!f("fallbackFocus"))throw new Error("Your focus-trap must have at least one container with at least one tabbable node in it at all times");if(i.containerGroups.find(function(T){return T.posTabIndexesFound})&&i.containerGroups.length>1)throw new Error("At least one node with a positive tabindex was found in one of your focus-trap's multiple containers. Positive tabindexes are only supported in single-container focus-traps.")},y=function T(C){if(C!==!1&&C!==n.activeElement){if(!C||!C.focus){T(p());return}C.focus({preventScroll:!!o.preventScroll}),i.mostRecentlyFocusedNode=C,m0(C)&&C.select()}},g=function(T){var C=f("setReturnFocus",T);return C||(C===!1?!1:T)},b=function(T){var C=T.target,I=T.event,w=T.isBackward,_=w===void 0?!1:w;C=C||Vr(I),h();var S=null;if(i.tabbableGroups.length>0){var O=u(C,I),F=O>=0?i.containerGroups[O]:void 0;if(O<0)_?S=i.tabbableGroups[i.tabbableGroups.length-1].lastTabbableNode:S=i.tabbableGroups[0].firstTabbableNode;else if(_){var D=Dl(i.tabbableGroups,function(ot){var H=ot.firstTabbableNode;return C===H});if(D<0&&(F.container===C||xi(C,o.tabbableOptions)&&!bn(C,o.tabbableOptions)&&!F.nextTabbableNode(C,!1))&&(D=O),D>=0){var V=D===0?i.tabbableGroups.length-1:D-1,W=i.tabbableGroups[V];S=tn(C)>=0?W.lastTabbableNode:W.lastDomTabbableNode}else ur(I)||(S=F.nextTabbableNode(C,!1))}else{var M=Dl(i.tabbableGroups,function(ot){var H=ot.lastTabbableNode;return C===H});if(M<0&&(F.container===C||xi(C,o.tabbableOptions)&&!bn(C,o.tabbableOptions)&&!F.nextTabbableNode(C))&&(M=O),M>=0){var X=M===i.tabbableGroups.length-1?0:M+1,G=i.tabbableGroups[X];S=tn(C)>=0?G.firstTabbableNode:G.firstDomTabbableNode}else ur(I)||(S=F.nextTabbableNode(C))}}else S=f("fallbackFocus");return S},$=function(T){var C=Vr(T);if(!(u(C,T)>=0)){if(or(o.clickOutsideDeactivates,T)){s.deactivate({returnFocus:o.returnFocusOnDeactivate});return}or(o.allowOutsideClick,T)||T.preventDefault()}},P=function(T){var C=Vr(T),I=u(C,T)>=0;if(I||C instanceof Document)I&&(i.mostRecentlyFocusedNode=C);else{T.stopImmediatePropagation();var w,_=!0;if(i.mostRecentlyFocusedNode)if(tn(i.mostRecentlyFocusedNode)>0){var S=u(i.mostRecentlyFocusedNode),O=i.containerGroups[S].tabbableNodes;if(O.length>0){var F=O.findIndex(function(D){return D===i.mostRecentlyFocusedNode});F>=0&&(o.isKeyForward(i.recentNavEvent)?F+1=0&&(w=O[F-1],_=!1))}}else i.containerGroups.some(function(D){return D.tabbableNodes.some(function(V){return tn(V)>0})})||(_=!1);else _=!1;_&&(w=b({target:i.mostRecentlyFocusedNode,isBackward:o.isKeyBackward(i.recentNavEvent)})),y(w||i.mostRecentlyFocusedNode||p())}i.recentNavEvent=void 0},B=function(T){var C=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;i.recentNavEvent=T;var I=b({event:T,isBackward:C});I&&(ur(T)&&T.preventDefault(),y(I))},R=function(T){if(v0(T)&&or(o.escapeDeactivates,T)!==!1){T.preventDefault(),s.deactivate();return}(o.isKeyForward(T)||o.isKeyBackward(T))&&B(T,o.isKeyBackward(T))},j=function(T){var C=Vr(T);u(C,T)>=0||or(o.clickOutsideDeactivates,T)||or(o.allowOutsideClick,T)||(T.preventDefault(),T.stopImmediatePropagation())},q=function(){if(i.active)return Fl.activateTrap(r,s),i.delayInitialFocusTimer=o.delayInitialFocus?Bl(function(){y(p())}):y(p()),n.addEventListener("focusin",P,!0),n.addEventListener("mousedown",$,{capture:!0,passive:!1}),n.addEventListener("touchstart",$,{capture:!0,passive:!1}),n.addEventListener("click",j,{capture:!0,passive:!1}),n.addEventListener("keydown",R,{capture:!0,passive:!1}),s},et=function(){if(i.active)return n.removeEventListener("focusin",P,!0),n.removeEventListener("mousedown",$,!0),n.removeEventListener("touchstart",$,!0),n.removeEventListener("click",j,!0),n.removeEventListener("keydown",R,!0),s},ft=function(T){var C=T.some(function(I){var w=Array.from(I.removedNodes);return w.some(function(_){return _===i.mostRecentlyFocusedNode})});C&&y(p())},Q=typeof window<"u"&&"MutationObserver"in window?new MutationObserver(ft):void 0,U=function(){Q&&(Q.disconnect(),i.active&&!i.paused&&i.containers.map(function(T){Q.observe(T,{subtree:!0,childList:!0})}))};return s={get active(){return i.active},get paused(){return i.paused},activate:function(T){if(i.active)return this;var C=l(T,"onActivate"),I=l(T,"onPostActivate"),w=l(T,"checkCanFocusTrap");w||h(),i.active=!0,i.paused=!1,i.nodeFocusedBeforeActivation=n.activeElement,C==null||C();var _=function(){w&&h(),q(),U(),I==null||I()};return w?(w(i.containers.concat()).then(_,_),this):(_(),this)},deactivate:function(T){if(!i.active)return this;var C=Il({onDeactivate:o.onDeactivate,onPostDeactivate:o.onPostDeactivate,checkCanReturnFocus:o.checkCanReturnFocus},T);clearTimeout(i.delayInitialFocusTimer),i.delayInitialFocusTimer=void 0,et(),i.active=!1,i.paused=!1,U(),Fl.deactivateTrap(r,s);var I=l(C,"onDeactivate"),w=l(C,"onPostDeactivate"),_=l(C,"checkCanReturnFocus"),S=l(C,"returnFocus","returnFocusOnDeactivate");I==null||I();var O=function(){Bl(function(){S&&y(g(i.nodeFocusedBeforeActivation)),w==null||w()})};return S&&_?(_(g(i.nodeFocusedBeforeActivation)).then(O,O),this):(O(),this)},pause:function(T){if(i.paused||!i.active)return this;var C=l(T,"onPause"),I=l(T,"onPostPause");return i.paused=!0,C==null||C(),et(),U(),I==null||I(),this},unpause:function(T){if(!i.paused||!i.active)return this;var C=l(T,"onUnpause"),I=l(T,"onPostUnpause");return i.paused=!1,C==null||C(),h(),q(),U(),I==null||I(),this},updateContainerElements:function(T){var C=[].concat(T).filter(Boolean);return i.containers=C.map(function(I){return typeof I=="string"?n.querySelector(I):I}),i.active&&h(),U(),this}},s.updateContainerElements(t),s};const $o=function(){return Object.assign(window,{_nc_focus_trap:window._nc_focus_trap||[]}),window._nc_focus_trap};var _0="Expected a function",pp="__lodash_hash_undefined__",fp=1/0,b0="[object Function]",x0="[object GeneratorFunction]",E0="[object Symbol]",C0=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,S0=/^\w*$/,A0=/^\./,T0=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,N0=/[\\^$.*+?()[\]{}|]/g,P0=/\\(\\)?/g,$0=/^\[object .+?Constructor\]$/,k0=typeof Hr=="object"&&Hr&&Hr.Object===Object&&Hr,O0=typeof self=="object"&&self&&self.Object===Object&&self,Xs=k0||O0||Function("return this")();function L0(t,e){return t==null?void 0:t[e]}function R0(t){var e=!1;if(t!=null&&typeof t.toString!="function")try{e=!!(t+"")}catch{}return e}var I0=Array.prototype,F0=Function.prototype,dp=Object.prototype,Ei=Xs["__core-js_shared__"],Ml=function(){var t=/[^.]+$/.exec(Ei&&Ei.keys&&Ei.keys.IE_PROTO||"");return t?"Symbol(src)_1."+t:""}(),hp=F0.toString,Ks=dp.hasOwnProperty,mp=dp.toString,B0=RegExp("^"+hp.call(Ks).replace(N0,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),zl=Xs.Symbol,D0=I0.splice,M0=vp(Xs,"Map"),_r=vp(Object,"create"),jl=zl?zl.prototype:void 0,Ul=jl?jl.toString:void 0;function en(t){var e=-1,n=t?t.length:0;for(this.clear();++e-1}function K0(t,e){var n=this.__data__,r=Wo(n,t);return r<0?n.push([t,e]):n[r][1]=e,this}Sn.prototype.clear=W0,Sn.prototype.delete=G0,Sn.prototype.get=q0,Sn.prototype.has=X0,Sn.prototype.set=K0;function nn(t){var e=-1,n=t?t.length:0;for(this.clear();++e 1)",pluralsFunc:function(t){return t>1}},af:{name:"Afrikaans",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},ak:{name:"Akan",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(t){return t>1}},am:{name:"Amharic",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(t){return t>1}},an:{name:"Aragonese",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},ar:{name:"Arabic",examples:[{plural:0,sample:0},{plural:1,sample:1},{plural:2,sample:2},{plural:3,sample:3},{plural:4,sample:11},{plural:5,sample:100}],nplurals:6,pluralsText:"nplurals = 6; plural = (n === 0 ? 0 : n === 1 ? 1 : n === 2 ? 2 : n % 100 >= 3 && n % 100 <= 10 ? 3 : n % 100 >= 11 ? 4 : 5)",pluralsFunc:function(t){return t===0?0:t===1?1:t===2?2:t%100>=3&&t%100<=10?3:t%100>=11?4:5}},arn:{name:"Mapudungun",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(t){return t>1}},ast:{name:"Asturian",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},ay:{name:"Aymará",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},az:{name:"Azerbaijani",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},be:{name:"Belarusian",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:5}],nplurals:3,pluralsText:"nplurals = 3; plural = (n % 10 === 1 && n % 100 !== 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)",pluralsFunc:function(t){return t%10===1&&t%100!==11?0:t%10>=2&&t%10<=4&&(t%100<10||t%100>=20)?1:2}},bg:{name:"Bulgarian",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},bn:{name:"Bengali",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},bo:{name:"Tibetan",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},br:{name:"Breton",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(t){return t>1}},brx:{name:"Bodo",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},bs:{name:"Bosnian",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:5}],nplurals:3,pluralsText:"nplurals = 3; plural = (n % 10 === 1 && n % 100 !== 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)",pluralsFunc:function(t){return t%10===1&&t%100!==11?0:t%10>=2&&t%10<=4&&(t%100<10||t%100>=20)?1:2}},ca:{name:"Catalan",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},cgg:{name:"Chiga",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},cs:{name:"Czech",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:5}],nplurals:3,pluralsText:"nplurals = 3; plural = (n === 1 ? 0 : (n >= 2 && n <= 4) ? 1 : 2)",pluralsFunc:function(t){return t===1?0:t>=2&&t<=4?1:2}},csb:{name:"Kashubian",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:5}],nplurals:3,pluralsText:"nplurals = 3; plural = (n === 1 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)",pluralsFunc:function(t){return t===1?0:t%10>=2&&t%10<=4&&(t%100<10||t%100>=20)?1:2}},cy:{name:"Welsh",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:3},{plural:3,sample:8}],nplurals:4,pluralsText:"nplurals = 4; plural = (n === 1 ? 0 : n === 2 ? 1 : (n !== 8 && n !== 11) ? 2 : 3)",pluralsFunc:function(t){return t===1?0:t===2?1:t!==8&&t!==11?2:3}},da:{name:"Danish",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},de:{name:"German",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},doi:{name:"Dogri",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},dz:{name:"Dzongkha",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},el:{name:"Greek",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},en:{name:"English",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},eo:{name:"Esperanto",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},es:{name:"Spanish",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},et:{name:"Estonian",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},eu:{name:"Basque",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},fa:{name:"Persian",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},ff:{name:"Fulah",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},fi:{name:"Finnish",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},fil:{name:"Filipino",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(t){return t>1}},fo:{name:"Faroese",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},fr:{name:"French",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(t){return t>1}},fur:{name:"Friulian",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},fy:{name:"Frisian",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},ga:{name:"Irish",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:3},{plural:3,sample:7},{plural:4,sample:11}],nplurals:5,pluralsText:"nplurals = 5; plural = (n === 1 ? 0 : n === 2 ? 1 : n < 7 ? 2 : n < 11 ? 3 : 4)",pluralsFunc:function(t){return t===1?0:t===2?1:t<7?2:t<11?3:4}},gd:{name:"Scottish Gaelic",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:3},{plural:3,sample:20}],nplurals:4,pluralsText:"nplurals = 4; plural = ((n === 1 || n === 11) ? 0 : (n === 2 || n === 12) ? 1 : (n > 2 && n < 20) ? 2 : 3)",pluralsFunc:function(t){return t===1||t===11?0:t===2||t===12?1:t>2&&t<20?2:3}},gl:{name:"Galician",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},gu:{name:"Gujarati",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},gun:{name:"Gun",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(t){return t>1}},ha:{name:"Hausa",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},he:{name:"Hebrew",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},hi:{name:"Hindi",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},hne:{name:"Chhattisgarhi",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},hr:{name:"Croatian",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:5}],nplurals:3,pluralsText:"nplurals = 3; plural = (n % 10 === 1 && n % 100 !== 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)",pluralsFunc:function(t){return t%10===1&&t%100!==11?0:t%10>=2&&t%10<=4&&(t%100<10||t%100>=20)?1:2}},hu:{name:"Hungarian",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},hy:{name:"Armenian",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},id:{name:"Indonesian",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},is:{name:"Icelandic",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n % 10 !== 1 || n % 100 === 11)",pluralsFunc:function(t){return t%10!==1||t%100===11}},it:{name:"Italian",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},ja:{name:"Japanese",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},jbo:{name:"Lojban",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},jv:{name:"Javanese",examples:[{plural:0,sample:0},{plural:1,sample:1}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 0)",pluralsFunc:function(t){return t!==0}},ka:{name:"Georgian",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},kk:{name:"Kazakh",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},km:{name:"Khmer",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},kn:{name:"Kannada",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},ko:{name:"Korean",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},ku:{name:"Kurdish",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},kw:{name:"Cornish",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:3},{plural:3,sample:4}],nplurals:4,pluralsText:"nplurals = 4; plural = (n === 1 ? 0 : n === 2 ? 1 : n === 3 ? 2 : 3)",pluralsFunc:function(t){return t===1?0:t===2?1:t===3?2:3}},ky:{name:"Kyrgyz",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},lb:{name:"Letzeburgesch",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},ln:{name:"Lingala",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(t){return t>1}},lo:{name:"Lao",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},lt:{name:"Lithuanian",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:10}],nplurals:3,pluralsText:"nplurals = 3; plural = (n % 10 === 1 && n % 100 !== 11 ? 0 : n % 10 >= 2 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)",pluralsFunc:function(t){return t%10===1&&t%100!==11?0:t%10>=2&&(t%100<10||t%100>=20)?1:2}},lv:{name:"Latvian",examples:[{plural:2,sample:0},{plural:0,sample:1},{plural:1,sample:2}],nplurals:3,pluralsText:"nplurals = 3; plural = (n % 10 === 1 && n % 100 !== 11 ? 0 : n !== 0 ? 1 : 2)",pluralsFunc:function(t){return t%10===1&&t%100!==11?0:t!==0?1:2}},mai:{name:"Maithili",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},mfe:{name:"Mauritian Creole",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(t){return t>1}},mg:{name:"Malagasy",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(t){return t>1}},mi:{name:"Maori",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(t){return t>1}},mk:{name:"Macedonian",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n === 1 || n % 10 === 1 ? 0 : 1)",pluralsFunc:function(t){return t===1||t%10===1?0:1}},ml:{name:"Malayalam",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},mn:{name:"Mongolian",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},mni:{name:"Manipuri",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},mnk:{name:"Mandinka",examples:[{plural:0,sample:0},{plural:1,sample:1},{plural:2,sample:2}],nplurals:3,pluralsText:"nplurals = 3; plural = (n === 0 ? 0 : n === 1 ? 1 : 2)",pluralsFunc:function(t){return t===0?0:t===1?1:2}},mr:{name:"Marathi",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},ms:{name:"Malay",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},mt:{name:"Maltese",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:11},{plural:3,sample:20}],nplurals:4,pluralsText:"nplurals = 4; plural = (n === 1 ? 0 : n === 0 || ( n % 100 > 1 && n % 100 < 11) ? 1 : (n % 100 > 10 && n % 100 < 20 ) ? 2 : 3)",pluralsFunc:function(t){return t===1?0:t===0||t%100>1&&t%100<11?1:t%100>10&&t%100<20?2:3}},my:{name:"Burmese",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},nah:{name:"Nahuatl",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},nap:{name:"Neapolitan",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},nb:{name:"Norwegian Bokmal",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},ne:{name:"Nepali",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},nl:{name:"Dutch",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},nn:{name:"Norwegian Nynorsk",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},no:{name:"Norwegian",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},nso:{name:"Northern Sotho",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},oc:{name:"Occitan",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(t){return t>1}},or:{name:"Oriya",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},pa:{name:"Punjabi",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},pap:{name:"Papiamento",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},pl:{name:"Polish",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:5}],nplurals:3,pluralsText:"nplurals = 3; plural = (n === 1 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)",pluralsFunc:function(t){return t===1?0:t%10>=2&&t%10<=4&&(t%100<10||t%100>=20)?1:2}},pms:{name:"Piemontese",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},ps:{name:"Pashto",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},pt:{name:"Portuguese",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},rm:{name:"Romansh",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},ro:{name:"Romanian",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:20}],nplurals:3,pluralsText:"nplurals = 3; plural = (n === 1 ? 0 : (n === 0 || (n % 100 > 0 && n % 100 < 20)) ? 1 : 2)",pluralsFunc:function(t){return t===1?0:t===0||t%100>0&&t%100<20?1:2}},ru:{name:"Russian",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:5}],nplurals:3,pluralsText:"nplurals = 3; plural = (n % 10 === 1 && n % 100 !== 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)",pluralsFunc:function(t){return t%10===1&&t%100!==11?0:t%10>=2&&t%10<=4&&(t%100<10||t%100>=20)?1:2}},rw:{name:"Kinyarwanda",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},sah:{name:"Yakut",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},sat:{name:"Santali",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},sco:{name:"Scots",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},sd:{name:"Sindhi",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},se:{name:"Northern Sami",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},si:{name:"Sinhala",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},sk:{name:"Slovak",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:5}],nplurals:3,pluralsText:"nplurals = 3; plural = (n === 1 ? 0 : (n >= 2 && n <= 4) ? 1 : 2)",pluralsFunc:function(t){return t===1?0:t>=2&&t<=4?1:2}},sl:{name:"Slovenian",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:3},{plural:3,sample:5}],nplurals:4,pluralsText:"nplurals = 4; plural = (n % 100 === 1 ? 0 : n % 100 === 2 ? 1 : n % 100 === 3 || n % 100 === 4 ? 2 : 3)",pluralsFunc:function(t){return t%100===1?0:t%100===2?1:t%100===3||t%100===4?2:3}},so:{name:"Somali",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},son:{name:"Songhay",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},sq:{name:"Albanian",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},sr:{name:"Serbian",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:5}],nplurals:3,pluralsText:"nplurals = 3; plural = (n % 10 === 1 && n % 100 !== 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)",pluralsFunc:function(t){return t%10===1&&t%100!==11?0:t%10>=2&&t%10<=4&&(t%100<10||t%100>=20)?1:2}},su:{name:"Sundanese",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},sv:{name:"Swedish",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},sw:{name:"Swahili",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},ta:{name:"Tamil",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},te:{name:"Telugu",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},tg:{name:"Tajik",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(t){return t>1}},th:{name:"Thai",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},ti:{name:"Tigrinya",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(t){return t>1}},tk:{name:"Turkmen",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},tr:{name:"Turkish",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(t){return t>1}},tt:{name:"Tatar",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},ug:{name:"Uyghur",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},uk:{name:"Ukrainian",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:5}],nplurals:3,pluralsText:"nplurals = 3; plural = (n % 10 === 1 && n % 100 !== 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)",pluralsFunc:function(t){return t%10===1&&t%100!==11?0:t%10>=2&&t%10<=4&&(t%100<10||t%100>=20)?1:2}},ur:{name:"Urdu",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},uz:{name:"Uzbek",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(t){return t>1}},vi:{name:"Vietnamese",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},wa:{name:"Walloon",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(t){return t>1}},wo:{name:"Wolof",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},yo:{name:"Yoruba",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},zh:{name:"Chinese",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}}},y1=v1,w1=g1,_1=gt;function gt(t){t=t||{},this.catalogs={},this.locale="",this.domain="messages",this.listeners=[],this.sourceLocale="",t.sourceLocale&&(typeof t.sourceLocale=="string"?this.sourceLocale=t.sourceLocale:this.warn("The `sourceLocale` option should be a string")),this.debug="debug"in t&&t.debug===!0}gt.prototype.on=function(t,e){this.listeners.push({eventName:t,callback:e})},gt.prototype.off=function(t,e){this.listeners=this.listeners.filter(function(n){return!(n.eventName===t&&n.callback===e)})},gt.prototype.emit=function(t,e){for(var n=0;ne in t?x1(t,e,{enumerable:!0,configurable:!0,writable:!0,value:n}):t[e]=n,io=(t,e,n)=>(E1(t,typeof e!="symbol"?e+"":e,n),n);class C1{constructor(){io(this,"locale"),io(this,"translations",{}),io(this,"debug",!1)}setLanguage(e){return this.locale=e,this}detectLocale(){return this.setLanguage(pv().replace("-","_"))}addTranslation(e,n){return this.translations[e]=n,this}enableDebugMode(){return this.debug=!0,this}build(){return new S1(this.locale||"en",this.translations,this.debug)}}class S1{constructor(e,n,r){io(this,"gt"),this.gt=new b1({debug:r,sourceLocale:"en"});for(const o in n)this.gt.addTranslations(o,"messages",n[o]);this.gt.setLocale(e)}subtitudePlaceholders(e,n){return e.replace(/{([^{}]*)}/g,(r,o)=>{const i=n[o];return typeof i=="string"||typeof i=="number"?i.toString():r})}gettext(e,n={}){return this.subtitudePlaceholders(this.gt.gettext(e),n)}ngettext(e,n,r,o={}){return this.subtitudePlaceholders(this.gt.ngettext(e,n,r).replace(/%n/g,r.toString()),o)}}function A1(){return new C1}const je=A1().detectLocale().build();je.ngettext.bind(je);const Je=je.gettext.bind(je),wp=(...t)=>{t.forEach(e=>{e.registered||(e.forEach(({l:n,t:r})=>{const o=Object.fromEntries(Object.entries(r).map(([i,s])=>[i,{msgid:i,msgid_plural:s.p,msgstr:s.v}]));je.gt.catalogs[n]||(je.gt.catalogs[n]={messages:{translations:{}}}),je.gt.catalogs[n].messages.translations[""]={...je.gt.catalogs[n].messages.translations[""],...o}}),e.registered=!0)})},T1=[{l:"af",t:{Actions:{v:[""]}}},{l:"ar",t:{Actions:{v:["إجراءات"]}}},{l:"ast",t:{Actions:{v:["Aiciones"]}}},{l:"az",t:{Actions:{v:[""]}}},{l:"be",t:{Actions:{v:[""]}}},{l:"bg",t:{Actions:{v:[""]}}},{l:"bn_BD",t:{Actions:{v:[""]}}},{l:"br",t:{Actions:{v:["Oberioù"]}}},{l:"bs",t:{Actions:{v:[""]}}},{l:"ca",t:{Actions:{v:["Accions"]}}},{l:"cs",t:{Actions:{v:["Akce"]}}},{l:"cs_CZ",t:{Actions:{v:["Akce"]}}},{l:"cy_GB",t:{Actions:{v:[""]}}},{l:"da",t:{Actions:{v:["Handlinger"]}}},{l:"de",t:{Actions:{v:["Aktionen"]}}},{l:"de_DE",t:{Actions:{v:["Aktionen"]}}},{l:"el",t:{Actions:{v:["Ενέργειες"]}}},{l:"en_GB",t:{Actions:{v:["Actions"]}}},{l:"eo",t:{Actions:{v:["Agoj"]}}},{l:"es",t:{Actions:{v:["Acciones"]}}},{l:"es_419",t:{Actions:{v:[""]}}},{l:"es_AR",t:{Actions:{v:[""]}}},{l:"es_CL",t:{Actions:{v:[""]}}},{l:"es_CO",t:{Actions:{v:[""]}}},{l:"es_CR",t:{Actions:{v:[""]}}},{l:"es_DO",t:{Actions:{v:[""]}}},{l:"es_EC",t:{Actions:{v:["Acciones"]}}},{l:"es_GT",t:{Actions:{v:[""]}}},{l:"es_HN",t:{Actions:{v:[""]}}},{l:"es_MX",t:{Actions:{v:[""]}}},{l:"es_NI",t:{Actions:{v:[""]}}},{l:"es_PA",t:{Actions:{v:[""]}}},{l:"es_PE",t:{Actions:{v:[""]}}},{l:"es_PR",t:{Actions:{v:[""]}}},{l:"es_PY",t:{Actions:{v:[""]}}},{l:"es_SV",t:{Actions:{v:[""]}}},{l:"es_UY",t:{Actions:{v:[""]}}},{l:"et_EE",t:{Actions:{v:[""]}}},{l:"eu",t:{Actions:{v:["Ekintzak"]}}},{l:"fa",t:{Actions:{v:[""]}}},{l:"fi",t:{Actions:{v:["Toiminnot"]}}},{l:"fo",t:{Actions:{v:[""]}}},{l:"fr",t:{Actions:{v:["Actions"]}}},{l:"ga",t:{Actions:{v:["Gníomhartha"]}}},{l:"gd",t:{Actions:{v:[""]}}},{l:"gl",t:{Actions:{v:["Accións"]}}},{l:"he",t:{Actions:{v:["פעולות"]}}},{l:"hi_IN",t:{Actions:{v:[""]}}},{l:"hr",t:{Actions:{v:[""]}}},{l:"hsb",t:{Actions:{v:[""]}}},{l:"hu",t:{Actions:{v:["Műveletek"]}}},{l:"hy",t:{Actions:{v:[""]}}},{l:"ia",t:{Actions:{v:[""]}}},{l:"id",t:{Actions:{v:["Tindakan"]}}},{l:"ig",t:{Actions:{v:[""]}}},{l:"is",t:{Actions:{v:["Aðgerðir"]}}},{l:"it",t:{Actions:{v:["Azioni"]}}},{l:"ja",t:{Actions:{v:["操作"]}}},{l:"ja_JP",t:{Actions:{v:["操作"]}}},{l:"ka",t:{Actions:{v:[""]}}},{l:"ka_GE",t:{Actions:{v:[""]}}},{l:"kab",t:{Actions:{v:[""]}}},{l:"kk",t:{Actions:{v:[""]}}},{l:"km",t:{Actions:{v:[""]}}},{l:"kn",t:{Actions:{v:[""]}}},{l:"ko",t:{Actions:{v:[""]}}},{l:"la",t:{Actions:{v:[""]}}},{l:"lb",t:{Actions:{v:[""]}}},{l:"lo",t:{Actions:{v:[""]}}},{l:"lt_LT",t:{Actions:{v:["Veiksmai"]}}},{l:"lv",t:{Actions:{v:[""]}}},{l:"mk",t:{Actions:{v:["Акции"]}}},{l:"mn",t:{Actions:{v:[""]}}},{l:"mr",t:{Actions:{v:[""]}}},{l:"ms_MY",t:{Actions:{v:[""]}}},{l:"my",t:{Actions:{v:["လုပ်ဆောင်ချက်များ"]}}},{l:"nb",t:{Actions:{v:["Handlinger"]}}},{l:"ne",t:{Actions:{v:[""]}}},{l:"nl",t:{Actions:{v:["Acties"]}}},{l:"nn_NO",t:{Actions:{v:[""]}}},{l:"oc",t:{Actions:{v:["Accions"]}}},{l:"pl",t:{Actions:{v:["Działania"]}}},{l:"ps",t:{Actions:{v:[""]}}},{l:"pt_BR",t:{Actions:{v:["Ações"]}}},{l:"pt_PT",t:{Actions:{v:["Ações"]}}},{l:"ro",t:{Actions:{v:["Acțiuni"]}}},{l:"ru",t:{Actions:{v:["Действия "]}}},{l:"sc",t:{Actions:{v:[""]}}},{l:"si",t:{Actions:{v:[""]}}},{l:"sk",t:{Actions:{v:["Akcie"]}}},{l:"sl",t:{Actions:{v:["Dejanja"]}}},{l:"sq",t:{Actions:{v:[""]}}},{l:"sr",t:{Actions:{v:["Радње"]}}},{l:"sr@latin",t:{Actions:{v:[""]}}},{l:"sv",t:{Actions:{v:["Åtgärder"]}}},{l:"sw",t:{Actions:{v:[""]}}},{l:"ta",t:{Actions:{v:[""]}}},{l:"th",t:{Actions:{v:[""]}}},{l:"tk",t:{Actions:{v:[""]}}},{l:"tr",t:{Actions:{v:["İşlemler"]}}},{l:"ug",t:{Actions:{v:[""]}}},{l:"uk",t:{Actions:{v:["Дії"]}}},{l:"ur_PK",t:{Actions:{v:[""]}}},{l:"uz",t:{Actions:{v:[""]}}},{l:"vi",t:{Actions:{v:[""]}}},{l:"zh_CN",t:{Actions:{v:["行为"]}}},{l:"zh_HK",t:{Actions:{v:["動作"]}}},{l:"zh_TW",t:{Actions:{v:["動作"]}}},{l:"zu_ZA",t:{Actions:{v:[""]}}}],N1=[{l:"af",t:{Close:{v:[""]}}},{l:"ar",t:{Close:{v:["أغلِق"]}}},{l:"ast",t:{Close:{v:["Zarrar"]}}},{l:"az",t:{Close:{v:[""]}}},{l:"be",t:{Close:{v:[""]}}},{l:"bg",t:{Close:{v:[""]}}},{l:"bn_BD",t:{Close:{v:[""]}}},{l:"br",t:{Close:{v:["Serriñ"]}}},{l:"bs",t:{Close:{v:[""]}}},{l:"ca",t:{Close:{v:["Tanca"]}}},{l:"cs",t:{Close:{v:["Zavřít"]}}},{l:"cs_CZ",t:{Close:{v:["Zavřít"]}}},{l:"cy_GB",t:{Close:{v:[""]}}},{l:"da",t:{Close:{v:["Luk"]}}},{l:"de",t:{Close:{v:["Schließen"]}}},{l:"de_DE",t:{Close:{v:["Schließen"]}}},{l:"el",t:{Close:{v:["Κλείσιμο"]}}},{l:"en_GB",t:{Close:{v:["Close"]}}},{l:"eo",t:{Close:{v:["Fermu"]}}},{l:"es",t:{Close:{v:["Cerrar"]}}},{l:"es_419",t:{Close:{v:[""]}}},{l:"es_AR",t:{Close:{v:[""]}}},{l:"es_CL",t:{Close:{v:[""]}}},{l:"es_CO",t:{Close:{v:[""]}}},{l:"es_CR",t:{Close:{v:[""]}}},{l:"es_DO",t:{Close:{v:[""]}}},{l:"es_EC",t:{Close:{v:["Cerrar"]}}},{l:"es_GT",t:{Close:{v:[""]}}},{l:"es_HN",t:{Close:{v:[""]}}},{l:"es_MX",t:{Close:{v:[""]}}},{l:"es_NI",t:{Close:{v:[""]}}},{l:"es_PA",t:{Close:{v:[""]}}},{l:"es_PE",t:{Close:{v:[""]}}},{l:"es_PR",t:{Close:{v:[""]}}},{l:"es_PY",t:{Close:{v:[""]}}},{l:"es_SV",t:{Close:{v:[""]}}},{l:"es_UY",t:{Close:{v:[""]}}},{l:"et_EE",t:{Close:{v:[""]}}},{l:"eu",t:{Close:{v:["Itxi"]}}},{l:"fa",t:{Close:{v:[""]}}},{l:"fi",t:{Close:{v:["Sulje"]}}},{l:"fo",t:{Close:{v:[""]}}},{l:"fr",t:{Close:{v:["Fermer"]}}},{l:"ga",t:{Close:{v:["Dún"]}}},{l:"gd",t:{Close:{v:[""]}}},{l:"gl",t:{Close:{v:["Pechar"]}}},{l:"he",t:{Close:{v:["סגירה"]}}},{l:"hi_IN",t:{Close:{v:[""]}}},{l:"hr",t:{Close:{v:[""]}}},{l:"hsb",t:{Close:{v:[""]}}},{l:"hu",t:{Close:{v:["Bezárás"]}}},{l:"hy",t:{Close:{v:[""]}}},{l:"ia",t:{Close:{v:[""]}}},{l:"id",t:{Close:{v:["Tutup"]}}},{l:"ig",t:{Close:{v:[""]}}},{l:"is",t:{Close:{v:["Loka"]}}},{l:"it",t:{Close:{v:["Chiudi"]}}},{l:"ja",t:{Close:{v:["閉じる"]}}},{l:"ja_JP",t:{Close:{v:["閉じる"]}}},{l:"ka",t:{Close:{v:[""]}}},{l:"ka_GE",t:{Close:{v:[""]}}},{l:"kab",t:{Close:{v:[""]}}},{l:"kk",t:{Close:{v:[""]}}},{l:"km",t:{Close:{v:[""]}}},{l:"kn",t:{Close:{v:[""]}}},{l:"ko",t:{Close:{v:[""]}}},{l:"la",t:{Close:{v:[""]}}},{l:"lb",t:{Close:{v:[""]}}},{l:"lo",t:{Close:{v:[""]}}},{l:"lt_LT",t:{Close:{v:["Užverti"]}}},{l:"lv",t:{Close:{v:["Aizvērt"]}}},{l:"mk",t:{Close:{v:["Затвори"]}}},{l:"mn",t:{Close:{v:[""]}}},{l:"mr",t:{Close:{v:[""]}}},{l:"ms_MY",t:{Close:{v:[""]}}},{l:"my",t:{Close:{v:["ပိတ်ရန်"]}}},{l:"nb",t:{Close:{v:["Lukk"]}}},{l:"ne",t:{Close:{v:[""]}}},{l:"nl",t:{Close:{v:["Sluiten"]}}},{l:"nn_NO",t:{Close:{v:[""]}}},{l:"oc",t:{Close:{v:["Tampar"]}}},{l:"pl",t:{Close:{v:["Zamknij"]}}},{l:"ps",t:{Close:{v:[""]}}},{l:"pt_BR",t:{Close:{v:["Fechar"]}}},{l:"pt_PT",t:{Close:{v:["Fechar"]}}},{l:"ro",t:{Close:{v:["Închideți"]}}},{l:"ru",t:{Close:{v:["Закрыть"]}}},{l:"sc",t:{Close:{v:[""]}}},{l:"si",t:{Close:{v:[""]}}},{l:"sk",t:{Close:{v:["Zatvoriť"]}}},{l:"sl",t:{Close:{v:["Zapri"]}}},{l:"sq",t:{Close:{v:[""]}}},{l:"sr",t:{Close:{v:["Затвори"]}}},{l:"sr@latin",t:{Close:{v:[""]}}},{l:"sv",t:{Close:{v:["Stäng"]}}},{l:"sw",t:{Close:{v:[""]}}},{l:"ta",t:{Close:{v:[""]}}},{l:"th",t:{Close:{v:[""]}}},{l:"tk",t:{Close:{v:[""]}}},{l:"tr",t:{Close:{v:["Kapat"]}}},{l:"ug",t:{Close:{v:[""]}}},{l:"uk",t:{Close:{v:["Закрити"]}}},{l:"ur_PK",t:{Close:{v:[""]}}},{l:"uz",t:{Close:{v:[""]}}},{l:"vi",t:{Close:{v:[""]}}},{l:"zh_CN",t:{Close:{v:["关闭"]}}},{l:"zh_HK",t:{Close:{v:["關閉"]}}},{l:"zh_TW",t:{Close:{v:["關閉"]}}},{l:"zu_ZA",t:{Close:{v:[""]}}}],P1=[{l:"af",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"ar",t:{Next:{v:["التالي"]},"Pause slideshow":{v:["تجميد عرض الشرائح"]},Previous:{v:["السابق"]},"Start slideshow":{v:["إبدإ العرض"]}}},{l:"ast",t:{Next:{v:["Siguiente"]},"Pause slideshow":{v:["Posar la presentación de diapositives"]},Previous:{v:["Anterior"]},"Start slideshow":{v:["Aniciar la presentación de diapositives"]}}},{l:"az",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"be",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"bg",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"bn_BD",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"br",t:{Next:{v:["Da heul"]},"Pause slideshow":{v:["Arsav an diaporama"]},Previous:{v:["A-raok"]},"Start slideshow":{v:["Kregiñ an diaporama"]}}},{l:"bs",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"ca",t:{Next:{v:["Següent"]},"Pause slideshow":{v:["Atura la presentació"]},Previous:{v:["Anterior"]},"Start slideshow":{v:["Inicia la presentació"]}}},{l:"cs",t:{Next:{v:["Následující"]},"Pause slideshow":{v:["Pozastavit prezentaci"]},Previous:{v:["Předchozí"]},"Start slideshow":{v:["Spustit prezentaci"]}}},{l:"cs_CZ",t:{Next:{v:["Následující"]},"Pause slideshow":{v:["Pozastavit prezentaci"]},Previous:{v:["Předchozí"]},"Start slideshow":{v:["Spustit prezentaci"]}}},{l:"cy_GB",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"da",t:{Next:{v:["Videre"]},"Pause slideshow":{v:["Suspender fremvisning"]},Previous:{v:["Forrige"]},"Start slideshow":{v:["Start fremvisning"]}}},{l:"de",t:{Next:{v:["Weiter"]},"Pause slideshow":{v:["Diashow pausieren"]},Previous:{v:["Vorherige"]},"Start slideshow":{v:["Diashow starten"]}}},{l:"de_DE",t:{Next:{v:["Weiter"]},"Pause slideshow":{v:["Diashow pausieren"]},Previous:{v:["Vorherige"]},"Start slideshow":{v:["Diashow starten"]}}},{l:"el",t:{Next:{v:["Επόμενο"]},"Pause slideshow":{v:["Παύση προβολής διαφανειών"]},Previous:{v:["Προηγούμενο"]},"Start slideshow":{v:["Έναρξη προβολής διαφανειών"]}}},{l:"en_GB",t:{Next:{v:["Next"]},"Pause slideshow":{v:["Pause slideshow"]},Previous:{v:["Previous"]},"Start slideshow":{v:["Start slideshow"]}}},{l:"eo",t:{Next:{v:["Sekva"]},"Pause slideshow":{v:["Payzi bildprezenton"]},Previous:{v:["Antaŭa"]},"Start slideshow":{v:["Komenci bildprezenton"]}}},{l:"es",t:{Next:{v:["Siguiente"]},"Pause slideshow":{v:["Pausar la presentación "]},Previous:{v:["Anterior"]},"Start slideshow":{v:["Iniciar la presentación"]}}},{l:"es_419",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"es_AR",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"es_CL",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"es_CO",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"es_CR",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"es_DO",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"es_EC",t:{Next:{v:["Siguiente"]},"Pause slideshow":{v:["Pausar presentación de diapositivas"]},Previous:{v:["Anterior"]},"Start slideshow":{v:["Iniciar presentación de diapositivas"]}}},{l:"es_GT",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"es_HN",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"es_MX",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"es_NI",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"es_PA",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"es_PE",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"es_PR",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"es_PY",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"es_SV",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"es_UY",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"et_EE",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"eu",t:{Next:{v:["Hurrengoa"]},"Pause slideshow":{v:["Pausatu diaporama"]},Previous:{v:["Aurrekoa"]},"Start slideshow":{v:["Hasi diaporama"]}}},{l:"fa",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"fi",t:{Next:{v:["Seuraava"]},"Pause slideshow":{v:["Keskeytä diaesitys"]},Previous:{v:["Edellinen"]},"Start slideshow":{v:["Aloita diaesitys"]}}},{l:"fo",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"fr",t:{Next:{v:["Suivant"]},"Pause slideshow":{v:["Mettre le diaporama en pause"]},Previous:{v:["Précédent"]},"Start slideshow":{v:["Démarrer le diaporama"]}}},{l:"ga",t:{Next:{v:["Ar aghaidh"]},"Pause slideshow":{v:["Cuir taispeántas sleamhnán ar sos"]},Previous:{v:["Roimhe Seo"]},"Start slideshow":{v:["Tosaigh taispeántas sleamhnán"]}}},{l:"gd",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"gl",t:{Next:{v:["Seguinte"]},"Pause slideshow":{v:["Pausar o diaporama"]},Previous:{v:["Anterir"]},"Start slideshow":{v:["Iniciar o diaporama"]}}},{l:"he",t:{Next:{v:["הבא"]},"Pause slideshow":{v:["השהיית מצגת"]},Previous:{v:["הקודם"]},"Start slideshow":{v:["התחלת המצגת"]}}},{l:"hi_IN",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"hr",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"hsb",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"hu",t:{Next:{v:["Következő"]},"Pause slideshow":{v:["Diavetítés szüneteltetése"]},Previous:{v:["Előző"]},"Start slideshow":{v:["Diavetítés indítása"]}}},{l:"hy",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"ia",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"id",t:{Next:{v:["Selanjutnya"]},"Pause slideshow":{v:["Jeda tayangan slide"]},Previous:{v:["Sebelumnya"]},"Start slideshow":{v:["Mulai salindia"]}}},{l:"ig",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"is",t:{Next:{v:["Næsta"]},"Pause slideshow":{v:["Gera hlé á skyggnusýningu"]},Previous:{v:["Fyrri"]},"Start slideshow":{v:["Byrja skyggnusýningu"]}}},{l:"it",t:{Next:{v:["Successivo"]},"Pause slideshow":{v:["Presentazione in pausa"]},Previous:{v:["Precedente"]},"Start slideshow":{v:["Avvia presentazione"]}}},{l:"ja",t:{Next:{v:["次"]},"Pause slideshow":{v:["スライドショーを一時停止"]},Previous:{v:["前"]},"Start slideshow":{v:["スライドショーを開始"]}}},{l:"ja_JP",t:{Next:{v:["次"]},"Pause slideshow":{v:["スライドショーを一時停止"]},Previous:{v:["前"]},"Start slideshow":{v:["スライドショーを開始"]}}},{l:"ka",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"ka_GE",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"kab",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"kk",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"km",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"kn",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"ko",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"la",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"lb",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"lo",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"lt_LT",t:{Next:{v:["Kitas"]},"Pause slideshow":{v:["Pristabdyti skaidrių rodymą"]},Previous:{v:["Ankstesnis"]},"Start slideshow":{v:["Pradėti skaidrių rodymą"]}}},{l:"lv",t:{Next:{v:["Nākamais"]},"Pause slideshow":{v:["Pauzēt slaidrādi"]},Previous:{v:["Iepriekšējais"]},"Start slideshow":{v:["Sākt slaidrādi"]}}},{l:"mk",t:{Next:{v:["Следно"]},"Pause slideshow":{v:["Пузирај слајдшоу"]},Previous:{v:["Предходно"]},"Start slideshow":{v:["Стартувај слајдшоу"]}}},{l:"mn",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"mr",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"ms_MY",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"my",t:{Next:{v:["နောက်သို့ဆက်ရန်"]},"Pause slideshow":{v:["စလိုက်ရှိုး ခေတ္တရပ်ရန်"]},Previous:{v:["ယခင်"]},"Start slideshow":{v:["စလိုက်ရှိုးအား စတင်ရန်"]}}},{l:"nb",t:{Next:{v:["Neste"]},"Pause slideshow":{v:["Pause lysbildefremvisning"]},Previous:{v:["Forrige"]},"Start slideshow":{v:["Start lysbildefremvisning"]}}},{l:"ne",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"nl",t:{Next:{v:["Volgende"]},"Pause slideshow":{v:["Pauzeer diavoorstelling"]},Previous:{v:["Vorige"]},"Start slideshow":{v:["Start diavoorstelling"]}}},{l:"nn_NO",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"oc",t:{Next:{v:["Seguent"]},"Pause slideshow":{v:["Metre en pausa lo diaporama"]},Previous:{v:["Precedent"]},"Start slideshow":{v:["Lançar lo diaporama"]}}},{l:"pl",t:{Next:{v:["Następny"]},"Pause slideshow":{v:["Wstrzymaj pokaz slajdów"]},Previous:{v:["Poprzedni"]},"Start slideshow":{v:["Rozpocznij pokaz slajdów"]}}},{l:"ps",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"pt_BR",t:{Next:{v:["Próximo"]},"Pause slideshow":{v:["Pausar apresentação de slides"]},Previous:{v:["Anterior"]},"Start slideshow":{v:["Iniciar apresentação de slides"]}}},{l:"pt_PT",t:{Next:{v:["Seguinte"]},"Pause slideshow":{v:["Pausar diaporama"]},Previous:{v:["Anterior"]},"Start slideshow":{v:["Iniciar diaporama"]}}},{l:"ro",t:{Next:{v:["Următorul"]},"Pause slideshow":{v:["Pauză prezentare de diapozitive"]},Previous:{v:["Anterior"]},"Start slideshow":{v:["Începeți prezentarea de diapozitive"]}}},{l:"ru",t:{Next:{v:["Следующее"]},"Pause slideshow":{v:["Приостановить показ слйдов"]},Previous:{v:["Предыдущее"]},"Start slideshow":{v:["Начать показ слайдов"]}}},{l:"sc",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"si",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"sk",t:{Next:{v:["Ďalší"]},"Pause slideshow":{v:["Pozastaviť prezentáciu"]},Previous:{v:["Predchádzajúci"]},"Start slideshow":{v:["Začať prezentáciu"]}}},{l:"sl",t:{Next:{v:["Naslednji"]},"Pause slideshow":{v:["Ustavi predstavitev"]},Previous:{v:["Predhodni"]},"Start slideshow":{v:["Začni predstavitev"]}}},{l:"sq",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"sr",t:{Next:{v:["Следеће"]},"Pause slideshow":{v:["Паузирај слајд шоу"]},Previous:{v:["Претходно"]},"Start slideshow":{v:["Покрени слајд шоу"]}}},{l:"sr@latin",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"sv",t:{Next:{v:["Nästa"]},"Pause slideshow":{v:["Pausa bildspelet"]},Previous:{v:["Föregående"]},"Start slideshow":{v:["Starta bildspelet"]}}},{l:"sw",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"ta",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"th",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"tk",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"tr",t:{Next:{v:["Sonraki"]},"Pause slideshow":{v:["Slayt sunumunu duraklat"]},Previous:{v:["Önceki"]},"Start slideshow":{v:["Slayt sunumunu başlat"]}}},{l:"ug",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"uk",t:{Next:{v:["Вперед"]},"Pause slideshow":{v:["Пауза у показі слайдів"]},Previous:{v:["Назад"]},"Start slideshow":{v:["Почати показ слайдів"]}}},{l:"ur_PK",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"uz",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"vi",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"zh_CN",t:{Next:{v:["下一个"]},"Pause slideshow":{v:["暂停幻灯片"]},Previous:{v:["上一个"]},"Start slideshow":{v:["开始幻灯片"]}}},{l:"zh_HK",t:{Next:{v:["下一個"]},"Pause slideshow":{v:["暫停幻燈片"]},Previous:{v:["上一個"]},"Start slideshow":{v:["開始幻燈片"]}}},{l:"zh_TW",t:{Next:{v:["下一個"]},"Pause slideshow":{v:["暫停幻燈片"]},Previous:{v:["上一個"]},"Start slideshow":{v:["開始幻燈片"]}}},{l:"zu_ZA",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}}],_p=t=>Math.random().toString(36).replace(/[^a-z]+/g,"").slice(0,t||5);function Jt(t,e,n,r,o,i,s,l){var u=typeof t=="function"?t.options:t;e&&(u.render=e,u.staticRenderFns=n,u._compiled=!0),r&&(u.functional=!0),i&&(u._scopeId="data-v-"+i);var f;if(s?(f=function(y){y=y||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,!y&&typeof __VUE_SSR_CONTEXT__<"u"&&(y=__VUE_SSR_CONTEXT__),o&&o.call(this,y),y&&y._registeredComponents&&y._registeredComponents.add(s)},u._ssrRegister=f):o&&(f=l?function(){o.call(this,(u.functional?this.parent:this).$root.$options.shadowRoot)}:o),f)if(u.functional){u._injectStyles=f;var p=u.render;u.render=function(y,g){return f.call(g),p(y,g)}}else{var h=u.beforeCreate;u.beforeCreate=h?[].concat(h,f):[f]}return{exports:t,options:u}}const $1={name:"NcButton",inject:{getNcPopoverTriggerAttrs:{from:"NcPopover:trigger:attrs",default:()=>()=>({})}},props:{alignment:{type:String,default:"center",validator:t=>["start","start-reverse","center","center-reverse","end","end-reverse"].includes(t)},disabled:{type:Boolean,default:!1},size:{type:String,default:"normal",validator(t){return["small","normal","large"].includes(t)}},type:{type:String,validator(t){return["primary","secondary","tertiary","tertiary-no-background","tertiary-on-primary","error","warning","success"].includes(t)},default:"secondary"},nativeType:{type:String,validator(t){return["submit","reset","button"].indexOf(t)!==-1},default:"button"},wide:{type:Boolean,default:!1},ariaLabel:{type:String,default:null},href:{type:String,default:null},download:{type:String,default:null},to:{type:[String,Object],default:null},exact:{type:Boolean,default:!1},ariaHidden:{type:Boolean,default:null},pressed:{type:Boolean,default:null}},emits:["update:pressed","click"],computed:{realType(){return this.pressed?"primary":this.pressed===!1&&this.type==="primary"?"secondary":this.type},flexAlignment(){return this.alignment.split("-")[0]},isReverseAligned(){return this.alignment.includes("-")},ncPopoverTriggerAttrs(){return this.getNcPopoverTriggerAttrs()}},render(t){var e,n,r;const o=!!this.$slots.default,i=(e=this.$slots)==null?void 0:e.icon;!o&&!this.ariaLabel&&console.warn("You need to fill either the text or the ariaLabel props in the button component.",{text:(r=(n=this.$slots.default)==null?void 0:n[0])==null?void 0:r.text,ariaLabel:this.ariaLabel},this);const s=this.to||this.href,l=!s&&typeof this.pressed=="boolean",u=({href:f,navigate:p,isActive:h,isExactActive:y}={})=>t(s?"a":"button",{class:["button-vue","button-vue--size-".concat(this.size),{"button-vue--icon-only":i&&!o,"button-vue--text-only":o&&!i,"button-vue--icon-and-text":i&&o,["button-vue--vue-".concat(this.realType)]:this.realType,"button-vue--wide":this.wide,["button-vue--".concat(this.flexAlignment)]:this.flexAlignment!=="center","button-vue--reverse":this.isReverseAligned,active:h,"router-link-exact-active":y}],attrs:{"aria-label":this.ariaLabel,"aria-pressed":l?this.pressed.toString():void 0,disabled:this.disabled,type:s?null:this.nativeType,role:s?"button":null,href:this.to?f:this.href||null,target:s?"_self":null,rel:s?"nofollow noreferrer noopener":null,download:!this.to&&this.href&&this.download?this.download:null,...this.ncPopoverTriggerAttrs,...this.$attrs},on:{...this.$listeners,click:g=>{l&&this.$emit("update:pressed",!this.pressed),this.$emit("click",g),p==null||p(g)}}},[t("span",{class:"button-vue__wrapper"},[i?t("span",{class:"button-vue__icon",attrs:{"aria-hidden":"true"}},[this.$slots.icon]):null,o?t("span",{class:"button-vue__text"},[this.$slots.default]):null])]);return this.to?t("router-link",{props:{custom:!0,to:this.to,exact:this.exact},scopedSlots:{default:u}}):u()}},k1=null,O1=null;var L1=Jt($1,k1,O1,!1,null,"44398b0c",null,null);const qo=L1.exports;function $e(t){return t.split("-")[0]}function On(t){return t.split("-")[1]}function Tr(t){return["top","bottom"].includes($e(t))?"x":"y"}function Js(t){return t==="y"?"height":"width"}function Hl(t){let{reference:e,floating:n,placement:r}=t;const o=e.x+e.width/2-n.width/2,i=e.y+e.height/2-n.height/2;let s;switch($e(r)){case"top":s={x:o,y:e.y-n.height};break;case"bottom":s={x:o,y:e.y+e.height};break;case"right":s={x:e.x+e.width,y:i};break;case"left":s={x:e.x-n.width,y:i};break;default:s={x:e.x,y:e.y}}const l=Tr(r),u=Js(l);switch(On(r)){case"start":s[l]=s[l]-(e[u]/2-n[u]/2);break;case"end":s[l]=s[l]+(e[u]/2-n[u]/2);break}return s}const R1=async(t,e,n)=>{const{placement:r="bottom",strategy:o="absolute",middleware:i=[],platform:s}=n;let l=await s.getElementRects({reference:t,floating:e,strategy:o}),{x:u,y:f}=Hl({...l,placement:r}),p=r,h={};for(let y=0;y({name:"arrow",options:t,async fn(e){const{element:n,padding:r=0}=t!=null?t:{},{x:o,y:i,placement:s,rects:l,platform:u}=e;if(n==null)return{};const f=bp(r),p={x:o,y:i},h=$e(s),y=Tr(h),g=Js(y),b=await u.getDimensions({element:n}),$=y==="y"?"top":"left",P=y==="y"?"bottom":"right",B=l.reference[g]+l.reference[y]-p[y]-l.floating[g],R=p[y]-l.reference[y],j=await u.getOffsetParent({element:n}),q=j?y==="y"?j.clientHeight||0:j.clientWidth||0:0,et=B/2-R/2,ft=f[$],Q=q-b[g]-f[P],U=q/2-b[g]/2+et,T=as(ft,U,Q);return{data:{[y]:T,centerOffset:U-T}}}}),D1={left:"right",right:"left",bottom:"top",top:"bottom"};function ko(t){return t.replace(/left|right|bottom|top/g,e=>D1[e])}function xp(t,e){const n=On(t)==="start",r=Tr(t),o=Js(r);let i=r==="x"?n?"right":"left":n?"bottom":"top";return e.reference[o]>e.floating[o]&&(i=ko(i)),{main:i,cross:ko(i)}}const M1={start:"end",end:"start"};function ls(t){return t.replace(/start|end/g,e=>M1[e])}const z1=["top","right","bottom","left"],j1=z1.reduce((t,e)=>t.concat(e,e+"-start",e+"-end"),[]);function U1(t,e,n){return(t?[...n.filter(r=>On(r)===t),...n.filter(r=>On(r)!==t)]:n.filter(r=>$e(r)===r)).filter(r=>t?On(r)===t||(e?ls(r)!==r:!1):!0)}const H1=function(t){return t===void 0&&(t={}),{name:"autoPlacement",options:t,async fn(e){var n,r,o,i,s,l;const{x:u,y:f,rects:p,middlewareData:h,placement:y}=e,{alignment:g=null,allowedPlacements:b=j1,autoAlignment:$=!0,...P}=t;if((n=h.autoPlacement)!=null&&n.skip)return{};const B=U1(g,$,b),R=await Xo(e,P),j=(r=(o=h.autoPlacement)==null?void 0:o.index)!=null?r:0,q=B[j],{main:et,cross:ft}=xp(q,p);if(y!==q)return{x:u,y:f,reset:{placement:B[0]}};const Q=[R[$e(q)],R[et],R[ft]],U=[...(i=(s=h.autoPlacement)==null?void 0:s.overflows)!=null?i:[],{placement:q,overflows:Q}],T=B[j+1];if(T)return{data:{index:j+1,overflows:U},reset:{placement:T}};const C=U.slice().sort((w,_)=>w.overflows[0]-_.overflows[0]),I=(l=C.find(w=>{let{overflows:_}=w;return _.every(S=>S<=0)}))==null?void 0:l.placement;return{data:{skip:!0},reset:{placement:I!=null?I:C[0].placement}}}}};function V1(t){const e=ko(t);return[ls(t),e,ls(e)]}const W1=function(t){return t===void 0&&(t={}),{name:"flip",options:t,async fn(e){var n,r;const{placement:o,middlewareData:i,rects:s,initialPlacement:l}=e;if((n=i.flip)!=null&&n.skip)return{};const{mainAxis:u=!0,crossAxis:f=!0,fallbackPlacements:p,fallbackStrategy:h="bestFit",flipAlignment:y=!0,...g}=t,b=$e(o),$=p||(b===l||!y?[ko(l)]:V1(l)),P=[l,...$],B=await Xo(e,g),R=[];let j=((r=i.flip)==null?void 0:r.overflows)||[];if(u&&R.push(B[b]),f){const{main:Q,cross:U}=xp(o,s);R.push(B[Q],B[U])}if(j=[...j,{placement:o,overflows:R}],!R.every(Q=>Q<=0)){var q,et;const Q=((q=(et=i.flip)==null?void 0:et.index)!=null?q:0)+1,U=P[Q];if(U)return{data:{index:Q,overflows:j},reset:{placement:U}};let T="bottom";switch(h){case"bestFit":{var ft;const C=(ft=j.slice().sort((I,w)=>I.overflows.filter(_=>_>0).reduce((_,S)=>_+S,0)-w.overflows.filter(_=>_>0).reduce((_,S)=>_+S,0))[0])==null?void 0:ft.placement;C&&(T=C);break}case"initialPlacement":T=l;break}return{data:{skip:!0},reset:{placement:T}}}return{}}}};function G1(t){let{placement:e,rects:n,value:r}=t;const o=$e(e),i=["left","top"].includes(o)?-1:1,s=typeof r=="function"?r({...n,placement:e}):r,{mainAxis:l,crossAxis:u}=typeof s=="number"?{mainAxis:s,crossAxis:0}:{mainAxis:0,crossAxis:0,...s};return Tr(o)==="x"?{x:u,y:l*i}:{x:l*i,y:u}}const q1=function(t){return t===void 0&&(t=0),{name:"offset",options:t,fn(e){const{x:n,y:r,placement:o,rects:i}=e,s=G1({placement:o,rects:i,value:t});return{x:n+s.x,y:r+s.y,data:s}}}};function X1(t){return t==="x"?"y":"x"}const K1=function(t){return t===void 0&&(t={}),{name:"shift",options:t,async fn(e){const{x:n,y:r,placement:o}=e,{mainAxis:i=!0,crossAxis:s=!1,limiter:l={fn:P=>{let{x:B,y:R}=P;return{x:B,y:R}}},...u}=t,f={x:n,y:r},p=await Xo(e,u),h=Tr($e(o)),y=X1(h);let g=f[h],b=f[y];if(i){const P=h==="y"?"top":"left",B=h==="y"?"bottom":"right",R=g+p[P],j=g-p[B];g=as(R,g,j)}if(s){const P=y==="y"?"top":"left",B=y==="y"?"bottom":"right",R=b+p[P],j=b-p[B];b=as(R,b,j)}const $=l.fn({...e,[h]:g,[y]:b});return{...$,data:{x:$.x-n,y:$.y-r}}}}},Z1=function(t){return t===void 0&&(t={}),{name:"size",options:t,async fn(e){var n;const{placement:r,rects:o,middlewareData:i}=e,{apply:s,...l}=t;if((n=i.size)!=null&&n.skip)return{};const u=await Xo(e,l),f=$e(r),p=On(r)==="end";let h,y;f==="top"||f==="bottom"?(h=f,y=p?"left":"right"):(y=f,h=p?"top":"bottom");const g=Qe(u.left,0),b=Qe(u.right,0),$=Qe(u.top,0),P=Qe(u.bottom,0),B={height:o.floating.height-(["left","right"].includes(r)?2*($!==0||P!==0?$+P:Qe(u.top,u.bottom)):u[h]),width:o.floating.width-(["top","bottom"].includes(r)?2*(g!==0||b!==0?g+b:Qe(u.left,u.right)):u[y])};return s==null||s({...B,...o}),{data:{skip:!0},reset:{rects:!0}}}}};function Qs(t){return(t==null?void 0:t.toString())==="[object Window]"}function qe(t){if(t==null)return window;if(!Qs(t)){const e=t.ownerDocument;return e&&e.defaultView||window}return t}function Ko(t){return qe(t).getComputedStyle(t)}function Ne(t){return Qs(t)?"":t?(t.nodeName||"").toLowerCase():""}function Pe(t){return t instanceof qe(t).HTMLElement}function Oo(t){return t instanceof qe(t).Element}function Y1(t){return t instanceof qe(t).Node}function Ep(t){const e=qe(t).ShadowRoot;return t instanceof e||t instanceof ShadowRoot}function Zo(t){const{overflow:e,overflowX:n,overflowY:r}=Ko(t);return/auto|scroll|overlay|hidden/.test(e+r+n)}function J1(t){return["table","td","th"].includes(Ne(t))}function Cp(t){const e=navigator.userAgent.toLowerCase().includes("firefox"),n=Ko(t);return n.transform!=="none"||n.perspective!=="none"||n.contain==="paint"||["transform","perspective"].includes(n.willChange)||e&&n.willChange==="filter"||e&&(n.filter?n.filter!=="none":!1)}const Vl=Math.min,cr=Math.max,Lo=Math.round;function Bn(t,e){e===void 0&&(e=!1);const n=t.getBoundingClientRect();let r=1,o=1;return e&&Pe(t)&&(r=t.offsetWidth>0&&Lo(n.width)/t.offsetWidth||1,o=t.offsetHeight>0&&Lo(n.height)/t.offsetHeight||1),{width:n.width/r,height:n.height/o,top:n.top/o,right:n.right/r,bottom:n.bottom/o,left:n.left/r,x:n.left/r,y:n.top/o}}function Xe(t){return((Y1(t)?t.ownerDocument:t.document)||window.document).documentElement}function Yo(t){return Qs(t)?{scrollLeft:t.pageXOffset,scrollTop:t.pageYOffset}:{scrollLeft:t.scrollLeft,scrollTop:t.scrollTop}}function Sp(t){return Bn(Xe(t)).left+Yo(t).scrollLeft}function Q1(t){const e=Bn(t);return Lo(e.width)!==t.offsetWidth||Lo(e.height)!==t.offsetHeight}function tg(t,e,n){const r=Pe(e),o=Xe(e),i=Bn(t,r&&Q1(e));let s={scrollLeft:0,scrollTop:0};const l={x:0,y:0};if(r||!r&&n!=="fixed")if((Ne(e)!=="body"||Zo(o))&&(s=Yo(e)),Pe(e)){const u=Bn(e,!0);l.x=u.x+e.clientLeft,l.y=u.y+e.clientTop}else o&&(l.x=Sp(o));return{x:i.left+s.scrollLeft-l.x,y:i.top+s.scrollTop-l.y,width:i.width,height:i.height}}function Jo(t){return Ne(t)==="html"?t:t.assignedSlot||t.parentNode||(Ep(t)?t.host:null)||Xe(t)}function Wl(t){return!Pe(t)||getComputedStyle(t).position==="fixed"?null:t.offsetParent}function eg(t){let e=Jo(t);for(;Pe(e)&&!["html","body"].includes(Ne(e));){if(Cp(e))return e;e=e.parentNode}return null}function us(t){const e=qe(t);let n=Wl(t);for(;n&&J1(n)&&getComputedStyle(n).position==="static";)n=Wl(n);return n&&(Ne(n)==="html"||Ne(n)==="body"&&getComputedStyle(n).position==="static"&&!Cp(n))?e:n||eg(t)||e}function Gl(t){return{width:t.offsetWidth,height:t.offsetHeight}}function ng(t){let{rect:e,offsetParent:n,strategy:r}=t;const o=Pe(n),i=Xe(n);if(n===i)return e;let s={scrollLeft:0,scrollTop:0};const l={x:0,y:0};if((o||!o&&r!=="fixed")&&((Ne(n)!=="body"||Zo(i))&&(s=Yo(n)),Pe(n))){const u=Bn(n,!0);l.x=u.x+n.clientLeft,l.y=u.y+n.clientTop}return{...e,x:e.x-s.scrollLeft+l.x,y:e.y-s.scrollTop+l.y}}function rg(t){const e=qe(t),n=Xe(t),r=e.visualViewport;let o=n.clientWidth,i=n.clientHeight,s=0,l=0;return r&&(o=r.width,i=r.height,Math.abs(e.innerWidth/r.scale-r.width)<.01&&(s=r.offsetLeft,l=r.offsetTop)),{width:o,height:i,x:s,y:l}}function og(t){var e;const n=Xe(t),r=Yo(t),o=(e=t.ownerDocument)==null?void 0:e.body,i=cr(n.scrollWidth,n.clientWidth,o?o.scrollWidth:0,o?o.clientWidth:0),s=cr(n.scrollHeight,n.clientHeight,o?o.scrollHeight:0,o?o.clientHeight:0);let l=-r.scrollLeft+Sp(t);const u=-r.scrollTop;return Ko(o||n).direction==="rtl"&&(l+=cr(n.clientWidth,o?o.clientWidth:0)-i),{width:i,height:s,x:l,y:u}}function Ap(t){return["html","body","#document"].includes(Ne(t))?t.ownerDocument.body:Pe(t)&&Zo(t)?t:Ap(Jo(t))}function Ro(t,e){var n;e===void 0&&(e=[]);const r=Ap(t),o=r===((n=t.ownerDocument)==null?void 0:n.body),i=qe(r),s=o?[i].concat(i.visualViewport||[],Zo(r)?r:[]):r,l=e.concat(s);return o?l:l.concat(Ro(Jo(s)))}function ig(t,e){const n=e.getRootNode==null?void 0:e.getRootNode();if(t.contains(e))return!0;if(n&&Ep(n)){let r=e;do{if(r&&t===r)return!0;r=r.parentNode||r.host}while(r)}return!1}function sg(t){const e=Bn(t),n=e.top+t.clientTop,r=e.left+t.clientLeft;return{top:n,left:r,x:r,y:n,right:r+t.clientWidth,bottom:n+t.clientHeight,width:t.clientWidth,height:t.clientHeight}}function ql(t,e){return e==="viewport"?ss(rg(t)):Oo(e)?sg(e):ss(og(Xe(t)))}function ag(t){const e=Ro(Jo(t)),n=["absolute","fixed"].includes(Ko(t).position)&&Pe(t)?us(t):t;return Oo(n)?e.filter(r=>Oo(r)&&ig(r,n)&&Ne(r)!=="body"):[]}function lg(t){let{element:e,boundary:n,rootBoundary:r}=t;const o=[...n==="clippingParents"?ag(e):[].concat(n),r],i=o[0],s=o.reduce((l,u)=>{const f=ql(e,u);return l.top=cr(f.top,l.top),l.right=Vl(f.right,l.right),l.bottom=Vl(f.bottom,l.bottom),l.left=cr(f.left,l.left),l},ql(e,i));return s.width=s.right-s.left,s.height=s.bottom-s.top,s.x=s.left,s.y=s.top,s}const ug={getElementRects:t=>{let{reference:e,floating:n,strategy:r}=t;return{reference:tg(e,us(n),r),floating:{...Gl(n),x:0,y:0}}},convertOffsetParentRelativeRectToViewportRelativeRect:t=>ng(t),getOffsetParent:t=>{let{element:e}=t;return us(e)},isElement:t=>Oo(t),getDocumentElement:t=>{let{element:e}=t;return Xe(e)},getClippingClientRect:t=>lg(t),getDimensions:t=>{let{element:e}=t;return Gl(e)},getClientRects:t=>{let{element:e}=t;return e.getClientRects()}},cg=(t,e,n)=>R1(t,e,{platform:ug,...n});var pg=Object.defineProperty,fg=Object.defineProperties,dg=Object.getOwnPropertyDescriptors,Io=Object.getOwnPropertySymbols,Tp=Object.prototype.hasOwnProperty,Np=Object.prototype.propertyIsEnumerable,Xl=(t,e,n)=>e in t?pg(t,e,{enumerable:!0,configurable:!0,writable:!0,value:n}):t[e]=n,De=(t,e)=>{for(var n in e||(e={}))Tp.call(e,n)&&Xl(t,n,e[n]);if(Io)for(var n of Io(e))Np.call(e,n)&&Xl(t,n,e[n]);return t},Qo=(t,e)=>fg(t,dg(e)),hg=(t,e)=>{var n={};for(var r in t)Tp.call(t,r)&&e.indexOf(r)<0&&(n[r]=t[r]);if(t!=null&&Io)for(var r of Io(t))e.indexOf(r)<0&&Np.call(t,r)&&(n[r]=t[r]);return n};function Pp(t,e){for(const n in e)Object.prototype.hasOwnProperty.call(e,n)&&(typeof e[n]=="object"&&t[n]?Pp(t[n],e[n]):t[n]=e[n])}const ve={disabled:!1,distance:5,skidding:0,container:"body",boundary:void 0,instantMove:!1,disposeTimeout:5e3,popperTriggers:[],strategy:"absolute",preventOverflow:!0,flip:!0,shift:!0,overflowPadding:0,arrowPadding:0,arrowOverflow:!0,themes:{tooltip:{placement:"top",triggers:["hover","focus","touch"],hideTriggers:t=>[...t,"click"],delay:{show:200,hide:0},handleResize:!1,html:!1,loadingContent:"..."},dropdown:{placement:"bottom",triggers:["click"],delay:0,handleResize:!0,autoHide:!0},menu:{$extend:"dropdown",triggers:["hover","focus"],popperTriggers:["hover","focus"],delay:{show:0,hide:400}}}};function Dn(t,e){let n=ve.themes[t]||{},r;do r=n[e],typeof r>"u"?n.$extend?n=ve.themes[n.$extend]||{}:(n=null,r=ve[e]):n=null;while(n);return r}function mg(t){const e=[t];let n=ve.themes[t]||{};do n.$extend&&!n.$resetCss?(e.push(n.$extend),n=ve.themes[n.$extend]||{}):n=null;while(n);return e.map(r=>"v-popper--theme-".concat(r))}function Kl(t){const e=[t];let n=ve.themes[t]||{};do n.$extend?(e.push(n.$extend),n=ve.themes[n.$extend]||{}):n=null;while(n);return e}let hn=!1;if(typeof window<"u"){hn=!1;try{const t=Object.defineProperty({},"passive",{get(){hn=!0}});window.addEventListener("test",null,t)}catch{}}let $p=!1;typeof window<"u"&&typeof navigator<"u"&&($p=/iPad|iPhone|iPod/.test(navigator.userAgent)&&!window.MSStream);const kp=["auto","top","bottom","left","right"].reduce((t,e)=>t.concat([e,"".concat(e,"-start"),"".concat(e,"-end")]),[]),Zl={hover:"mouseenter",focus:"focus",click:"click",touch:"touchstart"},Yl={hover:"mouseleave",focus:"blur",click:"click",touch:"touchend"};function Jl(t,e){const n=t.indexOf(e);n!==-1&&t.splice(n,1)}function Ci(){return new Promise(t=>requestAnimationFrame(()=>{requestAnimationFrame(t)}))}const oe=[];let Ze=null;const Ql={};function tu(t){let e=Ql[t];return e||(e=Ql[t]=[]),e}let cs=function(){};typeof window<"u"&&(cs=window.Element);function nt(t){return function(){const e=this.$props;return Dn(e.theme,t)}}const Si="__floating-vue__popper";var Op=()=>({name:"VPopper",props:{theme:{type:String,required:!0},targetNodes:{type:Function,required:!0},referenceNode:{type:Function,required:!0},popperNode:{type:Function,required:!0},shown:{type:Boolean,default:!1},showGroup:{type:String,default:null},ariaId:{default:null},disabled:{type:Boolean,default:nt("disabled")},positioningDisabled:{type:Boolean,default:nt("positioningDisabled")},placement:{type:String,default:nt("placement"),validator:t=>kp.includes(t)},delay:{type:[String,Number,Object],default:nt("delay")},distance:{type:[Number,String],default:nt("distance")},skidding:{type:[Number,String],default:nt("skidding")},triggers:{type:Array,default:nt("triggers")},showTriggers:{type:[Array,Function],default:nt("showTriggers")},hideTriggers:{type:[Array,Function],default:nt("hideTriggers")},popperTriggers:{type:Array,default:nt("popperTriggers")},popperShowTriggers:{type:[Array,Function],default:nt("popperShowTriggers")},popperHideTriggers:{type:[Array,Function],default:nt("popperHideTriggers")},container:{type:[String,Object,cs,Boolean],default:nt("container")},boundary:{type:[String,cs],default:nt("boundary")},strategy:{type:String,validator:t=>["absolute","fixed"].includes(t),default:nt("strategy")},autoHide:{type:[Boolean,Function],default:nt("autoHide")},handleResize:{type:Boolean,default:nt("handleResize")},instantMove:{type:Boolean,default:nt("instantMove")},eagerMount:{type:Boolean,default:nt("eagerMount")},popperClass:{type:[String,Array,Object],default:nt("popperClass")},computeTransformOrigin:{type:Boolean,default:nt("computeTransformOrigin")},autoMinSize:{type:Boolean,default:nt("autoMinSize")},autoSize:{type:[Boolean,String],default:nt("autoSize")},autoMaxSize:{type:Boolean,default:nt("autoMaxSize")},autoBoundaryMaxSize:{type:Boolean,default:nt("autoBoundaryMaxSize")},preventOverflow:{type:Boolean,default:nt("preventOverflow")},overflowPadding:{type:[Number,String],default:nt("overflowPadding")},arrowPadding:{type:[Number,String],default:nt("arrowPadding")},arrowOverflow:{type:Boolean,default:nt("arrowOverflow")},flip:{type:Boolean,default:nt("flip")},shift:{type:Boolean,default:nt("shift")},shiftCrossAxis:{type:Boolean,default:nt("shiftCrossAxis")},noAutoFocus:{type:Boolean,default:nt("noAutoFocus")}},provide(){return{[Si]:{parentPopper:this}}},inject:{[Si]:{default:null}},data(){return{isShown:!1,isMounted:!1,skipTransition:!1,classes:{showFrom:!1,showTo:!1,hideFrom:!1,hideTo:!0},result:{x:0,y:0,placement:"",strategy:this.strategy,arrow:{x:0,y:0,centerOffset:0},transformOrigin:null},shownChildren:new Set,lastAutoHide:!0}},computed:{popperId(){return this.ariaId!=null?this.ariaId:this.randomId},shouldMountContent(){return this.eagerMount||this.isMounted},slotData(){return{popperId:this.popperId,isShown:this.isShown,shouldMountContent:this.shouldMountContent,skipTransition:this.skipTransition,autoHide:typeof this.autoHide=="function"?this.lastAutoHide:this.autoHide,show:this.show,hide:this.hide,handleResize:this.handleResize,onResize:this.onResize,classes:Qo(De({},this.classes),{popperClass:this.popperClass}),result:this.positioningDisabled?null:this.result}},parentPopper(){var t;return(t=this[Si])==null?void 0:t.parentPopper},hasPopperShowTriggerHover(){var t,e;return((t=this.popperTriggers)==null?void 0:t.includes("hover"))||((e=this.popperShowTriggers)==null?void 0:e.includes("hover"))}},watch:De(De({shown:"$_autoShowHide",disabled(t){t?this.dispose():this.init()},async container(){this.isShown&&(this.$_ensureTeleport(),await this.$_computePosition())}},["triggers","positioningDisabled"].reduce((t,e)=>(t[e]="$_refreshListeners",t),{})),["placement","distance","skidding","boundary","strategy","overflowPadding","arrowPadding","preventOverflow","shift","shiftCrossAxis","flip"].reduce((t,e)=>(t[e]="$_computePosition",t),{})),created(){this.$_isDisposed=!0,this.randomId="popper_".concat([Math.random(),Date.now()].map(t=>t.toString(36).substring(2,10)).join("_")),this.autoMinSize&&console.warn('[floating-vue] `autoMinSize` option is deprecated. Use `autoSize="min"` instead.'),this.autoMaxSize&&console.warn("[floating-vue] `autoMaxSize` option is deprecated. Use `autoBoundaryMaxSize` instead.")},mounted(){this.init(),this.$_detachPopperNode()},activated(){this.$_autoShowHide()},deactivated(){this.hide()},beforeDestroy(){this.dispose()},methods:{show({event:t=null,skipDelay:e=!1,force:n=!1}={}){var r,o;(r=this.parentPopper)!=null&&r.lockedChild&&this.parentPopper.lockedChild!==this||(this.$_pendingHide=!1,(n||!this.disabled)&&(((o=this.parentPopper)==null?void 0:o.lockedChild)===this&&(this.parentPopper.lockedChild=null),this.$_scheduleShow(t,e),this.$emit("show"),this.$_showFrameLocked=!0,requestAnimationFrame(()=>{this.$_showFrameLocked=!1})),this.$emit("update:shown",!0))},hide({event:t=null,skipDelay:e=!1,skipAiming:n=!1}={}){var r;if(!this.$_hideInProgress){if(this.shownChildren.size>0){this.$_pendingHide=!0;return}if(!n&&this.hasPopperShowTriggerHover&&this.$_isAimingPopper()){this.parentPopper&&(this.parentPopper.lockedChild=this,clearTimeout(this.parentPopper.lockedChildTimer),this.parentPopper.lockedChildTimer=setTimeout(()=>{this.parentPopper.lockedChild===this&&(this.parentPopper.lockedChild.hide({skipDelay:e}),this.parentPopper.lockedChild=null)},1e3));return}((r=this.parentPopper)==null?void 0:r.lockedChild)===this&&(this.parentPopper.lockedChild=null),this.$_pendingHide=!1,this.$_scheduleHide(t,e),this.$emit("hide"),this.$emit("update:shown",!1)}},init(){this.$_isDisposed&&(this.$_isDisposed=!1,this.isMounted=!1,this.$_events=[],this.$_preventShow=!1,this.$_referenceNode=this.referenceNode(),this.$_targetNodes=this.targetNodes().filter(t=>t.nodeType===t.ELEMENT_NODE),this.$_popperNode=this.popperNode(),this.$_innerNode=this.$_popperNode.querySelector(".v-popper__inner"),this.$_arrowNode=this.$_popperNode.querySelector(".v-popper__arrow-container"),this.$_swapTargetAttrs("title","data-original-title"),this.$_detachPopperNode(),this.triggers.length&&this.$_addEventListeners(),this.shown&&this.show())},dispose(){this.$_isDisposed||(this.$_isDisposed=!0,this.$_removeEventListeners(),this.hide({skipDelay:!0}),this.$_detachPopperNode(),this.isMounted=!1,this.isShown=!1,this.$_updateParentShownChildren(!1),this.$_swapTargetAttrs("data-original-title","title"),this.$emit("dispose"))},async onResize(){this.isShown&&(await this.$_computePosition(),this.$emit("resize"))},async $_computePosition(){var t;if(this.$_isDisposed||this.positioningDisabled)return;const e={strategy:this.strategy,middleware:[]};(this.distance||this.skidding)&&e.middleware.push(q1({mainAxis:this.distance,crossAxis:this.skidding}));const n=this.placement.startsWith("auto");if(n?e.middleware.push(H1({alignment:(t=this.placement.split("-")[1])!=null?t:""})):e.placement=this.placement,this.preventOverflow&&(this.shift&&e.middleware.push(K1({padding:this.overflowPadding,boundary:this.boundary,crossAxis:this.shiftCrossAxis})),!n&&this.flip&&e.middleware.push(W1({padding:this.overflowPadding,boundary:this.boundary}))),e.middleware.push(B1({element:this.$_arrowNode,padding:this.arrowPadding})),this.arrowOverflow&&e.middleware.push({name:"arrowOverflow",fn:({placement:o,rects:i,middlewareData:s})=>{let l;const{centerOffset:u}=s.arrow;return o.startsWith("top")||o.startsWith("bottom")?l=Math.abs(u)>i.reference.width/2:l=Math.abs(u)>i.reference.height/2,{data:{overflow:l}}}}),this.autoMinSize||this.autoSize){const o=this.autoSize?this.autoSize:this.autoMinSize?"min":null;e.middleware.push({name:"autoSize",fn:({rects:i,placement:s,middlewareData:l})=>{var u;if((u=l.autoSize)!=null&&u.skip)return{};let f,p;return s.startsWith("top")||s.startsWith("bottom")?f=i.reference.width:p=i.reference.height,this.$_innerNode.style[o==="min"?"minWidth":o==="max"?"maxWidth":"width"]=f!=null?"".concat(f,"px"):null,this.$_innerNode.style[o==="min"?"minHeight":o==="max"?"maxHeight":"height"]=p!=null?"".concat(p,"px"):null,{data:{skip:!0},reset:{rects:!0}}}})}(this.autoMaxSize||this.autoBoundaryMaxSize)&&(this.$_innerNode.style.maxWidth=null,this.$_innerNode.style.maxHeight=null,e.middleware.push(Z1({boundary:this.boundary,padding:this.overflowPadding,apply:({width:o,height:i})=>{this.$_innerNode.style.maxWidth=o!=null?"".concat(o,"px"):null,this.$_innerNode.style.maxHeight=i!=null?"".concat(i,"px"):null}})));const r=await cg(this.$_referenceNode,this.$_popperNode,e);Object.assign(this.result,{x:r.x,y:r.y,placement:r.placement,strategy:r.strategy,arrow:De(De({},r.middlewareData.arrow),r.middlewareData.arrowOverflow)})},$_scheduleShow(t=null,e=!1){if(this.$_updateParentShownChildren(!0),this.$_hideInProgress=!1,clearTimeout(this.$_scheduleTimer),Ze&&this.instantMove&&Ze.instantMove&&Ze!==this.parentPopper){Ze.$_applyHide(!0),this.$_applyShow(!0);return}e?this.$_applyShow():this.$_scheduleTimer=setTimeout(this.$_applyShow.bind(this),this.$_computeDelay("show"))},$_scheduleHide(t=null,e=!1){if(this.shownChildren.size>0){this.$_pendingHide=!0;return}this.$_updateParentShownChildren(!1),this.$_hideInProgress=!0,clearTimeout(this.$_scheduleTimer),this.isShown&&(Ze=this),e?this.$_applyHide():this.$_scheduleTimer=setTimeout(this.$_applyHide.bind(this),this.$_computeDelay("hide"))},$_computeDelay(t){const e=this.delay;return parseInt(e&&e[t]||e||0)},async $_applyShow(t=!1){clearTimeout(this.$_disposeTimer),clearTimeout(this.$_scheduleTimer),this.skipTransition=t,!this.isShown&&(this.$_ensureTeleport(),await Ci(),await this.$_computePosition(),await this.$_applyShowEffect(),this.positioningDisabled||this.$_registerEventListeners([...Ro(this.$_referenceNode),...Ro(this.$_popperNode)],"scroll",()=>{this.$_computePosition()}))},async $_applyShowEffect(){if(this.$_hideInProgress)return;if(this.computeTransformOrigin){const e=this.$_referenceNode.getBoundingClientRect(),n=this.$_popperNode.querySelector(".v-popper__wrapper"),r=n.parentNode.getBoundingClientRect(),o=e.x+e.width/2-(r.left+n.offsetLeft),i=e.y+e.height/2-(r.top+n.offsetTop);this.result.transformOrigin="".concat(o,"px ").concat(i,"px")}this.isShown=!0,this.$_applyAttrsToTarget({"aria-describedby":this.popperId,"data-popper-shown":""});const t=this.showGroup;if(t){let e;for(let n=0;n0){this.$_pendingHide=!0,this.$_hideInProgress=!1;return}if(clearTimeout(this.$_scheduleTimer),!this.isShown)return;this.skipTransition=t,Jl(oe,this),oe.length===0&&document.body.classList.remove("v-popper--some-open");for(const n of Kl(this.theme)){const r=tu(n);Jl(r,this),r.length===0&&document.body.classList.remove("v-popper--some-open--".concat(n))}Ze===this&&(Ze=null),this.isShown=!1,this.$_applyAttrsToTarget({"aria-describedby":void 0,"data-popper-shown":void 0}),clearTimeout(this.$_disposeTimer);const e=Dn(this.theme,"disposeTimeout");e!==null&&(this.$_disposeTimer=setTimeout(()=>{this.$_popperNode&&(this.$_detachPopperNode(),this.isMounted=!1)},e)),this.$_removeEventListeners("scroll"),this.$emit("apply-hide"),this.classes.showFrom=!1,this.classes.showTo=!1,this.classes.hideFrom=!0,this.classes.hideTo=!1,await Ci(),this.classes.hideFrom=!1,this.classes.hideTo=!0},$_autoShowHide(){this.shown?this.show():this.hide()},$_ensureTeleport(){if(this.$_isDisposed)return;let t=this.container;if(typeof t=="string"?t=window.document.querySelector(t):t===!1&&(t=this.$_targetNodes[0].parentNode),!t)throw new Error("No container for popover: "+this.container);t.appendChild(this.$_popperNode),this.isMounted=!0},$_addEventListeners(){const t=n=>{this.isShown&&!this.$_hideInProgress||(n.usedByTooltip=!0,!this.$_preventShow&&this.show({event:n}))};this.$_registerTriggerListeners(this.$_targetNodes,Zl,this.triggers,this.showTriggers,t),this.$_registerTriggerListeners([this.$_popperNode],Zl,this.popperTriggers,this.popperShowTriggers,t);const e=n=>r=>{r.usedByTooltip||this.hide({event:r,skipAiming:n})};this.$_registerTriggerListeners(this.$_targetNodes,Yl,this.triggers,this.hideTriggers,e(!1)),this.$_registerTriggerListeners([this.$_popperNode],Yl,this.popperTriggers,this.popperHideTriggers,e(!0))},$_registerEventListeners(t,e,n){this.$_events.push({targetNodes:t,eventType:e,handler:n}),t.forEach(r=>r.addEventListener(e,n,hn?{passive:!0}:void 0))},$_registerTriggerListeners(t,e,n,r,o){let i=n;r!=null&&(i=typeof r=="function"?r(i):r),i.forEach(s=>{const l=e[s];l&&this.$_registerEventListeners(t,l,o)})},$_removeEventListeners(t){const e=[];this.$_events.forEach(n=>{const{targetNodes:r,eventType:o,handler:i}=n;!t||t===o?r.forEach(s=>s.removeEventListener(o,i)):e.push(n)}),this.$_events=e},$_refreshListeners(){this.$_isDisposed||(this.$_removeEventListeners(),this.$_addEventListeners())},$_handleGlobalClose(t,e=!1){this.$_showFrameLocked||(this.hide({event:t}),t.closePopover?this.$emit("close-directive"):this.$emit("auto-hide"),e&&(this.$_preventShow=!0,setTimeout(()=>{this.$_preventShow=!1},300)))},$_detachPopperNode(){this.$_popperNode.parentNode&&this.$_popperNode.parentNode.removeChild(this.$_popperNode)},$_swapTargetAttrs(t,e){for(const n of this.$_targetNodes){const r=n.getAttribute(t);r&&(n.removeAttribute(t),n.setAttribute(e,r))}},$_applyAttrsToTarget(t){for(const e of this.$_targetNodes)for(const n in t){const r=t[n];r==null?e.removeAttribute(n):e.setAttribute(n,r)}},$_updateParentShownChildren(t){let e=this.parentPopper;for(;e;)t?e.shownChildren.add(this.randomId):(e.shownChildren.delete(this.randomId),e.$_pendingHide&&e.hide()),e=e.parentPopper},$_isAimingPopper(){const t=this.$el.getBoundingClientRect();if(pr>=t.left&&pr<=t.right&&fr>=t.top&&fr<=t.bottom){const e=this.$_popperNode.getBoundingClientRect(),n=pr-Ie,r=fr-Fe,o=e.left+e.width/2-Ie+(e.top+e.height/2)-Fe+e.width+e.height,i=Ie+n*o,s=Fe+r*o;return Wr(Ie,Fe,i,s,e.left,e.top,e.left,e.bottom)||Wr(Ie,Fe,i,s,e.left,e.top,e.right,e.top)||Wr(Ie,Fe,i,s,e.right,e.top,e.right,e.bottom)||Wr(Ie,Fe,i,s,e.left,e.bottom,e.right,e.bottom)}return!1}},render(){return this.$scopedSlots.default(this.slotData)[0]}});typeof document<"u"&&typeof window<"u"&&($p?(document.addEventListener("touchstart",eu,hn?{passive:!0,capture:!0}:!0),document.addEventListener("touchend",gg,hn?{passive:!0,capture:!0}:!0)):(window.addEventListener("mousedown",eu,!0),window.addEventListener("click",vg,!0)),window.addEventListener("resize",_g));function eu(t){for(let e=0;e=0;r--){const o=oe[r];try{const i=o.$_containsGlobalTarget=yg(o,t);o.$_pendingHide=!1,requestAnimationFrame(()=>{if(o.$_pendingHide=!1,!n[o.randomId]&&nu(o,i,t)){if(o.$_handleGlobalClose(t,e),!t.closeAllPopover&&t.closePopover&&i){let l=o.parentPopper;for(;l;)n[l.randomId]=!0,l=l.parentPopper;return}let s=o.parentPopper;for(;s&&nu(s,s.$_containsGlobalTarget,t);)s.$_handleGlobalClose(t,e),s=s.parentPopper}})}catch{}}}function yg(t,e){const n=t.popperNode();return t.$_mouseDownContains||n.contains(e.target)}function nu(t,e,n){return n.closeAllPopover||n.closePopover&&e||wg(t,n)&&!e}function wg(t,e){if(typeof t.autoHide=="function"){const n=t.autoHide(e);return t.lastAutoHide=n,n}return t.autoHide}function _g(t){for(let e=0;e{Ie=pr,Fe=fr,pr=t.clientX,fr=t.clientY},hn?{passive:!0}:void 0);function Wr(t,e,n,r,o,i,s,l){const u=((s-o)*(e-i)-(l-i)*(t-o))/((l-i)*(n-t)-(s-o)*(r-e)),f=((n-t)*(e-i)-(r-e)*(t-o))/((l-i)*(n-t)-(s-o)*(r-e));return u>=0&&u<=1&&f>=0&&f<=1}function bg(){var t=window.navigator.userAgent,e=t.indexOf("MSIE ");if(e>0)return parseInt(t.substring(e+5,t.indexOf(".",e)),10);var n=t.indexOf("Trident/");if(n>0){var r=t.indexOf("rv:");return parseInt(t.substring(r+3,t.indexOf(".",r)),10)}var o=t.indexOf("Edge/");return o>0?parseInt(t.substring(o+5,t.indexOf(".",o)),10):-1}var so;function ps(){ps.init||(ps.init=!0,so=bg()!==-1)}var xg={name:"ResizeObserver",props:{emitOnMount:{type:Boolean,default:!1},ignoreWidth:{type:Boolean,default:!1},ignoreHeight:{type:Boolean,default:!1}},mounted:function(){var t=this;ps(),this.$nextTick(function(){t._w=t.$el.offsetWidth,t._h=t.$el.offsetHeight,t.emitOnMount&&t.emitSize()});var e=document.createElement("object");this._resizeObject=e,e.setAttribute("aria-hidden","true"),e.setAttribute("tabindex",-1),e.onload=this.addResizeHandlers,e.type="text/html",so&&this.$el.appendChild(e),e.data="about:blank",so||this.$el.appendChild(e)},beforeDestroy:function(){this.removeResizeHandlers()},methods:{compareAndNotify:function(){(!this.ignoreWidth&&this._w!==this.$el.offsetWidth||!this.ignoreHeight&&this._h!==this.$el.offsetHeight)&&(this._w=this.$el.offsetWidth,this._h=this.$el.offsetHeight,this.emitSize())},emitSize:function(){this.$emit("notify",{width:this._w,height:this._h})},addResizeHandlers:function(){this._resizeObject.contentDocument.defaultView.addEventListener("resize",this.compareAndNotify),this.compareAndNotify()},removeResizeHandlers:function(){this._resizeObject&&this._resizeObject.onload&&(!so&&this._resizeObject.contentDocument&&this._resizeObject.contentDocument.defaultView.removeEventListener("resize",this.compareAndNotify),this.$el.removeChild(this._resizeObject),this._resizeObject.onload=null,this._resizeObject=null)}}};function Eg(t,e,n,r,o,i,s,l,u,f){typeof s!="boolean"&&(u=l,l=s,s=!1);var p=typeof n=="function"?n.options:n;t&&t.render&&(p.render=t.render,p.staticRenderFns=t.staticRenderFns,p._compiled=!0,o&&(p.functional=!0)),r&&(p._scopeId=r);var h;if(i?(h=function(b){b=b||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,!b&&typeof __VUE_SSR_CONTEXT__<"u"&&(b=__VUE_SSR_CONTEXT__),e&&e.call(this,u(b)),b&&b._registeredComponents&&b._registeredComponents.add(i)},p._ssrRegister=h):e&&(h=s?function(b){e.call(this,f(b,this.$root.$options.shadowRoot))}:function(b){e.call(this,l(b))}),h)if(p.functional){var y=p.render;p.render=function(b,$){return h.call($),y(b,$)}}else{var g=p.beforeCreate;p.beforeCreate=g?[].concat(g,h):[h]}return n}var Cg=xg,Rp=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"resize-observer",attrs:{tabindex:"-1"}})},Sg=[];Rp._withStripped=!0;var Ag=void 0,Tg="data-v-8859cc6c",Ng=void 0,Pg=!1,fs=Eg({render:Rp,staticRenderFns:Sg},Ag,Cg,Tg,Pg,Ng,!1,void 0,void 0,void 0);function $g(t){t.component("resize-observer",fs),t.component("ResizeObserver",fs)}var kg={version:"1.0.1",install:$g},Gr=null;typeof window<"u"?Gr=window.Vue:typeof an<"u"&&(Gr=an.Vue),Gr&&Gr.use(kg);var Ip={computed:{themeClass(){return mg(this.theme)}}},Og={name:"VPopperContent",components:{ResizeObserver:fs},mixins:[Ip],props:{popperId:String,theme:String,shown:Boolean,mounted:Boolean,skipTransition:Boolean,autoHide:Boolean,handleResize:Boolean,classes:Object,result:Object},methods:{toPx(t){return t!=null&&!isNaN(t)?"".concat(t,"px"):null}}},Lg=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{ref:"popover",staticClass:"v-popper__popper",class:[t.themeClass,t.classes.popperClass,{"v-popper__popper--shown":t.shown,"v-popper__popper--hidden":!t.shown,"v-popper__popper--show-from":t.classes.showFrom,"v-popper__popper--show-to":t.classes.showTo,"v-popper__popper--hide-from":t.classes.hideFrom,"v-popper__popper--hide-to":t.classes.hideTo,"v-popper__popper--skip-transition":t.skipTransition,"v-popper__popper--arrow-overflow":t.result&&t.result.arrow.overflow,"v-popper__popper--no-positioning":!t.result}],style:t.result?{position:t.result.strategy,transform:"translate3d("+Math.round(t.result.x)+"px,"+Math.round(t.result.y)+"px,0)"}:void 0,attrs:{id:t.popperId,"aria-hidden":t.shown?"false":"true",tabindex:t.autoHide?0:void 0,"data-popper-placement":t.result?t.result.placement:void 0},on:{keyup:function(r){if(!r.type.indexOf("key")&&t._k(r.keyCode,"esc",27,r.key,["Esc","Escape"]))return null;t.autoHide&&t.$emit("hide")}}},[n("div",{staticClass:"v-popper__backdrop",on:{click:function(r){t.autoHide&&t.$emit("hide")}}}),n("div",{staticClass:"v-popper__wrapper",style:t.result?{transformOrigin:t.result.transformOrigin}:void 0},[n("div",{ref:"inner",staticClass:"v-popper__inner"},[t.mounted?[n("div",[t._t("default")],2),t.handleResize?n("ResizeObserver",{on:{notify:function(r){return t.$emit("resize",r)}}}):t._e()]:t._e()],2),n("div",{ref:"arrow",staticClass:"v-popper__arrow-container",style:t.result?{left:t.toPx(t.result.arrow.x),top:t.toPx(t.result.arrow.y)}:void 0},[n("div",{staticClass:"v-popper__arrow-outer"}),n("div",{staticClass:"v-popper__arrow-inner"})])])])},Rg=[];function Gn(t,e,n,r,o,i,s,l){var u=typeof t=="function"?t.options:t;e&&(u.render=e,u.staticRenderFns=n,u._compiled=!0),r&&(u.functional=!0),i&&(u._scopeId="data-v-"+i);var f;if(s?(f=function(y){y=y||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,!y&&typeof __VUE_SSR_CONTEXT__<"u"&&(y=__VUE_SSR_CONTEXT__),o&&o.call(this,y),y&&y._registeredComponents&&y._registeredComponents.add(s)},u._ssrRegister=f):o&&(f=l?function(){o.call(this,(u.functional?this.parent:this).$root.$options.shadowRoot)}:o),f)if(u.functional){u._injectStyles=f;var p=u.render;u.render=function(y,g){return f.call(g),p(y,g)}}else{var h=u.beforeCreate;u.beforeCreate=h?[].concat(h,f):[f]}return{exports:t,options:u}}const ru={};var Ig=Gn(Og,Lg,Rg,!1,Fg,null,null,null);function Fg(t){for(let e in ru)this[e]=ru[e]}var Fp=function(){return Ig.exports}(),ta={methods:{show(...t){return this.$refs.popper.show(...t)},hide(...t){return this.$refs.popper.hide(...t)},dispose(...t){return this.$refs.popper.dispose(...t)},onResize(...t){return this.$refs.popper.onResize(...t)}}},Bg={name:"VPopperWrapper",components:{Popper:Op(),PopperContent:Fp},mixins:[ta,Ip],inheritAttrs:!1,props:{theme:{type:String,default(){return this.$options.vPopperTheme}}},methods:{getTargetNodes(){return Array.from(this.$refs.reference.children).filter(t=>t!==this.$refs.popperContent.$el)}}},Dg=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("Popper",t._g(t._b({ref:"popper",attrs:{theme:t.theme,"target-nodes":t.getTargetNodes,"reference-node":function(){return t.$refs.reference},"popper-node":function(){return t.$refs.popperContent.$el}},scopedSlots:t._u([{key:"default",fn:function(r){var o=r.popperId,i=r.isShown,s=r.shouldMountContent,l=r.skipTransition,u=r.autoHide,f=r.show,p=r.hide,h=r.handleResize,y=r.onResize,g=r.classes,b=r.result;return[n("div",{ref:"reference",staticClass:"v-popper",class:[t.themeClass,{"v-popper--shown":i}]},[t._t("default",null,{shown:i,show:f,hide:p}),n("PopperContent",{ref:"popperContent",attrs:{"popper-id":o,theme:t.theme,shown:i,mounted:s,"skip-transition":l,"auto-hide":u,"handle-resize":h,classes:g,result:b},on:{hide:p,resize:y}},[t._t("popper",null,{shown:i,hide:p})],2)],2)]}}],null,!0)},"Popper",t.$attrs,!1),t.$listeners))},Mg=[];const ou={};var zg=Gn(Bg,Dg,Mg,!1,jg,null,null,null);function jg(t){for(let e in ou)this[e]=ou[e]}var ea=function(){return zg.exports}(),Ug=Qo(De({},ea),{name:"VDropdown",vPopperTheme:"dropdown"});let Hg,Vg;const iu={};var Wg=Gn(Ug,Hg,Vg,!1,Gg,null,null,null);function Gg(t){for(let e in iu)this[e]=iu[e]}var ds=function(){return Wg.exports}(),qg=Qo(De({},ea),{name:"VMenu",vPopperTheme:"menu"});let Xg,Kg;const su={};var Zg=Gn(qg,Xg,Kg,!1,Yg,null,null,null);function Yg(t){for(let e in su)this[e]=su[e]}var au=function(){return Zg.exports}(),Jg=Qo(De({},ea),{name:"VTooltip",vPopperTheme:"tooltip"});let Qg,ty;const lu={};var ey=Gn(Jg,Qg,ty,!1,ny,null,null,null);function ny(t){for(let e in lu)this[e]=lu[e]}var uu=function(){return ey.exports}(),ry={name:"VTooltipDirective",components:{Popper:Op(),PopperContent:Fp},mixins:[ta],inheritAttrs:!1,props:{theme:{type:String,default:"tooltip"},html:{type:Boolean,default(){return Dn(this.theme,"html")}},content:{type:[String,Number,Function],default:null},loadingContent:{type:String,default(){return Dn(this.theme,"loadingContent")}}},data(){return{asyncContent:null}},computed:{isContentAsync(){return typeof this.content=="function"},loading(){return this.isContentAsync&&this.asyncContent==null},finalContent(){return this.isContentAsync?this.loading?this.loadingContent:this.asyncContent:this.content}},watch:{content:{handler(){this.fetchContent(!0)},immediate:!0},async finalContent(t){await this.$nextTick(),this.$refs.popper.onResize()}},created(){this.$_fetchId=0},methods:{fetchContent(t){if(typeof this.content=="function"&&this.$_isShown&&(t||!this.$_loading&&this.asyncContent==null)){this.asyncContent=null,this.$_loading=!0;const e=++this.$_fetchId,n=this.content(this);n.then?n.then(r=>this.onResult(e,r)):this.onResult(e,n)}},onResult(t,e){t===this.$_fetchId&&(this.$_loading=!1,this.asyncContent=e)},onShow(){this.$_isShown=!0,this.fetchContent()},onHide(){this.$_isShown=!1}}},oy=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("Popper",t._g(t._b({ref:"popper",attrs:{theme:t.theme,"popper-node":function(){return t.$refs.popperContent.$el}},on:{"apply-show":t.onShow,"apply-hide":t.onHide},scopedSlots:t._u([{key:"default",fn:function(r){var o=r.popperId,i=r.isShown,s=r.shouldMountContent,l=r.skipTransition,u=r.autoHide,f=r.hide,p=r.handleResize,h=r.onResize,y=r.classes,g=r.result;return[n("PopperContent",{ref:"popperContent",class:{"v-popper--tooltip-loading":t.loading},attrs:{"popper-id":o,theme:t.theme,shown:i,mounted:s,"skip-transition":l,"auto-hide":u,"handle-resize":p,classes:y,result:g},on:{hide:f,resize:h}},[t.html?n("div",{domProps:{innerHTML:t._s(t.finalContent)}}):n("div",{domProps:{textContent:t._s(t.finalContent)}})])]}}])},"Popper",t.$attrs,!1),t.$listeners))},iy=[];const cu={};var sy=Gn(ry,oy,iy,!1,ay,null,null,null);function ay(t){for(let e in cu)this[e]=cu[e]}var ly=function(){return sy.exports}();const Bp="v-popper--has-tooltip";function uy(t,e){let n=t.placement;if(!n&&e)for(const r of kp)e[r]&&(n=r);return n||(n=Dn(t.theme||"tooltip","placement")),n}function Dp(t,e,n){let r;const o=typeof e;return o==="string"?r={content:e}:e&&o==="object"?r=e:r={content:!1},r.placement=uy(r,n),r.targetNodes=()=>[t],r.referenceNode=()=>t,r}function cy(t,e,n){const r=Dp(t,e,n),o=t.$_popper=new st({mixins:[ta],data(){return{options:r}},render(s){const l=this.options,{theme:u,html:f,content:p,loadingContent:h}=l,y=hg(l,["theme","html","content","loadingContent"]);return s(ly,{props:{theme:u,html:f,content:p,loadingContent:h},attrs:y,ref:"popper"})},devtools:{hide:!0}}),i=document.createElement("div");return document.body.appendChild(i),o.$mount(i),t.classList&&t.classList.add(Bp),o}function Mp(t){t.$_popper&&(t.$_popper.$destroy(),delete t.$_popper,delete t.$_popperOldShown),t.classList&&t.classList.remove(Bp)}function pu(t,{value:e,oldValue:n,modifiers:r}){const o=Dp(t,e,r);if(!o.content||Dn(o.theme||"tooltip","disabled"))Mp(t);else{let i;t.$_popper?(i=t.$_popper,i.options=o):i=cy(t,e,r),typeof e.shown<"u"&&e.shown!==t.$_popperOldShown&&(t.$_popperOldShown=e.shown,e.shown?i.show():i.hide())}}var zp={bind:pu,update:pu,unbind(t){Mp(t)}};function fu(t){t.addEventListener("click",jp),t.addEventListener("touchstart",Up,hn?{passive:!0}:!1)}function du(t){t.removeEventListener("click",jp),t.removeEventListener("touchstart",Up),t.removeEventListener("touchend",Hp),t.removeEventListener("touchcancel",Vp)}function jp(t){const e=t.currentTarget;t.closePopover=!e.$_vclosepopover_touch,t.closeAllPopover=e.$_closePopoverModifiers&&!!e.$_closePopoverModifiers.all}function Up(t){if(t.changedTouches.length===1){const e=t.currentTarget;e.$_vclosepopover_touch=!0;const n=t.changedTouches[0];e.$_vclosepopover_touchPoint=n,e.addEventListener("touchend",Hp),e.addEventListener("touchcancel",Vp)}}function Hp(t){const e=t.currentTarget;if(e.$_vclosepopover_touch=!1,t.changedTouches.length===1){const n=t.changedTouches[0],r=e.$_vclosepopover_touchPoint;t.closePopover=Math.abs(n.screenY-r.screenY)<20&&Math.abs(n.screenX-r.screenX)<20,t.closeAllPopover=e.$_closePopoverModifiers&&!!e.$_closePopoverModifiers.all}}function Vp(t){const e=t.currentTarget;e.$_vclosepopover_touch=!1}var py={bind(t,{value:e,modifiers:n}){t.$_closePopoverModifiers=n,(typeof e>"u"||e)&&fu(t)},update(t,{value:e,oldValue:n,modifiers:r}){t.$_closePopoverModifiers=r,e!==n&&(typeof e>"u"||e?fu(t):du(t))},unbind(t){du(t)}};const qr=ve,fy=zp,dy=ds;function hy(t,e={}){t.$_vTooltipInstalled||(t.$_vTooltipInstalled=!0,Pp(ve,e),t.directive("tooltip",zp),t.directive("close-popper",py),t.component("v-tooltip",uu),t.component("VTooltip",uu),t.component("v-dropdown",ds),t.component("VDropdown",ds),t.component("v-menu",au),t.component("VMenu",au))}const my={version:"1.0.0-beta.19",install:hy,options:ve};let Xr=null;typeof window<"u"?Xr=window.Vue:typeof an<"u"&&(Xr=an.Vue),Xr&&Xr.use(my);const vy={name:"NcPopoverTriggerProvider",provide(){return{"NcPopover:trigger:shown":()=>this.shown,"NcPopover:trigger:attrs":()=>this.triggerAttrs}},props:{shown:{type:Boolean,required:!0},popupRole:{type:String,default:void 0}},computed:{triggerAttrs(){return{"aria-haspopup":this.popupRole,"aria-expanded":this.shown.toString()}}},render(){var t,e;return(e=(t=this.$scopedSlots).default)==null?void 0:e.call(t,{attrs:this.triggerAttrs})}},gy=null,yy=null;var wy=Jt(vy,gy,yy,!1,null,null,null,null);const _y=wy.exports,by={name:"NcPopover",components:{Dropdown:dy,NcPopoverTriggerProvider:_y},inheritAttrs:!1,props:{shown:{type:Boolean,default:!1},popupRole:{type:String,default:void 0,validator:t=>["menu","listbox","tree","grid","dialog","true"].includes(t)},popoverBaseClass:{type:String,default:""},focusTrap:{type:Boolean,default:!0},setReturnFocus:{default:void 0,type:[HTMLElement,SVGElement,String,Boolean]}},emits:["after-show","after-hide","update:shown"],data(){return{internalShown:this.shown}},watch:{shown(t){this.internalShown=t},internalShown(t){this.$emit("update:shown",t)}},mounted(){this.checkTriggerA11y()},beforeDestroy(){this.clearFocusTrap(),this.clearEscapeStopPropagation()},methods:{checkTriggerA11y(){var t;(t=window.OC)!=null&&t.debug&&(this.getPopoverTriggerContainerElement().querySelector("[aria-expanded]")||st.util.warn("It looks like you are using a custom button as a or other popover #trigger. If you are not using as a trigger, you need to bind attrs from the #trigger slot props to your custom button. See docs for an example."))},removeFloatingVueAriaDescribedBy(){const t=this.getPopoverTriggerContainerElement().querySelectorAll("[data-popper-shown]");for(const e of t)e.removeAttribute("aria-describedby")},getPopoverContentElement(){var t,e;return(e=(t=this.$refs.popover)==null?void 0:t.$refs.popperContent)==null?void 0:e.$el},getPopoverTriggerContainerElement(){return this.$refs.popover.$refs.reference},async useFocusTrap(){if(await this.$nextTick(),!this.focusTrap)return;const t=this.getPopoverContentElement();t&&(this.$focusTrap=cp(t,{escapeDeactivates:!1,allowOutsideClick:!0,setReturnFocus:this.setReturnFocus,trapStack:$o()}),this.$focusTrap.activate())},clearFocusTrap(t={}){var e;try{(e=this.$focusTrap)==null||e.deactivate(t),this.$focusTrap=null}catch(n){console.warn(n)}},addEscapeStopPropagation(){const t=this.getPopoverContentElement();t==null||t.addEventListener("keydown",this.stopKeydownEscapeHandler)},clearEscapeStopPropagation(){const t=this.getPopoverContentElement();t==null||t.removeEventListener("keydown",this.stopKeydownEscapeHandler)},stopKeydownEscapeHandler(t){t.type==="keydown"&&t.key==="Escape"&&t.stopPropagation()},afterShow(){this.removeFloatingVueAriaDescribedBy(),this.$nextTick(()=>{this.$emit("after-show"),this.useFocusTrap(),this.addEscapeStopPropagation()})},afterHide(){this.$emit("after-hide"),this.clearFocusTrap(),this.clearEscapeStopPropagation()}}};var xy=function(){var t=this,e=t._self._c;return e("Dropdown",t._g(t._b({ref:"popover",attrs:{distance:10,"arrow-padding":10,"no-auto-focus":!0,"popper-class":t.popoverBaseClass,shown:t.internalShown},on:{"update:shown":function(n){t.internalShown=n},"apply-show":t.afterShow,"apply-hide":t.afterHide},scopedSlots:t._u([{key:"popper",fn:function(){return[t._t("default")]},proxy:!0}],null,!0)},"Dropdown",t.$attrs,!1),t.$listeners),[e("NcPopoverTriggerProvider",{attrs:{shown:t.internalShown,"popup-role":t.popupRole},scopedSlots:t._u([{key:"default",fn:function(n){return[t._t("trigger",null,null,n)]}}],null,!0)})],1)},Ey=[],Cy=Jt(by,xy,Ey,!1,null,null,null,null);const Sy=Cy.exports,Ay={name:"DotsHorizontalIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}};var Ty=function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon dots-horizontal-icon",attrs:{"aria-hidden":t.title?null:!0,"aria-label":t.title,role:"img"},on:{click:function(n){return t.$emit("click",n)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M16,12A2,2 0 0,1 18,10A2,2 0 0,1 20,12A2,2 0 0,1 18,14A2,2 0 0,1 16,12M10,12A2,2 0 0,1 12,10A2,2 0 0,1 14,12A2,2 0 0,1 12,14A2,2 0 0,1 10,12M4,12A2,2 0 0,1 6,10A2,2 0 0,1 8,12A2,2 0 0,1 6,14A2,2 0 0,1 4,12Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])},Ny=[],Py=Jt(Ay,Ty,Ny,!1,null,null,null,null);const $y=Py.exports;wp(T1);const hu=".focusable",ky={name:"NcActions",components:{NcButton:qo,NcPopover:Sy},provide(){return{"NcActions:isSemanticMenu":_t(()=>this.actionsMenuSemanticType==="menu")}},props:{open:{type:Boolean,default:!1},manualOpen:{type:Boolean,default:!1},forceMenu:{type:Boolean,default:!1},forceName:{type:Boolean,default:!1},menuName:{type:String,default:null},forceSemanticType:{type:String,default:null,validator(t){return["dialog","menu","expanded","tooltip"].includes(t)}},primary:{type:Boolean,default:!1},type:{type:String,validator(t){return["primary","secondary","tertiary","tertiary-no-background","tertiary-on-primary","error","warning","success"].indexOf(t)!==-1},default:null},defaultIcon:{type:String,default:""},ariaLabel:{type:String,default:Je("Actions")},ariaHidden:{type:Boolean,default:null},placement:{type:String,default:"bottom"},boundariesElement:{type:Element,default:()=>{var t;return(t=document.querySelector("#content-vue"))!=null?t:document.querySelector("body")}},container:{type:[String,Object,Element,Boolean],default:"body"},disabled:{type:Boolean,default:!1},inline:{type:Number,default:0}},emits:["open","update:open","close","focus","blur","click"],setup(t){const e="menu-".concat(_p()),n="trigger-".concat(e),r=xt(),{top:o,bottom:i}=Ol(r),{top:s,bottom:l}=Ol(id(t,"boundariesElement")),{height:u}=Xv(),f=_t(()=>Math.max(Math.min(o.value-84,o.value-s.value),Math.min(u.value-i.value-34,l.value-i.value)));return{triggerButton:r,maxMenuHeight:f,randomId:e,triggerRandomId:n}},data(){return{opened:this.open,focusIndex:0,actionsMenuSemanticType:"unknown",externalFocusTrapStack:[]}},computed:{triggerBtnType(){return this.type||(this.primary?"primary":this.menuName?"secondary":"tertiary")},config(){return{menu:{popupRole:"menu",withArrowNavigation:!0,withTabNavigation:!1,withFocusTrap:!1,triggerA11yAttr:{"aria-controls":this.opened?this.randomId:null},popoverContainerA11yAttrs:{},popoverUlA11yAttrs:{id:this.randomId,role:"menu"}},expanded:{popupRole:void 0,withArrowNavigation:!1,withTabNavigation:!0,withFocusTrap:!1,triggerA11yAttr:{},popoverContainerA11yAttrs:{},popoverUlA11yAttrs:{}},dialog:{popupRole:"dialog",withArrowNavigation:!1,withTabNavigation:!0,withFocusTrap:!0,triggerA11yAttr:{"aria-controls":this.opened?this.randomId:null},popoverContainerA11yAttrs:{id:this.randomId,role:"dialog","aria-labelledby":this.triggerRandomId,"aria-modal":"true"},popoverUlA11yAttrs:{}},tooltip:{popupRole:void 0,withArrowNavigation:!1,withTabNavigation:!1,withFocusTrap:!1,triggerA11yAttr:{},popoverContainerA11yAttrs:{},popoverUlA11yAttrs:{}},unknown:{popupRole:void 0,role:void 0,withArrowNavigation:!0,withTabNavigation:!1,withFocusTrap:!0,triggerA11yAttr:{},popoverContainerA11yAttrs:{},popoverUlA11yAttrs:{}}}[this.actionsMenuSemanticType]}},watch:{open(t){t!==this.opened&&(this.opened=t)},opened(){this.intersectIntoCurrentFocusTrapStack()}},methods:{getActionName(t){var e,n,r,o,i;return(i=(r=(n=(e=t==null?void 0:t.componentOptions)==null?void 0:e.Ctor)==null?void 0:n.extendOptions)==null?void 0:r.name)!=null?i:(o=t==null?void 0:t.componentOptions)==null?void 0:o.tag},intersectIntoCurrentFocusTrapStack(){if(!this.config.withFocusTrap)if(this.opened){this.externalFocusTrapStack=[...$o()];for(const t of this.externalFocusTrapStack)t.pause()}else{for(const t of this.externalFocusTrapStack)t.unpause();this.externalFocusTrapStack=[]}},isValidSingleAction(t){return["NcActionButton","NcActionLink","NcActionRouter"].includes(this.getActionName(t))},isIconUrl(t){try{return!!new URL(t,t.startsWith("/")?window.location.origin:void 0)}catch{return!1}},openMenu(t){this.opened||(this.opened=!0,this.$emit("update:open",!0),this.$emit("open"))},async closeMenu(t=!0){var e,n;this.opened&&(await this.$nextTick(),this.opened=!1,(e=this.$refs.popover)==null||e.clearFocusTrap({returnFocus:t}),this.$emit("update:open",!1),this.$emit("close"),this.focusIndex=0,t&&((n=this.$refs.triggerButton)==null||n.$el.focus()))},onOpen(){this.$nextTick(()=>{this.focusFirstAction(null),this.resizePopover()})},resizePopover(){const t=this.$refs.menu.closest(".v-popper__inner");if(this.$refs.menu.clientHeight>this.maxMenuHeight){let e=0,n=0;for(const r of this.$refs.menuList.children){if(e+r.clientHeight/2>this.maxMenuHeight){t.style.height="".concat(e-n/2,"px");break}n=r.clientHeight,e+=n}}else t.style.height="fit-content"},getCurrentActiveMenuItemElement(){return this.$refs.menu.querySelector("li.active")},getFocusableMenuItemElements(){return this.$refs.menu.querySelectorAll(hu)},onMouseFocusAction(t){if(document.activeElement===t.target)return;const e=t.target.closest("li");if(e&&this.$refs.menu.contains(e)){const n=e.querySelector(hu);if(n){const r=[...this.getFocusableMenuItemElements()].indexOf(n);r>-1&&(this.focusIndex=r,this.focusAction())}}},onKeydown(t){if(t.key==="Tab"){if(this.config.withFocusTrap)return;if(!this.config.withTabNavigation){this.closeMenu(!0);return}t.preventDefault();const e=this.getFocusableMenuItemElements(),n=[...e].indexOf(document.activeElement);if(n===-1)return;const r=t.shiftKey?n-1:n+1;(r<0||r===e.length)&&this.closeMenu(!0),this.focusIndex=r,this.focusAction();return}this.config.withArrowNavigation&&(t.key==="ArrowUp"&&this.focusPreviousAction(t),t.key==="ArrowDown"&&this.focusNextAction(t),t.key==="PageUp"&&this.focusFirstAction(t),t.key==="PageDown"&&this.focusLastAction(t)),t.key==="Escape"&&(this.closeMenu(),t.preventDefault())},onTriggerKeydown(t){t.key==="Escape"&&this.actionsMenuSemanticType==="tooltip"&&this.closeMenu()},removeCurrentActive(){const t=this.$refs.menu.querySelector("li.active");t&&t.classList.remove("active")},focusAction(){const t=this.getFocusableMenuItemElements()[this.focusIndex];if(t){this.removeCurrentActive();const e=t.closest("li.action");t.focus(),e&&e.classList.add("active")}},focusPreviousAction(t){this.opened&&(this.focusIndex===0?this.focusLastAction(t):(this.preventIfEvent(t),this.focusIndex=this.focusIndex-1),this.focusAction())},focusNextAction(t){if(this.opened){const e=this.getFocusableMenuItemElements().length-1;this.focusIndex===e?this.focusFirstAction(t):(this.preventIfEvent(t),this.focusIndex=this.focusIndex+1),this.focusAction()}},focusFirstAction(t){if(this.opened){this.preventIfEvent(t);const e=[...this.getFocusableMenuItemElements()].findIndex(n=>n.getAttribute("aria-checked")==="true"&&n.getAttribute("role")==="menuitemradio");this.focusIndex=e>-1?e:0,this.focusAction()}},focusLastAction(t){this.opened&&(this.preventIfEvent(t),this.focusIndex=this.getFocusableMenuItemElements().length-1,this.focusAction())},preventIfEvent(t){t&&(t.preventDefault(),t.stopPropagation())},onFocus(t){this.$emit("focus",t)},onBlur(t){this.$emit("blur",t),this.actionsMenuSemanticType==="tooltip"&&this.$refs.menu&&this.getFocusableMenuItemElements().length===0&&this.closeMenu(!1)},onClick(t){this.$emit("click",t)}},render(t){const e=(this.$slots.default||[]).filter(l=>this.getActionName(l));if(e.length===0)return;let n=e.filter(this.isValidSingleAction);this.forceMenu&&n.length>0&&this.inline>0&&(st.util.warn("Specifying forceMenu will ignore any inline actions rendering."),n=[]);const r=n.slice(0,this.inline),o=e.filter(l=>!r.includes(l));if(this.forceSemanticType)this.actionsMenuSemanticType=this.forceSemanticType;else{const l=["NcActionInput","NcActionTextEditable"],u=["NcActionButton","NcActionButtonGroup","NcActionCheckbox","NcActionRadio"],f=["NcActionLink","NcActionRouter"],p=o.some(g=>l.includes(this.getActionName(g))),h=o.some(g=>u.includes(this.getActionName(g))),y=o.some(g=>f.includes(this.getActionName(g)));p?this.actionsMenuSemanticType="dialog":h?this.actionsMenuSemanticType="menu":y?this.actionsMenuSemanticType="expanded":e.filter(g=>this.getActionName(g).startsWith("NcAction")).length===e.length?this.actionsMenuSemanticType="tooltip":this.actionsMenuSemanticType="unknown"}const i=l=>{var u,f,p,h,y,g,b,$,P,B,R,j,q,et,ft,Q,U,T,C,I,w,_,S,O,F,D,V,W,M,X;const G=(f=(u=l==null?void 0:l.componentOptions)==null?void 0:u.propsData)==null?void 0:f.icon,ot=(g=(y=(h=(p=l==null?void 0:l.data)==null?void 0:p.scopedSlots)==null?void 0:h.icon())==null?void 0:y[0])!=null?g:this.isIconUrl(G)?t("img",{class:"action-item__menutoggle__icon",attrs:{src:G,alt:""}}):t("span",{class:["icon",G]}),H=((b=l==null?void 0:l.data)==null?void 0:b.attrs)||{},it=(P=($=l==null?void 0:l.componentOptions)==null?void 0:$.listeners)==null?void 0:P.click,St=(et=(q=(j=(R=(B=l==null?void 0:l.componentOptions)==null?void 0:B.children)==null?void 0:R[0])==null?void 0:j.text)==null?void 0:q.trim)==null?void 0:et.call(q),Tt=((Q=(ft=l==null?void 0:l.componentOptions)==null?void 0:ft.propsData)==null?void 0:Q.ariaLabel)||St,Wt=this.forceName?St:"";let jt=(T=(U=l==null?void 0:l.componentOptions)==null?void 0:U.propsData)==null?void 0:T.title;this.forceName||jt||(jt=St);const te={...(I=(C=l==null?void 0:l.componentOptions)==null?void 0:C.propsData)!=null?I:{}},Lt=["submit","reset"].includes(te.type)?te.modelValue:"button";return delete te.modelValue,delete te.type,t("NcButton",{class:["action-item action-item--single",(w=l==null?void 0:l.data)==null?void 0:w.staticClass,(_=l==null?void 0:l.data)==null?void 0:_.class],attrs:{...H,"aria-label":Tt,title:jt},ref:(S=l==null?void 0:l.data)==null?void 0:S.ref,props:{type:this.type||(Wt?"secondary":"tertiary"),disabled:this.disabled||((F=(O=l==null?void 0:l.componentOptions)==null?void 0:O.propsData)==null?void 0:F.disabled),pressed:(V=(D=l==null?void 0:l.componentOptions)==null?void 0:D.propsData)==null?void 0:V.modelValue,nativeType:Lt,...te},on:{focus:this.onFocus,blur:this.onBlur,"update:pressed":(X=(M=(W=l==null?void 0:l.componentOptions)==null?void 0:W.listeners)==null?void 0:M["update:modelValue"])!=null?X:()=>{},...!!it&&{click:ke=>{it&&it(ke)}}}},[t("template",{slot:"icon"},[ot]),Wt])},s=l=>{var u,f;const p=((u=this.$slots.icon)==null?void 0:u[0])||(this.defaultIcon?t("span",{class:["icon",this.defaultIcon]}):t($y,{props:{size:20}}));return t("NcPopover",{ref:"popover",props:{delay:0,handleResize:!0,shown:this.opened,placement:this.placement,boundary:this.boundariesElement,container:this.container,popoverBaseClass:"action-item__popper",popupRole:this.config.popupRole,setReturnFocus:this.config.withFocusTrap?(f=this.$refs.triggerButton)==null?void 0:f.$el:null,focusTrap:this.config.withFocusTrap},attrs:{delay:0,handleResize:!0,shown:this.opened,placement:this.placement,boundary:this.boundariesElement,container:this.container,...this.manualOpen&&{triggers:[]}},on:{show:this.openMenu,"apply-show":this.onOpen,hide:this.closeMenu}},[t("NcButton",{class:"action-item__menutoggle",props:{type:this.triggerBtnType,disabled:this.disabled},slot:"trigger",ref:"triggerButton",attrs:{id:this.triggerRandomId,"aria-label":this.menuName?null:this.ariaLabel,...this.config.triggerA11yAttr},on:{focus:this.onFocus,blur:this.onBlur,click:this.onClick,keydown:this.onTriggerKeydown}},[t("template",{slot:"icon"},[p]),this.menuName]),t("div",{class:{open:this.opened},attrs:{tabindex:"-1",...this.config.popoverContainerA11yAttrs},on:{keydown:this.onKeydown,mousemove:this.onMouseFocusAction},ref:"menu"},[t("ul",{attrs:{tabindex:"-1",...this.config.popoverUlA11yAttrs},ref:"menuList"},[l])])])};return e.length===1&&n.length===1&&!this.forceMenu?i(e[0]):(this.$nextTick(()=>{this.opened&&this.$refs.menu&&(this.resizePopover(),(this.$refs.menu.querySelector("li.active")||[]).length===0&&this.focusFirstAction())}),r.length>0&&this.inline>0?t("div",{class:["action-items","action-item--".concat(this.triggerBtnType)]},[...r.map(i),o.length>0?t("div",{class:["action-item",{"action-item--open":this.opened}]},[s(o)]):null]):t("div",{class:["action-item action-item--default-popover","action-item--".concat(this.triggerBtnType),{"action-item--open":this.opened}]},[s(e)]))}},Oy=null,Ly=null;var Ry=Jt(ky,Oy,Ly,!1,null,"3713841c",null,null);const Iy=Ry.exports;qr.themes.tooltip.html=!1,qr.themes.tooltip.delay={show:500,hide:200},qr.themes.tooltip.distance=10,qr.themes.tooltip["arrow-padding"]=3;const Fy={name:"ChevronRightIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}};var By=function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon chevron-right-icon",attrs:{"aria-hidden":t.title?null:!0,"aria-label":t.title,role:"img"},on:{click:function(n){return t.$emit("click",n)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])},Dy=[],My=Jt(Fy,By,Dy,!1,null,null,null,null);const zy=My.exports,jy={name:"CloseIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}};var Uy=function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon close-icon",attrs:{"aria-hidden":t.title?null:!0,"aria-label":t.title,role:"img"},on:{click:function(n){return t.$emit("click",n)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"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"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])},Hy=[],Vy=Jt(jy,Uy,Hy,!1,null,null,null,null);const Wy=Vy.exports;wp(N1,P1);function Gy(t,e){let n,r,o=e,i;this.start=function(){i=!0,r=new Date,n=setTimeout(t,o)},this.pause=function(){i=!1,clearTimeout(n),o-=new Date-r},this.clear=function(){i=!1,clearTimeout(n),o=0},this.getTimeLeft=function(){return i&&(this.pause(),this.start()),o},this.getStateRunning=function(){return i},this.start()}const qy={name:"ChevronLeftIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}};var Xy=function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon chevron-left-icon",attrs:{"aria-hidden":t.title?null:!0,"aria-label":t.title,role:"img"},on:{click:function(n){return t.$emit("click",n)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M15.41,16.58L10.83,12L15.41,7.41L14,6L8,12L14,18L15.41,16.58Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])},Ky=[],Zy=Jt(qy,Xy,Ky,!1,null,null,null,null);const Yy=Zy.exports,Jy={name:"PauseIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}};var Qy=function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon pause-icon",attrs:{"aria-hidden":t.title?null:!0,"aria-label":t.title,role:"img"},on:{click:function(n){return t.$emit("click",n)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M14,19H18V5H14M6,19H10V5H6V19Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])},tw=[],ew=Jt(Jy,Qy,tw,!1,null,null,null,null);const nw=ew.exports,rw={name:"PlayIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}};var ow=function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon play-icon",attrs:{"aria-hidden":t.title?null:!0,"aria-label":t.title,role:"img"},on:{click:function(n){return t.$emit("click",n)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8,5.14V19.14L19,12.14L8,5.14Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])},iw=[],sw=Jt(rw,ow,iw,!1,null,null,null,null);const aw=sw.exports,lw={name:"NcModal",components:{NcActions:Iy,ChevronLeft:Yy,ChevronRight:zy,Close:Wy,Pause:nw,Play:aw,NcButton:qo},directives:{tooltip:fy},props:{name:{type:String,default:""},hasPrevious:{type:Boolean,default:!1},hasNext:{type:Boolean,default:!1},outTransition:{type:Boolean,default:!1},enableSlideshow:{type:Boolean,default:!1},slideshowDelay:{type:Number,default:5e3},slideshowPaused:{type:Boolean,default:!1},enableSwipe:{type:Boolean,default:!0},spreadNavigation:{type:Boolean,default:!1},size:{type:String,default:"normal",validator:t=>["small","normal","large","full"].includes(t)},canClose:{type:Boolean,default:!0},closeOnClickOutside:{type:Boolean,default:!0},dark:{type:Boolean,default:!1},container:{type:[String,null],default:"body"},closeButtonContained:{type:Boolean,default:!0},additionalTrapElements:{type:Array,default:()=>[]},inlineActions:{type:Number,default:0},show:{type:Boolean,default:void 0},labelId:{type:String,default:""},setReturnFocus:{default:void 0,type:[HTMLElement,SVGElement,String,Boolean]}},emits:["previous","next","close","update:show"],data(){return{mc:null,playing:!1,slideshowTimeout:null,iconSize:24,focusTrap:null,externalFocusTrapStack:[],randId:_p(),internalShow:!0}},computed:{modalLabelId(){return this.labelId||"modal-name-".concat(this.randId)},showModal(){return this.show===void 0?this.internalShow:this.show},modalTransitionName(){return"modal-".concat(this.outTransition?"out":"in")},playPauseName(){return this.playing?Je("Pause slideshow"):Je("Start slideshow")},cssVariables(){return{"--slideshow-duration":this.slideshowDelay+"ms","--icon-size":this.iconSize+"px"}},closeButtonAriaLabel(){return Je("Close")},prevButtonAriaLabel(){return Je("Previous")},nextButtonAriaLabel(){return Je("Next")}},watch:{slideshowPaused(t){this.slideshowTimeout&&(t?this.slideshowTimeout.pause():this.slideshowTimeout.start())},additionalTrapElements(t){if(this.focusTrap){const e=this.$refs.mask;this.focusTrap.updateContainerElements([e,...t])}}},beforeMount(){window.addEventListener("keydown",this.handleKeydown)},beforeDestroy(){window.removeEventListener("keydown",this.handleKeydown),this.mc.stop()},mounted(){!this.name&&!this.labelId&&st.util.warn("[NcModal] You need either set the name or set a `labelId` for accessibility."),this.useFocusTrap(),this.mc=Gv(this.$refs.mask,{onSwipeEnd:this.handleSwipe}),this.container&&(this.container==="body"?document.body.insertBefore(this.$el,document.body.lastChild):document.querySelector(this.container).appendChild(this.$el))},destroyed(){this.clearFocusTrap(),this.$el.remove()},methods:{t:Je,previous(t){this.hasPrevious&&(t&&this.resetSlideshow(),this.$emit("previous",t))},next(t){this.hasNext&&(t&&this.resetSlideshow(),this.$emit("next",t))},close(t){this.canClose&&(this.internalShow=!1,this.$emit("update:show",!1),setTimeout(()=>{this.$emit("close",t)},300))},handleClickModalWrapper(t){this.closeOnClickOutside&&this.close(t)},handleKeydown(t){if(t.key==="Escape"){const n=$o();return n.length>0&&n[n.length-1]!==this.focusTrap?void 0:this.close(t)}const e={ArrowLeft:this.previous,ArrowRight:this.next};if(e[t.key])return document.activeElement&&!this.$el.contains(document.activeElement)?void 0:e[t.key](t)},handleSwipe(t,e){this.enableSwipe&&(e==="left"?this.next(t):e==="right"&&this.previous(t))},togglePlayPause(){this.playing=!this.playing,this.playing?this.handleSlideshow():this.clearSlideshowTimeout()},resetSlideshow(){this.playing=!this.playing,this.clearSlideshowTimeout(),this.$nextTick(function(){this.togglePlayPause()})},handleSlideshow(){this.playing=!0,this.hasNext?this.slideshowTimeout=new Gy(()=>{this.next(),this.handleSlideshow()},this.slideshowDelay):(this.playing=!1,this.clearSlideshowTimeout())},clearSlideshowTimeout(){this.slideshowTimeout&&this.slideshowTimeout.clear()},async useFocusTrap(){if(!this.showModal||this.focusTrap)return;const t=this.$refs.mask;await this.$nextTick();const e={allowOutsideClick:!0,fallbackFocus:t,trapStack:$o(),escapeDeactivates:!1,setReturnFocus:this.setReturnFocus};this.externalFocusTrapStack=[...e.trapStack];for(const n of this.externalFocusTrapStack)n.deactivate();this.focusTrap=cp([t,...this.additionalTrapElements],e),this.focusTrap.activate()},clearFocusTrap(){var t;if(this.focusTrap){(t=this.focusTrap)==null||t.deactivate(),this.focusTrap=null;for(const e of this.externalFocusTrapStack)e.activate();this.externalFocusTrapStack=[]}}}};var uw=function(){var t=this,e=t._self._c;return e("transition",{attrs:{name:"fade",appear:""},on:{"after-enter":t.useFocusTrap,"before-leave":t.clearFocusTrap}},[e("div",{directives:[{name:"show",rawName:"v-show",value:t.showModal,expression:"showModal"}],ref:"mask",staticClass:"modal-mask",class:{"modal-mask--dark":t.dark||!t.closeButtonContained||t.hasPrevious||t.hasNext},style:t.cssVariables,attrs:{role:"dialog","aria-modal":"true","aria-labelledby":t.modalLabelId,"aria-describedby":"modal-description-"+t.randId,tabindex:"-1"}},[e("transition",{attrs:{name:"fade-visibility",appear:""}},[e("div",{staticClass:"modal-header",attrs:{"data-theme-dark":""}},[t.name.trim()!==""?e("h2",{staticClass:"modal-header__name",attrs:{id:"modal-name-"+t.randId}},[t._v(" "+t._s(t.name)+" ")]):t._e(),e("div",{staticClass:"icons-menu"},[t.hasNext&&t.enableSlideshow?e("button",{directives:[{name:"tooltip",rawName:"v-tooltip.auto",value:t.playPauseName,expression:"playPauseName",modifiers:{auto:!0}}],staticClass:"play-pause-icons",class:{"play-pause-icons--paused":t.slideshowPaused},attrs:{type:"button"},on:{click:t.togglePlayPause}},[t.playing?e("Pause",{staticClass:"play-pause-icons__pause",attrs:{size:t.iconSize}}):e("Play",{staticClass:"play-pause-icons__play",attrs:{size:t.iconSize}}),e("span",{staticClass:"hidden-visually"},[t._v(" "+t._s(t.playPauseName)+" ")]),t.playing?e("svg",{staticClass:"progress-ring",attrs:{height:"50",width:"50"}},[e("circle",{staticClass:"progress-ring__circle",attrs:{stroke:"white","stroke-width":"2",fill:"transparent",r:"15",cx:"25",cy:"25"}})]):t._e()],1):t._e(),e("NcActions",{staticClass:"header-actions",attrs:{inline:t.inlineActions}},[t._t("actions")],2),t.canClose&&!t.closeButtonContained?e("NcButton",{staticClass:"header-close",attrs:{"aria-label":t.closeButtonAriaLabel,type:"tertiary"},on:{click:t.close},scopedSlots:t._u([{key:"icon",fn:function(){return[e("Close",{attrs:{size:t.iconSize}})]},proxy:!0}],null,!1,1841713362)}):t._e()],1)])]),e("transition",{attrs:{name:t.modalTransitionName,appear:""}},[e("div",{directives:[{name:"show",rawName:"v-show",value:t.showModal,expression:"showModal"}],staticClass:"modal-wrapper",class:["modal-wrapper--".concat(t.size),{"modal-wrapper--spread-navigation":t.spreadNavigation}],on:{mousedown:function(n){return n.target!==n.currentTarget?null:t.handleClickModalWrapper.apply(null,arguments)}}},[e("transition",{attrs:{name:"fade-visibility",appear:""}},[e("NcButton",{directives:[{name:"show",rawName:"v-show",value:t.hasPrevious,expression:"hasPrevious"}],staticClass:"prev",attrs:{type:"tertiary-no-background","aria-label":t.prevButtonAriaLabel},on:{click:t.previous},scopedSlots:t._u([{key:"icon",fn:function(){return[e("ChevronLeft",{attrs:{size:40}})]},proxy:!0}])})],1),e("div",{staticClass:"modal-container",attrs:{id:"modal-description-"+t.randId}},[t.canClose&&t.closeButtonContained?e("NcButton",{staticClass:"modal-container__close",attrs:{type:"tertiary","aria-label":t.closeButtonAriaLabel},on:{click:t.close},scopedSlots:t._u([{key:"icon",fn:function(){return[e("Close",{attrs:{size:20}})]},proxy:!0}],null,!1,2121748766)}):t._e(),e("div",{staticClass:"modal-container__content"},[t._t("default")],2)],1),e("transition",{attrs:{name:"fade-visibility",appear:""}},[e("NcButton",{directives:[{name:"show",rawName:"v-show",value:t.hasNext,expression:"hasNext"}],staticClass:"next",attrs:{type:"tertiary-no-background","aria-label":t.nextButtonAriaLabel},on:{click:t.next},scopedSlots:t._u([{key:"icon",fn:function(){return[e("ChevronRight",{attrs:{size:40}})]},proxy:!0}])})],1)],1)])],1)])},cw=[],pw=Jt(lw,uw,cw,!1,null,"0d4052a3",null,null);const Wp=pw.exports;Fv(Wp);const na=1024,Gp=na/2,Fo=t=>document.documentElement.clientWidth{qp.value=Fo(na),Xp.value=Fo(Gp)},{passive:!0});function Kp(){return Ns(Xp)}Ns(qp);function Zp(t,e){return function(){return t.apply(e,arguments)}}const{toString:fw}=Object.prototype,{getPrototypeOf:ra}=Object,ti=(t=>e=>{const n=fw.call(e);return t[n]||(t[n]=n.slice(8,-1).toLowerCase())})(Object.create(null)),ge=t=>(t=t.toLowerCase(),e=>ti(e)===t),ei=t=>e=>typeof e===t,{isArray:qn}=Array,br=ei("undefined");function dw(t){return t!==null&&!br(t)&&t.constructor!==null&&!br(t.constructor)&&Kt(t.constructor.isBuffer)&&t.constructor.isBuffer(t)}const Yp=ge("ArrayBuffer");function hw(t){let e;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?e=ArrayBuffer.isView(t):e=t&&t.buffer&&Yp(t.buffer),e}const mw=ei("string"),Kt=ei("function"),Jp=ei("number"),ni=t=>t!==null&&typeof t=="object",vw=t=>t===!0||t===!1,ao=t=>{if(ti(t)!=="object")return!1;const e=ra(t);return(e===null||e===Object.prototype||Object.getPrototypeOf(e)===null)&&!(Symbol.toStringTag in t)&&!(Symbol.iterator in t)},gw=ge("Date"),yw=ge("File"),ww=ge("Blob"),_w=ge("FileList"),bw=t=>ni(t)&&Kt(t.pipe),xw=t=>{let e;return t&&(typeof FormData=="function"&&t instanceof FormData||Kt(t.append)&&((e=ti(t))==="formdata"||e==="object"&&Kt(t.toString)&&t.toString()==="[object FormData]"))},Ew=ge("URLSearchParams"),Cw=t=>t.trim?t.trim():t.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function Nr(t,e,{allOwnKeys:n=!1}={}){if(t===null||typeof t>"u")return;let r,o;if(typeof t!="object"&&(t=[t]),qn(t))for(r=0,o=t.length;r0;)if(o=n[r],e===o.toLowerCase())return o;return null}const tf=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:an,ef=t=>!br(t)&&t!==tf;function hs(){const{caseless:t}=ef(this)&&this||{},e={},n=(r,o)=>{const i=t&&Qp(e,o)||o;ao(e[i])&&ao(r)?e[i]=hs(e[i],r):ao(r)?e[i]=hs({},r):qn(r)?e[i]=r.slice():e[i]=r};for(let r=0,o=arguments.length;r(Nr(e,(o,i)=>{n&&Kt(o)?t[i]=Zp(o,n):t[i]=o},{allOwnKeys:r}),t),Aw=t=>(t.charCodeAt(0)===65279&&(t=t.slice(1)),t),Tw=(t,e,n,r)=>{t.prototype=Object.create(e.prototype,r),t.prototype.constructor=t,Object.defineProperty(t,"super",{value:e.prototype}),n&&Object.assign(t.prototype,n)},Nw=(t,e,n,r)=>{let o,i,s;const l={};if(e=e||{},t==null)return e;do{for(o=Object.getOwnPropertyNames(t),i=o.length;i-- >0;)s=o[i],(!r||r(s,t,e))&&!l[s]&&(e[s]=t[s],l[s]=!0);t=n!==!1&&ra(t)}while(t&&(!n||n(t,e))&&t!==Object.prototype);return e},Pw=(t,e,n)=>{t=String(t),(n===void 0||n>t.length)&&(n=t.length),n-=e.length;const r=t.indexOf(e,n);return r!==-1&&r===n},$w=t=>{if(!t)return null;if(qn(t))return t;let e=t.length;if(!Jp(e))return null;const n=new Array(e);for(;e-- >0;)n[e]=t[e];return n},kw=(t=>e=>t&&e instanceof t)(typeof Uint8Array<"u"&&ra(Uint8Array)),Ow=(t,e)=>{const n=(t&&t[Symbol.iterator]).call(t);let r;for(;(r=n.next())&&!r.done;){const o=r.value;e.call(t,o[0],o[1])}},Lw=(t,e)=>{let n;const r=[];for(;(n=t.exec(e))!==null;)r.push(n);return r},Rw=ge("HTMLFormElement"),Iw=t=>t.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(e,n,r){return n.toUpperCase()+r}),mu=(({hasOwnProperty:t})=>(e,n)=>t.call(e,n))(Object.prototype),Fw=ge("RegExp"),nf=(t,e)=>{const n=Object.getOwnPropertyDescriptors(t),r={};Nr(n,(o,i)=>{let s;(s=e(o,i,t))!==!1&&(r[i]=s||o)}),Object.defineProperties(t,r)},Bw=t=>{nf(t,(e,n)=>{if(Kt(t)&&["arguments","caller","callee"].indexOf(n)!==-1)return!1;const r=t[n];if(Kt(r)){if(e.enumerable=!1,"writable"in e){e.writable=!1;return}e.set||(e.set=()=>{throw Error("Can not rewrite read-only method '"+n+"'")})}})},Dw=(t,e)=>{const n={},r=o=>{o.forEach(i=>{n[i]=!0})};return qn(t)?r(t):r(String(t).split(e)),n},Mw=()=>{},zw=(t,e)=>(t=+t,Number.isFinite(t)?t:e),Ai="abcdefghijklmnopqrstuvwxyz",vu="0123456789",rf={DIGIT:vu,ALPHA:Ai,ALPHA_DIGIT:Ai+Ai.toUpperCase()+vu},jw=(t=16,e=rf.ALPHA_DIGIT)=>{let n="";const{length:r}=e;for(;t--;)n+=e[Math.random()*r|0];return n};function Uw(t){return!!(t&&Kt(t.append)&&t[Symbol.toStringTag]==="FormData"&&t[Symbol.iterator])}const Hw=t=>{const e=new Array(10),n=(r,o)=>{if(ni(r)){if(e.indexOf(r)>=0)return;if(!("toJSON"in r)){e[o]=r;const i=qn(r)?[]:{};return Nr(r,(s,l)=>{const u=n(s,o+1);!br(u)&&(i[l]=u)}),e[o]=void 0,i}}return r};return n(t,0)},Vw=ge("AsyncFunction"),Ww=t=>t&&(ni(t)||Kt(t))&&Kt(t.then)&&Kt(t.catch),N={isArray:qn,isArrayBuffer:Yp,isBuffer:dw,isFormData:xw,isArrayBufferView:hw,isString:mw,isNumber:Jp,isBoolean:vw,isObject:ni,isPlainObject:ao,isUndefined:br,isDate:gw,isFile:yw,isBlob:ww,isRegExp:Fw,isFunction:Kt,isStream:bw,isURLSearchParams:Ew,isTypedArray:kw,isFileList:_w,forEach:Nr,merge:hs,extend:Sw,trim:Cw,stripBOM:Aw,inherits:Tw,toFlatObject:Nw,kindOf:ti,kindOfTest:ge,endsWith:Pw,toArray:$w,forEachEntry:Ow,matchAll:Lw,isHTMLForm:Rw,hasOwnProperty:mu,hasOwnProp:mu,reduceDescriptors:nf,freezeMethods:Bw,toObjectSet:Dw,toCamelCase:Iw,noop:Mw,toFiniteNumber:zw,findKey:Qp,global:tf,isContextDefined:ef,ALPHABET:rf,generateString:jw,isSpecCompliantForm:Uw,toJSONObject:Hw,isAsyncFn:Vw,isThenable:Ww};var of={},lo={};lo.byteLength=Xw,lo.toByteArray=Zw,lo.fromByteArray=Qw;for(var he=[],qt=[],Gw=typeof Uint8Array<"u"?Uint8Array:Array,Ti="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",xn=0,qw=Ti.length;xn0)throw new Error("Invalid string. Length must be a multiple of 4");var n=t.indexOf("=");n===-1&&(n=e);var r=n===e?0:4-n%4;return[n,r]}function Xw(t){var e=sf(t),n=e[0],r=e[1];return(n+r)*3/4-r}function Kw(t,e,n){return(e+n)*3/4-n}function Zw(t){var e,n=sf(t),r=n[0],o=n[1],i=new Gw(Kw(t,r,o)),s=0,l=o>0?r-4:r,u;for(u=0;u>16&255,i[s++]=e>>8&255,i[s++]=e&255;return o===2&&(e=qt[t.charCodeAt(u)]<<2|qt[t.charCodeAt(u+1)]>>4,i[s++]=e&255),o===1&&(e=qt[t.charCodeAt(u)]<<10|qt[t.charCodeAt(u+1)]<<4|qt[t.charCodeAt(u+2)]>>2,i[s++]=e>>8&255,i[s++]=e&255),i}function Yw(t){return he[t>>18&63]+he[t>>12&63]+he[t>>6&63]+he[t&63]}function Jw(t,e,n){for(var r,o=[],i=e;il?l:s+i));return r===1?(e=t[n-1],o.push(he[e>>2]+he[e<<4&63]+"==")):r===2&&(e=(t[n-2]<<8)+t[n-1],o.push(he[e>>10]+he[e>>4&63]+he[e<<2&63]+"=")),o.join("")}var ms={};ms.read=function(t,e,n,r,o){var i,s,l=o*8-r-1,u=(1<>1,p=-7,h=n?o-1:0,y=n?-1:1,g=t[e+h];for(h+=y,i=g&(1<<-p)-1,g>>=-p,p+=l;p>0;i=i*256+t[e+h],h+=y,p-=8);for(s=i&(1<<-p)-1,i>>=-p,p+=r;p>0;s=s*256+t[e+h],h+=y,p-=8);if(i===0)i=1-f;else{if(i===u)return s?NaN:(g?-1:1)*(1/0);s=s+Math.pow(2,r),i=i-f}return(g?-1:1)*s*Math.pow(2,i-r)},ms.write=function(t,e,n,r,o,i){var s,l,u,f=i*8-o-1,p=(1<>1,y=o===23?Math.pow(2,-24)-Math.pow(2,-77):0,g=r?0:i-1,b=r?1:-1,$=e<0||e===0&&1/e<0?1:0;for(e=Math.abs(e),isNaN(e)||e===1/0?(l=isNaN(e)?1:0,s=p):(s=Math.floor(Math.log(e)/Math.LN2),e*(u=Math.pow(2,-s))<1&&(s--,u*=2),s+h>=1?e+=y/u:e+=y*Math.pow(2,1-h),e*u>=2&&(s++,u/=2),s+h>=p?(l=0,s=p):s+h>=1?(l=(e*u-1)*Math.pow(2,o),s=s+h):(l=e*Math.pow(2,h-1)*Math.pow(2,o),s=0));o>=8;t[n+g]=l&255,g+=b,l/=256,o-=8);for(s=s<0;t[n+g]=s&255,g+=b,s/=256,f-=8);t[n+g-b]|=$*128};(function(t){const e=lo,n=ms,r=typeof Symbol=="function"&&typeof Symbol.for=="function"?Symbol.for("nodejs.util.inspect.custom"):null;t.Buffer=p,t.SlowBuffer=et,t.INSPECT_MAX_BYTES=50;const o=2147483647;t.kMaxLength=o;const{Uint8Array:i,ArrayBuffer:s,SharedArrayBuffer:l}=globalThis;p.TYPED_ARRAY_SUPPORT=u(),!p.TYPED_ARRAY_SUPPORT&&typeof console<"u"&&typeof console.error=="function"&&console.error("This browser lacks typed array (Uint8Array) support which is required by `buffer` v5.x. Use `buffer` v4.x if you require old browser support.");function u(){try{const a=new i(1),c={foo:function(){return 42}};return Object.setPrototypeOf(c,i.prototype),Object.setPrototypeOf(a,c),a.foo()===42}catch{return!1}}Object.defineProperty(p.prototype,"parent",{enumerable:!0,get:function(){if(p.isBuffer(this))return this.buffer}}),Object.defineProperty(p.prototype,"offset",{enumerable:!0,get:function(){if(p.isBuffer(this))return this.byteOffset}});function f(a){if(a>o)throw new RangeError('The value "'+a+'" is invalid for option "size"');const c=new i(a);return Object.setPrototypeOf(c,p.prototype),c}function p(a,c,d){if(typeof a=="number"){if(typeof c=="string")throw new TypeError('The "string" argument must be of type string. Received type number');return b(a)}return h(a,c,d)}p.poolSize=8192;function h(a,c,d){if(typeof a=="string")return $(a,c);if(s.isView(a))return B(a);if(a==null)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof a);if(At(a,s)||a&&At(a.buffer,s)||typeof l<"u"&&(At(a,l)||a&&At(a.buffer,l)))return R(a,c,d);if(typeof a=="number")throw new TypeError('The "value" argument must not be of type number. Received type number');const v=a.valueOf&&a.valueOf();if(v!=null&&v!==a)return p.from(v,c,d);const x=j(a);if(x)return x;if(typeof Symbol<"u"&&Symbol.toPrimitive!=null&&typeof a[Symbol.toPrimitive]=="function")return p.from(a[Symbol.toPrimitive]("string"),c,d);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof a)}p.from=function(a,c,d){return h(a,c,d)},Object.setPrototypeOf(p.prototype,i.prototype),Object.setPrototypeOf(p,i);function y(a){if(typeof a!="number")throw new TypeError('"size" argument must be of type number');if(a<0)throw new RangeError('The value "'+a+'" is invalid for option "size"')}function g(a,c,d){return y(a),a<=0?f(a):c!==void 0?typeof d=="string"?f(a).fill(c,d):f(a).fill(c):f(a)}p.alloc=function(a,c,d){return g(a,c,d)};function b(a){return y(a),f(a<0?0:q(a)|0)}p.allocUnsafe=function(a){return b(a)},p.allocUnsafeSlow=function(a){return b(a)};function $(a,c){if((typeof c!="string"||c==="")&&(c="utf8"),!p.isEncoding(c))throw new TypeError("Unknown encoding: "+c);const d=ft(a,c)|0;let v=f(d);const x=v.write(a,c);return x!==d&&(v=v.slice(0,x)),v}function P(a){const c=a.length<0?0:q(a.length)|0,d=f(c);for(let v=0;v=o)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+o.toString(16)+" bytes");return a|0}function et(a){return+a!=a&&(a=0),p.alloc(+a)}p.isBuffer=function(a){return a!=null&&a._isBuffer===!0&&a!==p.prototype},p.compare=function(a,c){if(At(a,i)&&(a=p.from(a,a.offset,a.byteLength)),At(c,i)&&(c=p.from(c,c.offset,c.byteLength)),!p.isBuffer(a)||!p.isBuffer(c))throw new TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array');if(a===c)return 0;let d=a.length,v=c.length;for(let x=0,A=Math.min(d,v);xv.length?(p.isBuffer(A)||(A=p.from(A)),A.copy(v,x)):i.prototype.set.call(v,A,x);else if(p.isBuffer(A))A.copy(v,x);else throw new TypeError('"list" argument must be an Array of Buffers');x+=A.length}return v};function ft(a,c){if(p.isBuffer(a))return a.length;if(s.isView(a)||At(a,s))return a.byteLength;if(typeof a!="string")throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof a);const d=a.length,v=arguments.length>2&&arguments[2]===!0;if(!v&&d===0)return 0;let x=!1;for(;;)switch(c){case"ascii":case"latin1":case"binary":return d;case"utf8":case"utf-8":return yn(a).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return d*2;case"hex":return d>>>1;case"base64":return Oe(a).length;default:if(x)return v?-1:yn(a).length;c=(""+c).toLowerCase(),x=!0}}p.byteLength=ft;function Q(a,c,d){let v=!1;if((c===void 0||c<0)&&(c=0),c>this.length||((d===void 0||d>this.length)&&(d=this.length),d<=0)||(d>>>=0,c>>>=0,d<=c))return"";for(a||(a="utf8");;)switch(a){case"hex":return G(this,c,d);case"utf8":case"utf-8":return D(this,c,d);case"ascii":return M(this,c,d);case"latin1":case"binary":return X(this,c,d);case"base64":return F(this,c,d);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return ot(this,c,d);default:if(v)throw new TypeError("Unknown encoding: "+a);a=(a+"").toLowerCase(),v=!0}}p.prototype._isBuffer=!0;function U(a,c,d){const v=a[c];a[c]=a[d],a[d]=v}p.prototype.swap16=function(){const a=this.length;if(a%2!==0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(let c=0;cc&&(a+=" ... "),""},r&&(p.prototype[r]=p.prototype.inspect),p.prototype.compare=function(a,c,d,v,x){if(At(a,i)&&(a=p.from(a,a.offset,a.byteLength)),!p.isBuffer(a))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof a);if(c===void 0&&(c=0),d===void 0&&(d=a?a.length:0),v===void 0&&(v=0),x===void 0&&(x=this.length),c<0||d>a.length||v<0||x>this.length)throw new RangeError("out of range index");if(v>=x&&c>=d)return 0;if(v>=x)return-1;if(c>=d)return 1;if(c>>>=0,d>>>=0,v>>>=0,x>>>=0,this===a)return 0;let A=x-v,k=d-c;const ut=Math.min(A,k),vt=this.slice(v,x),dt=a.slice(c,d);for(let ct=0;ct2147483647?d=2147483647:d<-2147483648&&(d=-2147483648),d=+d,wn(d)&&(d=x?0:a.length-1),d<0&&(d=a.length+d),d>=a.length){if(x)return-1;d=a.length-1}else if(d<0)if(x)d=0;else return-1;if(typeof c=="string"&&(c=p.from(c,v)),p.isBuffer(c))return c.length===0?-1:C(a,c,d,v,x);if(typeof c=="number")return c=c&255,typeof i.prototype.indexOf=="function"?x?i.prototype.indexOf.call(a,c,d):i.prototype.lastIndexOf.call(a,c,d):C(a,[c],d,v,x);throw new TypeError("val must be string, number or Buffer")}function C(a,c,d,v,x){let A=1,k=a.length,ut=c.length;if(v!==void 0&&(v=String(v).toLowerCase(),v==="ucs2"||v==="ucs-2"||v==="utf16le"||v==="utf-16le")){if(a.length<2||c.length<2)return-1;A=2,k/=2,ut/=2,d/=2}function vt(ct,Z){return A===1?ct[Z]:ct.readUInt16BE(Z*A)}let dt;if(x){let ct=-1;for(dt=d;dtk&&(d=k-ut),dt=d;dt>=0;dt--){let ct=!0;for(let Z=0;Zx&&(v=x)):v=x;const A=c.length;v>A/2&&(v=A/2);let k;for(k=0;k>>0,isFinite(d)?(d=d>>>0,v===void 0&&(v="utf8")):(v=d,d=void 0);else throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");const x=this.length-c;if((d===void 0||d>x)&&(d=x),a.length>0&&(d<0||c<0)||c>this.length)throw new RangeError("Attempt to write outside buffer bounds");v||(v="utf8");let A=!1;for(;;)switch(v){case"hex":return I(this,a,c,d);case"utf8":case"utf-8":return w(this,a,c,d);case"ascii":case"latin1":case"binary":return _(this,a,c,d);case"base64":return S(this,a,c,d);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return O(this,a,c,d);default:if(A)throw new TypeError("Unknown encoding: "+v);v=(""+v).toLowerCase(),A=!0}},p.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};function F(a,c,d){return c===0&&d===a.length?e.fromByteArray(a):e.fromByteArray(a.slice(c,d))}function D(a,c,d){d=Math.min(a.length,d);const v=[];let x=c;for(;x239?4:A>223?3:A>191?2:1;if(x+ut<=d){let vt,dt,ct,Z;switch(ut){case 1:A<128&&(k=A);break;case 2:vt=a[x+1],(vt&192)===128&&(Z=(A&31)<<6|vt&63,Z>127&&(k=Z));break;case 3:vt=a[x+1],dt=a[x+2],(vt&192)===128&&(dt&192)===128&&(Z=(A&15)<<12|(vt&63)<<6|dt&63,Z>2047&&(Z<55296||Z>57343)&&(k=Z));break;case 4:vt=a[x+1],dt=a[x+2],ct=a[x+3],(vt&192)===128&&(dt&192)===128&&(ct&192)===128&&(Z=(A&15)<<18|(vt&63)<<12|(dt&63)<<6|ct&63,Z>65535&&Z<1114112&&(k=Z))}}k===null?(k=65533,ut=1):k>65535&&(k-=65536,v.push(k>>>10&1023|55296),k=56320|k&1023),v.push(k),x+=ut}return W(v)}const V=4096;function W(a){const c=a.length;if(c<=V)return String.fromCharCode.apply(String,a);let d="",v=0;for(;vv)&&(d=v);let x="";for(let A=c;Ad&&(a=d),c<0?(c+=d,c<0&&(c=0)):c>d&&(c=d),cd)throw new RangeError("Trying to access beyond buffer length")}p.prototype.readUintLE=p.prototype.readUIntLE=function(a,c,d){a=a>>>0,c=c>>>0,d||H(a,c,this.length);let v=this[a],x=1,A=0;for(;++A>>0,c=c>>>0,d||H(a,c,this.length);let v=this[a+--c],x=1;for(;c>0&&(x*=256);)v+=this[a+--c]*x;return v},p.prototype.readUint8=p.prototype.readUInt8=function(a,c){return a=a>>>0,c||H(a,1,this.length),this[a]},p.prototype.readUint16LE=p.prototype.readUInt16LE=function(a,c){return a=a>>>0,c||H(a,2,this.length),this[a]|this[a+1]<<8},p.prototype.readUint16BE=p.prototype.readUInt16BE=function(a,c){return a=a>>>0,c||H(a,2,this.length),this[a]<<8|this[a+1]},p.prototype.readUint32LE=p.prototype.readUInt32LE=function(a,c){return a=a>>>0,c||H(a,4,this.length),(this[a]|this[a+1]<<8|this[a+2]<<16)+this[a+3]*16777216},p.prototype.readUint32BE=p.prototype.readUInt32BE=function(a,c){return a=a>>>0,c||H(a,4,this.length),this[a]*16777216+(this[a+1]<<16|this[a+2]<<8|this[a+3])},p.prototype.readBigUInt64LE=ne(function(a){a=a>>>0,Ut(a,"offset");const c=this[a],d=this[a+7];(c===void 0||d===void 0)&&le(a,this.length-8);const v=c+this[++a]*2**8+this[++a]*2**16+this[++a]*2**24,x=this[++a]+this[++a]*2**8+this[++a]*2**16+d*2**24;return BigInt(v)+(BigInt(x)<>>0,Ut(a,"offset");const c=this[a],d=this[a+7];(c===void 0||d===void 0)&&le(a,this.length-8);const v=c*2**24+this[++a]*2**16+this[++a]*2**8+this[++a],x=this[++a]*2**24+this[++a]*2**16+this[++a]*2**8+d;return(BigInt(v)<>>0,c=c>>>0,d||H(a,c,this.length);let v=this[a],x=1,A=0;for(;++A=x&&(v-=Math.pow(2,8*c)),v},p.prototype.readIntBE=function(a,c,d){a=a>>>0,c=c>>>0,d||H(a,c,this.length);let v=c,x=1,A=this[a+--v];for(;v>0&&(x*=256);)A+=this[a+--v]*x;return x*=128,A>=x&&(A-=Math.pow(2,8*c)),A},p.prototype.readInt8=function(a,c){return a=a>>>0,c||H(a,1,this.length),this[a]&128?(255-this[a]+1)*-1:this[a]},p.prototype.readInt16LE=function(a,c){a=a>>>0,c||H(a,2,this.length);const d=this[a]|this[a+1]<<8;return d&32768?d|4294901760:d},p.prototype.readInt16BE=function(a,c){a=a>>>0,c||H(a,2,this.length);const d=this[a+1]|this[a]<<8;return d&32768?d|4294901760:d},p.prototype.readInt32LE=function(a,c){return a=a>>>0,c||H(a,4,this.length),this[a]|this[a+1]<<8|this[a+2]<<16|this[a+3]<<24},p.prototype.readInt32BE=function(a,c){return a=a>>>0,c||H(a,4,this.length),this[a]<<24|this[a+1]<<16|this[a+2]<<8|this[a+3]},p.prototype.readBigInt64LE=ne(function(a){a=a>>>0,Ut(a,"offset");const c=this[a],d=this[a+7];(c===void 0||d===void 0)&&le(a,this.length-8);const v=this[a+4]+this[a+5]*2**8+this[a+6]*2**16+(d<<24);return(BigInt(v)<>>0,Ut(a,"offset");const c=this[a],d=this[a+7];(c===void 0||d===void 0)&&le(a,this.length-8);const v=(c<<24)+this[++a]*2**16+this[++a]*2**8+this[++a];return(BigInt(v)<>>0,c||H(a,4,this.length),n.read(this,a,!0,23,4)},p.prototype.readFloatBE=function(a,c){return a=a>>>0,c||H(a,4,this.length),n.read(this,a,!1,23,4)},p.prototype.readDoubleLE=function(a,c){return a=a>>>0,c||H(a,8,this.length),n.read(this,a,!0,52,8)},p.prototype.readDoubleBE=function(a,c){return a=a>>>0,c||H(a,8,this.length),n.read(this,a,!1,52,8)};function it(a,c,d,v,x,A){if(!p.isBuffer(a))throw new TypeError('"buffer" argument must be a Buffer instance');if(c>x||ca.length)throw new RangeError("Index out of range")}p.prototype.writeUintLE=p.prototype.writeUIntLE=function(a,c,d,v){if(a=+a,c=c>>>0,d=d>>>0,!v){const k=Math.pow(2,8*d)-1;it(this,a,c,d,k,0)}let x=1,A=0;for(this[c]=a&255;++A>>0,d=d>>>0,!v){const k=Math.pow(2,8*d)-1;it(this,a,c,d,k,0)}let x=d-1,A=1;for(this[c+x]=a&255;--x>=0&&(A*=256);)this[c+x]=a/A&255;return c+d},p.prototype.writeUint8=p.prototype.writeUInt8=function(a,c,d){return a=+a,c=c>>>0,d||it(this,a,c,1,255,0),this[c]=a&255,c+1},p.prototype.writeUint16LE=p.prototype.writeUInt16LE=function(a,c,d){return a=+a,c=c>>>0,d||it(this,a,c,2,65535,0),this[c]=a&255,this[c+1]=a>>>8,c+2},p.prototype.writeUint16BE=p.prototype.writeUInt16BE=function(a,c,d){return a=+a,c=c>>>0,d||it(this,a,c,2,65535,0),this[c]=a>>>8,this[c+1]=a&255,c+2},p.prototype.writeUint32LE=p.prototype.writeUInt32LE=function(a,c,d){return a=+a,c=c>>>0,d||it(this,a,c,4,4294967295,0),this[c+3]=a>>>24,this[c+2]=a>>>16,this[c+1]=a>>>8,this[c]=a&255,c+4},p.prototype.writeUint32BE=p.prototype.writeUInt32BE=function(a,c,d){return a=+a,c=c>>>0,d||it(this,a,c,4,4294967295,0),this[c]=a>>>24,this[c+1]=a>>>16,this[c+2]=a>>>8,this[c+3]=a&255,c+4};function St(a,c,d,v,x){vn(c,v,x,a,d,7);let A=Number(c&BigInt(4294967295));a[d++]=A,A=A>>8,a[d++]=A,A=A>>8,a[d++]=A,A=A>>8,a[d++]=A;let k=Number(c>>BigInt(32)&BigInt(4294967295));return a[d++]=k,k=k>>8,a[d++]=k,k=k>>8,a[d++]=k,k=k>>8,a[d++]=k,d}function Tt(a,c,d,v,x){vn(c,v,x,a,d,7);let A=Number(c&BigInt(4294967295));a[d+7]=A,A=A>>8,a[d+6]=A,A=A>>8,a[d+5]=A,A=A>>8,a[d+4]=A;let k=Number(c>>BigInt(32)&BigInt(4294967295));return a[d+3]=k,k=k>>8,a[d+2]=k,k=k>>8,a[d+1]=k,k=k>>8,a[d]=k,d+8}p.prototype.writeBigUInt64LE=ne(function(a,c=0){return St(this,a,c,BigInt(0),BigInt("0xffffffffffffffff"))}),p.prototype.writeBigUInt64BE=ne(function(a,c=0){return Tt(this,a,c,BigInt(0),BigInt("0xffffffffffffffff"))}),p.prototype.writeIntLE=function(a,c,d,v){if(a=+a,c=c>>>0,!v){const ut=Math.pow(2,8*d-1);it(this,a,c,d,ut-1,-ut)}let x=0,A=1,k=0;for(this[c]=a&255;++x>0)-k&255;return c+d},p.prototype.writeIntBE=function(a,c,d,v){if(a=+a,c=c>>>0,!v){const ut=Math.pow(2,8*d-1);it(this,a,c,d,ut-1,-ut)}let x=d-1,A=1,k=0;for(this[c+x]=a&255;--x>=0&&(A*=256);)a<0&&k===0&&this[c+x+1]!==0&&(k=1),this[c+x]=(a/A>>0)-k&255;return c+d},p.prototype.writeInt8=function(a,c,d){return a=+a,c=c>>>0,d||it(this,a,c,1,127,-128),a<0&&(a=255+a+1),this[c]=a&255,c+1},p.prototype.writeInt16LE=function(a,c,d){return a=+a,c=c>>>0,d||it(this,a,c,2,32767,-32768),this[c]=a&255,this[c+1]=a>>>8,c+2},p.prototype.writeInt16BE=function(a,c,d){return a=+a,c=c>>>0,d||it(this,a,c,2,32767,-32768),this[c]=a>>>8,this[c+1]=a&255,c+2},p.prototype.writeInt32LE=function(a,c,d){return a=+a,c=c>>>0,d||it(this,a,c,4,2147483647,-2147483648),this[c]=a&255,this[c+1]=a>>>8,this[c+2]=a>>>16,this[c+3]=a>>>24,c+4},p.prototype.writeInt32BE=function(a,c,d){return a=+a,c=c>>>0,d||it(this,a,c,4,2147483647,-2147483648),a<0&&(a=4294967295+a+1),this[c]=a>>>24,this[c+1]=a>>>16,this[c+2]=a>>>8,this[c+3]=a&255,c+4},p.prototype.writeBigInt64LE=ne(function(a,c=0){return St(this,a,c,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),p.prototype.writeBigInt64BE=ne(function(a,c=0){return Tt(this,a,c,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))});function Wt(a,c,d,v,x,A){if(d+v>a.length)throw new RangeError("Index out of range");if(d<0)throw new RangeError("Index out of range")}function jt(a,c,d,v,x){return c=+c,d=d>>>0,x||Wt(a,c,d,4),n.write(a,c,d,v,23,4),d+4}p.prototype.writeFloatLE=function(a,c,d){return jt(this,a,c,!0,d)},p.prototype.writeFloatBE=function(a,c,d){return jt(this,a,c,!1,d)};function te(a,c,d,v,x){return c=+c,d=d>>>0,x||Wt(a,c,d,8),n.write(a,c,d,v,52,8),d+8}p.prototype.writeDoubleLE=function(a,c,d){return te(this,a,c,!0,d)},p.prototype.writeDoubleBE=function(a,c,d){return te(this,a,c,!1,d)},p.prototype.copy=function(a,c,d,v){if(!p.isBuffer(a))throw new TypeError("argument should be a Buffer");if(d||(d=0),!v&&v!==0&&(v=this.length),c>=a.length&&(c=a.length),c||(c=0),v>0&&v=this.length)throw new RangeError("Index out of range");if(v<0)throw new RangeError("sourceEnd out of bounds");v>this.length&&(v=this.length),a.length-c>>0,d=d===void 0?this.length:d>>>0,a||(a=0);let x;if(typeof a=="number")for(x=c;x2**32?x=ae(String(d)):typeof d=="bigint"&&(x=String(d),(d>BigInt(2)**BigInt(32)||d<-(BigInt(2)**BigInt(32)))&&(x=ae(x)),x+="n"),v+=" It must be ".concat(c,". Received ").concat(x),v},RangeError);function ae(a){let c="",d=a.length;const v=a[0]==="-"?1:0;for(;d>=v+4;d-=3)c="_".concat(a.slice(d-3,d)).concat(c);return"".concat(a.slice(0,d)).concat(c)}function Kn(a,c,d){Ut(c,"offset"),(a[c]===void 0||a[c+d]===void 0)&&le(c,a.length-(d+1))}function vn(a,c,d,v,x,A){if(a>d||a3?c===0||c===BigInt(0)?ut=">= 0".concat(k," and < 2").concat(k," ** ").concat((A+1)*8).concat(k):ut=">= -(2".concat(k," ** ").concat((A+1)*8-1).concat(k,") and < 2 ** ").concat((A+1)*8-1).concat(k):ut=">= ".concat(c).concat(k," and <= ").concat(d).concat(k),new Lt.ERR_OUT_OF_RANGE("value",ut,a)}Kn(v,x,A)}function Ut(a,c){if(typeof a!="number")throw new Lt.ERR_INVALID_ARG_TYPE(c,"number",a)}function le(a,c,d){throw Math.floor(a)!==a?(Ut(a,d),new Lt.ERR_OUT_OF_RANGE(d||"offset","an integer",a)):c<0?new Lt.ERR_BUFFER_OUT_OF_BOUNDS:new Lt.ERR_OUT_OF_RANGE(d||"offset",">= ".concat(d?1:0," and <= ").concat(c),a)}const gn=/[^+/0-9A-Za-z-_]/g;function $r(a){if(a=a.split("=")[0],a=a.trim().replace(gn,""),a.length<2)return"";for(;a.length%4!==0;)a=a+"=";return a}function yn(a,c){c=c||1/0;let d;const v=a.length;let x=null;const A=[];for(let k=0;k55295&&d<57344){if(!x){if(d>56319){(c-=3)>-1&&A.push(239,191,189);continue}else if(k+1===v){(c-=3)>-1&&A.push(239,191,189);continue}x=d;continue}if(d<56320){(c-=3)>-1&&A.push(239,191,189),x=d;continue}d=(x-55296<<10|d-56320)+65536}else x&&(c-=3)>-1&&A.push(239,191,189);if(x=null,d<128){if((c-=1)<0)break;A.push(d)}else if(d<2048){if((c-=2)<0)break;A.push(d>>6|192,d&63|128)}else if(d<65536){if((c-=3)<0)break;A.push(d>>12|224,d>>6&63|128,d&63|128)}else if(d<1114112){if((c-=4)<0)break;A.push(d>>18|240,d>>12&63|128,d>>6&63|128,d&63|128)}else throw new Error("Invalid code point")}return A}function ii(a){const c=[];for(let d=0;d>8,x=d%256,A.push(x),A.push(v);return A}function Oe(a){return e.toByteArray($r(a))}function ee(a,c,d,v){let x;for(x=0;x=c.length||x>=a.length);++x)c[x+d]=a[x];return x}function At(a,c){return a instanceof c||a!=null&&a.constructor!=null&&a.constructor.name!=null&&a.constructor.name===c.name}function wn(a){return a!==a}const kr=function(){const a="0123456789abcdef",c=new Array(256);for(let d=0;d<16;++d){const v=d*16;for(let x=0;x<16;++x)c[v+x]=a[d]+a[x]}return c}();function ne(a){return typeof BigInt>"u"?Yn:a}function Yn(){throw new Error("BigInt not supported")}})(of);const t_=of.Buffer;function tt(t,e,n,r,o){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack,this.message=t,this.name="AxiosError",e&&(this.code=e),n&&(this.config=n),r&&(this.request=r),o&&(this.response=o)}N.inherits(tt,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:N.toJSONObject(this.config),code:this.code,status:this.response&&this.response.status?this.response.status:null}}});const gu=tt.prototype,yu={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach(t=>{yu[t]={value:t}}),Object.defineProperties(tt,yu),Object.defineProperty(gu,"isAxiosError",{value:!0}),tt.from=(t,e,n,r,o,i)=>{const s=Object.create(gu);return N.toFlatObject(t,s,function(l){return l!==Error.prototype},l=>l!=="isAxiosError"),tt.call(s,t.message,e,n,r,o),s.cause=t,s.name=t.name,i&&Object.assign(s,i),s};const e_=null;function vs(t){return N.isPlainObject(t)||N.isArray(t)}function af(t){return N.endsWith(t,"[]")?t.slice(0,-2):t}function wu(t,e,n){return t?t.concat(e).map(function(r,o){return r=af(r),!n&&o?"["+r+"]":r}).join(n?".":""):e}function n_(t){return N.isArray(t)&&!t.some(vs)}const r_=N.toFlatObject(N,{},null,function(t){return/^is[A-Z]/.test(t)});function ri(t,e,n){if(!N.isObject(t))throw new TypeError("target must be an object");e=e||new FormData,n=N.toFlatObject(n,{metaTokens:!0,dots:!1,indexes:!1},!1,function(g,b){return!N.isUndefined(b[g])});const r=n.metaTokens,o=n.visitor||f,i=n.dots,s=n.indexes,l=(n.Blob||typeof Blob<"u"&&Blob)&&N.isSpecCompliantForm(e);if(!N.isFunction(o))throw new TypeError("visitor must be a function");function u(g){if(g===null)return"";if(N.isDate(g))return g.toISOString();if(!l&&N.isBlob(g))throw new tt("Blob is not supported. Use a Buffer instead.");return N.isArrayBuffer(g)||N.isTypedArray(g)?l&&typeof Blob=="function"?new Blob([g]):t_.from(g):g}function f(g,b,$){let P=g;if(g&&!$&&typeof g=="object"){if(N.endsWith(b,"{}"))b=r?b:b.slice(0,-2),g=JSON.stringify(g);else if(N.isArray(g)&&n_(g)||(N.isFileList(g)||N.endsWith(b,"[]"))&&(P=N.toArray(g)))return b=af(b),P.forEach(function(B,R){!(N.isUndefined(B)||B===null)&&e.append(s===!0?wu([b],R,i):s===null?b:b+"[]",u(B))}),!1}return vs(g)?!0:(e.append(wu($,b,i),u(g)),!1)}const p=[],h=Object.assign(r_,{defaultVisitor:f,convertValue:u,isVisitable:vs});function y(g,b){if(!N.isUndefined(g)){if(p.indexOf(g)!==-1)throw Error("Circular reference detected in "+b.join("."));p.push(g),N.forEach(g,function($,P){(!(N.isUndefined($)||$===null)&&o.call(e,$,N.isString(P)?P.trim():P,b,h))===!0&&y($,b?b.concat(P):[P])}),p.pop()}}if(!N.isObject(t))throw new TypeError("data must be an object");return y(t),e}function _u(t){const e={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(t).replace(/[!'()~]|%20|%00/g,function(n){return e[n]})}function oa(t,e){this._pairs=[],t&&ri(t,this,e)}const bu=oa.prototype;bu.append=function(t,e){this._pairs.push([t,e])},bu.toString=function(t){const e=t?function(n){return t.call(this,n,_u)}:_u;return this._pairs.map(function(n){return e(n[0])+"="+e(n[1])},"").join("&")};function o_(t){return encodeURIComponent(t).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function lf(t,e,n){if(!e)return t;const r=n&&n.encode||o_,o=n&&n.serialize;let i;if(o?i=o(e,n):i=N.isURLSearchParams(e)?e.toString():new oa(e,n).toString(r),i){const s=t.indexOf("#");s!==-1&&(t=t.slice(0,s)),t+=(t.indexOf("?")===-1?"?":"&")+i}return t}class xu{constructor(){this.handlers=[]}use(e,n,r){return this.handlers.push({fulfilled:e,rejected:n,synchronous:r?r.synchronous:!1,runWhen:r?r.runWhen:null}),this.handlers.length-1}eject(e){this.handlers[e]&&(this.handlers[e]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(e){N.forEach(this.handlers,function(n){n!==null&&e(n)})}}const uf={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},i_=typeof URLSearchParams<"u"?URLSearchParams:oa,s_=typeof FormData<"u"?FormData:null,a_=typeof Blob<"u"?Blob:null,l_={isBrowser:!0,classes:{URLSearchParams:i_,FormData:s_,Blob:a_},protocols:["http","https","file","blob","url","data"]},cf=typeof window<"u"&&typeof document<"u",u_=(t=>cf&&["ReactNative","NativeScript","NS"].indexOf(t)<0)(typeof navigator<"u"&&navigator.product),c_=typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function",p_=Object.freeze(Object.defineProperty({__proto__:null,hasBrowserEnv:cf,hasStandardBrowserEnv:u_,hasStandardBrowserWebWorkerEnv:c_},Symbol.toStringTag,{value:"Module"})),me={...p_,...l_};function f_(t,e){return ri(t,new me.classes.URLSearchParams,Object.assign({visitor:function(n,r,o,i){return me.isNode&&N.isBuffer(n)?(this.append(r,n.toString("base64")),!1):i.defaultVisitor.apply(this,arguments)}},e))}function d_(t){return N.matchAll(/\w+|\[(\w*)]/g,t).map(e=>e[0]==="[]"?"":e[1]||e[0])}function h_(t){const e={},n=Object.keys(t);let r;const o=n.length;let i;for(r=0;r=n.length;return s=!s&&N.isArray(o)?o.length:s,u?(N.hasOwnProp(o,s)?o[s]=[o[s],r]:o[s]=r,!l):((!o[s]||!N.isObject(o[s]))&&(o[s]=[]),e(n,r,o[s],i)&&N.isArray(o[s])&&(o[s]=h_(o[s])),!l)}if(N.isFormData(t)&&N.isFunction(t.entries)){const n={};return N.forEachEntry(t,(r,o)=>{e(d_(r),o,n,0)}),n}return null}function m_(t,e,n){if(N.isString(t))try{return(e||JSON.parse)(t),N.trim(t)}catch(r){if(r.name!=="SyntaxError")throw r}return(n||JSON.stringify)(t)}const ia={transitional:uf,adapter:["xhr","http"],transformRequest:[function(t,e){const n=e.getContentType()||"",r=n.indexOf("application/json")>-1,o=N.isObject(t);if(o&&N.isHTMLForm(t)&&(t=new FormData(t)),N.isFormData(t))return r?JSON.stringify(pf(t)):t;if(N.isArrayBuffer(t)||N.isBuffer(t)||N.isStream(t)||N.isFile(t)||N.isBlob(t))return t;if(N.isArrayBufferView(t))return t.buffer;if(N.isURLSearchParams(t))return e.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),t.toString();let i;if(o){if(n.indexOf("application/x-www-form-urlencoded")>-1)return f_(t,this.formSerializer).toString();if((i=N.isFileList(t))||n.indexOf("multipart/form-data")>-1){const s=this.env&&this.env.FormData;return ri(i?{"files[]":t}:t,s&&new s,this.formSerializer)}}return o||r?(e.setContentType("application/json",!1),m_(t)):t}],transformResponse:[function(t){const e=this.transitional||ia.transitional,n=e&&e.forcedJSONParsing,r=this.responseType==="json";if(t&&N.isString(t)&&(n&&!this.responseType||r)){const o=!(e&&e.silentJSONParsing)&&r;try{return JSON.parse(t)}catch(i){if(o)throw i.name==="SyntaxError"?tt.from(i,tt.ERR_BAD_RESPONSE,this,null,this.response):i}}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:me.classes.FormData,Blob:me.classes.Blob},validateStatus:function(t){return t>=200&&t<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};N.forEach(["delete","get","head","post","put","patch"],t=>{ia.headers[t]={}});const sa=ia,v_=N.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),g_=t=>{const e={};let n,r,o;return t&&t.split("\n").forEach(function(i){o=i.indexOf(":"),n=i.substring(0,o).trim().toLowerCase(),r=i.substring(o+1).trim(),!(!n||e[n]&&v_[n])&&(n==="set-cookie"?e[n]?e[n].push(r):e[n]=[r]:e[n]=e[n]?e[n]+", "+r:r)}),e},Eu=Symbol("internals");function ir(t){return t&&String(t).trim().toLowerCase()}function uo(t){return t===!1||t==null?t:N.isArray(t)?t.map(uo):String(t)}function y_(t){const e=Object.create(null),n=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let r;for(;r=n.exec(t);)e[r[1]]=r[2];return e}const w_=t=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(t.trim());function Ni(t,e,n,r,o){if(N.isFunction(r))return r.call(this,e,n);if(o&&(e=n),!!N.isString(e)){if(N.isString(r))return e.indexOf(r)!==-1;if(N.isRegExp(r))return r.test(e)}}function __(t){return t.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(e,n,r)=>n.toUpperCase()+r)}function b_(t,e){const n=N.toCamelCase(" "+e);["get","set","has"].forEach(r=>{Object.defineProperty(t,r+n,{value:function(o,i,s){return this[r].call(this,e,o,i,s)},configurable:!0})})}class co{constructor(e){e&&this.set(e)}set(e,n,r){const o=this;function i(l,u,f){const p=ir(u);if(!p)throw new Error("header name must be a non-empty string");const h=N.findKey(o,p);(!h||o[h]===void 0||f===!0||f===void 0&&o[h]!==!1)&&(o[h||u]=uo(l))}const s=(l,u)=>N.forEach(l,(f,p)=>i(f,p,u));return N.isPlainObject(e)||e instanceof this.constructor?s(e,n):N.isString(e)&&(e=e.trim())&&!w_(e)?s(g_(e),n):e!=null&&i(n,e,r),this}get(e,n){if(e=ir(e),e){const r=N.findKey(this,e);if(r){const o=this[r];if(!n)return o;if(n===!0)return y_(o);if(N.isFunction(n))return n.call(this,o,r);if(N.isRegExp(n))return n.exec(o);throw new TypeError("parser must be boolean|regexp|function")}}}has(e,n){if(e=ir(e),e){const r=N.findKey(this,e);return!!(r&&this[r]!==void 0&&(!n||Ni(this,this[r],r,n)))}return!1}delete(e,n){const r=this;let o=!1;function i(s){if(s=ir(s),s){const l=N.findKey(r,s);l&&(!n||Ni(r,r[l],l,n))&&(delete r[l],o=!0)}}return N.isArray(e)?e.forEach(i):i(e),o}clear(e){const n=Object.keys(this);let r=n.length,o=!1;for(;r--;){const i=n[r];(!e||Ni(this,this[i],i,e,!0))&&(delete this[i],o=!0)}return o}normalize(e){const n=this,r={};return N.forEach(this,(o,i)=>{const s=N.findKey(r,i);if(s){n[s]=uo(o),delete n[i];return}const l=e?__(i):String(i).trim();l!==i&&delete n[i],n[l]=uo(o),r[l]=!0}),this}concat(...e){return this.constructor.concat(this,...e)}toJSON(e){const n=Object.create(null);return N.forEach(this,(r,o)=>{r!=null&&r!==!1&&(n[o]=e&&N.isArray(r)?r.join(", "):r)}),n}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map(([e,n])=>e+": "+n).join("\n")}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(e){return e instanceof this?e:new this(e)}static concat(e,...n){const r=new this(e);return n.forEach(o=>r.set(o)),r}static accessor(e){const n=(this[Eu]=this[Eu]={accessors:{}}).accessors,r=this.prototype;function o(i){const s=ir(i);n[s]||(b_(r,i),n[s]=!0)}return N.isArray(e)?e.forEach(o):o(e),this}}co.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]),N.reduceDescriptors(co.prototype,({value:t},e)=>{let n=e[0].toUpperCase()+e.slice(1);return{get:()=>t,set(r){this[n]=r}}}),N.freezeMethods(co);const Ce=co;function Pi(t,e){const n=this||sa,r=e||n,o=Ce.from(r.headers);let i=r.data;return N.forEach(t,function(s){i=s.call(n,i,o.normalize(),e?e.status:void 0)}),o.normalize(),i}function ff(t){return!!(t&&t.__CANCEL__)}function Pr(t,e,n){tt.call(this,t!=null?t:"canceled",tt.ERR_CANCELED,e,n),this.name="CanceledError"}N.inherits(Pr,tt,{__CANCEL__:!0});function x_(t,e,n){const r=n.config.validateStatus;!n.status||!r||r(n.status)?t(n):e(new tt("Request failed with status code "+n.status,[tt.ERR_BAD_REQUEST,tt.ERR_BAD_RESPONSE][Math.floor(n.status/100)-4],n.config,n.request,n))}const E_=me.hasStandardBrowserEnv?{write(t,e,n,r,o,i){const s=[t+"="+encodeURIComponent(e)];N.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),N.isString(r)&&s.push("path="+r),N.isString(o)&&s.push("domain="+o),i===!0&&s.push("secure"),document.cookie=s.join("; ")},read(t){const e=document.cookie.match(new RegExp("(^|;\\s*)("+t+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove(t){this.write(t,"",Date.now()-864e5)}}:{write(){},read(){return null},remove(){}};function C_(t){return/^([a-z][a-z\d+\-.]*:)?\/\//i.test(t)}function S_(t,e){return e?t.replace(/\/?\/$/,"")+"/"+e.replace(/^\/+/,""):t}function df(t,e){return t&&!C_(e)?S_(t,e):e}const A_=me.hasStandardBrowserEnv?function(){const t=/(msie|trident)/i.test(navigator.userAgent),e=document.createElement("a");let n;function r(o){let i=o;return t&&(e.setAttribute("href",i),i=e.href),e.setAttribute("href",i),{href:e.href,protocol:e.protocol?e.protocol.replace(/:$/,""):"",host:e.host,search:e.search?e.search.replace(/^\?/,""):"",hash:e.hash?e.hash.replace(/^#/,""):"",hostname:e.hostname,port:e.port,pathname:e.pathname.charAt(0)==="/"?e.pathname:"/"+e.pathname}}return n=r(window.location.href),function(o){const i=N.isString(o)?r(o):o;return i.protocol===n.protocol&&i.host===n.host}}():function(){return function(){return!0}}();function T_(t){const e=/^([-+\w]{1,25})(:?\/\/|:)/.exec(t);return e&&e[1]||""}function N_(t,e){t=t||10;const n=new Array(t),r=new Array(t);let o=0,i=0,s;return e=e!==void 0?e:1e3,function(l){const u=Date.now(),f=r[i];s||(s=u),n[o]=l,r[o]=u;let p=i,h=0;for(;p!==o;)h+=n[p++],p=p%t;if(o=(o+1)%t,o===i&&(i=(i+1)%t),u-s{const i=o.loaded,s=o.lengthComputable?o.total:void 0,l=i-n,u=r(l),f=i<=s;n=i;const p={loaded:i,total:s,progress:s?i/s:void 0,bytes:l,rate:u||void 0,estimated:u&&s&&f?(s-i)/u:void 0,event:o};p[e?"download":"upload"]=!0,t(p)}}const P_=typeof XMLHttpRequest<"u",$_=P_&&function(t){return new Promise(function(e,n){let r=t.data;const o=Ce.from(t.headers).normalize();let{responseType:i,withXSRFToken:s}=t,l;function u(){t.cancelToken&&t.cancelToken.unsubscribe(l),t.signal&&t.signal.removeEventListener("abort",l)}let f;if(N.isFormData(r)){if(me.hasStandardBrowserEnv||me.hasStandardBrowserWebWorkerEnv)o.setContentType(!1);else if((f=o.getContentType())!==!1){const[b,...$]=f?f.split(";").map(P=>P.trim()).filter(Boolean):[];o.setContentType([b||"multipart/form-data",...$].join("; "))}}let p=new XMLHttpRequest;if(t.auth){const b=t.auth.username||"",$=t.auth.password?unescape(encodeURIComponent(t.auth.password)):"";o.set("Authorization","Basic "+btoa(b+":"+$))}const h=df(t.baseURL,t.url);p.open(t.method.toUpperCase(),lf(h,t.params,t.paramsSerializer),!0),p.timeout=t.timeout;function y(){if(!p)return;const b=Ce.from("getAllResponseHeaders"in p&&p.getAllResponseHeaders()),$={data:!i||i==="text"||i==="json"?p.responseText:p.response,status:p.status,statusText:p.statusText,headers:b,config:t,request:p};x_(function(P){e(P),u()},function(P){n(P),u()},$),p=null}if("onloadend"in p?p.onloadend=y:p.onreadystatechange=function(){!p||p.readyState!==4||p.status===0&&!(p.responseURL&&p.responseURL.indexOf("file:")===0)||setTimeout(y)},p.onabort=function(){p&&(n(new tt("Request aborted",tt.ECONNABORTED,t,p)),p=null)},p.onerror=function(){n(new tt("Network Error",tt.ERR_NETWORK,t,p)),p=null},p.ontimeout=function(){let b=t.timeout?"timeout of "+t.timeout+"ms exceeded":"timeout exceeded";const $=t.transitional||uf;t.timeoutErrorMessage&&(b=t.timeoutErrorMessage),n(new tt(b,$.clarifyTimeoutError?tt.ETIMEDOUT:tt.ECONNABORTED,t,p)),p=null},me.hasStandardBrowserEnv&&(s&&N.isFunction(s)&&(s=s(t)),s||s!==!1&&A_(h))){const b=t.xsrfHeaderName&&t.xsrfCookieName&&E_.read(t.xsrfCookieName);b&&o.set(t.xsrfHeaderName,b)}r===void 0&&o.setContentType(null),"setRequestHeader"in p&&N.forEach(o.toJSON(),function(b,$){p.setRequestHeader($,b)}),N.isUndefined(t.withCredentials)||(p.withCredentials=!!t.withCredentials),i&&i!=="json"&&(p.responseType=t.responseType),typeof t.onDownloadProgress=="function"&&p.addEventListener("progress",Cu(t.onDownloadProgress,!0)),typeof t.onUploadProgress=="function"&&p.upload&&p.upload.addEventListener("progress",Cu(t.onUploadProgress)),(t.cancelToken||t.signal)&&(l=b=>{p&&(n(!b||b.type?new Pr(null,t,p):b),p.abort(),p=null)},t.cancelToken&&t.cancelToken.subscribe(l),t.signal&&(t.signal.aborted?l():t.signal.addEventListener("abort",l)));const g=T_(h);if(g&&me.protocols.indexOf(g)===-1){n(new tt("Unsupported protocol "+g+":",tt.ERR_BAD_REQUEST,t));return}p.send(r||null)})},gs={http:e_,xhr:$_};N.forEach(gs,(t,e)=>{if(t){try{Object.defineProperty(t,"name",{value:e})}catch{}Object.defineProperty(t,"adapterName",{value:e})}});const Su=t=>"- ".concat(t),k_=t=>N.isFunction(t)||t===null||t===!1,hf={getAdapter:t=>{t=N.isArray(t)?t:[t];const{length:e}=t;let n,r;const o={};for(let i=0;i"adapter ".concat(l," ")+(u===!1?"is not supported by the environment":"is not available in the build"));let s=e?i.length>1?"since :\n"+i.map(Su).join("\n"):" "+Su(i[0]):"as no adapter specified";throw new tt("There is no suitable adapter to dispatch the request "+s,"ERR_NOT_SUPPORT")}return r},adapters:gs};function $i(t){if(t.cancelToken&&t.cancelToken.throwIfRequested(),t.signal&&t.signal.aborted)throw new Pr(null,t)}function Au(t){return $i(t),t.headers=Ce.from(t.headers),t.data=Pi.call(t,t.transformRequest),["post","put","patch"].indexOf(t.method)!==-1&&t.headers.setContentType("application/x-www-form-urlencoded",!1),hf.getAdapter(t.adapter||sa.adapter)(t).then(function(e){return $i(t),e.data=Pi.call(t,t.transformResponse,e),e.headers=Ce.from(e.headers),e},function(e){return ff(e)||($i(t),e&&e.response&&(e.response.data=Pi.call(t,t.transformResponse,e.response),e.response.headers=Ce.from(e.response.headers))),Promise.reject(e)})}const Tu=t=>t instanceof Ce?{...t}:t;function Mn(t,e){e=e||{};const n={};function r(f,p,h){return N.isPlainObject(f)&&N.isPlainObject(p)?N.merge.call({caseless:h},f,p):N.isPlainObject(p)?N.merge({},p):N.isArray(p)?p.slice():p}function o(f,p,h){if(N.isUndefined(p)){if(!N.isUndefined(f))return r(void 0,f,h)}else return r(f,p,h)}function i(f,p){if(!N.isUndefined(p))return r(void 0,p)}function s(f,p){if(N.isUndefined(p)){if(!N.isUndefined(f))return r(void 0,f)}else return r(void 0,p)}function l(f,p,h){if(h in e)return r(f,p);if(h in t)return r(void 0,f)}const u={url:i,method:i,data:i,baseURL:s,transformRequest:s,transformResponse:s,paramsSerializer:s,timeout:s,timeoutMessage:s,withCredentials:s,withXSRFToken:s,adapter:s,responseType:s,xsrfCookieName:s,xsrfHeaderName:s,onUploadProgress:s,onDownloadProgress:s,decompress:s,maxContentLength:s,maxBodyLength:s,beforeRedirect:s,transport:s,httpAgent:s,httpsAgent:s,cancelToken:s,socketPath:s,responseEncoding:s,validateStatus:l,headers:(f,p)=>o(Tu(f),Tu(p),!0)};return N.forEach(Object.keys(Object.assign({},t,e)),function(f){const p=u[f]||o,h=p(t[f],e[f],f);N.isUndefined(h)&&p!==l||(n[f]=h)}),n}const mf="1.6.8",aa={};["object","boolean","number","function","string","symbol"].forEach((t,e)=>{aa[t]=function(n){return typeof n===t||"a"+(e<1?"n ":" ")+t}});const Nu={};aa.transitional=function(t,e,n){function r(o,i){return"[Axios v"+mf+"] Transitional option '"+o+"'"+i+(n?". "+n:"")}return(o,i,s)=>{if(t===!1)throw new tt(r(i," has been removed"+(e?" in "+e:"")),tt.ERR_DEPRECATED);return e&&!Nu[i]&&(Nu[i]=!0,console.warn(r(i," has been deprecated since v"+e+" and will be removed in the near future"))),t?t(o,i,s):!0}};function O_(t,e,n){if(typeof t!="object")throw new tt("options must be an object",tt.ERR_BAD_OPTION_VALUE);const r=Object.keys(t);let o=r.length;for(;o-- >0;){const i=r[o],s=e[i];if(s){const l=t[i],u=l===void 0||s(l,i,t);if(u!==!0)throw new tt("option "+i+" must be "+u,tt.ERR_BAD_OPTION_VALUE);continue}if(n!==!0)throw new tt("Unknown option "+i,tt.ERR_BAD_OPTION)}}const ys={assertOptions:O_,validators:aa},Re=ys.validators;let po=class{constructor(t){this.defaults=t,this.interceptors={request:new xu,response:new xu}}async request(t,e){try{return await this._request(t,e)}catch(n){if(n instanceof Error){let r;Error.captureStackTrace?Error.captureStackTrace(r={}):r=new Error;const o=r.stack?r.stack.replace(/^.+\n/,""):"";n.stack?o&&!String(n.stack).endsWith(o.replace(/^.+\n.+\n/,""))&&(n.stack+="\n"+o):n.stack=o}throw n}}_request(t,e){typeof t=="string"?(e=e||{},e.url=t):e=t||{},e=Mn(this.defaults,e);const{transitional:n,paramsSerializer:r,headers:o}=e;n!==void 0&&ys.assertOptions(n,{silentJSONParsing:Re.transitional(Re.boolean),forcedJSONParsing:Re.transitional(Re.boolean),clarifyTimeoutError:Re.transitional(Re.boolean)},!1),r!=null&&(N.isFunction(r)?e.paramsSerializer={serialize:r}:ys.assertOptions(r,{encode:Re.function,serialize:Re.function},!0)),e.method=(e.method||this.defaults.method||"get").toLowerCase();let i=o&&N.merge(o.common,o[e.method]);o&&N.forEach(["delete","get","head","post","put","patch","common"],g=>{delete o[g]}),e.headers=Ce.concat(i,o);const s=[];let l=!0;this.interceptors.request.forEach(function(g){typeof g.runWhen=="function"&&g.runWhen(e)===!1||(l=l&&g.synchronous,s.unshift(g.fulfilled,g.rejected))});const u=[];this.interceptors.response.forEach(function(g){u.push(g.fulfilled,g.rejected)});let f,p=0,h;if(!l){const g=[Au.bind(this),void 0];for(g.unshift.apply(g,s),g.push.apply(g,u),h=g.length,f=Promise.resolve(e);p{if(!r._listeners)return;let i=r._listeners.length;for(;i-- >0;)r._listeners[i](o);r._listeners=null}),this.promise.then=o=>{let i;const s=new Promise(l=>{r.subscribe(l),i=l}).then(o);return s.cancel=function(){r.unsubscribe(i)},s},e(function(o,i,s){r.reason||(r.reason=new Pr(o,i,s),n(r.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(e){if(this.reason){e(this.reason);return}this._listeners?this._listeners.push(e):this._listeners=[e]}unsubscribe(e){if(!this._listeners)return;const n=this._listeners.indexOf(e);n!==-1&&this._listeners.splice(n,1)}static source(){let e;return{token:new la(function(n){e=n}),cancel:e}}}const L_=la;function R_(t){return function(e){return t.apply(null,e)}}function I_(t){return N.isObject(t)&&t.isAxiosError===!0}const ws={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511};Object.entries(ws).forEach(([t,e])=>{ws[e]=t});const F_=ws;function vf(t){const e=new fo(t),n=Zp(fo.prototype.request,e);return N.extend(n,fo.prototype,e,{allOwnKeys:!0}),N.extend(n,e,null,{allOwnKeys:!0}),n.create=function(r){return vf(Mn(t,r))},n}const bt=vf(sa);bt.Axios=fo,bt.CanceledError=Pr,bt.CancelToken=L_,bt.isCancel=ff,bt.VERSION=mf,bt.toFormData=ri,bt.AxiosError=tt,bt.Cancel=bt.CanceledError,bt.all=function(t){return Promise.all(t)},bt.spread=R_,bt.isAxiosError=I_,bt.mergeConfig=Mn,bt.AxiosHeaders=Ce,bt.formToJSON=t=>pf(N.isHTMLForm(t)?new FormData(t):t),bt.getAdapter=hf.getAdapter,bt.HttpStatusCode=F_,bt.default=bt;const _s=bt;function B_(t){return t&&t.__esModule&&Object.prototype.hasOwnProperty.call(t,"default")?t.default:t}var gf={exports:{}},wt=gf.exports={},pe,fe;function bs(){throw new Error("setTimeout has not been defined")}function xs(){throw new Error("clearTimeout has not been defined")}(function(){try{typeof setTimeout=="function"?pe=setTimeout:pe=bs}catch{pe=bs}try{typeof clearTimeout=="function"?fe=clearTimeout:fe=xs}catch{fe=xs}})();function yf(t){if(pe===setTimeout)return setTimeout(t,0);if((pe===bs||!pe)&&setTimeout)return pe=setTimeout,setTimeout(t,0);try{return pe(t,0)}catch{try{return pe.call(null,t,0)}catch{return pe.call(this,t,0)}}}function D_(t){if(fe===clearTimeout)return clearTimeout(t);if((fe===xs||!fe)&&clearTimeout)return fe=clearTimeout,clearTimeout(t);try{return fe(t)}catch{try{return fe.call(null,t)}catch{return fe.call(this,t)}}}var Ee=[],Ln=!1,rn,ho=-1;function M_(){!Ln||!rn||(Ln=!1,rn.length?Ee=rn.concat(Ee):ho=-1,Ee.length&&wf())}function wf(){if(!Ln){var t=yf(M_);Ln=!0;for(var e=Ee.length;e;){for(rn=Ee,Ee=[];++ho1)for(var n=1;nconsole.error("SEMVER",...t):()=>{};var bf=U_;const H_="2.0.0",xf=256,V_=Number.MAX_SAFE_INTEGER||9007199254740991,W_=16,G_=xf-6,q_=["major","premajor","minor","preminor","patch","prepatch","prerelease"];var Ef={MAX_LENGTH:xf,MAX_SAFE_COMPONENT_LENGTH:W_,MAX_SAFE_BUILD_LENGTH:G_,MAX_SAFE_INTEGER:V_,RELEASE_TYPES:q_,SEMVER_SPEC_VERSION:H_,FLAG_INCLUDE_PRERELEASE:1,FLAG_LOOSE:2},Es={exports:{}};(function(t,e){const{MAX_SAFE_COMPONENT_LENGTH:n,MAX_SAFE_BUILD_LENGTH:r,MAX_LENGTH:o}=Ef,i=bf;e=t.exports={};const s=e.re=[],l=e.safeRe=[],u=e.src=[],f=e.t={};let p=0;const h="[a-zA-Z0-9-]",y=[["\\s",1],["\\d",o],[h,r]],g=$=>{for(const[P,B]of y)$=$.split("".concat(P,"*")).join("".concat(P,"{0,").concat(B,"}")).split("".concat(P,"+")).join("".concat(P,"{1,").concat(B,"}"));return $},b=($,P,B)=>{const R=g(P),j=p++;i($,j,P),f[$]=j,u[j]=P,s[j]=new RegExp(P,B?"g":void 0),l[j]=new RegExp(R,B?"g":void 0)};b("NUMERICIDENTIFIER","0|[1-9]\\d*"),b("NUMERICIDENTIFIERLOOSE","\\d+"),b("NONNUMERICIDENTIFIER","\\d*[a-zA-Z-]".concat(h,"*")),b("MAINVERSION","(".concat(u[f.NUMERICIDENTIFIER],")\\.(").concat(u[f.NUMERICIDENTIFIER],")\\.(").concat(u[f.NUMERICIDENTIFIER],")")),b("MAINVERSIONLOOSE","(".concat(u[f.NUMERICIDENTIFIERLOOSE],")\\.(").concat(u[f.NUMERICIDENTIFIERLOOSE],")\\.(").concat(u[f.NUMERICIDENTIFIERLOOSE],")")),b("PRERELEASEIDENTIFIER","(?:".concat(u[f.NUMERICIDENTIFIER],"|").concat(u[f.NONNUMERICIDENTIFIER],")")),b("PRERELEASEIDENTIFIERLOOSE","(?:".concat(u[f.NUMERICIDENTIFIERLOOSE],"|").concat(u[f.NONNUMERICIDENTIFIER],")")),b("PRERELEASE","(?:-(".concat(u[f.PRERELEASEIDENTIFIER],"(?:\\.").concat(u[f.PRERELEASEIDENTIFIER],")*))")),b("PRERELEASELOOSE","(?:-?(".concat(u[f.PRERELEASEIDENTIFIERLOOSE],"(?:\\.").concat(u[f.PRERELEASEIDENTIFIERLOOSE],")*))")),b("BUILDIDENTIFIER","".concat(h,"+")),b("BUILD","(?:\\+(".concat(u[f.BUILDIDENTIFIER],"(?:\\.").concat(u[f.BUILDIDENTIFIER],")*))")),b("FULLPLAIN","v?".concat(u[f.MAINVERSION]).concat(u[f.PRERELEASE],"?").concat(u[f.BUILD],"?")),b("FULL","^".concat(u[f.FULLPLAIN],"$")),b("LOOSEPLAIN","[v=\\s]*".concat(u[f.MAINVERSIONLOOSE]).concat(u[f.PRERELEASELOOSE],"?").concat(u[f.BUILD],"?")),b("LOOSE","^".concat(u[f.LOOSEPLAIN],"$")),b("GTLT","((?:<|>)?=?)"),b("XRANGEIDENTIFIERLOOSE","".concat(u[f.NUMERICIDENTIFIERLOOSE],"|x|X|\\*")),b("XRANGEIDENTIFIER","".concat(u[f.NUMERICIDENTIFIER],"|x|X|\\*")),b("XRANGEPLAIN","[v=\\s]*(".concat(u[f.XRANGEIDENTIFIER],")(?:\\.(").concat(u[f.XRANGEIDENTIFIER],")(?:\\.(").concat(u[f.XRANGEIDENTIFIER],")(?:").concat(u[f.PRERELEASE],")?").concat(u[f.BUILD],"?)?)?")),b("XRANGEPLAINLOOSE","[v=\\s]*(".concat(u[f.XRANGEIDENTIFIERLOOSE],")(?:\\.(").concat(u[f.XRANGEIDENTIFIERLOOSE],")(?:\\.(").concat(u[f.XRANGEIDENTIFIERLOOSE],")(?:").concat(u[f.PRERELEASELOOSE],")?").concat(u[f.BUILD],"?)?)?")),b("XRANGE","^".concat(u[f.GTLT],"\\s*").concat(u[f.XRANGEPLAIN],"$")),b("XRANGELOOSE","^".concat(u[f.GTLT],"\\s*").concat(u[f.XRANGEPLAINLOOSE],"$")),b("COERCEPLAIN","(^|[^\\d])(\\d{1,".concat(n,"})(?:\\.(\\d{1,").concat(n,"}))?(?:\\.(\\d{1,").concat(n,"}))?")),b("COERCE","".concat(u[f.COERCEPLAIN],"(?:$|[^\\d])")),b("COERCEFULL",u[f.COERCEPLAIN]+"(?:".concat(u[f.PRERELEASE],")?(?:").concat(u[f.BUILD],")?(?:$|[^\\d])")),b("COERCERTL",u[f.COERCE],!0),b("COERCERTLFULL",u[f.COERCEFULL],!0),b("LONETILDE","(?:~>?)"),b("TILDETRIM","(\\s*)".concat(u[f.LONETILDE],"\\s+"),!0),e.tildeTrimReplace="$1~",b("TILDE","^".concat(u[f.LONETILDE]).concat(u[f.XRANGEPLAIN],"$")),b("TILDELOOSE","^".concat(u[f.LONETILDE]).concat(u[f.XRANGEPLAINLOOSE],"$")),b("LONECARET","(?:\\^)"),b("CARETTRIM","(\\s*)".concat(u[f.LONECARET],"\\s+"),!0),e.caretTrimReplace="$1^",b("CARET","^".concat(u[f.LONECARET]).concat(u[f.XRANGEPLAIN],"$")),b("CARETLOOSE","^".concat(u[f.LONECARET]).concat(u[f.XRANGEPLAINLOOSE],"$")),b("COMPARATORLOOSE","^".concat(u[f.GTLT],"\\s*(").concat(u[f.LOOSEPLAIN],")$|^$")),b("COMPARATOR","^".concat(u[f.GTLT],"\\s*(").concat(u[f.FULLPLAIN],")$|^$")),b("COMPARATORTRIM","(\\s*)".concat(u[f.GTLT],"\\s*(").concat(u[f.LOOSEPLAIN],"|").concat(u[f.XRANGEPLAIN],")"),!0),e.comparatorTrimReplace="$1$2$3",b("HYPHENRANGE","^\\s*(".concat(u[f.XRANGEPLAIN],")\\s+-\\s+(").concat(u[f.XRANGEPLAIN],")\\s*$")),b("HYPHENRANGELOOSE","^\\s*(".concat(u[f.XRANGEPLAINLOOSE],")\\s+-\\s+(").concat(u[f.XRANGEPLAINLOOSE],")\\s*$")),b("STAR","(<|>)?=?\\s*\\*"),b("GTE0","^\\s*>=\\s*0\\.0\\.0\\s*$"),b("GTE0PRE","^\\s*>=\\s*0\\.0\\.0-0\\s*$")})(Es,Es.exports);var X_=Es.exports;const K_=Object.freeze({loose:!0}),Z_=Object.freeze({}),Y_=t=>t?typeof t!="object"?K_:t:Z_;var J_=Y_;const Pu=/^[0-9]+$/,Cf=(t,e)=>{const n=Pu.test(t),r=Pu.test(e);return n&&r&&(t=+t,e=+e),t===e?0:n&&!r?-1:r&&!n?1:tCf(e,t);var tb={compareIdentifiers:Cf,rcompareIdentifiers:Q_};const Kr=bf,{MAX_LENGTH:$u,MAX_SAFE_INTEGER:Zr}=Ef,{safeRe:ku,t:Ou}=X_,eb=J_,{compareIdentifiers:En}=tb;let nb=class ue{constructor(e,n){if(n=eb(n),e instanceof ue){if(e.loose===!!n.loose&&e.includePrerelease===!!n.includePrerelease)return e;e=e.version}else if(typeof e!="string")throw new TypeError('Invalid version. Must be a string. Got type "'.concat(typeof e,'".'));if(e.length>$u)throw new TypeError("version is longer than ".concat($u," characters"));Kr("SemVer",e,n),this.options=n,this.loose=!!n.loose,this.includePrerelease=!!n.includePrerelease;const r=e.trim().match(n.loose?ku[Ou.LOOSE]:ku[Ou.FULL]);if(!r)throw new TypeError("Invalid Version: ".concat(e));if(this.raw=e,this.major=+r[1],this.minor=+r[2],this.patch=+r[3],this.major>Zr||this.major<0)throw new TypeError("Invalid major version");if(this.minor>Zr||this.minor<0)throw new TypeError("Invalid minor version");if(this.patch>Zr||this.patch<0)throw new TypeError("Invalid patch version");r[4]?this.prerelease=r[4].split(".").map(o=>{if(/^[0-9]+$/.test(o)){const i=+o;if(i>=0&&i=0;)typeof this.prerelease[i]=="number"&&(this.prerelease[i]++,i=-2);if(i===-1){if(n===this.prerelease.join(".")&&r===!1)throw new Error("invalid increment argument: identifier already exists");this.prerelease.push(o)}}if(n){let i=[n,o];r===!1&&(i=[n]),En(this.prerelease[0],n)===0?isNaN(this.prerelease[1])&&(this.prerelease=i):this.prerelease=i}break}default:throw new Error("invalid increment argument: ".concat(e))}return this.raw=this.format(),this.build.length&&(this.raw+="+".concat(this.build.join("."))),this}};var Sf=nb;const Lu=Sf,rb=(t,e,n=!1)=>{if(t instanceof Lu)return t;try{return new Lu(t,e)}catch(r){if(!n)return null;throw r}};var ob=rb;const ib=ob,sb=(t,e)=>{const n=ib(t,e);return n?n.version:null};var ab=sb;const lb=Uo(ab),ub=Sf,cb=(t,e)=>new ub(t,e).major;var pb=cb;const Ru=Uo(pb);class fb{constructor(e){li(this,"bus");typeof e.getVersion!="function"||!lb(e.getVersion())?console.warn("Proxying an event bus with an unknown or invalid version"):Ru(e.getVersion())!==Ru(this.getVersion())&&console.warn("Proxying an event bus of version "+e.getVersion()+" with "+this.getVersion()),this.bus=e}getVersion(){return"3.2.0"}subscribe(e,n){this.bus.subscribe(e,n)}unsubscribe(e,n){this.bus.unsubscribe(e,n)}emit(e,n){this.bus.emit(e,n)}}class db{constructor(){li(this,"handlers",new Map)}getVersion(){return"3.2.0"}subscribe(e,n){this.handlers.set(e,(this.handlers.get(e)||[]).concat(n))}unsubscribe(e,n){this.handlers.set(e,(this.handlers.get(e)||[]).filter(r=>r!=n))}emit(e,n){(this.handlers.get(e)||[]).forEach(r=>{try{r(n)}catch(o){console.error("could not invoke event listener",o)}})}}let sr=null;function hb(){return sr!==null?sr:typeof window>"u"?new Proxy({},{get:()=>()=>console.error("Window not available, EventBus can not be established!")}):(typeof window.OC<"u"&&window.OC._eventBus&&typeof window._nc_event_bus>"u"&&(console.warn("found old event bus instance at OC._eventBus. Update your version!"),window._nc_event_bus=window.OC._eventBus),typeof(window==null?void 0:window._nc_event_bus)<"u"?sr=new fb(window._nc_event_bus):sr=window._nc_event_bus=new db,sr)}function mb(t,e){hb().subscribe(t,e)}let dr;const Af=[];function vb(){if(dr===void 0){const t=document==null?void 0:document.getElementsByTagName("head")[0];dr=t?t.getAttribute("data-requesttoken"):null}return dr}function gb(t){Af.push(t)}mb("csrf-token-update",t=>{dr=t.token,Af.forEach(e=>{try{e(dr)}catch(n){console.error("error updating CSRF token observer",n)}})});const Iu=Symbol("csrf-retry"),yb=t=>async e=>{var n;const{config:r,response:o,request:i}=e,s=i==null?void 0:i.responseURL;if((o==null?void 0:o.status)===412&&((n=o==null?void 0:o.data)==null?void 0:n.message)==="CSRF check failed"&&r[Iu]===void 0){console.warn("Request to ".concat(s," failed because of a CSRF mismatch. Fetching a new token"));const{data:{token:l}}=await t.get(Gs("/csrftoken"));return console.debug("New request token ".concat(l," fetched")),t.defaults.headers.requesttoken=l,t({...r,headers:{...r.headers,requesttoken:l},[Iu]:!0})}return Promise.reject(e)},Yr=Symbol("retryDelay"),wb=t=>async e=>{var n;const{config:r,response:o,request:i}=e,s=i==null?void 0:i.responseURL,l=o==null?void 0:o.status,u=o==null?void 0:o.headers;if(l===503&&u["x-nextcloud-maintenance-mode"]==="1"&&r.retryIfMaintenanceMode&&(!r[Yr]||r[Yr]<=32)){const f=((n=r[Yr])!=null?n:1)*2;return console.warn("Request to ".concat(s," failed because of maintenance mode. Retrying in ").concat(f,"s")),await new Promise(p=>{setTimeout(p,f*1e3)}),t({...r,[Yr]:f})}return Promise.reject(e)},_b=async t=>{var e;const{config:n,response:r,request:o}=t,i=o==null?void 0:o.responseURL;return(r==null?void 0:r.status)===401&&((e=r==null?void 0:r.data)==null?void 0:e.message)==="Current user is not logged in"&&n.reloadExpiredSession&&(window!=null&&window.location)&&(console.error("Request to ".concat(i," failed because the user session expired. Reloading the page …")),window.location.reload()),Promise.reject(t)};var Fu;const Tf=_s.create({headers:{requesttoken:(Fu=vb())!=null?Fu:"","X-Requested-With":"XMLHttpRequest"}}),An=Object.assign(Tf,{CancelToken:_s.CancelToken,isCancel:_s.isCancel});An.interceptors.response.use(t=>t,yb(An)),An.interceptors.response.use(t=>t,wb(An)),An.interceptors.response.use(t=>t,_b),gb(t=>{Tf.defaults.headers.requesttoken=t});const bb={__name:"IntroAnimation",emits:["next"],setup(t,{emit:e}){const n=fn("firstrunwizard","Nextcloud.mp4"),r=fn("firstrunwizard","Nextcloud.webm"),o=rt("firstrunwizard","Welcome to {cloudName}!",{cloudName:window.OC.theme.name});function i(){e("next")}return{__sfc:!0,emit:e,videoMp4:n,videoWebm:r,videoFallbackText:o,handleEnded:i}}},xb="_video_1p112_2",Eb="_wrapper_1p112_8",Cb={video:xb,wrapper:Eb};function Qt(t,e,n,r,o,i,s,l){var u=typeof t=="function"?t.options:t;e&&(u.render=e,u.staticRenderFns=n,u._compiled=!0),r&&(u.functional=!0),i&&(u._scopeId="data-v-"+i);var f;if(s?(f=function(y){y=y||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,!y&&typeof __VUE_SSR_CONTEXT__<"u"&&(y=__VUE_SSR_CONTEXT__),o&&o.call(this,y),y&&y._registeredComponents&&y._registeredComponents.add(s)},u._ssrRegister=f):o&&(f=l?function(){o.call(this,(u.functional?this.parent:this).$root.$options.shadowRoot)}:o),f)if(u.functional){u._injectStyles=f;var p=u.render;u.render=function(y,g){return f.call(g),p(y,g)}}else{var h=u.beforeCreate;u.beforeCreate=h?[].concat(h,f):[f]}return{exports:t,options:u}}var Sb=function(){var t=this,e=t._self._c,n=t._self._setupProxy;return e("div",{class:t.$style.wrapper},[e("video",{class:t.$style.video,attrs:{playsinline:"",autoplay:"",muted:""},domProps:{muted:!0},on:{ended:n.handleEnded}},[e("source",{attrs:{src:n.videoWebm,type:"video/webm"}}),e("source",{attrs:{src:n.videoMp4,type:"video/mp4"}}),t._v(" "+t._s(n.videoFallbackText)+" ")])])},Ab=[];const Bu={$style:Cb};function Tb(t){for(var e in Bu)this[e]=Bu[e]}var Nb=Qt(bb,Sb,Ab,!1,Tb,null,null,null);const Pb=Nb.exports,$b={name:"NcIconSvgWrapper",props:{inline:{type:Boolean,default:!1},svg:{type:String,default:""},name:{type:String,default:""},path:{type:String,default:""},size:{type:[Number,String],default:20,validator:t=>typeof t=="number"||t==="auto"}},computed:{iconSize(){return typeof this.size=="number"?"".concat(this.size,"px"):this.size},cleanSvg(){if(!this.svg||this.path)return;const t=ep.sanitize(this.svg),e=new DOMParser().parseFromString(t,"image/svg+xml");return e.querySelector("parsererror")?(st.util.warn("SVG is not valid"),""):(e.documentElement.id&&e.documentElement.removeAttribute("id"),e.documentElement.outerHTML)},attributes(){return{class:["icon-vue",{"icon-vue--inline":this.inline}],style:{"--icon-size":this.iconSize},role:"img","aria-hidden":this.name?void 0:!0,"aria-label":this.name||void 0}}}};var kb=function(){var t=this,e=t._self._c;return t.cleanSvg?e("span",t._b({domProps:{innerHTML:t._s(t.cleanSvg)}},"span",t.attributes,!1)):e("span",t._b({},"span",t.attributes,!1),[e("svg",{attrs:{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"}},[e("path",{attrs:{d:t.path}})])])},Ob=[],Lb=Jt($b,kb,Ob,!1,null,"2d0a4d76",null,null);const ua=Lb.exports;var Rb="M12,5.5A3.5,3.5 0 0,1 15.5,9A3.5,3.5 0 0,1 12,12.5A3.5,3.5 0 0,1 8.5,9A3.5,3.5 0 0,1 12,5.5M5,8C5.56,8 6.08,8.15 6.53,8.42C6.38,9.85 6.8,11.27 7.66,12.38C7.16,13.34 6.16,14 5,14A3,3 0 0,1 2,11A3,3 0 0,1 5,8M19,8A3,3 0 0,1 22,11A3,3 0 0,1 19,14C17.84,14 16.84,13.34 16.34,12.38C17.2,11.27 17.62,9.85 17.47,8.42C17.92,8.15 18.44,8 19,8M5.5,18.25C5.5,16.18 8.41,14.5 12,14.5C15.59,14.5 18.5,16.18 18.5,18.25V20H5.5V18.25M0,20V18.5C0,17.11 1.89,15.94 4.45,15.6C3.86,16.28 3.5,17.22 3.5,18.25V20H0M24,20H20.5V18.25C20.5,17.22 20.14,16.28 19.55,15.6C22.11,15.94 24,17.11 24,18.5V20Z",Ib="M20,11V13H8L13.5,18.5L12.08,19.92L4.16,12L12.08,4.08L13.5,5.5L8,11H20Z",Fb="M4,11V13H16L10.5,18.5L11.92,19.92L19.84,12L11.92,4.08L10.5,5.5L16,11H4Z",Bb="M10,2H14A2,2 0 0,1 16,4V6H20A2,2 0 0,1 22,8V19A2,2 0 0,1 20,21H4A2,2 0 0,1 2,19V8A2,2 0 0,1 4,6H8V4A2,2 0 0,1 10,2M14,6V4H10V6H14M10.5,17.5L17.09,10.91L15.68,9.5L10.5,14.67L8.41,12.59L7,14L10.5,17.5Z",Db="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",Mb="M20,8L12,13L4,8V6L12,11L20,6M20,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V6C22,4.89 21.1,4 20,4Z",zb="M12,17A2,2 0 0,0 14,15C14,13.89 13.1,13 12,13A2,2 0 0,0 10,15A2,2 0 0,0 12,17M18,8A2,2 0 0,1 20,10V20A2,2 0 0,1 18,22H6A2,2 0 0,1 4,20V10C4,8.89 4.9,8 6,8H7V6A5,5 0 0,1 12,1A5,5 0 0,1 17,6V8H18M12,3A3,3 0 0,0 9,6V8H15V6A3,3 0 0,0 12,3Z",jb="M21,9L17,5V8H10V10H17V13M7,11L3,15L7,19V16H14V14H7V11Z";const Ub={__name:"SlideShow",props:{pages:null,currentIndex:null},emits:["update:current-index"],setup(t,{emit:e}){const n=t;wc((g,b)=>({"2e2ad5bd":b.cssLogoUrl}));const r=Kp(),o=xt(!1),i=_t(()=>n.pages[n.currentIndex]),s=_t(()=>n.currentIndex===0),l=_t(()=>n.currentIndex===n.pages.length-1),u="url('".concat(fn("firstrunwizard","nextcloudLogo.svg"),"')"),f=Vd("transitions"),p=_t(()=>{const g=o.value?"right":"left";return{active:f["slide-active"],enter:f["slide-".concat(g,"-enter")],leave:f["slide-".concat(g,"-leave-to")]}}),h=_t(()=>{const g=o.value?"down":"up";return{active:f["slide-active"],enter:f["slide-".concat(g,"-enter")],leave:f["slide-".concat(g,"-leave-to")]}});Vn(()=>n.currentIndex,(g,b)=>{g$.id===g);e("update:current-index",b)}return{__sfc:!0,props:n,emit:e,isMobile:r,reverseTransition:o,currentPage:i,isFirstPage:s,isLastPage:l,cssLogoUrl:u,transitions:f,transitionClasses:p,waveTransitionClasses:h,goToPage:y,t:rt,NcButton:qo,NcIconSvgWrapper:ua,mdiArrowLeft:Ib,mdiArrowRight:Fb,mdiClose:Db}}},Hb="_wrapper_1pqur_1",Vb="_background_circle_1pqur_11",Wb="_background_bar_1pqur_21",Gb="_button_back_1pqur_30",qb="_button_close_1pqur_36",Xb="_button_wrapper_1pqur_42",Kb="_logo_1pqur_55",Zb="_first_page_scroller_1pqur_68",Yb={wrapper:Hb,background_circle:Vb,background_bar:Wb,button_back:Gb,button_close:qb,button_wrapper:Xb,logo:Kb,first_page_scroller:Zb},Jb={"slide-active":"_slide-active_8t7o1_5","slide-left-enter":"_slide-left-enter_8t7o1_9","slide-left-leave-to":"_slide-left-leave-to_8t7o1_14","slide-right-enter":"_slide-right-enter_8t7o1_19","slide-right-leave-to":"_slide-right-leave-to_8t7o1_24","slide-up-enter":"_slide-up-enter_8t7o1_29","slide-up-leave-to":"_slide-up-leave-to_8t7o1_33","slide-down-enter":"_slide-down-enter_8t7o1_37","slide-down-leave-to":"_slide-down-leave-to_8t7o1_41"};var Qb=function(){var t=this,e=t._self._c,n=t._self._setupProxy;return e("div",{class:t.$style.wrapper},[e("Transition",{attrs:{"enter-class":n.waveTransitionClasses.enter,"enter-active-class":n.waveTransitionClasses.active,"leave-active-class":n.waveTransitionClasses.active,"leave-to-class":n.waveTransitionClasses.leave}},[n.isFirstPage?e("div",{class:t.$style.background_circle}):t._e()]),e("div",{class:t.$style.background_bar}),!n.isFirstPage&&n.isMobile?e(n.NcButton,{class:t.$style.button_back,attrs:{"aria-label":n.t("firstrunwizard","Go to previous page"),type:"tertiary"},on:{click:function(r){return t.$emit("update:current-index",t.currentIndex-1)}},scopedSlots:t._u([{key:"icon",fn:function(){return[e(n.NcIconSvgWrapper,{attrs:{path:n.mdiArrowLeft}})]},proxy:!0}],null,!1,1565937943)}):t._e(),e(n.NcButton,{class:t.$style.button_close,attrs:{"aria-label":n.t("firstrunwizard","Close"),type:n.isFirstPage?"primary":"tertiary"},on:{click:function(r){return t.$emit("update:current-index",-1)}},scopedSlots:t._u([{key:"icon",fn:function(){return[e(n.NcIconSvgWrapper,{attrs:{path:n.mdiClose}})]},proxy:!0}])}),n.isFirstPage?e("div",{class:t.$style.logo}):t._e(),e("Transition",{attrs:{mode:"out-in","enter-class":n.transitionClasses.enter,"enter-active-class":n.transitionClasses.active,"leave-active-class":n.transitionClasses.active,"leave-to-class":n.transitionClasses.leave}},[e(n.currentPage.component,{tag:"component",attrs:{"scroller-classes":n.isFirstPage?t.$style.first_page_scroller:""}})],1),e("div",{class:t.$style.button_wrapper},t._l(n.currentPage.buttons,function(r,o){return e(n.NcButton,{key:r.to,attrs:{alignment:"center-reverse",type:o===n.currentPage.buttons.length-1?"primary":"secondary",wide:o===n.currentPage.buttons.length-1},on:{click:function(i){return n.goToPage(r.to)}},scopedSlots:t._u([n.isLastPage?null:{key:"icon",fn:function(){return[e(n.NcIconSvgWrapper,{attrs:{path:n.mdiArrowRight}})]},proxy:!0}],null,!0)},[t._v(" "+t._s(r.label)+" ")])}),1)],1)},tx=[];const Du={$style:Yb,transitions:Jb};function ex(t){for(var e in Du)this[e]=Du[e]}var nx=Qt(Ub,Qb,tx,!1,ex,null,null,null);const rx=nx.exports,ox={__name:"Card",props:{title:null,subtitle:null,href:null},setup(t){const e=t,n=_t(()=>!!e.href);return{__sfc:!0,props:e,isLink:n}}},ix="_card_ogulh_1",sx="_icon_ogulh_8",ax="_heading_ogulh_17",lx="_link_ogulh_22",ux="_text_ogulh_32",cx={card:ix,icon:sx,heading:ax,link:lx,text:ux};var px=function(){var t=this,e=t._self._c,n=t._self._setupProxy;return e(n.isLink?"a":"div",{tag:"element",class:[t.$style.card,{[t.$style.link]:n.isLink}],attrs:{href:t.href||void 0,target:n.isLink?"_blank":void 0,rel:n.isLink?"noreferrer":void 0}},[e("div",{class:t.$style.icon},[t._t("default")],2),e("div",{class:t.$style.text},[e("h3",{class:t.$style.heading},[t._v(" "+t._s(t.title)+" ")]),t.subtitle!==void 0?e("p",{domProps:{textContent:t._s(t.subtitle)}}):t._e()])])},fx=[];const Mu={$style:cx};function dx(t){for(var e in Mu)this[e]=Mu[e]}var hx=Qt(ox,px,fx,!1,dx,null,null,null);const oi=hx.exports,mx={__name:"WizardPage",props:{title:null,subtitle:null,scrollerClasses:null},setup(t){return{__sfc:!0}}},vx="_wrapper_101zf_2",gx="_scroller_101zf_9",yx="_heading_101zf_14",wx="_subtitle_101zf_18",_x="_content_101zf_24",bx={wrapper:vx,scroller:gx,heading:yx,subtitle:wx,content:_x};var xx=function(){var t=this,e=t._self._c;return t._self._setupProxy,e("div",{class:t.$style.wrapper},[e("div",{class:[t.$style.scroller,t.scrollerClasses]},[e("h2",{class:t.$style.heading},[t._v(" "+t._s(t.title)+" ")]),t.subtitle?e("p",{class:t.$style.subtitle},[t._v(" "+t._s(t.subtitle)+" ")]):t._e(),e("div",{class:t.$style.content},[t._t("default")],2)])])},Ex=[];const zu={$style:bx};function Cx(t){for(var e in zu)this[e]=zu[e]}var Sx=Qt(mx,xx,Ex,!1,Cx,null,null,null);const Xn=Sx.exports,Ax={__name:"AboutNextcloud",setup(t){return{__sfc:!0,versionNumber:rt("firstrunwizard","This Nextcloud is on version {version}",{version:window.OC.config.versionstring}),t:rt,Card:oi,WizardPage:Xn}}},Tx="_version_m2t30_2",Nx={version:Tx};var Px=function(){var t=this,e=t._self._c,n=t._self._setupProxy;return e(n.WizardPage,{attrs:{title:n.t("firstrunwizard","More about Nextcloud")}},[e(n.Card,{attrs:{href:"https://apps.nextcloud.com/",title:n.t("firstrunwizard","Explore more apps ↗"),subtitle:n.t("firstrunwizard","Extend the functionality of Nextcloud with hundreds of community-developed apps.")}}),e(n.Card,{attrs:{href:"https://nextcloud.com/contribute/",title:n.t("firstrunwizard","Get involved! ↗"),subtitle:n.t("firstrunwizard","Be a part of the community that helps build, design, translate and promote Nextcloud!")}}),e(n.Card,{attrs:{href:"https://docs.nextcloud.com/",title:n.t("firstrunwizard","Need help? ↗"),subtitle:n.t("firstrunwizard","Find out more about your Nextcloud setup with the admin, user or developer documentation.")}}),e(n.Card,{attrs:{href:"https://nextcloud.com/enterprise/",title:n.t("firstrunwizard","For large organisations ↗"),subtitle:n.t("firstrunwizard","Get Nextcloud Enterprise for mission critical environments where advanced security and compliance are important.")}}),e("p",{class:t.$style.version},[t._v(" "+t._s(n.versionNumber)+" ")])],1)},$x=[];const ju={$style:Nx};function kx(t){for(var e in ju)this[e]=ju[e]}var Ox=Qt(Ax,Px,$x,!1,kx,null,null,null);const Lx=Ox.exports;function Bo(t,e,n){const r=document.querySelector("#initial-state-".concat(t,"-").concat(e));if(r===null){if(n!==void 0)return n;throw new Error("Could not find initial state ".concat(e," of ").concat(t))}try{return JSON.parse(atob(r.value))}catch{throw new Error("Could not parse initial state ".concat(e," of ").concat(t))}}const Rx={__name:"AppStoreBadge",props:{type:null},setup(t){const e=t;wc((u,f)=>({"7adda1c6":f.cssBackgroundImage}));const n=Bo("firstrunwizard","android"),r=Bo("firstrunwizard","ios"),o=_t(()=>{if(e.type==="ios")return fn("firstrunwizard","iosBadge.png");if(e.type==="android")return fn("firstrunwizard","androidBadge.png")}),i=_t(()=>"url('".concat(o.value,"')")),s=_t(()=>{if(e.type==="ios")return r;if(e.type==="android")return n}),l=_t(()=>{if(e.type==="ios")return rt("firstrunwizard","Download on Apple app store");if(e.type==="android")return rt("firstrunwizard","Download on Google play store")});return{__sfc:!0,props:e,android:n,ios:r,badgeImagePath:o,cssBackgroundImage:i,href:s,ariaLabel:l}}},Ix="_badge_1lvp9_1",Fx={badge:Ix};var Bx=function(){var t=this,e=t._self._c,n=t._self._setupProxy;return e("a",{class:t.$style.badge,attrs:{"aria-label":n.ariaLabel,target:"_blank",rel:"noreferrer",href:n.href}})},Dx=[];const Uu={$style:Fx};function Mx(t){for(var e in Uu)this[e]=Uu[e]}var zx=Qt(Rx,Bx,Dx,!1,Mx,null,null,null);const jx=zx.exports,Ux={__name:"DeviceIntegration",setup(t){const e=Bo("firstrunwizard","desktop"),n=Gs("settings/user/sync-clients");return{__sfc:!0,desktop:e,syncClientsUrl:n,t:rt,AppStoreBadge:jx,Card:oi,WizardPage:Xn}}};var Hx=function(){var t=this,e=t._self._c,n=t._self._setupProxy;return e(n.WizardPage,{attrs:{title:n.t("firstrunwizard","Seamless integration with your devices."),subtitle:n.t("firstrunwizard","Sync your files across your devices with the desktop and mobile apps, and connect your calendar and contacts.")}},[e(n.AppStoreBadge,{attrs:{type:"android"}}),e(n.AppStoreBadge,{attrs:{type:"ios"}}),e(n.Card,{attrs:{href:n.desktop,title:n.t("firstrunwizard","Desktop app ↗"),subtitle:n.t("firstrunwizard","Download For Windows, Mac OS and Linux.")}}),e(n.Card,{attrs:{href:n.syncClientsUrl,title:n.t("firstrunwizard","Calendar and contacts ↗"),subtitle:n.t("firstrunwizard","Connect your calendar and contacts with your devices.")}})],1)},Vx=[],Wx=Qt(Ux,Hx,Vx,!1,null,null,null,null);const Gx=Wx.exports,de={version:"8",link:"https://nextcloud.com/blog/nextcloud-hub8/",releaseNotes:["✨ "+rt("firstrunwizard","Assistant: chat summaries, Mail reply suggestions, answers based on your data, and more"),"🖱️ "+rt("firstrunwizard","Interactive previews for files, folders, boards and events"),"🌐 "+rt("firstrunwizard","Federated chat and message editing in Talk"),"🗒️ "+rt("firstrunwizard","Mini-apps based on Tables"),"🔗 "+rt("firstrunwizard","Public Collectives sharing, previews and QR-codes"),"👥 "+rt("firstrunwizard","Manage your team resources like a pro with Nextcloud Teams"),"🔄 "+rt("firstrunwizard","Forms: automatically sync with a spreadsheet")],videoAltText:rt("firstrunwizard","Get to know the new features of Hub 8"),shareSubject:rt("firstrunwizard","Nextcloud Hub {version} release",{version:"8"})},qx={__name:"HubRelease",setup(t){const e=fn("firstrunwizard","nextcloudHub.mp4"),n=fn("firstrunwizard","nextcloudHub.webm");return{__sfc:!0,videoMp4:e,videoWebm:n,t:rt,HUBRelease:de,WizardPage:Xn}}},Xx="_anchor_y1t00_2",Kx="_animation_y1t00_6",Zx={anchor:Xx,animation:Kx};var Yx=function(){var t=this,e=t._self._c,n=t._self._setupProxy;return e(n.WizardPage,{attrs:{title:n.t("firstrunwizard","Introducing Nextcloud Hub {version}",{version:n.HUBRelease.version})}},[e("a",{class:t.$style.anchor,attrs:{href:n.HUBRelease.link,target:"_blank"}},[e("video",{class:t.$style.animation,attrs:{playsinline:"",autoplay:"",muted:""},domProps:{muted:!0}},[e("source",{attrs:{src:n.videoWebm,type:"video/webm;codecs=vp9"}}),e("source",{attrs:{src:n.videoMp4,type:"video/mp4"}}),t._v(" "+t._s(n.HUBRelease.videoAltText)+" ")])])])},Jx=[];const Hu={$style:Zx};function Qx(t){for(var e in Hu)this[e]=Hu[e]}var t2=Qt(qx,Yx,Jx,!1,Qx,null,null,null);const e2=t2.exports,n2={__name:"KeyNotes",props:{scrollerClasses:null},setup(t){return{__sfc:!0,mdiAccountGroup:Rb,mdiBriefcaseCheck:Bb,mdiLock:zb,mdiSwapHorizontal:jb,t:rt,NcIconSvgWrapper:ua,Card:oi,WizardPage:Xn}}};var r2=function(){var t=this,e=t._self._c,n=t._self._setupProxy;return e(n.WizardPage,{attrs:{"scroller-classes":t.scrollerClasses,title:n.t("firstrunwizard","A collaboration platform that puts you in control")}},[e(n.Card,{attrs:{title:n.t("firstrunwizard","Privacy"),subtitle:n.t("firstrunwizard","Host your data and files where you decide.")}},[e(n.NcIconSvgWrapper,{attrs:{path:n.mdiLock}})],1),e(n.Card,{attrs:{title:n.t("firstrunwizard","Productivity"),subtitle:n.t("firstrunwizard","Collaborate and communicate across any platform.")}},[e(n.NcIconSvgWrapper,{attrs:{path:n.mdiBriefcaseCheck}})],1),e(n.Card,{attrs:{title:n.t("firstrunwizard","Interoperability"),subtitle:n.t("firstrunwizard","Import and export anything you want with open standards.")}},[e(n.NcIconSvgWrapper,{attrs:{path:n.mdiSwapHorizontal}})],1),e(n.Card,{attrs:{title:n.t("firstrunwizard","Community"),subtitle:n.t("firstrunwizard","Enjoy constant improvements from a thriving open-source community.")}},[e(n.NcIconSvgWrapper,{attrs:{path:n.mdiAccountGroup}})],1)],1)},o2=[],i2=Qt(n2,r2,o2,!1,null,null,null,null);const s2=i2.exports,a2='',l2='\n',u2='\n',c2={__name:"SharePage",setup(t){var e,n;const r=encodeURIComponent(encodeURI(de.link)),o=encodeURIComponent((e=de.shareSubject)!=null?e:rt("firstrunwizard","Nextcloud Hub {version} release",{version:de.version})),i=encodeURIComponent(rt("firstrunwizard","Read more about it on the Nextcloud Hub {version} blog",{version:de.version})+"\n"+de.link),s=[{id:"facebook",name:"Facebook",link:"https://www.facebook.com/sharer/sharer.php?u=".concat(r),icon:a2},{id:"x",name:"X",link:"https://x.com/intent/post?url=".concat(r,"&via=Nextclouders&text=").concat(encodeURIComponent((n=de.shareSubject)!=null?n:"")),icon:u2},{id:"mastodon",name:"Mastodon",link:"https://mastodon.social/share?text=".concat(r),icon:l2},{id:"email",name:"EMail",link:"mailto:?subject=".concat(o,"&body=").concat(i),icon:Mb}];return{__sfc:!0,encodedLink:r,mailSubject:o,mailBody:i,shareLinks:s,t:rt,NcButton:qo,NcIconSvgWrapper:ua,HubRelease:de,WizardPage:Xn,Card:oi}}},p2="_share_section_1a4qx_2",f2="_share_wrapper_1a4qx_6",d2="_card_1a4qx_15",h2={share_section:p2,share_wrapper:f2,card:d2};var m2=function(){var t=this,e=t._self._c,n=t._self._setupProxy;return e(n.WizardPage,{attrs:{title:n.t("firstrunwizard","Find out more on the blog")}},[e(n.NcButton,{attrs:{href:n.HubRelease.link,target:"_blank"}},[t._v(" "+t._s(n.t("firstrunwizard","Read the Nextcloud Hub {version} blog",{version:n.HubRelease.version}))+" ↗ ")]),e("section",{class:t.$style.share_section},[e("h2",[t._v(t._s(n.t("firstrunwizard","Share your opinion about Nextcloud Hub {version}",{version:n.HubRelease.version})))]),e("div",{class:t.$style.share_wrapper},t._l(n.shareLinks,function(r){return e(n.Card,{key:r.id,class:t.$style.card,attrs:{href:r.link,title:r.id==="mail"?n.t("firstrunwizard","Share via email"):n.t("firstrunwizard","Share on {socialMedia}",{socialMedia:r.name})}},[r.icon?e(n.NcIconSvgWrapper,{attrs:{svg:r.id!=="email"?r.icon:void 0,path:r.id==="email"?r.icon:void 0}}):t._e()],1)}),1)])],1)},v2=[];const Vu={$style:h2};function g2(t){for(var e in Vu)this[e]=Vu[e]}var y2=Qt(c2,m2,v2,!1,g2,null,null,null);const w2=y2.exports,_2={__name:"WhatsNew",setup(t){return{__sfc:!0,t:rt,HubRelease:de,WizardPage:Xn}}},b2="_list_lk7o9_2",x2="_entry_lk7o9_6",E2={list:b2,entry:x2};var C2=function(){var t=this,e=t._self._c,n=t._self._setupProxy;return e(n.WizardPage,{attrs:{title:n.t("firstrunwizard","New in Nextcloud Hub {version}",{version:n.HubRelease.version})+" 🚀"}},[e("ul",{class:t.$style.list},t._l(n.HubRelease.releaseNotes,function(r,o){return e("li",{key:o,class:t.$style.entry},[t._v(" "+t._s(r)+" ")])}),0)])},S2=[];const Wu={$style:E2};function A2(t){for(var e in Wu)this[e]=Wu[e]}var T2=Qt(_2,C2,S2,!1,A2,null,null,null);const N2=T2.exports,Oi=[{id:"key-aspects",component:s2,buttons:[{to:"hub-release",label:rt("firstrunwizard","What's new?")},{to:"devices",label:rt("firstrunwizard","Nextcloud on all your devices")}]},{id:"devices",component:Gx,buttons:[{to:"about",label:rt("firstrunwizard","More about Nextcloud")}]},{id:"about",component:Lx,buttons:[{to:"hub-release",label:rt("firstrunwizard","Nextcloud Hub {version}",{version:de.version})}]},{id:"hub-release",component:e2,buttons:[{to:"whats-new",label:rt("firstrunwizard","Read more")}]},{id:"whats-new",component:N2,buttons:[{to:"share",label:rt("firstrunwizard","Share on social media")}]},{id:"share",component:w2,buttons:[{to:"close",label:rt("firstrunwizard","Get started!")}]}],P2={__name:"App",setup(t,{expose:e}){const n=Kp(),r=Bo("firstrunwizard","changelogOnly",!1),o=Math.min(Oi.findIndex(y=>y.id==="hub-release"),0),i=xt(!1),s=xt(null),l=xt(),u=_t(()=>!n.value&&s.value!==null&&s.value>0),f=_t(()=>!n.value&&s.value!==null&&s.value{s.value===-1&&h()}),{__sfc:!0,isMobile:n,showChangelogOnly:r,changelogPage:o,showModal:i,currentPage:s,setReturnFocus:l,hasPrevious:u,hasNext:f,open:p,close:h,NcModal:Wp,IntroAnimation:Pb,SlideShow:rx,pages:Oi}}};var $2=function(){var t=this,e=t._self._c,n=t._self._setupProxy;return n.showModal?e(n.NcModal,{staticClass:"first-run-wizard",attrs:{id:"firstrunwizard",size:"normal",dark:!n.isMobile,"has-next":n.hasNext,"has-previous":n.hasPrevious,"set-return-focus":n.setReturnFocus},on:{close:n.close,next:function(r){n.currentPage+=1},previous:function(r){n.currentPage-=1}}},[n.currentPage===null?e(n.IntroAnimation,{on:{next:function(r){n.currentPage=n.showChangelogOnly?n.changelogPage:0}}}):e(n.SlideShow,{attrs:{pages:n.pages,"current-index":n.currentPage},on:{"update:currentIndex":function(r){n.currentPage=r},"update:current-index":function(r){n.currentPage=r}}})],1):t._e()},k2=[],O2=Qt(P2,$2,k2,!1,null,null,null,null);const L2=O2.exports;st.prototype.t=rt,st.prototype.n=Iv,st.prototype.oc_defaults=window.oc_defaults;const Cs=document.createElement("div");Cs.id="firstrunwizard",document.querySelector("body").appendChild(Cs);const R2=st.extend(L2),I2=new R2().$mount(Cs),B2=I2.open;export{B2 as open}; +var If=Object.defineProperty;var Ff=(t,e,n)=>e in t?If(t,e,{enumerable:!0,configurable:!0,writable:!0,value:n}):t[e]=n;var li=(t,e,n)=>Ff(t,typeof e!="symbol"?e+"":e,n);const an=globalThis||void 0||self;var Bf={},Pt=Object.freeze({}),Y=Array.isArray;function K(t){return t==null}function E(t){return t!=null}function yt(t){return t===!0}function Df(t){return t===!1}function xr(t){return typeof t=="string"||typeof t=="number"||typeof t=="symbol"||typeof t=="boolean"}function pt(t){return typeof t=="function"}function Ot(t){return t!==null&&typeof t=="object"}var Ss=Object.prototype.toString;function It(t){return Ss.call(t)==="[object Object]"}function Mf(t){return Ss.call(t)==="[object RegExp]"}function qu(t){var e=parseFloat(String(t));return e>=0&&Math.floor(e)===e&&isFinite(t)}function Li(t){return E(t)&&typeof t.then=="function"&&typeof t.catch=="function"}function zf(t){return t==null?"":Array.isArray(t)||It(t)&&t.toString===Ss?JSON.stringify(t,jf,2):String(t)}function jf(t,e){return e&&e.__v_isRef?e.value:e}function hr(t){var e=parseFloat(t);return isNaN(e)?t:e}function se(t,e){for(var n=Object.create(null),r=t.split(","),o=0;o-1)return t.splice(r,1)}}var Hf=Object.prototype.hasOwnProperty;function Rt(t,e){return Hf.call(t,e)}function mn(t){var e=Object.create(null);return function(n){var r=e[n];return r||(e[n]=t(n))}}var Vf=/-(\w)/g,ln=mn(function(t){return t.replace(Vf,function(e,n){return n?n.toUpperCase():""})}),Gf=mn(function(t){return t.charAt(0).toUpperCase()+t.slice(1)}),Wf=/\B([A-Z])/g,Er=mn(function(t){return t.replace(Wf,"-$1").toLowerCase()});function qf(t,e){function n(r){var o=arguments.length;return o?o>1?t.apply(e,arguments):t.call(e,r):t.call(e)}return n._length=t.length,n}function Xf(t,e){return t.bind(e)}var Xu=Function.prototype.bind?Xf:qf;function Ri(t,e){e=e||0;for(var n=t.length-e,r=new Array(n);n--;)r[n]=t[n+e];return r}function ht(t,e){for(var n in e)t[n]=e[n];return t}function Ku(t){for(var e={},n=0;n0,tc=Zt&&Zt.indexOf("edge/")>0;Zt&&Zt.indexOf("android")>0;var Qf=Zt&&/iphone|ipad|ipod|ios/.test(Zt),Sa=Zt&&Zt.match(/firefox\/(\d+)/),Fi={}.watch,ec=!1;if(zt)try{var Aa={};Object.defineProperty(Aa,"passive",{get:function(){ec=!0}}),window.addEventListener("test-passive",null,Aa)}catch{}var Lr,We=function(){return Lr===void 0&&(!zt&&typeof an<"u"?Lr=an.process&&Bf.VUE_ENV==="server":Lr=!1),Lr},vo=zt&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function $n(t){return typeof t=="function"&&/native code/.test(t.toString())}var Cr=typeof Symbol<"u"&&$n(Symbol)&&typeof Reflect<"u"&&$n(Reflect.ownKeys),mr;typeof Set<"u"&&$n(Set)?mr=Set:mr=function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(e){return this.set[e]===!0},t.prototype.add=function(e){this.set[e]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var $t=null;function nc(){return $t&&{proxy:$t}}function Ue(t){t===void 0&&(t=null),t||$t&&$t._scope.off(),$t=t,t&&t._scope.on()}var Ht=function(){function t(e,n,r,o,i,s,l,u){this.tag=e,this.data=n,this.children=r,this.text=o,this.elm=i,this.ns=void 0,this.context=s,this.fnContext=void 0,this.fnOptions=void 0,this.fnScopeId=void 0,this.key=n&&n.key,this.componentOptions=l,this.componentInstance=void 0,this.parent=void 0,this.raw=!1,this.isStatic=!1,this.isRootInsert=!0,this.isComment=!1,this.isCloned=!1,this.isOnce=!1,this.asyncFactory=u,this.asyncMeta=void 0,this.isAsyncPlaceholder=!1}return Object.defineProperty(t.prototype,"child",{get:function(){return this.componentInstance},enumerable:!1,configurable:!0}),t}(),Rn=function(t){t===void 0&&(t="");var e=new Ht;return e.text=t,e.isComment=!0,e};function Tn(t){return new Ht(void 0,void 0,void 0,String(t))}function Bi(t){var e=new Ht(t.tag,t.data,t.children&&t.children.slice(),t.text,t.elm,t.context,t.componentOptions,t.asyncFactory);return e.ns=t.ns,e.isStatic=t.isStatic,e.key=t.key,e.isComment=t.isComment,e.fnContext=t.fnContext,e.fnOptions=t.fnOptions,e.fnScopeId=t.fnScopeId,e.asyncMeta=t.asyncMeta,e.isCloned=!0,e}var td=0,Jr=[],ed=function(){for(var t=0;t0&&(o=fc(o,"".concat(e||"","_").concat(r)),Jn(o[0])&&Jn(s)&&(n[i]=Tn(s.text+o[0].text),o.shift()),n.push.apply(n,o)):xr(o)?Jn(s)?n[i]=Tn(s.text+o):o!==""&&n.push(Tn(o)):Jn(o)&&Jn(s)?n[i]=Tn(s.text+o.text):(yt(t._isVList)&&E(o.tag)&&K(o.key)&&E(e)&&(o.key="__vlist".concat(e,"_").concat(r,"__")),n.push(o)));return n}function wd(t,e){var n=null,r,o,i,s;if(Y(t)||typeof t=="string")for(n=new Array(t.length),r=0,o=t.length;r0,s=e?!!e.$stable:!i,l=e&&e.$key;if(!e)o={};else{if(e._normalized)return e._normalized;if(s&&r&&r!==Pt&&l===r.$key&&!i&&!r.$hasNormal)return r;o={};for(var u in e)e[u]&&u[0]!=="$"&&(o[u]=$d(t,n,u,e[u]))}for(var f in n)f in o||(o[f]=kd(n,f));return e&&Object.isExtensible(e)&&(e._normalized=o),Ct(o,"$stable",s),Ct(o,"$key",l),Ct(o,"$hasNormal",i),o}function $d(t,e,n,r){var o=function(){var i=$t;Ue(t);var s=arguments.length?r.apply(null,arguments):r({});s=s&&typeof s=="object"&&!Y(s)?[s]:$s(s);var l=s&&s[0];return Ue(i),s&&(!l||s.length===1&&l.isComment&&!vr(l))?void 0:s};return r.proxy&&Object.defineProperty(e,n,{get:o,enumerable:!0,configurable:!0}),o}function kd(t,e){return function(){return t[e]}}function Od(t){var e=t.$options,n=e.setup;if(n){var r=t._setupContext=Ld(t);Ue(t),Un();var o=Te(n,null,[t._props||ac({}),r],t,"setup");if(Hn(),Ue(),pt(o))e.render=o;else if(Ot(o))if(t._setupState=o,o.__sfc){var i=t._setupProxy={};for(var s in o)s!=="__sfc"&&Mi(i,o,s)}else for(var s in o)Qu(s)||Mi(t,o,s)}}function Ld(t){return{get attrs(){if(!t._attrsProxy){var e=t._attrsProxy={};Ct(e,"_v_attr_proxy",!0),yo(e,t.$attrs,Pt,t,"$attrs")}return t._attrsProxy},get listeners(){if(!t._listenersProxy){var e=t._listenersProxy={};yo(e,t.$listeners,Pt,t,"$listeners")}return t._listenersProxy},get slots(){return Id(t)},emit:Xu(t.$emit,t),expose:function(e){e&&Object.keys(e).forEach(function(n){return Mi(t,e,n)})}}}function yo(t,e,n,r,o){var i=!1;for(var s in e)s in t?e[s]!==n[s]&&(i=!0):(i=!0,Rd(t,s,r,o));for(var s in t)s in e||(i=!0,delete t[s]);return i}function Rd(t,e,n,r){Object.defineProperty(t,e,{enumerable:!0,configurable:!0,get:function(){return n[r][e]}})}function Id(t){return t._slotsProxy||vc(t._slotsProxy={},t.$scopedSlots),t._slotsProxy}function vc(t,e){for(var n in e)t[n]=e[n];for(var n in t)n in e||delete t[n]}function Fd(t){t._vnode=null,t._staticTrees=null;var e=t.$options,n=t.$vnode=e._parentVnode,r=n&&n.context;t.$slots=ks(e._renderChildren,r),t.$scopedSlots=n?lr(t.$parent,n.data.scopedSlots,t.$slots):Pt,t._c=function(i,s,l,u){return wo(t,i,s,l,u,!1)},t.$createElement=function(i,s,l,u){return wo(t,i,s,l,u,!0)};var o=n&&n.data;Ve(t,"$attrs",o&&o.attrs||Pt,null,!0),Ve(t,"$listeners",e._parentListeners||Pt,null,!0)}var eo=null;function Bd(t){mc(t.prototype),t.prototype.$nextTick=function(e){return jo(e,this)},t.prototype._render=function(){var e=this,n=e.$options,r=n.render,o=n._parentVnode;o&&e._isMounted&&(e.$scopedSlots=lr(e.$parent,o.data.scopedSlots,e.$slots,e.$scopedSlots),e._slotsProxy&&vc(e._slotsProxy,e.$scopedSlots)),e.$vnode=o;var i=$t,s=eo,l;try{Ue(e),eo=e,l=r.call(e._renderProxy,e.$createElement)}catch(u){cn(u,e,"render"),l=e._vnode}finally{eo=s,Ue(i)}return Y(l)&&l.length===1&&(l=l[0]),l instanceof Ht||(l=Rn()),l.parent=o,l}}function ui(t,e){return(t.__esModule||Cr&&t[Symbol.toStringTag]==="Module")&&(t=t.default),Ot(t)?e.extend(t):t}function Dd(t,e,n,r,o){var i=Rn();return i.asyncFactory=t,i.asyncMeta={data:e,context:n,children:r,tag:o},i}function Md(t,e){if(yt(t.error)&&E(t.errorComp))return t.errorComp;if(E(t.resolved))return t.resolved;var n=eo;if(n&&E(t.owners)&&t.owners.indexOf(n)===-1&&t.owners.push(n),yt(t.loading)&&E(t.loadingComp))return t.loadingComp;if(n&&!E(t.owners)){var r=t.owners=[n],o=!0,i=null,s=null;n.$on("hook:destroyed",function(){return Ge(r,n)});var l=function(h){for(var y=0,g=r.length;y1?Ri(o):o;for(var i=Ri(arguments,1),s='event handler for "'.concat(n,'"'),l=0,u=o.length;ldocument.createEvent("Event").timeStamp&&(Gi=function(){return ci.now()})}var sh=function(t,e){if(t.post){if(!e.post)return 1}else if(e.post)return-1;return t.id-e.id};function ah(){Ac=Gi(),Rs=!0;var t,e;for(be.sort(sh),Nn=0;NnNn&&be[n].id>t.id;)n--;be.splice(n+1,0,t)}Vi||(Vi=!0,jo(ah))}}function ph(t){var e=t.$options.provide;if(e){var n=pt(e)?e.call(t):e;if(!Ot(n))return;for(var r=vd(t),o=Cr?Reflect.ownKeys(n):Object.keys(n),i=0;i-1){if(i&&!Rt(o,"default"))s=!1;else if(s===""||s===Er(t)){var u=qa(String,o.type);(u<0||l-1)return this;var r=Ri(arguments,1);return r.unshift(this),pt(e.install)?e.install.apply(e,r):pt(e)&&e.apply(null,r),n.push(e),this}}function jh(t){t.mixin=function(e){return this.options=pn(this.options,e),this}}function Uh(t){t.cid=0;var e=1;t.extend=function(n){n=n||{};var r=this,o=r.cid,i=n._Ctor||(n._Ctor={});if(i[o])return i[o];var s=bo(n)||bo(r.options),l=function(u){this._init(u)};return l.prototype=Object.create(r.prototype),l.prototype.constructor=l,l.cid=e++,l.options=pn(r.options,n),l.super=r,l.options.props&&Hh(l),l.options.computed&&Vh(l),l.extend=r.extend,l.mixin=r.mixin,l.use=r.use,Do.forEach(function(u){l[u]=r[u]}),s&&(l.options.components[s]=l),l.superOptions=r.options,l.extendOptions=n,l.sealedOptions=ht({},l.options),i[o]=l,l}}function Hh(t){var e=t.options.props;for(var n in e)Ds(t.prototype,"_props",n)}function Vh(t){var e=t.options.computed;for(var n in e)Pc(t.prototype,n,e[n])}function Gh(t){Do.forEach(function(e){t[e]=function(n,r){return r?(e==="component"&&It(r)&&(r.name=r.name||n,r=this.options._base.extend(r)),e==="directive"&&pt(r)&&(r={bind:r,update:r}),this.options[e+"s"][n]=r,r):this.options[e+"s"][n]}})}function Za(t){return t&&(bo(t.Ctor.options)||t.tag)}function Fr(t,e){return Y(t)?t.indexOf(e)>-1:typeof t=="string"?t.split(",").indexOf(e)>-1:Mf(t)?t.test(e):!1}function Ya(t,e){var n=t.cache,r=t.keys,o=t._vnode,i=t.$vnode;for(var s in n){var l=n[s];if(l){var u=l.name;u&&!e(u)&&Ki(n,s,r,o)}}i.componentOptions.children=void 0}function Ki(t,e,n,r){var o=t[e];o&&(!r||o.tag!==r.tag)&&o.componentInstance.$destroy(),t[e]=null,Ge(n,e)}var Ja=[String,RegExp,Array],Wh={name:"keep-alive",abstract:!0,props:{include:Ja,exclude:Ja,max:[String,Number]},methods:{cacheVNode:function(){var t=this,e=t.cache,n=t.keys,r=t.vnodeToCache,o=t.keyToCache;if(r){var i=r.tag,s=r.componentInstance,l=r.componentOptions;e[o]={name:Za(l),tag:i,componentInstance:s},n.push(o),this.max&&n.length>parseInt(this.max)&&Ki(e,n[0],n,this._vnode),this.vnodeToCache=null}}},created:function(){this.cache=Object.create(null),this.keys=[]},destroyed:function(){for(var t in this.cache)Ki(this.cache,t,this.keys)},mounted:function(){var t=this;this.cacheVNode(),this.$watch("include",function(e){Ya(t,function(n){return Fr(e,n)})}),this.$watch("exclude",function(e){Ya(t,function(n){return!Fr(e,n)})})},updated:function(){this.cacheVNode()},render:function(){var t=this.$slots.default,e=gc(t),n=e&&e.componentOptions;if(n){var r=Za(n),o=this,i=o.include,s=o.exclude;if(i&&(!r||!Fr(i,r))||s&&r&&Fr(s,r))return e;var l=this,u=l.cache,f=l.keys,p=e.key==null?n.Ctor.cid+(n.tag?"::".concat(n.tag):""):e.key;u[p]?(e.componentInstance=u[p].componentInstance,Ge(f,p),f.push(p)):(this.vnodeToCache=e,this.keyToCache=p),e.data.keepAlive=!0}return e||t&&t[0]}},qh={KeepAlive:Wh};function Xh(t){var e={};e.get=function(){return Xt},Object.defineProperty(t,"config",e),t.util={warn:yh,extend:ht,mergeOptions:pn,defineReactive:Ve},t.set=Ts,t.delete=ic,t.nextTick=jo,t.observable=function(n){return Ae(n),n},t.options=Object.create(null),Do.forEach(function(n){t.options[n+"s"]=Object.create(null)}),t.options._base=t,ht(t.options.components,qh),zh(t),jh(t),Uh(t),Gh(t)}Xh(st),Object.defineProperty(st.prototype,"$isServer",{get:We}),Object.defineProperty(st.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Object.defineProperty(st,"FunctionalRenderContext",{value:Is}),st.version=Xd;var Kh=se("style,class"),Zh=se("input,textarea,option,select,progress"),Yh=function(t,e,n){return n==="value"&&Zh(t)&&e!=="button"||n==="selected"&&t==="option"||n==="checked"&&t==="input"||n==="muted"&&t==="video"},$c=se("contenteditable,draggable,spellcheck"),Jh=se("events,caret,typing,plaintext-only"),Qh=function(t,e){return Eo(e)||e==="false"?"false":t==="contenteditable"&&Jh(e)?e:"true"},tm=se("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,truespeed,typemustmatch,visible"),Zi="http://www.w3.org/1999/xlink",zs=function(t){return t.charAt(5)===":"&&t.slice(0,5)==="xlink"},kc=function(t){return zs(t)?t.slice(6,t.length):""},Eo=function(t){return t==null||t===!1};function em(t){for(var e=t.data,n=t,r=t;E(r.componentInstance);)r=r.componentInstance._vnode,r&&r.data&&(e=Qa(r.data,e));for(;E(n=n.parent);)n&&n.data&&(e=Qa(e,n.data));return nm(e.staticClass,e.class)}function Qa(t,e){return{staticClass:js(t.staticClass,e.staticClass),class:E(t.class)?[t.class,e.class]:e.class}}function nm(t,e){return E(t)||E(e)?js(t,Us(e)):""}function js(t,e){return t?e?t+" "+e:t:e||""}function Us(t){return Array.isArray(t)?rm(t):Ot(t)?om(t):typeof t=="string"?t:""}function rm(t){for(var e="",n,r=0,o=t.length;r-1?Br[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:Br[t]=/HTMLUnknownElement/.test(e.toString())}var Yi=se("text,number,password,search,email,tel,url");function um(t){if(typeof t=="string"){var e=document.querySelector(t);return e||document.createElement("div")}else return t}function cm(t,e){var n=document.createElement(t);return t!=="select"||e.data&&e.data.attrs&&e.data.attrs.multiple!==void 0&&n.setAttribute("multiple","multiple"),n}function pm(t,e){return document.createElementNS(im[t],e)}function fm(t){return document.createTextNode(t)}function dm(t){return document.createComment(t)}function hm(t,e,n){t.insertBefore(e,n)}function mm(t,e){t.removeChild(e)}function vm(t,e){t.appendChild(e)}function gm(t){return t.parentNode}function ym(t){return t.nextSibling}function wm(t){return t.tagName}function _m(t,e){t.textContent=e}function bm(t,e){t.setAttribute(e,"")}var xm=Object.freeze({__proto__:null,createElement:cm,createElementNS:pm,createTextNode:fm,createComment:dm,insertBefore:hm,removeChild:mm,appendChild:vm,parentNode:gm,nextSibling:ym,tagName:wm,setTextContent:_m,setStyleScope:bm}),Em={create:function(t,e){Pn(e)},update:function(t,e){t.data.ref!==e.data.ref&&(Pn(t,!0),Pn(e))},destroy:function(t){Pn(t,!0)}};function Pn(t,e){var n=t.data.ref;if(E(n)){var r=t.context,o=t.componentInstance||t.elm,i=e?null:o,s=e?void 0:o;if(pt(n)){Te(n,r,[i],r,"template ref function");return}var l=t.data.refInFor,u=typeof n=="string"||typeof n=="number",f=kt(n),p=r.$refs;if(u||f){if(l){var h=u?p[n]:n.value;e?Y(h)&&Ge(h,o):Y(h)?h.includes(o)||h.push(o):u?(p[n]=[o],tl(r,n,p[n])):n.value=[o]}else if(u){if(e&&p[n]!==o)return;p[n]=s,tl(r,n,i)}else if(f){if(e&&n.value!==o)return;n.value=i}}}}function tl(t,e,n){var r=t._setupState;r&&Rt(r,e)&&(kt(r[e])?r[e].value=n:r[e]=n)}var ze=new Ht("",{},[]),Qn=["create","activate","update","remove","destroy"];function Ke(t,e){return t.key===e.key&&t.asyncFactory===e.asyncFactory&&(t.tag===e.tag&&t.isComment===e.isComment&&E(t.data)===E(e.data)&&Cm(t,e)||yt(t.isAsyncPlaceholder)&&K(e.asyncFactory.error))}function Cm(t,e){if(t.tag!=="input")return!0;var n,r=E(n=t.data)&&E(n=n.attrs)&&n.type,o=E(n=e.data)&&E(n=n.attrs)&&n.type;return r===o||Yi(r)&&Yi(o)}function Sm(t,e,n){var r,o,i={};for(r=e;r<=n;++r)o=t[r].key,E(o)&&(i[o]=r);return i}function Am(t){var e,n,r={},o=t.modules,i=t.nodeOps;for(e=0;eG?(Gt=K(S[W+1])?null:S[W+1].elm,R(w,Gt,S,V,W,O)):V>W&&q(_,D,G)}function Q(w,_,S,O){for(var F=S;F-1?ol(t,e,n):tm(e)?Eo(n)?t.removeAttribute(e):(n=e==="allowfullscreen"&&t.tagName==="EMBED"?"true":e,t.setAttribute(e,n)):$c(e)?t.setAttribute(e,Qh(e,n)):zs(e)?Eo(n)?t.removeAttributeNS(Zi,kc(e)):t.setAttributeNS(Zi,e,n):ol(t,e,n)}function ol(t,e,n){if(Eo(n))t.removeAttribute(e);else{if(zn&&!jn&&t.tagName==="TEXTAREA"&&e==="placeholder"&&n!==""&&!t.__ieph){var r=function(o){o.stopImmediatePropagation(),t.removeEventListener("input",r)};t.addEventListener("input",r),t.__ieph=!0}t.setAttribute(e,n)}}var Om={create:nl,update:nl};function il(t,e){var n=e.elm,r=e.data,o=t.data;if(!(K(r.staticClass)&&K(r.class)&&(K(o)||K(o.staticClass)&&K(o.class)))){var i=em(e),s=n._transitionClasses;E(s)&&(i=js(i,Us(s))),i!==n._prevClass&&(n.setAttribute("class",i),n._prevClass=i)}}var Lm={create:il,update:il},fi="__r",di="__c";function Rm(t){if(E(t[fi])){var e=zn?"change":"input";t[e]=[].concat(t[fi],t[e]||[]),delete t[fi]}E(t[di])&&(t.change=[].concat(t[di],t.change||[]),delete t[di])}var wr;function Im(t,e,n){var r=wr;return function o(){var i=e.apply(null,arguments);i!==null&&Lc(t,o,n,r)}}var Fm=ji&&!(Sa&&Number(Sa[1])<=53);function Bm(t,e,n,r){if(Fm){var o=Ac,i=e;e=i._wrapper=function(s){if(s.target===s.currentTarget||s.timeStamp>=o||s.timeStamp<=0||s.target.ownerDocument!==document)return i.apply(this,arguments)}}wr.addEventListener(t,e,ec?{capture:n,passive:r}:n)}function Lc(t,e,n,r){(r||wr).removeEventListener(t,e._wrapper||e,n)}function hi(t,e){if(!(K(t.data.on)&&K(e.data.on))){var n=e.data.on||{},r=t.data.on||{};wr=e.elm||t.elm,Rm(n),pc(n,r,Bm,Lc,Im,e.context),wr=void 0}}var Dm={create:hi,update:hi,destroy:function(t){return hi(t,ze)}},Dr;function sl(t,e){if(!(K(t.data.domProps)&&K(e.data.domProps))){var n,r,o=e.elm,i=t.data.domProps||{},s=e.data.domProps||{};(E(s.__ob__)||yt(s._v_attr_proxy))&&(s=e.data.domProps=ht({},s));for(n in i)n in s||(o[n]="");for(n in s){if(r=s[n],n==="textContent"||n==="innerHTML"){if(e.children&&(e.children.length=0),r===i[n])continue;o.childNodes.length===1&&o.removeChild(o.childNodes[0])}if(n==="value"&&o.tagName!=="PROGRESS"){o._value=r;var l=K(r)?"":String(r);Mm(o,l)&&(o.value=l)}else if(n==="innerHTML"&&Hs(o.tagName)&&K(o.innerHTML)){Dr=Dr||document.createElement("div"),Dr.innerHTML="".concat(r,"");for(var u=Dr.firstChild;o.firstChild;)o.removeChild(o.firstChild);for(;u.firstChild;)o.appendChild(u.firstChild)}else if(r!==i[n])try{o[n]=r}catch{}}}}function Mm(t,e){return!t.composing&&(t.tagName==="OPTION"||zm(t,e)||jm(t,e))}function zm(t,e){var n=!0;try{n=document.activeElement!==t}catch{}return n&&t.value!==e}function jm(t,e){var n=t.value,r=t._vModifiers;if(E(r)){if(r.number)return hr(n)!==hr(e);if(r.trim)return n.trim()!==e.trim()}return n!==e}var Um={create:sl,update:sl},Hm=mn(function(t){var e={},n=/;(?![^(]*\))/g,r=/:(.+)/;return t.split(n).forEach(function(o){if(o){var i=o.split(r);i.length>1&&(e[i[0].trim()]=i[1].trim())}}),e});function mi(t){var e=Rc(t.style);return t.staticStyle?ht(t.staticStyle,e):e}function Rc(t){return Array.isArray(t)?Ku(t):typeof t=="string"?Hm(t):t}function Vm(t,e){var n={},r;if(e)for(var o=t;o.componentInstance;)o=o.componentInstance._vnode,o&&o.data&&(r=mi(o.data))&&ht(n,r);(r=mi(t.data))&&ht(n,r);for(var i=t;i=i.parent;)i.data&&(r=mi(i.data))&&ht(n,r);return n}var Gm=/^--/,al=/\s*!important$/,ll=function(t,e,n){if(Gm.test(e))t.style.setProperty(e,n);else if(al.test(n))t.style.setProperty(Er(e),n.replace(al,""),"important");else{var r=Wm(e);if(Array.isArray(n))for(var o=0,i=n.length;o-1?e.split(Ic).forEach(function(r){return t.classList.add(r)}):t.classList.add(e);else{var n=" ".concat(t.getAttribute("class")||""," ");n.indexOf(" "+e+" ")<0&&t.setAttribute("class",(n+e).trim())}}function Bc(t,e){if(!(!e||!(e=e.trim())))if(t.classList)e.indexOf(" ")>-1?e.split(Ic).forEach(function(o){return t.classList.remove(o)}):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{for(var n=" ".concat(t.getAttribute("class")||""," "),r=" "+e+" ";n.indexOf(r)>=0;)n=n.replace(r," ");n=n.trim(),n?t.setAttribute("class",n):t.removeAttribute("class")}}function Dc(t){if(t){if(typeof t=="object"){var e={};return t.css!==!1&&ht(e,pl(t.name||"v")),ht(e,t),e}else if(typeof t=="string")return pl(t)}}var pl=mn(function(t){return{enterClass:"".concat(t,"-enter"),enterToClass:"".concat(t,"-enter-to"),enterActiveClass:"".concat(t,"-enter-active"),leaveClass:"".concat(t,"-leave"),leaveToClass:"".concat(t,"-leave-to"),leaveActiveClass:"".concat(t,"-leave-active")}}),Mc=zt&&!jn,Cn="transition",vi="animation",ro="transition",Co="transitionend",Ji="animation",zc="animationend";Mc&&(window.ontransitionend===void 0&&window.onwebkittransitionend!==void 0&&(ro="WebkitTransition",Co="webkitTransitionEnd"),window.onanimationend===void 0&&window.onwebkitanimationend!==void 0&&(Ji="WebkitAnimation",zc="webkitAnimationEnd"));var fl=zt?window.requestAnimationFrame?window.requestAnimationFrame.bind(window):setTimeout:function(t){return t()};function jc(t){fl(function(){fl(t)})}function sn(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),Fc(t,e))}function xe(t,e){t._transitionClasses&&Ge(t._transitionClasses,e),Bc(t,e)}function Uc(t,e,n){var r=Hc(t,e),o=r.type,i=r.timeout,s=r.propCount;if(!o)return n();var l=o===Cn?Co:zc,u=0,f=function(){t.removeEventListener(l,p),n()},p=function(h){h.target===t&&++u>=s&&f()};setTimeout(function(){u0&&(f=Cn,p=i,h=o.length):e===vi?u>0&&(f=vi,p=u,h=l.length):(p=Math.max(i,u),f=p>0?i>u?Cn:vi:null,h=f?f===Cn?o.length:l.length:0);var y=f===Cn&&Xm.test(n[ro+"Property"]);return{type:f,timeout:p,propCount:h,hasTransform:y}}function dl(t,e){for(;t.length1}function ml(t,e){e.data.show!==!0&&Qi(e)}var Km=zt?{create:ml,activate:ml,remove:function(t,e){t.data.show!==!0?Vc(t,e):e()}}:{},Zm=[Om,Lm,Dm,Um,qm,Km],Ym=Zm.concat(km),Jm=Am({nodeOps:xm,modules:Ym});jn&&document.addEventListener("selectionchange",function(){var t=document.activeElement;t&&t.vmodel&&Gs(t,"input")});var Wc={inserted:function(t,e,n,r){n.tag==="select"?(r.elm&&!r.elm._vOptions?Me(n,"postpatch",function(){Wc.componentUpdated(t,e,n)}):vl(t,e,n.context),t._vOptions=[].map.call(t.options,So)):(n.tag==="textarea"||Yi(t.type))&&(t._vModifiers=e.modifiers,e.modifiers.lazy||(t.addEventListener("compositionstart",Qm),t.addEventListener("compositionend",wl),t.addEventListener("change",wl),jn&&(t.vmodel=!0)))},componentUpdated:function(t,e,n){if(n.tag==="select"){vl(t,e,n.context);var r=t._vOptions,o=t._vOptions=[].map.call(t.options,So);if(o.some(function(s,l){return!un(s,r[l])})){var i=t.multiple?e.value.some(function(s){return yl(s,o)}):e.value!==e.oldValue&&yl(e.value,o);i&&Gs(t,"change")}}}};function vl(t,e,n){gl(t,e),(zn||tc)&&setTimeout(function(){gl(t,e)},0)}function gl(t,e,n){var r=e.value,o=t.multiple;if(!(o&&!Array.isArray(r))){for(var i,s,l=0,u=t.options.length;l-1,s.selected!==i&&(s.selected=i);else if(un(So(s),r)){t.selectedIndex!==l&&(t.selectedIndex=l);return}o||(t.selectedIndex=-1)}}function yl(t,e){return e.every(function(n){return!un(n,t)})}function So(t){return"_value"in t?t._value:t.value}function Qm(t){t.target.composing=!0}function wl(t){t.target.composing&&(t.target.composing=!1,Gs(t.target,"input"))}function Gs(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function ts(t){return t.componentInstance&&(!t.data||!t.data.transition)?ts(t.componentInstance._vnode):t}var tv={bind:function(t,e,n){var r=e.value;n=ts(n);var o=n.data&&n.data.transition,i=t.__vOriginalDisplay=t.style.display==="none"?"":t.style.display;r&&o?(n.data.show=!0,Qi(n,function(){t.style.display=i})):t.style.display=r?i:"none"},update:function(t,e,n){var r=e.value,o=e.oldValue;if(!r!=!o){n=ts(n);var i=n.data&&n.data.transition;i?(n.data.show=!0,r?Qi(n,function(){t.style.display=t.__vOriginalDisplay}):Vc(n,function(){t.style.display="none"})):t.style.display=r?t.__vOriginalDisplay:"none"}},unbind:function(t,e,n,r,o){o||(t.style.display=t.__vOriginalDisplay)}},ev={model:Wc,show:tv},qc={name:String,appear:Boolean,css:Boolean,mode:String,type:String,enterClass:String,leaveClass:String,enterToClass:String,leaveToClass:String,enterActiveClass:String,leaveActiveClass:String,appearClass:String,appearActiveClass:String,appearToClass:String,duration:[Number,String,Object]};function es(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?es(gc(e.children)):t}function Xc(t){var e={},n=t.$options;for(var r in n.propsData)e[r]=t[r];var o=n._parentListeners;for(var r in o)e[ln(r)]=o[r];return e}function _l(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}function nv(t){for(;t=t.parent;)if(t.data.transition)return!0}function rv(t,e){return e.key===t.key&&e.tag===t.tag}var ov=function(t){return t.tag||vr(t)},iv=function(t){return t.name==="show"},sv={name:"transition",props:qc,abstract:!0,render:function(t){var e=this,n=this.$slots.default;if(n&&(n=n.filter(ov),!!n.length)){var r=this.mode,o=n[0];if(nv(this.$vnode))return o;var i=es(o);if(!i)return o;if(this._leaving)return _l(t,o);var s="__transition-".concat(this._uid,"-");i.key=i.key==null?i.isComment?s+"comment":s+i.tag:xr(i.key)?String(i.key).indexOf(s)===0?i.key:s+i.key:i.key;var l=(i.data||(i.data={})).transition=Xc(this),u=this._vnode,f=es(u);if(i.data.directives&&i.data.directives.some(iv)&&(i.data.show=!0),f&&f.data&&!rv(i,f)&&!vr(f)&&!(f.componentInstance&&f.componentInstance._vnode.isComment)){var p=f.data.transition=ht({},l);if(r==="out-in")return this._leaving=!0,Me(p,"afterLeave",function(){e._leaving=!1,e.$forceUpdate()}),_l(t,o);if(r==="in-out"){if(vr(i))return u;var h,y=function(){h()};Me(l,"afterEnter",y),Me(l,"enterCancelled",y),Me(p,"delayLeave",function(g){h=g})}}return o}}},Kc=ht({tag:String,moveClass:String},qc);delete Kc.mode;var av={props:Kc,beforeMount:function(){var t=this,e=this._update;this._update=function(n,r){var o=Ec(t);t.__patch__(t._vnode,t.kept,!1,!0),t._vnode=t.kept,o(),e.call(t,n,r)}},render:function(t){for(var e=this.tag||this.$vnode.data.tag||"span",n=Object.create(null),r=this.prevChildren=this.children,o=this.$slots.default||[],i=this.children=[],s=Xc(this),l=0;l{const r=Object.assign({escape:!0},n||{}),o=function(i,s){return s=s||{},i.replace(/{([^{}]*)}/g,function(l,u){const f=s[u];return r.escape?encodeURIComponent(typeof f=="string"||typeof f=="number"?f.toString():l):typeof f=="string"||typeof f=="number"?f.toString():l})};return t.charAt(0)!=="/"&&(t="/"+t),o(t,e||{})},Ws=(t,e,n)=>{var r,o,i;const s=Object.assign({noRewrite:!1},n||{}),l=(r=n==null?void 0:n.baseURL)!=null?r:Zc();return((i=(o=window==null?void 0:window.OC)==null?void 0:o.config)==null?void 0:i.modRewriteWorking)===!0&&!s.noRewrite?l+bl(t,e,n):l+"/index.php"+bl(t,e,n)},fn=(t,e)=>e.includes(".")?xl(t,"img",e):xl(t,"img","".concat(e,".svg")),xl=(t,e,n)=>{var r,o,i;const s=(i=(o=(r=window==null?void 0:window.OC)==null?void 0:r.coreApps)==null?void 0:o.includes(t))!=null?i:!1,l=n.slice(-3)==="php";let u=Zc();return l&&!s?(u+="/index.php/apps/".concat(t),e&&(u+="/".concat(encodeURI(e))),n!=="index.php"&&(u+="/".concat(n))):!l&&!s?(u=dv(t),e&&(u+="/".concat(e,"/")),u.at(-1)!=="/"&&(u+="/"),u+=n):((t==="settings"||t==="core"||t==="search")&&e==="ajax"&&(u+="/index.php"),t&&(u+="/".concat(t)),e&&(u+="/".concat(e)),u+="/".concat(n)),u};function Zc(){let t=window._oc_webroot;if(typeof t>"u"){t=location.pathname;const e=t.indexOf("/index.php/");if(e!==-1)t=t.slice(0,e);else{const n=t.indexOf("/",1);t=t.slice(0,n>0?n:void 0)}}return t}function dv(t){var e,n;return(n=((e=window._oc_appswebroots)!=null?e:{})[t])!=null?n:""}const{entries:Yc,setPrototypeOf:El,isFrozen:hv,getPrototypeOf:mv,getOwnPropertyDescriptor:vv}=Object;let{freeze:Ft,seal:Yt,create:Jc}=Object,{apply:ns,construct:rs}=typeof Reflect<"u"&&Reflect;Ft||(Ft=function(t){return t}),Yt||(Yt=function(t){return t}),ns||(ns=function(t,e,n){return t.apply(e,n)}),rs||(rs=function(t,e){return new t(...e)});const zr=Vt(Array.prototype.forEach),Cl=Vt(Array.prototype.pop),er=Vt(Array.prototype.push),oo=Vt(String.prototype.toLowerCase),gi=Vt(String.prototype.toString),Sl=Vt(String.prototype.match),nr=Vt(String.prototype.replace),gv=Vt(String.prototype.indexOf),yv=Vt(String.prototype.trim),re=Vt(Object.prototype.hasOwnProperty),Mt=Vt(RegExp.prototype.test),rr=wv(TypeError);function Vt(t){return function(e){for(var n=arguments.length,r=new Array(n>1?n-1:0),o=1;o2&&arguments[2]!==void 0?arguments[2]:oo;El&&El(t,null);let r=e.length;for(;r--;){let o=e[r];if(typeof o=="string"){const i=n(o);i!==o&&(hv(e)||(e[r]=i),o=i)}t[o]=!0}return t}function _v(t){for(let e=0;e/gm),Sv=Yt(/\${[\w\W]*}/gm),Av=Yt(/^data-[\-\w.\u00B7-\uFFFF]/),Tv=Yt(/^aria-[\-\w]+$/),Qc=Yt(/^(?:(?:(?:f|ht)tps?|mailto|tel|callto|sms|cid|xmpp):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i),Nv=Yt(/^(?:\w+script|data):/i),Pv=Yt(/[\u0000-\u0020\u00A0\u1680\u180E\u2000-\u2029\u205F\u3000]/g),tp=Yt(/^html$/i),$v=Yt(/^[a-z][.\w]*(-[.\w]+)+$/i);var $l=Object.freeze({__proto__:null,MUSTACHE_EXPR:Ev,ERB_EXPR:Cv,TMPLIT_EXPR:Sv,DATA_ATTR:Av,ARIA_ATTR:Tv,IS_ALLOWED_URI:Qc,IS_SCRIPT_OR_DATA:Nv,ATTR_WHITESPACE:Pv,DOCTYPE_NAME:tp,CUSTOM_ELEMENT:$v});const kv=function(){return typeof window>"u"?null:window},Ov=function(t,e){if(typeof t!="object"||typeof t.createPolicy!="function")return null;let n=null;const r="data-tt-policy-suffix";e&&e.hasAttribute(r)&&(n=e.getAttribute(r));const o="dompurify"+(n?"#"+n:"");try{return t.createPolicy(o,{createHTML(i){return i},createScriptURL(i){return i}})}catch{return console.warn("TrustedTypes policy "+o+" could not be created."),null}};function ep(){let t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:kv();const e=m=>ep(m);if(e.version="3.1.2",e.removed=[],!t||!t.document||t.document.nodeType!==9)return e.isSupported=!1,e;let{document:n}=t;const r=n,o=r.currentScript,{DocumentFragment:i,HTMLTemplateElement:s,Node:l,Element:u,NodeFilter:f,NamedNodeMap:p=t.NamedNodeMap||t.MozNamedAttrMap,HTMLFormElement:h,DOMParser:y,trustedTypes:g}=t,b=u.prototype,$=jr(b,"cloneNode"),P=jr(b,"nextSibling"),B=jr(b,"childNodes"),R=jr(b,"parentNode");if(typeof s=="function"){const m=n.createElement("template");m.content&&m.content.ownerDocument&&(n=m.content.ownerDocument)}let j,q="";const{implementation:et,createNodeIterator:ft,createDocumentFragment:Q,getElementsByTagName:U}=n,{importNode:T}=r;let C={};e.isSupported=typeof Yc=="function"&&typeof R=="function"&&et&&et.createHTMLDocument!==void 0;const{MUSTACHE_EXPR:I,ERB_EXPR:w,TMPLIT_EXPR:_,DATA_ATTR:S,ARIA_ATTR:O,IS_SCRIPT_OR_DATA:F,ATTR_WHITESPACE:D,CUSTOM_ELEMENT:V}=$l;let{IS_ALLOWED_URI:G}=$l,M=null;const X=J({},[...Al,...yi,...wi,..._i,...Tl]);let W=null;const ot=J({},[...Nl,...bi,...Pl,...Ur]);let H=Object.seal(Jc(null,{tagNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},attributeNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},allowCustomizedBuiltInElements:{writable:!0,configurable:!1,enumerable:!0,value:!1}})),it=null,St=null,Tt=!0,Gt=!0,jt=!1,te=!0,Lt=!1,ke=!0,ae=!1,Kn=!1,vn=!1,Ut=!1,le=!1,gn=!1,$r=!0,yn=!1;const ii="user-content-";let Zn=!0,Oe=!1,ee={},At=null;const wn=J({},["annotation-xml","audio","colgroup","desc","foreignobject","head","iframe","math","mi","mn","mo","ms","mtext","noembed","noframes","noscript","plaintext","script","style","svg","template","thead","title","video","xmp"]);let kr=null;const ne=J({},["audio","video","img","source","image","track"]);let Yn=null;const a=J({},["alt","class","for","id","label","name","pattern","placeholder","role","summary","title","value","style","xmlns"]),c="http://www.w3.org/1998/Math/MathML",d="http://www.w3.org/2000/svg",v="http://www.w3.org/1999/xhtml";let x=v,A=!1,k=null;const ut=J({},[c,d,v],gi);let vt=null;const dt=["application/xhtml+xml","text/html"],ct="text/html";let Z=null,_n=null;const ca=255,Pf=n.createElement("form"),pa=function(m){return m instanceof RegExp||m instanceof Function},si=function(){let m=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};if(!(_n&&_n===m)){if((!m||typeof m!="object")&&(m={}),m=Ye(m),vt=dt.indexOf(m.PARSER_MEDIA_TYPE)===-1?ct:m.PARSER_MEDIA_TYPE,Z=vt==="application/xhtml+xml"?gi:oo,M=re(m,"ALLOWED_TAGS")?J({},m.ALLOWED_TAGS,Z):X,W=re(m,"ALLOWED_ATTR")?J({},m.ALLOWED_ATTR,Z):ot,k=re(m,"ALLOWED_NAMESPACES")?J({},m.ALLOWED_NAMESPACES,gi):ut,Yn=re(m,"ADD_URI_SAFE_ATTR")?J(Ye(a),m.ADD_URI_SAFE_ATTR,Z):a,kr=re(m,"ADD_DATA_URI_TAGS")?J(Ye(ne),m.ADD_DATA_URI_TAGS,Z):ne,At=re(m,"FORBID_CONTENTS")?J({},m.FORBID_CONTENTS,Z):wn,it=re(m,"FORBID_TAGS")?J({},m.FORBID_TAGS,Z):{},St=re(m,"FORBID_ATTR")?J({},m.FORBID_ATTR,Z):{},ee=re(m,"USE_PROFILES")?m.USE_PROFILES:!1,Tt=m.ALLOW_ARIA_ATTR!==!1,Gt=m.ALLOW_DATA_ATTR!==!1,jt=m.ALLOW_UNKNOWN_PROTOCOLS||!1,te=m.ALLOW_SELF_CLOSE_IN_ATTR!==!1,Lt=m.SAFE_FOR_TEMPLATES||!1,ke=m.SAFE_FOR_XML!==!1,ae=m.WHOLE_DOCUMENT||!1,Ut=m.RETURN_DOM||!1,le=m.RETURN_DOM_FRAGMENT||!1,gn=m.RETURN_TRUSTED_TYPE||!1,vn=m.FORCE_BODY||!1,$r=m.SANITIZE_DOM!==!1,yn=m.SANITIZE_NAMED_PROPS||!1,Zn=m.KEEP_CONTENT!==!1,Oe=m.IN_PLACE||!1,G=m.ALLOWED_URI_REGEXP||Qc,x=m.NAMESPACE||v,H=m.CUSTOM_ELEMENT_HANDLING||{},m.CUSTOM_ELEMENT_HANDLING&&pa(m.CUSTOM_ELEMENT_HANDLING.tagNameCheck)&&(H.tagNameCheck=m.CUSTOM_ELEMENT_HANDLING.tagNameCheck),m.CUSTOM_ELEMENT_HANDLING&&pa(m.CUSTOM_ELEMENT_HANDLING.attributeNameCheck)&&(H.attributeNameCheck=m.CUSTOM_ELEMENT_HANDLING.attributeNameCheck),m.CUSTOM_ELEMENT_HANDLING&&typeof m.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements=="boolean"&&(H.allowCustomizedBuiltInElements=m.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements),Lt&&(Gt=!1),le&&(Ut=!0),ee&&(M=J({},Tl),W=[],ee.html===!0&&(J(M,Al),J(W,Nl)),ee.svg===!0&&(J(M,yi),J(W,bi),J(W,Ur)),ee.svgFilters===!0&&(J(M,wi),J(W,bi),J(W,Ur)),ee.mathMl===!0&&(J(M,_i),J(W,Pl),J(W,Ur))),m.ADD_TAGS&&(M===X&&(M=Ye(M)),J(M,m.ADD_TAGS,Z)),m.ADD_ATTR&&(W===ot&&(W=Ye(W)),J(W,m.ADD_ATTR,Z)),m.ADD_URI_SAFE_ATTR&&J(Yn,m.ADD_URI_SAFE_ATTR,Z),m.FORBID_CONTENTS&&(At===wn&&(At=Ye(At)),J(At,m.FORBID_CONTENTS,Z)),Zn&&(M["#text"]=!0),ae&&J(M,["html","head","body"]),M.table&&(J(M,["tbody"]),delete it.tbody),m.TRUSTED_TYPES_POLICY){if(typeof m.TRUSTED_TYPES_POLICY.createHTML!="function")throw rr('TRUSTED_TYPES_POLICY configuration option must provide a "createHTML" hook.');if(typeof m.TRUSTED_TYPES_POLICY.createScriptURL!="function")throw rr('TRUSTED_TYPES_POLICY configuration option must provide a "createScriptURL" hook.');j=m.TRUSTED_TYPES_POLICY,q=j.createHTML("")}else j===void 0&&(j=Ov(g,o)),j!==null&&typeof q=="string"&&(q=j.createHTML(""));Ft&&Ft(m),_n=m}},fa=J({},["mi","mo","mn","ms","mtext"]),da=J({},["foreignobject","annotation-xml"]),$f=J({},["title","style","font","a","script"]),ha=J({},[...yi,...wi,...bv]),ma=J({},[..._i,...xv]),kf=function(m){let z=R(m);(!z||!z.tagName)&&(z={namespaceURI:x,tagName:"template"});const L=oo(m.tagName),lt=oo(z.tagName);return k[m.namespaceURI]?m.namespaceURI===d?z.namespaceURI===v?L==="svg":z.namespaceURI===c?L==="svg"&&(lt==="annotation-xml"||fa[lt]):!!ha[L]:m.namespaceURI===c?z.namespaceURI===v?L==="math":z.namespaceURI===d?L==="math"&&da[lt]:!!ma[L]:m.namespaceURI===v?z.namespaceURI===d&&!da[lt]||z.namespaceURI===c&&!fa[lt]?!1:!ma[L]&&($f[L]||!ha[L]):!!(vt==="application/xhtml+xml"&&k[m.namespaceURI]):!1},Le=function(m){er(e.removed,{element:m});try{m.parentNode.removeChild(m)}catch{m.remove()}},ai=function(m,z){try{er(e.removed,{attribute:z.getAttributeNode(m),from:z})}catch{er(e.removed,{attribute:null,from:z})}if(z.removeAttribute(m),m==="is"&&!W[m])if(Ut||le)try{Le(z)}catch{}else try{z.setAttribute(m,"")}catch{}},va=function(m){let z=null,L=null;if(vn)m=""+m;else{const Et=Sl(m,/^[\r\n\t ]+/);L=Et&&Et[0]}vt==="application/xhtml+xml"&&x===v&&(m=''+m+"");const lt=j?j.createHTML(m):m;if(x===v)try{z=new y().parseFromString(lt,vt)}catch{}if(!z||!z.documentElement){z=et.createDocument(x,"template",null);try{z.documentElement.innerHTML=A?q:lt}catch{}}const at=z.body||z.documentElement;return m&&L&&at.insertBefore(n.createTextNode(L),at.childNodes[0]||null),x===v?U.call(z,ae?"html":"body")[0]:ae?z.documentElement:at},ga=function(m){return ft.call(m.ownerDocument||m,m,f.SHOW_ELEMENT|f.SHOW_COMMENT|f.SHOW_TEXT|f.SHOW_PROCESSING_INSTRUCTION|f.SHOW_CDATA_SECTION,null)},Of=function(m){return m instanceof h&&(typeof m.__depth<"u"&&typeof m.__depth!="number"||typeof m.__removalCount<"u"&&typeof m.__removalCount!="number"||typeof m.nodeName!="string"||typeof m.textContent!="string"||typeof m.removeChild!="function"||!(m.attributes instanceof p)||typeof m.removeAttribute!="function"||typeof m.setAttribute!="function"||typeof m.namespaceURI!="string"||typeof m.insertBefore!="function"||typeof m.hasChildNodes!="function")},ya=function(m){return typeof l=="function"&&m instanceof l},ye=function(m,z,L){C[m]&&zr(C[m],lt=>{lt.call(e,z,L,_n)})},wa=function(m){let z=null;if(ye("beforeSanitizeElements",m,null),Of(m))return Le(m),!0;const L=Z(m.nodeName);if(ye("uponSanitizeElement",m,{tagName:L,allowedTags:M}),m.hasChildNodes()&&!ya(m.firstElementChild)&&Mt(/<[/\w]/g,m.innerHTML)&&Mt(/<[/\w]/g,m.textContent)||m.nodeType===7||ke&&m.nodeType===8&&Mt(/<[/\w]/g,m.data))return Le(m),!0;if(!M[L]||it[L]){if(!it[L]&&ba(L)&&(H.tagNameCheck instanceof RegExp&&Mt(H.tagNameCheck,L)||H.tagNameCheck instanceof Function&&H.tagNameCheck(L)))return!1;if(Zn&&!At[L]){const lt=R(m)||m.parentNode,at=B(m)||m.childNodes;if(at&<){const Et=at.length;for(let we=Et-1;we>=0;--we){const Wt=$(at[we],!0);Wt.__removalCount=(m.__removalCount||0)+1,lt.insertBefore(Wt,P(m))}}}return Le(m),!0}return m instanceof u&&!kf(m)||(L==="noscript"||L==="noembed"||L==="noframes")&&Mt(/<\/no(script|embed|frames)/i,m.innerHTML)?(Le(m),!0):(Lt&&m.nodeType===3&&(z=m.textContent,zr([I,w,_],lt=>{z=nr(z,lt," ")}),m.textContent!==z&&(er(e.removed,{element:m.cloneNode()}),m.textContent=z)),ye("afterSanitizeElements",m,null),!1)},_a=function(m,z,L){if($r&&(z==="id"||z==="name")&&(L in n||L in Pf))return!1;if(!(Gt&&!St[z]&&Mt(S,z))&&!(Tt&&Mt(O,z))){if(!W[z]||St[z]){if(!(ba(m)&&(H.tagNameCheck instanceof RegExp&&Mt(H.tagNameCheck,m)||H.tagNameCheck instanceof Function&&H.tagNameCheck(m))&&(H.attributeNameCheck instanceof RegExp&&Mt(H.attributeNameCheck,z)||H.attributeNameCheck instanceof Function&&H.attributeNameCheck(z))||z==="is"&&H.allowCustomizedBuiltInElements&&(H.tagNameCheck instanceof RegExp&&Mt(H.tagNameCheck,L)||H.tagNameCheck instanceof Function&&H.tagNameCheck(L))))return!1}else if(!Yn[z]&&!Mt(G,nr(L,D,""))&&!((z==="src"||z==="xlink:href"||z==="href")&&m!=="script"&&gv(L,"data:")===0&&kr[m])&&!(jt&&!Mt(F,nr(L,D,"")))&&L)return!1}return!0},ba=function(m){return m!=="annotation-xml"&&Sl(m,V)},xa=function(m){ye("beforeSanitizeAttributes",m,null);const{attributes:z}=m;if(!z)return;const L={attrName:"",attrValue:"",keepAttr:!0,allowedAttributes:W};let lt=z.length;for(;lt--;){const at=z[lt],{name:Et,namespaceURI:we,value:Wt}=at,Bt=Z(Et);let Dt=Et==="value"?Wt:yv(Wt);if(L.attrName=Bt,L.attrValue=Dt,L.keepAttr=!0,L.forceKeepAttr=void 0,ye("uponSanitizeAttribute",m,L),Dt=L.attrValue,L.forceKeepAttr||(ai(Et,m),!L.keepAttr))continue;if(!te&&Mt(/\/>/i,Dt)){ai(Et,m);continue}Lt&&zr([I,w,_],Rf=>{Dt=nr(Dt,Rf," ")});const Ea=Z(m.nodeName);if(_a(Ea,Bt,Dt)){if(yn&&(Bt==="id"||Bt==="name")&&(ai(Et,m),Dt=ii+Dt),j&&typeof g=="object"&&typeof g.getAttributeType=="function"&&!we)switch(g.getAttributeType(Ea,Bt)){case"TrustedHTML":{Dt=j.createHTML(Dt);break}case"TrustedScriptURL":{Dt=j.createScriptURL(Dt);break}}try{we?m.setAttributeNS(we,Et,Dt):m.setAttribute(Et,Dt),Cl(e.removed)}catch{}}}ye("afterSanitizeAttributes",m,null)},Lf=function m(z){let L=null;const lt=ga(z);for(ye("beforeSanitizeShadowDOM",z,null);L=lt.nextNode();){if(ye("uponSanitizeShadowNode",L,null),wa(L))continue;const at=R(L);L.nodeType===1&&(at&&at.__depth?L.__depth=(L.__removalCount||0)+at.__depth+1:L.__depth=1),L.__depth>=ca&&Le(L),L.content instanceof i&&(L.content.__depth=L.__depth,m(L.content)),xa(L)}ye("afterSanitizeShadowDOM",z,null)};return e.sanitize=function(m){let z=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},L=null,lt=null,at=null,Et=null;if(A=!m,A&&(m=""),typeof m!="string"&&!ya(m))if(typeof m.toString=="function"){if(m=m.toString(),typeof m!="string")throw rr("dirty is not a string, aborting")}else throw rr("toString is not a function");if(!e.isSupported)return m;if(Kn||si(z),e.removed=[],typeof m=="string"&&(Oe=!1),Oe){if(m.nodeName){const Bt=Z(m.nodeName);if(!M[Bt]||it[Bt])throw rr("root node is forbidden and cannot be sanitized in-place")}}else if(m instanceof l)L=va(""),lt=L.ownerDocument.importNode(m,!0),lt.nodeType===1&<.nodeName==="BODY"||lt.nodeName==="HTML"?L=lt:L.appendChild(lt);else{if(!Ut&&!Lt&&!ae&&m.indexOf("<")===-1)return j&&gn?j.createHTML(m):m;if(L=va(m),!L)return Ut?null:gn?q:""}L&&vn&&Le(L.firstChild);const we=ga(Oe?m:L);for(;at=we.nextNode();){if(wa(at))continue;const Bt=R(at);at.nodeType===1&&(Bt&&Bt.__depth?at.__depth=(at.__removalCount||0)+Bt.__depth+1:at.__depth=1),at.__depth>=ca&&Le(at),at.content instanceof i&&(at.content.__depth=at.__depth,Lf(at.content)),xa(at)}if(Oe)return m;if(Ut){if(le)for(Et=Q.call(L.ownerDocument);L.firstChild;)Et.appendChild(L.firstChild);else Et=L;return(W.shadowroot||W.shadowrootmode)&&(Et=T.call(r,Et,!0)),Et}let Wt=ae?L.outerHTML:L.innerHTML;return ae&&M["!doctype"]&&L.ownerDocument&&L.ownerDocument.doctype&&L.ownerDocument.doctype.name&&Mt(tp,L.ownerDocument.doctype.name)&&(Wt="\n"+Wt),Lt&&zr([I,w,_],Bt=>{Wt=nr(Wt,Bt," ")}),j&&gn?j.createHTML(Wt):Wt},e.setConfig=function(){let m=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};si(m),Kn=!0},e.clearConfig=function(){_n=null,Kn=!1},e.isValidAttribute=function(m,z,L){_n||si({});const lt=Z(m),at=Z(z);return _a(lt,at,L)},e.addHook=function(m,z){typeof z=="function"&&(C[m]=C[m]||[],er(C[m],z))},e.removeHook=function(m){if(C[m])return Cl(C[m])},e.removeHooks=function(m){C[m]&&(C[m]=[])},e.removeAllHooks=function(){C={}},e}var np=ep(),Hr=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function Uo(t){return t&&t.__esModule&&Object.prototype.hasOwnProperty.call(t,"default")?t.default:t}var Lv=/["'&<>]/,Rv=Iv;function Iv(t){var e=""+t,n=Lv.exec(e);if(!n)return e;var r,o="",i=0,s=0;for(i=n.index;ii}}function rt(t,e,n,r,o){const i={escape:!0,sanitize:!0,...o||{}},s=y=>y,l=i.sanitize?np.sanitize:s,u=i.escape?kl:s,f=y=>typeof y=="string"||typeof y=="number",p=(y,g,b)=>y.replace(/%n/g,""+b).replace(/{([^{}]*)}/g,($,P)=>{if(g===void 0||!(P in g))return u($);const B=g[P];return f(B)?u("".concat(B)):typeof B=="object"&&f(B.value)?(B.escape!==!1?kl:s)("".concat(B.value)):u($)});let h=rp(t).translations[e]||e;return h=Array.isArray(h)?h[0]:h,l(typeof n=="object"||r!==void 0?p(h,n,r):h)}function Fv(t,e,n,r,o,i){const s="_"+e+"_::_"+n+"_",l=rp(t),u=l.translations[s];if(typeof u<"u"){const f=u;if(Array.isArray(f)){const p=l.pluralFunction(r);return rt(t,f[p],o,r,i)}}return r===1?rt(t,e,o,r,i):rt(t,n,o,r,i)}const Bv=t=>{t.mounted?Array.isArray(t.mounted)||(t.mounted=[t.mounted]):t.mounted=[],t.mounted.push(function(){this.$el.setAttribute("data-v-".concat("5977e1c"),"")})};st.util.warn;function Ho(t){return cc()?(md(t),!0):!1}function Vo(t){return typeof t=="function"?t():id(t)}const Dv=typeof window<"u"&&typeof document<"u";typeof WorkerGlobalScope<"u"&&globalThis instanceof WorkerGlobalScope;const Mv=t=>t!=null,zv=Object.prototype.toString,jv=t=>zv.call(t)==="[object Object]",os=()=>{};function Uv(t){return t||nc()}function op(t,e=!0,n){Uv()?bc(t,n):e?t():jo(t)}st.util.warn;function Fn(t){var e;const n=Vo(t);return(e=n==null?void 0:n.$el)!=null?e:n}const Gn=Dv?window:void 0;function kn(...t){let e,n,r,o;if(typeof t[0]=="string"||Array.isArray(t[0])?([n,r,o]=t,e=Gn):[e,n,r,o]=t,!e)return os;Array.isArray(n)||(n=[n]),Array.isArray(r)||(r=[r]);const i=[],s=()=>{i.forEach(p=>p()),i.length=0},l=(p,h,y,g)=>(p.addEventListener(h,y,g),()=>p.removeEventListener(h,y,g)),u=Vn(()=>[Fn(e),Vo(o)],([p,h])=>{if(s(),!p)return;const y=jv(h)?{...h}:h;i.push(...n.flatMap(g=>r.map(b=>l(p,g,b,y))))},{immediate:!0,flush:"post"}),f=()=>{u(),s()};return Ho(f),f}function Hv(){const t=xt(!1);return nc()&&bc(()=>{t.value=!0},null),t}function qs(t){const e=Hv();return _t(()=>(e.value,!!t()))}function Vv(t,e={}){const{window:n=Gn}=e,r=qs(()=>n&&"matchMedia"in n&&typeof n.matchMedia=="function");let o;const i=xt(!1),s=f=>{i.value=f.matches},l=()=>{o&&("removeEventListener"in o?o.removeEventListener("change",s):o.removeListener(s))},u=uc(()=>{r.value&&(l(),o=n.matchMedia(Vo(t)),"addEventListener"in o?o.addEventListener("change",s):o.addListener(s),i.value=o.matches)});return Ho(()=>{u(),l(),o=void 0}),i}function Gv(t,e,n={}){const{window:r=Gn,...o}=n;let i;const s=qs(()=>r&&"MutationObserver"in r),l=()=>{i&&(i.disconnect(),i=void 0)},u=_t(()=>{const y=Vo(t),g=(Array.isArray(y)?y:[y]).map(Fn).filter(Mv);return new Set(g)}),f=Vn(()=>u.value,y=>{l(),s.value&&r&&y.size&&(i=new MutationObserver(e),y.forEach(g=>i.observe(g,o)))},{immediate:!0,flush:"post"}),p=()=>i==null?void 0:i.takeRecords(),h=()=>{l(),f()};return Ho(h),{isSupported:s,stop:h,takeRecords:p}}function Wv(t,e,n={}){const{window:r=Gn,...o}=n;let i;const s=qs(()=>r&&"ResizeObserver"in r),l=()=>{i&&(i.disconnect(),i=void 0)},u=_t(()=>Array.isArray(t)?t.map(h=>Fn(h)):[Fn(t)]),f=Vn(u,h=>{if(l(),s.value&&r){i=new ResizeObserver(e);for(const y of h)y&&i.observe(y,o)}},{immediate:!0,flush:"post"}),p=()=>{l(),f()};return Ho(p),{isSupported:s,stop:p}}function Ol(t,e={}){const{reset:n=!0,windowResize:r=!0,windowScroll:o=!0,immediate:i=!0}=e,s=xt(0),l=xt(0),u=xt(0),f=xt(0),p=xt(0),h=xt(0),y=xt(0),g=xt(0);function b(){const $=Fn(t);if(!$){n&&(s.value=0,l.value=0,u.value=0,f.value=0,p.value=0,h.value=0,y.value=0,g.value=0);return}const P=$.getBoundingClientRect();s.value=P.height,l.value=P.bottom,u.value=P.left,f.value=P.right,p.value=P.top,h.value=P.width,y.value=P.x,g.value=P.y}return Wv(t,b),Vn(()=>Fn(t),$=>!$&&b()),Gv(t,b,{attributeFilter:["style","class"]}),o&&kn("scroll",b,{capture:!0,passive:!0}),r&&kn("resize",b,{passive:!0}),op(()=>{i&&b()}),{height:s,bottom:l,left:u,right:f,top:p,width:h,x:y,y:g,update:b}}function qv(t,e={}){const{threshold:n=50,onSwipe:r,onSwipeEnd:o,onSwipeStart:i,passive:s=!0,window:l=Gn}=e,u=Pa({x:0,y:0}),f=Pa({x:0,y:0}),p=_t(()=>u.x-f.x),h=_t(()=>u.y-f.y),{max:y,abs:g}=Math,b=_t(()=>y(g(p.value),g(h.value))>=n),$=xt(!1),P=_t(()=>b.value?g(p.value)>g(h.value)?p.value>0?"left":"right":h.value>0?"up":"down":"none"),B=U=>[U.touches[0].clientX,U.touches[0].clientY],R=(U,T)=>{u.x=U,u.y=T},j=(U,T)=>{f.x=U,f.y=T};let q;const et=Xv(l==null?void 0:l.document);s?q=et?{passive:!0}:{capture:!1}:q=et?{passive:!1,capture:!0}:{capture:!0};const ft=U=>{$.value&&(o==null||o(U,P.value)),$.value=!1},Q=[kn(t,"touchstart",U=>{if(U.touches.length!==1)return;q.capture&&!q.passive&&U.preventDefault();const[T,C]=B(U);R(T,C),j(T,C),i==null||i(U)},q),kn(t,"touchmove",U=>{if(U.touches.length!==1)return;const[T,C]=B(U);j(T,C),!$.value&&b.value&&($.value=!0),$.value&&(r==null||r(U))},q),kn(t,["touchend","touchcancel"],ft,q)];return{isPassiveEventSupported:et,isSwiping:$,direction:P,coordsStart:u,coordsEnd:f,lengthX:p,lengthY:h,stop:()=>Q.forEach(U=>U())}}function Xv(t){if(!t)return!1;let e=!1;const n={get passive(){return e=!0,!1}};return t.addEventListener("x",os,n),t.removeEventListener("x",os),e}function Kv(t={}){const{window:e=Gn,initialWidth:n=Number.POSITIVE_INFINITY,initialHeight:r=Number.POSITIVE_INFINITY,listenOrientation:o=!0,includeScrollbar:i=!0}=t,s=xt(n),l=xt(r),u=()=>{e&&(i?(s.value=e.innerWidth,l.value=e.innerHeight):(s.value=e.document.documentElement.clientWidth,l.value=e.document.documentElement.clientHeight))};if(u(),op(u),kn("resize",u,{passive:!0}),o){const f=Vv("(orientation: portrait)");Vn(f,()=>u())}return{width:s,height:l}}var ip=["input:not([inert])","select:not([inert])","textarea:not([inert])","a[href]:not([inert])","button:not([inert])","[tabindex]:not(slot):not([inert])","audio[controls]:not([inert])","video[controls]:not([inert])",'[contenteditable]:not([contenteditable="false"]):not([inert])',"details>summary:first-of-type:not([inert])","details:not([inert])"],Ao=ip.join(","),sp=typeof Element>"u",dn=sp?function(){}:Element.prototype.matches||Element.prototype.msMatchesSelector||Element.prototype.webkitMatchesSelector,To=!sp&&Element.prototype.getRootNode?function(t){var e;return t==null||(e=t.getRootNode)===null||e===void 0?void 0:e.call(t)}:function(t){return t==null?void 0:t.ownerDocument},No=function t(e,n){var r;n===void 0&&(n=!0);var o=e==null||(r=e.getAttribute)===null||r===void 0?void 0:r.call(e,"inert"),i=o===""||o==="true",s=i||n&&e&&t(e.parentNode);return s},Zv=function(t){var e,n=t==null||(e=t.getAttribute)===null||e===void 0?void 0:e.call(t,"contenteditable");return n===""||n==="true"},ap=function(t,e,n){if(No(t))return[];var r=Array.prototype.slice.apply(t.querySelectorAll(Ao));return e&&dn.call(t,Ao)&&r.unshift(t),r=r.filter(n),r},lp=function t(e,n,r){for(var o=[],i=Array.from(e);i.length;){var s=i.shift();if(!No(s,!1))if(s.tagName==="SLOT"){var l=s.assignedElements(),u=l.length?l:s.children,f=t(u,!0,r);r.flatten?o.push.apply(o,f):o.push({scopeParent:s,candidates:f})}else{var p=dn.call(s,Ao);p&&r.filter(s)&&(n||!e.includes(s))&&o.push(s);var h=s.shadowRoot||typeof r.getShadowRoot=="function"&&r.getShadowRoot(s),y=!No(h,!1)&&(!r.shadowRootFilter||r.shadowRootFilter(s));if(h&&y){var g=t(h===!0?s.children:h.children,!0,r);r.flatten?o.push.apply(o,g):o.push({scopeParent:s,candidates:g})}else i.unshift.apply(i,s.children)}}return o},up=function(t){return!isNaN(parseInt(t.getAttribute("tabindex"),10))},tn=function(t){if(!t)throw new Error("No node provided");return t.tabIndex<0&&(/^(AUDIO|VIDEO|DETAILS)$/.test(t.tagName)||Zv(t))&&!up(t)?0:t.tabIndex},Yv=function(t,e){var n=tn(t);return n<0&&e&&!up(t)?0:n},Jv=function(t,e){return t.tabIndex===e.tabIndex?t.documentOrder-e.documentOrder:t.tabIndex-e.tabIndex},cp=function(t){return t.tagName==="INPUT"},Qv=function(t){return cp(t)&&t.type==="hidden"},t0=function(t){var e=t.tagName==="DETAILS"&&Array.prototype.slice.apply(t.children).some(function(n){return n.tagName==="SUMMARY"});return e},e0=function(t,e){for(var n=0;nsummary:first-of-type"),i=o?t.parentElement:t;if(dn.call(i,"details:not([open]) *"))return!0;if(!n||n==="full"||n==="legacy-full"){if(typeof r=="function"){for(var s=t;t;){var l=t.parentElement,u=To(t);if(l&&!l.shadowRoot&&r(l)===!0)return Ll(t);t.assignedSlot?t=t.assignedSlot:!l&&u!==t.ownerDocument?t=u.host:t=l}t=s}if(i0(t))return!t.getClientRects().length;if(n!=="legacy-full")return!0}else if(n==="non-zero-area")return Ll(t);return!1},a0=function(t){if(/^(INPUT|BUTTON|SELECT|TEXTAREA)$/.test(t.tagName))for(var e=t.parentElement;e;){if(e.tagName==="FIELDSET"&&e.disabled){for(var n=0;n=0)},u0=function t(e){var n=[],r=[];return e.forEach(function(o,i){var s=!!o.scopeParent,l=s?o.scopeParent:o,u=Yv(l,s),f=s?t(o.candidates):l;u===0?s?n.push.apply(n,f):n.push(l):r.push({documentOrder:i,tabIndex:u,item:o,isScope:s,content:f})}),r.sort(Jv).reduce(function(o,i){return i.isScope?o.push.apply(o,i.content):o.push(i.content),o},[]).concat(n)},c0=function(t,e){e=e||{};var n;return e.getShadowRoot?n=lp([t],e.includeContainer,{filter:is.bind(null,e),flatten:!1,getShadowRoot:e.getShadowRoot,shadowRootFilter:l0}):n=ap(t,e.includeContainer,is.bind(null,e)),u0(n)},p0=function(t,e){e=e||{};var n;return e.getShadowRoot?n=lp([t],e.includeContainer,{filter:Po.bind(null,e),flatten:!0,getShadowRoot:e.getShadowRoot}):n=ap(t,e.includeContainer,Po.bind(null,e)),n},bn=function(t,e){if(e=e||{},!t)throw new Error("No node provided");return dn.call(t,Ao)===!1?!1:is(e,t)},f0=ip.concat("iframe").join(","),xi=function(t,e){if(e=e||{},!t)throw new Error("No node provided");return dn.call(t,f0)===!1?!1:Po(e,t)};function Rl(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable})),n.push.apply(n,r)}return n}function Il(t){for(var e=1;e0){var n=t[t.length-1];n!==e&&n.pause()}var r=t.indexOf(e);r===-1||t.splice(r,1),t.push(e)},deactivateTrap:function(t,e){var n=t.indexOf(e);n!==-1&&t.splice(n,1),t.length>0&&t[t.length-1].unpause()}},v0=function(t){return t.tagName&&t.tagName.toLowerCase()==="input"&&typeof t.select=="function"},g0=function(t){return(t==null?void 0:t.key)==="Escape"||(t==null?void 0:t.key)==="Esc"||(t==null?void 0:t.keyCode)===27},ur=function(t){return(t==null?void 0:t.key)==="Tab"||(t==null?void 0:t.keyCode)===9},y0=function(t){return ur(t)&&!t.shiftKey},w0=function(t){return ur(t)&&t.shiftKey},Bl=function(t){return setTimeout(t,0)},Dl=function(t,e){var n=-1;return t.every(function(r,o){return e(r)?(n=o,!1):!0}),n},or=function(t){for(var e=arguments.length,n=new Array(e>1?e-1:0),r=1;r1?I-1:0),_=1;_=0)T=n.activeElement;else{var C=i.tabbableGroups[0],I=C&&C.firstTabbableNode;T=I||f("fallbackFocus")}if(!T)throw new Error("Your focus-trap needs to have at least one focusable element");return T},h=function(){if(i.containerGroups=i.containers.map(function(T){var C=c0(T,o.tabbableOptions),I=p0(T,o.tabbableOptions),w=C.length>0?C[0]:void 0,_=C.length>0?C[C.length-1]:void 0,S=I.find(function(D){return bn(D)}),O=I.slice().reverse().find(function(D){return bn(D)}),F=!!C.find(function(D){return tn(D)>0});return{container:T,tabbableNodes:C,focusableNodes:I,posTabIndexesFound:F,firstTabbableNode:w,lastTabbableNode:_,firstDomTabbableNode:S,lastDomTabbableNode:O,nextTabbableNode:function(D){var V=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0,G=C.indexOf(D);return G<0?V?I.slice(I.indexOf(D)+1).find(function(M){return bn(M)}):I.slice(0,I.indexOf(D)).reverse().find(function(M){return bn(M)}):C[G+(V?1:-1)]}}}),i.tabbableGroups=i.containerGroups.filter(function(T){return T.tabbableNodes.length>0}),i.tabbableGroups.length<=0&&!f("fallbackFocus"))throw new Error("Your focus-trap must have at least one container with at least one tabbable node in it at all times");if(i.containerGroups.find(function(T){return T.posTabIndexesFound})&&i.containerGroups.length>1)throw new Error("At least one node with a positive tabindex was found in one of your focus-trap's multiple containers. Positive tabindexes are only supported in single-container focus-traps.")},y=function T(C){if(C!==!1&&C!==n.activeElement){if(!C||!C.focus){T(p());return}C.focus({preventScroll:!!o.preventScroll}),i.mostRecentlyFocusedNode=C,v0(C)&&C.select()}},g=function(T){var C=f("setReturnFocus",T);return C||(C===!1?!1:T)},b=function(T){var C=T.target,I=T.event,w=T.isBackward,_=w===void 0?!1:w;C=C||Vr(I),h();var S=null;if(i.tabbableGroups.length>0){var O=u(C,I),F=O>=0?i.containerGroups[O]:void 0;if(O<0)_?S=i.tabbableGroups[i.tabbableGroups.length-1].lastTabbableNode:S=i.tabbableGroups[0].firstTabbableNode;else if(_){var D=Dl(i.tabbableGroups,function(ot){var H=ot.firstTabbableNode;return C===H});if(D<0&&(F.container===C||xi(C,o.tabbableOptions)&&!bn(C,o.tabbableOptions)&&!F.nextTabbableNode(C,!1))&&(D=O),D>=0){var V=D===0?i.tabbableGroups.length-1:D-1,G=i.tabbableGroups[V];S=tn(C)>=0?G.lastTabbableNode:G.lastDomTabbableNode}else ur(I)||(S=F.nextTabbableNode(C,!1))}else{var M=Dl(i.tabbableGroups,function(ot){var H=ot.lastTabbableNode;return C===H});if(M<0&&(F.container===C||xi(C,o.tabbableOptions)&&!bn(C,o.tabbableOptions)&&!F.nextTabbableNode(C))&&(M=O),M>=0){var X=M===i.tabbableGroups.length-1?0:M+1,W=i.tabbableGroups[X];S=tn(C)>=0?W.firstTabbableNode:W.firstDomTabbableNode}else ur(I)||(S=F.nextTabbableNode(C))}}else S=f("fallbackFocus");return S},$=function(T){var C=Vr(T);if(!(u(C,T)>=0)){if(or(o.clickOutsideDeactivates,T)){s.deactivate({returnFocus:o.returnFocusOnDeactivate});return}or(o.allowOutsideClick,T)||T.preventDefault()}},P=function(T){var C=Vr(T),I=u(C,T)>=0;if(I||C instanceof Document)I&&(i.mostRecentlyFocusedNode=C);else{T.stopImmediatePropagation();var w,_=!0;if(i.mostRecentlyFocusedNode)if(tn(i.mostRecentlyFocusedNode)>0){var S=u(i.mostRecentlyFocusedNode),O=i.containerGroups[S].tabbableNodes;if(O.length>0){var F=O.findIndex(function(D){return D===i.mostRecentlyFocusedNode});F>=0&&(o.isKeyForward(i.recentNavEvent)?F+1=0&&(w=O[F-1],_=!1))}}else i.containerGroups.some(function(D){return D.tabbableNodes.some(function(V){return tn(V)>0})})||(_=!1);else _=!1;_&&(w=b({target:i.mostRecentlyFocusedNode,isBackward:o.isKeyBackward(i.recentNavEvent)})),y(w||i.mostRecentlyFocusedNode||p())}i.recentNavEvent=void 0},B=function(T){var C=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;i.recentNavEvent=T;var I=b({event:T,isBackward:C});I&&(ur(T)&&T.preventDefault(),y(I))},R=function(T){if(g0(T)&&or(o.escapeDeactivates,T)!==!1){T.preventDefault(),s.deactivate();return}(o.isKeyForward(T)||o.isKeyBackward(T))&&B(T,o.isKeyBackward(T))},j=function(T){var C=Vr(T);u(C,T)>=0||or(o.clickOutsideDeactivates,T)||or(o.allowOutsideClick,T)||(T.preventDefault(),T.stopImmediatePropagation())},q=function(){if(i.active)return Fl.activateTrap(r,s),i.delayInitialFocusTimer=o.delayInitialFocus?Bl(function(){y(p())}):y(p()),n.addEventListener("focusin",P,!0),n.addEventListener("mousedown",$,{capture:!0,passive:!1}),n.addEventListener("touchstart",$,{capture:!0,passive:!1}),n.addEventListener("click",j,{capture:!0,passive:!1}),n.addEventListener("keydown",R,{capture:!0,passive:!1}),s},et=function(){if(i.active)return n.removeEventListener("focusin",P,!0),n.removeEventListener("mousedown",$,!0),n.removeEventListener("touchstart",$,!0),n.removeEventListener("click",j,!0),n.removeEventListener("keydown",R,!0),s},ft=function(T){var C=T.some(function(I){var w=Array.from(I.removedNodes);return w.some(function(_){return _===i.mostRecentlyFocusedNode})});C&&y(p())},Q=typeof window<"u"&&"MutationObserver"in window?new MutationObserver(ft):void 0,U=function(){Q&&(Q.disconnect(),i.active&&!i.paused&&i.containers.map(function(T){Q.observe(T,{subtree:!0,childList:!0})}))};return s={get active(){return i.active},get paused(){return i.paused},activate:function(T){if(i.active)return this;var C=l(T,"onActivate"),I=l(T,"onPostActivate"),w=l(T,"checkCanFocusTrap");w||h(),i.active=!0,i.paused=!1,i.nodeFocusedBeforeActivation=n.activeElement,C==null||C();var _=function(){w&&h(),q(),U(),I==null||I()};return w?(w(i.containers.concat()).then(_,_),this):(_(),this)},deactivate:function(T){if(!i.active)return this;var C=Il({onDeactivate:o.onDeactivate,onPostDeactivate:o.onPostDeactivate,checkCanReturnFocus:o.checkCanReturnFocus},T);clearTimeout(i.delayInitialFocusTimer),i.delayInitialFocusTimer=void 0,et(),i.active=!1,i.paused=!1,U(),Fl.deactivateTrap(r,s);var I=l(C,"onDeactivate"),w=l(C,"onPostDeactivate"),_=l(C,"checkCanReturnFocus"),S=l(C,"returnFocus","returnFocusOnDeactivate");I==null||I();var O=function(){Bl(function(){S&&y(g(i.nodeFocusedBeforeActivation)),w==null||w()})};return S&&_?(_(g(i.nodeFocusedBeforeActivation)).then(O,O),this):(O(),this)},pause:function(T){if(i.paused||!i.active)return this;var C=l(T,"onPause"),I=l(T,"onPostPause");return i.paused=!0,C==null||C(),et(),U(),I==null||I(),this},unpause:function(T){if(!i.paused||!i.active)return this;var C=l(T,"onUnpause"),I=l(T,"onPostUnpause");return i.paused=!1,C==null||C(),h(),q(),U(),I==null||I(),this},updateContainerElements:function(T){var C=[].concat(T).filter(Boolean);return i.containers=C.map(function(I){return typeof I=="string"?n.querySelector(I):I}),i.active&&h(),U(),this}},s.updateContainerElements(t),s};const $o=function(){return Object.assign(window,{_nc_focus_trap:window._nc_focus_trap||[]}),window._nc_focus_trap};var b0="Expected a function",fp="__lodash_hash_undefined__",dp=1/0,x0="[object Function]",E0="[object GeneratorFunction]",C0="[object Symbol]",S0=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,A0=/^\w*$/,T0=/^\./,N0=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,P0=/[\\^$.*+?()[\]{}|]/g,$0=/\\(\\)?/g,k0=/^\[object .+?Constructor\]$/,O0=typeof Hr=="object"&&Hr&&Hr.Object===Object&&Hr,L0=typeof self=="object"&&self&&self.Object===Object&&self,Xs=O0||L0||Function("return this")();function R0(t,e){return t==null?void 0:t[e]}function I0(t){var e=!1;if(t!=null&&typeof t.toString!="function")try{e=!!(t+"")}catch{}return e}var F0=Array.prototype,B0=Function.prototype,hp=Object.prototype,Ei=Xs["__core-js_shared__"],Ml=function(){var t=/[^.]+$/.exec(Ei&&Ei.keys&&Ei.keys.IE_PROTO||"");return t?"Symbol(src)_1."+t:""}(),mp=B0.toString,Ks=hp.hasOwnProperty,vp=hp.toString,D0=RegExp("^"+mp.call(Ks).replace(P0,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),zl=Xs.Symbol,M0=F0.splice,z0=gp(Xs,"Map"),_r=gp(Object,"create"),jl=zl?zl.prototype:void 0,Ul=jl?jl.toString:void 0;function en(t){var e=-1,n=t?t.length:0;for(this.clear();++e-1}function Z0(t,e){var n=this.__data__,r=Go(n,t);return r<0?n.push([t,e]):n[r][1]=e,this}Sn.prototype.clear=W0,Sn.prototype.delete=q0,Sn.prototype.get=X0,Sn.prototype.has=K0,Sn.prototype.set=Z0;function nn(t){var e=-1,n=t?t.length:0;for(this.clear();++e 1)",pluralsFunc:function(t){return t>1}},af:{name:"Afrikaans",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},ak:{name:"Akan",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(t){return t>1}},am:{name:"Amharic",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(t){return t>1}},an:{name:"Aragonese",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},ar:{name:"Arabic",examples:[{plural:0,sample:0},{plural:1,sample:1},{plural:2,sample:2},{plural:3,sample:3},{plural:4,sample:11},{plural:5,sample:100}],nplurals:6,pluralsText:"nplurals = 6; plural = (n === 0 ? 0 : n === 1 ? 1 : n === 2 ? 2 : n % 100 >= 3 && n % 100 <= 10 ? 3 : n % 100 >= 11 ? 4 : 5)",pluralsFunc:function(t){return t===0?0:t===1?1:t===2?2:t%100>=3&&t%100<=10?3:t%100>=11?4:5}},arn:{name:"Mapudungun",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(t){return t>1}},ast:{name:"Asturian",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},ay:{name:"Aymará",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},az:{name:"Azerbaijani",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},be:{name:"Belarusian",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:5}],nplurals:3,pluralsText:"nplurals = 3; plural = (n % 10 === 1 && n % 100 !== 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)",pluralsFunc:function(t){return t%10===1&&t%100!==11?0:t%10>=2&&t%10<=4&&(t%100<10||t%100>=20)?1:2}},bg:{name:"Bulgarian",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},bn:{name:"Bengali",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},bo:{name:"Tibetan",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},br:{name:"Breton",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(t){return t>1}},brx:{name:"Bodo",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},bs:{name:"Bosnian",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:5}],nplurals:3,pluralsText:"nplurals = 3; plural = (n % 10 === 1 && n % 100 !== 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)",pluralsFunc:function(t){return t%10===1&&t%100!==11?0:t%10>=2&&t%10<=4&&(t%100<10||t%100>=20)?1:2}},ca:{name:"Catalan",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},cgg:{name:"Chiga",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},cs:{name:"Czech",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:5}],nplurals:3,pluralsText:"nplurals = 3; plural = (n === 1 ? 0 : (n >= 2 && n <= 4) ? 1 : 2)",pluralsFunc:function(t){return t===1?0:t>=2&&t<=4?1:2}},csb:{name:"Kashubian",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:5}],nplurals:3,pluralsText:"nplurals = 3; plural = (n === 1 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)",pluralsFunc:function(t){return t===1?0:t%10>=2&&t%10<=4&&(t%100<10||t%100>=20)?1:2}},cy:{name:"Welsh",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:3},{plural:3,sample:8}],nplurals:4,pluralsText:"nplurals = 4; plural = (n === 1 ? 0 : n === 2 ? 1 : (n !== 8 && n !== 11) ? 2 : 3)",pluralsFunc:function(t){return t===1?0:t===2?1:t!==8&&t!==11?2:3}},da:{name:"Danish",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},de:{name:"German",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},doi:{name:"Dogri",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},dz:{name:"Dzongkha",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},el:{name:"Greek",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},en:{name:"English",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},eo:{name:"Esperanto",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},es:{name:"Spanish",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},et:{name:"Estonian",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},eu:{name:"Basque",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},fa:{name:"Persian",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},ff:{name:"Fulah",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},fi:{name:"Finnish",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},fil:{name:"Filipino",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(t){return t>1}},fo:{name:"Faroese",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},fr:{name:"French",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(t){return t>1}},fur:{name:"Friulian",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},fy:{name:"Frisian",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},ga:{name:"Irish",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:3},{plural:3,sample:7},{plural:4,sample:11}],nplurals:5,pluralsText:"nplurals = 5; plural = (n === 1 ? 0 : n === 2 ? 1 : n < 7 ? 2 : n < 11 ? 3 : 4)",pluralsFunc:function(t){return t===1?0:t===2?1:t<7?2:t<11?3:4}},gd:{name:"Scottish Gaelic",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:3},{plural:3,sample:20}],nplurals:4,pluralsText:"nplurals = 4; plural = ((n === 1 || n === 11) ? 0 : (n === 2 || n === 12) ? 1 : (n > 2 && n < 20) ? 2 : 3)",pluralsFunc:function(t){return t===1||t===11?0:t===2||t===12?1:t>2&&t<20?2:3}},gl:{name:"Galician",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},gu:{name:"Gujarati",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},gun:{name:"Gun",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(t){return t>1}},ha:{name:"Hausa",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},he:{name:"Hebrew",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},hi:{name:"Hindi",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},hne:{name:"Chhattisgarhi",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},hr:{name:"Croatian",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:5}],nplurals:3,pluralsText:"nplurals = 3; plural = (n % 10 === 1 && n % 100 !== 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)",pluralsFunc:function(t){return t%10===1&&t%100!==11?0:t%10>=2&&t%10<=4&&(t%100<10||t%100>=20)?1:2}},hu:{name:"Hungarian",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},hy:{name:"Armenian",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},id:{name:"Indonesian",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},is:{name:"Icelandic",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n % 10 !== 1 || n % 100 === 11)",pluralsFunc:function(t){return t%10!==1||t%100===11}},it:{name:"Italian",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},ja:{name:"Japanese",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},jbo:{name:"Lojban",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},jv:{name:"Javanese",examples:[{plural:0,sample:0},{plural:1,sample:1}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 0)",pluralsFunc:function(t){return t!==0}},ka:{name:"Georgian",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},kk:{name:"Kazakh",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},km:{name:"Khmer",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},kn:{name:"Kannada",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},ko:{name:"Korean",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},ku:{name:"Kurdish",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},kw:{name:"Cornish",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:3},{plural:3,sample:4}],nplurals:4,pluralsText:"nplurals = 4; plural = (n === 1 ? 0 : n === 2 ? 1 : n === 3 ? 2 : 3)",pluralsFunc:function(t){return t===1?0:t===2?1:t===3?2:3}},ky:{name:"Kyrgyz",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},lb:{name:"Letzeburgesch",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},ln:{name:"Lingala",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(t){return t>1}},lo:{name:"Lao",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},lt:{name:"Lithuanian",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:10}],nplurals:3,pluralsText:"nplurals = 3; plural = (n % 10 === 1 && n % 100 !== 11 ? 0 : n % 10 >= 2 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)",pluralsFunc:function(t){return t%10===1&&t%100!==11?0:t%10>=2&&(t%100<10||t%100>=20)?1:2}},lv:{name:"Latvian",examples:[{plural:2,sample:0},{plural:0,sample:1},{plural:1,sample:2}],nplurals:3,pluralsText:"nplurals = 3; plural = (n % 10 === 1 && n % 100 !== 11 ? 0 : n !== 0 ? 1 : 2)",pluralsFunc:function(t){return t%10===1&&t%100!==11?0:t!==0?1:2}},mai:{name:"Maithili",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},mfe:{name:"Mauritian Creole",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(t){return t>1}},mg:{name:"Malagasy",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(t){return t>1}},mi:{name:"Maori",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(t){return t>1}},mk:{name:"Macedonian",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n === 1 || n % 10 === 1 ? 0 : 1)",pluralsFunc:function(t){return t===1||t%10===1?0:1}},ml:{name:"Malayalam",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},mn:{name:"Mongolian",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},mni:{name:"Manipuri",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},mnk:{name:"Mandinka",examples:[{plural:0,sample:0},{plural:1,sample:1},{plural:2,sample:2}],nplurals:3,pluralsText:"nplurals = 3; plural = (n === 0 ? 0 : n === 1 ? 1 : 2)",pluralsFunc:function(t){return t===0?0:t===1?1:2}},mr:{name:"Marathi",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},ms:{name:"Malay",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},mt:{name:"Maltese",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:11},{plural:3,sample:20}],nplurals:4,pluralsText:"nplurals = 4; plural = (n === 1 ? 0 : n === 0 || ( n % 100 > 1 && n % 100 < 11) ? 1 : (n % 100 > 10 && n % 100 < 20 ) ? 2 : 3)",pluralsFunc:function(t){return t===1?0:t===0||t%100>1&&t%100<11?1:t%100>10&&t%100<20?2:3}},my:{name:"Burmese",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},nah:{name:"Nahuatl",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},nap:{name:"Neapolitan",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},nb:{name:"Norwegian Bokmal",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},ne:{name:"Nepali",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},nl:{name:"Dutch",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},nn:{name:"Norwegian Nynorsk",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},no:{name:"Norwegian",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},nso:{name:"Northern Sotho",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},oc:{name:"Occitan",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(t){return t>1}},or:{name:"Oriya",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},pa:{name:"Punjabi",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},pap:{name:"Papiamento",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},pl:{name:"Polish",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:5}],nplurals:3,pluralsText:"nplurals = 3; plural = (n === 1 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)",pluralsFunc:function(t){return t===1?0:t%10>=2&&t%10<=4&&(t%100<10||t%100>=20)?1:2}},pms:{name:"Piemontese",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},ps:{name:"Pashto",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},pt:{name:"Portuguese",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},rm:{name:"Romansh",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},ro:{name:"Romanian",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:20}],nplurals:3,pluralsText:"nplurals = 3; plural = (n === 1 ? 0 : (n === 0 || (n % 100 > 0 && n % 100 < 20)) ? 1 : 2)",pluralsFunc:function(t){return t===1?0:t===0||t%100>0&&t%100<20?1:2}},ru:{name:"Russian",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:5}],nplurals:3,pluralsText:"nplurals = 3; plural = (n % 10 === 1 && n % 100 !== 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)",pluralsFunc:function(t){return t%10===1&&t%100!==11?0:t%10>=2&&t%10<=4&&(t%100<10||t%100>=20)?1:2}},rw:{name:"Kinyarwanda",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},sah:{name:"Yakut",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},sat:{name:"Santali",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},sco:{name:"Scots",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},sd:{name:"Sindhi",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},se:{name:"Northern Sami",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},si:{name:"Sinhala",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},sk:{name:"Slovak",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:5}],nplurals:3,pluralsText:"nplurals = 3; plural = (n === 1 ? 0 : (n >= 2 && n <= 4) ? 1 : 2)",pluralsFunc:function(t){return t===1?0:t>=2&&t<=4?1:2}},sl:{name:"Slovenian",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:3},{plural:3,sample:5}],nplurals:4,pluralsText:"nplurals = 4; plural = (n % 100 === 1 ? 0 : n % 100 === 2 ? 1 : n % 100 === 3 || n % 100 === 4 ? 2 : 3)",pluralsFunc:function(t){return t%100===1?0:t%100===2?1:t%100===3||t%100===4?2:3}},so:{name:"Somali",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},son:{name:"Songhay",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},sq:{name:"Albanian",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},sr:{name:"Serbian",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:5}],nplurals:3,pluralsText:"nplurals = 3; plural = (n % 10 === 1 && n % 100 !== 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)",pluralsFunc:function(t){return t%10===1&&t%100!==11?0:t%10>=2&&t%10<=4&&(t%100<10||t%100>=20)?1:2}},su:{name:"Sundanese",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},sv:{name:"Swedish",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},sw:{name:"Swahili",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},ta:{name:"Tamil",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},te:{name:"Telugu",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},tg:{name:"Tajik",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(t){return t>1}},th:{name:"Thai",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},ti:{name:"Tigrinya",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(t){return t>1}},tk:{name:"Turkmen",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},tr:{name:"Turkish",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(t){return t>1}},tt:{name:"Tatar",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},ug:{name:"Uyghur",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},uk:{name:"Ukrainian",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:5}],nplurals:3,pluralsText:"nplurals = 3; plural = (n % 10 === 1 && n % 100 !== 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)",pluralsFunc:function(t){return t%10===1&&t%100!==11?0:t%10>=2&&t%10<=4&&(t%100<10||t%100>=20)?1:2}},ur:{name:"Urdu",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},uz:{name:"Uzbek",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(t){return t>1}},vi:{name:"Vietnamese",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},wa:{name:"Walloon",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(t){return t>1}},wo:{name:"Wolof",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},yo:{name:"Yoruba",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(t){return t!==1}},zh:{name:"Chinese",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}}},w1=g1,_1=y1,b1=gt;function gt(t){t=t||{},this.catalogs={},this.locale="",this.domain="messages",this.listeners=[],this.sourceLocale="",t.sourceLocale&&(typeof t.sourceLocale=="string"?this.sourceLocale=t.sourceLocale:this.warn("The `sourceLocale` option should be a string")),this.debug="debug"in t&&t.debug===!0}gt.prototype.on=function(t,e){this.listeners.push({eventName:t,callback:e})},gt.prototype.off=function(t,e){this.listeners=this.listeners.filter(function(n){return!(n.eventName===t&&n.callback===e)})},gt.prototype.emit=function(t,e){for(var n=0;ne in t?E1(t,e,{enumerable:!0,configurable:!0,writable:!0,value:n}):t[e]=n,io=(t,e,n)=>(C1(t,typeof e!="symbol"?e+"":e,n),n);class S1{constructor(){io(this,"locale"),io(this,"translations",{}),io(this,"debug",!1)}setLanguage(e){return this.locale=e,this}detectLocale(){return this.setLanguage(fv().replace("-","_"))}addTranslation(e,n){return this.translations[e]=n,this}enableDebugMode(){return this.debug=!0,this}build(){return new A1(this.locale||"en",this.translations,this.debug)}}class A1{constructor(e,n,r){io(this,"gt"),this.gt=new x1({debug:r,sourceLocale:"en"});for(const o in n)this.gt.addTranslations(o,"messages",n[o]);this.gt.setLocale(e)}subtitudePlaceholders(e,n){return e.replace(/{([^{}]*)}/g,(r,o)=>{const i=n[o];return typeof i=="string"||typeof i=="number"?i.toString():r})}gettext(e,n={}){return this.subtitudePlaceholders(this.gt.gettext(e),n)}ngettext(e,n,r,o={}){return this.subtitudePlaceholders(this.gt.ngettext(e,n,r).replace(/%n/g,r.toString()),o)}}function T1(){return new S1}const je=T1().detectLocale().build();je.ngettext.bind(je);const Je=je.gettext.bind(je),_p=(...t)=>{t.forEach(e=>{e.registered||(e.forEach(({l:n,t:r})=>{const o=Object.fromEntries(Object.entries(r).map(([i,s])=>[i,{msgid:i,msgid_plural:s.p,msgstr:s.v}]));je.gt.catalogs[n]||(je.gt.catalogs[n]={messages:{translations:{}}}),je.gt.catalogs[n].messages.translations[""]={...je.gt.catalogs[n].messages.translations[""],...o}}),e.registered=!0)})},N1=[{l:"af",t:{Actions:{v:[""]}}},{l:"ar",t:{Actions:{v:["إجراءات"]}}},{l:"ast",t:{Actions:{v:["Aiciones"]}}},{l:"az",t:{Actions:{v:[""]}}},{l:"be",t:{Actions:{v:[""]}}},{l:"bg",t:{Actions:{v:[""]}}},{l:"bn_BD",t:{Actions:{v:[""]}}},{l:"br",t:{Actions:{v:["Oberioù"]}}},{l:"bs",t:{Actions:{v:[""]}}},{l:"ca",t:{Actions:{v:["Accions"]}}},{l:"cs",t:{Actions:{v:["Akce"]}}},{l:"cs_CZ",t:{Actions:{v:["Akce"]}}},{l:"cy_GB",t:{Actions:{v:[""]}}},{l:"da",t:{Actions:{v:["Handlinger"]}}},{l:"de",t:{Actions:{v:["Aktionen"]}}},{l:"de_DE",t:{Actions:{v:["Aktionen"]}}},{l:"el",t:{Actions:{v:["Ενέργειες"]}}},{l:"en_GB",t:{Actions:{v:["Actions"]}}},{l:"eo",t:{Actions:{v:["Agoj"]}}},{l:"es",t:{Actions:{v:["Acciones"]}}},{l:"es_419",t:{Actions:{v:[""]}}},{l:"es_AR",t:{Actions:{v:[""]}}},{l:"es_CL",t:{Actions:{v:[""]}}},{l:"es_CO",t:{Actions:{v:[""]}}},{l:"es_CR",t:{Actions:{v:[""]}}},{l:"es_DO",t:{Actions:{v:[""]}}},{l:"es_EC",t:{Actions:{v:["Acciones"]}}},{l:"es_GT",t:{Actions:{v:[""]}}},{l:"es_HN",t:{Actions:{v:[""]}}},{l:"es_MX",t:{Actions:{v:[""]}}},{l:"es_NI",t:{Actions:{v:[""]}}},{l:"es_PA",t:{Actions:{v:[""]}}},{l:"es_PE",t:{Actions:{v:[""]}}},{l:"es_PR",t:{Actions:{v:[""]}}},{l:"es_PY",t:{Actions:{v:[""]}}},{l:"es_SV",t:{Actions:{v:[""]}}},{l:"es_UY",t:{Actions:{v:[""]}}},{l:"et_EE",t:{Actions:{v:[""]}}},{l:"eu",t:{Actions:{v:["Ekintzak"]}}},{l:"fa",t:{Actions:{v:[""]}}},{l:"fi",t:{Actions:{v:["Toiminnot"]}}},{l:"fo",t:{Actions:{v:[""]}}},{l:"fr",t:{Actions:{v:["Actions"]}}},{l:"ga",t:{Actions:{v:["Gníomhartha"]}}},{l:"gd",t:{Actions:{v:[""]}}},{l:"gl",t:{Actions:{v:["Accións"]}}},{l:"he",t:{Actions:{v:["פעולות"]}}},{l:"hi_IN",t:{Actions:{v:[""]}}},{l:"hr",t:{Actions:{v:[""]}}},{l:"hsb",t:{Actions:{v:[""]}}},{l:"hu",t:{Actions:{v:["Műveletek"]}}},{l:"hy",t:{Actions:{v:[""]}}},{l:"ia",t:{Actions:{v:[""]}}},{l:"id",t:{Actions:{v:["Tindakan"]}}},{l:"ig",t:{Actions:{v:[""]}}},{l:"is",t:{Actions:{v:["Aðgerðir"]}}},{l:"it",t:{Actions:{v:["Azioni"]}}},{l:"ja",t:{Actions:{v:["操作"]}}},{l:"ja_JP",t:{Actions:{v:["操作"]}}},{l:"ka",t:{Actions:{v:[""]}}},{l:"ka_GE",t:{Actions:{v:[""]}}},{l:"kab",t:{Actions:{v:[""]}}},{l:"kk",t:{Actions:{v:[""]}}},{l:"km",t:{Actions:{v:[""]}}},{l:"kn",t:{Actions:{v:[""]}}},{l:"ko",t:{Actions:{v:[""]}}},{l:"la",t:{Actions:{v:[""]}}},{l:"lb",t:{Actions:{v:[""]}}},{l:"lo",t:{Actions:{v:[""]}}},{l:"lt_LT",t:{Actions:{v:["Veiksmai"]}}},{l:"lv",t:{Actions:{v:[""]}}},{l:"mk",t:{Actions:{v:["Акции"]}}},{l:"mn",t:{Actions:{v:[""]}}},{l:"mr",t:{Actions:{v:[""]}}},{l:"ms_MY",t:{Actions:{v:[""]}}},{l:"my",t:{Actions:{v:["လုပ်ဆောင်ချက်များ"]}}},{l:"nb",t:{Actions:{v:["Handlinger"]}}},{l:"ne",t:{Actions:{v:[""]}}},{l:"nl",t:{Actions:{v:["Acties"]}}},{l:"nn_NO",t:{Actions:{v:[""]}}},{l:"oc",t:{Actions:{v:["Accions"]}}},{l:"pl",t:{Actions:{v:["Działania"]}}},{l:"ps",t:{Actions:{v:[""]}}},{l:"pt_BR",t:{Actions:{v:["Ações"]}}},{l:"pt_PT",t:{Actions:{v:["Ações"]}}},{l:"ro",t:{Actions:{v:["Acțiuni"]}}},{l:"ru",t:{Actions:{v:["Действия "]}}},{l:"sc",t:{Actions:{v:[""]}}},{l:"si",t:{Actions:{v:[""]}}},{l:"sk",t:{Actions:{v:["Akcie"]}}},{l:"sl",t:{Actions:{v:["Dejanja"]}}},{l:"sq",t:{Actions:{v:[""]}}},{l:"sr",t:{Actions:{v:["Радње"]}}},{l:"sr@latin",t:{Actions:{v:[""]}}},{l:"sv",t:{Actions:{v:["Åtgärder"]}}},{l:"sw",t:{Actions:{v:[""]}}},{l:"ta",t:{Actions:{v:[""]}}},{l:"th",t:{Actions:{v:[""]}}},{l:"tk",t:{Actions:{v:[""]}}},{l:"tr",t:{Actions:{v:["İşlemler"]}}},{l:"ug",t:{Actions:{v:[""]}}},{l:"uk",t:{Actions:{v:["Дії"]}}},{l:"ur_PK",t:{Actions:{v:[""]}}},{l:"uz",t:{Actions:{v:[""]}}},{l:"vi",t:{Actions:{v:[""]}}},{l:"zh_CN",t:{Actions:{v:["行为"]}}},{l:"zh_HK",t:{Actions:{v:["動作"]}}},{l:"zh_TW",t:{Actions:{v:["動作"]}}},{l:"zu_ZA",t:{Actions:{v:[""]}}}],P1=[{l:"af",t:{Close:{v:[""]}}},{l:"ar",t:{Close:{v:["أغلِق"]}}},{l:"ast",t:{Close:{v:["Zarrar"]}}},{l:"az",t:{Close:{v:[""]}}},{l:"be",t:{Close:{v:[""]}}},{l:"bg",t:{Close:{v:[""]}}},{l:"bn_BD",t:{Close:{v:[""]}}},{l:"br",t:{Close:{v:["Serriñ"]}}},{l:"bs",t:{Close:{v:[""]}}},{l:"ca",t:{Close:{v:["Tanca"]}}},{l:"cs",t:{Close:{v:["Zavřít"]}}},{l:"cs_CZ",t:{Close:{v:["Zavřít"]}}},{l:"cy_GB",t:{Close:{v:[""]}}},{l:"da",t:{Close:{v:["Luk"]}}},{l:"de",t:{Close:{v:["Schließen"]}}},{l:"de_DE",t:{Close:{v:["Schließen"]}}},{l:"el",t:{Close:{v:["Κλείσιμο"]}}},{l:"en_GB",t:{Close:{v:["Close"]}}},{l:"eo",t:{Close:{v:["Fermu"]}}},{l:"es",t:{Close:{v:["Cerrar"]}}},{l:"es_419",t:{Close:{v:[""]}}},{l:"es_AR",t:{Close:{v:[""]}}},{l:"es_CL",t:{Close:{v:[""]}}},{l:"es_CO",t:{Close:{v:[""]}}},{l:"es_CR",t:{Close:{v:[""]}}},{l:"es_DO",t:{Close:{v:[""]}}},{l:"es_EC",t:{Close:{v:["Cerrar"]}}},{l:"es_GT",t:{Close:{v:[""]}}},{l:"es_HN",t:{Close:{v:[""]}}},{l:"es_MX",t:{Close:{v:[""]}}},{l:"es_NI",t:{Close:{v:[""]}}},{l:"es_PA",t:{Close:{v:[""]}}},{l:"es_PE",t:{Close:{v:[""]}}},{l:"es_PR",t:{Close:{v:[""]}}},{l:"es_PY",t:{Close:{v:[""]}}},{l:"es_SV",t:{Close:{v:[""]}}},{l:"es_UY",t:{Close:{v:[""]}}},{l:"et_EE",t:{Close:{v:[""]}}},{l:"eu",t:{Close:{v:["Itxi"]}}},{l:"fa",t:{Close:{v:[""]}}},{l:"fi",t:{Close:{v:["Sulje"]}}},{l:"fo",t:{Close:{v:[""]}}},{l:"fr",t:{Close:{v:["Fermer"]}}},{l:"ga",t:{Close:{v:["Dún"]}}},{l:"gd",t:{Close:{v:[""]}}},{l:"gl",t:{Close:{v:["Pechar"]}}},{l:"he",t:{Close:{v:["סגירה"]}}},{l:"hi_IN",t:{Close:{v:[""]}}},{l:"hr",t:{Close:{v:[""]}}},{l:"hsb",t:{Close:{v:[""]}}},{l:"hu",t:{Close:{v:["Bezárás"]}}},{l:"hy",t:{Close:{v:[""]}}},{l:"ia",t:{Close:{v:[""]}}},{l:"id",t:{Close:{v:["Tutup"]}}},{l:"ig",t:{Close:{v:[""]}}},{l:"is",t:{Close:{v:["Loka"]}}},{l:"it",t:{Close:{v:["Chiudi"]}}},{l:"ja",t:{Close:{v:["閉じる"]}}},{l:"ja_JP",t:{Close:{v:["閉じる"]}}},{l:"ka",t:{Close:{v:[""]}}},{l:"ka_GE",t:{Close:{v:[""]}}},{l:"kab",t:{Close:{v:[""]}}},{l:"kk",t:{Close:{v:[""]}}},{l:"km",t:{Close:{v:[""]}}},{l:"kn",t:{Close:{v:[""]}}},{l:"ko",t:{Close:{v:[""]}}},{l:"la",t:{Close:{v:[""]}}},{l:"lb",t:{Close:{v:[""]}}},{l:"lo",t:{Close:{v:[""]}}},{l:"lt_LT",t:{Close:{v:["Užverti"]}}},{l:"lv",t:{Close:{v:["Aizvērt"]}}},{l:"mk",t:{Close:{v:["Затвори"]}}},{l:"mn",t:{Close:{v:[""]}}},{l:"mr",t:{Close:{v:[""]}}},{l:"ms_MY",t:{Close:{v:[""]}}},{l:"my",t:{Close:{v:["ပိတ်ရန်"]}}},{l:"nb",t:{Close:{v:["Lukk"]}}},{l:"ne",t:{Close:{v:[""]}}},{l:"nl",t:{Close:{v:["Sluiten"]}}},{l:"nn_NO",t:{Close:{v:[""]}}},{l:"oc",t:{Close:{v:["Tampar"]}}},{l:"pl",t:{Close:{v:["Zamknij"]}}},{l:"ps",t:{Close:{v:[""]}}},{l:"pt_BR",t:{Close:{v:["Fechar"]}}},{l:"pt_PT",t:{Close:{v:["Fechar"]}}},{l:"ro",t:{Close:{v:["Închideți"]}}},{l:"ru",t:{Close:{v:["Закрыть"]}}},{l:"sc",t:{Close:{v:[""]}}},{l:"si",t:{Close:{v:[""]}}},{l:"sk",t:{Close:{v:["Zatvoriť"]}}},{l:"sl",t:{Close:{v:["Zapri"]}}},{l:"sq",t:{Close:{v:[""]}}},{l:"sr",t:{Close:{v:["Затвори"]}}},{l:"sr@latin",t:{Close:{v:[""]}}},{l:"sv",t:{Close:{v:["Stäng"]}}},{l:"sw",t:{Close:{v:[""]}}},{l:"ta",t:{Close:{v:[""]}}},{l:"th",t:{Close:{v:[""]}}},{l:"tk",t:{Close:{v:[""]}}},{l:"tr",t:{Close:{v:["Kapat"]}}},{l:"ug",t:{Close:{v:[""]}}},{l:"uk",t:{Close:{v:["Закрити"]}}},{l:"ur_PK",t:{Close:{v:[""]}}},{l:"uz",t:{Close:{v:[""]}}},{l:"vi",t:{Close:{v:[""]}}},{l:"zh_CN",t:{Close:{v:["关闭"]}}},{l:"zh_HK",t:{Close:{v:["關閉"]}}},{l:"zh_TW",t:{Close:{v:["關閉"]}}},{l:"zu_ZA",t:{Close:{v:[""]}}}],$1=[{l:"af",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"ar",t:{Next:{v:["التالي"]},"Pause slideshow":{v:["تجميد عرض الشرائح"]},Previous:{v:["السابق"]},"Start slideshow":{v:["إبدإ العرض"]}}},{l:"ast",t:{Next:{v:["Siguiente"]},"Pause slideshow":{v:["Posar la presentación de diapositives"]},Previous:{v:["Anterior"]},"Start slideshow":{v:["Aniciar la presentación de diapositives"]}}},{l:"az",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"be",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"bg",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"bn_BD",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"br",t:{Next:{v:["Da heul"]},"Pause slideshow":{v:["Arsav an diaporama"]},Previous:{v:["A-raok"]},"Start slideshow":{v:["Kregiñ an diaporama"]}}},{l:"bs",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"ca",t:{Next:{v:["Següent"]},"Pause slideshow":{v:["Atura la presentació"]},Previous:{v:["Anterior"]},"Start slideshow":{v:["Inicia la presentació"]}}},{l:"cs",t:{Next:{v:["Následující"]},"Pause slideshow":{v:["Pozastavit prezentaci"]},Previous:{v:["Předchozí"]},"Start slideshow":{v:["Spustit prezentaci"]}}},{l:"cs_CZ",t:{Next:{v:["Následující"]},"Pause slideshow":{v:["Pozastavit prezentaci"]},Previous:{v:["Předchozí"]},"Start slideshow":{v:["Spustit prezentaci"]}}},{l:"cy_GB",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"da",t:{Next:{v:["Videre"]},"Pause slideshow":{v:["Suspender fremvisning"]},Previous:{v:["Forrige"]},"Start slideshow":{v:["Start fremvisning"]}}},{l:"de",t:{Next:{v:["Weiter"]},"Pause slideshow":{v:["Diashow pausieren"]},Previous:{v:["Vorherige"]},"Start slideshow":{v:["Diashow starten"]}}},{l:"de_DE",t:{Next:{v:["Weiter"]},"Pause slideshow":{v:["Diashow pausieren"]},Previous:{v:["Vorherige"]},"Start slideshow":{v:["Diashow starten"]}}},{l:"el",t:{Next:{v:["Επόμενο"]},"Pause slideshow":{v:["Παύση προβολής διαφανειών"]},Previous:{v:["Προηγούμενο"]},"Start slideshow":{v:["Έναρξη προβολής διαφανειών"]}}},{l:"en_GB",t:{Next:{v:["Next"]},"Pause slideshow":{v:["Pause slideshow"]},Previous:{v:["Previous"]},"Start slideshow":{v:["Start slideshow"]}}},{l:"eo",t:{Next:{v:["Sekva"]},"Pause slideshow":{v:["Payzi bildprezenton"]},Previous:{v:["Antaŭa"]},"Start slideshow":{v:["Komenci bildprezenton"]}}},{l:"es",t:{Next:{v:["Siguiente"]},"Pause slideshow":{v:["Pausar la presentación "]},Previous:{v:["Anterior"]},"Start slideshow":{v:["Iniciar la presentación"]}}},{l:"es_419",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"es_AR",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"es_CL",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"es_CO",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"es_CR",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"es_DO",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"es_EC",t:{Next:{v:["Siguiente"]},"Pause slideshow":{v:["Pausar presentación de diapositivas"]},Previous:{v:["Anterior"]},"Start slideshow":{v:["Iniciar presentación de diapositivas"]}}},{l:"es_GT",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"es_HN",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"es_MX",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"es_NI",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"es_PA",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"es_PE",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"es_PR",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"es_PY",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"es_SV",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"es_UY",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"et_EE",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"eu",t:{Next:{v:["Hurrengoa"]},"Pause slideshow":{v:["Pausatu diaporama"]},Previous:{v:["Aurrekoa"]},"Start slideshow":{v:["Hasi diaporama"]}}},{l:"fa",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"fi",t:{Next:{v:["Seuraava"]},"Pause slideshow":{v:["Keskeytä diaesitys"]},Previous:{v:["Edellinen"]},"Start slideshow":{v:["Aloita diaesitys"]}}},{l:"fo",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"fr",t:{Next:{v:["Suivant"]},"Pause slideshow":{v:["Mettre le diaporama en pause"]},Previous:{v:["Précédent"]},"Start slideshow":{v:["Démarrer le diaporama"]}}},{l:"ga",t:{Next:{v:["Ar aghaidh"]},"Pause slideshow":{v:["Cuir taispeántas sleamhnán ar sos"]},Previous:{v:["Roimhe Seo"]},"Start slideshow":{v:["Tosaigh taispeántas sleamhnán"]}}},{l:"gd",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"gl",t:{Next:{v:["Seguinte"]},"Pause slideshow":{v:["Pausar o diaporama"]},Previous:{v:["Anterir"]},"Start slideshow":{v:["Iniciar o diaporama"]}}},{l:"he",t:{Next:{v:["הבא"]},"Pause slideshow":{v:["השהיית מצגת"]},Previous:{v:["הקודם"]},"Start slideshow":{v:["התחלת המצגת"]}}},{l:"hi_IN",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"hr",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"hsb",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"hu",t:{Next:{v:["Következő"]},"Pause slideshow":{v:["Diavetítés szüneteltetése"]},Previous:{v:["Előző"]},"Start slideshow":{v:["Diavetítés indítása"]}}},{l:"hy",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"ia",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"id",t:{Next:{v:["Selanjutnya"]},"Pause slideshow":{v:["Jeda tayangan slide"]},Previous:{v:["Sebelumnya"]},"Start slideshow":{v:["Mulai salindia"]}}},{l:"ig",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"is",t:{Next:{v:["Næsta"]},"Pause slideshow":{v:["Gera hlé á skyggnusýningu"]},Previous:{v:["Fyrri"]},"Start slideshow":{v:["Byrja skyggnusýningu"]}}},{l:"it",t:{Next:{v:["Successivo"]},"Pause slideshow":{v:["Presentazione in pausa"]},Previous:{v:["Precedente"]},"Start slideshow":{v:["Avvia presentazione"]}}},{l:"ja",t:{Next:{v:["次"]},"Pause slideshow":{v:["スライドショーを一時停止"]},Previous:{v:["前"]},"Start slideshow":{v:["スライドショーを開始"]}}},{l:"ja_JP",t:{Next:{v:["次"]},"Pause slideshow":{v:["スライドショーを一時停止"]},Previous:{v:["前"]},"Start slideshow":{v:["スライドショーを開始"]}}},{l:"ka",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"ka_GE",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"kab",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"kk",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"km",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"kn",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"ko",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"la",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"lb",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"lo",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"lt_LT",t:{Next:{v:["Kitas"]},"Pause slideshow":{v:["Pristabdyti skaidrių rodymą"]},Previous:{v:["Ankstesnis"]},"Start slideshow":{v:["Pradėti skaidrių rodymą"]}}},{l:"lv",t:{Next:{v:["Nākamais"]},"Pause slideshow":{v:["Pauzēt slaidrādi"]},Previous:{v:["Iepriekšējais"]},"Start slideshow":{v:["Sākt slaidrādi"]}}},{l:"mk",t:{Next:{v:["Следно"]},"Pause slideshow":{v:["Пузирај слајдшоу"]},Previous:{v:["Предходно"]},"Start slideshow":{v:["Стартувај слајдшоу"]}}},{l:"mn",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"mr",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"ms_MY",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"my",t:{Next:{v:["နောက်သို့ဆက်ရန်"]},"Pause slideshow":{v:["စလိုက်ရှိုး ခေတ္တရပ်ရန်"]},Previous:{v:["ယခင်"]},"Start slideshow":{v:["စလိုက်ရှိုးအား စတင်ရန်"]}}},{l:"nb",t:{Next:{v:["Neste"]},"Pause slideshow":{v:["Pause lysbildefremvisning"]},Previous:{v:["Forrige"]},"Start slideshow":{v:["Start lysbildefremvisning"]}}},{l:"ne",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"nl",t:{Next:{v:["Volgende"]},"Pause slideshow":{v:["Pauzeer diavoorstelling"]},Previous:{v:["Vorige"]},"Start slideshow":{v:["Start diavoorstelling"]}}},{l:"nn_NO",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"oc",t:{Next:{v:["Seguent"]},"Pause slideshow":{v:["Metre en pausa lo diaporama"]},Previous:{v:["Precedent"]},"Start slideshow":{v:["Lançar lo diaporama"]}}},{l:"pl",t:{Next:{v:["Następny"]},"Pause slideshow":{v:["Wstrzymaj pokaz slajdów"]},Previous:{v:["Poprzedni"]},"Start slideshow":{v:["Rozpocznij pokaz slajdów"]}}},{l:"ps",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"pt_BR",t:{Next:{v:["Próximo"]},"Pause slideshow":{v:["Pausar apresentação de slides"]},Previous:{v:["Anterior"]},"Start slideshow":{v:["Iniciar apresentação de slides"]}}},{l:"pt_PT",t:{Next:{v:["Seguinte"]},"Pause slideshow":{v:["Pausar diaporama"]},Previous:{v:["Anterior"]},"Start slideshow":{v:["Iniciar diaporama"]}}},{l:"ro",t:{Next:{v:["Următorul"]},"Pause slideshow":{v:["Pauză prezentare de diapozitive"]},Previous:{v:["Anterior"]},"Start slideshow":{v:["Începeți prezentarea de diapozitive"]}}},{l:"ru",t:{Next:{v:["Следующее"]},"Pause slideshow":{v:["Приостановить показ слйдов"]},Previous:{v:["Предыдущее"]},"Start slideshow":{v:["Начать показ слайдов"]}}},{l:"sc",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"si",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"sk",t:{Next:{v:["Ďalší"]},"Pause slideshow":{v:["Pozastaviť prezentáciu"]},Previous:{v:["Predchádzajúci"]},"Start slideshow":{v:["Začať prezentáciu"]}}},{l:"sl",t:{Next:{v:["Naslednji"]},"Pause slideshow":{v:["Ustavi predstavitev"]},Previous:{v:["Predhodni"]},"Start slideshow":{v:["Začni predstavitev"]}}},{l:"sq",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"sr",t:{Next:{v:["Следеће"]},"Pause slideshow":{v:["Паузирај слајд шоу"]},Previous:{v:["Претходно"]},"Start slideshow":{v:["Покрени слајд шоу"]}}},{l:"sr@latin",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"sv",t:{Next:{v:["Nästa"]},"Pause slideshow":{v:["Pausa bildspelet"]},Previous:{v:["Föregående"]},"Start slideshow":{v:["Starta bildspelet"]}}},{l:"sw",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"ta",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"th",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"tk",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"tr",t:{Next:{v:["Sonraki"]},"Pause slideshow":{v:["Slayt sunumunu duraklat"]},Previous:{v:["Önceki"]},"Start slideshow":{v:["Slayt sunumunu başlat"]}}},{l:"ug",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"uk",t:{Next:{v:["Вперед"]},"Pause slideshow":{v:["Пауза у показі слайдів"]},Previous:{v:["Назад"]},"Start slideshow":{v:["Почати показ слайдів"]}}},{l:"ur_PK",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"uz",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"vi",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}},{l:"zh_CN",t:{Next:{v:["下一个"]},"Pause slideshow":{v:["暂停幻灯片"]},Previous:{v:["上一个"]},"Start slideshow":{v:["开始幻灯片"]}}},{l:"zh_HK",t:{Next:{v:["下一個"]},"Pause slideshow":{v:["暫停幻燈片"]},Previous:{v:["上一個"]},"Start slideshow":{v:["開始幻燈片"]}}},{l:"zh_TW",t:{Next:{v:["下一個"]},"Pause slideshow":{v:["暫停幻燈片"]},Previous:{v:["上一個"]},"Start slideshow":{v:["開始幻燈片"]}}},{l:"zu_ZA",t:{Next:{v:[""]},"Pause slideshow":{v:[""]},Previous:{v:[""]},"Start slideshow":{v:[""]}}}],bp=t=>Math.random().toString(36).replace(/[^a-z]+/g,"").slice(0,t||5);function Jt(t,e,n,r,o,i,s,l){var u=typeof t=="function"?t.options:t;e&&(u.render=e,u.staticRenderFns=n,u._compiled=!0),r&&(u.functional=!0),i&&(u._scopeId="data-v-"+i);var f;if(s?(f=function(y){y=y||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,!y&&typeof __VUE_SSR_CONTEXT__<"u"&&(y=__VUE_SSR_CONTEXT__),o&&o.call(this,y),y&&y._registeredComponents&&y._registeredComponents.add(s)},u._ssrRegister=f):o&&(f=l?function(){o.call(this,(u.functional?this.parent:this).$root.$options.shadowRoot)}:o),f)if(u.functional){u._injectStyles=f;var p=u.render;u.render=function(y,g){return f.call(g),p(y,g)}}else{var h=u.beforeCreate;u.beforeCreate=h?[].concat(h,f):[f]}return{exports:t,options:u}}const k1={name:"NcButton",inject:{getNcPopoverTriggerAttrs:{from:"NcPopover:trigger:attrs",default:()=>()=>({})}},props:{alignment:{type:String,default:"center",validator:t=>["start","start-reverse","center","center-reverse","end","end-reverse"].includes(t)},disabled:{type:Boolean,default:!1},size:{type:String,default:"normal",validator(t){return["small","normal","large"].includes(t)}},type:{type:String,validator(t){return["primary","secondary","tertiary","tertiary-no-background","tertiary-on-primary","error","warning","success"].includes(t)},default:"secondary"},nativeType:{type:String,validator(t){return["submit","reset","button"].indexOf(t)!==-1},default:"button"},wide:{type:Boolean,default:!1},ariaLabel:{type:String,default:null},href:{type:String,default:null},download:{type:String,default:null},to:{type:[String,Object],default:null},exact:{type:Boolean,default:!1},ariaHidden:{type:Boolean,default:null},pressed:{type:Boolean,default:null}},emits:["update:pressed","click"],computed:{realType(){return this.pressed?"primary":this.pressed===!1&&this.type==="primary"?"secondary":this.type},flexAlignment(){return this.alignment.split("-")[0]},isReverseAligned(){return this.alignment.includes("-")},ncPopoverTriggerAttrs(){return this.getNcPopoverTriggerAttrs()}},render(t){var e,n,r;const o=!!this.$slots.default,i=(e=this.$slots)==null?void 0:e.icon;!o&&!this.ariaLabel&&console.warn("You need to fill either the text or the ariaLabel props in the button component.",{text:(r=(n=this.$slots.default)==null?void 0:n[0])==null?void 0:r.text,ariaLabel:this.ariaLabel},this);const s=this.to||this.href,l=!s&&typeof this.pressed=="boolean",u=({href:f,navigate:p,isActive:h,isExactActive:y}={})=>t(s?"a":"button",{class:["button-vue","button-vue--size-".concat(this.size),{"button-vue--icon-only":i&&!o,"button-vue--text-only":o&&!i,"button-vue--icon-and-text":i&&o,["button-vue--vue-".concat(this.realType)]:this.realType,"button-vue--wide":this.wide,["button-vue--".concat(this.flexAlignment)]:this.flexAlignment!=="center","button-vue--reverse":this.isReverseAligned,active:h,"router-link-exact-active":y}],attrs:{"aria-label":this.ariaLabel,"aria-pressed":l?this.pressed.toString():void 0,disabled:this.disabled,type:s?null:this.nativeType,role:s?"button":null,href:this.to?f:this.href||null,target:s?"_self":null,rel:s?"nofollow noreferrer noopener":null,download:!this.to&&this.href&&this.download?this.download:null,...this.ncPopoverTriggerAttrs,...this.$attrs},on:{...this.$listeners,click:g=>{l&&this.$emit("update:pressed",!this.pressed),this.$emit("click",g),p==null||p(g)}}},[t("span",{class:"button-vue__wrapper"},[i?t("span",{class:"button-vue__icon",attrs:{"aria-hidden":"true"}},[this.$slots.icon]):null,o?t("span",{class:"button-vue__text"},[this.$slots.default]):null])]);return this.to?t("router-link",{props:{custom:!0,to:this.to,exact:this.exact},scopedSlots:{default:u}}):u()}},O1=null,L1=null;var R1=Jt(k1,O1,L1,!1,null,"44398b0c",null,null);const qo=R1.exports;function $e(t){return t.split("-")[0]}function On(t){return t.split("-")[1]}function Tr(t){return["top","bottom"].includes($e(t))?"x":"y"}function Js(t){return t==="y"?"height":"width"}function Hl(t){let{reference:e,floating:n,placement:r}=t;const o=e.x+e.width/2-n.width/2,i=e.y+e.height/2-n.height/2;let s;switch($e(r)){case"top":s={x:o,y:e.y-n.height};break;case"bottom":s={x:o,y:e.y+e.height};break;case"right":s={x:e.x+e.width,y:i};break;case"left":s={x:e.x-n.width,y:i};break;default:s={x:e.x,y:e.y}}const l=Tr(r),u=Js(l);switch(On(r)){case"start":s[l]=s[l]-(e[u]/2-n[u]/2);break;case"end":s[l]=s[l]+(e[u]/2-n[u]/2);break}return s}const I1=async(t,e,n)=>{const{placement:r="bottom",strategy:o="absolute",middleware:i=[],platform:s}=n;let l=await s.getElementRects({reference:t,floating:e,strategy:o}),{x:u,y:f}=Hl({...l,placement:r}),p=r,h={};for(let y=0;y({name:"arrow",options:t,async fn(e){const{element:n,padding:r=0}=t!=null?t:{},{x:o,y:i,placement:s,rects:l,platform:u}=e;if(n==null)return{};const f=xp(r),p={x:o,y:i},h=$e(s),y=Tr(h),g=Js(y),b=await u.getDimensions({element:n}),$=y==="y"?"top":"left",P=y==="y"?"bottom":"right",B=l.reference[g]+l.reference[y]-p[y]-l.floating[g],R=p[y]-l.reference[y],j=await u.getOffsetParent({element:n}),q=j?y==="y"?j.clientHeight||0:j.clientWidth||0:0,et=B/2-R/2,ft=f[$],Q=q-b[g]-f[P],U=q/2-b[g]/2+et,T=as(ft,U,Q);return{data:{[y]:T,centerOffset:U-T}}}}),M1={left:"right",right:"left",bottom:"top",top:"bottom"};function ko(t){return t.replace(/left|right|bottom|top/g,e=>M1[e])}function Ep(t,e){const n=On(t)==="start",r=Tr(t),o=Js(r);let i=r==="x"?n?"right":"left":n?"bottom":"top";return e.reference[o]>e.floating[o]&&(i=ko(i)),{main:i,cross:ko(i)}}const z1={start:"end",end:"start"};function ls(t){return t.replace(/start|end/g,e=>z1[e])}const j1=["top","right","bottom","left"],U1=j1.reduce((t,e)=>t.concat(e,e+"-start",e+"-end"),[]);function H1(t,e,n){return(t?[...n.filter(r=>On(r)===t),...n.filter(r=>On(r)!==t)]:n.filter(r=>$e(r)===r)).filter(r=>t?On(r)===t||(e?ls(r)!==r:!1):!0)}const V1=function(t){return t===void 0&&(t={}),{name:"autoPlacement",options:t,async fn(e){var n,r,o,i,s,l;const{x:u,y:f,rects:p,middlewareData:h,placement:y}=e,{alignment:g=null,allowedPlacements:b=U1,autoAlignment:$=!0,...P}=t;if((n=h.autoPlacement)!=null&&n.skip)return{};const B=H1(g,$,b),R=await Xo(e,P),j=(r=(o=h.autoPlacement)==null?void 0:o.index)!=null?r:0,q=B[j],{main:et,cross:ft}=Ep(q,p);if(y!==q)return{x:u,y:f,reset:{placement:B[0]}};const Q=[R[$e(q)],R[et],R[ft]],U=[...(i=(s=h.autoPlacement)==null?void 0:s.overflows)!=null?i:[],{placement:q,overflows:Q}],T=B[j+1];if(T)return{data:{index:j+1,overflows:U},reset:{placement:T}};const C=U.slice().sort((w,_)=>w.overflows[0]-_.overflows[0]),I=(l=C.find(w=>{let{overflows:_}=w;return _.every(S=>S<=0)}))==null?void 0:l.placement;return{data:{skip:!0},reset:{placement:I!=null?I:C[0].placement}}}}};function G1(t){const e=ko(t);return[ls(t),e,ls(e)]}const W1=function(t){return t===void 0&&(t={}),{name:"flip",options:t,async fn(e){var n,r;const{placement:o,middlewareData:i,rects:s,initialPlacement:l}=e;if((n=i.flip)!=null&&n.skip)return{};const{mainAxis:u=!0,crossAxis:f=!0,fallbackPlacements:p,fallbackStrategy:h="bestFit",flipAlignment:y=!0,...g}=t,b=$e(o),$=p||(b===l||!y?[ko(l)]:G1(l)),P=[l,...$],B=await Xo(e,g),R=[];let j=((r=i.flip)==null?void 0:r.overflows)||[];if(u&&R.push(B[b]),f){const{main:Q,cross:U}=Ep(o,s);R.push(B[Q],B[U])}if(j=[...j,{placement:o,overflows:R}],!R.every(Q=>Q<=0)){var q,et;const Q=((q=(et=i.flip)==null?void 0:et.index)!=null?q:0)+1,U=P[Q];if(U)return{data:{index:Q,overflows:j},reset:{placement:U}};let T="bottom";switch(h){case"bestFit":{var ft;const C=(ft=j.slice().sort((I,w)=>I.overflows.filter(_=>_>0).reduce((_,S)=>_+S,0)-w.overflows.filter(_=>_>0).reduce((_,S)=>_+S,0))[0])==null?void 0:ft.placement;C&&(T=C);break}case"initialPlacement":T=l;break}return{data:{skip:!0},reset:{placement:T}}}return{}}}};function q1(t){let{placement:e,rects:n,value:r}=t;const o=$e(e),i=["left","top"].includes(o)?-1:1,s=typeof r=="function"?r({...n,placement:e}):r,{mainAxis:l,crossAxis:u}=typeof s=="number"?{mainAxis:s,crossAxis:0}:{mainAxis:0,crossAxis:0,...s};return Tr(o)==="x"?{x:u,y:l*i}:{x:l*i,y:u}}const X1=function(t){return t===void 0&&(t=0),{name:"offset",options:t,fn(e){const{x:n,y:r,placement:o,rects:i}=e,s=q1({placement:o,rects:i,value:t});return{x:n+s.x,y:r+s.y,data:s}}}};function K1(t){return t==="x"?"y":"x"}const Z1=function(t){return t===void 0&&(t={}),{name:"shift",options:t,async fn(e){const{x:n,y:r,placement:o}=e,{mainAxis:i=!0,crossAxis:s=!1,limiter:l={fn:P=>{let{x:B,y:R}=P;return{x:B,y:R}}},...u}=t,f={x:n,y:r},p=await Xo(e,u),h=Tr($e(o)),y=K1(h);let g=f[h],b=f[y];if(i){const P=h==="y"?"top":"left",B=h==="y"?"bottom":"right",R=g+p[P],j=g-p[B];g=as(R,g,j)}if(s){const P=y==="y"?"top":"left",B=y==="y"?"bottom":"right",R=b+p[P],j=b-p[B];b=as(R,b,j)}const $=l.fn({...e,[h]:g,[y]:b});return{...$,data:{x:$.x-n,y:$.y-r}}}}},Y1=function(t){return t===void 0&&(t={}),{name:"size",options:t,async fn(e){var n;const{placement:r,rects:o,middlewareData:i}=e,{apply:s,...l}=t;if((n=i.size)!=null&&n.skip)return{};const u=await Xo(e,l),f=$e(r),p=On(r)==="end";let h,y;f==="top"||f==="bottom"?(h=f,y=p?"left":"right"):(y=f,h=p?"top":"bottom");const g=Qe(u.left,0),b=Qe(u.right,0),$=Qe(u.top,0),P=Qe(u.bottom,0),B={height:o.floating.height-(["left","right"].includes(r)?2*($!==0||P!==0?$+P:Qe(u.top,u.bottom)):u[h]),width:o.floating.width-(["top","bottom"].includes(r)?2*(g!==0||b!==0?g+b:Qe(u.left,u.right)):u[y])};return s==null||s({...B,...o}),{data:{skip:!0},reset:{rects:!0}}}}};function Qs(t){return(t==null?void 0:t.toString())==="[object Window]"}function qe(t){if(t==null)return window;if(!Qs(t)){const e=t.ownerDocument;return e&&e.defaultView||window}return t}function Ko(t){return qe(t).getComputedStyle(t)}function Ne(t){return Qs(t)?"":t?(t.nodeName||"").toLowerCase():""}function Pe(t){return t instanceof qe(t).HTMLElement}function Oo(t){return t instanceof qe(t).Element}function J1(t){return t instanceof qe(t).Node}function Cp(t){const e=qe(t).ShadowRoot;return t instanceof e||t instanceof ShadowRoot}function Zo(t){const{overflow:e,overflowX:n,overflowY:r}=Ko(t);return/auto|scroll|overlay|hidden/.test(e+r+n)}function Q1(t){return["table","td","th"].includes(Ne(t))}function Sp(t){const e=navigator.userAgent.toLowerCase().includes("firefox"),n=Ko(t);return n.transform!=="none"||n.perspective!=="none"||n.contain==="paint"||["transform","perspective"].includes(n.willChange)||e&&n.willChange==="filter"||e&&(n.filter?n.filter!=="none":!1)}const Vl=Math.min,cr=Math.max,Lo=Math.round;function Bn(t,e){e===void 0&&(e=!1);const n=t.getBoundingClientRect();let r=1,o=1;return e&&Pe(t)&&(r=t.offsetWidth>0&&Lo(n.width)/t.offsetWidth||1,o=t.offsetHeight>0&&Lo(n.height)/t.offsetHeight||1),{width:n.width/r,height:n.height/o,top:n.top/o,right:n.right/r,bottom:n.bottom/o,left:n.left/r,x:n.left/r,y:n.top/o}}function Xe(t){return((J1(t)?t.ownerDocument:t.document)||window.document).documentElement}function Yo(t){return Qs(t)?{scrollLeft:t.pageXOffset,scrollTop:t.pageYOffset}:{scrollLeft:t.scrollLeft,scrollTop:t.scrollTop}}function Ap(t){return Bn(Xe(t)).left+Yo(t).scrollLeft}function tg(t){const e=Bn(t);return Lo(e.width)!==t.offsetWidth||Lo(e.height)!==t.offsetHeight}function eg(t,e,n){const r=Pe(e),o=Xe(e),i=Bn(t,r&&tg(e));let s={scrollLeft:0,scrollTop:0};const l={x:0,y:0};if(r||!r&&n!=="fixed")if((Ne(e)!=="body"||Zo(o))&&(s=Yo(e)),Pe(e)){const u=Bn(e,!0);l.x=u.x+e.clientLeft,l.y=u.y+e.clientTop}else o&&(l.x=Ap(o));return{x:i.left+s.scrollLeft-l.x,y:i.top+s.scrollTop-l.y,width:i.width,height:i.height}}function Jo(t){return Ne(t)==="html"?t:t.assignedSlot||t.parentNode||(Cp(t)?t.host:null)||Xe(t)}function Gl(t){return!Pe(t)||getComputedStyle(t).position==="fixed"?null:t.offsetParent}function ng(t){let e=Jo(t);for(;Pe(e)&&!["html","body"].includes(Ne(e));){if(Sp(e))return e;e=e.parentNode}return null}function us(t){const e=qe(t);let n=Gl(t);for(;n&&Q1(n)&&getComputedStyle(n).position==="static";)n=Gl(n);return n&&(Ne(n)==="html"||Ne(n)==="body"&&getComputedStyle(n).position==="static"&&!Sp(n))?e:n||ng(t)||e}function Wl(t){return{width:t.offsetWidth,height:t.offsetHeight}}function rg(t){let{rect:e,offsetParent:n,strategy:r}=t;const o=Pe(n),i=Xe(n);if(n===i)return e;let s={scrollLeft:0,scrollTop:0};const l={x:0,y:0};if((o||!o&&r!=="fixed")&&((Ne(n)!=="body"||Zo(i))&&(s=Yo(n)),Pe(n))){const u=Bn(n,!0);l.x=u.x+n.clientLeft,l.y=u.y+n.clientTop}return{...e,x:e.x-s.scrollLeft+l.x,y:e.y-s.scrollTop+l.y}}function og(t){const e=qe(t),n=Xe(t),r=e.visualViewport;let o=n.clientWidth,i=n.clientHeight,s=0,l=0;return r&&(o=r.width,i=r.height,Math.abs(e.innerWidth/r.scale-r.width)<.01&&(s=r.offsetLeft,l=r.offsetTop)),{width:o,height:i,x:s,y:l}}function ig(t){var e;const n=Xe(t),r=Yo(t),o=(e=t.ownerDocument)==null?void 0:e.body,i=cr(n.scrollWidth,n.clientWidth,o?o.scrollWidth:0,o?o.clientWidth:0),s=cr(n.scrollHeight,n.clientHeight,o?o.scrollHeight:0,o?o.clientHeight:0);let l=-r.scrollLeft+Ap(t);const u=-r.scrollTop;return Ko(o||n).direction==="rtl"&&(l+=cr(n.clientWidth,o?o.clientWidth:0)-i),{width:i,height:s,x:l,y:u}}function Tp(t){return["html","body","#document"].includes(Ne(t))?t.ownerDocument.body:Pe(t)&&Zo(t)?t:Tp(Jo(t))}function Ro(t,e){var n;e===void 0&&(e=[]);const r=Tp(t),o=r===((n=t.ownerDocument)==null?void 0:n.body),i=qe(r),s=o?[i].concat(i.visualViewport||[],Zo(r)?r:[]):r,l=e.concat(s);return o?l:l.concat(Ro(Jo(s)))}function sg(t,e){const n=e.getRootNode==null?void 0:e.getRootNode();if(t.contains(e))return!0;if(n&&Cp(n)){let r=e;do{if(r&&t===r)return!0;r=r.parentNode||r.host}while(r)}return!1}function ag(t){const e=Bn(t),n=e.top+t.clientTop,r=e.left+t.clientLeft;return{top:n,left:r,x:r,y:n,right:r+t.clientWidth,bottom:n+t.clientHeight,width:t.clientWidth,height:t.clientHeight}}function ql(t,e){return e==="viewport"?ss(og(t)):Oo(e)?ag(e):ss(ig(Xe(t)))}function lg(t){const e=Ro(Jo(t)),n=["absolute","fixed"].includes(Ko(t).position)&&Pe(t)?us(t):t;return Oo(n)?e.filter(r=>Oo(r)&&sg(r,n)&&Ne(r)!=="body"):[]}function ug(t){let{element:e,boundary:n,rootBoundary:r}=t;const o=[...n==="clippingParents"?lg(e):[].concat(n),r],i=o[0],s=o.reduce((l,u)=>{const f=ql(e,u);return l.top=cr(f.top,l.top),l.right=Vl(f.right,l.right),l.bottom=Vl(f.bottom,l.bottom),l.left=cr(f.left,l.left),l},ql(e,i));return s.width=s.right-s.left,s.height=s.bottom-s.top,s.x=s.left,s.y=s.top,s}const cg={getElementRects:t=>{let{reference:e,floating:n,strategy:r}=t;return{reference:eg(e,us(n),r),floating:{...Wl(n),x:0,y:0}}},convertOffsetParentRelativeRectToViewportRelativeRect:t=>rg(t),getOffsetParent:t=>{let{element:e}=t;return us(e)},isElement:t=>Oo(t),getDocumentElement:t=>{let{element:e}=t;return Xe(e)},getClippingClientRect:t=>ug(t),getDimensions:t=>{let{element:e}=t;return Wl(e)},getClientRects:t=>{let{element:e}=t;return e.getClientRects()}},pg=(t,e,n)=>I1(t,e,{platform:cg,...n});var fg=Object.defineProperty,dg=Object.defineProperties,hg=Object.getOwnPropertyDescriptors,Io=Object.getOwnPropertySymbols,Np=Object.prototype.hasOwnProperty,Pp=Object.prototype.propertyIsEnumerable,Xl=(t,e,n)=>e in t?fg(t,e,{enumerable:!0,configurable:!0,writable:!0,value:n}):t[e]=n,De=(t,e)=>{for(var n in e||(e={}))Np.call(e,n)&&Xl(t,n,e[n]);if(Io)for(var n of Io(e))Pp.call(e,n)&&Xl(t,n,e[n]);return t},Qo=(t,e)=>dg(t,hg(e)),mg=(t,e)=>{var n={};for(var r in t)Np.call(t,r)&&e.indexOf(r)<0&&(n[r]=t[r]);if(t!=null&&Io)for(var r of Io(t))e.indexOf(r)<0&&Pp.call(t,r)&&(n[r]=t[r]);return n};function $p(t,e){for(const n in e)Object.prototype.hasOwnProperty.call(e,n)&&(typeof e[n]=="object"&&t[n]?$p(t[n],e[n]):t[n]=e[n])}const ve={disabled:!1,distance:5,skidding:0,container:"body",boundary:void 0,instantMove:!1,disposeTimeout:5e3,popperTriggers:[],strategy:"absolute",preventOverflow:!0,flip:!0,shift:!0,overflowPadding:0,arrowPadding:0,arrowOverflow:!0,themes:{tooltip:{placement:"top",triggers:["hover","focus","touch"],hideTriggers:t=>[...t,"click"],delay:{show:200,hide:0},handleResize:!1,html:!1,loadingContent:"..."},dropdown:{placement:"bottom",triggers:["click"],delay:0,handleResize:!0,autoHide:!0},menu:{$extend:"dropdown",triggers:["hover","focus"],popperTriggers:["hover","focus"],delay:{show:0,hide:400}}}};function Dn(t,e){let n=ve.themes[t]||{},r;do r=n[e],typeof r>"u"?n.$extend?n=ve.themes[n.$extend]||{}:(n=null,r=ve[e]):n=null;while(n);return r}function vg(t){const e=[t];let n=ve.themes[t]||{};do n.$extend&&!n.$resetCss?(e.push(n.$extend),n=ve.themes[n.$extend]||{}):n=null;while(n);return e.map(r=>"v-popper--theme-".concat(r))}function Kl(t){const e=[t];let n=ve.themes[t]||{};do n.$extend?(e.push(n.$extend),n=ve.themes[n.$extend]||{}):n=null;while(n);return e}let hn=!1;if(typeof window<"u"){hn=!1;try{const t=Object.defineProperty({},"passive",{get(){hn=!0}});window.addEventListener("test",null,t)}catch{}}let kp=!1;typeof window<"u"&&typeof navigator<"u"&&(kp=/iPad|iPhone|iPod/.test(navigator.userAgent)&&!window.MSStream);const Op=["auto","top","bottom","left","right"].reduce((t,e)=>t.concat([e,"".concat(e,"-start"),"".concat(e,"-end")]),[]),Zl={hover:"mouseenter",focus:"focus",click:"click",touch:"touchstart"},Yl={hover:"mouseleave",focus:"blur",click:"click",touch:"touchend"};function Jl(t,e){const n=t.indexOf(e);n!==-1&&t.splice(n,1)}function Ci(){return new Promise(t=>requestAnimationFrame(()=>{requestAnimationFrame(t)}))}const oe=[];let Ze=null;const Ql={};function tu(t){let e=Ql[t];return e||(e=Ql[t]=[]),e}let cs=function(){};typeof window<"u"&&(cs=window.Element);function nt(t){return function(){const e=this.$props;return Dn(e.theme,t)}}const Si="__floating-vue__popper";var Lp=()=>({name:"VPopper",props:{theme:{type:String,required:!0},targetNodes:{type:Function,required:!0},referenceNode:{type:Function,required:!0},popperNode:{type:Function,required:!0},shown:{type:Boolean,default:!1},showGroup:{type:String,default:null},ariaId:{default:null},disabled:{type:Boolean,default:nt("disabled")},positioningDisabled:{type:Boolean,default:nt("positioningDisabled")},placement:{type:String,default:nt("placement"),validator:t=>Op.includes(t)},delay:{type:[String,Number,Object],default:nt("delay")},distance:{type:[Number,String],default:nt("distance")},skidding:{type:[Number,String],default:nt("skidding")},triggers:{type:Array,default:nt("triggers")},showTriggers:{type:[Array,Function],default:nt("showTriggers")},hideTriggers:{type:[Array,Function],default:nt("hideTriggers")},popperTriggers:{type:Array,default:nt("popperTriggers")},popperShowTriggers:{type:[Array,Function],default:nt("popperShowTriggers")},popperHideTriggers:{type:[Array,Function],default:nt("popperHideTriggers")},container:{type:[String,Object,cs,Boolean],default:nt("container")},boundary:{type:[String,cs],default:nt("boundary")},strategy:{type:String,validator:t=>["absolute","fixed"].includes(t),default:nt("strategy")},autoHide:{type:[Boolean,Function],default:nt("autoHide")},handleResize:{type:Boolean,default:nt("handleResize")},instantMove:{type:Boolean,default:nt("instantMove")},eagerMount:{type:Boolean,default:nt("eagerMount")},popperClass:{type:[String,Array,Object],default:nt("popperClass")},computeTransformOrigin:{type:Boolean,default:nt("computeTransformOrigin")},autoMinSize:{type:Boolean,default:nt("autoMinSize")},autoSize:{type:[Boolean,String],default:nt("autoSize")},autoMaxSize:{type:Boolean,default:nt("autoMaxSize")},autoBoundaryMaxSize:{type:Boolean,default:nt("autoBoundaryMaxSize")},preventOverflow:{type:Boolean,default:nt("preventOverflow")},overflowPadding:{type:[Number,String],default:nt("overflowPadding")},arrowPadding:{type:[Number,String],default:nt("arrowPadding")},arrowOverflow:{type:Boolean,default:nt("arrowOverflow")},flip:{type:Boolean,default:nt("flip")},shift:{type:Boolean,default:nt("shift")},shiftCrossAxis:{type:Boolean,default:nt("shiftCrossAxis")},noAutoFocus:{type:Boolean,default:nt("noAutoFocus")}},provide(){return{[Si]:{parentPopper:this}}},inject:{[Si]:{default:null}},data(){return{isShown:!1,isMounted:!1,skipTransition:!1,classes:{showFrom:!1,showTo:!1,hideFrom:!1,hideTo:!0},result:{x:0,y:0,placement:"",strategy:this.strategy,arrow:{x:0,y:0,centerOffset:0},transformOrigin:null},shownChildren:new Set,lastAutoHide:!0}},computed:{popperId(){return this.ariaId!=null?this.ariaId:this.randomId},shouldMountContent(){return this.eagerMount||this.isMounted},slotData(){return{popperId:this.popperId,isShown:this.isShown,shouldMountContent:this.shouldMountContent,skipTransition:this.skipTransition,autoHide:typeof this.autoHide=="function"?this.lastAutoHide:this.autoHide,show:this.show,hide:this.hide,handleResize:this.handleResize,onResize:this.onResize,classes:Qo(De({},this.classes),{popperClass:this.popperClass}),result:this.positioningDisabled?null:this.result}},parentPopper(){var t;return(t=this[Si])==null?void 0:t.parentPopper},hasPopperShowTriggerHover(){var t,e;return((t=this.popperTriggers)==null?void 0:t.includes("hover"))||((e=this.popperShowTriggers)==null?void 0:e.includes("hover"))}},watch:De(De({shown:"$_autoShowHide",disabled(t){t?this.dispose():this.init()},async container(){this.isShown&&(this.$_ensureTeleport(),await this.$_computePosition())}},["triggers","positioningDisabled"].reduce((t,e)=>(t[e]="$_refreshListeners",t),{})),["placement","distance","skidding","boundary","strategy","overflowPadding","arrowPadding","preventOverflow","shift","shiftCrossAxis","flip"].reduce((t,e)=>(t[e]="$_computePosition",t),{})),created(){this.$_isDisposed=!0,this.randomId="popper_".concat([Math.random(),Date.now()].map(t=>t.toString(36).substring(2,10)).join("_")),this.autoMinSize&&console.warn('[floating-vue] `autoMinSize` option is deprecated. Use `autoSize="min"` instead.'),this.autoMaxSize&&console.warn("[floating-vue] `autoMaxSize` option is deprecated. Use `autoBoundaryMaxSize` instead.")},mounted(){this.init(),this.$_detachPopperNode()},activated(){this.$_autoShowHide()},deactivated(){this.hide()},beforeDestroy(){this.dispose()},methods:{show({event:t=null,skipDelay:e=!1,force:n=!1}={}){var r,o;(r=this.parentPopper)!=null&&r.lockedChild&&this.parentPopper.lockedChild!==this||(this.$_pendingHide=!1,(n||!this.disabled)&&(((o=this.parentPopper)==null?void 0:o.lockedChild)===this&&(this.parentPopper.lockedChild=null),this.$_scheduleShow(t,e),this.$emit("show"),this.$_showFrameLocked=!0,requestAnimationFrame(()=>{this.$_showFrameLocked=!1})),this.$emit("update:shown",!0))},hide({event:t=null,skipDelay:e=!1,skipAiming:n=!1}={}){var r;if(!this.$_hideInProgress){if(this.shownChildren.size>0){this.$_pendingHide=!0;return}if(!n&&this.hasPopperShowTriggerHover&&this.$_isAimingPopper()){this.parentPopper&&(this.parentPopper.lockedChild=this,clearTimeout(this.parentPopper.lockedChildTimer),this.parentPopper.lockedChildTimer=setTimeout(()=>{this.parentPopper.lockedChild===this&&(this.parentPopper.lockedChild.hide({skipDelay:e}),this.parentPopper.lockedChild=null)},1e3));return}((r=this.parentPopper)==null?void 0:r.lockedChild)===this&&(this.parentPopper.lockedChild=null),this.$_pendingHide=!1,this.$_scheduleHide(t,e),this.$emit("hide"),this.$emit("update:shown",!1)}},init(){this.$_isDisposed&&(this.$_isDisposed=!1,this.isMounted=!1,this.$_events=[],this.$_preventShow=!1,this.$_referenceNode=this.referenceNode(),this.$_targetNodes=this.targetNodes().filter(t=>t.nodeType===t.ELEMENT_NODE),this.$_popperNode=this.popperNode(),this.$_innerNode=this.$_popperNode.querySelector(".v-popper__inner"),this.$_arrowNode=this.$_popperNode.querySelector(".v-popper__arrow-container"),this.$_swapTargetAttrs("title","data-original-title"),this.$_detachPopperNode(),this.triggers.length&&this.$_addEventListeners(),this.shown&&this.show())},dispose(){this.$_isDisposed||(this.$_isDisposed=!0,this.$_removeEventListeners(),this.hide({skipDelay:!0}),this.$_detachPopperNode(),this.isMounted=!1,this.isShown=!1,this.$_updateParentShownChildren(!1),this.$_swapTargetAttrs("data-original-title","title"),this.$emit("dispose"))},async onResize(){this.isShown&&(await this.$_computePosition(),this.$emit("resize"))},async $_computePosition(){var t;if(this.$_isDisposed||this.positioningDisabled)return;const e={strategy:this.strategy,middleware:[]};(this.distance||this.skidding)&&e.middleware.push(X1({mainAxis:this.distance,crossAxis:this.skidding}));const n=this.placement.startsWith("auto");if(n?e.middleware.push(V1({alignment:(t=this.placement.split("-")[1])!=null?t:""})):e.placement=this.placement,this.preventOverflow&&(this.shift&&e.middleware.push(Z1({padding:this.overflowPadding,boundary:this.boundary,crossAxis:this.shiftCrossAxis})),!n&&this.flip&&e.middleware.push(W1({padding:this.overflowPadding,boundary:this.boundary}))),e.middleware.push(D1({element:this.$_arrowNode,padding:this.arrowPadding})),this.arrowOverflow&&e.middleware.push({name:"arrowOverflow",fn:({placement:o,rects:i,middlewareData:s})=>{let l;const{centerOffset:u}=s.arrow;return o.startsWith("top")||o.startsWith("bottom")?l=Math.abs(u)>i.reference.width/2:l=Math.abs(u)>i.reference.height/2,{data:{overflow:l}}}}),this.autoMinSize||this.autoSize){const o=this.autoSize?this.autoSize:this.autoMinSize?"min":null;e.middleware.push({name:"autoSize",fn:({rects:i,placement:s,middlewareData:l})=>{var u;if((u=l.autoSize)!=null&&u.skip)return{};let f,p;return s.startsWith("top")||s.startsWith("bottom")?f=i.reference.width:p=i.reference.height,this.$_innerNode.style[o==="min"?"minWidth":o==="max"?"maxWidth":"width"]=f!=null?"".concat(f,"px"):null,this.$_innerNode.style[o==="min"?"minHeight":o==="max"?"maxHeight":"height"]=p!=null?"".concat(p,"px"):null,{data:{skip:!0},reset:{rects:!0}}}})}(this.autoMaxSize||this.autoBoundaryMaxSize)&&(this.$_innerNode.style.maxWidth=null,this.$_innerNode.style.maxHeight=null,e.middleware.push(Y1({boundary:this.boundary,padding:this.overflowPadding,apply:({width:o,height:i})=>{this.$_innerNode.style.maxWidth=o!=null?"".concat(o,"px"):null,this.$_innerNode.style.maxHeight=i!=null?"".concat(i,"px"):null}})));const r=await pg(this.$_referenceNode,this.$_popperNode,e);Object.assign(this.result,{x:r.x,y:r.y,placement:r.placement,strategy:r.strategy,arrow:De(De({},r.middlewareData.arrow),r.middlewareData.arrowOverflow)})},$_scheduleShow(t=null,e=!1){if(this.$_updateParentShownChildren(!0),this.$_hideInProgress=!1,clearTimeout(this.$_scheduleTimer),Ze&&this.instantMove&&Ze.instantMove&&Ze!==this.parentPopper){Ze.$_applyHide(!0),this.$_applyShow(!0);return}e?this.$_applyShow():this.$_scheduleTimer=setTimeout(this.$_applyShow.bind(this),this.$_computeDelay("show"))},$_scheduleHide(t=null,e=!1){if(this.shownChildren.size>0){this.$_pendingHide=!0;return}this.$_updateParentShownChildren(!1),this.$_hideInProgress=!0,clearTimeout(this.$_scheduleTimer),this.isShown&&(Ze=this),e?this.$_applyHide():this.$_scheduleTimer=setTimeout(this.$_applyHide.bind(this),this.$_computeDelay("hide"))},$_computeDelay(t){const e=this.delay;return parseInt(e&&e[t]||e||0)},async $_applyShow(t=!1){clearTimeout(this.$_disposeTimer),clearTimeout(this.$_scheduleTimer),this.skipTransition=t,!this.isShown&&(this.$_ensureTeleport(),await Ci(),await this.$_computePosition(),await this.$_applyShowEffect(),this.positioningDisabled||this.$_registerEventListeners([...Ro(this.$_referenceNode),...Ro(this.$_popperNode)],"scroll",()=>{this.$_computePosition()}))},async $_applyShowEffect(){if(this.$_hideInProgress)return;if(this.computeTransformOrigin){const e=this.$_referenceNode.getBoundingClientRect(),n=this.$_popperNode.querySelector(".v-popper__wrapper"),r=n.parentNode.getBoundingClientRect(),o=e.x+e.width/2-(r.left+n.offsetLeft),i=e.y+e.height/2-(r.top+n.offsetTop);this.result.transformOrigin="".concat(o,"px ").concat(i,"px")}this.isShown=!0,this.$_applyAttrsToTarget({"aria-describedby":this.popperId,"data-popper-shown":""});const t=this.showGroup;if(t){let e;for(let n=0;n0){this.$_pendingHide=!0,this.$_hideInProgress=!1;return}if(clearTimeout(this.$_scheduleTimer),!this.isShown)return;this.skipTransition=t,Jl(oe,this),oe.length===0&&document.body.classList.remove("v-popper--some-open");for(const n of Kl(this.theme)){const r=tu(n);Jl(r,this),r.length===0&&document.body.classList.remove("v-popper--some-open--".concat(n))}Ze===this&&(Ze=null),this.isShown=!1,this.$_applyAttrsToTarget({"aria-describedby":void 0,"data-popper-shown":void 0}),clearTimeout(this.$_disposeTimer);const e=Dn(this.theme,"disposeTimeout");e!==null&&(this.$_disposeTimer=setTimeout(()=>{this.$_popperNode&&(this.$_detachPopperNode(),this.isMounted=!1)},e)),this.$_removeEventListeners("scroll"),this.$emit("apply-hide"),this.classes.showFrom=!1,this.classes.showTo=!1,this.classes.hideFrom=!0,this.classes.hideTo=!1,await Ci(),this.classes.hideFrom=!1,this.classes.hideTo=!0},$_autoShowHide(){this.shown?this.show():this.hide()},$_ensureTeleport(){if(this.$_isDisposed)return;let t=this.container;if(typeof t=="string"?t=window.document.querySelector(t):t===!1&&(t=this.$_targetNodes[0].parentNode),!t)throw new Error("No container for popover: "+this.container);t.appendChild(this.$_popperNode),this.isMounted=!0},$_addEventListeners(){const t=n=>{this.isShown&&!this.$_hideInProgress||(n.usedByTooltip=!0,!this.$_preventShow&&this.show({event:n}))};this.$_registerTriggerListeners(this.$_targetNodes,Zl,this.triggers,this.showTriggers,t),this.$_registerTriggerListeners([this.$_popperNode],Zl,this.popperTriggers,this.popperShowTriggers,t);const e=n=>r=>{r.usedByTooltip||this.hide({event:r,skipAiming:n})};this.$_registerTriggerListeners(this.$_targetNodes,Yl,this.triggers,this.hideTriggers,e(!1)),this.$_registerTriggerListeners([this.$_popperNode],Yl,this.popperTriggers,this.popperHideTriggers,e(!0))},$_registerEventListeners(t,e,n){this.$_events.push({targetNodes:t,eventType:e,handler:n}),t.forEach(r=>r.addEventListener(e,n,hn?{passive:!0}:void 0))},$_registerTriggerListeners(t,e,n,r,o){let i=n;r!=null&&(i=typeof r=="function"?r(i):r),i.forEach(s=>{const l=e[s];l&&this.$_registerEventListeners(t,l,o)})},$_removeEventListeners(t){const e=[];this.$_events.forEach(n=>{const{targetNodes:r,eventType:o,handler:i}=n;!t||t===o?r.forEach(s=>s.removeEventListener(o,i)):e.push(n)}),this.$_events=e},$_refreshListeners(){this.$_isDisposed||(this.$_removeEventListeners(),this.$_addEventListeners())},$_handleGlobalClose(t,e=!1){this.$_showFrameLocked||(this.hide({event:t}),t.closePopover?this.$emit("close-directive"):this.$emit("auto-hide"),e&&(this.$_preventShow=!0,setTimeout(()=>{this.$_preventShow=!1},300)))},$_detachPopperNode(){this.$_popperNode.parentNode&&this.$_popperNode.parentNode.removeChild(this.$_popperNode)},$_swapTargetAttrs(t,e){for(const n of this.$_targetNodes){const r=n.getAttribute(t);r&&(n.removeAttribute(t),n.setAttribute(e,r))}},$_applyAttrsToTarget(t){for(const e of this.$_targetNodes)for(const n in t){const r=t[n];r==null?e.removeAttribute(n):e.setAttribute(n,r)}},$_updateParentShownChildren(t){let e=this.parentPopper;for(;e;)t?e.shownChildren.add(this.randomId):(e.shownChildren.delete(this.randomId),e.$_pendingHide&&e.hide()),e=e.parentPopper},$_isAimingPopper(){const t=this.$el.getBoundingClientRect();if(pr>=t.left&&pr<=t.right&&fr>=t.top&&fr<=t.bottom){const e=this.$_popperNode.getBoundingClientRect(),n=pr-Ie,r=fr-Fe,o=e.left+e.width/2-Ie+(e.top+e.height/2)-Fe+e.width+e.height,i=Ie+n*o,s=Fe+r*o;return Gr(Ie,Fe,i,s,e.left,e.top,e.left,e.bottom)||Gr(Ie,Fe,i,s,e.left,e.top,e.right,e.top)||Gr(Ie,Fe,i,s,e.right,e.top,e.right,e.bottom)||Gr(Ie,Fe,i,s,e.left,e.bottom,e.right,e.bottom)}return!1}},render(){return this.$scopedSlots.default(this.slotData)[0]}});typeof document<"u"&&typeof window<"u"&&(kp?(document.addEventListener("touchstart",eu,hn?{passive:!0,capture:!0}:!0),document.addEventListener("touchend",yg,hn?{passive:!0,capture:!0}:!0)):(window.addEventListener("mousedown",eu,!0),window.addEventListener("click",gg,!0)),window.addEventListener("resize",bg));function eu(t){for(let e=0;e=0;r--){const o=oe[r];try{const i=o.$_containsGlobalTarget=wg(o,t);o.$_pendingHide=!1,requestAnimationFrame(()=>{if(o.$_pendingHide=!1,!n[o.randomId]&&nu(o,i,t)){if(o.$_handleGlobalClose(t,e),!t.closeAllPopover&&t.closePopover&&i){let l=o.parentPopper;for(;l;)n[l.randomId]=!0,l=l.parentPopper;return}let s=o.parentPopper;for(;s&&nu(s,s.$_containsGlobalTarget,t);)s.$_handleGlobalClose(t,e),s=s.parentPopper}})}catch{}}}function wg(t,e){const n=t.popperNode();return t.$_mouseDownContains||n.contains(e.target)}function nu(t,e,n){return n.closeAllPopover||n.closePopover&&e||_g(t,n)&&!e}function _g(t,e){if(typeof t.autoHide=="function"){const n=t.autoHide(e);return t.lastAutoHide=n,n}return t.autoHide}function bg(t){for(let e=0;e{Ie=pr,Fe=fr,pr=t.clientX,fr=t.clientY},hn?{passive:!0}:void 0);function Gr(t,e,n,r,o,i,s,l){const u=((s-o)*(e-i)-(l-i)*(t-o))/((l-i)*(n-t)-(s-o)*(r-e)),f=((n-t)*(e-i)-(r-e)*(t-o))/((l-i)*(n-t)-(s-o)*(r-e));return u>=0&&u<=1&&f>=0&&f<=1}function xg(){var t=window.navigator.userAgent,e=t.indexOf("MSIE ");if(e>0)return parseInt(t.substring(e+5,t.indexOf(".",e)),10);var n=t.indexOf("Trident/");if(n>0){var r=t.indexOf("rv:");return parseInt(t.substring(r+3,t.indexOf(".",r)),10)}var o=t.indexOf("Edge/");return o>0?parseInt(t.substring(o+5,t.indexOf(".",o)),10):-1}var so;function ps(){ps.init||(ps.init=!0,so=xg()!==-1)}var Eg={name:"ResizeObserver",props:{emitOnMount:{type:Boolean,default:!1},ignoreWidth:{type:Boolean,default:!1},ignoreHeight:{type:Boolean,default:!1}},mounted:function(){var t=this;ps(),this.$nextTick(function(){t._w=t.$el.offsetWidth,t._h=t.$el.offsetHeight,t.emitOnMount&&t.emitSize()});var e=document.createElement("object");this._resizeObject=e,e.setAttribute("aria-hidden","true"),e.setAttribute("tabindex",-1),e.onload=this.addResizeHandlers,e.type="text/html",so&&this.$el.appendChild(e),e.data="about:blank",so||this.$el.appendChild(e)},beforeDestroy:function(){this.removeResizeHandlers()},methods:{compareAndNotify:function(){(!this.ignoreWidth&&this._w!==this.$el.offsetWidth||!this.ignoreHeight&&this._h!==this.$el.offsetHeight)&&(this._w=this.$el.offsetWidth,this._h=this.$el.offsetHeight,this.emitSize())},emitSize:function(){this.$emit("notify",{width:this._w,height:this._h})},addResizeHandlers:function(){this._resizeObject.contentDocument.defaultView.addEventListener("resize",this.compareAndNotify),this.compareAndNotify()},removeResizeHandlers:function(){this._resizeObject&&this._resizeObject.onload&&(!so&&this._resizeObject.contentDocument&&this._resizeObject.contentDocument.defaultView.removeEventListener("resize",this.compareAndNotify),this.$el.removeChild(this._resizeObject),this._resizeObject.onload=null,this._resizeObject=null)}}};function Cg(t,e,n,r,o,i,s,l,u,f){typeof s!="boolean"&&(u=l,l=s,s=!1);var p=typeof n=="function"?n.options:n;t&&t.render&&(p.render=t.render,p.staticRenderFns=t.staticRenderFns,p._compiled=!0,o&&(p.functional=!0)),r&&(p._scopeId=r);var h;if(i?(h=function(b){b=b||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,!b&&typeof __VUE_SSR_CONTEXT__<"u"&&(b=__VUE_SSR_CONTEXT__),e&&e.call(this,u(b)),b&&b._registeredComponents&&b._registeredComponents.add(i)},p._ssrRegister=h):e&&(h=s?function(b){e.call(this,f(b,this.$root.$options.shadowRoot))}:function(b){e.call(this,l(b))}),h)if(p.functional){var y=p.render;p.render=function(b,$){return h.call($),y(b,$)}}else{var g=p.beforeCreate;p.beforeCreate=g?[].concat(g,h):[h]}return n}var Sg=Eg,Ip=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"resize-observer",attrs:{tabindex:"-1"}})},Ag=[];Ip._withStripped=!0;var Tg=void 0,Ng="data-v-8859cc6c",Pg=void 0,$g=!1,fs=Cg({render:Ip,staticRenderFns:Ag},Tg,Sg,Ng,$g,Pg,!1,void 0,void 0,void 0);function kg(t){t.component("resize-observer",fs),t.component("ResizeObserver",fs)}var Og={version:"1.0.1",install:kg},Wr=null;typeof window<"u"?Wr=window.Vue:typeof an<"u"&&(Wr=an.Vue),Wr&&Wr.use(Og);var Fp={computed:{themeClass(){return vg(this.theme)}}},Lg={name:"VPopperContent",components:{ResizeObserver:fs},mixins:[Fp],props:{popperId:String,theme:String,shown:Boolean,mounted:Boolean,skipTransition:Boolean,autoHide:Boolean,handleResize:Boolean,classes:Object,result:Object},methods:{toPx(t){return t!=null&&!isNaN(t)?"".concat(t,"px"):null}}},Rg=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{ref:"popover",staticClass:"v-popper__popper",class:[t.themeClass,t.classes.popperClass,{"v-popper__popper--shown":t.shown,"v-popper__popper--hidden":!t.shown,"v-popper__popper--show-from":t.classes.showFrom,"v-popper__popper--show-to":t.classes.showTo,"v-popper__popper--hide-from":t.classes.hideFrom,"v-popper__popper--hide-to":t.classes.hideTo,"v-popper__popper--skip-transition":t.skipTransition,"v-popper__popper--arrow-overflow":t.result&&t.result.arrow.overflow,"v-popper__popper--no-positioning":!t.result}],style:t.result?{position:t.result.strategy,transform:"translate3d("+Math.round(t.result.x)+"px,"+Math.round(t.result.y)+"px,0)"}:void 0,attrs:{id:t.popperId,"aria-hidden":t.shown?"false":"true",tabindex:t.autoHide?0:void 0,"data-popper-placement":t.result?t.result.placement:void 0},on:{keyup:function(r){if(!r.type.indexOf("key")&&t._k(r.keyCode,"esc",27,r.key,["Esc","Escape"]))return null;t.autoHide&&t.$emit("hide")}}},[n("div",{staticClass:"v-popper__backdrop",on:{click:function(r){t.autoHide&&t.$emit("hide")}}}),n("div",{staticClass:"v-popper__wrapper",style:t.result?{transformOrigin:t.result.transformOrigin}:void 0},[n("div",{ref:"inner",staticClass:"v-popper__inner"},[t.mounted?[n("div",[t._t("default")],2),t.handleResize?n("ResizeObserver",{on:{notify:function(r){return t.$emit("resize",r)}}}):t._e()]:t._e()],2),n("div",{ref:"arrow",staticClass:"v-popper__arrow-container",style:t.result?{left:t.toPx(t.result.arrow.x),top:t.toPx(t.result.arrow.y)}:void 0},[n("div",{staticClass:"v-popper__arrow-outer"}),n("div",{staticClass:"v-popper__arrow-inner"})])])])},Ig=[];function Wn(t,e,n,r,o,i,s,l){var u=typeof t=="function"?t.options:t;e&&(u.render=e,u.staticRenderFns=n,u._compiled=!0),r&&(u.functional=!0),i&&(u._scopeId="data-v-"+i);var f;if(s?(f=function(y){y=y||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,!y&&typeof __VUE_SSR_CONTEXT__<"u"&&(y=__VUE_SSR_CONTEXT__),o&&o.call(this,y),y&&y._registeredComponents&&y._registeredComponents.add(s)},u._ssrRegister=f):o&&(f=l?function(){o.call(this,(u.functional?this.parent:this).$root.$options.shadowRoot)}:o),f)if(u.functional){u._injectStyles=f;var p=u.render;u.render=function(y,g){return f.call(g),p(y,g)}}else{var h=u.beforeCreate;u.beforeCreate=h?[].concat(h,f):[f]}return{exports:t,options:u}}const ru={};var Fg=Wn(Lg,Rg,Ig,!1,Bg,null,null,null);function Bg(t){for(let e in ru)this[e]=ru[e]}var Bp=function(){return Fg.exports}(),ta={methods:{show(...t){return this.$refs.popper.show(...t)},hide(...t){return this.$refs.popper.hide(...t)},dispose(...t){return this.$refs.popper.dispose(...t)},onResize(...t){return this.$refs.popper.onResize(...t)}}},Dg={name:"VPopperWrapper",components:{Popper:Lp(),PopperContent:Bp},mixins:[ta,Fp],inheritAttrs:!1,props:{theme:{type:String,default(){return this.$options.vPopperTheme}}},methods:{getTargetNodes(){return Array.from(this.$refs.reference.children).filter(t=>t!==this.$refs.popperContent.$el)}}},Mg=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("Popper",t._g(t._b({ref:"popper",attrs:{theme:t.theme,"target-nodes":t.getTargetNodes,"reference-node":function(){return t.$refs.reference},"popper-node":function(){return t.$refs.popperContent.$el}},scopedSlots:t._u([{key:"default",fn:function(r){var o=r.popperId,i=r.isShown,s=r.shouldMountContent,l=r.skipTransition,u=r.autoHide,f=r.show,p=r.hide,h=r.handleResize,y=r.onResize,g=r.classes,b=r.result;return[n("div",{ref:"reference",staticClass:"v-popper",class:[t.themeClass,{"v-popper--shown":i}]},[t._t("default",null,{shown:i,show:f,hide:p}),n("PopperContent",{ref:"popperContent",attrs:{"popper-id":o,theme:t.theme,shown:i,mounted:s,"skip-transition":l,"auto-hide":u,"handle-resize":h,classes:g,result:b},on:{hide:p,resize:y}},[t._t("popper",null,{shown:i,hide:p})],2)],2)]}}],null,!0)},"Popper",t.$attrs,!1),t.$listeners))},zg=[];const ou={};var jg=Wn(Dg,Mg,zg,!1,Ug,null,null,null);function Ug(t){for(let e in ou)this[e]=ou[e]}var ea=function(){return jg.exports}(),Hg=Qo(De({},ea),{name:"VDropdown",vPopperTheme:"dropdown"});let Vg,Gg;const iu={};var Wg=Wn(Hg,Vg,Gg,!1,qg,null,null,null);function qg(t){for(let e in iu)this[e]=iu[e]}var ds=function(){return Wg.exports}(),Xg=Qo(De({},ea),{name:"VMenu",vPopperTheme:"menu"});let Kg,Zg;const su={};var Yg=Wn(Xg,Kg,Zg,!1,Jg,null,null,null);function Jg(t){for(let e in su)this[e]=su[e]}var au=function(){return Yg.exports}(),Qg=Qo(De({},ea),{name:"VTooltip",vPopperTheme:"tooltip"});let ty,ey;const lu={};var ny=Wn(Qg,ty,ey,!1,ry,null,null,null);function ry(t){for(let e in lu)this[e]=lu[e]}var uu=function(){return ny.exports}(),oy={name:"VTooltipDirective",components:{Popper:Lp(),PopperContent:Bp},mixins:[ta],inheritAttrs:!1,props:{theme:{type:String,default:"tooltip"},html:{type:Boolean,default(){return Dn(this.theme,"html")}},content:{type:[String,Number,Function],default:null},loadingContent:{type:String,default(){return Dn(this.theme,"loadingContent")}}},data(){return{asyncContent:null}},computed:{isContentAsync(){return typeof this.content=="function"},loading(){return this.isContentAsync&&this.asyncContent==null},finalContent(){return this.isContentAsync?this.loading?this.loadingContent:this.asyncContent:this.content}},watch:{content:{handler(){this.fetchContent(!0)},immediate:!0},async finalContent(t){await this.$nextTick(),this.$refs.popper.onResize()}},created(){this.$_fetchId=0},methods:{fetchContent(t){if(typeof this.content=="function"&&this.$_isShown&&(t||!this.$_loading&&this.asyncContent==null)){this.asyncContent=null,this.$_loading=!0;const e=++this.$_fetchId,n=this.content(this);n.then?n.then(r=>this.onResult(e,r)):this.onResult(e,n)}},onResult(t,e){t===this.$_fetchId&&(this.$_loading=!1,this.asyncContent=e)},onShow(){this.$_isShown=!0,this.fetchContent()},onHide(){this.$_isShown=!1}}},iy=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("Popper",t._g(t._b({ref:"popper",attrs:{theme:t.theme,"popper-node":function(){return t.$refs.popperContent.$el}},on:{"apply-show":t.onShow,"apply-hide":t.onHide},scopedSlots:t._u([{key:"default",fn:function(r){var o=r.popperId,i=r.isShown,s=r.shouldMountContent,l=r.skipTransition,u=r.autoHide,f=r.hide,p=r.handleResize,h=r.onResize,y=r.classes,g=r.result;return[n("PopperContent",{ref:"popperContent",class:{"v-popper--tooltip-loading":t.loading},attrs:{"popper-id":o,theme:t.theme,shown:i,mounted:s,"skip-transition":l,"auto-hide":u,"handle-resize":p,classes:y,result:g},on:{hide:f,resize:h}},[t.html?n("div",{domProps:{innerHTML:t._s(t.finalContent)}}):n("div",{domProps:{textContent:t._s(t.finalContent)}})])]}}])},"Popper",t.$attrs,!1),t.$listeners))},sy=[];const cu={};var ay=Wn(oy,iy,sy,!1,ly,null,null,null);function ly(t){for(let e in cu)this[e]=cu[e]}var uy=function(){return ay.exports}();const Dp="v-popper--has-tooltip";function cy(t,e){let n=t.placement;if(!n&&e)for(const r of Op)e[r]&&(n=r);return n||(n=Dn(t.theme||"tooltip","placement")),n}function Mp(t,e,n){let r;const o=typeof e;return o==="string"?r={content:e}:e&&o==="object"?r=e:r={content:!1},r.placement=cy(r,n),r.targetNodes=()=>[t],r.referenceNode=()=>t,r}function py(t,e,n){const r=Mp(t,e,n),o=t.$_popper=new st({mixins:[ta],data(){return{options:r}},render(s){const l=this.options,{theme:u,html:f,content:p,loadingContent:h}=l,y=mg(l,["theme","html","content","loadingContent"]);return s(uy,{props:{theme:u,html:f,content:p,loadingContent:h},attrs:y,ref:"popper"})},devtools:{hide:!0}}),i=document.createElement("div");return document.body.appendChild(i),o.$mount(i),t.classList&&t.classList.add(Dp),o}function zp(t){t.$_popper&&(t.$_popper.$destroy(),delete t.$_popper,delete t.$_popperOldShown),t.classList&&t.classList.remove(Dp)}function pu(t,{value:e,oldValue:n,modifiers:r}){const o=Mp(t,e,r);if(!o.content||Dn(o.theme||"tooltip","disabled"))zp(t);else{let i;t.$_popper?(i=t.$_popper,i.options=o):i=py(t,e,r),typeof e.shown<"u"&&e.shown!==t.$_popperOldShown&&(t.$_popperOldShown=e.shown,e.shown?i.show():i.hide())}}var jp={bind:pu,update:pu,unbind(t){zp(t)}};function fu(t){t.addEventListener("click",Up),t.addEventListener("touchstart",Hp,hn?{passive:!0}:!1)}function du(t){t.removeEventListener("click",Up),t.removeEventListener("touchstart",Hp),t.removeEventListener("touchend",Vp),t.removeEventListener("touchcancel",Gp)}function Up(t){const e=t.currentTarget;t.closePopover=!e.$_vclosepopover_touch,t.closeAllPopover=e.$_closePopoverModifiers&&!!e.$_closePopoverModifiers.all}function Hp(t){if(t.changedTouches.length===1){const e=t.currentTarget;e.$_vclosepopover_touch=!0;const n=t.changedTouches[0];e.$_vclosepopover_touchPoint=n,e.addEventListener("touchend",Vp),e.addEventListener("touchcancel",Gp)}}function Vp(t){const e=t.currentTarget;if(e.$_vclosepopover_touch=!1,t.changedTouches.length===1){const n=t.changedTouches[0],r=e.$_vclosepopover_touchPoint;t.closePopover=Math.abs(n.screenY-r.screenY)<20&&Math.abs(n.screenX-r.screenX)<20,t.closeAllPopover=e.$_closePopoverModifiers&&!!e.$_closePopoverModifiers.all}}function Gp(t){const e=t.currentTarget;e.$_vclosepopover_touch=!1}var fy={bind(t,{value:e,modifiers:n}){t.$_closePopoverModifiers=n,(typeof e>"u"||e)&&fu(t)},update(t,{value:e,oldValue:n,modifiers:r}){t.$_closePopoverModifiers=r,e!==n&&(typeof e>"u"||e?fu(t):du(t))},unbind(t){du(t)}};const qr=ve,dy=jp,hy=ds;function my(t,e={}){t.$_vTooltipInstalled||(t.$_vTooltipInstalled=!0,$p(ve,e),t.directive("tooltip",jp),t.directive("close-popper",fy),t.component("v-tooltip",uu),t.component("VTooltip",uu),t.component("v-dropdown",ds),t.component("VDropdown",ds),t.component("v-menu",au),t.component("VMenu",au))}const vy={version:"1.0.0-beta.19",install:my,options:ve};let Xr=null;typeof window<"u"?Xr=window.Vue:typeof an<"u"&&(Xr=an.Vue),Xr&&Xr.use(vy);const gy={name:"NcPopoverTriggerProvider",provide(){return{"NcPopover:trigger:shown":()=>this.shown,"NcPopover:trigger:attrs":()=>this.triggerAttrs}},props:{shown:{type:Boolean,required:!0},popupRole:{type:String,default:void 0}},computed:{triggerAttrs(){return{"aria-haspopup":this.popupRole,"aria-expanded":this.shown.toString()}}},render(){var t,e;return(e=(t=this.$scopedSlots).default)==null?void 0:e.call(t,{attrs:this.triggerAttrs})}},yy=null,wy=null;var _y=Jt(gy,yy,wy,!1,null,null,null,null);const by=_y.exports,xy={name:"NcPopover",components:{Dropdown:hy,NcPopoverTriggerProvider:by},inheritAttrs:!1,props:{shown:{type:Boolean,default:!1},popupRole:{type:String,default:void 0,validator:t=>["menu","listbox","tree","grid","dialog","true"].includes(t)},popoverBaseClass:{type:String,default:""},focusTrap:{type:Boolean,default:!0},setReturnFocus:{default:void 0,type:[HTMLElement,SVGElement,String,Boolean]}},emits:["after-show","after-hide","update:shown"],data(){return{internalShown:this.shown}},watch:{shown(t){this.internalShown=t},internalShown(t){this.$emit("update:shown",t)}},mounted(){this.checkTriggerA11y()},beforeDestroy(){this.clearFocusTrap(),this.clearEscapeStopPropagation()},methods:{checkTriggerA11y(){var t;(t=window.OC)!=null&&t.debug&&(this.getPopoverTriggerContainerElement().querySelector("[aria-expanded]")||st.util.warn("It looks like you are using a custom button as a or other popover #trigger. If you are not using as a trigger, you need to bind attrs from the #trigger slot props to your custom button. See docs for an example."))},removeFloatingVueAriaDescribedBy(){const t=this.getPopoverTriggerContainerElement().querySelectorAll("[data-popper-shown]");for(const e of t)e.removeAttribute("aria-describedby")},getPopoverContentElement(){var t,e;return(e=(t=this.$refs.popover)==null?void 0:t.$refs.popperContent)==null?void 0:e.$el},getPopoverTriggerContainerElement(){return this.$refs.popover.$refs.reference},async useFocusTrap(){if(await this.$nextTick(),!this.focusTrap)return;const t=this.getPopoverContentElement();t&&(this.$focusTrap=pp(t,{escapeDeactivates:!1,allowOutsideClick:!0,setReturnFocus:this.setReturnFocus,trapStack:$o()}),this.$focusTrap.activate())},clearFocusTrap(t={}){var e;try{(e=this.$focusTrap)==null||e.deactivate(t),this.$focusTrap=null}catch(n){console.warn(n)}},addEscapeStopPropagation(){const t=this.getPopoverContentElement();t==null||t.addEventListener("keydown",this.stopKeydownEscapeHandler)},clearEscapeStopPropagation(){const t=this.getPopoverContentElement();t==null||t.removeEventListener("keydown",this.stopKeydownEscapeHandler)},stopKeydownEscapeHandler(t){t.type==="keydown"&&t.key==="Escape"&&t.stopPropagation()},afterShow(){this.removeFloatingVueAriaDescribedBy(),this.$nextTick(()=>{this.$emit("after-show"),this.useFocusTrap(),this.addEscapeStopPropagation()})},afterHide(){this.$emit("after-hide"),this.clearFocusTrap(),this.clearEscapeStopPropagation()}}};var Ey=function(){var t=this,e=t._self._c;return e("Dropdown",t._g(t._b({ref:"popover",attrs:{distance:10,"arrow-padding":10,"no-auto-focus":!0,"popper-class":t.popoverBaseClass,shown:t.internalShown},on:{"update:shown":function(n){t.internalShown=n},"apply-show":t.afterShow,"apply-hide":t.afterHide},scopedSlots:t._u([{key:"popper",fn:function(){return[t._t("default")]},proxy:!0}],null,!0)},"Dropdown",t.$attrs,!1),t.$listeners),[e("NcPopoverTriggerProvider",{attrs:{shown:t.internalShown,"popup-role":t.popupRole},scopedSlots:t._u([{key:"default",fn:function(n){return[t._t("trigger",null,null,n)]}}],null,!0)})],1)},Cy=[],Sy=Jt(xy,Ey,Cy,!1,null,null,null,null);const Ay=Sy.exports,Ty={name:"DotsHorizontalIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}};var Ny=function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon dots-horizontal-icon",attrs:{"aria-hidden":t.title?null:!0,"aria-label":t.title,role:"img"},on:{click:function(n){return t.$emit("click",n)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M16,12A2,2 0 0,1 18,10A2,2 0 0,1 20,12A2,2 0 0,1 18,14A2,2 0 0,1 16,12M10,12A2,2 0 0,1 12,10A2,2 0 0,1 14,12A2,2 0 0,1 12,14A2,2 0 0,1 10,12M4,12A2,2 0 0,1 6,10A2,2 0 0,1 8,12A2,2 0 0,1 6,14A2,2 0 0,1 4,12Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])},Py=[],$y=Jt(Ty,Ny,Py,!1,null,null,null,null);const ky=$y.exports;_p(N1);const hu=".focusable",Oy={name:"NcActions",components:{NcButton:qo,NcPopover:Ay},provide(){return{"NcActions:isSemanticMenu":_t(()=>this.actionsMenuSemanticType==="menu")}},props:{open:{type:Boolean,default:!1},manualOpen:{type:Boolean,default:!1},forceMenu:{type:Boolean,default:!1},forceName:{type:Boolean,default:!1},menuName:{type:String,default:null},forceSemanticType:{type:String,default:null,validator(t){return["dialog","menu","expanded","tooltip"].includes(t)}},primary:{type:Boolean,default:!1},type:{type:String,validator(t){return["primary","secondary","tertiary","tertiary-no-background","tertiary-on-primary","error","warning","success"].indexOf(t)!==-1},default:null},defaultIcon:{type:String,default:""},ariaLabel:{type:String,default:Je("Actions")},ariaHidden:{type:Boolean,default:null},placement:{type:String,default:"bottom"},boundariesElement:{type:Element,default:()=>{var t;return(t=document.querySelector("#content-vue"))!=null?t:document.querySelector("body")}},container:{type:[String,Object,Element,Boolean],default:"body"},disabled:{type:Boolean,default:!1},inline:{type:Number,default:0}},emits:["open","update:open","close","focus","blur","click"],setup(t){const e="menu-".concat(bp()),n="trigger-".concat(e),r=xt(),{top:o,bottom:i}=Ol(r),{top:s,bottom:l}=Ol(sd(t,"boundariesElement")),{height:u}=Kv(),f=_t(()=>Math.max(Math.min(o.value-84,o.value-s.value),Math.min(u.value-i.value-34,l.value-i.value)));return{triggerButton:r,maxMenuHeight:f,randomId:e,triggerRandomId:n}},data(){return{opened:this.open,focusIndex:0,actionsMenuSemanticType:"unknown",externalFocusTrapStack:[]}},computed:{triggerBtnType(){return this.type||(this.primary?"primary":this.menuName?"secondary":"tertiary")},config(){return{menu:{popupRole:"menu",withArrowNavigation:!0,withTabNavigation:!1,withFocusTrap:!1,triggerA11yAttr:{"aria-controls":this.opened?this.randomId:null},popoverContainerA11yAttrs:{},popoverUlA11yAttrs:{id:this.randomId,role:"menu"}},expanded:{popupRole:void 0,withArrowNavigation:!1,withTabNavigation:!0,withFocusTrap:!1,triggerA11yAttr:{},popoverContainerA11yAttrs:{},popoverUlA11yAttrs:{}},dialog:{popupRole:"dialog",withArrowNavigation:!1,withTabNavigation:!0,withFocusTrap:!0,triggerA11yAttr:{"aria-controls":this.opened?this.randomId:null},popoverContainerA11yAttrs:{id:this.randomId,role:"dialog","aria-labelledby":this.triggerRandomId,"aria-modal":"true"},popoverUlA11yAttrs:{}},tooltip:{popupRole:void 0,withArrowNavigation:!1,withTabNavigation:!1,withFocusTrap:!1,triggerA11yAttr:{},popoverContainerA11yAttrs:{},popoverUlA11yAttrs:{}},unknown:{popupRole:void 0,role:void 0,withArrowNavigation:!0,withTabNavigation:!1,withFocusTrap:!0,triggerA11yAttr:{},popoverContainerA11yAttrs:{},popoverUlA11yAttrs:{}}}[this.actionsMenuSemanticType]}},watch:{open(t){t!==this.opened&&(this.opened=t)},opened(){this.intersectIntoCurrentFocusTrapStack()}},methods:{getActionName(t){var e,n,r,o,i;return(i=(r=(n=(e=t==null?void 0:t.componentOptions)==null?void 0:e.Ctor)==null?void 0:n.extendOptions)==null?void 0:r.name)!=null?i:(o=t==null?void 0:t.componentOptions)==null?void 0:o.tag},intersectIntoCurrentFocusTrapStack(){if(!this.config.withFocusTrap)if(this.opened){this.externalFocusTrapStack=[...$o()];for(const t of this.externalFocusTrapStack)t.pause()}else{for(const t of this.externalFocusTrapStack)t.unpause();this.externalFocusTrapStack=[]}},isValidSingleAction(t){return["NcActionButton","NcActionLink","NcActionRouter"].includes(this.getActionName(t))},isIconUrl(t){try{return!!new URL(t,t.startsWith("/")?window.location.origin:void 0)}catch{return!1}},openMenu(t){this.opened||(this.opened=!0,this.$emit("update:open",!0),this.$emit("open"))},async closeMenu(t=!0){var e,n;this.opened&&(await this.$nextTick(),this.opened=!1,(e=this.$refs.popover)==null||e.clearFocusTrap({returnFocus:t}),this.$emit("update:open",!1),this.$emit("close"),this.focusIndex=0,t&&((n=this.$refs.triggerButton)==null||n.$el.focus()))},onOpen(){this.$nextTick(()=>{this.focusFirstAction(null),this.resizePopover()})},resizePopover(){const t=this.$refs.menu.closest(".v-popper__inner");if(this.$refs.menu.clientHeight>this.maxMenuHeight){let e=0,n=0;for(const r of this.$refs.menuList.children){if(e+r.clientHeight/2>this.maxMenuHeight){t.style.height="".concat(e-n/2,"px");break}n=r.clientHeight,e+=n}}else t.style.height="fit-content"},getCurrentActiveMenuItemElement(){return this.$refs.menu.querySelector("li.active")},getFocusableMenuItemElements(){return this.$refs.menu.querySelectorAll(hu)},onMouseFocusAction(t){if(document.activeElement===t.target)return;const e=t.target.closest("li");if(e&&this.$refs.menu.contains(e)){const n=e.querySelector(hu);if(n){const r=[...this.getFocusableMenuItemElements()].indexOf(n);r>-1&&(this.focusIndex=r,this.focusAction())}}},onKeydown(t){if(t.key==="Tab"){if(this.config.withFocusTrap)return;if(!this.config.withTabNavigation){this.closeMenu(!0);return}t.preventDefault();const e=this.getFocusableMenuItemElements(),n=[...e].indexOf(document.activeElement);if(n===-1)return;const r=t.shiftKey?n-1:n+1;(r<0||r===e.length)&&this.closeMenu(!0),this.focusIndex=r,this.focusAction();return}this.config.withArrowNavigation&&(t.key==="ArrowUp"&&this.focusPreviousAction(t),t.key==="ArrowDown"&&this.focusNextAction(t),t.key==="PageUp"&&this.focusFirstAction(t),t.key==="PageDown"&&this.focusLastAction(t)),t.key==="Escape"&&(this.closeMenu(),t.preventDefault())},onTriggerKeydown(t){t.key==="Escape"&&this.actionsMenuSemanticType==="tooltip"&&this.closeMenu()},removeCurrentActive(){const t=this.$refs.menu.querySelector("li.active");t&&t.classList.remove("active")},focusAction(){const t=this.getFocusableMenuItemElements()[this.focusIndex];if(t){this.removeCurrentActive();const e=t.closest("li.action");t.focus(),e&&e.classList.add("active")}},focusPreviousAction(t){this.opened&&(this.focusIndex===0?this.focusLastAction(t):(this.preventIfEvent(t),this.focusIndex=this.focusIndex-1),this.focusAction())},focusNextAction(t){if(this.opened){const e=this.getFocusableMenuItemElements().length-1;this.focusIndex===e?this.focusFirstAction(t):(this.preventIfEvent(t),this.focusIndex=this.focusIndex+1),this.focusAction()}},focusFirstAction(t){if(this.opened){this.preventIfEvent(t);const e=[...this.getFocusableMenuItemElements()].findIndex(n=>n.getAttribute("aria-checked")==="true"&&n.getAttribute("role")==="menuitemradio");this.focusIndex=e>-1?e:0,this.focusAction()}},focusLastAction(t){this.opened&&(this.preventIfEvent(t),this.focusIndex=this.getFocusableMenuItemElements().length-1,this.focusAction())},preventIfEvent(t){t&&(t.preventDefault(),t.stopPropagation())},onFocus(t){this.$emit("focus",t)},onBlur(t){this.$emit("blur",t),this.actionsMenuSemanticType==="tooltip"&&this.$refs.menu&&this.getFocusableMenuItemElements().length===0&&this.closeMenu(!1)},onClick(t){this.$emit("click",t)}},render(t){const e=(this.$slots.default||[]).filter(l=>this.getActionName(l));if(e.length===0)return;let n=e.filter(this.isValidSingleAction);this.forceMenu&&n.length>0&&this.inline>0&&(st.util.warn("Specifying forceMenu will ignore any inline actions rendering."),n=[]);const r=n.slice(0,this.inline),o=e.filter(l=>!r.includes(l));if(this.forceSemanticType)this.actionsMenuSemanticType=this.forceSemanticType;else{const l=["NcActionInput","NcActionTextEditable"],u=["NcActionButton","NcActionButtonGroup","NcActionCheckbox","NcActionRadio"],f=["NcActionLink","NcActionRouter"],p=o.some(g=>l.includes(this.getActionName(g))),h=o.some(g=>u.includes(this.getActionName(g))),y=o.some(g=>f.includes(this.getActionName(g)));p?this.actionsMenuSemanticType="dialog":h?this.actionsMenuSemanticType="menu":y?this.actionsMenuSemanticType="expanded":e.filter(g=>this.getActionName(g).startsWith("NcAction")).length===e.length?this.actionsMenuSemanticType="tooltip":this.actionsMenuSemanticType="unknown"}const i=l=>{var u,f,p,h,y,g,b,$,P,B,R,j,q,et,ft,Q,U,T,C,I,w,_,S,O,F,D,V,G,M,X;const W=(f=(u=l==null?void 0:l.componentOptions)==null?void 0:u.propsData)==null?void 0:f.icon,ot=(g=(y=(h=(p=l==null?void 0:l.data)==null?void 0:p.scopedSlots)==null?void 0:h.icon())==null?void 0:y[0])!=null?g:this.isIconUrl(W)?t("img",{class:"action-item__menutoggle__icon",attrs:{src:W,alt:""}}):t("span",{class:["icon",W]}),H=((b=l==null?void 0:l.data)==null?void 0:b.attrs)||{},it=(P=($=l==null?void 0:l.componentOptions)==null?void 0:$.listeners)==null?void 0:P.click,St=(et=(q=(j=(R=(B=l==null?void 0:l.componentOptions)==null?void 0:B.children)==null?void 0:R[0])==null?void 0:j.text)==null?void 0:q.trim)==null?void 0:et.call(q),Tt=((Q=(ft=l==null?void 0:l.componentOptions)==null?void 0:ft.propsData)==null?void 0:Q.ariaLabel)||St,Gt=this.forceName?St:"";let jt=(T=(U=l==null?void 0:l.componentOptions)==null?void 0:U.propsData)==null?void 0:T.title;this.forceName||jt||(jt=St);const te={...(I=(C=l==null?void 0:l.componentOptions)==null?void 0:C.propsData)!=null?I:{}},Lt=["submit","reset"].includes(te.type)?te.modelValue:"button";return delete te.modelValue,delete te.type,t("NcButton",{class:["action-item action-item--single",(w=l==null?void 0:l.data)==null?void 0:w.staticClass,(_=l==null?void 0:l.data)==null?void 0:_.class],attrs:{...H,"aria-label":Tt,title:jt},ref:(S=l==null?void 0:l.data)==null?void 0:S.ref,props:{type:this.type||(Gt?"secondary":"tertiary"),disabled:this.disabled||((F=(O=l==null?void 0:l.componentOptions)==null?void 0:O.propsData)==null?void 0:F.disabled),pressed:(V=(D=l==null?void 0:l.componentOptions)==null?void 0:D.propsData)==null?void 0:V.modelValue,nativeType:Lt,...te},on:{focus:this.onFocus,blur:this.onBlur,"update:pressed":(X=(M=(G=l==null?void 0:l.componentOptions)==null?void 0:G.listeners)==null?void 0:M["update:modelValue"])!=null?X:()=>{},...!!it&&{click:ke=>{it&&it(ke)}}}},[t("template",{slot:"icon"},[ot]),Gt])},s=l=>{var u,f;const p=((u=this.$slots.icon)==null?void 0:u[0])||(this.defaultIcon?t("span",{class:["icon",this.defaultIcon]}):t(ky,{props:{size:20}}));return t("NcPopover",{ref:"popover",props:{delay:0,handleResize:!0,shown:this.opened,placement:this.placement,boundary:this.boundariesElement,container:this.container,popoverBaseClass:"action-item__popper",popupRole:this.config.popupRole,setReturnFocus:this.config.withFocusTrap?(f=this.$refs.triggerButton)==null?void 0:f.$el:null,focusTrap:this.config.withFocusTrap},attrs:{delay:0,handleResize:!0,shown:this.opened,placement:this.placement,boundary:this.boundariesElement,container:this.container,...this.manualOpen&&{triggers:[]}},on:{show:this.openMenu,"apply-show":this.onOpen,hide:this.closeMenu}},[t("NcButton",{class:"action-item__menutoggle",props:{type:this.triggerBtnType,disabled:this.disabled},slot:"trigger",ref:"triggerButton",attrs:{id:this.triggerRandomId,"aria-label":this.menuName?null:this.ariaLabel,...this.config.triggerA11yAttr},on:{focus:this.onFocus,blur:this.onBlur,click:this.onClick,keydown:this.onTriggerKeydown}},[t("template",{slot:"icon"},[p]),this.menuName]),t("div",{class:{open:this.opened},attrs:{tabindex:"-1",...this.config.popoverContainerA11yAttrs},on:{keydown:this.onKeydown,mousemove:this.onMouseFocusAction},ref:"menu"},[t("ul",{attrs:{tabindex:"-1",...this.config.popoverUlA11yAttrs},ref:"menuList"},[l])])])};return e.length===1&&n.length===1&&!this.forceMenu?i(e[0]):(this.$nextTick(()=>{this.opened&&this.$refs.menu&&(this.resizePopover(),(this.$refs.menu.querySelector("li.active")||[]).length===0&&this.focusFirstAction())}),r.length>0&&this.inline>0?t("div",{class:["action-items","action-item--".concat(this.triggerBtnType)]},[...r.map(i),o.length>0?t("div",{class:["action-item",{"action-item--open":this.opened}]},[s(o)]):null]):t("div",{class:["action-item action-item--default-popover","action-item--".concat(this.triggerBtnType),{"action-item--open":this.opened}]},[s(e)]))}},Ly=null,Ry=null;var Iy=Jt(Oy,Ly,Ry,!1,null,"3713841c",null,null);const Fy=Iy.exports;qr.themes.tooltip.html=!1,qr.themes.tooltip.delay={show:500,hide:200},qr.themes.tooltip.distance=10,qr.themes.tooltip["arrow-padding"]=3;const By={name:"ChevronRightIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}};var Dy=function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon chevron-right-icon",attrs:{"aria-hidden":t.title?null:!0,"aria-label":t.title,role:"img"},on:{click:function(n){return t.$emit("click",n)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])},My=[],zy=Jt(By,Dy,My,!1,null,null,null,null);const jy=zy.exports,Uy={name:"CloseIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}};var Hy=function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon close-icon",attrs:{"aria-hidden":t.title?null:!0,"aria-label":t.title,role:"img"},on:{click:function(n){return t.$emit("click",n)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"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"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])},Vy=[],Gy=Jt(Uy,Hy,Vy,!1,null,null,null,null);const Wy=Gy.exports;_p(P1,$1);function qy(t,e){let n,r,o=e,i;this.start=function(){i=!0,r=new Date,n=setTimeout(t,o)},this.pause=function(){i=!1,clearTimeout(n),o-=new Date-r},this.clear=function(){i=!1,clearTimeout(n),o=0},this.getTimeLeft=function(){return i&&(this.pause(),this.start()),o},this.getStateRunning=function(){return i},this.start()}const Xy={name:"ChevronLeftIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}};var Ky=function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon chevron-left-icon",attrs:{"aria-hidden":t.title?null:!0,"aria-label":t.title,role:"img"},on:{click:function(n){return t.$emit("click",n)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M15.41,16.58L10.83,12L15.41,7.41L14,6L8,12L14,18L15.41,16.58Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])},Zy=[],Yy=Jt(Xy,Ky,Zy,!1,null,null,null,null);const Jy=Yy.exports,Qy={name:"PauseIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}};var tw=function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon pause-icon",attrs:{"aria-hidden":t.title?null:!0,"aria-label":t.title,role:"img"},on:{click:function(n){return t.$emit("click",n)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M14,19H18V5H14M6,19H10V5H6V19Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])},ew=[],nw=Jt(Qy,tw,ew,!1,null,null,null,null);const rw=nw.exports,ow={name:"PlayIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}};var iw=function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon play-icon",attrs:{"aria-hidden":t.title?null:!0,"aria-label":t.title,role:"img"},on:{click:function(n){return t.$emit("click",n)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8,5.14V19.14L19,12.14L8,5.14Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])},sw=[],aw=Jt(ow,iw,sw,!1,null,null,null,null);const lw=aw.exports,uw={name:"NcModal",components:{NcActions:Fy,ChevronLeft:Jy,ChevronRight:jy,Close:Wy,Pause:rw,Play:lw,NcButton:qo},directives:{tooltip:dy},props:{name:{type:String,default:""},hasPrevious:{type:Boolean,default:!1},hasNext:{type:Boolean,default:!1},outTransition:{type:Boolean,default:!1},enableSlideshow:{type:Boolean,default:!1},slideshowDelay:{type:Number,default:5e3},slideshowPaused:{type:Boolean,default:!1},enableSwipe:{type:Boolean,default:!0},spreadNavigation:{type:Boolean,default:!1},size:{type:String,default:"normal",validator:t=>["small","normal","large","full"].includes(t)},canClose:{type:Boolean,default:!0},closeOnClickOutside:{type:Boolean,default:!0},dark:{type:Boolean,default:!1},container:{type:[String,null],default:"body"},closeButtonContained:{type:Boolean,default:!0},additionalTrapElements:{type:Array,default:()=>[]},inlineActions:{type:Number,default:0},show:{type:Boolean,default:void 0},labelId:{type:String,default:""},setReturnFocus:{default:void 0,type:[HTMLElement,SVGElement,String,Boolean]}},emits:["previous","next","close","update:show"],data(){return{mc:null,playing:!1,slideshowTimeout:null,iconSize:24,focusTrap:null,externalFocusTrapStack:[],randId:bp(),internalShow:!0}},computed:{modalLabelId(){return this.labelId||"modal-name-".concat(this.randId)},showModal(){return this.show===void 0?this.internalShow:this.show},modalTransitionName(){return"modal-".concat(this.outTransition?"out":"in")},playPauseName(){return this.playing?Je("Pause slideshow"):Je("Start slideshow")},cssVariables(){return{"--slideshow-duration":this.slideshowDelay+"ms","--icon-size":this.iconSize+"px"}},closeButtonAriaLabel(){return Je("Close")},prevButtonAriaLabel(){return Je("Previous")},nextButtonAriaLabel(){return Je("Next")}},watch:{slideshowPaused(t){this.slideshowTimeout&&(t?this.slideshowTimeout.pause():this.slideshowTimeout.start())},additionalTrapElements(t){if(this.focusTrap){const e=this.$refs.mask;this.focusTrap.updateContainerElements([e,...t])}}},beforeMount(){window.addEventListener("keydown",this.handleKeydown)},beforeDestroy(){window.removeEventListener("keydown",this.handleKeydown),this.mc.stop()},mounted(){!this.name&&!this.labelId&&st.util.warn("[NcModal] You need either set the name or set a `labelId` for accessibility."),this.useFocusTrap(),this.mc=qv(this.$refs.mask,{onSwipeEnd:this.handleSwipe}),this.container&&(this.container==="body"?document.body.insertBefore(this.$el,document.body.lastChild):document.querySelector(this.container).appendChild(this.$el))},destroyed(){this.clearFocusTrap(),this.$el.remove()},methods:{t:Je,previous(t){this.hasPrevious&&(t&&this.resetSlideshow(),this.$emit("previous",t))},next(t){this.hasNext&&(t&&this.resetSlideshow(),this.$emit("next",t))},close(t){this.canClose&&(this.internalShow=!1,this.$emit("update:show",!1),setTimeout(()=>{this.$emit("close",t)},300))},handleClickModalWrapper(t){this.closeOnClickOutside&&this.close(t)},handleKeydown(t){if(t.key==="Escape"){const n=$o();return n.length>0&&n[n.length-1]!==this.focusTrap?void 0:this.close(t)}const e={ArrowLeft:this.previous,ArrowRight:this.next};if(e[t.key])return document.activeElement&&!this.$el.contains(document.activeElement)?void 0:e[t.key](t)},handleSwipe(t,e){this.enableSwipe&&(e==="left"?this.next(t):e==="right"&&this.previous(t))},togglePlayPause(){this.playing=!this.playing,this.playing?this.handleSlideshow():this.clearSlideshowTimeout()},resetSlideshow(){this.playing=!this.playing,this.clearSlideshowTimeout(),this.$nextTick(function(){this.togglePlayPause()})},handleSlideshow(){this.playing=!0,this.hasNext?this.slideshowTimeout=new qy(()=>{this.next(),this.handleSlideshow()},this.slideshowDelay):(this.playing=!1,this.clearSlideshowTimeout())},clearSlideshowTimeout(){this.slideshowTimeout&&this.slideshowTimeout.clear()},async useFocusTrap(){if(!this.showModal||this.focusTrap)return;const t=this.$refs.mask;await this.$nextTick();const e={allowOutsideClick:!0,fallbackFocus:t,trapStack:$o(),escapeDeactivates:!1,setReturnFocus:this.setReturnFocus};this.externalFocusTrapStack=[...e.trapStack];for(const n of this.externalFocusTrapStack)n.deactivate();this.focusTrap=pp([t,...this.additionalTrapElements],e),this.focusTrap.activate()},clearFocusTrap(){var t;if(this.focusTrap){(t=this.focusTrap)==null||t.deactivate(),this.focusTrap=null;for(const e of this.externalFocusTrapStack)e.activate();this.externalFocusTrapStack=[]}}}};var cw=function(){var t=this,e=t._self._c;return e("transition",{attrs:{name:"fade",appear:""},on:{"after-enter":t.useFocusTrap,"before-leave":t.clearFocusTrap}},[e("div",{directives:[{name:"show",rawName:"v-show",value:t.showModal,expression:"showModal"}],ref:"mask",staticClass:"modal-mask",class:{"modal-mask--dark":t.dark||!t.closeButtonContained||t.hasPrevious||t.hasNext},style:t.cssVariables,attrs:{role:"dialog","aria-modal":"true","aria-labelledby":t.modalLabelId,"aria-describedby":"modal-description-"+t.randId,tabindex:"-1"}},[e("transition",{attrs:{name:"fade-visibility",appear:""}},[e("div",{staticClass:"modal-header",attrs:{"data-theme-dark":""}},[t.name.trim()!==""?e("h2",{staticClass:"modal-header__name",attrs:{id:"modal-name-"+t.randId}},[t._v(" "+t._s(t.name)+" ")]):t._e(),e("div",{staticClass:"icons-menu"},[t.hasNext&&t.enableSlideshow?e("button",{directives:[{name:"tooltip",rawName:"v-tooltip.auto",value:t.playPauseName,expression:"playPauseName",modifiers:{auto:!0}}],staticClass:"play-pause-icons",class:{"play-pause-icons--paused":t.slideshowPaused},attrs:{type:"button"},on:{click:t.togglePlayPause}},[t.playing?e("Pause",{staticClass:"play-pause-icons__pause",attrs:{size:t.iconSize}}):e("Play",{staticClass:"play-pause-icons__play",attrs:{size:t.iconSize}}),e("span",{staticClass:"hidden-visually"},[t._v(" "+t._s(t.playPauseName)+" ")]),t.playing?e("svg",{staticClass:"progress-ring",attrs:{height:"50",width:"50"}},[e("circle",{staticClass:"progress-ring__circle",attrs:{stroke:"white","stroke-width":"2",fill:"transparent",r:"15",cx:"25",cy:"25"}})]):t._e()],1):t._e(),e("NcActions",{staticClass:"header-actions",attrs:{inline:t.inlineActions}},[t._t("actions")],2),t.canClose&&!t.closeButtonContained?e("NcButton",{staticClass:"header-close",attrs:{"aria-label":t.closeButtonAriaLabel,type:"tertiary"},on:{click:t.close},scopedSlots:t._u([{key:"icon",fn:function(){return[e("Close",{attrs:{size:t.iconSize}})]},proxy:!0}],null,!1,1841713362)}):t._e()],1)])]),e("transition",{attrs:{name:t.modalTransitionName,appear:""}},[e("div",{directives:[{name:"show",rawName:"v-show",value:t.showModal,expression:"showModal"}],staticClass:"modal-wrapper",class:["modal-wrapper--".concat(t.size),{"modal-wrapper--spread-navigation":t.spreadNavigation}],on:{mousedown:function(n){return n.target!==n.currentTarget?null:t.handleClickModalWrapper.apply(null,arguments)}}},[e("transition",{attrs:{name:"fade-visibility",appear:""}},[e("NcButton",{directives:[{name:"show",rawName:"v-show",value:t.hasPrevious,expression:"hasPrevious"}],staticClass:"prev",attrs:{type:"tertiary-no-background","aria-label":t.prevButtonAriaLabel},on:{click:t.previous},scopedSlots:t._u([{key:"icon",fn:function(){return[e("ChevronLeft",{attrs:{size:40}})]},proxy:!0}])})],1),e("div",{staticClass:"modal-container",attrs:{id:"modal-description-"+t.randId}},[t.canClose&&t.closeButtonContained?e("NcButton",{staticClass:"modal-container__close",attrs:{type:"tertiary","aria-label":t.closeButtonAriaLabel},on:{click:t.close},scopedSlots:t._u([{key:"icon",fn:function(){return[e("Close",{attrs:{size:20}})]},proxy:!0}],null,!1,2121748766)}):t._e(),e("div",{staticClass:"modal-container__content"},[t._t("default")],2)],1),e("transition",{attrs:{name:"fade-visibility",appear:""}},[e("NcButton",{directives:[{name:"show",rawName:"v-show",value:t.hasNext,expression:"hasNext"}],staticClass:"next",attrs:{type:"tertiary-no-background","aria-label":t.nextButtonAriaLabel},on:{click:t.next},scopedSlots:t._u([{key:"icon",fn:function(){return[e("ChevronRight",{attrs:{size:40}})]},proxy:!0}])})],1)],1)])],1)])},pw=[],fw=Jt(uw,cw,pw,!1,null,"0d4052a3",null,null);const Wp=fw.exports;Bv(Wp);const na=1024,qp=na/2,Fo=t=>document.documentElement.clientWidth{Xp.value=Fo(na),Kp.value=Fo(qp)},{passive:!0});function Zp(){return Ns(Kp)}Ns(Xp);function Yp(t,e){return function(){return t.apply(e,arguments)}}const{toString:dw}=Object.prototype,{getPrototypeOf:ra}=Object,ti=(t=>e=>{const n=dw.call(e);return t[n]||(t[n]=n.slice(8,-1).toLowerCase())})(Object.create(null)),ge=t=>(t=t.toLowerCase(),e=>ti(e)===t),ei=t=>e=>typeof e===t,{isArray:qn}=Array,br=ei("undefined");function hw(t){return t!==null&&!br(t)&&t.constructor!==null&&!br(t.constructor)&&Kt(t.constructor.isBuffer)&&t.constructor.isBuffer(t)}const Jp=ge("ArrayBuffer");function mw(t){let e;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?e=ArrayBuffer.isView(t):e=t&&t.buffer&&Jp(t.buffer),e}const vw=ei("string"),Kt=ei("function"),Qp=ei("number"),ni=t=>t!==null&&typeof t=="object",gw=t=>t===!0||t===!1,ao=t=>{if(ti(t)!=="object")return!1;const e=ra(t);return(e===null||e===Object.prototype||Object.getPrototypeOf(e)===null)&&!(Symbol.toStringTag in t)&&!(Symbol.iterator in t)},yw=ge("Date"),ww=ge("File"),_w=ge("Blob"),bw=ge("FileList"),xw=t=>ni(t)&&Kt(t.pipe),Ew=t=>{let e;return t&&(typeof FormData=="function"&&t instanceof FormData||Kt(t.append)&&((e=ti(t))==="formdata"||e==="object"&&Kt(t.toString)&&t.toString()==="[object FormData]"))},Cw=ge("URLSearchParams"),Sw=t=>t.trim?t.trim():t.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function Nr(t,e,{allOwnKeys:n=!1}={}){if(t===null||typeof t>"u")return;let r,o;if(typeof t!="object"&&(t=[t]),qn(t))for(r=0,o=t.length;r0;)if(o=n[r],e===o.toLowerCase())return o;return null}const ef=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:an,nf=t=>!br(t)&&t!==ef;function hs(){const{caseless:t}=nf(this)&&this||{},e={},n=(r,o)=>{const i=t&&tf(e,o)||o;ao(e[i])&&ao(r)?e[i]=hs(e[i],r):ao(r)?e[i]=hs({},r):qn(r)?e[i]=r.slice():e[i]=r};for(let r=0,o=arguments.length;r(Nr(e,(o,i)=>{n&&Kt(o)?t[i]=Yp(o,n):t[i]=o},{allOwnKeys:r}),t),Tw=t=>(t.charCodeAt(0)===65279&&(t=t.slice(1)),t),Nw=(t,e,n,r)=>{t.prototype=Object.create(e.prototype,r),t.prototype.constructor=t,Object.defineProperty(t,"super",{value:e.prototype}),n&&Object.assign(t.prototype,n)},Pw=(t,e,n,r)=>{let o,i,s;const l={};if(e=e||{},t==null)return e;do{for(o=Object.getOwnPropertyNames(t),i=o.length;i-- >0;)s=o[i],(!r||r(s,t,e))&&!l[s]&&(e[s]=t[s],l[s]=!0);t=n!==!1&&ra(t)}while(t&&(!n||n(t,e))&&t!==Object.prototype);return e},$w=(t,e,n)=>{t=String(t),(n===void 0||n>t.length)&&(n=t.length),n-=e.length;const r=t.indexOf(e,n);return r!==-1&&r===n},kw=t=>{if(!t)return null;if(qn(t))return t;let e=t.length;if(!Qp(e))return null;const n=new Array(e);for(;e-- >0;)n[e]=t[e];return n},Ow=(t=>e=>t&&e instanceof t)(typeof Uint8Array<"u"&&ra(Uint8Array)),Lw=(t,e)=>{const n=(t&&t[Symbol.iterator]).call(t);let r;for(;(r=n.next())&&!r.done;){const o=r.value;e.call(t,o[0],o[1])}},Rw=(t,e)=>{let n;const r=[];for(;(n=t.exec(e))!==null;)r.push(n);return r},Iw=ge("HTMLFormElement"),Fw=t=>t.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(e,n,r){return n.toUpperCase()+r}),mu=(({hasOwnProperty:t})=>(e,n)=>t.call(e,n))(Object.prototype),Bw=ge("RegExp"),rf=(t,e)=>{const n=Object.getOwnPropertyDescriptors(t),r={};Nr(n,(o,i)=>{let s;(s=e(o,i,t))!==!1&&(r[i]=s||o)}),Object.defineProperties(t,r)},Dw=t=>{rf(t,(e,n)=>{if(Kt(t)&&["arguments","caller","callee"].indexOf(n)!==-1)return!1;const r=t[n];if(Kt(r)){if(e.enumerable=!1,"writable"in e){e.writable=!1;return}e.set||(e.set=()=>{throw Error("Can not rewrite read-only method '"+n+"'")})}})},Mw=(t,e)=>{const n={},r=o=>{o.forEach(i=>{n[i]=!0})};return qn(t)?r(t):r(String(t).split(e)),n},zw=()=>{},jw=(t,e)=>(t=+t,Number.isFinite(t)?t:e),Ai="abcdefghijklmnopqrstuvwxyz",vu="0123456789",of={DIGIT:vu,ALPHA:Ai,ALPHA_DIGIT:Ai+Ai.toUpperCase()+vu},Uw=(t=16,e=of.ALPHA_DIGIT)=>{let n="";const{length:r}=e;for(;t--;)n+=e[Math.random()*r|0];return n};function Hw(t){return!!(t&&Kt(t.append)&&t[Symbol.toStringTag]==="FormData"&&t[Symbol.iterator])}const Vw=t=>{const e=new Array(10),n=(r,o)=>{if(ni(r)){if(e.indexOf(r)>=0)return;if(!("toJSON"in r)){e[o]=r;const i=qn(r)?[]:{};return Nr(r,(s,l)=>{const u=n(s,o+1);!br(u)&&(i[l]=u)}),e[o]=void 0,i}}return r};return n(t,0)},Gw=ge("AsyncFunction"),Ww=t=>t&&(ni(t)||Kt(t))&&Kt(t.then)&&Kt(t.catch),N={isArray:qn,isArrayBuffer:Jp,isBuffer:hw,isFormData:Ew,isArrayBufferView:mw,isString:vw,isNumber:Qp,isBoolean:gw,isObject:ni,isPlainObject:ao,isUndefined:br,isDate:yw,isFile:ww,isBlob:_w,isRegExp:Bw,isFunction:Kt,isStream:xw,isURLSearchParams:Cw,isTypedArray:Ow,isFileList:bw,forEach:Nr,merge:hs,extend:Aw,trim:Sw,stripBOM:Tw,inherits:Nw,toFlatObject:Pw,kindOf:ti,kindOfTest:ge,endsWith:$w,toArray:kw,forEachEntry:Lw,matchAll:Rw,isHTMLForm:Iw,hasOwnProperty:mu,hasOwnProp:mu,reduceDescriptors:rf,freezeMethods:Dw,toObjectSet:Mw,toCamelCase:Fw,noop:zw,toFiniteNumber:jw,findKey:tf,global:ef,isContextDefined:nf,ALPHABET:of,generateString:Uw,isSpecCompliantForm:Hw,toJSONObject:Vw,isAsyncFn:Gw,isThenable:Ww};var sf={},lo={};lo.byteLength=Kw,lo.toByteArray=Yw,lo.fromByteArray=t_;for(var he=[],qt=[],qw=typeof Uint8Array<"u"?Uint8Array:Array,Ti="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",xn=0,Xw=Ti.length;xn0)throw new Error("Invalid string. Length must be a multiple of 4");var n=t.indexOf("=");n===-1&&(n=e);var r=n===e?0:4-n%4;return[n,r]}function Kw(t){var e=af(t),n=e[0],r=e[1];return(n+r)*3/4-r}function Zw(t,e,n){return(e+n)*3/4-n}function Yw(t){var e,n=af(t),r=n[0],o=n[1],i=new qw(Zw(t,r,o)),s=0,l=o>0?r-4:r,u;for(u=0;u>16&255,i[s++]=e>>8&255,i[s++]=e&255;return o===2&&(e=qt[t.charCodeAt(u)]<<2|qt[t.charCodeAt(u+1)]>>4,i[s++]=e&255),o===1&&(e=qt[t.charCodeAt(u)]<<10|qt[t.charCodeAt(u+1)]<<4|qt[t.charCodeAt(u+2)]>>2,i[s++]=e>>8&255,i[s++]=e&255),i}function Jw(t){return he[t>>18&63]+he[t>>12&63]+he[t>>6&63]+he[t&63]}function Qw(t,e,n){for(var r,o=[],i=e;il?l:s+i));return r===1?(e=t[n-1],o.push(he[e>>2]+he[e<<4&63]+"==")):r===2&&(e=(t[n-2]<<8)+t[n-1],o.push(he[e>>10]+he[e>>4&63]+he[e<<2&63]+"=")),o.join("")}var ms={};ms.read=function(t,e,n,r,o){var i,s,l=o*8-r-1,u=(1<>1,p=-7,h=n?o-1:0,y=n?-1:1,g=t[e+h];for(h+=y,i=g&(1<<-p)-1,g>>=-p,p+=l;p>0;i=i*256+t[e+h],h+=y,p-=8);for(s=i&(1<<-p)-1,i>>=-p,p+=r;p>0;s=s*256+t[e+h],h+=y,p-=8);if(i===0)i=1-f;else{if(i===u)return s?NaN:(g?-1:1)*(1/0);s=s+Math.pow(2,r),i=i-f}return(g?-1:1)*s*Math.pow(2,i-r)},ms.write=function(t,e,n,r,o,i){var s,l,u,f=i*8-o-1,p=(1<>1,y=o===23?Math.pow(2,-24)-Math.pow(2,-77):0,g=r?0:i-1,b=r?1:-1,$=e<0||e===0&&1/e<0?1:0;for(e=Math.abs(e),isNaN(e)||e===1/0?(l=isNaN(e)?1:0,s=p):(s=Math.floor(Math.log(e)/Math.LN2),e*(u=Math.pow(2,-s))<1&&(s--,u*=2),s+h>=1?e+=y/u:e+=y*Math.pow(2,1-h),e*u>=2&&(s++,u/=2),s+h>=p?(l=0,s=p):s+h>=1?(l=(e*u-1)*Math.pow(2,o),s=s+h):(l=e*Math.pow(2,h-1)*Math.pow(2,o),s=0));o>=8;t[n+g]=l&255,g+=b,l/=256,o-=8);for(s=s<0;t[n+g]=s&255,g+=b,s/=256,f-=8);t[n+g-b]|=$*128};(function(t){const e=lo,n=ms,r=typeof Symbol=="function"&&typeof Symbol.for=="function"?Symbol.for("nodejs.util.inspect.custom"):null;t.Buffer=p,t.SlowBuffer=et,t.INSPECT_MAX_BYTES=50;const o=2147483647;t.kMaxLength=o;const{Uint8Array:i,ArrayBuffer:s,SharedArrayBuffer:l}=globalThis;p.TYPED_ARRAY_SUPPORT=u(),!p.TYPED_ARRAY_SUPPORT&&typeof console<"u"&&typeof console.error=="function"&&console.error("This browser lacks typed array (Uint8Array) support which is required by `buffer` v5.x. Use `buffer` v4.x if you require old browser support.");function u(){try{const a=new i(1),c={foo:function(){return 42}};return Object.setPrototypeOf(c,i.prototype),Object.setPrototypeOf(a,c),a.foo()===42}catch{return!1}}Object.defineProperty(p.prototype,"parent",{enumerable:!0,get:function(){if(p.isBuffer(this))return this.buffer}}),Object.defineProperty(p.prototype,"offset",{enumerable:!0,get:function(){if(p.isBuffer(this))return this.byteOffset}});function f(a){if(a>o)throw new RangeError('The value "'+a+'" is invalid for option "size"');const c=new i(a);return Object.setPrototypeOf(c,p.prototype),c}function p(a,c,d){if(typeof a=="number"){if(typeof c=="string")throw new TypeError('The "string" argument must be of type string. Received type number');return b(a)}return h(a,c,d)}p.poolSize=8192;function h(a,c,d){if(typeof a=="string")return $(a,c);if(s.isView(a))return B(a);if(a==null)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof a);if(At(a,s)||a&&At(a.buffer,s)||typeof l<"u"&&(At(a,l)||a&&At(a.buffer,l)))return R(a,c,d);if(typeof a=="number")throw new TypeError('The "value" argument must not be of type number. Received type number');const v=a.valueOf&&a.valueOf();if(v!=null&&v!==a)return p.from(v,c,d);const x=j(a);if(x)return x;if(typeof Symbol<"u"&&Symbol.toPrimitive!=null&&typeof a[Symbol.toPrimitive]=="function")return p.from(a[Symbol.toPrimitive]("string"),c,d);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof a)}p.from=function(a,c,d){return h(a,c,d)},Object.setPrototypeOf(p.prototype,i.prototype),Object.setPrototypeOf(p,i);function y(a){if(typeof a!="number")throw new TypeError('"size" argument must be of type number');if(a<0)throw new RangeError('The value "'+a+'" is invalid for option "size"')}function g(a,c,d){return y(a),a<=0?f(a):c!==void 0?typeof d=="string"?f(a).fill(c,d):f(a).fill(c):f(a)}p.alloc=function(a,c,d){return g(a,c,d)};function b(a){return y(a),f(a<0?0:q(a)|0)}p.allocUnsafe=function(a){return b(a)},p.allocUnsafeSlow=function(a){return b(a)};function $(a,c){if((typeof c!="string"||c==="")&&(c="utf8"),!p.isEncoding(c))throw new TypeError("Unknown encoding: "+c);const d=ft(a,c)|0;let v=f(d);const x=v.write(a,c);return x!==d&&(v=v.slice(0,x)),v}function P(a){const c=a.length<0?0:q(a.length)|0,d=f(c);for(let v=0;v=o)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+o.toString(16)+" bytes");return a|0}function et(a){return+a!=a&&(a=0),p.alloc(+a)}p.isBuffer=function(a){return a!=null&&a._isBuffer===!0&&a!==p.prototype},p.compare=function(a,c){if(At(a,i)&&(a=p.from(a,a.offset,a.byteLength)),At(c,i)&&(c=p.from(c,c.offset,c.byteLength)),!p.isBuffer(a)||!p.isBuffer(c))throw new TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array');if(a===c)return 0;let d=a.length,v=c.length;for(let x=0,A=Math.min(d,v);xv.length?(p.isBuffer(A)||(A=p.from(A)),A.copy(v,x)):i.prototype.set.call(v,A,x);else if(p.isBuffer(A))A.copy(v,x);else throw new TypeError('"list" argument must be an Array of Buffers');x+=A.length}return v};function ft(a,c){if(p.isBuffer(a))return a.length;if(s.isView(a)||At(a,s))return a.byteLength;if(typeof a!="string")throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof a);const d=a.length,v=arguments.length>2&&arguments[2]===!0;if(!v&&d===0)return 0;let x=!1;for(;;)switch(c){case"ascii":case"latin1":case"binary":return d;case"utf8":case"utf-8":return yn(a).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return d*2;case"hex":return d>>>1;case"base64":return Oe(a).length;default:if(x)return v?-1:yn(a).length;c=(""+c).toLowerCase(),x=!0}}p.byteLength=ft;function Q(a,c,d){let v=!1;if((c===void 0||c<0)&&(c=0),c>this.length||((d===void 0||d>this.length)&&(d=this.length),d<=0)||(d>>>=0,c>>>=0,d<=c))return"";for(a||(a="utf8");;)switch(a){case"hex":return W(this,c,d);case"utf8":case"utf-8":return D(this,c,d);case"ascii":return M(this,c,d);case"latin1":case"binary":return X(this,c,d);case"base64":return F(this,c,d);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return ot(this,c,d);default:if(v)throw new TypeError("Unknown encoding: "+a);a=(a+"").toLowerCase(),v=!0}}p.prototype._isBuffer=!0;function U(a,c,d){const v=a[c];a[c]=a[d],a[d]=v}p.prototype.swap16=function(){const a=this.length;if(a%2!==0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(let c=0;cc&&(a+=" ... "),""},r&&(p.prototype[r]=p.prototype.inspect),p.prototype.compare=function(a,c,d,v,x){if(At(a,i)&&(a=p.from(a,a.offset,a.byteLength)),!p.isBuffer(a))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof a);if(c===void 0&&(c=0),d===void 0&&(d=a?a.length:0),v===void 0&&(v=0),x===void 0&&(x=this.length),c<0||d>a.length||v<0||x>this.length)throw new RangeError("out of range index");if(v>=x&&c>=d)return 0;if(v>=x)return-1;if(c>=d)return 1;if(c>>>=0,d>>>=0,v>>>=0,x>>>=0,this===a)return 0;let A=x-v,k=d-c;const ut=Math.min(A,k),vt=this.slice(v,x),dt=a.slice(c,d);for(let ct=0;ct2147483647?d=2147483647:d<-2147483648&&(d=-2147483648),d=+d,wn(d)&&(d=x?0:a.length-1),d<0&&(d=a.length+d),d>=a.length){if(x)return-1;d=a.length-1}else if(d<0)if(x)d=0;else return-1;if(typeof c=="string"&&(c=p.from(c,v)),p.isBuffer(c))return c.length===0?-1:C(a,c,d,v,x);if(typeof c=="number")return c=c&255,typeof i.prototype.indexOf=="function"?x?i.prototype.indexOf.call(a,c,d):i.prototype.lastIndexOf.call(a,c,d):C(a,[c],d,v,x);throw new TypeError("val must be string, number or Buffer")}function C(a,c,d,v,x){let A=1,k=a.length,ut=c.length;if(v!==void 0&&(v=String(v).toLowerCase(),v==="ucs2"||v==="ucs-2"||v==="utf16le"||v==="utf-16le")){if(a.length<2||c.length<2)return-1;A=2,k/=2,ut/=2,d/=2}function vt(ct,Z){return A===1?ct[Z]:ct.readUInt16BE(Z*A)}let dt;if(x){let ct=-1;for(dt=d;dtk&&(d=k-ut),dt=d;dt>=0;dt--){let ct=!0;for(let Z=0;Zx&&(v=x)):v=x;const A=c.length;v>A/2&&(v=A/2);let k;for(k=0;k>>0,isFinite(d)?(d=d>>>0,v===void 0&&(v="utf8")):(v=d,d=void 0);else throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");const x=this.length-c;if((d===void 0||d>x)&&(d=x),a.length>0&&(d<0||c<0)||c>this.length)throw new RangeError("Attempt to write outside buffer bounds");v||(v="utf8");let A=!1;for(;;)switch(v){case"hex":return I(this,a,c,d);case"utf8":case"utf-8":return w(this,a,c,d);case"ascii":case"latin1":case"binary":return _(this,a,c,d);case"base64":return S(this,a,c,d);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return O(this,a,c,d);default:if(A)throw new TypeError("Unknown encoding: "+v);v=(""+v).toLowerCase(),A=!0}},p.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};function F(a,c,d){return c===0&&d===a.length?e.fromByteArray(a):e.fromByteArray(a.slice(c,d))}function D(a,c,d){d=Math.min(a.length,d);const v=[];let x=c;for(;x239?4:A>223?3:A>191?2:1;if(x+ut<=d){let vt,dt,ct,Z;switch(ut){case 1:A<128&&(k=A);break;case 2:vt=a[x+1],(vt&192)===128&&(Z=(A&31)<<6|vt&63,Z>127&&(k=Z));break;case 3:vt=a[x+1],dt=a[x+2],(vt&192)===128&&(dt&192)===128&&(Z=(A&15)<<12|(vt&63)<<6|dt&63,Z>2047&&(Z<55296||Z>57343)&&(k=Z));break;case 4:vt=a[x+1],dt=a[x+2],ct=a[x+3],(vt&192)===128&&(dt&192)===128&&(ct&192)===128&&(Z=(A&15)<<18|(vt&63)<<12|(dt&63)<<6|ct&63,Z>65535&&Z<1114112&&(k=Z))}}k===null?(k=65533,ut=1):k>65535&&(k-=65536,v.push(k>>>10&1023|55296),k=56320|k&1023),v.push(k),x+=ut}return G(v)}const V=4096;function G(a){const c=a.length;if(c<=V)return String.fromCharCode.apply(String,a);let d="",v=0;for(;vv)&&(d=v);let x="";for(let A=c;Ad&&(a=d),c<0?(c+=d,c<0&&(c=0)):c>d&&(c=d),cd)throw new RangeError("Trying to access beyond buffer length")}p.prototype.readUintLE=p.prototype.readUIntLE=function(a,c,d){a=a>>>0,c=c>>>0,d||H(a,c,this.length);let v=this[a],x=1,A=0;for(;++A>>0,c=c>>>0,d||H(a,c,this.length);let v=this[a+--c],x=1;for(;c>0&&(x*=256);)v+=this[a+--c]*x;return v},p.prototype.readUint8=p.prototype.readUInt8=function(a,c){return a=a>>>0,c||H(a,1,this.length),this[a]},p.prototype.readUint16LE=p.prototype.readUInt16LE=function(a,c){return a=a>>>0,c||H(a,2,this.length),this[a]|this[a+1]<<8},p.prototype.readUint16BE=p.prototype.readUInt16BE=function(a,c){return a=a>>>0,c||H(a,2,this.length),this[a]<<8|this[a+1]},p.prototype.readUint32LE=p.prototype.readUInt32LE=function(a,c){return a=a>>>0,c||H(a,4,this.length),(this[a]|this[a+1]<<8|this[a+2]<<16)+this[a+3]*16777216},p.prototype.readUint32BE=p.prototype.readUInt32BE=function(a,c){return a=a>>>0,c||H(a,4,this.length),this[a]*16777216+(this[a+1]<<16|this[a+2]<<8|this[a+3])},p.prototype.readBigUInt64LE=ne(function(a){a=a>>>0,Ut(a,"offset");const c=this[a],d=this[a+7];(c===void 0||d===void 0)&&le(a,this.length-8);const v=c+this[++a]*2**8+this[++a]*2**16+this[++a]*2**24,x=this[++a]+this[++a]*2**8+this[++a]*2**16+d*2**24;return BigInt(v)+(BigInt(x)<>>0,Ut(a,"offset");const c=this[a],d=this[a+7];(c===void 0||d===void 0)&&le(a,this.length-8);const v=c*2**24+this[++a]*2**16+this[++a]*2**8+this[++a],x=this[++a]*2**24+this[++a]*2**16+this[++a]*2**8+d;return(BigInt(v)<>>0,c=c>>>0,d||H(a,c,this.length);let v=this[a],x=1,A=0;for(;++A=x&&(v-=Math.pow(2,8*c)),v},p.prototype.readIntBE=function(a,c,d){a=a>>>0,c=c>>>0,d||H(a,c,this.length);let v=c,x=1,A=this[a+--v];for(;v>0&&(x*=256);)A+=this[a+--v]*x;return x*=128,A>=x&&(A-=Math.pow(2,8*c)),A},p.prototype.readInt8=function(a,c){return a=a>>>0,c||H(a,1,this.length),this[a]&128?(255-this[a]+1)*-1:this[a]},p.prototype.readInt16LE=function(a,c){a=a>>>0,c||H(a,2,this.length);const d=this[a]|this[a+1]<<8;return d&32768?d|4294901760:d},p.prototype.readInt16BE=function(a,c){a=a>>>0,c||H(a,2,this.length);const d=this[a+1]|this[a]<<8;return d&32768?d|4294901760:d},p.prototype.readInt32LE=function(a,c){return a=a>>>0,c||H(a,4,this.length),this[a]|this[a+1]<<8|this[a+2]<<16|this[a+3]<<24},p.prototype.readInt32BE=function(a,c){return a=a>>>0,c||H(a,4,this.length),this[a]<<24|this[a+1]<<16|this[a+2]<<8|this[a+3]},p.prototype.readBigInt64LE=ne(function(a){a=a>>>0,Ut(a,"offset");const c=this[a],d=this[a+7];(c===void 0||d===void 0)&&le(a,this.length-8);const v=this[a+4]+this[a+5]*2**8+this[a+6]*2**16+(d<<24);return(BigInt(v)<>>0,Ut(a,"offset");const c=this[a],d=this[a+7];(c===void 0||d===void 0)&&le(a,this.length-8);const v=(c<<24)+this[++a]*2**16+this[++a]*2**8+this[++a];return(BigInt(v)<>>0,c||H(a,4,this.length),n.read(this,a,!0,23,4)},p.prototype.readFloatBE=function(a,c){return a=a>>>0,c||H(a,4,this.length),n.read(this,a,!1,23,4)},p.prototype.readDoubleLE=function(a,c){return a=a>>>0,c||H(a,8,this.length),n.read(this,a,!0,52,8)},p.prototype.readDoubleBE=function(a,c){return a=a>>>0,c||H(a,8,this.length),n.read(this,a,!1,52,8)};function it(a,c,d,v,x,A){if(!p.isBuffer(a))throw new TypeError('"buffer" argument must be a Buffer instance');if(c>x||ca.length)throw new RangeError("Index out of range")}p.prototype.writeUintLE=p.prototype.writeUIntLE=function(a,c,d,v){if(a=+a,c=c>>>0,d=d>>>0,!v){const k=Math.pow(2,8*d)-1;it(this,a,c,d,k,0)}let x=1,A=0;for(this[c]=a&255;++A>>0,d=d>>>0,!v){const k=Math.pow(2,8*d)-1;it(this,a,c,d,k,0)}let x=d-1,A=1;for(this[c+x]=a&255;--x>=0&&(A*=256);)this[c+x]=a/A&255;return c+d},p.prototype.writeUint8=p.prototype.writeUInt8=function(a,c,d){return a=+a,c=c>>>0,d||it(this,a,c,1,255,0),this[c]=a&255,c+1},p.prototype.writeUint16LE=p.prototype.writeUInt16LE=function(a,c,d){return a=+a,c=c>>>0,d||it(this,a,c,2,65535,0),this[c]=a&255,this[c+1]=a>>>8,c+2},p.prototype.writeUint16BE=p.prototype.writeUInt16BE=function(a,c,d){return a=+a,c=c>>>0,d||it(this,a,c,2,65535,0),this[c]=a>>>8,this[c+1]=a&255,c+2},p.prototype.writeUint32LE=p.prototype.writeUInt32LE=function(a,c,d){return a=+a,c=c>>>0,d||it(this,a,c,4,4294967295,0),this[c+3]=a>>>24,this[c+2]=a>>>16,this[c+1]=a>>>8,this[c]=a&255,c+4},p.prototype.writeUint32BE=p.prototype.writeUInt32BE=function(a,c,d){return a=+a,c=c>>>0,d||it(this,a,c,4,4294967295,0),this[c]=a>>>24,this[c+1]=a>>>16,this[c+2]=a>>>8,this[c+3]=a&255,c+4};function St(a,c,d,v,x){vn(c,v,x,a,d,7);let A=Number(c&BigInt(4294967295));a[d++]=A,A=A>>8,a[d++]=A,A=A>>8,a[d++]=A,A=A>>8,a[d++]=A;let k=Number(c>>BigInt(32)&BigInt(4294967295));return a[d++]=k,k=k>>8,a[d++]=k,k=k>>8,a[d++]=k,k=k>>8,a[d++]=k,d}function Tt(a,c,d,v,x){vn(c,v,x,a,d,7);let A=Number(c&BigInt(4294967295));a[d+7]=A,A=A>>8,a[d+6]=A,A=A>>8,a[d+5]=A,A=A>>8,a[d+4]=A;let k=Number(c>>BigInt(32)&BigInt(4294967295));return a[d+3]=k,k=k>>8,a[d+2]=k,k=k>>8,a[d+1]=k,k=k>>8,a[d]=k,d+8}p.prototype.writeBigUInt64LE=ne(function(a,c=0){return St(this,a,c,BigInt(0),BigInt("0xffffffffffffffff"))}),p.prototype.writeBigUInt64BE=ne(function(a,c=0){return Tt(this,a,c,BigInt(0),BigInt("0xffffffffffffffff"))}),p.prototype.writeIntLE=function(a,c,d,v){if(a=+a,c=c>>>0,!v){const ut=Math.pow(2,8*d-1);it(this,a,c,d,ut-1,-ut)}let x=0,A=1,k=0;for(this[c]=a&255;++x>0)-k&255;return c+d},p.prototype.writeIntBE=function(a,c,d,v){if(a=+a,c=c>>>0,!v){const ut=Math.pow(2,8*d-1);it(this,a,c,d,ut-1,-ut)}let x=d-1,A=1,k=0;for(this[c+x]=a&255;--x>=0&&(A*=256);)a<0&&k===0&&this[c+x+1]!==0&&(k=1),this[c+x]=(a/A>>0)-k&255;return c+d},p.prototype.writeInt8=function(a,c,d){return a=+a,c=c>>>0,d||it(this,a,c,1,127,-128),a<0&&(a=255+a+1),this[c]=a&255,c+1},p.prototype.writeInt16LE=function(a,c,d){return a=+a,c=c>>>0,d||it(this,a,c,2,32767,-32768),this[c]=a&255,this[c+1]=a>>>8,c+2},p.prototype.writeInt16BE=function(a,c,d){return a=+a,c=c>>>0,d||it(this,a,c,2,32767,-32768),this[c]=a>>>8,this[c+1]=a&255,c+2},p.prototype.writeInt32LE=function(a,c,d){return a=+a,c=c>>>0,d||it(this,a,c,4,2147483647,-2147483648),this[c]=a&255,this[c+1]=a>>>8,this[c+2]=a>>>16,this[c+3]=a>>>24,c+4},p.prototype.writeInt32BE=function(a,c,d){return a=+a,c=c>>>0,d||it(this,a,c,4,2147483647,-2147483648),a<0&&(a=4294967295+a+1),this[c]=a>>>24,this[c+1]=a>>>16,this[c+2]=a>>>8,this[c+3]=a&255,c+4},p.prototype.writeBigInt64LE=ne(function(a,c=0){return St(this,a,c,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),p.prototype.writeBigInt64BE=ne(function(a,c=0){return Tt(this,a,c,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))});function Gt(a,c,d,v,x,A){if(d+v>a.length)throw new RangeError("Index out of range");if(d<0)throw new RangeError("Index out of range")}function jt(a,c,d,v,x){return c=+c,d=d>>>0,x||Gt(a,c,d,4),n.write(a,c,d,v,23,4),d+4}p.prototype.writeFloatLE=function(a,c,d){return jt(this,a,c,!0,d)},p.prototype.writeFloatBE=function(a,c,d){return jt(this,a,c,!1,d)};function te(a,c,d,v,x){return c=+c,d=d>>>0,x||Gt(a,c,d,8),n.write(a,c,d,v,52,8),d+8}p.prototype.writeDoubleLE=function(a,c,d){return te(this,a,c,!0,d)},p.prototype.writeDoubleBE=function(a,c,d){return te(this,a,c,!1,d)},p.prototype.copy=function(a,c,d,v){if(!p.isBuffer(a))throw new TypeError("argument should be a Buffer");if(d||(d=0),!v&&v!==0&&(v=this.length),c>=a.length&&(c=a.length),c||(c=0),v>0&&v=this.length)throw new RangeError("Index out of range");if(v<0)throw new RangeError("sourceEnd out of bounds");v>this.length&&(v=this.length),a.length-c>>0,d=d===void 0?this.length:d>>>0,a||(a=0);let x;if(typeof a=="number")for(x=c;x2**32?x=ae(String(d)):typeof d=="bigint"&&(x=String(d),(d>BigInt(2)**BigInt(32)||d<-(BigInt(2)**BigInt(32)))&&(x=ae(x)),x+="n"),v+=" It must be ".concat(c,". Received ").concat(x),v},RangeError);function ae(a){let c="",d=a.length;const v=a[0]==="-"?1:0;for(;d>=v+4;d-=3)c="_".concat(a.slice(d-3,d)).concat(c);return"".concat(a.slice(0,d)).concat(c)}function Kn(a,c,d){Ut(c,"offset"),(a[c]===void 0||a[c+d]===void 0)&&le(c,a.length-(d+1))}function vn(a,c,d,v,x,A){if(a>d||a3?c===0||c===BigInt(0)?ut=">= 0".concat(k," and < 2").concat(k," ** ").concat((A+1)*8).concat(k):ut=">= -(2".concat(k," ** ").concat((A+1)*8-1).concat(k,") and < 2 ** ").concat((A+1)*8-1).concat(k):ut=">= ".concat(c).concat(k," and <= ").concat(d).concat(k),new Lt.ERR_OUT_OF_RANGE("value",ut,a)}Kn(v,x,A)}function Ut(a,c){if(typeof a!="number")throw new Lt.ERR_INVALID_ARG_TYPE(c,"number",a)}function le(a,c,d){throw Math.floor(a)!==a?(Ut(a,d),new Lt.ERR_OUT_OF_RANGE(d||"offset","an integer",a)):c<0?new Lt.ERR_BUFFER_OUT_OF_BOUNDS:new Lt.ERR_OUT_OF_RANGE(d||"offset",">= ".concat(d?1:0," and <= ").concat(c),a)}const gn=/[^+/0-9A-Za-z-_]/g;function $r(a){if(a=a.split("=")[0],a=a.trim().replace(gn,""),a.length<2)return"";for(;a.length%4!==0;)a=a+"=";return a}function yn(a,c){c=c||1/0;let d;const v=a.length;let x=null;const A=[];for(let k=0;k55295&&d<57344){if(!x){if(d>56319){(c-=3)>-1&&A.push(239,191,189);continue}else if(k+1===v){(c-=3)>-1&&A.push(239,191,189);continue}x=d;continue}if(d<56320){(c-=3)>-1&&A.push(239,191,189),x=d;continue}d=(x-55296<<10|d-56320)+65536}else x&&(c-=3)>-1&&A.push(239,191,189);if(x=null,d<128){if((c-=1)<0)break;A.push(d)}else if(d<2048){if((c-=2)<0)break;A.push(d>>6|192,d&63|128)}else if(d<65536){if((c-=3)<0)break;A.push(d>>12|224,d>>6&63|128,d&63|128)}else if(d<1114112){if((c-=4)<0)break;A.push(d>>18|240,d>>12&63|128,d>>6&63|128,d&63|128)}else throw new Error("Invalid code point")}return A}function ii(a){const c=[];for(let d=0;d>8,x=d%256,A.push(x),A.push(v);return A}function Oe(a){return e.toByteArray($r(a))}function ee(a,c,d,v){let x;for(x=0;x=c.length||x>=a.length);++x)c[x+d]=a[x];return x}function At(a,c){return a instanceof c||a!=null&&a.constructor!=null&&a.constructor.name!=null&&a.constructor.name===c.name}function wn(a){return a!==a}const kr=function(){const a="0123456789abcdef",c=new Array(256);for(let d=0;d<16;++d){const v=d*16;for(let x=0;x<16;++x)c[v+x]=a[d]+a[x]}return c}();function ne(a){return typeof BigInt>"u"?Yn:a}function Yn(){throw new Error("BigInt not supported")}})(sf);const e_=sf.Buffer;function tt(t,e,n,r,o){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack,this.message=t,this.name="AxiosError",e&&(this.code=e),n&&(this.config=n),r&&(this.request=r),o&&(this.response=o)}N.inherits(tt,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:N.toJSONObject(this.config),code:this.code,status:this.response&&this.response.status?this.response.status:null}}});const gu=tt.prototype,yu={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach(t=>{yu[t]={value:t}}),Object.defineProperties(tt,yu),Object.defineProperty(gu,"isAxiosError",{value:!0}),tt.from=(t,e,n,r,o,i)=>{const s=Object.create(gu);return N.toFlatObject(t,s,function(l){return l!==Error.prototype},l=>l!=="isAxiosError"),tt.call(s,t.message,e,n,r,o),s.cause=t,s.name=t.name,i&&Object.assign(s,i),s};const n_=null;function vs(t){return N.isPlainObject(t)||N.isArray(t)}function lf(t){return N.endsWith(t,"[]")?t.slice(0,-2):t}function wu(t,e,n){return t?t.concat(e).map(function(r,o){return r=lf(r),!n&&o?"["+r+"]":r}).join(n?".":""):e}function r_(t){return N.isArray(t)&&!t.some(vs)}const o_=N.toFlatObject(N,{},null,function(t){return/^is[A-Z]/.test(t)});function ri(t,e,n){if(!N.isObject(t))throw new TypeError("target must be an object");e=e||new FormData,n=N.toFlatObject(n,{metaTokens:!0,dots:!1,indexes:!1},!1,function(g,b){return!N.isUndefined(b[g])});const r=n.metaTokens,o=n.visitor||f,i=n.dots,s=n.indexes,l=(n.Blob||typeof Blob<"u"&&Blob)&&N.isSpecCompliantForm(e);if(!N.isFunction(o))throw new TypeError("visitor must be a function");function u(g){if(g===null)return"";if(N.isDate(g))return g.toISOString();if(!l&&N.isBlob(g))throw new tt("Blob is not supported. Use a Buffer instead.");return N.isArrayBuffer(g)||N.isTypedArray(g)?l&&typeof Blob=="function"?new Blob([g]):e_.from(g):g}function f(g,b,$){let P=g;if(g&&!$&&typeof g=="object"){if(N.endsWith(b,"{}"))b=r?b:b.slice(0,-2),g=JSON.stringify(g);else if(N.isArray(g)&&r_(g)||(N.isFileList(g)||N.endsWith(b,"[]"))&&(P=N.toArray(g)))return b=lf(b),P.forEach(function(B,R){!(N.isUndefined(B)||B===null)&&e.append(s===!0?wu([b],R,i):s===null?b:b+"[]",u(B))}),!1}return vs(g)?!0:(e.append(wu($,b,i),u(g)),!1)}const p=[],h=Object.assign(o_,{defaultVisitor:f,convertValue:u,isVisitable:vs});function y(g,b){if(!N.isUndefined(g)){if(p.indexOf(g)!==-1)throw Error("Circular reference detected in "+b.join("."));p.push(g),N.forEach(g,function($,P){(!(N.isUndefined($)||$===null)&&o.call(e,$,N.isString(P)?P.trim():P,b,h))===!0&&y($,b?b.concat(P):[P])}),p.pop()}}if(!N.isObject(t))throw new TypeError("data must be an object");return y(t),e}function _u(t){const e={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(t).replace(/[!'()~]|%20|%00/g,function(n){return e[n]})}function oa(t,e){this._pairs=[],t&&ri(t,this,e)}const bu=oa.prototype;bu.append=function(t,e){this._pairs.push([t,e])},bu.toString=function(t){const e=t?function(n){return t.call(this,n,_u)}:_u;return this._pairs.map(function(n){return e(n[0])+"="+e(n[1])},"").join("&")};function i_(t){return encodeURIComponent(t).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function uf(t,e,n){if(!e)return t;const r=n&&n.encode||i_,o=n&&n.serialize;let i;if(o?i=o(e,n):i=N.isURLSearchParams(e)?e.toString():new oa(e,n).toString(r),i){const s=t.indexOf("#");s!==-1&&(t=t.slice(0,s)),t+=(t.indexOf("?")===-1?"?":"&")+i}return t}class xu{constructor(){this.handlers=[]}use(e,n,r){return this.handlers.push({fulfilled:e,rejected:n,synchronous:r?r.synchronous:!1,runWhen:r?r.runWhen:null}),this.handlers.length-1}eject(e){this.handlers[e]&&(this.handlers[e]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(e){N.forEach(this.handlers,function(n){n!==null&&e(n)})}}const cf={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},s_=typeof URLSearchParams<"u"?URLSearchParams:oa,a_=typeof FormData<"u"?FormData:null,l_=typeof Blob<"u"?Blob:null,u_={isBrowser:!0,classes:{URLSearchParams:s_,FormData:a_,Blob:l_},protocols:["http","https","file","blob","url","data"]},pf=typeof window<"u"&&typeof document<"u",c_=(t=>pf&&["ReactNative","NativeScript","NS"].indexOf(t)<0)(typeof navigator<"u"&&navigator.product),p_=typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function",f_=Object.freeze(Object.defineProperty({__proto__:null,hasBrowserEnv:pf,hasStandardBrowserEnv:c_,hasStandardBrowserWebWorkerEnv:p_},Symbol.toStringTag,{value:"Module"})),me={...f_,...u_};function d_(t,e){return ri(t,new me.classes.URLSearchParams,Object.assign({visitor:function(n,r,o,i){return me.isNode&&N.isBuffer(n)?(this.append(r,n.toString("base64")),!1):i.defaultVisitor.apply(this,arguments)}},e))}function h_(t){return N.matchAll(/\w+|\[(\w*)]/g,t).map(e=>e[0]==="[]"?"":e[1]||e[0])}function m_(t){const e={},n=Object.keys(t);let r;const o=n.length;let i;for(r=0;r=n.length;return s=!s&&N.isArray(o)?o.length:s,u?(N.hasOwnProp(o,s)?o[s]=[o[s],r]:o[s]=r,!l):((!o[s]||!N.isObject(o[s]))&&(o[s]=[]),e(n,r,o[s],i)&&N.isArray(o[s])&&(o[s]=m_(o[s])),!l)}if(N.isFormData(t)&&N.isFunction(t.entries)){const n={};return N.forEachEntry(t,(r,o)=>{e(h_(r),o,n,0)}),n}return null}function v_(t,e,n){if(N.isString(t))try{return(e||JSON.parse)(t),N.trim(t)}catch(r){if(r.name!=="SyntaxError")throw r}return(n||JSON.stringify)(t)}const ia={transitional:cf,adapter:["xhr","http"],transformRequest:[function(t,e){const n=e.getContentType()||"",r=n.indexOf("application/json")>-1,o=N.isObject(t);if(o&&N.isHTMLForm(t)&&(t=new FormData(t)),N.isFormData(t))return r?JSON.stringify(ff(t)):t;if(N.isArrayBuffer(t)||N.isBuffer(t)||N.isStream(t)||N.isFile(t)||N.isBlob(t))return t;if(N.isArrayBufferView(t))return t.buffer;if(N.isURLSearchParams(t))return e.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),t.toString();let i;if(o){if(n.indexOf("application/x-www-form-urlencoded")>-1)return d_(t,this.formSerializer).toString();if((i=N.isFileList(t))||n.indexOf("multipart/form-data")>-1){const s=this.env&&this.env.FormData;return ri(i?{"files[]":t}:t,s&&new s,this.formSerializer)}}return o||r?(e.setContentType("application/json",!1),v_(t)):t}],transformResponse:[function(t){const e=this.transitional||ia.transitional,n=e&&e.forcedJSONParsing,r=this.responseType==="json";if(t&&N.isString(t)&&(n&&!this.responseType||r)){const o=!(e&&e.silentJSONParsing)&&r;try{return JSON.parse(t)}catch(i){if(o)throw i.name==="SyntaxError"?tt.from(i,tt.ERR_BAD_RESPONSE,this,null,this.response):i}}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:me.classes.FormData,Blob:me.classes.Blob},validateStatus:function(t){return t>=200&&t<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};N.forEach(["delete","get","head","post","put","patch"],t=>{ia.headers[t]={}});const sa=ia,g_=N.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),y_=t=>{const e={};let n,r,o;return t&&t.split("\n").forEach(function(i){o=i.indexOf(":"),n=i.substring(0,o).trim().toLowerCase(),r=i.substring(o+1).trim(),!(!n||e[n]&&g_[n])&&(n==="set-cookie"?e[n]?e[n].push(r):e[n]=[r]:e[n]=e[n]?e[n]+", "+r:r)}),e},Eu=Symbol("internals");function ir(t){return t&&String(t).trim().toLowerCase()}function uo(t){return t===!1||t==null?t:N.isArray(t)?t.map(uo):String(t)}function w_(t){const e=Object.create(null),n=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let r;for(;r=n.exec(t);)e[r[1]]=r[2];return e}const __=t=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(t.trim());function Ni(t,e,n,r,o){if(N.isFunction(r))return r.call(this,e,n);if(o&&(e=n),!!N.isString(e)){if(N.isString(r))return e.indexOf(r)!==-1;if(N.isRegExp(r))return r.test(e)}}function b_(t){return t.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(e,n,r)=>n.toUpperCase()+r)}function x_(t,e){const n=N.toCamelCase(" "+e);["get","set","has"].forEach(r=>{Object.defineProperty(t,r+n,{value:function(o,i,s){return this[r].call(this,e,o,i,s)},configurable:!0})})}class co{constructor(e){e&&this.set(e)}set(e,n,r){const o=this;function i(l,u,f){const p=ir(u);if(!p)throw new Error("header name must be a non-empty string");const h=N.findKey(o,p);(!h||o[h]===void 0||f===!0||f===void 0&&o[h]!==!1)&&(o[h||u]=uo(l))}const s=(l,u)=>N.forEach(l,(f,p)=>i(f,p,u));return N.isPlainObject(e)||e instanceof this.constructor?s(e,n):N.isString(e)&&(e=e.trim())&&!__(e)?s(y_(e),n):e!=null&&i(n,e,r),this}get(e,n){if(e=ir(e),e){const r=N.findKey(this,e);if(r){const o=this[r];if(!n)return o;if(n===!0)return w_(o);if(N.isFunction(n))return n.call(this,o,r);if(N.isRegExp(n))return n.exec(o);throw new TypeError("parser must be boolean|regexp|function")}}}has(e,n){if(e=ir(e),e){const r=N.findKey(this,e);return!!(r&&this[r]!==void 0&&(!n||Ni(this,this[r],r,n)))}return!1}delete(e,n){const r=this;let o=!1;function i(s){if(s=ir(s),s){const l=N.findKey(r,s);l&&(!n||Ni(r,r[l],l,n))&&(delete r[l],o=!0)}}return N.isArray(e)?e.forEach(i):i(e),o}clear(e){const n=Object.keys(this);let r=n.length,o=!1;for(;r--;){const i=n[r];(!e||Ni(this,this[i],i,e,!0))&&(delete this[i],o=!0)}return o}normalize(e){const n=this,r={};return N.forEach(this,(o,i)=>{const s=N.findKey(r,i);if(s){n[s]=uo(o),delete n[i];return}const l=e?b_(i):String(i).trim();l!==i&&delete n[i],n[l]=uo(o),r[l]=!0}),this}concat(...e){return this.constructor.concat(this,...e)}toJSON(e){const n=Object.create(null);return N.forEach(this,(r,o)=>{r!=null&&r!==!1&&(n[o]=e&&N.isArray(r)?r.join(", "):r)}),n}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map(([e,n])=>e+": "+n).join("\n")}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(e){return e instanceof this?e:new this(e)}static concat(e,...n){const r=new this(e);return n.forEach(o=>r.set(o)),r}static accessor(e){const n=(this[Eu]=this[Eu]={accessors:{}}).accessors,r=this.prototype;function o(i){const s=ir(i);n[s]||(x_(r,i),n[s]=!0)}return N.isArray(e)?e.forEach(o):o(e),this}}co.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]),N.reduceDescriptors(co.prototype,({value:t},e)=>{let n=e[0].toUpperCase()+e.slice(1);return{get:()=>t,set(r){this[n]=r}}}),N.freezeMethods(co);const Ce=co;function Pi(t,e){const n=this||sa,r=e||n,o=Ce.from(r.headers);let i=r.data;return N.forEach(t,function(s){i=s.call(n,i,o.normalize(),e?e.status:void 0)}),o.normalize(),i}function df(t){return!!(t&&t.__CANCEL__)}function Pr(t,e,n){tt.call(this,t!=null?t:"canceled",tt.ERR_CANCELED,e,n),this.name="CanceledError"}N.inherits(Pr,tt,{__CANCEL__:!0});function E_(t,e,n){const r=n.config.validateStatus;!n.status||!r||r(n.status)?t(n):e(new tt("Request failed with status code "+n.status,[tt.ERR_BAD_REQUEST,tt.ERR_BAD_RESPONSE][Math.floor(n.status/100)-4],n.config,n.request,n))}const C_=me.hasStandardBrowserEnv?{write(t,e,n,r,o,i){const s=[t+"="+encodeURIComponent(e)];N.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),N.isString(r)&&s.push("path="+r),N.isString(o)&&s.push("domain="+o),i===!0&&s.push("secure"),document.cookie=s.join("; ")},read(t){const e=document.cookie.match(new RegExp("(^|;\\s*)("+t+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove(t){this.write(t,"",Date.now()-864e5)}}:{write(){},read(){return null},remove(){}};function S_(t){return/^([a-z][a-z\d+\-.]*:)?\/\//i.test(t)}function A_(t,e){return e?t.replace(/\/?\/$/,"")+"/"+e.replace(/^\/+/,""):t}function hf(t,e){return t&&!S_(e)?A_(t,e):e}const T_=me.hasStandardBrowserEnv?function(){const t=/(msie|trident)/i.test(navigator.userAgent),e=document.createElement("a");let n;function r(o){let i=o;return t&&(e.setAttribute("href",i),i=e.href),e.setAttribute("href",i),{href:e.href,protocol:e.protocol?e.protocol.replace(/:$/,""):"",host:e.host,search:e.search?e.search.replace(/^\?/,""):"",hash:e.hash?e.hash.replace(/^#/,""):"",hostname:e.hostname,port:e.port,pathname:e.pathname.charAt(0)==="/"?e.pathname:"/"+e.pathname}}return n=r(window.location.href),function(o){const i=N.isString(o)?r(o):o;return i.protocol===n.protocol&&i.host===n.host}}():function(){return function(){return!0}}();function N_(t){const e=/^([-+\w]{1,25})(:?\/\/|:)/.exec(t);return e&&e[1]||""}function P_(t,e){t=t||10;const n=new Array(t),r=new Array(t);let o=0,i=0,s;return e=e!==void 0?e:1e3,function(l){const u=Date.now(),f=r[i];s||(s=u),n[o]=l,r[o]=u;let p=i,h=0;for(;p!==o;)h+=n[p++],p=p%t;if(o=(o+1)%t,o===i&&(i=(i+1)%t),u-s{const i=o.loaded,s=o.lengthComputable?o.total:void 0,l=i-n,u=r(l),f=i<=s;n=i;const p={loaded:i,total:s,progress:s?i/s:void 0,bytes:l,rate:u||void 0,estimated:u&&s&&f?(s-i)/u:void 0,event:o};p[e?"download":"upload"]=!0,t(p)}}const $_=typeof XMLHttpRequest<"u",k_=$_&&function(t){return new Promise(function(e,n){let r=t.data;const o=Ce.from(t.headers).normalize();let{responseType:i,withXSRFToken:s}=t,l;function u(){t.cancelToken&&t.cancelToken.unsubscribe(l),t.signal&&t.signal.removeEventListener("abort",l)}let f;if(N.isFormData(r)){if(me.hasStandardBrowserEnv||me.hasStandardBrowserWebWorkerEnv)o.setContentType(!1);else if((f=o.getContentType())!==!1){const[b,...$]=f?f.split(";").map(P=>P.trim()).filter(Boolean):[];o.setContentType([b||"multipart/form-data",...$].join("; "))}}let p=new XMLHttpRequest;if(t.auth){const b=t.auth.username||"",$=t.auth.password?unescape(encodeURIComponent(t.auth.password)):"";o.set("Authorization","Basic "+btoa(b+":"+$))}const h=hf(t.baseURL,t.url);p.open(t.method.toUpperCase(),uf(h,t.params,t.paramsSerializer),!0),p.timeout=t.timeout;function y(){if(!p)return;const b=Ce.from("getAllResponseHeaders"in p&&p.getAllResponseHeaders()),$={data:!i||i==="text"||i==="json"?p.responseText:p.response,status:p.status,statusText:p.statusText,headers:b,config:t,request:p};E_(function(P){e(P),u()},function(P){n(P),u()},$),p=null}if("onloadend"in p?p.onloadend=y:p.onreadystatechange=function(){!p||p.readyState!==4||p.status===0&&!(p.responseURL&&p.responseURL.indexOf("file:")===0)||setTimeout(y)},p.onabort=function(){p&&(n(new tt("Request aborted",tt.ECONNABORTED,t,p)),p=null)},p.onerror=function(){n(new tt("Network Error",tt.ERR_NETWORK,t,p)),p=null},p.ontimeout=function(){let b=t.timeout?"timeout of "+t.timeout+"ms exceeded":"timeout exceeded";const $=t.transitional||cf;t.timeoutErrorMessage&&(b=t.timeoutErrorMessage),n(new tt(b,$.clarifyTimeoutError?tt.ETIMEDOUT:tt.ECONNABORTED,t,p)),p=null},me.hasStandardBrowserEnv&&(s&&N.isFunction(s)&&(s=s(t)),s||s!==!1&&T_(h))){const b=t.xsrfHeaderName&&t.xsrfCookieName&&C_.read(t.xsrfCookieName);b&&o.set(t.xsrfHeaderName,b)}r===void 0&&o.setContentType(null),"setRequestHeader"in p&&N.forEach(o.toJSON(),function(b,$){p.setRequestHeader($,b)}),N.isUndefined(t.withCredentials)||(p.withCredentials=!!t.withCredentials),i&&i!=="json"&&(p.responseType=t.responseType),typeof t.onDownloadProgress=="function"&&p.addEventListener("progress",Cu(t.onDownloadProgress,!0)),typeof t.onUploadProgress=="function"&&p.upload&&p.upload.addEventListener("progress",Cu(t.onUploadProgress)),(t.cancelToken||t.signal)&&(l=b=>{p&&(n(!b||b.type?new Pr(null,t,p):b),p.abort(),p=null)},t.cancelToken&&t.cancelToken.subscribe(l),t.signal&&(t.signal.aborted?l():t.signal.addEventListener("abort",l)));const g=N_(h);if(g&&me.protocols.indexOf(g)===-1){n(new tt("Unsupported protocol "+g+":",tt.ERR_BAD_REQUEST,t));return}p.send(r||null)})},gs={http:n_,xhr:k_};N.forEach(gs,(t,e)=>{if(t){try{Object.defineProperty(t,"name",{value:e})}catch{}Object.defineProperty(t,"adapterName",{value:e})}});const Su=t=>"- ".concat(t),O_=t=>N.isFunction(t)||t===null||t===!1,mf={getAdapter:t=>{t=N.isArray(t)?t:[t];const{length:e}=t;let n,r;const o={};for(let i=0;i"adapter ".concat(l," ")+(u===!1?"is not supported by the environment":"is not available in the build"));let s=e?i.length>1?"since :\n"+i.map(Su).join("\n"):" "+Su(i[0]):"as no adapter specified";throw new tt("There is no suitable adapter to dispatch the request "+s,"ERR_NOT_SUPPORT")}return r},adapters:gs};function $i(t){if(t.cancelToken&&t.cancelToken.throwIfRequested(),t.signal&&t.signal.aborted)throw new Pr(null,t)}function Au(t){return $i(t),t.headers=Ce.from(t.headers),t.data=Pi.call(t,t.transformRequest),["post","put","patch"].indexOf(t.method)!==-1&&t.headers.setContentType("application/x-www-form-urlencoded",!1),mf.getAdapter(t.adapter||sa.adapter)(t).then(function(e){return $i(t),e.data=Pi.call(t,t.transformResponse,e),e.headers=Ce.from(e.headers),e},function(e){return df(e)||($i(t),e&&e.response&&(e.response.data=Pi.call(t,t.transformResponse,e.response),e.response.headers=Ce.from(e.response.headers))),Promise.reject(e)})}const Tu=t=>t instanceof Ce?{...t}:t;function Mn(t,e){e=e||{};const n={};function r(f,p,h){return N.isPlainObject(f)&&N.isPlainObject(p)?N.merge.call({caseless:h},f,p):N.isPlainObject(p)?N.merge({},p):N.isArray(p)?p.slice():p}function o(f,p,h){if(N.isUndefined(p)){if(!N.isUndefined(f))return r(void 0,f,h)}else return r(f,p,h)}function i(f,p){if(!N.isUndefined(p))return r(void 0,p)}function s(f,p){if(N.isUndefined(p)){if(!N.isUndefined(f))return r(void 0,f)}else return r(void 0,p)}function l(f,p,h){if(h in e)return r(f,p);if(h in t)return r(void 0,f)}const u={url:i,method:i,data:i,baseURL:s,transformRequest:s,transformResponse:s,paramsSerializer:s,timeout:s,timeoutMessage:s,withCredentials:s,withXSRFToken:s,adapter:s,responseType:s,xsrfCookieName:s,xsrfHeaderName:s,onUploadProgress:s,onDownloadProgress:s,decompress:s,maxContentLength:s,maxBodyLength:s,beforeRedirect:s,transport:s,httpAgent:s,httpsAgent:s,cancelToken:s,socketPath:s,responseEncoding:s,validateStatus:l,headers:(f,p)=>o(Tu(f),Tu(p),!0)};return N.forEach(Object.keys(Object.assign({},t,e)),function(f){const p=u[f]||o,h=p(t[f],e[f],f);N.isUndefined(h)&&p!==l||(n[f]=h)}),n}const vf="1.6.8",aa={};["object","boolean","number","function","string","symbol"].forEach((t,e)=>{aa[t]=function(n){return typeof n===t||"a"+(e<1?"n ":" ")+t}});const Nu={};aa.transitional=function(t,e,n){function r(o,i){return"[Axios v"+vf+"] Transitional option '"+o+"'"+i+(n?". "+n:"")}return(o,i,s)=>{if(t===!1)throw new tt(r(i," has been removed"+(e?" in "+e:"")),tt.ERR_DEPRECATED);return e&&!Nu[i]&&(Nu[i]=!0,console.warn(r(i," has been deprecated since v"+e+" and will be removed in the near future"))),t?t(o,i,s):!0}};function L_(t,e,n){if(typeof t!="object")throw new tt("options must be an object",tt.ERR_BAD_OPTION_VALUE);const r=Object.keys(t);let o=r.length;for(;o-- >0;){const i=r[o],s=e[i];if(s){const l=t[i],u=l===void 0||s(l,i,t);if(u!==!0)throw new tt("option "+i+" must be "+u,tt.ERR_BAD_OPTION_VALUE);continue}if(n!==!0)throw new tt("Unknown option "+i,tt.ERR_BAD_OPTION)}}const ys={assertOptions:L_,validators:aa},Re=ys.validators;let po=class{constructor(t){this.defaults=t,this.interceptors={request:new xu,response:new xu}}async request(t,e){try{return await this._request(t,e)}catch(n){if(n instanceof Error){let r;Error.captureStackTrace?Error.captureStackTrace(r={}):r=new Error;const o=r.stack?r.stack.replace(/^.+\n/,""):"";n.stack?o&&!String(n.stack).endsWith(o.replace(/^.+\n.+\n/,""))&&(n.stack+="\n"+o):n.stack=o}throw n}}_request(t,e){typeof t=="string"?(e=e||{},e.url=t):e=t||{},e=Mn(this.defaults,e);const{transitional:n,paramsSerializer:r,headers:o}=e;n!==void 0&&ys.assertOptions(n,{silentJSONParsing:Re.transitional(Re.boolean),forcedJSONParsing:Re.transitional(Re.boolean),clarifyTimeoutError:Re.transitional(Re.boolean)},!1),r!=null&&(N.isFunction(r)?e.paramsSerializer={serialize:r}:ys.assertOptions(r,{encode:Re.function,serialize:Re.function},!0)),e.method=(e.method||this.defaults.method||"get").toLowerCase();let i=o&&N.merge(o.common,o[e.method]);o&&N.forEach(["delete","get","head","post","put","patch","common"],g=>{delete o[g]}),e.headers=Ce.concat(i,o);const s=[];let l=!0;this.interceptors.request.forEach(function(g){typeof g.runWhen=="function"&&g.runWhen(e)===!1||(l=l&&g.synchronous,s.unshift(g.fulfilled,g.rejected))});const u=[];this.interceptors.response.forEach(function(g){u.push(g.fulfilled,g.rejected)});let f,p=0,h;if(!l){const g=[Au.bind(this),void 0];for(g.unshift.apply(g,s),g.push.apply(g,u),h=g.length,f=Promise.resolve(e);p{if(!r._listeners)return;let i=r._listeners.length;for(;i-- >0;)r._listeners[i](o);r._listeners=null}),this.promise.then=o=>{let i;const s=new Promise(l=>{r.subscribe(l),i=l}).then(o);return s.cancel=function(){r.unsubscribe(i)},s},e(function(o,i,s){r.reason||(r.reason=new Pr(o,i,s),n(r.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(e){if(this.reason){e(this.reason);return}this._listeners?this._listeners.push(e):this._listeners=[e]}unsubscribe(e){if(!this._listeners)return;const n=this._listeners.indexOf(e);n!==-1&&this._listeners.splice(n,1)}static source(){let e;return{token:new la(function(n){e=n}),cancel:e}}}const R_=la;function I_(t){return function(e){return t.apply(null,e)}}function F_(t){return N.isObject(t)&&t.isAxiosError===!0}const ws={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511};Object.entries(ws).forEach(([t,e])=>{ws[e]=t});const B_=ws;function gf(t){const e=new fo(t),n=Yp(fo.prototype.request,e);return N.extend(n,fo.prototype,e,{allOwnKeys:!0}),N.extend(n,e,null,{allOwnKeys:!0}),n.create=function(r){return gf(Mn(t,r))},n}const bt=gf(sa);bt.Axios=fo,bt.CanceledError=Pr,bt.CancelToken=R_,bt.isCancel=df,bt.VERSION=vf,bt.toFormData=ri,bt.AxiosError=tt,bt.Cancel=bt.CanceledError,bt.all=function(t){return Promise.all(t)},bt.spread=I_,bt.isAxiosError=F_,bt.mergeConfig=Mn,bt.AxiosHeaders=Ce,bt.formToJSON=t=>ff(N.isHTMLForm(t)?new FormData(t):t),bt.getAdapter=mf.getAdapter,bt.HttpStatusCode=B_,bt.default=bt;const _s=bt;function D_(t){return t&&t.__esModule&&Object.prototype.hasOwnProperty.call(t,"default")?t.default:t}var yf={exports:{}},wt=yf.exports={},pe,fe;function bs(){throw new Error("setTimeout has not been defined")}function xs(){throw new Error("clearTimeout has not been defined")}(function(){try{typeof setTimeout=="function"?pe=setTimeout:pe=bs}catch{pe=bs}try{typeof clearTimeout=="function"?fe=clearTimeout:fe=xs}catch{fe=xs}})();function wf(t){if(pe===setTimeout)return setTimeout(t,0);if((pe===bs||!pe)&&setTimeout)return pe=setTimeout,setTimeout(t,0);try{return pe(t,0)}catch{try{return pe.call(null,t,0)}catch{return pe.call(this,t,0)}}}function M_(t){if(fe===clearTimeout)return clearTimeout(t);if((fe===xs||!fe)&&clearTimeout)return fe=clearTimeout,clearTimeout(t);try{return fe(t)}catch{try{return fe.call(null,t)}catch{return fe.call(this,t)}}}var Ee=[],Ln=!1,rn,ho=-1;function z_(){!Ln||!rn||(Ln=!1,rn.length?Ee=rn.concat(Ee):ho=-1,Ee.length&&_f())}function _f(){if(!Ln){var t=wf(z_);Ln=!0;for(var e=Ee.length;e;){for(rn=Ee,Ee=[];++ho1)for(var n=1;nconsole.error("SEMVER",...t):()=>{};var xf=H_;const V_="2.0.0",Ef=256,G_=Number.MAX_SAFE_INTEGER||9007199254740991,W_=16,q_=Ef-6,X_=["major","premajor","minor","preminor","patch","prepatch","prerelease"];var Cf={MAX_LENGTH:Ef,MAX_SAFE_COMPONENT_LENGTH:W_,MAX_SAFE_BUILD_LENGTH:q_,MAX_SAFE_INTEGER:G_,RELEASE_TYPES:X_,SEMVER_SPEC_VERSION:V_,FLAG_INCLUDE_PRERELEASE:1,FLAG_LOOSE:2},Es={exports:{}};(function(t,e){const{MAX_SAFE_COMPONENT_LENGTH:n,MAX_SAFE_BUILD_LENGTH:r,MAX_LENGTH:o}=Cf,i=xf;e=t.exports={};const s=e.re=[],l=e.safeRe=[],u=e.src=[],f=e.t={};let p=0;const h="[a-zA-Z0-9-]",y=[["\\s",1],["\\d",o],[h,r]],g=$=>{for(const[P,B]of y)$=$.split("".concat(P,"*")).join("".concat(P,"{0,").concat(B,"}")).split("".concat(P,"+")).join("".concat(P,"{1,").concat(B,"}"));return $},b=($,P,B)=>{const R=g(P),j=p++;i($,j,P),f[$]=j,u[j]=P,s[j]=new RegExp(P,B?"g":void 0),l[j]=new RegExp(R,B?"g":void 0)};b("NUMERICIDENTIFIER","0|[1-9]\\d*"),b("NUMERICIDENTIFIERLOOSE","\\d+"),b("NONNUMERICIDENTIFIER","\\d*[a-zA-Z-]".concat(h,"*")),b("MAINVERSION","(".concat(u[f.NUMERICIDENTIFIER],")\\.(").concat(u[f.NUMERICIDENTIFIER],")\\.(").concat(u[f.NUMERICIDENTIFIER],")")),b("MAINVERSIONLOOSE","(".concat(u[f.NUMERICIDENTIFIERLOOSE],")\\.(").concat(u[f.NUMERICIDENTIFIERLOOSE],")\\.(").concat(u[f.NUMERICIDENTIFIERLOOSE],")")),b("PRERELEASEIDENTIFIER","(?:".concat(u[f.NUMERICIDENTIFIER],"|").concat(u[f.NONNUMERICIDENTIFIER],")")),b("PRERELEASEIDENTIFIERLOOSE","(?:".concat(u[f.NUMERICIDENTIFIERLOOSE],"|").concat(u[f.NONNUMERICIDENTIFIER],")")),b("PRERELEASE","(?:-(".concat(u[f.PRERELEASEIDENTIFIER],"(?:\\.").concat(u[f.PRERELEASEIDENTIFIER],")*))")),b("PRERELEASELOOSE","(?:-?(".concat(u[f.PRERELEASEIDENTIFIERLOOSE],"(?:\\.").concat(u[f.PRERELEASEIDENTIFIERLOOSE],")*))")),b("BUILDIDENTIFIER","".concat(h,"+")),b("BUILD","(?:\\+(".concat(u[f.BUILDIDENTIFIER],"(?:\\.").concat(u[f.BUILDIDENTIFIER],")*))")),b("FULLPLAIN","v?".concat(u[f.MAINVERSION]).concat(u[f.PRERELEASE],"?").concat(u[f.BUILD],"?")),b("FULL","^".concat(u[f.FULLPLAIN],"$")),b("LOOSEPLAIN","[v=\\s]*".concat(u[f.MAINVERSIONLOOSE]).concat(u[f.PRERELEASELOOSE],"?").concat(u[f.BUILD],"?")),b("LOOSE","^".concat(u[f.LOOSEPLAIN],"$")),b("GTLT","((?:<|>)?=?)"),b("XRANGEIDENTIFIERLOOSE","".concat(u[f.NUMERICIDENTIFIERLOOSE],"|x|X|\\*")),b("XRANGEIDENTIFIER","".concat(u[f.NUMERICIDENTIFIER],"|x|X|\\*")),b("XRANGEPLAIN","[v=\\s]*(".concat(u[f.XRANGEIDENTIFIER],")(?:\\.(").concat(u[f.XRANGEIDENTIFIER],")(?:\\.(").concat(u[f.XRANGEIDENTIFIER],")(?:").concat(u[f.PRERELEASE],")?").concat(u[f.BUILD],"?)?)?")),b("XRANGEPLAINLOOSE","[v=\\s]*(".concat(u[f.XRANGEIDENTIFIERLOOSE],")(?:\\.(").concat(u[f.XRANGEIDENTIFIERLOOSE],")(?:\\.(").concat(u[f.XRANGEIDENTIFIERLOOSE],")(?:").concat(u[f.PRERELEASELOOSE],")?").concat(u[f.BUILD],"?)?)?")),b("XRANGE","^".concat(u[f.GTLT],"\\s*").concat(u[f.XRANGEPLAIN],"$")),b("XRANGELOOSE","^".concat(u[f.GTLT],"\\s*").concat(u[f.XRANGEPLAINLOOSE],"$")),b("COERCEPLAIN","(^|[^\\d])(\\d{1,".concat(n,"})(?:\\.(\\d{1,").concat(n,"}))?(?:\\.(\\d{1,").concat(n,"}))?")),b("COERCE","".concat(u[f.COERCEPLAIN],"(?:$|[^\\d])")),b("COERCEFULL",u[f.COERCEPLAIN]+"(?:".concat(u[f.PRERELEASE],")?(?:").concat(u[f.BUILD],")?(?:$|[^\\d])")),b("COERCERTL",u[f.COERCE],!0),b("COERCERTLFULL",u[f.COERCEFULL],!0),b("LONETILDE","(?:~>?)"),b("TILDETRIM","(\\s*)".concat(u[f.LONETILDE],"\\s+"),!0),e.tildeTrimReplace="$1~",b("TILDE","^".concat(u[f.LONETILDE]).concat(u[f.XRANGEPLAIN],"$")),b("TILDELOOSE","^".concat(u[f.LONETILDE]).concat(u[f.XRANGEPLAINLOOSE],"$")),b("LONECARET","(?:\\^)"),b("CARETTRIM","(\\s*)".concat(u[f.LONECARET],"\\s+"),!0),e.caretTrimReplace="$1^",b("CARET","^".concat(u[f.LONECARET]).concat(u[f.XRANGEPLAIN],"$")),b("CARETLOOSE","^".concat(u[f.LONECARET]).concat(u[f.XRANGEPLAINLOOSE],"$")),b("COMPARATORLOOSE","^".concat(u[f.GTLT],"\\s*(").concat(u[f.LOOSEPLAIN],")$|^$")),b("COMPARATOR","^".concat(u[f.GTLT],"\\s*(").concat(u[f.FULLPLAIN],")$|^$")),b("COMPARATORTRIM","(\\s*)".concat(u[f.GTLT],"\\s*(").concat(u[f.LOOSEPLAIN],"|").concat(u[f.XRANGEPLAIN],")"),!0),e.comparatorTrimReplace="$1$2$3",b("HYPHENRANGE","^\\s*(".concat(u[f.XRANGEPLAIN],")\\s+-\\s+(").concat(u[f.XRANGEPLAIN],")\\s*$")),b("HYPHENRANGELOOSE","^\\s*(".concat(u[f.XRANGEPLAINLOOSE],")\\s+-\\s+(").concat(u[f.XRANGEPLAINLOOSE],")\\s*$")),b("STAR","(<|>)?=?\\s*\\*"),b("GTE0","^\\s*>=\\s*0\\.0\\.0\\s*$"),b("GTE0PRE","^\\s*>=\\s*0\\.0\\.0-0\\s*$")})(Es,Es.exports);var K_=Es.exports;const Z_=Object.freeze({loose:!0}),Y_=Object.freeze({}),J_=t=>t?typeof t!="object"?Z_:t:Y_;var Q_=J_;const Pu=/^[0-9]+$/,Sf=(t,e)=>{const n=Pu.test(t),r=Pu.test(e);return n&&r&&(t=+t,e=+e),t===e?0:n&&!r?-1:r&&!n?1:tSf(e,t);var eb={compareIdentifiers:Sf,rcompareIdentifiers:tb};const Kr=xf,{MAX_LENGTH:$u,MAX_SAFE_INTEGER:Zr}=Cf,{safeRe:ku,t:Ou}=K_,nb=Q_,{compareIdentifiers:En}=eb;let rb=class ue{constructor(e,n){if(n=nb(n),e instanceof ue){if(e.loose===!!n.loose&&e.includePrerelease===!!n.includePrerelease)return e;e=e.version}else if(typeof e!="string")throw new TypeError('Invalid version. Must be a string. Got type "'.concat(typeof e,'".'));if(e.length>$u)throw new TypeError("version is longer than ".concat($u," characters"));Kr("SemVer",e,n),this.options=n,this.loose=!!n.loose,this.includePrerelease=!!n.includePrerelease;const r=e.trim().match(n.loose?ku[Ou.LOOSE]:ku[Ou.FULL]);if(!r)throw new TypeError("Invalid Version: ".concat(e));if(this.raw=e,this.major=+r[1],this.minor=+r[2],this.patch=+r[3],this.major>Zr||this.major<0)throw new TypeError("Invalid major version");if(this.minor>Zr||this.minor<0)throw new TypeError("Invalid minor version");if(this.patch>Zr||this.patch<0)throw new TypeError("Invalid patch version");r[4]?this.prerelease=r[4].split(".").map(o=>{if(/^[0-9]+$/.test(o)){const i=+o;if(i>=0&&i=0;)typeof this.prerelease[i]=="number"&&(this.prerelease[i]++,i=-2);if(i===-1){if(n===this.prerelease.join(".")&&r===!1)throw new Error("invalid increment argument: identifier already exists");this.prerelease.push(o)}}if(n){let i=[n,o];r===!1&&(i=[n]),En(this.prerelease[0],n)===0?isNaN(this.prerelease[1])&&(this.prerelease=i):this.prerelease=i}break}default:throw new Error("invalid increment argument: ".concat(e))}return this.raw=this.format(),this.build.length&&(this.raw+="+".concat(this.build.join("."))),this}};var Af=rb;const Lu=Af,ob=(t,e,n=!1)=>{if(t instanceof Lu)return t;try{return new Lu(t,e)}catch(r){if(!n)return null;throw r}};var ib=ob;const sb=ib,ab=(t,e)=>{const n=sb(t,e);return n?n.version:null};var lb=ab;const ub=Uo(lb),cb=Af,pb=(t,e)=>new cb(t,e).major;var fb=pb;const Ru=Uo(fb);class db{constructor(e){li(this,"bus");typeof e.getVersion!="function"||!ub(e.getVersion())?console.warn("Proxying an event bus with an unknown or invalid version"):Ru(e.getVersion())!==Ru(this.getVersion())&&console.warn("Proxying an event bus of version "+e.getVersion()+" with "+this.getVersion()),this.bus=e}getVersion(){return"3.2.0"}subscribe(e,n){this.bus.subscribe(e,n)}unsubscribe(e,n){this.bus.unsubscribe(e,n)}emit(e,n){this.bus.emit(e,n)}}class hb{constructor(){li(this,"handlers",new Map)}getVersion(){return"3.2.0"}subscribe(e,n){this.handlers.set(e,(this.handlers.get(e)||[]).concat(n))}unsubscribe(e,n){this.handlers.set(e,(this.handlers.get(e)||[]).filter(r=>r!=n))}emit(e,n){(this.handlers.get(e)||[]).forEach(r=>{try{r(n)}catch(o){console.error("could not invoke event listener",o)}})}}let sr=null;function mb(){return sr!==null?sr:typeof window>"u"?new Proxy({},{get:()=>()=>console.error("Window not available, EventBus can not be established!")}):(typeof window.OC<"u"&&window.OC._eventBus&&typeof window._nc_event_bus>"u"&&(console.warn("found old event bus instance at OC._eventBus. Update your version!"),window._nc_event_bus=window.OC._eventBus),typeof(window==null?void 0:window._nc_event_bus)<"u"?sr=new db(window._nc_event_bus):sr=window._nc_event_bus=new hb,sr)}function vb(t,e){mb().subscribe(t,e)}let dr;const Tf=[];function gb(){if(dr===void 0){const t=document==null?void 0:document.getElementsByTagName("head")[0];dr=t?t.getAttribute("data-requesttoken"):null}return dr}function yb(t){Tf.push(t)}vb("csrf-token-update",t=>{dr=t.token,Tf.forEach(e=>{try{e(dr)}catch(n){console.error("error updating CSRF token observer",n)}})});const Iu=Symbol("csrf-retry"),wb=t=>async e=>{var n;const{config:r,response:o,request:i}=e,s=i==null?void 0:i.responseURL;if((o==null?void 0:o.status)===412&&((n=o==null?void 0:o.data)==null?void 0:n.message)==="CSRF check failed"&&r[Iu]===void 0){console.warn("Request to ".concat(s," failed because of a CSRF mismatch. Fetching a new token"));const{data:{token:l}}=await t.get(Ws("/csrftoken"));return console.debug("New request token ".concat(l," fetched")),t.defaults.headers.requesttoken=l,t({...r,headers:{...r.headers,requesttoken:l},[Iu]:!0})}return Promise.reject(e)},Yr=Symbol("retryDelay"),_b=t=>async e=>{var n;const{config:r,response:o,request:i}=e,s=i==null?void 0:i.responseURL,l=o==null?void 0:o.status,u=o==null?void 0:o.headers;if(l===503&&u["x-nextcloud-maintenance-mode"]==="1"&&r.retryIfMaintenanceMode&&(!r[Yr]||r[Yr]<=32)){const f=((n=r[Yr])!=null?n:1)*2;return console.warn("Request to ".concat(s," failed because of maintenance mode. Retrying in ").concat(f,"s")),await new Promise(p=>{setTimeout(p,f*1e3)}),t({...r,[Yr]:f})}return Promise.reject(e)},bb=async t=>{var e;const{config:n,response:r,request:o}=t,i=o==null?void 0:o.responseURL;return(r==null?void 0:r.status)===401&&((e=r==null?void 0:r.data)==null?void 0:e.message)==="Current user is not logged in"&&n.reloadExpiredSession&&(window!=null&&window.location)&&(console.error("Request to ".concat(i," failed because the user session expired. Reloading the page …")),window.location.reload()),Promise.reject(t)};var Fu;const Nf=_s.create({headers:{requesttoken:(Fu=gb())!=null?Fu:"","X-Requested-With":"XMLHttpRequest"}}),An=Object.assign(Nf,{CancelToken:_s.CancelToken,isCancel:_s.isCancel});An.interceptors.response.use(t=>t,wb(An)),An.interceptors.response.use(t=>t,_b(An)),An.interceptors.response.use(t=>t,bb),yb(t=>{Nf.defaults.headers.requesttoken=t});const xb={__name:"IntroAnimation",emits:["next"],setup(t,{emit:e}){const n=fn("firstrunwizard","Nextcloud.mp4"),r=fn("firstrunwizard","Nextcloud.webm"),o=rt("firstrunwizard","Welcome to {cloudName}!",{cloudName:window.OC.theme.name});function i(){e("next")}return{__sfc:!0,emit:e,videoMp4:n,videoWebm:r,videoFallbackText:o,handleEnded:i}}},Eb="_video_1p112_2",Cb="_wrapper_1p112_8",Sb={video:Eb,wrapper:Cb};function Qt(t,e,n,r,o,i,s,l){var u=typeof t=="function"?t.options:t;e&&(u.render=e,u.staticRenderFns=n,u._compiled=!0),r&&(u.functional=!0),i&&(u._scopeId="data-v-"+i);var f;if(s?(f=function(y){y=y||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,!y&&typeof __VUE_SSR_CONTEXT__<"u"&&(y=__VUE_SSR_CONTEXT__),o&&o.call(this,y),y&&y._registeredComponents&&y._registeredComponents.add(s)},u._ssrRegister=f):o&&(f=l?function(){o.call(this,(u.functional?this.parent:this).$root.$options.shadowRoot)}:o),f)if(u.functional){u._injectStyles=f;var p=u.render;u.render=function(y,g){return f.call(g),p(y,g)}}else{var h=u.beforeCreate;u.beforeCreate=h?[].concat(h,f):[f]}return{exports:t,options:u}}var Ab=function(){var t=this,e=t._self._c,n=t._self._setupProxy;return e("div",{class:t.$style.wrapper},[e("video",{class:t.$style.video,attrs:{playsinline:"",autoplay:"",muted:""},domProps:{muted:!0},on:{ended:n.handleEnded}},[e("source",{attrs:{src:n.videoWebm,type:"video/webm"}}),e("source",{attrs:{src:n.videoMp4,type:"video/mp4"}}),t._v(" "+t._s(n.videoFallbackText)+" ")])])},Tb=[];const Bu={$style:Sb};function Nb(t){for(var e in Bu)this[e]=Bu[e]}var Pb=Qt(xb,Ab,Tb,!1,Nb,null,null,null);const $b=Pb.exports;var kb="M12,5.5A3.5,3.5 0 0,1 15.5,9A3.5,3.5 0 0,1 12,12.5A3.5,3.5 0 0,1 8.5,9A3.5,3.5 0 0,1 12,5.5M5,8C5.56,8 6.08,8.15 6.53,8.42C6.38,9.85 6.8,11.27 7.66,12.38C7.16,13.34 6.16,14 5,14A3,3 0 0,1 2,11A3,3 0 0,1 5,8M19,8A3,3 0 0,1 22,11A3,3 0 0,1 19,14C17.84,14 16.84,13.34 16.34,12.38C17.2,11.27 17.62,9.85 17.47,8.42C17.92,8.15 18.44,8 19,8M5.5,18.25C5.5,16.18 8.41,14.5 12,14.5C15.59,14.5 18.5,16.18 18.5,18.25V20H5.5V18.25M0,20V18.5C0,17.11 1.89,15.94 4.45,15.6C3.86,16.28 3.5,17.22 3.5,18.25V20H0M24,20H20.5V18.25C20.5,17.22 20.14,16.28 19.55,15.6C22.11,15.94 24,17.11 24,18.5V20Z",Ob="M20,11V13H8L13.5,18.5L12.08,19.92L4.16,12L12.08,4.08L13.5,5.5L8,11H20Z",Lb="M4,11V13H16L10.5,18.5L11.92,19.92L19.84,12L11.92,4.08L10.5,5.5L16,11H4Z",Rb="M10,2H14A2,2 0 0,1 16,4V6H20A2,2 0 0,1 22,8V19A2,2 0 0,1 20,21H4A2,2 0 0,1 2,19V8A2,2 0 0,1 4,6H8V4A2,2 0 0,1 10,2M14,6V4H10V6H14M10.5,17.5L17.09,10.91L15.68,9.5L10.5,14.67L8.41,12.59L7,14L10.5,17.5Z",Ib="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",Fb="M20,8L12,13L4,8V6L12,11L20,6M20,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V6C22,4.89 21.1,4 20,4Z",Bb="M12,17A2,2 0 0,0 14,15C14,13.89 13.1,13 12,13A2,2 0 0,0 10,15A2,2 0 0,0 12,17M18,8A2,2 0 0,1 20,10V20A2,2 0 0,1 18,22H6A2,2 0 0,1 4,20V10C4,8.89 4.9,8 6,8H7V6A5,5 0 0,1 12,1A5,5 0 0,1 17,6V8H18M12,3A3,3 0 0,0 9,6V8H15V6A3,3 0 0,0 12,3Z",Db="M21,9L17,5V8H10V10H17V13M7,11L3,15L7,19V16H14V14H7V11Z";const Mb={name:"NcIconSvgWrapper",props:{inline:{type:Boolean,default:!1},svg:{type:String,default:""},name:{type:String,default:""},path:{type:String,default:""},size:{type:[Number,String],default:20,validator:t=>typeof t=="number"||t==="auto"}},computed:{iconSize(){return typeof this.size=="number"?"".concat(this.size,"px"):this.size},cleanSvg(){if(!this.svg||this.path)return;const t=np.sanitize(this.svg),e=new DOMParser().parseFromString(t,"image/svg+xml");return e.querySelector("parsererror")?(st.util.warn("SVG is not valid"),""):(e.documentElement.id&&e.documentElement.removeAttribute("id"),e.documentElement.outerHTML)},attributes(){return{class:["icon-vue",{"icon-vue--inline":this.inline}],style:{"--icon-size":this.iconSize},role:"img","aria-hidden":this.name?void 0:!0,"aria-label":this.name||void 0}}}};var zb=function(){var t=this,e=t._self._c;return t.cleanSvg?e("span",t._b({domProps:{innerHTML:t._s(t.cleanSvg)}},"span",t.attributes,!1)):e("span",t._b({},"span",t.attributes,!1),[e("svg",{attrs:{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"}},[e("path",{attrs:{d:t.path}})])])},jb=[],Ub=Jt(Mb,zb,jb,!1,null,"2d0a4d76",null,null);const ua=Ub.exports,Hb={__name:"SlideShow",props:{pages:null,currentIndex:null},emits:["update:current-index"],setup(t,{emit:e}){const n=t;_c((g,b)=>({a8212066:b.cssLogoUrl}));const r=Zp(),o=xt(!1),i=_t(()=>n.pages[n.currentIndex]),s=_t(()=>n.currentIndex===0),l=_t(()=>n.currentIndex===n.pages.length-1),u="url('".concat(fn("firstrunwizard","nextcloudLogo.svg"),"')"),f=Gd("transitions"),p=_t(()=>{const g=o.value?"right":"left";return{active:f["slide-active"],enter:f["slide-".concat(g,"-enter")],leave:f["slide-".concat(g,"-leave-to")]}}),h=_t(()=>{const g=o.value?"down":"up";return{active:f["slide-active"],enter:f["slide-".concat(g,"-enter")],leave:f["slide-".concat(g,"-leave-to")]}});Vn(()=>n.currentIndex,(g,b)=>{g$.id===g);e("update:current-index",b)}return{__sfc:!0,props:n,emit:e,isMobile:r,reverseTransition:o,currentPage:i,isFirstPage:s,isLastPage:l,cssLogoUrl:u,transitions:f,transitionClasses:p,waveTransitionClasses:h,goToPage:y,t:rt,mdiArrowLeft:Ob,mdiArrowRight:Lb,mdiClose:Ib,NcButton:qo,NcIconSvgWrapper:ua}}},Vb="_wrapper_1pqur_1",Gb="_background_circle_1pqur_11",Wb="_background_bar_1pqur_21",qb="_button_back_1pqur_30",Xb="_button_close_1pqur_36",Kb="_button_wrapper_1pqur_42",Zb="_logo_1pqur_55",Yb="_first_page_scroller_1pqur_68",Jb={wrapper:Vb,background_circle:Gb,background_bar:Wb,button_back:qb,button_close:Xb,button_wrapper:Kb,logo:Zb,first_page_scroller:Yb},Qb={"slide-active":"_slide-active_8t7o1_5","slide-left-enter":"_slide-left-enter_8t7o1_9","slide-left-leave-to":"_slide-left-leave-to_8t7o1_14","slide-right-enter":"_slide-right-enter_8t7o1_19","slide-right-leave-to":"_slide-right-leave-to_8t7o1_24","slide-up-enter":"_slide-up-enter_8t7o1_29","slide-up-leave-to":"_slide-up-leave-to_8t7o1_33","slide-down-enter":"_slide-down-enter_8t7o1_37","slide-down-leave-to":"_slide-down-leave-to_8t7o1_41"};var tx=function(){var t=this,e=t._self._c,n=t._self._setupProxy;return e("div",{class:t.$style.wrapper},[e("Transition",{attrs:{"enter-class":n.waveTransitionClasses.enter,"enter-active-class":n.waveTransitionClasses.active,"leave-active-class":n.waveTransitionClasses.active,"leave-to-class":n.waveTransitionClasses.leave}},[n.isFirstPage?e("div",{class:t.$style.background_circle}):t._e()]),e("div",{class:t.$style.background_bar}),!n.isFirstPage&&n.isMobile?e(n.NcButton,{class:t.$style.button_back,attrs:{"aria-label":n.t("firstrunwizard","Go to previous page"),type:"tertiary"},on:{click:function(r){return t.$emit("update:current-index",t.currentIndex-1)}},scopedSlots:t._u([{key:"icon",fn:function(){return[e(n.NcIconSvgWrapper,{attrs:{path:n.mdiArrowLeft}})]},proxy:!0}],null,!1,1565937943)}):t._e(),e(n.NcButton,{class:t.$style.button_close,attrs:{"aria-label":n.t("firstrunwizard","Close"),type:n.isFirstPage?"primary":"tertiary"},on:{click:function(r){return t.$emit("update:current-index",-1)}},scopedSlots:t._u([{key:"icon",fn:function(){return[e(n.NcIconSvgWrapper,{attrs:{path:n.mdiClose}})]},proxy:!0}])}),n.isFirstPage?e("div",{class:t.$style.logo}):t._e(),e("Transition",{attrs:{mode:"out-in","enter-class":n.transitionClasses.enter,"enter-active-class":n.transitionClasses.active,"leave-active-class":n.transitionClasses.active,"leave-to-class":n.transitionClasses.leave}},[e(n.currentPage.component,{tag:"component",attrs:{"scroller-classes":n.isFirstPage?t.$style.first_page_scroller:""}})],1),e("div",{class:t.$style.button_wrapper},t._l(n.currentPage.buttons,function(r,o){return e(n.NcButton,{key:r.to,attrs:{alignment:"center-reverse",type:o===n.currentPage.buttons.length-1?"primary":"secondary",wide:o===n.currentPage.buttons.length-1},on:{click:function(i){return n.goToPage(r.to)}},scopedSlots:t._u([n.isLastPage?null:{key:"icon",fn:function(){return[e(n.NcIconSvgWrapper,{attrs:{path:n.mdiArrowRight}})]},proxy:!0}],null,!0)},[t._v(" "+t._s(r.label)+" ")])}),1)],1)},ex=[];const Du={$style:Jb,transitions:Qb};function nx(t){for(var e in Du)this[e]=Du[e]}var rx=Qt(Hb,tx,ex,!1,nx,null,null,null);const ox=rx.exports,ix={__name:"Card",props:{title:null,subtitle:null,href:null},setup(t){const e=t,n=_t(()=>!!e.href);return{__sfc:!0,props:e,isLink:n}}},sx="_card_rb2xk_1",ax="_icon_rb2xk_8",lx="_heading_rb2xk_17",ux="_link_rb2xk_23",cx="_text_rb2xk_33",px={card:sx,icon:ax,heading:lx,link:ux,text:cx};var fx=function(){var t=this,e=t._self._c,n=t._self._setupProxy;return e(n.isLink?"a":"div",{tag:"element",class:[t.$style.card,{[t.$style.link]:n.isLink}],attrs:{href:t.href||void 0,target:n.isLink?"_blank":void 0,rel:n.isLink?"noreferrer":void 0}},[e("div",{class:t.$style.icon},[t._t("default")],2),e("div",{class:t.$style.text},[e("h3",{class:t.$style.heading},[t._v(" "+t._s(t.title)+" ")]),t.subtitle!==void 0?e("p",{domProps:{textContent:t._s(t.subtitle)}}):t._e()])])},dx=[];const Mu={$style:px};function hx(t){for(var e in Mu)this[e]=Mu[e]}var mx=Qt(ix,fx,dx,!1,hx,null,null,null);const oi=mx.exports,vx={__name:"WizardPage",props:{title:null,subtitle:null,scrollerClasses:null},setup(t){return{__sfc:!0}}},gx="_wrapper_1b76s_2",yx="_scroller_1b76s_9",wx="_heading_1b76s_14",_x="_subtitle_1b76s_20",bx="_content_1b76s_26",xx={wrapper:gx,scroller:yx,heading:wx,subtitle:_x,content:bx};var Ex=function(){var t=this,e=t._self._c;return t._self._setupProxy,e("div",{class:t.$style.wrapper},[e("div",{class:[t.$style.scroller,t.scrollerClasses]},[e("h2",{class:t.$style.heading},[t._v(" "+t._s(t.title)+" ")]),t.subtitle?e("p",{class:t.$style.subtitle},[t._v(" "+t._s(t.subtitle)+" ")]):t._e(),e("div",{class:t.$style.content},[t._t("default")],2)])])},Cx=[];const zu={$style:xx};function Sx(t){for(var e in zu)this[e]=zu[e]}var Ax=Qt(vx,Ex,Cx,!1,Sx,null,null,null);const Xn=Ax.exports,Tx={__name:"AboutNextcloud",setup(t){return{__sfc:!0,versionNumber:rt("firstrunwizard","This Nextcloud is on version {version}",{version:window.OC.config.versionstring}),t:rt,Card:oi,WizardPage:Xn}}},Nx="_version_m2t30_2",Px={version:Nx};var $x=function(){var t=this,e=t._self._c,n=t._self._setupProxy;return e(n.WizardPage,{attrs:{title:n.t("firstrunwizard","More about Nextcloud")}},[e(n.Card,{attrs:{href:"https://apps.nextcloud.com/",title:n.t("firstrunwizard","Explore more apps ↗"),subtitle:n.t("firstrunwizard","Extend the functionality of Nextcloud with hundreds of community-developed apps.")}}),e(n.Card,{attrs:{href:"https://nextcloud.com/contribute/",title:n.t("firstrunwizard","Get involved! ↗"),subtitle:n.t("firstrunwizard","Be a part of the community that helps build, design, translate and promote Nextcloud!")}}),e(n.Card,{attrs:{href:"https://docs.nextcloud.com/",title:n.t("firstrunwizard","Need help? ↗"),subtitle:n.t("firstrunwizard","Find out more about your Nextcloud setup with the admin, user or developer documentation.")}}),e(n.Card,{attrs:{href:"https://nextcloud.com/enterprise/",title:n.t("firstrunwizard","For large organisations ↗"),subtitle:n.t("firstrunwizard","Get Nextcloud Enterprise for mission critical environments where advanced security and compliance are important.")}}),e("p",{class:t.$style.version},[t._v(" "+t._s(n.versionNumber)+" ")])],1)},kx=[];const ju={$style:Px};function Ox(t){for(var e in ju)this[e]=ju[e]}var Lx=Qt(Tx,$x,kx,!1,Ox,null,null,null);const Rx=Lx.exports;function Bo(t,e,n){const r=document.querySelector("#initial-state-".concat(t,"-").concat(e));if(r===null){if(n!==void 0)return n;throw new Error("Could not find initial state ".concat(e," of ").concat(t))}try{return JSON.parse(atob(r.value))}catch{throw new Error("Could not parse initial state ".concat(e," of ").concat(t))}}const Ix={__name:"AppStoreBadge",props:{type:null},setup(t){const e=t;_c((u,f)=>({"7adda1c6":f.cssBackgroundImage}));const n=Bo("firstrunwizard","android"),r=Bo("firstrunwizard","ios"),o=_t(()=>{if(e.type==="ios")return fn("firstrunwizard","iosBadge.png");if(e.type==="android")return fn("firstrunwizard","androidBadge.png")}),i=_t(()=>"url('".concat(o.value,"')")),s=_t(()=>{if(e.type==="ios")return r;if(e.type==="android")return n}),l=_t(()=>{if(e.type==="ios")return rt("firstrunwizard","Download on Apple app store");if(e.type==="android")return rt("firstrunwizard","Download on Google play store")});return{__sfc:!0,props:e,android:n,ios:r,badgeImagePath:o,cssBackgroundImage:i,href:s,ariaLabel:l}}},Fx="_badge_1lvp9_1",Bx={badge:Fx};var Dx=function(){var t=this,e=t._self._c,n=t._self._setupProxy;return e("a",{class:t.$style.badge,attrs:{"aria-label":n.ariaLabel,target:"_blank",rel:"noreferrer",href:n.href}})},Mx=[];const Uu={$style:Bx};function zx(t){for(var e in Uu)this[e]=Uu[e]}var jx=Qt(Ix,Dx,Mx,!1,zx,null,null,null);const Ux=jx.exports,Hx={__name:"DeviceIntegration",setup(t){const e=Bo("firstrunwizard","desktop"),n=Ws("settings/user/sync-clients");return{__sfc:!0,desktop:e,syncClientsUrl:n,t:rt,AppStoreBadge:Ux,Card:oi,WizardPage:Xn}}};var Vx=function(){var t=this,e=t._self._c,n=t._self._setupProxy;return e(n.WizardPage,{attrs:{title:n.t("firstrunwizard","Seamless integration with your devices."),subtitle:n.t("firstrunwizard","Sync your files across your devices with the desktop and mobile apps, and connect your calendar and contacts.")}},[e(n.AppStoreBadge,{attrs:{type:"android"}}),e(n.AppStoreBadge,{attrs:{type:"ios"}}),e(n.Card,{attrs:{href:n.desktop,title:n.t("firstrunwizard","Desktop app ↗"),subtitle:n.t("firstrunwizard","Download For Windows, Mac OS and Linux.")}}),e(n.Card,{attrs:{href:n.syncClientsUrl,title:n.t("firstrunwizard","Calendar and contacts ↗"),subtitle:n.t("firstrunwizard","Connect your calendar and contacts with your devices.")}})],1)},Gx=[],Wx=Qt(Hx,Vx,Gx,!1,null,null,null,null);const qx=Wx.exports,de={version:"8",link:"https://nextcloud.com/blog/nextcloud-hub8/",releaseNotes:["✨ "+rt("firstrunwizard","Assistant: chat summaries, Mail reply suggestions, answers based on your data, and more"),"🖱️ "+rt("firstrunwizard","Interactive previews for files, folders, boards and events"),"🌐 "+rt("firstrunwizard","Federated chat and message editing in Talk"),"🗒️ "+rt("firstrunwizard","Mini-apps based on Tables"),"🔗 "+rt("firstrunwizard","Public Collectives sharing, previews and QR-codes"),"👥 "+rt("firstrunwizard","Manage your team resources like a pro with Nextcloud Teams"),"🔄 "+rt("firstrunwizard","Forms: automatically sync with a spreadsheet")],videoAltText:rt("firstrunwizard","Get to know the new features of Hub 8"),shareSubject:rt("firstrunwizard","Nextcloud Hub {version} release",{version:"8"})},Xx={__name:"HubRelease",setup(t){const e=fn("firstrunwizard","nextcloudHub.mp4"),n=fn("firstrunwizard","nextcloudHub.webm");return{__sfc:!0,videoMp4:e,videoWebm:n,t:rt,HUBRelease:de,WizardPage:Xn}}},Kx="_anchor_y1t00_2",Zx="_animation_y1t00_6",Yx={anchor:Kx,animation:Zx};var Jx=function(){var t=this,e=t._self._c,n=t._self._setupProxy;return e(n.WizardPage,{attrs:{title:n.t("firstrunwizard","Introducing Nextcloud Hub {version}",{version:n.HUBRelease.version})}},[e("a",{class:t.$style.anchor,attrs:{href:n.HUBRelease.link,target:"_blank"}},[e("video",{class:t.$style.animation,attrs:{playsinline:"",autoplay:"",muted:""},domProps:{muted:!0}},[e("source",{attrs:{src:n.videoWebm,type:"video/webm;codecs=vp9"}}),e("source",{attrs:{src:n.videoMp4,type:"video/mp4"}}),t._v(" "+t._s(n.HUBRelease.videoAltText)+" ")])])])},Qx=[];const Hu={$style:Yx};function t2(t){for(var e in Hu)this[e]=Hu[e]}var e2=Qt(Xx,Jx,Qx,!1,t2,null,null,null);const n2=e2.exports,r2={__name:"KeyNotes",props:{scrollerClasses:null},setup(t){return{__sfc:!0,mdiAccountGroup:kb,mdiBriefcaseCheck:Rb,mdiLock:Bb,mdiSwapHorizontal:Db,t:rt,NcIconSvgWrapper:ua,Card:oi,WizardPage:Xn}}},o2="_icon_rxix9_2",i2={icon:o2};var s2=function(){var t=this,e=t._self._c,n=t._self._setupProxy;return e(n.WizardPage,{attrs:{"scroller-classes":t.scrollerClasses,title:n.t("firstrunwizard","A collaboration platform that puts you in control")}},[e(n.Card,{attrs:{title:n.t("firstrunwizard","Privacy"),subtitle:n.t("firstrunwizard","Host your data and files where you decide.")}},[e(n.NcIconSvgWrapper,{class:t.$style.icon,attrs:{inline:"",path:n.mdiLock}})],1),e(n.Card,{attrs:{title:n.t("firstrunwizard","Productivity"),subtitle:n.t("firstrunwizard","Collaborate and communicate across any platform.")}},[e(n.NcIconSvgWrapper,{class:t.$style.icon,attrs:{inline:"",path:n.mdiBriefcaseCheck}})],1),e(n.Card,{attrs:{title:n.t("firstrunwizard","Interoperability"),subtitle:n.t("firstrunwizard","Import and export anything you want with open standards.")}},[e(n.NcIconSvgWrapper,{class:t.$style.icon,attrs:{inline:"",path:n.mdiSwapHorizontal}})],1),e(n.Card,{attrs:{title:n.t("firstrunwizard","Community"),subtitle:n.t("firstrunwizard","Enjoy constant improvements from a thriving open-source community.")}},[e(n.NcIconSvgWrapper,{class:t.$style.icon,attrs:{inline:"",path:n.mdiAccountGroup}})],1)],1)},a2=[];const Vu={$style:i2};function l2(t){for(var e in Vu)this[e]=Vu[e]}var u2=Qt(r2,s2,a2,!1,l2,null,null,null);const c2=u2.exports,p2='',f2='\n',d2='\n',h2={__name:"SharePage",setup(t){var e,n;const r=encodeURIComponent(encodeURI(de.link)),o=encodeURIComponent((e=de.shareSubject)!=null?e:rt("firstrunwizard","Nextcloud Hub {version} release",{version:de.version})),i=encodeURIComponent(rt("firstrunwizard","Read more about it on the Nextcloud Hub {version} blog",{version:de.version})+"\n"+de.link),s=[{id:"facebook",name:"Facebook",link:"https://www.facebook.com/sharer/sharer.php?u=".concat(r),icon:p2},{id:"x",name:"X",link:"https://x.com/intent/post?url=".concat(r,"&via=Nextclouders&text=").concat(encodeURIComponent((n=de.shareSubject)!=null?n:"")),icon:d2},{id:"mastodon",name:"Mastodon",link:"https://mastodon.social/share?text=".concat(r),icon:f2},{id:"email",name:"EMail",link:"mailto:?subject=".concat(o,"&body=").concat(i),icon:Fb}];return{__sfc:!0,encodedLink:r,mailSubject:o,mailBody:i,shareLinks:s,t:rt,NcButton:qo,NcIconSvgWrapper:ua,HubRelease:de,WizardPage:Xn,Card:oi}}},m2="_share_section_nuzul_2",v2="_share_wrapper_nuzul_6",g2="_card_nuzul_15",y2="_heading_nuzul_22",w2={share_section:m2,share_wrapper:v2,card:g2,heading:y2};var _2=function(){var t=this,e=t._self._c,n=t._self._setupProxy;return e(n.WizardPage,{attrs:{title:n.t("firstrunwizard","Find out more on the blog")}},[e(n.NcButton,{attrs:{href:n.HubRelease.link,target:"_blank"}},[t._v(" "+t._s(n.t("firstrunwizard","Read the Nextcloud Hub {version} blog",{version:n.HubRelease.version}))+" ↗ ")]),e("section",{class:t.$style.share_section},[e("h3",{class:t.$style.heading},[t._v(" "+t._s(n.t("firstrunwizard","Share your opinion about Nextcloud Hub {version}",{version:n.HubRelease.version}))+" ")]),e("div",{class:t.$style.share_wrapper},t._l(n.shareLinks,function(r){return e(n.Card,{key:r.id,class:t.$style.card,attrs:{href:r.link,title:r.id==="mail"?n.t("firstrunwizard","Share via email"):n.t("firstrunwizard","Share on {socialMedia}",{socialMedia:r.name})}},[r.icon?e(n.NcIconSvgWrapper,{attrs:{svg:r.id!=="email"?r.icon:void 0,path:r.id==="email"?r.icon:void 0}}):t._e()],1)}),1)])],1)},b2=[];const Gu={$style:w2};function x2(t){for(var e in Gu)this[e]=Gu[e]}var E2=Qt(h2,_2,b2,!1,x2,null,null,null);const C2=E2.exports,S2={__name:"WhatsNew",setup(t){return{__sfc:!0,t:rt,HubRelease:de,WizardPage:Xn}}},A2="_list_lk7o9_2",T2="_entry_lk7o9_6",N2={list:A2,entry:T2};var P2=function(){var t=this,e=t._self._c,n=t._self._setupProxy;return e(n.WizardPage,{attrs:{title:n.t("firstrunwizard","New in Nextcloud Hub {version}",{version:n.HubRelease.version})+" 🚀"}},[e("ul",{class:t.$style.list},t._l(n.HubRelease.releaseNotes,function(r,o){return e("li",{key:o,class:t.$style.entry},[t._v(" "+t._s(r)+" ")])}),0)])},$2=[];const Wu={$style:N2};function k2(t){for(var e in Wu)this[e]=Wu[e]}var O2=Qt(S2,P2,$2,!1,k2,null,null,null);const L2=O2.exports,Oi=[{id:"key-aspects",component:c2,buttons:[{to:"hub-release",label:rt("firstrunwizard","What's new?")},{to:"devices",label:rt("firstrunwizard","Nextcloud on all your devices")}]},{id:"devices",component:qx,buttons:[{to:"about",label:rt("firstrunwizard","More about Nextcloud")}]},{id:"about",component:Rx,buttons:[{to:"hub-release",label:rt("firstrunwizard","Nextcloud Hub {version}",{version:de.version})}]},{id:"hub-release",component:n2,buttons:[{to:"whats-new",label:rt("firstrunwizard","Read more")}]},{id:"whats-new",component:L2,buttons:[{to:"share",label:rt("firstrunwizard","Share on social media")}]},{id:"share",component:C2,buttons:[{to:"close",label:rt("firstrunwizard","Get started!")}]}],R2={__name:"App",setup(t,{expose:e}){const n=Zp(),r=Bo("firstrunwizard","changelogOnly",!1),o=Math.min(Oi.findIndex(y=>y.id==="hub-release"),0),i=xt(!1),s=xt(null),l=xt(),u=_t(()=>!n.value&&s.value!==null&&s.value>0),f=_t(()=>!n.value&&s.value!==null&&s.value{s.value===-1&&h()}),{__sfc:!0,isMobile:n,showChangelogOnly:r,changelogPage:o,showModal:i,currentPage:s,setReturnFocus:l,hasPrevious:u,hasNext:f,open:p,close:h,NcModal:Wp,IntroAnimation:$b,SlideShow:ox,pages:Oi}}};var I2=function(){var t=this,e=t._self._c,n=t._self._setupProxy;return n.showModal?e(n.NcModal,{staticClass:"first-run-wizard",attrs:{id:"firstrunwizard",size:"normal",dark:!n.isMobile,"has-next":n.hasNext,"has-previous":n.hasPrevious,"set-return-focus":n.setReturnFocus},on:{close:n.close,next:function(r){n.currentPage+=1},previous:function(r){n.currentPage-=1}}},[n.currentPage===null?e(n.IntroAnimation,{on:{next:function(r){n.currentPage=n.showChangelogOnly?n.changelogPage:0}}}):e(n.SlideShow,{attrs:{pages:n.pages,"current-index":n.currentPage},on:{"update:currentIndex":function(r){n.currentPage=r},"update:current-index":function(r){n.currentPage=r}}})],1):t._e()},F2=[],B2=Qt(R2,I2,F2,!1,null,null,null,null);const D2=B2.exports;st.prototype.t=rt,st.prototype.n=Fv,st.prototype.oc_defaults=window.oc_defaults;const Cs=document.createElement("div");Cs.id="firstrunwizard",document.querySelector("body").appendChild(Cs);const M2=st.extend(D2),z2=new M2().$mount(Cs),U2=z2.open;export{U2 as open}; diff --git a/js/main.chunk.mjs.map b/js/main.chunk.mjs.map index 7842ac44..2a7d0a4d 100644 --- a/js/main.chunk.mjs.map +++ b/js/main.chunk.mjs.map @@ -1 +1 @@ -{"version":3,"file":"main.chunk.mjs","sources":["../node_modules/vite-plugin-node-polyfills/shims/global/dist/index.js","../node_modules/vue/dist/vue.runtime.esm.js","../node_modules/@nextcloud/l10n/dist/chunks/locale-BQFSYg2g.mjs","../node_modules/@nextcloud/router/dist/index.mjs","../node_modules/dompurify/dist/purify.es.mjs","../node_modules/escape-html/index.js","../node_modules/@nextcloud/l10n/dist/index.mjs","../node_modules/@nextcloud/vue/dist/chunks/ScopeComponent-utlyd2B_.mjs","../node_modules/@vueuse/shared/node_modules/vue-demi/lib/index.mjs","../node_modules/@vueuse/shared/index.mjs","../node_modules/@vueuse/core/node_modules/vue-demi/lib/index.mjs","../node_modules/@vueuse/core/index.mjs","../node_modules/tabbable/dist/index.esm.js","../node_modules/focus-trap/dist/focus-trap.esm.js","../node_modules/@nextcloud/vue/dist/chunks/focusTrap-Cecv_gjR.mjs","../node_modules/lodash.get/index.js","../node_modules/node-gettext/lib/plurals.js","../node_modules/node-gettext/lib/gettext.js","../node_modules/@nextcloud/l10n/dist/gettext.mjs","../node_modules/@nextcloud/vue/dist/chunks/_l10n-em5EAi4q.mjs","../node_modules/@nextcloud/vue/dist/chunks/GenRandomId-CMooMQt0.mjs","../node_modules/@nextcloud/vue/dist/chunks/_plugin-vue2_normalizer-D637Qkok.mjs","../node_modules/@nextcloud/vue/dist/Components/NcButton.mjs","../node_modules/floating-vue/node_modules/@floating-ui/core/dist/floating-ui.core.esm.js","../node_modules/floating-vue/node_modules/@floating-ui/dom/dist/floating-ui.dom.esm.js","../node_modules/floating-vue/dist/floating-vue.es.js","../node_modules/@nextcloud/vue/dist/chunks/NcPopover-VxUr4c6P.mjs","../node_modules/@nextcloud/vue/dist/chunks/DotsHorizontal-C0STD_HU.mjs","../node_modules/@nextcloud/vue/dist/chunks/NcActions-CISHDrZG.mjs","../node_modules/@nextcloud/vue/dist/Directives/Tooltip.mjs","../node_modules/@nextcloud/vue/dist/chunks/ChevronRight-BNa7yMja.mjs","../node_modules/@nextcloud/vue/dist/chunks/Close-1V1F2F-M.mjs","../node_modules/@nextcloud/vue/dist/Components/NcModal.mjs","../node_modules/@nextcloud/vue/dist/Composables/useIsMobile.mjs","../node_modules/axios/lib/helpers/bind.js","../node_modules/axios/lib/utils.js","../node_modules/vite-plugin-node-polyfills/shims/buffer/dist/index.js","../node_modules/axios/lib/core/AxiosError.js","../node_modules/axios/lib/helpers/null.js","../node_modules/axios/lib/helpers/toFormData.js","../node_modules/axios/lib/helpers/AxiosURLSearchParams.js","../node_modules/axios/lib/helpers/buildURL.js","../node_modules/axios/lib/core/InterceptorManager.js","../node_modules/axios/lib/defaults/transitional.js","../node_modules/axios/lib/platform/browser/classes/URLSearchParams.js","../node_modules/axios/lib/platform/browser/classes/FormData.js","../node_modules/axios/lib/platform/browser/classes/Blob.js","../node_modules/axios/lib/platform/browser/index.js","../node_modules/axios/lib/platform/common/utils.js","../node_modules/axios/lib/platform/index.js","../node_modules/axios/lib/helpers/toURLEncodedForm.js","../node_modules/axios/lib/helpers/formDataToJSON.js","../node_modules/axios/lib/defaults/index.js","../node_modules/axios/lib/helpers/parseHeaders.js","../node_modules/axios/lib/core/AxiosHeaders.js","../node_modules/axios/lib/core/transformData.js","../node_modules/axios/lib/cancel/isCancel.js","../node_modules/axios/lib/cancel/CanceledError.js","../node_modules/axios/lib/core/settle.js","../node_modules/axios/lib/helpers/cookies.js","../node_modules/axios/lib/helpers/isAbsoluteURL.js","../node_modules/axios/lib/helpers/combineURLs.js","../node_modules/axios/lib/core/buildFullPath.js","../node_modules/axios/lib/helpers/isURLSameOrigin.js","../node_modules/axios/lib/helpers/parseProtocol.js","../node_modules/axios/lib/helpers/speedometer.js","../node_modules/axios/lib/adapters/xhr.js","../node_modules/axios/lib/adapters/adapters.js","../node_modules/axios/lib/core/dispatchRequest.js","../node_modules/axios/lib/core/mergeConfig.js","../node_modules/axios/lib/env/data.js","../node_modules/axios/lib/helpers/validator.js","../node_modules/axios/lib/core/Axios.js","../node_modules/axios/lib/cancel/CancelToken.js","../node_modules/axios/lib/helpers/spread.js","../node_modules/axios/lib/helpers/isAxiosError.js","../node_modules/axios/lib/helpers/HttpStatusCode.js","../node_modules/axios/lib/axios.js","../node_modules/vite-plugin-node-polyfills/shims/process/dist/index.js","../node_modules/@nextcloud/event-bus/node_modules/semver/internal/debug.js","../node_modules/@nextcloud/event-bus/node_modules/semver/internal/constants.js","../node_modules/@nextcloud/event-bus/node_modules/semver/internal/re.js","../node_modules/@nextcloud/event-bus/node_modules/semver/internal/parse-options.js","../node_modules/@nextcloud/event-bus/node_modules/semver/internal/identifiers.js","../node_modules/@nextcloud/event-bus/node_modules/semver/classes/semver.js","../node_modules/@nextcloud/event-bus/node_modules/semver/functions/parse.js","../node_modules/@nextcloud/event-bus/node_modules/semver/functions/valid.js","../node_modules/@nextcloud/event-bus/node_modules/semver/functions/major.js","../node_modules/@nextcloud/event-bus/dist/index.mjs","../node_modules/@nextcloud/auth/dist/index.mjs","../node_modules/@nextcloud/axios/dist/index.mjs","../src/components/pages/IntroAnimation.vue","../node_modules/@nextcloud/vue/dist/chunks/NcIconSvgWrapper-Ckqpz-vm.mjs","../node_modules/@mdi/js/mdi.js","../src/components/SlideShow.vue","../src/components/Card.vue","../src/components/pages/AboutNextcloud.vue","../node_modules/@nextcloud/initial-state/dist/index.mjs","../src/components/AppStoreBadge.vue","../src/components/pages/DeviceIntegration.vue","../src/hub-release.ts","../src/components/pages/HubRelease.vue","../img/facebook.svg?raw","../img/mastodon.svg?raw","../img/x.svg?raw","../src/components/pages/SharePage.vue","../src/pages.ts","../src/views/App.vue","../src/main.js"],"sourcesContent":["const global = globalThis || void 0 || self;\n\nexport { global as default, global };\n//# sourceMappingURL=index.js.map\n","/*!\n * Vue.js v2.7.16\n * (c) 2014-2023 Evan You\n * Released under the MIT License.\n */\nvar emptyObject = Object.freeze({});\nvar isArray = Array.isArray;\n// These helpers produce better VM code in JS engines due to their\n// explicitness and function inlining.\nfunction isUndef(v) {\n return v === undefined || v === null;\n}\nfunction isDef(v) {\n return v !== undefined && v !== null;\n}\nfunction isTrue(v) {\n return v === true;\n}\nfunction isFalse(v) {\n return v === false;\n}\n/**\n * Check if value is primitive.\n */\nfunction isPrimitive(value) {\n return (typeof value === 'string' ||\n typeof value === 'number' ||\n // $flow-disable-line\n typeof value === 'symbol' ||\n typeof value === 'boolean');\n}\nfunction isFunction(value) {\n return typeof value === 'function';\n}\n/**\n * Quick object check - this is primarily used to tell\n * objects from primitive values when we know the value\n * is a JSON-compliant type.\n */\nfunction isObject(obj) {\n return obj !== null && typeof obj === 'object';\n}\n/**\n * Get the raw type string of a value, e.g., [object Object].\n */\nvar _toString = Object.prototype.toString;\nfunction toRawType(value) {\n return _toString.call(value).slice(8, -1);\n}\n/**\n * Strict object type check. Only returns true\n * for plain JavaScript objects.\n */\nfunction isPlainObject(obj) {\n return _toString.call(obj) === '[object Object]';\n}\nfunction isRegExp(v) {\n return _toString.call(v) === '[object RegExp]';\n}\n/**\n * Check if val is a valid array index.\n */\nfunction isValidArrayIndex(val) {\n var n = parseFloat(String(val));\n return n >= 0 && Math.floor(n) === n && isFinite(val);\n}\nfunction isPromise(val) {\n return (isDef(val) &&\n typeof val.then === 'function' &&\n typeof val.catch === 'function');\n}\n/**\n * Convert a value to a string that is actually rendered.\n */\nfunction toString(val) {\n return val == null\n ? ''\n : Array.isArray(val) || (isPlainObject(val) && val.toString === _toString)\n ? JSON.stringify(val, replacer, 2)\n : String(val);\n}\nfunction replacer(_key, val) {\n // avoid circular deps from v3\n if (val && val.__v_isRef) {\n return val.value;\n }\n return val;\n}\n/**\n * Convert an input value to a number for persistence.\n * If the conversion fails, return original string.\n */\nfunction toNumber(val) {\n var n = parseFloat(val);\n return isNaN(n) ? val : n;\n}\n/**\n * Make a map and return a function for checking if a key\n * is in that map.\n */\nfunction makeMap(str, expectsLowerCase) {\n var map = Object.create(null);\n var list = str.split(',');\n for (var i = 0; i < list.length; i++) {\n map[list[i]] = true;\n }\n return expectsLowerCase ? function (val) { return map[val.toLowerCase()]; } : function (val) { return map[val]; };\n}\n/**\n * Check if a tag is a built-in tag.\n */\nvar isBuiltInTag = makeMap('slot,component', true);\n/**\n * Check if an attribute is a reserved attribute.\n */\nvar isReservedAttribute = makeMap('key,ref,slot,slot-scope,is');\n/**\n * Remove an item from an array.\n */\nfunction remove$2(arr, item) {\n var len = arr.length;\n if (len) {\n // fast path for the only / last item\n if (item === arr[len - 1]) {\n arr.length = len - 1;\n return;\n }\n var index = arr.indexOf(item);\n if (index > -1) {\n return arr.splice(index, 1);\n }\n }\n}\n/**\n * Check whether an object has the property.\n */\nvar hasOwnProperty = Object.prototype.hasOwnProperty;\nfunction hasOwn(obj, key) {\n return hasOwnProperty.call(obj, key);\n}\n/**\n * Create a cached version of a pure function.\n */\nfunction cached(fn) {\n var cache = Object.create(null);\n return function cachedFn(str) {\n var hit = cache[str];\n return hit || (cache[str] = fn(str));\n };\n}\n/**\n * Camelize a hyphen-delimited string.\n */\nvar camelizeRE = /-(\\w)/g;\nvar camelize = cached(function (str) {\n return str.replace(camelizeRE, function (_, c) { return (c ? c.toUpperCase() : ''); });\n});\n/**\n * Capitalize a string.\n */\nvar capitalize = cached(function (str) {\n return str.charAt(0).toUpperCase() + str.slice(1);\n});\n/**\n * Hyphenate a camelCase string.\n */\nvar hyphenateRE = /\\B([A-Z])/g;\nvar hyphenate = cached(function (str) {\n return str.replace(hyphenateRE, '-$1').toLowerCase();\n});\n/**\n * Simple bind polyfill for environments that do not support it,\n * e.g., PhantomJS 1.x. Technically, we don't need this anymore\n * since native bind is now performant enough in most browsers.\n * But removing it would mean breaking code that was able to run in\n * PhantomJS 1.x, so this must be kept for backward compatibility.\n */\n/* istanbul ignore next */\nfunction polyfillBind(fn, ctx) {\n function boundFn(a) {\n var l = arguments.length;\n return l\n ? l > 1\n ? fn.apply(ctx, arguments)\n : fn.call(ctx, a)\n : fn.call(ctx);\n }\n boundFn._length = fn.length;\n return boundFn;\n}\nfunction nativeBind(fn, ctx) {\n return fn.bind(ctx);\n}\n// @ts-expect-error bind cannot be `undefined`\nvar bind = Function.prototype.bind ? nativeBind : polyfillBind;\n/**\n * Convert an Array-like object to a real Array.\n */\nfunction toArray(list, start) {\n start = start || 0;\n var i = list.length - start;\n var ret = new Array(i);\n while (i--) {\n ret[i] = list[i + start];\n }\n return ret;\n}\n/**\n * Mix properties into target object.\n */\nfunction extend(to, _from) {\n for (var key in _from) {\n to[key] = _from[key];\n }\n return to;\n}\n/**\n * Merge an Array of Objects into a single Object.\n */\nfunction toObject(arr) {\n var res = {};\n for (var i = 0; i < arr.length; i++) {\n if (arr[i]) {\n extend(res, arr[i]);\n }\n }\n return res;\n}\n/* eslint-disable no-unused-vars */\n/**\n * Perform no operation.\n * Stubbing args to make Flow happy without leaving useless transpiled code\n * with ...rest (https://flow.org/blog/2017/05/07/Strict-Function-Call-Arity/).\n */\nfunction noop(a, b, c) { }\n/**\n * Always return false.\n */\nvar no = function (a, b, c) { return false; };\n/* eslint-enable no-unused-vars */\n/**\n * Return the same value.\n */\nvar identity = function (_) { return _; };\n/**\n * Check if two values are loosely equal - that is,\n * if they are plain objects, do they have the same shape?\n */\nfunction looseEqual(a, b) {\n if (a === b)\n return true;\n var isObjectA = isObject(a);\n var isObjectB = isObject(b);\n if (isObjectA && isObjectB) {\n try {\n var isArrayA = Array.isArray(a);\n var isArrayB = Array.isArray(b);\n if (isArrayA && isArrayB) {\n return (a.length === b.length &&\n a.every(function (e, i) {\n return looseEqual(e, b[i]);\n }));\n }\n else if (a instanceof Date && b instanceof Date) {\n return a.getTime() === b.getTime();\n }\n else if (!isArrayA && !isArrayB) {\n var keysA = Object.keys(a);\n var keysB = Object.keys(b);\n return (keysA.length === keysB.length &&\n keysA.every(function (key) {\n return looseEqual(a[key], b[key]);\n }));\n }\n else {\n /* istanbul ignore next */\n return false;\n }\n }\n catch (e) {\n /* istanbul ignore next */\n return false;\n }\n }\n else if (!isObjectA && !isObjectB) {\n return String(a) === String(b);\n }\n else {\n return false;\n }\n}\n/**\n * Return the first index at which a loosely equal value can be\n * found in the array (if value is a plain object, the array must\n * contain an object of the same shape), or -1 if it is not present.\n */\nfunction looseIndexOf(arr, val) {\n for (var i = 0; i < arr.length; i++) {\n if (looseEqual(arr[i], val))\n return i;\n }\n return -1;\n}\n/**\n * Ensure a function is called only once.\n */\nfunction once(fn) {\n var called = false;\n return function () {\n if (!called) {\n called = true;\n fn.apply(this, arguments);\n }\n };\n}\n// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is#polyfill\nfunction hasChanged(x, y) {\n if (x === y) {\n return x === 0 && 1 / x !== 1 / y;\n }\n else {\n return x === x || y === y;\n }\n}\n\nvar SSR_ATTR = 'data-server-rendered';\nvar ASSET_TYPES = ['component', 'directive', 'filter'];\nvar LIFECYCLE_HOOKS = [\n 'beforeCreate',\n 'created',\n 'beforeMount',\n 'mounted',\n 'beforeUpdate',\n 'updated',\n 'beforeDestroy',\n 'destroyed',\n 'activated',\n 'deactivated',\n 'errorCaptured',\n 'serverPrefetch',\n 'renderTracked',\n 'renderTriggered'\n];\n\nvar config = {\n /**\n * Option merge strategies (used in core/util/options)\n */\n // $flow-disable-line\n optionMergeStrategies: Object.create(null),\n /**\n * Whether to suppress warnings.\n */\n silent: false,\n /**\n * Show production mode tip message on boot?\n */\n productionTip: process.env.NODE_ENV !== 'production',\n /**\n * Whether to enable devtools\n */\n devtools: process.env.NODE_ENV !== 'production',\n /**\n * Whether to record perf\n */\n performance: false,\n /**\n * Error handler for watcher errors\n */\n errorHandler: null,\n /**\n * Warn handler for watcher warns\n */\n warnHandler: null,\n /**\n * Ignore certain custom elements\n */\n ignoredElements: [],\n /**\n * Custom user key aliases for v-on\n */\n // $flow-disable-line\n keyCodes: Object.create(null),\n /**\n * Check if a tag is reserved so that it cannot be registered as a\n * component. This is platform-dependent and may be overwritten.\n */\n isReservedTag: no,\n /**\n * Check if an attribute is reserved so that it cannot be used as a component\n * prop. This is platform-dependent and may be overwritten.\n */\n isReservedAttr: no,\n /**\n * Check if a tag is an unknown element.\n * Platform-dependent.\n */\n isUnknownElement: no,\n /**\n * Get the namespace of an element\n */\n getTagNamespace: noop,\n /**\n * Parse the real tag name for the specific platform.\n */\n parsePlatformTagName: identity,\n /**\n * Check if an attribute must be bound using property, e.g. value\n * Platform-dependent.\n */\n mustUseProp: no,\n /**\n * Perform updates asynchronously. Intended to be used by Vue Test Utils\n * This will significantly reduce performance if set to false.\n */\n async: true,\n /**\n * Exposed for legacy reasons\n */\n _lifecycleHooks: LIFECYCLE_HOOKS\n};\n\n/**\n * unicode letters used for parsing html tags, component names and property paths.\n * using https://www.w3.org/TR/html53/semantics-scripting.html#potentialcustomelementname\n * skipping \\u10000-\\uEFFFF due to it freezing up PhantomJS\n */\nvar unicodeRegExp = /a-zA-Z\\u00B7\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u203F-\\u2040\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD/;\n/**\n * Check if a string starts with $ or _\n */\nfunction isReserved(str) {\n var c = (str + '').charCodeAt(0);\n return c === 0x24 || c === 0x5f;\n}\n/**\n * Define a property.\n */\nfunction def(obj, key, val, enumerable) {\n Object.defineProperty(obj, key, {\n value: val,\n enumerable: !!enumerable,\n writable: true,\n configurable: true\n });\n}\n/**\n * Parse simple path.\n */\nvar bailRE = new RegExp(\"[^\".concat(unicodeRegExp.source, \".$_\\\\d]\"));\nfunction parsePath(path) {\n if (bailRE.test(path)) {\n return;\n }\n var segments = path.split('.');\n return function (obj) {\n for (var i = 0; i < segments.length; i++) {\n if (!obj)\n return;\n obj = obj[segments[i]];\n }\n return obj;\n };\n}\n\n// can we use __proto__?\nvar hasProto = '__proto__' in {};\n// Browser environment sniffing\nvar inBrowser = typeof window !== 'undefined';\nvar UA = inBrowser && window.navigator.userAgent.toLowerCase();\nvar isIE = UA && /msie|trident/.test(UA);\nvar isIE9 = UA && UA.indexOf('msie 9.0') > 0;\nvar isEdge = UA && UA.indexOf('edge/') > 0;\nUA && UA.indexOf('android') > 0;\nvar isIOS = UA && /iphone|ipad|ipod|ios/.test(UA);\nUA && /chrome\\/\\d+/.test(UA) && !isEdge;\nUA && /phantomjs/.test(UA);\nvar isFF = UA && UA.match(/firefox\\/(\\d+)/);\n// Firefox has a \"watch\" function on Object.prototype...\n// @ts-expect-error firebox support\nvar nativeWatch = {}.watch;\nvar supportsPassive = false;\nif (inBrowser) {\n try {\n var opts = {};\n Object.defineProperty(opts, 'passive', {\n get: function () {\n /* istanbul ignore next */\n supportsPassive = true;\n }\n }); // https://github.com/facebook/flow/issues/285\n window.addEventListener('test-passive', null, opts);\n }\n catch (e) { }\n}\n// this needs to be lazy-evaled because vue may be required before\n// vue-server-renderer can set VUE_ENV\nvar _isServer;\nvar isServerRendering = function () {\n if (_isServer === undefined) {\n /* istanbul ignore if */\n if (!inBrowser && typeof global !== 'undefined') {\n // detect presence of vue-server-renderer and avoid\n // Webpack shimming the process\n _isServer =\n global['process'] && global['process'].env.VUE_ENV === 'server';\n }\n else {\n _isServer = false;\n }\n }\n return _isServer;\n};\n// detect devtools\nvar devtools = inBrowser && window.__VUE_DEVTOOLS_GLOBAL_HOOK__;\n/* istanbul ignore next */\nfunction isNative(Ctor) {\n return typeof Ctor === 'function' && /native code/.test(Ctor.toString());\n}\nvar hasSymbol = typeof Symbol !== 'undefined' &&\n isNative(Symbol) &&\n typeof Reflect !== 'undefined' &&\n isNative(Reflect.ownKeys);\nvar _Set; // $flow-disable-line\n/* istanbul ignore if */ if (typeof Set !== 'undefined' && isNative(Set)) {\n // use native Set when available.\n _Set = Set;\n}\nelse {\n // a non-standard Set polyfill that only works with primitive keys.\n _Set = /** @class */ (function () {\n function Set() {\n this.set = Object.create(null);\n }\n Set.prototype.has = function (key) {\n return this.set[key] === true;\n };\n Set.prototype.add = function (key) {\n this.set[key] = true;\n };\n Set.prototype.clear = function () {\n this.set = Object.create(null);\n };\n return Set;\n }());\n}\n\nvar currentInstance = null;\n/**\n * This is exposed for compatibility with v3 (e.g. some functions in VueUse\n * relies on it). Do not use this internally, just use `currentInstance`.\n *\n * @internal this function needs manual type declaration because it relies\n * on previously manually authored types from Vue 2\n */\nfunction getCurrentInstance() {\n return currentInstance && { proxy: currentInstance };\n}\n/**\n * @internal\n */\nfunction setCurrentInstance(vm) {\n if (vm === void 0) { vm = null; }\n if (!vm)\n currentInstance && currentInstance._scope.off();\n currentInstance = vm;\n vm && vm._scope.on();\n}\n\n/**\n * @internal\n */\nvar VNode = /** @class */ (function () {\n function VNode(tag, data, children, text, elm, context, componentOptions, asyncFactory) {\n this.tag = tag;\n this.data = data;\n this.children = children;\n this.text = text;\n this.elm = elm;\n this.ns = undefined;\n this.context = context;\n this.fnContext = undefined;\n this.fnOptions = undefined;\n this.fnScopeId = undefined;\n this.key = data && data.key;\n this.componentOptions = componentOptions;\n this.componentInstance = undefined;\n this.parent = undefined;\n this.raw = false;\n this.isStatic = false;\n this.isRootInsert = true;\n this.isComment = false;\n this.isCloned = false;\n this.isOnce = false;\n this.asyncFactory = asyncFactory;\n this.asyncMeta = undefined;\n this.isAsyncPlaceholder = false;\n }\n Object.defineProperty(VNode.prototype, \"child\", {\n // DEPRECATED: alias for componentInstance for backwards compat.\n /* istanbul ignore next */\n get: function () {\n return this.componentInstance;\n },\n enumerable: false,\n configurable: true\n });\n return VNode;\n}());\nvar createEmptyVNode = function (text) {\n if (text === void 0) { text = ''; }\n var node = new VNode();\n node.text = text;\n node.isComment = true;\n return node;\n};\nfunction createTextVNode(val) {\n return new VNode(undefined, undefined, undefined, String(val));\n}\n// optimized shallow clone\n// used for static nodes and slot nodes because they may be reused across\n// multiple renders, cloning them avoids errors when DOM manipulations rely\n// on their elm reference.\nfunction cloneVNode(vnode) {\n var cloned = new VNode(vnode.tag, vnode.data, \n // #7975\n // clone children array to avoid mutating original in case of cloning\n // a child.\n vnode.children && vnode.children.slice(), vnode.text, vnode.elm, vnode.context, vnode.componentOptions, vnode.asyncFactory);\n cloned.ns = vnode.ns;\n cloned.isStatic = vnode.isStatic;\n cloned.key = vnode.key;\n cloned.isComment = vnode.isComment;\n cloned.fnContext = vnode.fnContext;\n cloned.fnOptions = vnode.fnOptions;\n cloned.fnScopeId = vnode.fnScopeId;\n cloned.asyncMeta = vnode.asyncMeta;\n cloned.isCloned = true;\n return cloned;\n}\n\n/******************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n\r\nvar __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n };\r\n return __assign.apply(this, arguments);\r\n};\r\n\r\ntypeof SuppressedError === \"function\" ? SuppressedError : function (error, suppressed, message) {\r\n var e = new Error(message);\r\n return e.name = \"SuppressedError\", e.error = error, e.suppressed = suppressed, e;\r\n};\n\nvar uid$2 = 0;\nvar pendingCleanupDeps = [];\nvar cleanupDeps = function () {\n for (var i = 0; i < pendingCleanupDeps.length; i++) {\n var dep = pendingCleanupDeps[i];\n dep.subs = dep.subs.filter(function (s) { return s; });\n dep._pending = false;\n }\n pendingCleanupDeps.length = 0;\n};\n/**\n * A dep is an observable that can have multiple\n * directives subscribing to it.\n * @internal\n */\nvar Dep = /** @class */ (function () {\n function Dep() {\n // pending subs cleanup\n this._pending = false;\n this.id = uid$2++;\n this.subs = [];\n }\n Dep.prototype.addSub = function (sub) {\n this.subs.push(sub);\n };\n Dep.prototype.removeSub = function (sub) {\n // #12696 deps with massive amount of subscribers are extremely slow to\n // clean up in Chromium\n // to workaround this, we unset the sub for now, and clear them on\n // next scheduler flush.\n this.subs[this.subs.indexOf(sub)] = null;\n if (!this._pending) {\n this._pending = true;\n pendingCleanupDeps.push(this);\n }\n };\n Dep.prototype.depend = function (info) {\n if (Dep.target) {\n Dep.target.addDep(this);\n if (process.env.NODE_ENV !== 'production' && info && Dep.target.onTrack) {\n Dep.target.onTrack(__assign({ effect: Dep.target }, info));\n }\n }\n };\n Dep.prototype.notify = function (info) {\n // stabilize the subscriber list first\n var subs = this.subs.filter(function (s) { return s; });\n if (process.env.NODE_ENV !== 'production' && !config.async) {\n // subs aren't sorted in scheduler if not running async\n // we need to sort them now to make sure they fire in correct\n // order\n subs.sort(function (a, b) { return a.id - b.id; });\n }\n for (var i = 0, l = subs.length; i < l; i++) {\n var sub = subs[i];\n if (process.env.NODE_ENV !== 'production' && info) {\n sub.onTrigger &&\n sub.onTrigger(__assign({ effect: subs[i] }, info));\n }\n sub.update();\n }\n };\n return Dep;\n}());\n// The current target watcher being evaluated.\n// This is globally unique because only one watcher\n// can be evaluated at a time.\nDep.target = null;\nvar targetStack = [];\nfunction pushTarget(target) {\n targetStack.push(target);\n Dep.target = target;\n}\nfunction popTarget() {\n targetStack.pop();\n Dep.target = targetStack[targetStack.length - 1];\n}\n\n/*\n * not type checking this file because flow doesn't play well with\n * dynamically accessing methods on Array prototype\n */\nvar arrayProto = Array.prototype;\nvar arrayMethods = Object.create(arrayProto);\nvar methodsToPatch = [\n 'push',\n 'pop',\n 'shift',\n 'unshift',\n 'splice',\n 'sort',\n 'reverse'\n];\n/**\n * Intercept mutating methods and emit events\n */\nmethodsToPatch.forEach(function (method) {\n // cache original method\n var original = arrayProto[method];\n def(arrayMethods, method, function mutator() {\n var args = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n args[_i] = arguments[_i];\n }\n var result = original.apply(this, args);\n var ob = this.__ob__;\n var inserted;\n switch (method) {\n case 'push':\n case 'unshift':\n inserted = args;\n break;\n case 'splice':\n inserted = args.slice(2);\n break;\n }\n if (inserted)\n ob.observeArray(inserted);\n // notify change\n if (process.env.NODE_ENV !== 'production') {\n ob.dep.notify({\n type: \"array mutation\" /* TriggerOpTypes.ARRAY_MUTATION */,\n target: this,\n key: method\n });\n }\n else {\n ob.dep.notify();\n }\n return result;\n });\n});\n\nvar arrayKeys = Object.getOwnPropertyNames(arrayMethods);\nvar NO_INITIAL_VALUE = {};\n/**\n * In some cases we may want to disable observation inside a component's\n * update computation.\n */\nvar shouldObserve = true;\nfunction toggleObserving(value) {\n shouldObserve = value;\n}\n// ssr mock dep\nvar mockDep = {\n notify: noop,\n depend: noop,\n addSub: noop,\n removeSub: noop\n};\n/**\n * Observer class that is attached to each observed\n * object. Once attached, the observer converts the target\n * object's property keys into getter/setters that\n * collect dependencies and dispatch updates.\n */\nvar Observer = /** @class */ (function () {\n function Observer(value, shallow, mock) {\n if (shallow === void 0) { shallow = false; }\n if (mock === void 0) { mock = false; }\n this.value = value;\n this.shallow = shallow;\n this.mock = mock;\n // this.value = value\n this.dep = mock ? mockDep : new Dep();\n this.vmCount = 0;\n def(value, '__ob__', this);\n if (isArray(value)) {\n if (!mock) {\n if (hasProto) {\n value.__proto__ = arrayMethods;\n /* eslint-enable no-proto */\n }\n else {\n for (var i = 0, l = arrayKeys.length; i < l; i++) {\n var key = arrayKeys[i];\n def(value, key, arrayMethods[key]);\n }\n }\n }\n if (!shallow) {\n this.observeArray(value);\n }\n }\n else {\n /**\n * Walk through all properties and convert them into\n * getter/setters. This method should only be called when\n * value type is Object.\n */\n var keys = Object.keys(value);\n for (var i = 0; i < keys.length; i++) {\n var key = keys[i];\n defineReactive(value, key, NO_INITIAL_VALUE, undefined, shallow, mock);\n }\n }\n }\n /**\n * Observe a list of Array items.\n */\n Observer.prototype.observeArray = function (value) {\n for (var i = 0, l = value.length; i < l; i++) {\n observe(value[i], false, this.mock);\n }\n };\n return Observer;\n}());\n// helpers\n/**\n * Attempt to create an observer instance for a value,\n * returns the new observer if successfully observed,\n * or the existing observer if the value already has one.\n */\nfunction observe(value, shallow, ssrMockReactivity) {\n if (value && hasOwn(value, '__ob__') && value.__ob__ instanceof Observer) {\n return value.__ob__;\n }\n if (shouldObserve &&\n (ssrMockReactivity || !isServerRendering()) &&\n (isArray(value) || isPlainObject(value)) &&\n Object.isExtensible(value) &&\n !value.__v_skip /* ReactiveFlags.SKIP */ &&\n !isRef(value) &&\n !(value instanceof VNode)) {\n return new Observer(value, shallow, ssrMockReactivity);\n }\n}\n/**\n * Define a reactive property on an Object.\n */\nfunction defineReactive(obj, key, val, customSetter, shallow, mock, observeEvenIfShallow) {\n if (observeEvenIfShallow === void 0) { observeEvenIfShallow = false; }\n var dep = new Dep();\n var property = Object.getOwnPropertyDescriptor(obj, key);\n if (property && property.configurable === false) {\n return;\n }\n // cater for pre-defined getter/setters\n var getter = property && property.get;\n var setter = property && property.set;\n if ((!getter || setter) &&\n (val === NO_INITIAL_VALUE || arguments.length === 2)) {\n val = obj[key];\n }\n var childOb = shallow ? val && val.__ob__ : observe(val, false, mock);\n Object.defineProperty(obj, key, {\n enumerable: true,\n configurable: true,\n get: function reactiveGetter() {\n var value = getter ? getter.call(obj) : val;\n if (Dep.target) {\n if (process.env.NODE_ENV !== 'production') {\n dep.depend({\n target: obj,\n type: \"get\" /* TrackOpTypes.GET */,\n key: key\n });\n }\n else {\n dep.depend();\n }\n if (childOb) {\n childOb.dep.depend();\n if (isArray(value)) {\n dependArray(value);\n }\n }\n }\n return isRef(value) && !shallow ? value.value : value;\n },\n set: function reactiveSetter(newVal) {\n var value = getter ? getter.call(obj) : val;\n if (!hasChanged(value, newVal)) {\n return;\n }\n if (process.env.NODE_ENV !== 'production' && customSetter) {\n customSetter();\n }\n if (setter) {\n setter.call(obj, newVal);\n }\n else if (getter) {\n // #7981: for accessor properties without setter\n return;\n }\n else if (!shallow && isRef(value) && !isRef(newVal)) {\n value.value = newVal;\n return;\n }\n else {\n val = newVal;\n }\n childOb = shallow ? newVal && newVal.__ob__ : observe(newVal, false, mock);\n if (process.env.NODE_ENV !== 'production') {\n dep.notify({\n type: \"set\" /* TriggerOpTypes.SET */,\n target: obj,\n key: key,\n newValue: newVal,\n oldValue: value\n });\n }\n else {\n dep.notify();\n }\n }\n });\n return dep;\n}\nfunction set(target, key, val) {\n if (process.env.NODE_ENV !== 'production' && (isUndef(target) || isPrimitive(target))) {\n warn(\"Cannot set reactive property on undefined, null, or primitive value: \".concat(target));\n }\n if (isReadonly(target)) {\n process.env.NODE_ENV !== 'production' && warn(\"Set operation on key \\\"\".concat(key, \"\\\" failed: target is readonly.\"));\n return;\n }\n var ob = target.__ob__;\n if (isArray(target) && isValidArrayIndex(key)) {\n target.length = Math.max(target.length, key);\n target.splice(key, 1, val);\n // when mocking for SSR, array methods are not hijacked\n if (ob && !ob.shallow && ob.mock) {\n observe(val, false, true);\n }\n return val;\n }\n if (key in target && !(key in Object.prototype)) {\n target[key] = val;\n return val;\n }\n if (target._isVue || (ob && ob.vmCount)) {\n process.env.NODE_ENV !== 'production' &&\n warn('Avoid adding reactive properties to a Vue instance or its root $data ' +\n 'at runtime - declare it upfront in the data option.');\n return val;\n }\n if (!ob) {\n target[key] = val;\n return val;\n }\n defineReactive(ob.value, key, val, undefined, ob.shallow, ob.mock);\n if (process.env.NODE_ENV !== 'production') {\n ob.dep.notify({\n type: \"add\" /* TriggerOpTypes.ADD */,\n target: target,\n key: key,\n newValue: val,\n oldValue: undefined\n });\n }\n else {\n ob.dep.notify();\n }\n return val;\n}\nfunction del(target, key) {\n if (process.env.NODE_ENV !== 'production' && (isUndef(target) || isPrimitive(target))) {\n warn(\"Cannot delete reactive property on undefined, null, or primitive value: \".concat(target));\n }\n if (isArray(target) && isValidArrayIndex(key)) {\n target.splice(key, 1);\n return;\n }\n var ob = target.__ob__;\n if (target._isVue || (ob && ob.vmCount)) {\n process.env.NODE_ENV !== 'production' &&\n warn('Avoid deleting properties on a Vue instance or its root $data ' +\n '- just set it to null.');\n return;\n }\n if (isReadonly(target)) {\n process.env.NODE_ENV !== 'production' &&\n warn(\"Delete operation on key \\\"\".concat(key, \"\\\" failed: target is readonly.\"));\n return;\n }\n if (!hasOwn(target, key)) {\n return;\n }\n delete target[key];\n if (!ob) {\n return;\n }\n if (process.env.NODE_ENV !== 'production') {\n ob.dep.notify({\n type: \"delete\" /* TriggerOpTypes.DELETE */,\n target: target,\n key: key\n });\n }\n else {\n ob.dep.notify();\n }\n}\n/**\n * Collect dependencies on array elements when the array is touched, since\n * we cannot intercept array element access like property getters.\n */\nfunction dependArray(value) {\n for (var e = void 0, i = 0, l = value.length; i < l; i++) {\n e = value[i];\n if (e && e.__ob__) {\n e.__ob__.dep.depend();\n }\n if (isArray(e)) {\n dependArray(e);\n }\n }\n}\n\nfunction reactive(target) {\n makeReactive(target, false);\n return target;\n}\n/**\n * Return a shallowly-reactive copy of the original object, where only the root\n * level properties are reactive. It also does not auto-unwrap refs (even at the\n * root level).\n */\nfunction shallowReactive(target) {\n makeReactive(target, true);\n def(target, \"__v_isShallow\" /* ReactiveFlags.IS_SHALLOW */, true);\n return target;\n}\nfunction makeReactive(target, shallow) {\n // if trying to observe a readonly proxy, return the readonly version.\n if (!isReadonly(target)) {\n if (process.env.NODE_ENV !== 'production') {\n if (isArray(target)) {\n warn(\"Avoid using Array as root value for \".concat(shallow ? \"shallowReactive()\" : \"reactive()\", \" as it cannot be tracked in watch() or watchEffect(). Use \").concat(shallow ? \"shallowRef()\" : \"ref()\", \" instead. This is a Vue-2-only limitation.\"));\n }\n var existingOb = target && target.__ob__;\n if (existingOb && existingOb.shallow !== shallow) {\n warn(\"Target is already a \".concat(existingOb.shallow ? \"\" : \"non-\", \"shallow reactive object, and cannot be converted to \").concat(shallow ? \"\" : \"non-\", \"shallow.\"));\n }\n }\n var ob = observe(target, shallow, isServerRendering() /* ssr mock reactivity */);\n if (process.env.NODE_ENV !== 'production' && !ob) {\n if (target == null || isPrimitive(target)) {\n warn(\"value cannot be made reactive: \".concat(String(target)));\n }\n if (isCollectionType(target)) {\n warn(\"Vue 2 does not support reactive collection types such as Map or Set.\");\n }\n }\n }\n}\nfunction isReactive(value) {\n if (isReadonly(value)) {\n return isReactive(value[\"__v_raw\" /* ReactiveFlags.RAW */]);\n }\n return !!(value && value.__ob__);\n}\nfunction isShallow(value) {\n return !!(value && value.__v_isShallow);\n}\nfunction isReadonly(value) {\n return !!(value && value.__v_isReadonly);\n}\nfunction isProxy(value) {\n return isReactive(value) || isReadonly(value);\n}\nfunction toRaw(observed) {\n var raw = observed && observed[\"__v_raw\" /* ReactiveFlags.RAW */];\n return raw ? toRaw(raw) : observed;\n}\nfunction markRaw(value) {\n // non-extensible objects won't be observed anyway\n if (Object.isExtensible(value)) {\n def(value, \"__v_skip\" /* ReactiveFlags.SKIP */, true);\n }\n return value;\n}\n/**\n * @internal\n */\nfunction isCollectionType(value) {\n var type = toRawType(value);\n return (type === 'Map' || type === 'WeakMap' || type === 'Set' || type === 'WeakSet');\n}\n\n/**\n * @internal\n */\nvar RefFlag = \"__v_isRef\";\nfunction isRef(r) {\n return !!(r && r.__v_isRef === true);\n}\nfunction ref$1(value) {\n return createRef(value, false);\n}\nfunction shallowRef(value) {\n return createRef(value, true);\n}\nfunction createRef(rawValue, shallow) {\n if (isRef(rawValue)) {\n return rawValue;\n }\n var ref = {};\n def(ref, RefFlag, true);\n def(ref, \"__v_isShallow\" /* ReactiveFlags.IS_SHALLOW */, shallow);\n def(ref, 'dep', defineReactive(ref, 'value', rawValue, null, shallow, isServerRendering()));\n return ref;\n}\nfunction triggerRef(ref) {\n if (process.env.NODE_ENV !== 'production' && !ref.dep) {\n warn(\"received object is not a triggerable ref.\");\n }\n if (process.env.NODE_ENV !== 'production') {\n ref.dep &&\n ref.dep.notify({\n type: \"set\" /* TriggerOpTypes.SET */,\n target: ref,\n key: 'value'\n });\n }\n else {\n ref.dep && ref.dep.notify();\n }\n}\nfunction unref(ref) {\n return isRef(ref) ? ref.value : ref;\n}\nfunction proxyRefs(objectWithRefs) {\n if (isReactive(objectWithRefs)) {\n return objectWithRefs;\n }\n var proxy = {};\n var keys = Object.keys(objectWithRefs);\n for (var i = 0; i < keys.length; i++) {\n proxyWithRefUnwrap(proxy, objectWithRefs, keys[i]);\n }\n return proxy;\n}\nfunction proxyWithRefUnwrap(target, source, key) {\n Object.defineProperty(target, key, {\n enumerable: true,\n configurable: true,\n get: function () {\n var val = source[key];\n if (isRef(val)) {\n return val.value;\n }\n else {\n var ob = val && val.__ob__;\n if (ob)\n ob.dep.depend();\n return val;\n }\n },\n set: function (value) {\n var oldValue = source[key];\n if (isRef(oldValue) && !isRef(value)) {\n oldValue.value = value;\n }\n else {\n source[key] = value;\n }\n }\n });\n}\nfunction customRef(factory) {\n var dep = new Dep();\n var _a = factory(function () {\n if (process.env.NODE_ENV !== 'production') {\n dep.depend({\n target: ref,\n type: \"get\" /* TrackOpTypes.GET */,\n key: 'value'\n });\n }\n else {\n dep.depend();\n }\n }, function () {\n if (process.env.NODE_ENV !== 'production') {\n dep.notify({\n target: ref,\n type: \"set\" /* TriggerOpTypes.SET */,\n key: 'value'\n });\n }\n else {\n dep.notify();\n }\n }), get = _a.get, set = _a.set;\n var ref = {\n get value() {\n return get();\n },\n set value(newVal) {\n set(newVal);\n }\n };\n def(ref, RefFlag, true);\n return ref;\n}\nfunction toRefs(object) {\n if (process.env.NODE_ENV !== 'production' && !isReactive(object)) {\n warn(\"toRefs() expects a reactive object but received a plain one.\");\n }\n var ret = isArray(object) ? new Array(object.length) : {};\n for (var key in object) {\n ret[key] = toRef(object, key);\n }\n return ret;\n}\nfunction toRef(object, key, defaultValue) {\n var val = object[key];\n if (isRef(val)) {\n return val;\n }\n var ref = {\n get value() {\n var val = object[key];\n return val === undefined ? defaultValue : val;\n },\n set value(newVal) {\n object[key] = newVal;\n }\n };\n def(ref, RefFlag, true);\n return ref;\n}\n\nvar rawToReadonlyFlag = \"__v_rawToReadonly\";\nvar rawToShallowReadonlyFlag = \"__v_rawToShallowReadonly\";\nfunction readonly(target) {\n return createReadonly(target, false);\n}\nfunction createReadonly(target, shallow) {\n if (!isPlainObject(target)) {\n if (process.env.NODE_ENV !== 'production') {\n if (isArray(target)) {\n warn(\"Vue 2 does not support readonly arrays.\");\n }\n else if (isCollectionType(target)) {\n warn(\"Vue 2 does not support readonly collection types such as Map or Set.\");\n }\n else {\n warn(\"value cannot be made readonly: \".concat(typeof target));\n }\n }\n return target;\n }\n if (process.env.NODE_ENV !== 'production' && !Object.isExtensible(target)) {\n warn(\"Vue 2 does not support creating readonly proxy for non-extensible object.\");\n }\n // already a readonly object\n if (isReadonly(target)) {\n return target;\n }\n // already has a readonly proxy\n var existingFlag = shallow ? rawToShallowReadonlyFlag : rawToReadonlyFlag;\n var existingProxy = target[existingFlag];\n if (existingProxy) {\n return existingProxy;\n }\n var proxy = Object.create(Object.getPrototypeOf(target));\n def(target, existingFlag, proxy);\n def(proxy, \"__v_isReadonly\" /* ReactiveFlags.IS_READONLY */, true);\n def(proxy, \"__v_raw\" /* ReactiveFlags.RAW */, target);\n if (isRef(target)) {\n def(proxy, RefFlag, true);\n }\n if (shallow || isShallow(target)) {\n def(proxy, \"__v_isShallow\" /* ReactiveFlags.IS_SHALLOW */, true);\n }\n var keys = Object.keys(target);\n for (var i = 0; i < keys.length; i++) {\n defineReadonlyProperty(proxy, target, keys[i], shallow);\n }\n return proxy;\n}\nfunction defineReadonlyProperty(proxy, target, key, shallow) {\n Object.defineProperty(proxy, key, {\n enumerable: true,\n configurable: true,\n get: function () {\n var val = target[key];\n return shallow || !isPlainObject(val) ? val : readonly(val);\n },\n set: function () {\n process.env.NODE_ENV !== 'production' &&\n warn(\"Set operation on key \\\"\".concat(key, \"\\\" failed: target is readonly.\"));\n }\n });\n}\n/**\n * Returns a reactive-copy of the original object, where only the root level\n * properties are readonly, and does NOT unwrap refs nor recursively convert\n * returned properties.\n * This is used for creating the props proxy object for stateful components.\n */\nfunction shallowReadonly(target) {\n return createReadonly(target, true);\n}\n\nfunction computed(getterOrOptions, debugOptions) {\n var getter;\n var setter;\n var onlyGetter = isFunction(getterOrOptions);\n if (onlyGetter) {\n getter = getterOrOptions;\n setter = process.env.NODE_ENV !== 'production'\n ? function () {\n warn('Write operation failed: computed value is readonly');\n }\n : noop;\n }\n else {\n getter = getterOrOptions.get;\n setter = getterOrOptions.set;\n }\n var watcher = isServerRendering()\n ? null\n : new Watcher(currentInstance, getter, noop, { lazy: true });\n if (process.env.NODE_ENV !== 'production' && watcher && debugOptions) {\n watcher.onTrack = debugOptions.onTrack;\n watcher.onTrigger = debugOptions.onTrigger;\n }\n var ref = {\n // some libs rely on the presence effect for checking computed refs\n // from normal refs, but the implementation doesn't matter\n effect: watcher,\n get value() {\n if (watcher) {\n if (watcher.dirty) {\n watcher.evaluate();\n }\n if (Dep.target) {\n if (process.env.NODE_ENV !== 'production' && Dep.target.onTrack) {\n Dep.target.onTrack({\n effect: Dep.target,\n target: ref,\n type: \"get\" /* TrackOpTypes.GET */,\n key: 'value'\n });\n }\n watcher.depend();\n }\n return watcher.value;\n }\n else {\n return getter();\n }\n },\n set value(newVal) {\n setter(newVal);\n }\n };\n def(ref, RefFlag, true);\n def(ref, \"__v_isReadonly\" /* ReactiveFlags.IS_READONLY */, onlyGetter);\n return ref;\n}\n\nvar WATCHER = \"watcher\";\nvar WATCHER_CB = \"\".concat(WATCHER, \" callback\");\nvar WATCHER_GETTER = \"\".concat(WATCHER, \" getter\");\nvar WATCHER_CLEANUP = \"\".concat(WATCHER, \" cleanup\");\n// Simple effect.\nfunction watchEffect(effect, options) {\n return doWatch(effect, null, options);\n}\nfunction watchPostEffect(effect, options) {\n return doWatch(effect, null, (process.env.NODE_ENV !== 'production'\n ? __assign(__assign({}, options), { flush: 'post' }) : { flush: 'post' }));\n}\nfunction watchSyncEffect(effect, options) {\n return doWatch(effect, null, (process.env.NODE_ENV !== 'production'\n ? __assign(__assign({}, options), { flush: 'sync' }) : { flush: 'sync' }));\n}\n// initial value for watchers to trigger on undefined initial values\nvar INITIAL_WATCHER_VALUE = {};\n// implementation\nfunction watch(source, cb, options) {\n if (process.env.NODE_ENV !== 'production' && typeof cb !== 'function') {\n warn(\"`watch(fn, options?)` signature has been moved to a separate API. \" +\n \"Use `watchEffect(fn, options?)` instead. `watch` now only \" +\n \"supports `watch(source, cb, options?) signature.\");\n }\n return doWatch(source, cb, options);\n}\nfunction doWatch(source, cb, _a) {\n var _b = _a === void 0 ? emptyObject : _a, immediate = _b.immediate, deep = _b.deep, _c = _b.flush, flush = _c === void 0 ? 'pre' : _c, onTrack = _b.onTrack, onTrigger = _b.onTrigger;\n if (process.env.NODE_ENV !== 'production' && !cb) {\n if (immediate !== undefined) {\n warn(\"watch() \\\"immediate\\\" option is only respected when using the \" +\n \"watch(source, callback, options?) signature.\");\n }\n if (deep !== undefined) {\n warn(\"watch() \\\"deep\\\" option is only respected when using the \" +\n \"watch(source, callback, options?) signature.\");\n }\n }\n var warnInvalidSource = function (s) {\n warn(\"Invalid watch source: \".concat(s, \". A watch source can only be a getter/effect \") +\n \"function, a ref, a reactive object, or an array of these types.\");\n };\n var instance = currentInstance;\n var call = function (fn, type, args) {\n if (args === void 0) { args = null; }\n var res = invokeWithErrorHandling(fn, null, args, instance, type);\n if (deep && res && res.__ob__)\n res.__ob__.dep.depend();\n return res;\n };\n var getter;\n var forceTrigger = false;\n var isMultiSource = false;\n if (isRef(source)) {\n getter = function () { return source.value; };\n forceTrigger = isShallow(source);\n }\n else if (isReactive(source)) {\n getter = function () {\n source.__ob__.dep.depend();\n return source;\n };\n deep = true;\n }\n else if (isArray(source)) {\n isMultiSource = true;\n forceTrigger = source.some(function (s) { return isReactive(s) || isShallow(s); });\n getter = function () {\n return source.map(function (s) {\n if (isRef(s)) {\n return s.value;\n }\n else if (isReactive(s)) {\n s.__ob__.dep.depend();\n return traverse(s);\n }\n else if (isFunction(s)) {\n return call(s, WATCHER_GETTER);\n }\n else {\n process.env.NODE_ENV !== 'production' && warnInvalidSource(s);\n }\n });\n };\n }\n else if (isFunction(source)) {\n if (cb) {\n // getter with cb\n getter = function () { return call(source, WATCHER_GETTER); };\n }\n else {\n // no cb -> simple effect\n getter = function () {\n if (instance && instance._isDestroyed) {\n return;\n }\n if (cleanup) {\n cleanup();\n }\n return call(source, WATCHER, [onCleanup]);\n };\n }\n }\n else {\n getter = noop;\n process.env.NODE_ENV !== 'production' && warnInvalidSource(source);\n }\n if (cb && deep) {\n var baseGetter_1 = getter;\n getter = function () { return traverse(baseGetter_1()); };\n }\n var cleanup;\n var onCleanup = function (fn) {\n cleanup = watcher.onStop = function () {\n call(fn, WATCHER_CLEANUP);\n };\n };\n // in SSR there is no need to setup an actual effect, and it should be noop\n // unless it's eager\n if (isServerRendering()) {\n // we will also not call the invalidate callback (+ runner is not set up)\n onCleanup = noop;\n if (!cb) {\n getter();\n }\n else if (immediate) {\n call(cb, WATCHER_CB, [\n getter(),\n isMultiSource ? [] : undefined,\n onCleanup\n ]);\n }\n return noop;\n }\n var watcher = new Watcher(currentInstance, getter, noop, {\n lazy: true\n });\n watcher.noRecurse = !cb;\n var oldValue = isMultiSource ? [] : INITIAL_WATCHER_VALUE;\n // overwrite default run\n watcher.run = function () {\n if (!watcher.active) {\n return;\n }\n if (cb) {\n // watch(source, cb)\n var newValue = watcher.get();\n if (deep ||\n forceTrigger ||\n (isMultiSource\n ? newValue.some(function (v, i) {\n return hasChanged(v, oldValue[i]);\n })\n : hasChanged(newValue, oldValue))) {\n // cleanup before running cb again\n if (cleanup) {\n cleanup();\n }\n call(cb, WATCHER_CB, [\n newValue,\n // pass undefined as the old value when it's changed for the first time\n oldValue === INITIAL_WATCHER_VALUE ? undefined : oldValue,\n onCleanup\n ]);\n oldValue = newValue;\n }\n }\n else {\n // watchEffect\n watcher.get();\n }\n };\n if (flush === 'sync') {\n watcher.update = watcher.run;\n }\n else if (flush === 'post') {\n watcher.post = true;\n watcher.update = function () { return queueWatcher(watcher); };\n }\n else {\n // pre\n watcher.update = function () {\n if (instance && instance === currentInstance && !instance._isMounted) {\n // pre-watcher triggered before\n var buffer = instance._preWatchers || (instance._preWatchers = []);\n if (buffer.indexOf(watcher) < 0)\n buffer.push(watcher);\n }\n else {\n queueWatcher(watcher);\n }\n };\n }\n if (process.env.NODE_ENV !== 'production') {\n watcher.onTrack = onTrack;\n watcher.onTrigger = onTrigger;\n }\n // initial run\n if (cb) {\n if (immediate) {\n watcher.run();\n }\n else {\n oldValue = watcher.get();\n }\n }\n else if (flush === 'post' && instance) {\n instance.$once('hook:mounted', function () { return watcher.get(); });\n }\n else {\n watcher.get();\n }\n return function () {\n watcher.teardown();\n };\n}\n\nvar activeEffectScope;\nvar EffectScope = /** @class */ (function () {\n function EffectScope(detached) {\n if (detached === void 0) { detached = false; }\n this.detached = detached;\n /**\n * @internal\n */\n this.active = true;\n /**\n * @internal\n */\n this.effects = [];\n /**\n * @internal\n */\n this.cleanups = [];\n this.parent = activeEffectScope;\n if (!detached && activeEffectScope) {\n this.index =\n (activeEffectScope.scopes || (activeEffectScope.scopes = [])).push(this) - 1;\n }\n }\n EffectScope.prototype.run = function (fn) {\n if (this.active) {\n var currentEffectScope = activeEffectScope;\n try {\n activeEffectScope = this;\n return fn();\n }\n finally {\n activeEffectScope = currentEffectScope;\n }\n }\n else if (process.env.NODE_ENV !== 'production') {\n warn(\"cannot run an inactive effect scope.\");\n }\n };\n /**\n * This should only be called on non-detached scopes\n * @internal\n */\n EffectScope.prototype.on = function () {\n activeEffectScope = this;\n };\n /**\n * This should only be called on non-detached scopes\n * @internal\n */\n EffectScope.prototype.off = function () {\n activeEffectScope = this.parent;\n };\n EffectScope.prototype.stop = function (fromParent) {\n if (this.active) {\n var i = void 0, l = void 0;\n for (i = 0, l = this.effects.length; i < l; i++) {\n this.effects[i].teardown();\n }\n for (i = 0, l = this.cleanups.length; i < l; i++) {\n this.cleanups[i]();\n }\n if (this.scopes) {\n for (i = 0, l = this.scopes.length; i < l; i++) {\n this.scopes[i].stop(true);\n }\n }\n // nested scope, dereference from parent to avoid memory leaks\n if (!this.detached && this.parent && !fromParent) {\n // optimized O(1) removal\n var last = this.parent.scopes.pop();\n if (last && last !== this) {\n this.parent.scopes[this.index] = last;\n last.index = this.index;\n }\n }\n this.parent = undefined;\n this.active = false;\n }\n };\n return EffectScope;\n}());\nfunction effectScope(detached) {\n return new EffectScope(detached);\n}\n/**\n * @internal\n */\nfunction recordEffectScope(effect, scope) {\n if (scope === void 0) { scope = activeEffectScope; }\n if (scope && scope.active) {\n scope.effects.push(effect);\n }\n}\nfunction getCurrentScope() {\n return activeEffectScope;\n}\nfunction onScopeDispose(fn) {\n if (activeEffectScope) {\n activeEffectScope.cleanups.push(fn);\n }\n else if (process.env.NODE_ENV !== 'production') {\n warn(\"onScopeDispose() is called when there is no active effect scope\" +\n \" to be associated with.\");\n }\n}\n\nfunction provide(key, value) {\n if (!currentInstance) {\n if (process.env.NODE_ENV !== 'production') {\n warn(\"provide() can only be used inside setup().\");\n }\n }\n else {\n // TS doesn't allow symbol as index type\n resolveProvided(currentInstance)[key] = value;\n }\n}\nfunction resolveProvided(vm) {\n // by default an instance inherits its parent's provides object\n // but when it needs to provide values of its own, it creates its\n // own provides object using parent provides object as prototype.\n // this way in `inject` we can simply look up injections from direct\n // parent and let the prototype chain do the work.\n var existing = vm._provided;\n var parentProvides = vm.$parent && vm.$parent._provided;\n if (parentProvides === existing) {\n return (vm._provided = Object.create(parentProvides));\n }\n else {\n return existing;\n }\n}\nfunction inject(key, defaultValue, treatDefaultAsFactory) {\n if (treatDefaultAsFactory === void 0) { treatDefaultAsFactory = false; }\n // fallback to `currentRenderingInstance` so that this can be called in\n // a functional component\n var instance = currentInstance;\n if (instance) {\n // #2400\n // to support `app.use` plugins,\n // fallback to appContext's `provides` if the instance is at root\n var provides = instance.$parent && instance.$parent._provided;\n if (provides && key in provides) {\n // TS doesn't allow symbol as index type\n return provides[key];\n }\n else if (arguments.length > 1) {\n return treatDefaultAsFactory && isFunction(defaultValue)\n ? defaultValue.call(instance)\n : defaultValue;\n }\n else if (process.env.NODE_ENV !== 'production') {\n warn(\"injection \\\"\".concat(String(key), \"\\\" not found.\"));\n }\n }\n else if (process.env.NODE_ENV !== 'production') {\n warn(\"inject() can only be used inside setup() or functional components.\");\n }\n}\n\nvar normalizeEvent = cached(function (name) {\n var passive = name.charAt(0) === '&';\n name = passive ? name.slice(1) : name;\n var once = name.charAt(0) === '~'; // Prefixed last, checked first\n name = once ? name.slice(1) : name;\n var capture = name.charAt(0) === '!';\n name = capture ? name.slice(1) : name;\n return {\n name: name,\n once: once,\n capture: capture,\n passive: passive\n };\n});\nfunction createFnInvoker(fns, vm) {\n function invoker() {\n var fns = invoker.fns;\n if (isArray(fns)) {\n var cloned = fns.slice();\n for (var i = 0; i < cloned.length; i++) {\n invokeWithErrorHandling(cloned[i], null, arguments, vm, \"v-on handler\");\n }\n }\n else {\n // return handler return value for single handlers\n return invokeWithErrorHandling(fns, null, arguments, vm, \"v-on handler\");\n }\n }\n invoker.fns = fns;\n return invoker;\n}\nfunction updateListeners(on, oldOn, add, remove, createOnceHandler, vm) {\n var name, cur, old, event;\n for (name in on) {\n cur = on[name];\n old = oldOn[name];\n event = normalizeEvent(name);\n if (isUndef(cur)) {\n process.env.NODE_ENV !== 'production' &&\n warn(\"Invalid handler for event \\\"\".concat(event.name, \"\\\": got \") + String(cur), vm);\n }\n else if (isUndef(old)) {\n if (isUndef(cur.fns)) {\n cur = on[name] = createFnInvoker(cur, vm);\n }\n if (isTrue(event.once)) {\n cur = on[name] = createOnceHandler(event.name, cur, event.capture);\n }\n add(event.name, cur, event.capture, event.passive, event.params);\n }\n else if (cur !== old) {\n old.fns = cur;\n on[name] = old;\n }\n }\n for (name in oldOn) {\n if (isUndef(on[name])) {\n event = normalizeEvent(name);\n remove(event.name, oldOn[name], event.capture);\n }\n }\n}\n\nfunction mergeVNodeHook(def, hookKey, hook) {\n if (def instanceof VNode) {\n def = def.data.hook || (def.data.hook = {});\n }\n var invoker;\n var oldHook = def[hookKey];\n function wrappedHook() {\n hook.apply(this, arguments);\n // important: remove merged hook to ensure it's called only once\n // and prevent memory leak\n remove$2(invoker.fns, wrappedHook);\n }\n if (isUndef(oldHook)) {\n // no existing hook\n invoker = createFnInvoker([wrappedHook]);\n }\n else {\n /* istanbul ignore if */\n if (isDef(oldHook.fns) && isTrue(oldHook.merged)) {\n // already a merged invoker\n invoker = oldHook;\n invoker.fns.push(wrappedHook);\n }\n else {\n // existing plain hook\n invoker = createFnInvoker([oldHook, wrappedHook]);\n }\n }\n invoker.merged = true;\n def[hookKey] = invoker;\n}\n\nfunction extractPropsFromVNodeData(data, Ctor, tag) {\n // we are only extracting raw values here.\n // validation and default values are handled in the child\n // component itself.\n var propOptions = Ctor.options.props;\n if (isUndef(propOptions)) {\n return;\n }\n var res = {};\n var attrs = data.attrs, props = data.props;\n if (isDef(attrs) || isDef(props)) {\n for (var key in propOptions) {\n var altKey = hyphenate(key);\n if (process.env.NODE_ENV !== 'production') {\n var keyInLowerCase = key.toLowerCase();\n if (key !== keyInLowerCase && attrs && hasOwn(attrs, keyInLowerCase)) {\n tip(\"Prop \\\"\".concat(keyInLowerCase, \"\\\" is passed to component \") +\n \"\".concat(formatComponentName(\n // @ts-expect-error tag is string\n tag || Ctor), \", but the declared prop name is\") +\n \" \\\"\".concat(key, \"\\\". \") +\n \"Note that HTML attributes are case-insensitive and camelCased \" +\n \"props need to use their kebab-case equivalents when using in-DOM \" +\n \"templates. You should probably use \\\"\".concat(altKey, \"\\\" instead of \\\"\").concat(key, \"\\\".\"));\n }\n }\n checkProp(res, props, key, altKey, true) ||\n checkProp(res, attrs, key, altKey, false);\n }\n }\n return res;\n}\nfunction checkProp(res, hash, key, altKey, preserve) {\n if (isDef(hash)) {\n if (hasOwn(hash, key)) {\n res[key] = hash[key];\n if (!preserve) {\n delete hash[key];\n }\n return true;\n }\n else if (hasOwn(hash, altKey)) {\n res[key] = hash[altKey];\n if (!preserve) {\n delete hash[altKey];\n }\n return true;\n }\n }\n return false;\n}\n\n// The template compiler attempts to minimize the need for normalization by\n// statically analyzing the template at compile time.\n//\n// For plain HTML markup, normalization can be completely skipped because the\n// generated render function is guaranteed to return Array. There are\n// two cases where extra normalization is needed:\n// 1. When the children contains components - because a functional component\n// may return an Array instead of a single root. In this case, just a simple\n// normalization is needed - if any child is an Array, we flatten the whole\n// thing with Array.prototype.concat. It is guaranteed to be only 1-level deep\n// because functional components already normalize their own children.\nfunction simpleNormalizeChildren(children) {\n for (var i = 0; i < children.length; i++) {\n if (isArray(children[i])) {\n return Array.prototype.concat.apply([], children);\n }\n }\n return children;\n}\n// 2. When the children contains constructs that always generated nested Arrays,\n// e.g.