diff --git a/.github/workflows/.tests-javascript.yml b/.github/workflows/.tests-javascript.yml index 66d222a0..8d80c77b 100644 --- a/.github/workflows/.tests-javascript.yml +++ b/.github/workflows/.tests-javascript.yml @@ -16,10 +16,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - name: Use Node.js 17.x + - name: Use Node.js 18.x uses: actions/setup-node@v3 with: - node-version: "17.x" + node-version: "18.x" - name: Install yarn and dependencies working-directory: ${{env.working-directory}} run: | @@ -28,6 +28,9 @@ jobs: - name: Lint working-directory: ${{env.working-directory}} run: yarn lint + - name: Type check + working-directory: ${{env.working-directory}} + run: yarn type-check - name: Tests working-directory: ${{env.working-directory}} run: yarn test:unit diff --git a/Makefile b/Makefile index c7859da7..e249e1ee 100644 --- a/Makefile +++ b/Makefile @@ -24,9 +24,9 @@ bandit: build-client: lint-client cd fittrackee_client && $(NPM) build -check-all: bandit lint-all type-check test-all +check-all: bandit lint-all type-check-all test-all -check-client: lint-client test-client +check-client: lint-client type-check-client test-client check-python: bandit lint-python type-check test-python @@ -98,7 +98,7 @@ docker-run-workers: docker-serve-client: docker-compose -f docker-compose-dev.yml up -d fittrackee_client - docker-compose -f docker-compose-dev.yml exec fittrackee_client yarn serve + docker-compose -f docker-compose-dev.yml exec fittrackee_client yarn dev docker-set-admin: docker-compose -f docker-compose-dev.yml exec fittrackee docker/set-admin.sh $(USERNAME) @@ -194,7 +194,7 @@ lint-client: cd fittrackee_client && $(NPM) lint lint-client-fix: - cd fittrackee_client && $(NPM) lint-fix + cd fittrackee_client && $(NPM) format lint-python: $(PYTEST) --isort --black -m "isort or black" fittrackee e2e --ignore=fittrackee/migrations @@ -233,7 +233,7 @@ serve-dev: serve-client: # for dev environments - cd fittrackee_client && PORT=3000 $(NPM) serve + cd fittrackee_client && PORT=3000 $(NPM) dev serve-python: # for dev environments @@ -263,12 +263,20 @@ test-python: $(PYTEST) fittrackee --cov-config .coveragerc --cov=fittrackee --cov-report term-missing $(PYTEST_ARGS) test-client: - cd fittrackee_client && $(NPM) test:unit $(MOCHA_ARGS) + cd fittrackee_client && $(NPM) test:unit run + +test-client-watch: + cd fittrackee_client && $(NPM) test:unit watch type-check: echo 'Running mypy...' $(MYPY) fittrackee +type-check-all: type-check-client type-check + +type-check-client: + cd fittrackee_client && $(NPM) type-check + upgrade-db: $(FTCLI) db upgrade diff --git a/docker-compose-dev.yml b/docker-compose-dev.yml index ecca78ec..bc6c8997 100644 --- a/docker-compose-dev.yml +++ b/docker-compose-dev.yml @@ -36,7 +36,7 @@ services: container_name: fittrackee_client environment: - NODE_ENV=development - - VUE_APP_API_URL=http://localhost:5000 + - VITE_APP_API_URL=http://localhost:5000 build: context: ./fittrackee_client volumes: diff --git a/docs/en/_sources/installation.rst.txt b/docs/en/_sources/installation.rst.txt index 87903091..78451a94 100644 --- a/docs/en/_sources/installation.rst.txt +++ b/docs/en/_sources/installation.rst.txt @@ -29,7 +29,7 @@ Prerequisites - SMTP provider (if email sending is enabled) - API key from a `weather data provider `__ - `Poetry `__ (for installation from sources only) - - `Node `__ 16+ and `Yarn `__ (for development only) + - `Node `__ 18+ and `Yarn `__ (for development only) - Docker and Docker Compose (for development or evaluation purposes) .. note:: @@ -245,7 +245,9 @@ deployment method. Provider for weather data (not mandatory), see `Weather data `__. -.. envvar:: VUE_APP_API_URL +.. envvar:: VITE_APP_API_URL + + .. versionchanged:: 0.x.x ⚠️ replaces ``VUE_APP_API_URL`` **FitTrackee** API URL, only needed in dev environment. @@ -818,7 +820,7 @@ Installation .. versionadded:: 0.4.4 -For evaluation purposes, docker files are available, installing **FitTrackee** from **sources**. +For **evaluation** purposes, docker files are available, installing **FitTrackee** from **sources**. - To install **FitTrackee**: diff --git a/fittrackee/dist/index.html b/fittrackee/dist/index.html index f1f968b6..6a393b8a 100644 --- a/fittrackee/dist/index.html +++ b/fittrackee/dist/index.html @@ -1 +1,20 @@ -FitTrackee
\ No newline at end of file + + + + + + + + + FitTrackee + + + + + + + +
+ + + diff --git a/fittrackee/dist/manifest.json b/fittrackee/dist/manifest.json deleted file mode 100644 index 85147496..00000000 --- a/fittrackee/dist/manifest.json +++ /dev/null @@ -1 +0,0 @@ -{"name":"fittrackee_client","short_name":"fittrackee_client","theme_color":"#4DBA87","icons":[{"src":"./img/icons/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"./img/icons/android-chrome-512x512.png","sizes":"512x512","type":"image/png"},{"src":"./img/icons/android-chrome-maskable-192x192.png","sizes":"192x192","type":"image/png","purpose":"maskable"},{"src":"./img/icons/android-chrome-maskable-512x512.png","sizes":"512x512","type":"image/png","purpose":"maskable"}],"start_url":".","display":"standalone","background_color":"#000000"} \ No newline at end of file diff --git a/fittrackee/dist/service-worker.js b/fittrackee/dist/service-worker.js deleted file mode 100644 index d9d27e4a..00000000 --- a/fittrackee/dist/service-worker.js +++ /dev/null @@ -1,2 +0,0 @@ -if(!self.define){let s,i={};const e=(e,t)=>(e=new URL(e+".js",t).href,i[e]||new Promise((i=>{if("document"in self){const s=document.createElement("script");s.src=e,s.onload=i,document.head.appendChild(s)}else s=e,importScripts(e),i()})).then((()=>{let s=i[e];if(!s)throw new Error(`Module ${e} didn’t register its module`);return s})));self.define=(t,r)=>{const a=s||("document"in self?document.currentScript.src:"")||location.href;if(i[a])return;let l={};const n=s=>e(s,a),c={module:{uri:a},exports:l,require:n};i[a]=Promise.all(t.map((s=>c[s]||n(s)))).then((s=>(r(...s),l)))}}define(["./workbox-db5fc017"],(function(s){"use strict";s.setCacheNameDetails({prefix:"fittrackee_client"}),self.addEventListener("message",(s=>{s.data&&"SKIP_WAITING"===s.data.type&&self.skipWaiting()})),s.precacheAndRoute([{url:"/img/bike.svg",revision:"ab4faed007625b209af72b9b8dce84db"},{url:"/img/weather/breeze.svg",revision:"428c6ccb838f8e91dc4826c5b650a98b"},{url:"/img/weather/clear-day.svg",revision:"f3e8628de2e5089f508f03944f8be951"},{url:"/img/weather/clear-night.svg",revision:"6a0d6579a93e89fdf1a2a95b398e0935"},{url:"/img/weather/cloudy.svg",revision:"c52fe62c9d9fea2cdf5ae2813b3df366"},{url:"/img/weather/fog.svg",revision:"9f4d74289594eb83f9c175d13167a0eb"},{url:"/img/weather/partly-cloudy-day.svg",revision:"f730c2e4f4c014e8b49c9d4a0a141b90"},{url:"/img/weather/partly-cloudy-night.svg",revision:"0d9270901c4dffbc05f3998d835171c8"},{url:"/img/weather/pour-rain.svg",revision:"91eb3159ba8781d258d8c384a8ef987c"},{url:"/img/weather/rain.svg",revision:"c52ca88ce0ddf4de0fc29167e578b2be"},{url:"/img/weather/sleet.svg",revision:"97d61d89332f912c1ec27bcbe077b7bd"},{url:"/img/weather/snow.svg",revision:"9e88c89c0d6d14174e9665e98932dd80"},{url:"/img/weather/temperature.svg",revision:"d42b62d0b57d5d326506277d87b70435"},{url:"/img/weather/wind.svg",revision:"d75fbe559220d7b2b9577a98a91f38d0"},{url:"/img/workouts/finish.svg",revision:"375196b7ade7c07c3b64ac4cb8b850a8"},{url:"/img/workouts/mountains.svg",revision:"0b94f1d4a050a86ca5ac89ab3ed60f9c"},{url:"/img/workouts/start.svg",revision:"97f6a197b6c2869e0cb2ff0e7697af86"},{url:"/index.html",revision:"94ba35cf597f4c2f781993f544f5b317"},{url:"/manifest.json",revision:"c61028ca6e9f81bf958e6b66238e2d7c"},{url:"/robots.txt",revision:"b6216d61c03e6ce0c9aea6ca7808f7ca"},{url:"/static/css/admin.73df498d.css",revision:null},{url:"/static/css/app.a587cef2.css",revision:null},{url:"/static/css/fork-awesome.min.css",revision:"82c1118c918377daaa71a320ab8eea42"},{url:"/static/css/leaflet.css",revision:"5c761a156eea82263d8bacf1718fe04d"},{url:"/static/css/profile.083b26ea.css",revision:null},{url:"/static/css/reset.e2527ec6.css",revision:null},{url:"/static/css/statistics.315506b0.css",revision:null},{url:"/static/css/workouts.6abd9bd9.css",revision:null},{url:"/static/fonts/forkawesome-webfont.eot",revision:"e719f9244c69e28e7d00e725ca1e280e"},{url:"/static/fonts/forkawesome-webfont.svg",revision:"d58987a18774d859d98af95281c1dee5"},{url:"/static/fonts/forkawesome-webfont.ttf",revision:"fe45770c6c277da3921355d971045ea5"},{url:"/static/fonts/forkawesome-webfont.woff",revision:"92cd4d8328b2ae614386a01ff935a9f3"},{url:"/static/fonts/forkawesome-webfont.woff2",revision:"12ee76445f0383c58529169d700b6650"},{url:"/static/fonts/pt-sans-v9-latin-700.01a58da9.eot",revision:null},{url:"/static/fonts/pt-sans-v9-latin-700.51b1613b.woff2",revision:null},{url:"/static/fonts/pt-sans-v9-latin-700.5ff2a2d7.woff",revision:null},{url:"/static/fonts/pt-sans-v9-latin-700.6514157e.ttf",revision:null},{url:"/static/fonts/pt-sans-v9-latin-italic.10011d51.woff2",revision:null},{url:"/static/fonts/pt-sans-v9-latin-italic.6206408d.ttf",revision:null},{url:"/static/fonts/pt-sans-v9-latin-italic.8293436e.eot",revision:null},{url:"/static/fonts/pt-sans-v9-latin-italic.fe36f54f.woff",revision:null},{url:"/static/fonts/pt-sans-v9-latin-regular.b5b74f16.woff",revision:null},{url:"/static/fonts/pt-sans-v9-latin-regular.c43bc0a2.ttf",revision:null},{url:"/static/fonts/pt-sans-v9-latin-regular.c5a514ae.eot",revision:null},{url:"/static/fonts/pt-sans-v9-latin-regular.e7867499.woff2",revision:null},{url:"/static/img/map.5b26d82b.svg",revision:null},{url:"/static/img/pt-sans-v9-latin-700.b8a7047e.svg",revision:null},{url:"/static/img/pt-sans-v9-latin-italic.0b285c83.svg",revision:null},{url:"/static/img/pt-sans-v9-latin-regular.59a385b4.svg",revision:null},{url:"/static/js/243.03fdd6a3.js",revision:null},{url:"/static/js/431.e117da19.js",revision:null},{url:"/static/js/633.3c920340.js",revision:null},{url:"/static/js/858.8fd585ad.js",revision:null},{url:"/static/js/93.df2db3a3.js",revision:null},{url:"/static/js/admin.757bc8af.js",revision:null},{url:"/static/js/app.6d1bd717.js",revision:null},{url:"/static/js/chunk-vendors.6f625ccc.js",revision:null},{url:"/static/js/password.c645f551.js",revision:null},{url:"/static/js/password.de.9b211269.js",revision:null},{url:"/static/js/password.en.2be1701f.js",revision:null},{url:"/static/js/password.es.64e0eb9f.js",revision:null},{url:"/static/js/password.fr.c51871cc.js",revision:null},{url:"/static/js/password.it.b9896a6a.js",revision:null},{url:"/static/js/password.pl.f101c46e.js",revision:null},{url:"/static/js/profile.df2cbb8b.js",revision:null},{url:"/static/js/reset.f26118ce.js",revision:null},{url:"/static/js/statistics.67273a41.js",revision:null},{url:"/static/js/workouts.abaf372c.js",revision:null}],{})})); -//# sourceMappingURL=service-worker.js.map diff --git a/fittrackee/dist/service-worker.js.map b/fittrackee/dist/service-worker.js.map deleted file mode 100644 index fc49094d..00000000 --- a/fittrackee/dist/service-worker.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"service-worker.js","sources":["../../../../../../tmp/43390a5426d2dcf44e74368995d74e12/service-worker.js"],"sourcesContent":["import {setCacheNameDetails as workbox_core_setCacheNameDetails} from '/mnt/data-lnx/Devs/00_Perso/FitTrackee/fittrackee_client/node_modules/workbox-core/setCacheNameDetails.mjs';\nimport {precacheAndRoute as workbox_precaching_precacheAndRoute} from '/mnt/data-lnx/Devs/00_Perso/FitTrackee/fittrackee_client/node_modules/workbox-precaching/precacheAndRoute.mjs';/**\n * Welcome to your Workbox-powered service worker!\n *\n * You'll need to register this file in your web app.\n * See https://goo.gl/nhQhGp\n *\n * The rest of the code is auto-generated. Please don't update this file\n * directly; instead, make changes to your Workbox build configuration\n * and re-run your build process.\n * See https://goo.gl/2aRDsh\n */\n\n\n\n\n\nworkbox_core_setCacheNameDetails({prefix: \"fittrackee_client\"});\n\n\nself.addEventListener('message', (event) => {\n if (event.data && event.data.type === 'SKIP_WAITING') {\n self.skipWaiting();\n }\n});\n\n\n\n\n/**\n * The precacheAndRoute() method efficiently caches and responds to\n * requests for URLs in the manifest.\n * See https://goo.gl/S9QRab\n */\nworkbox_precaching_precacheAndRoute([\n {\n \"url\": \"/img/bike.svg\",\n \"revision\": \"ab4faed007625b209af72b9b8dce84db\"\n },\n {\n \"url\": \"/img/weather/breeze.svg\",\n \"revision\": \"428c6ccb838f8e91dc4826c5b650a98b\"\n },\n {\n \"url\": \"/img/weather/clear-day.svg\",\n \"revision\": \"f3e8628de2e5089f508f03944f8be951\"\n },\n {\n \"url\": \"/img/weather/clear-night.svg\",\n \"revision\": \"6a0d6579a93e89fdf1a2a95b398e0935\"\n },\n {\n \"url\": \"/img/weather/cloudy.svg\",\n \"revision\": \"c52fe62c9d9fea2cdf5ae2813b3df366\"\n },\n {\n \"url\": \"/img/weather/fog.svg\",\n \"revision\": \"9f4d74289594eb83f9c175d13167a0eb\"\n },\n {\n \"url\": \"/img/weather/partly-cloudy-day.svg\",\n \"revision\": \"f730c2e4f4c014e8b49c9d4a0a141b90\"\n },\n {\n \"url\": \"/img/weather/partly-cloudy-night.svg\",\n \"revision\": \"0d9270901c4dffbc05f3998d835171c8\"\n },\n {\n \"url\": \"/img/weather/pour-rain.svg\",\n \"revision\": \"91eb3159ba8781d258d8c384a8ef987c\"\n },\n {\n \"url\": \"/img/weather/rain.svg\",\n \"revision\": \"c52ca88ce0ddf4de0fc29167e578b2be\"\n },\n {\n \"url\": \"/img/weather/sleet.svg\",\n \"revision\": \"97d61d89332f912c1ec27bcbe077b7bd\"\n },\n {\n \"url\": \"/img/weather/snow.svg\",\n \"revision\": \"9e88c89c0d6d14174e9665e98932dd80\"\n },\n {\n \"url\": \"/img/weather/temperature.svg\",\n \"revision\": \"d42b62d0b57d5d326506277d87b70435\"\n },\n {\n \"url\": \"/img/weather/wind.svg\",\n \"revision\": \"d75fbe559220d7b2b9577a98a91f38d0\"\n },\n {\n \"url\": \"/img/workouts/finish.svg\",\n \"revision\": \"375196b7ade7c07c3b64ac4cb8b850a8\"\n },\n {\n \"url\": \"/img/workouts/mountains.svg\",\n \"revision\": \"0b94f1d4a050a86ca5ac89ab3ed60f9c\"\n },\n {\n \"url\": \"/img/workouts/start.svg\",\n \"revision\": \"97f6a197b6c2869e0cb2ff0e7697af86\"\n },\n {\n \"url\": \"/index.html\",\n \"revision\": \"94ba35cf597f4c2f781993f544f5b317\"\n },\n {\n \"url\": \"/manifest.json\",\n \"revision\": \"c61028ca6e9f81bf958e6b66238e2d7c\"\n },\n {\n \"url\": \"/robots.txt\",\n \"revision\": \"b6216d61c03e6ce0c9aea6ca7808f7ca\"\n },\n {\n \"url\": \"/static/css/admin.73df498d.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/app.a587cef2.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/fork-awesome.min.css\",\n \"revision\": \"82c1118c918377daaa71a320ab8eea42\"\n },\n {\n \"url\": \"/static/css/leaflet.css\",\n \"revision\": \"5c761a156eea82263d8bacf1718fe04d\"\n },\n {\n \"url\": \"/static/css/profile.083b26ea.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/reset.e2527ec6.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/statistics.315506b0.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/workouts.6abd9bd9.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/fonts/forkawesome-webfont.eot\",\n \"revision\": \"e719f9244c69e28e7d00e725ca1e280e\"\n },\n {\n \"url\": \"/static/fonts/forkawesome-webfont.svg\",\n \"revision\": \"d58987a18774d859d98af95281c1dee5\"\n },\n {\n \"url\": \"/static/fonts/forkawesome-webfont.ttf\",\n \"revision\": \"fe45770c6c277da3921355d971045ea5\"\n },\n {\n \"url\": \"/static/fonts/forkawesome-webfont.woff\",\n \"revision\": \"92cd4d8328b2ae614386a01ff935a9f3\"\n },\n {\n \"url\": \"/static/fonts/forkawesome-webfont.woff2\",\n \"revision\": \"12ee76445f0383c58529169d700b6650\"\n },\n {\n \"url\": \"/static/fonts/pt-sans-v9-latin-700.01a58da9.eot\",\n \"revision\": null\n },\n {\n \"url\": \"/static/fonts/pt-sans-v9-latin-700.51b1613b.woff2\",\n \"revision\": null\n },\n {\n \"url\": \"/static/fonts/pt-sans-v9-latin-700.5ff2a2d7.woff\",\n \"revision\": null\n },\n {\n \"url\": \"/static/fonts/pt-sans-v9-latin-700.6514157e.ttf\",\n \"revision\": null\n },\n {\n \"url\": \"/static/fonts/pt-sans-v9-latin-italic.10011d51.woff2\",\n \"revision\": null\n },\n {\n \"url\": \"/static/fonts/pt-sans-v9-latin-italic.6206408d.ttf\",\n \"revision\": null\n },\n {\n \"url\": \"/static/fonts/pt-sans-v9-latin-italic.8293436e.eot\",\n \"revision\": null\n },\n {\n \"url\": \"/static/fonts/pt-sans-v9-latin-italic.fe36f54f.woff\",\n \"revision\": null\n },\n {\n \"url\": \"/static/fonts/pt-sans-v9-latin-regular.b5b74f16.woff\",\n \"revision\": null\n },\n {\n \"url\": \"/static/fonts/pt-sans-v9-latin-regular.c43bc0a2.ttf\",\n \"revision\": null\n },\n {\n \"url\": \"/static/fonts/pt-sans-v9-latin-regular.c5a514ae.eot\",\n \"revision\": null\n },\n {\n \"url\": \"/static/fonts/pt-sans-v9-latin-regular.e7867499.woff2\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/map.5b26d82b.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/pt-sans-v9-latin-700.b8a7047e.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/pt-sans-v9-latin-italic.0b285c83.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/img/pt-sans-v9-latin-regular.59a385b4.svg\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/243.03fdd6a3.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/431.e117da19.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/633.3c920340.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/858.8fd585ad.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/93.df2db3a3.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/admin.757bc8af.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/app.6d1bd717.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/chunk-vendors.6f625ccc.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/password.c645f551.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/password.de.9b211269.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/password.en.2be1701f.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/password.es.64e0eb9f.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/password.fr.c51871cc.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/password.it.b9896a6a.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/password.pl.f101c46e.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/profile.df2cbb8b.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/reset.f26118ce.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/statistics.67273a41.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/workouts.abaf372c.js\",\n \"revision\": null\n }\n], {});\n\n\n\n\n\n\n\n\n"],"names":["workbox_core_setCacheNameDetails","prefix","self","addEventListener","event","data","type","skipWaiting","workbox_precaching_precacheAndRoute","url","revision"],"mappings":"0nBAiBAA,EAAAA,oBAAiC,CAACC,OAAQ,sBAG1CC,KAAKC,iBAAiB,WAAYC,IAC5BA,EAAMC,MAA4B,iBAApBD,EAAMC,KAAKC,MAC3BJ,KAAKK,aACP,IAWFC,EAAAA,iBAAoC,CAClC,CACEC,IAAO,gBACPC,SAAY,oCAEd,CACED,IAAO,0BACPC,SAAY,oCAEd,CACED,IAAO,6BACPC,SAAY,oCAEd,CACED,IAAO,+BACPC,SAAY,oCAEd,CACED,IAAO,0BACPC,SAAY,oCAEd,CACED,IAAO,uBACPC,SAAY,oCAEd,CACED,IAAO,qCACPC,SAAY,oCAEd,CACED,IAAO,uCACPC,SAAY,oCAEd,CACED,IAAO,6BACPC,SAAY,oCAEd,CACED,IAAO,wBACPC,SAAY,oCAEd,CACED,IAAO,yBACPC,SAAY,oCAEd,CACED,IAAO,wBACPC,SAAY,oCAEd,CACED,IAAO,+BACPC,SAAY,oCAEd,CACED,IAAO,wBACPC,SAAY,oCAEd,CACED,IAAO,2BACPC,SAAY,oCAEd,CACED,IAAO,8BACPC,SAAY,oCAEd,CACED,IAAO,0BACPC,SAAY,oCAEd,CACED,IAAO,cACPC,SAAY,oCAEd,CACED,IAAO,iBACPC,SAAY,oCAEd,CACED,IAAO,cACPC,SAAY,oCAEd,CACED,IAAO,iCACPC,SAAY,MAEd,CACED,IAAO,+BACPC,SAAY,MAEd,CACED,IAAO,mCACPC,SAAY,oCAEd,CACED,IAAO,0BACPC,SAAY,oCAEd,CACED,IAAO,mCACPC,SAAY,MAEd,CACED,IAAO,iCACPC,SAAY,MAEd,CACED,IAAO,sCACPC,SAAY,MAEd,CACED,IAAO,oCACPC,SAAY,MAEd,CACED,IAAO,wCACPC,SAAY,oCAEd,CACED,IAAO,wCACPC,SAAY,oCAEd,CACED,IAAO,wCACPC,SAAY,oCAEd,CACED,IAAO,yCACPC,SAAY,oCAEd,CACED,IAAO,0CACPC,SAAY,oCAEd,CACED,IAAO,kDACPC,SAAY,MAEd,CACED,IAAO,oDACPC,SAAY,MAEd,CACED,IAAO,mDACPC,SAAY,MAEd,CACED,IAAO,kDACPC,SAAY,MAEd,CACED,IAAO,uDACPC,SAAY,MAEd,CACED,IAAO,qDACPC,SAAY,MAEd,CACED,IAAO,qDACPC,SAAY,MAEd,CACED,IAAO,sDACPC,SAAY,MAEd,CACED,IAAO,uDACPC,SAAY,MAEd,CACED,IAAO,sDACPC,SAAY,MAEd,CACED,IAAO,sDACPC,SAAY,MAEd,CACED,IAAO,wDACPC,SAAY,MAEd,CACED,IAAO,+BACPC,SAAY,MAEd,CACED,IAAO,gDACPC,SAAY,MAEd,CACED,IAAO,mDACPC,SAAY,MAEd,CACED,IAAO,oDACPC,SAAY,MAEd,CACED,IAAO,6BACPC,SAAY,MAEd,CACED,IAAO,6BACPC,SAAY,MAEd,CACED,IAAO,6BACPC,SAAY,MAEd,CACED,IAAO,6BACPC,SAAY,MAEd,CACED,IAAO,4BACPC,SAAY,MAEd,CACED,IAAO,+BACPC,SAAY,MAEd,CACED,IAAO,6BACPC,SAAY,MAEd,CACED,IAAO,uCACPC,SAAY,MAEd,CACED,IAAO,kCACPC,SAAY,MAEd,CACED,IAAO,qCACPC,SAAY,MAEd,CACED,IAAO,qCACPC,SAAY,MAEd,CACED,IAAO,qCACPC,SAAY,MAEd,CACED,IAAO,qCACPC,SAAY,MAEd,CACED,IAAO,qCACPC,SAAY,MAEd,CACED,IAAO,qCACPC,SAAY,MAEd,CACED,IAAO,iCACPC,SAAY,MAEd,CACED,IAAO,+BACPC,SAAY,MAEd,CACED,IAAO,oCACPC,SAAY,MAEd,CACED,IAAO,kCACPC,SAAY,OAEb,CAAA"} \ No newline at end of file diff --git a/fittrackee/dist/static/charts-ed4ceed1.js b/fittrackee/dist/static/charts-ed4ceed1.js new file mode 100644 index 00000000..3bc528dd --- /dev/null +++ b/fittrackee/dist/static/charts-ed4ceed1.js @@ -0,0 +1,24 @@ +var lo=Object.defineProperty;var co=(i,t,e)=>t in i?lo(i,t,{enumerable:!0,configurable:!0,writable:!0,value:e}):i[t]=e;var S=(i,t,e)=>(co(i,typeof t!="symbol"?t+"":t,e),e);/*! + * @kurkle/color v0.3.2 + * https://github.com/kurkle/color#readme + * (c) 2023 Jukka Kurkela + * Released under the MIT License + */function me(i){return i+.5|0}const bt=(i,t,e)=>Math.max(Math.min(i,e),t);function te(i){return bt(me(i*2.55),0,255)}function xt(i){return bt(me(i*255),0,255)}function gt(i){return bt(me(i/2.55)/100,0,1)}function Hi(i){return bt(me(i*100),0,100)}const et={0:0,1:1,2:2,3:3,4:4,5:5,6:6,7:7,8:8,9:9,A:10,B:11,C:12,D:13,E:14,F:15,a:10,b:11,c:12,d:13,e:14,f:15},ui=[..."0123456789ABCDEF"],ho=i=>ui[i&15],fo=i=>ui[(i&240)>>4]+ui[i&15],xe=i=>(i&240)>>4===(i&15),uo=i=>xe(i.r)&&xe(i.g)&&xe(i.b)&&xe(i.a);function go(i){var t=i.length,e;return i[0]==="#"&&(t===4||t===5?e={r:255&et[i[1]]*17,g:255&et[i[2]]*17,b:255&et[i[3]]*17,a:t===5?et[i[4]]*17:255}:(t===7||t===9)&&(e={r:et[i[1]]<<4|et[i[2]],g:et[i[3]]<<4|et[i[4]],b:et[i[5]]<<4|et[i[6]],a:t===9?et[i[7]]<<4|et[i[8]]:255})),e}const po=(i,t)=>i<255?t(i):"";function mo(i){var t=uo(i)?ho:fo;return i?"#"+t(i.r)+t(i.g)+t(i.b)+po(i.a,t):void 0}const bo=/^(hsla?|hwb|hsv)\(\s*([-+.e\d]+)(?:deg)?[\s,]+([-+.e\d]+)%[\s,]+([-+.e\d]+)%(?:[\s,]+([-+.e\d]+)(%)?)?\s*\)$/;function cn(i,t,e){const s=t*Math.min(e,1-e),n=(o,r=(o+i/30)%12)=>e-s*Math.max(Math.min(r-3,9-r,1),-1);return[n(0),n(8),n(4)]}function _o(i,t,e){const s=(n,o=(n+i/60)%6)=>e-e*t*Math.max(Math.min(o,4-o,1),0);return[s(5),s(3),s(1)]}function xo(i,t,e){const s=cn(i,1,.5);let n;for(t+e>1&&(n=1/(t+e),t*=n,e*=n),n=0;n<3;n++)s[n]*=1-t-e,s[n]+=t;return s}function yo(i,t,e,s,n){return i===n?(t-e)/s+(t.5?h/(2-o-r):h/(o+r),l=yo(e,s,n,h,o),l=l*60+.5),[l|0,c||0,a]}function Si(i,t,e,s){return(Array.isArray(t)?i(t[0],t[1],t[2]):i(t,e,s)).map(xt)}function Pi(i,t,e){return Si(cn,i,t,e)}function vo(i,t,e){return Si(xo,i,t,e)}function ko(i,t,e){return Si(_o,i,t,e)}function hn(i){return(i%360+360)%360}function wo(i){const t=bo.exec(i);let e=255,s;if(!t)return;t[5]!==s&&(e=t[6]?te(+t[5]):xt(+t[5]));const n=hn(+t[2]),o=+t[3]/100,r=+t[4]/100;return t[1]==="hwb"?s=vo(n,o,r):t[1]==="hsv"?s=ko(n,o,r):s=Pi(n,o,r),{r:s[0],g:s[1],b:s[2],a:e}}function Mo(i,t){var e=Mi(i);e[0]=hn(e[0]+t),e=Pi(e),i.r=e[0],i.g=e[1],i.b=e[2]}function So(i){if(!i)return;const t=Mi(i),e=t[0],s=Hi(t[1]),n=Hi(t[2]);return i.a<255?`hsla(${e}, ${s}%, ${n}%, ${gt(i.a)})`:`hsl(${e}, ${s}%, ${n}%)`}const Wi={x:"dark",Z:"light",Y:"re",X:"blu",W:"gr",V:"medium",U:"slate",A:"ee",T:"ol",S:"or",B:"ra",C:"lateg",D:"ights",R:"in",Q:"turquois",E:"hi",P:"ro",O:"al",N:"le",M:"de",L:"yello",F:"en",K:"ch",G:"arks",H:"ea",I:"ightg",J:"wh"},Ni={OiceXe:"f0f8ff",antiquewEte:"faebd7",aqua:"ffff",aquamarRe:"7fffd4",azuY:"f0ffff",beige:"f5f5dc",bisque:"ffe4c4",black:"0",blanKedOmond:"ffebcd",Xe:"ff",XeviTet:"8a2be2",bPwn:"a52a2a",burlywood:"deb887",caMtXe:"5f9ea0",KartYuse:"7fff00",KocTate:"d2691e",cSO:"ff7f50",cSnflowerXe:"6495ed",cSnsilk:"fff8dc",crimson:"dc143c",cyan:"ffff",xXe:"8b",xcyan:"8b8b",xgTMnPd:"b8860b",xWay:"a9a9a9",xgYF:"6400",xgYy:"a9a9a9",xkhaki:"bdb76b",xmagFta:"8b008b",xTivegYF:"556b2f",xSange:"ff8c00",xScEd:"9932cc",xYd:"8b0000",xsOmon:"e9967a",xsHgYF:"8fbc8f",xUXe:"483d8b",xUWay:"2f4f4f",xUgYy:"2f4f4f",xQe:"ced1",xviTet:"9400d3",dAppRk:"ff1493",dApskyXe:"bfff",dimWay:"696969",dimgYy:"696969",dodgerXe:"1e90ff",fiYbrick:"b22222",flSOwEte:"fffaf0",foYstWAn:"228b22",fuKsia:"ff00ff",gaRsbSo:"dcdcdc",ghostwEte:"f8f8ff",gTd:"ffd700",gTMnPd:"daa520",Way:"808080",gYF:"8000",gYFLw:"adff2f",gYy:"808080",honeyMw:"f0fff0",hotpRk:"ff69b4",RdianYd:"cd5c5c",Rdigo:"4b0082",ivSy:"fffff0",khaki:"f0e68c",lavFMr:"e6e6fa",lavFMrXsh:"fff0f5",lawngYF:"7cfc00",NmoncEffon:"fffacd",ZXe:"add8e6",ZcSO:"f08080",Zcyan:"e0ffff",ZgTMnPdLw:"fafad2",ZWay:"d3d3d3",ZgYF:"90ee90",ZgYy:"d3d3d3",ZpRk:"ffb6c1",ZsOmon:"ffa07a",ZsHgYF:"20b2aa",ZskyXe:"87cefa",ZUWay:"778899",ZUgYy:"778899",ZstAlXe:"b0c4de",ZLw:"ffffe0",lime:"ff00",limegYF:"32cd32",lRF:"faf0e6",magFta:"ff00ff",maPon:"800000",VaquamarRe:"66cdaa",VXe:"cd",VScEd:"ba55d3",VpurpN:"9370db",VsHgYF:"3cb371",VUXe:"7b68ee",VsprRggYF:"fa9a",VQe:"48d1cc",VviTetYd:"c71585",midnightXe:"191970",mRtcYam:"f5fffa",mistyPse:"ffe4e1",moccasR:"ffe4b5",navajowEte:"ffdead",navy:"80",Tdlace:"fdf5e6",Tive:"808000",TivedBb:"6b8e23",Sange:"ffa500",SangeYd:"ff4500",ScEd:"da70d6",pOegTMnPd:"eee8aa",pOegYF:"98fb98",pOeQe:"afeeee",pOeviTetYd:"db7093",papayawEp:"ffefd5",pHKpuff:"ffdab9",peru:"cd853f",pRk:"ffc0cb",plum:"dda0dd",powMrXe:"b0e0e6",purpN:"800080",YbeccapurpN:"663399",Yd:"ff0000",Psybrown:"bc8f8f",PyOXe:"4169e1",saddNbPwn:"8b4513",sOmon:"fa8072",sandybPwn:"f4a460",sHgYF:"2e8b57",sHshell:"fff5ee",siFna:"a0522d",silver:"c0c0c0",skyXe:"87ceeb",UXe:"6a5acd",UWay:"708090",UgYy:"708090",snow:"fffafa",sprRggYF:"ff7f",stAlXe:"4682b4",tan:"d2b48c",teO:"8080",tEstN:"d8bfd8",tomato:"ff6347",Qe:"40e0d0",viTet:"ee82ee",JHt:"f5deb3",wEte:"ffffff",wEtesmoke:"f5f5f5",Lw:"ffff00",LwgYF:"9acd32"};function Po(){const i={},t=Object.keys(Ni),e=Object.keys(Wi);let s,n,o,r,a;for(s=0;s>16&255,o>>8&255,o&255]}return i}let ye;function Co(i){ye||(ye=Po(),ye.transparent=[0,0,0,0]);const t=ye[i.toLowerCase()];return t&&{r:t[0],g:t[1],b:t[2],a:t.length===4?t[3]:255}}const Do=/^rgba?\(\s*([-+.\d]+)(%)?[\s,]+([-+.e\d]+)(%)?[\s,]+([-+.e\d]+)(%)?(?:[\s,/]+([-+.e\d]+)(%)?)?\s*\)$/;function Oo(i){const t=Do.exec(i);let e=255,s,n,o;if(t){if(t[7]!==s){const r=+t[7];e=t[8]?te(r):bt(r*255,0,255)}return s=+t[1],n=+t[3],o=+t[5],s=255&(t[2]?te(s):bt(s,0,255)),n=255&(t[4]?te(n):bt(n,0,255)),o=255&(t[6]?te(o):bt(o,0,255)),{r:s,g:n,b:o,a:e}}}function To(i){return i&&(i.a<255?`rgba(${i.r}, ${i.g}, ${i.b}, ${gt(i.a)})`:`rgb(${i.r}, ${i.g}, ${i.b})`)}const Je=i=>i<=.0031308?i*12.92:Math.pow(i,1/2.4)*1.055-.055,Ft=i=>i<=.04045?i/12.92:Math.pow((i+.055)/1.055,2.4);function Ao(i,t,e){const s=Ft(gt(i.r)),n=Ft(gt(i.g)),o=Ft(gt(i.b));return{r:xt(Je(s+e*(Ft(gt(t.r))-s))),g:xt(Je(n+e*(Ft(gt(t.g))-n))),b:xt(Je(o+e*(Ft(gt(t.b))-o))),a:i.a+e*(t.a-i.a)}}function ve(i,t,e){if(i){let s=Mi(i);s[t]=Math.max(0,Math.min(s[t]+s[t]*e,t===0?360:1)),s=Pi(s),i.r=s[0],i.g=s[1],i.b=s[2]}}function dn(i,t){return i&&Object.assign(t||{},i)}function Vi(i){var t={r:0,g:0,b:0,a:255};return Array.isArray(i)?i.length>=3&&(t={r:i[0],g:i[1],b:i[2],a:255},i.length>3&&(t.a=xt(i[3]))):(t=dn(i,{r:0,g:0,b:0,a:1}),t.a=xt(t.a)),t}function Ro(i){return i.charAt(0)==="r"?Oo(i):wo(i)}class he{constructor(t){if(t instanceof he)return t;const e=typeof t;let s;e==="object"?s=Vi(t):e==="string"&&(s=go(t)||Co(t)||Ro(t)),this._rgb=s,this._valid=!!s}get valid(){return this._valid}get rgb(){var t=dn(this._rgb);return t&&(t.a=gt(t.a)),t}set rgb(t){this._rgb=Vi(t)}rgbString(){return this._valid?To(this._rgb):void 0}hexString(){return this._valid?mo(this._rgb):void 0}hslString(){return this._valid?So(this._rgb):void 0}mix(t,e){if(t){const s=this.rgb,n=t.rgb;let o;const r=e===o?.5:e,a=2*r-1,l=s.a-n.a,c=((a*l===-1?a:(a+l)/(1+a*l))+1)/2;o=1-c,s.r=255&c*s.r+o*n.r+.5,s.g=255&c*s.g+o*n.g+.5,s.b=255&c*s.b+o*n.b+.5,s.a=r*s.a+(1-r)*n.a,this.rgb=s}return this}interpolate(t,e){return t&&(this._rgb=Ao(this._rgb,t._rgb,e)),this}clone(){return new he(this.rgb)}alpha(t){return this._rgb.a=xt(t),this}clearer(t){const e=this._rgb;return e.a*=1-t,this}greyscale(){const t=this._rgb,e=me(t.r*.3+t.g*.59+t.b*.11);return t.r=t.g=t.b=e,this}opaquer(t){const e=this._rgb;return e.a*=1+t,this}negate(){const t=this._rgb;return t.r=255-t.r,t.g=255-t.g,t.b=255-t.b,this}lighten(t){return ve(this._rgb,2,t),this}darken(t){return ve(this._rgb,2,-t),this}saturate(t){return ve(this._rgb,1,t),this}desaturate(t){return ve(this._rgb,1,-t),this}rotate(t){return Mo(this._rgb,t),this}}/*! + * Chart.js v4.4.0 + * https://www.chartjs.org + * (c) 2023 Chart.js Contributors + * Released under the MIT License + */function dt(){}const Lo=(()=>{let i=0;return()=>i++})();function R(i){return i===null||typeof i>"u"}function W(i){if(Array.isArray&&Array.isArray(i))return!0;const t=Object.prototype.toString.call(i);return t.slice(0,7)==="[object"&&t.slice(-6)==="Array]"}function T(i){return i!==null&&Object.prototype.toString.call(i)==="[object Object]"}function q(i){return(typeof i=="number"||i instanceof Number)&&isFinite(+i)}function ot(i,t){return q(i)?i:t}function D(i,t){return typeof i>"u"?t:i}const Io=(i,t)=>typeof i=="string"&&i.endsWith("%")?parseFloat(i)/100*t:+i;function F(i,t,e){if(i&&typeof i.call=="function")return i.apply(e,t)}function L(i,t,e,s){let n,o,r;if(W(i))if(o=i.length,s)for(n=o-1;n>=0;n--)t.call(e,i[n],n);else for(n=0;ni,x:i=>i.x,y:i=>i.y};function zo(i){const t=i.split("."),e=[];let s="";for(const n of t)s+=n,s.endsWith("\\")?s=s.slice(0,-1)+".":(e.push(s),s="");return e}function Bo(i){const t=zo(i);return e=>{for(const s of t){if(s==="")break;e=e&&e[s]}return e}}function Wt(i,t){return(ji[t]||(ji[t]=Bo(t)))(i)}function Ci(i){return i.charAt(0).toUpperCase()+i.slice(1)}const de=i=>typeof i<"u",yt=i=>typeof i=="function",$i=(i,t)=>{if(i.size!==t.size)return!1;for(const e of i)if(!t.has(e))return!1;return!0};function Ho(i){return i.type==="mouseup"||i.type==="click"||i.type==="contextmenu"}const N=Math.PI,V=2*N,Wo=V+N,Ve=Number.POSITIVE_INFINITY,No=N/180,$=N/2,vt=N/4,Yi=N*2/3,gi=Math.log10,ct=Math.sign;function oe(i,t,e){return Math.abs(i-t)n-o).pop(),t}function fe(i){return!isNaN(parseFloat(i))&&isFinite(i)}function jo(i,t){const e=Math.round(i);return e-t<=i&&e+t>=i}function $o(i,t,e){let s,n,o;for(s=0,n=i.length;sl&&c=Math.min(t,e)-s&&i<=Math.max(t,e)+s}function Oi(i,t,e){e=e||(r=>i[r]1;)o=n+s>>1,e(o)?n=o:s=o;return{lo:n,hi:s}}const Dt=(i,t,e,s)=>Oi(i,e,s?n=>{const o=i[n][t];return oi[n][t]Oi(i,e,s=>i[s][t]>=e);function qo(i,t,e){let s=0,n=i.length;for(;ss&&i[n-1]>e;)n--;return s>0||n{const s="_onData"+Ci(e),n=i[e];Object.defineProperty(i,e,{configurable:!0,enumerable:!1,value(...o){const r=n.apply(this,o);return i._chartjs.listeners.forEach(a=>{typeof a[s]=="function"&&a[s](...o)}),r}})})}function Ki(i,t){const e=i._chartjs;if(!e)return;const s=e.listeners,n=s.indexOf(t);n!==-1&&s.splice(n,1),!(s.length>0)&&(gn.forEach(o=>{delete i[o]}),delete i._chartjs)}function pn(i){const t=new Set(i);return t.size===i.length?i:Array.from(t)}const mn=function(){return typeof window>"u"?function(i){return i()}:window.requestAnimationFrame}();function bn(i,t){let e=[],s=!1;return function(...n){e=n,s||(s=!0,mn.call(window,()=>{s=!1,i.apply(t,e)}))}}function Zo(i,t){let e;return function(...s){return t?(clearTimeout(e),e=setTimeout(i,t,s)):i.apply(this,s),t}}const Ti=i=>i==="start"?"left":i==="end"?"right":"center",X=(i,t,e)=>i==="start"?t:i==="end"?e:(t+e)/2,Jo=(i,t,e,s)=>i===(s?"left":"right")?e:i==="center"?(t+e)/2:t;function Qo(i,t,e){const s=t.length;let n=0,o=s;if(i._sorted){const{iScale:r,_parsed:a}=i,l=r.axis,{min:c,max:h,minDefined:d,maxDefined:f}=r.getUserBounds();d&&(n=K(Math.min(Dt(a,l,c).lo,e?s:Dt(t,l,r.getPixelForValue(c)).lo),0,s-1)),f?o=K(Math.max(Dt(a,r.axis,h,!0).hi+1,e?0:Dt(t,l,r.getPixelForValue(h),!0).hi+1),n,s)-n:o=s-n}return{start:n,count:o}}function tr(i){const{xScale:t,yScale:e,_scaleRanges:s}=i,n={xmin:t.min,xmax:t.max,ymin:e.min,ymax:e.max};if(!s)return i._scaleRanges=n,!0;const o=s.xmin!==t.min||s.xmax!==t.max||s.ymin!==e.min||s.ymax!==e.max;return Object.assign(s,n),o}const ke=i=>i===0||i===1,qi=(i,t,e)=>-(Math.pow(2,10*(i-=1))*Math.sin((i-t)*V/e)),Gi=(i,t,e)=>Math.pow(2,-10*i)*Math.sin((i-t)*V/e)+1,re={linear:i=>i,easeInQuad:i=>i*i,easeOutQuad:i=>-i*(i-2),easeInOutQuad:i=>(i/=.5)<1?.5*i*i:-.5*(--i*(i-2)-1),easeInCubic:i=>i*i*i,easeOutCubic:i=>(i-=1)*i*i+1,easeInOutCubic:i=>(i/=.5)<1?.5*i*i*i:.5*((i-=2)*i*i+2),easeInQuart:i=>i*i*i*i,easeOutQuart:i=>-((i-=1)*i*i*i-1),easeInOutQuart:i=>(i/=.5)<1?.5*i*i*i*i:-.5*((i-=2)*i*i*i-2),easeInQuint:i=>i*i*i*i*i,easeOutQuint:i=>(i-=1)*i*i*i*i+1,easeInOutQuint:i=>(i/=.5)<1?.5*i*i*i*i*i:.5*((i-=2)*i*i*i*i+2),easeInSine:i=>-Math.cos(i*$)+1,easeOutSine:i=>Math.sin(i*$),easeInOutSine:i=>-.5*(Math.cos(N*i)-1),easeInExpo:i=>i===0?0:Math.pow(2,10*(i-1)),easeOutExpo:i=>i===1?1:-Math.pow(2,-10*i)+1,easeInOutExpo:i=>ke(i)?i:i<.5?.5*Math.pow(2,10*(i*2-1)):.5*(-Math.pow(2,-10*(i*2-1))+2),easeInCirc:i=>i>=1?i:-(Math.sqrt(1-i*i)-1),easeOutCirc:i=>Math.sqrt(1-(i-=1)*i),easeInOutCirc:i=>(i/=.5)<1?-.5*(Math.sqrt(1-i*i)-1):.5*(Math.sqrt(1-(i-=2)*i)+1),easeInElastic:i=>ke(i)?i:qi(i,.075,.3),easeOutElastic:i=>ke(i)?i:Gi(i,.075,.3),easeInOutElastic(i){return ke(i)?i:i<.5?.5*qi(i*2,.1125,.45):.5+.5*Gi(i*2-1,.1125,.45)},easeInBack(i){return i*i*((1.70158+1)*i-1.70158)},easeOutBack(i){return(i-=1)*i*((1.70158+1)*i+1.70158)+1},easeInOutBack(i){let t=1.70158;return(i/=.5)<1?.5*(i*i*(((t*=1.525)+1)*i-t)):.5*((i-=2)*i*(((t*=1.525)+1)*i+t)+2)},easeInBounce:i=>1-re.easeOutBounce(1-i),easeOutBounce(i){return i<1/2.75?7.5625*i*i:i<2/2.75?7.5625*(i-=1.5/2.75)*i+.75:i<2.5/2.75?7.5625*(i-=2.25/2.75)*i+.9375:7.5625*(i-=2.625/2.75)*i+.984375},easeInOutBounce:i=>i<.5?re.easeInBounce(i*2)*.5:re.easeOutBounce(i*2-1)*.5+.5};function Ai(i){if(i&&typeof i=="object"){const t=i.toString();return t==="[object CanvasPattern]"||t==="[object CanvasGradient]"}return!1}function Zi(i){return Ai(i)?i:new he(i)}function Qe(i){return Ai(i)?i:new he(i).saturate(.5).darken(.1).hexString()}const er=["x","y","borderWidth","radius","tension"],ir=["color","borderColor","backgroundColor"];function sr(i){i.set("animation",{delay:void 0,duration:1e3,easing:"easeOutQuart",fn:void 0,from:void 0,loop:void 0,to:void 0,type:void 0}),i.describe("animation",{_fallback:!1,_indexable:!1,_scriptable:t=>t!=="onProgress"&&t!=="onComplete"&&t!=="fn"}),i.set("animations",{colors:{type:"color",properties:ir},numbers:{type:"number",properties:er}}),i.describe("animations",{_fallback:"animation"}),i.set("transitions",{active:{animation:{duration:400}},resize:{animation:{duration:0}},show:{animations:{colors:{from:"transparent"},visible:{type:"boolean",duration:0}}},hide:{animations:{colors:{to:"transparent"},visible:{type:"boolean",easing:"linear",fn:t=>t|0}}}})}function nr(i){i.set("layout",{autoPadding:!0,padding:{top:0,right:0,bottom:0,left:0}})}const Ji=new Map;function or(i,t){t=t||{};const e=i+JSON.stringify(t);let s=Ji.get(e);return s||(s=new Intl.NumberFormat(i,t),Ji.set(e,s)),s}function _n(i,t,e){return or(t,e).format(i)}const xn={values(i){return W(i)?i:""+i},numeric(i,t,e){if(i===0)return"0";const s=this.chart.options.locale;let n,o=i;if(e.length>1){const c=Math.max(Math.abs(e[0].value),Math.abs(e[e.length-1].value));(c<1e-4||c>1e15)&&(n="scientific"),o=rr(i,e)}const r=gi(Math.abs(o)),a=isNaN(r)?1:Math.max(Math.min(-1*Math.floor(r),20),0),l={notation:n,minimumFractionDigits:a,maximumFractionDigits:a};return Object.assign(l,this.options.ticks.format),_n(i,s,l)},logarithmic(i,t,e){if(i===0)return"0";const s=e[t].significand||i/Math.pow(10,Math.floor(gi(i)));return[1,2,3,5,10,15].includes(s)||t>.8*e.length?xn.numeric.call(this,i,t,e):""}};function rr(i,t){let e=t.length>3?t[2].value-t[1].value:t[1].value-t[0].value;return Math.abs(e)>=1&&i!==Math.floor(i)&&(e=i-Math.floor(i)),e}var yn={formatters:xn};function ar(i){i.set("scale",{display:!0,offset:!1,reverse:!1,beginAtZero:!1,bounds:"ticks",clip:!0,grace:0,grid:{display:!0,lineWidth:1,drawOnChartArea:!0,drawTicks:!0,tickLength:8,tickWidth:(t,e)=>e.lineWidth,tickColor:(t,e)=>e.color,offset:!1},border:{display:!0,dash:[],dashOffset:0,width:1},title:{display:!1,text:"",padding:{top:4,bottom:4}},ticks:{minRotation:0,maxRotation:50,mirror:!1,textStrokeWidth:0,textStrokeColor:"",padding:3,display:!0,autoSkip:!0,autoSkipPadding:3,labelOffset:0,callback:yn.formatters.values,minor:{},major:{},align:"center",crossAlign:"near",showLabelBackdrop:!1,backdropColor:"rgba(255, 255, 255, 0.75)",backdropPadding:2}}),i.route("scale.ticks","color","","color"),i.route("scale.grid","color","","borderColor"),i.route("scale.border","color","","borderColor"),i.route("scale.title","color","","color"),i.describe("scale",{_fallback:!1,_scriptable:t=>!t.startsWith("before")&&!t.startsWith("after")&&t!=="callback"&&t!=="parser",_indexable:t=>t!=="borderDash"&&t!=="tickBorderDash"&&t!=="dash"}),i.describe("scales",{_fallback:"scale"}),i.describe("scale.ticks",{_scriptable:t=>t!=="backdropPadding"&&t!=="callback",_indexable:t=>t!=="backdropPadding"})}const At=Object.create(null),mi=Object.create(null);function ae(i,t){if(!t)return i;const e=t.split(".");for(let s=0,n=e.length;ss.chart.platform.getDevicePixelRatio(),this.elements={},this.events=["mousemove","mouseout","click","touchstart","touchmove"],this.font={family:"'Helvetica Neue', 'Helvetica', 'Arial', sans-serif",size:12,style:"normal",lineHeight:1.2,weight:null},this.hover={},this.hoverBackgroundColor=(s,n)=>Qe(n.backgroundColor),this.hoverBorderColor=(s,n)=>Qe(n.borderColor),this.hoverColor=(s,n)=>Qe(n.color),this.indexAxis="x",this.interaction={mode:"nearest",intersect:!0,includeInvisible:!1},this.maintainAspectRatio=!0,this.onHover=null,this.onClick=null,this.parsing=!0,this.plugins={},this.responsive=!0,this.scale=void 0,this.scales={},this.showLine=!0,this.drawActiveElementsOnTop=!0,this.describe(t),this.apply(e)}set(t,e){return ti(this,t,e)}get(t){return ae(this,t)}describe(t,e){return ti(mi,t,e)}override(t,e){return ti(At,t,e)}route(t,e,s,n){const o=ae(this,t),r=ae(this,s),a="_"+e;Object.defineProperties(o,{[a]:{value:o[e],writable:!0},[e]:{enumerable:!0,get(){const l=this[a],c=r[n];return T(l)?Object.assign({},c,l):D(l,c)},set(l){this[a]=l}}})}apply(t){t.forEach(e=>e(this))}}var B=new lr({_scriptable:i=>!i.startsWith("on"),_indexable:i=>i!=="events",hover:{_fallback:"interaction"},interaction:{_scriptable:!1,_indexable:!1}},[sr,nr,ar]);function cr(i){return!i||R(i.size)||R(i.family)?null:(i.style?i.style+" ":"")+(i.weight?i.weight+" ":"")+i.size+"px "+i.family}function Qi(i,t,e,s,n){let o=t[n];return o||(o=t[n]=i.measureText(n).width,e.push(n)),o>s&&(s=o),s}function kt(i,t,e){const s=i.currentDevicePixelRatio,n=e!==0?Math.max(e/2,.5):0;return Math.round((t-n)*s)/s+n}function ts(i,t){t=t||i.getContext("2d"),t.save(),t.resetTransform(),t.clearRect(0,0,i.width,i.height),t.restore()}function bi(i,t,e,s){vn(i,t,e,s,null)}function vn(i,t,e,s,n){let o,r,a,l,c,h,d,f;const u=t.pointStyle,p=t.rotation,g=t.radius;let m=(p||0)*No;if(u&&typeof u=="object"&&(o=u.toString(),o==="[object HTMLImageElement]"||o==="[object HTMLCanvasElement]")){i.save(),i.translate(e,s),i.rotate(m),i.drawImage(u,-u.width/2,-u.height/2,u.width,u.height),i.restore();return}if(!(isNaN(g)||g<=0)){switch(i.beginPath(),u){default:n?i.ellipse(e,s,n/2,g,0,0,V):i.arc(e,s,g,0,V),i.closePath();break;case"triangle":h=n?n/2:g,i.moveTo(e+Math.sin(m)*h,s-Math.cos(m)*g),m+=Yi,i.lineTo(e+Math.sin(m)*h,s-Math.cos(m)*g),m+=Yi,i.lineTo(e+Math.sin(m)*h,s-Math.cos(m)*g),i.closePath();break;case"rectRounded":c=g*.516,l=g-c,r=Math.cos(m+vt)*l,d=Math.cos(m+vt)*(n?n/2-c:l),a=Math.sin(m+vt)*l,f=Math.sin(m+vt)*(n?n/2-c:l),i.arc(e-d,s-a,c,m-N,m-$),i.arc(e+f,s-r,c,m-$,m),i.arc(e+d,s+a,c,m,m+$),i.arc(e-f,s+r,c,m+$,m+N),i.closePath();break;case"rect":if(!p){l=Math.SQRT1_2*g,h=n?n/2:l,i.rect(e-h,s-l,2*h,2*l);break}m+=vt;case"rectRot":d=Math.cos(m)*(n?n/2:g),r=Math.cos(m)*g,a=Math.sin(m)*g,f=Math.sin(m)*(n?n/2:g),i.moveTo(e-d,s-a),i.lineTo(e+f,s-r),i.lineTo(e+d,s+a),i.lineTo(e-f,s+r),i.closePath();break;case"crossRot":m+=vt;case"cross":d=Math.cos(m)*(n?n/2:g),r=Math.cos(m)*g,a=Math.sin(m)*g,f=Math.sin(m)*(n?n/2:g),i.moveTo(e-d,s-a),i.lineTo(e+d,s+a),i.moveTo(e+f,s-r),i.lineTo(e-f,s+r);break;case"star":d=Math.cos(m)*(n?n/2:g),r=Math.cos(m)*g,a=Math.sin(m)*g,f=Math.sin(m)*(n?n/2:g),i.moveTo(e-d,s-a),i.lineTo(e+d,s+a),i.moveTo(e+f,s-r),i.lineTo(e-f,s+r),m+=vt,d=Math.cos(m)*(n?n/2:g),r=Math.cos(m)*g,a=Math.sin(m)*g,f=Math.sin(m)*(n?n/2:g),i.moveTo(e-d,s-a),i.lineTo(e+d,s+a),i.moveTo(e+f,s-r),i.lineTo(e-f,s+r);break;case"line":r=n?n/2:Math.cos(m)*g,a=Math.sin(m)*g,i.moveTo(e-r,s-a),i.lineTo(e+r,s+a);break;case"dash":i.moveTo(e,s),i.lineTo(e+Math.cos(m)*(n?n/2:g),s+Math.sin(m)*g);break;case!1:i.closePath();break}i.fill(),t.borderWidth>0&&i.stroke()}}function ue(i,t,e){return e=e||.5,!t||i&&i.x>t.left-e&&i.xt.top-e&&i.y0&&o.strokeColor!=="";let l,c;for(i.save(),i.font=n.string,fr(i,o),l=0;l+i||0;function Ri(i,t){const e={},s=T(t),n=s?Object.keys(t):t,o=T(i)?s?r=>D(i[r],i[t[r]]):r=>i[r]:()=>i;for(const r of n)e[r]=_r(o(r));return e}function kn(i){return Ri(i,{top:"y",right:"x",bottom:"y",left:"x"})}function zt(i){return Ri(i,["topLeft","topRight","bottomLeft","bottomRight"])}function tt(i){const t=kn(i);return t.width=t.left+t.right,t.height=t.top+t.bottom,t}function Y(i,t){i=i||{},t=t||B.font;let e=D(i.size,t.size);typeof e=="string"&&(e=parseInt(e,10));let s=D(i.style,t.style);s&&!(""+s).match(mr)&&(console.warn('Invalid font style specified: "'+s+'"'),s=void 0);const n={family:D(i.family,t.family),lineHeight:br(D(i.lineHeight,t.lineHeight),e),size:e,style:s,weight:D(i.weight,t.weight),string:""};return n.string=cr(n),n}function z(i,t,e,s){let n=!0,o,r,a;for(o=0,r=i.length;oe&&a===0?0:a+l;return{min:r(s,-Math.abs(o)),max:r(n,o)}}function Rt(i,t){return Object.assign(Object.create(i),t)}function Li(i,t=[""],e,s,n=()=>i[0]){const o=e||i;typeof s>"u"&&(s=Pn("_fallback",i));const r={[Symbol.toStringTag]:"Object",_cacheable:!0,_scopes:i,_rootScopes:o,_fallback:s,_getTarget:n,override:a=>Li([a,...i],t,o,s)};return new Proxy(r,{deleteProperty(a,l){return delete a[l],delete a._keys,delete i[0][l],!0},get(a,l){return Mn(a,l,()=>Cr(l,t,i,a))},getOwnPropertyDescriptor(a,l){return Reflect.getOwnPropertyDescriptor(a._scopes[0],l)},getPrototypeOf(){return Reflect.getPrototypeOf(i[0])},has(a,l){return is(a).includes(l)},ownKeys(a){return is(a)},set(a,l,c){const h=a._storage||(a._storage=n());return a[l]=h[l]=c,delete a._keys,!0}})}function Nt(i,t,e,s){const n={_cacheable:!1,_proxy:i,_context:t,_subProxy:e,_stack:new Set,_descriptors:wn(i,s),setContext:o=>Nt(i,o,e,s),override:o=>Nt(i.override(o),t,e,s)};return new Proxy(n,{deleteProperty(o,r){return delete o[r],delete i[r],!0},get(o,r,a){return Mn(o,r,()=>vr(o,r,a))},getOwnPropertyDescriptor(o,r){return o._descriptors.allKeys?Reflect.has(i,r)?{enumerable:!0,configurable:!0}:void 0:Reflect.getOwnPropertyDescriptor(i,r)},getPrototypeOf(){return Reflect.getPrototypeOf(i)},has(o,r){return Reflect.has(i,r)},ownKeys(){return Reflect.ownKeys(i)},set(o,r,a){return i[r]=a,delete o[r],!0}})}function wn(i,t={scriptable:!0,indexable:!0}){const{_scriptable:e=t.scriptable,_indexable:s=t.indexable,_allKeys:n=t.allKeys}=i;return{allKeys:n,scriptable:e,indexable:s,isScriptable:yt(e)?e:()=>e,isIndexable:yt(s)?s:()=>s}}const yr=(i,t)=>i?i+Ci(t):t,Ii=(i,t)=>T(t)&&i!=="adapters"&&(Object.getPrototypeOf(t)===null||t.constructor===Object);function Mn(i,t,e){if(Object.prototype.hasOwnProperty.call(i,t))return i[t];const s=e();return i[t]=s,s}function vr(i,t,e){const{_proxy:s,_context:n,_subProxy:o,_descriptors:r}=i;let a=s[t];return yt(a)&&r.isScriptable(t)&&(a=kr(t,a,i,e)),W(a)&&a.length&&(a=wr(t,a,i,r.isIndexable)),Ii(t,a)&&(a=Nt(a,n,o&&o[t],r)),a}function kr(i,t,e,s){const{_proxy:n,_context:o,_subProxy:r,_stack:a}=e;if(a.has(i))throw new Error("Recursion detected: "+Array.from(a).join("->")+"->"+i);a.add(i);let l=t(o,r||s);return a.delete(i),Ii(i,l)&&(l=Fi(n._scopes,n,i,l)),l}function wr(i,t,e,s){const{_proxy:n,_context:o,_subProxy:r,_descriptors:a}=e;if(typeof o.index<"u"&&s(i))return t[o.index%t.length];if(T(t[0])){const l=t,c=n._scopes.filter(h=>h!==l);t=[];for(const h of l){const d=Fi(c,n,i,h);t.push(Nt(d,o,r&&r[i],a))}}return t}function Sn(i,t,e){return yt(i)?i(t,e):i}const Mr=(i,t)=>i===!0?t:typeof i=="string"?Wt(t,i):void 0;function Sr(i,t,e,s,n){for(const o of t){const r=Mr(e,o);if(r){i.add(r);const a=Sn(r._fallback,e,n);if(typeof a<"u"&&a!==e&&a!==s)return a}else if(r===!1&&typeof s<"u"&&e!==s)return null}return!1}function Fi(i,t,e,s){const n=t._rootScopes,o=Sn(t._fallback,e,s),r=[...i,...n],a=new Set;a.add(s);let l=es(a,r,e,o||e,s);return l===null||typeof o<"u"&&o!==e&&(l=es(a,r,o,l,s),l===null)?!1:Li(Array.from(a),[""],n,o,()=>Pr(t,e,s))}function es(i,t,e,s,n){for(;e;)e=Sr(i,t,e,s,n);return e}function Pr(i,t,e){const s=i._getTarget();t in s||(s[t]={});const n=s[t];return W(n)&&T(e)?e:n||{}}function Cr(i,t,e,s){let n;for(const o of t)if(n=Pn(yr(o,i),e),typeof n<"u")return Ii(i,n)?Fi(e,s,i,n):n}function Pn(i,t){for(const e of t){if(!e)continue;const s=e[i];if(typeof s<"u")return s}}function is(i){let t=i._keys;return t||(t=i._keys=Dr(i._scopes)),t}function Dr(i){const t=new Set;for(const e of i)for(const s of Object.keys(e).filter(n=>!n.startsWith("_")))t.add(s);return Array.from(t)}const Or=Number.EPSILON||1e-14,Vt=(i,t)=>ti==="x"?"y":"x";function Tr(i,t,e,s){const n=i.skip?t:i,o=t,r=e.skip?t:e,a=pi(o,n),l=pi(r,o);let c=a/(a+l),h=l/(a+l);c=isNaN(c)?0:c,h=isNaN(h)?0:h;const d=s*c,f=s*h;return{previous:{x:o.x-d*(r.x-n.x),y:o.y-d*(r.y-n.y)},next:{x:o.x+f*(r.x-n.x),y:o.y+f*(r.y-n.y)}}}function Ar(i,t,e){const s=i.length;let n,o,r,a,l,c=Vt(i,0);for(let h=0;h!c.skip)),t.cubicInterpolationMode==="monotone")Lr(i,n);else{let c=s?i[i.length-1]:i[0];for(o=0,r=i.length;oi.ownerDocument.defaultView.getComputedStyle(i,null);function Er(i,t){return Ge(i).getPropertyValue(t)}const zr=["top","right","bottom","left"];function Tt(i,t,e){const s={};e=e?"-"+e:"";for(let n=0;n<4;n++){const o=zr[n];s[o]=parseFloat(i[t+"-"+o+e])||0}return s.width=s.left+s.right,s.height=s.top+s.bottom,s}const Br=(i,t,e)=>(i>0||t>0)&&(!e||!e.shadowRoot);function Hr(i,t){const e=i.touches,s=e&&e.length?e[0]:i,{offsetX:n,offsetY:o}=s;let r=!1,a,l;if(Br(n,o,i.target))a=n,l=o;else{const c=t.getBoundingClientRect();a=s.clientX-c.left,l=s.clientY-c.top,r=!0}return{x:a,y:l,box:r}}function Mt(i,t){if("native"in i)return i;const{canvas:e,currentDevicePixelRatio:s}=t,n=Ge(e),o=n.boxSizing==="border-box",r=Tt(n,"padding"),a=Tt(n,"border","width"),{x:l,y:c,box:h}=Hr(i,e),d=r.left+(h&&a.left),f=r.top+(h&&a.top);let{width:u,height:p}=t;return o&&(u-=r.width+a.width,p-=r.height+a.height),{x:Math.round((l-d)/u*e.width/s),y:Math.round((c-f)/p*e.height/s)}}function Wr(i,t,e){let s,n;if(t===void 0||e===void 0){const o=Ei(i);if(!o)t=i.clientWidth,e=i.clientHeight;else{const r=o.getBoundingClientRect(),a=Ge(o),l=Tt(a,"border","width"),c=Tt(a,"padding");t=r.width-c.width-l.width,e=r.height-c.height-l.height,s=$e(a.maxWidth,o,"clientWidth"),n=$e(a.maxHeight,o,"clientHeight")}}return{width:t,height:e,maxWidth:s||Ve,maxHeight:n||Ve}}const Me=i=>Math.round(i*10)/10;function Nr(i,t,e,s){const n=Ge(i),o=Tt(n,"margin"),r=$e(n.maxWidth,i,"clientWidth")||Ve,a=$e(n.maxHeight,i,"clientHeight")||Ve,l=Wr(i,t,e);let{width:c,height:h}=l;if(n.boxSizing==="content-box"){const f=Tt(n,"border","width"),u=Tt(n,"padding");c-=u.width+f.width,h-=u.height+f.height}return c=Math.max(0,c-o.width),h=Math.max(0,s?c/s:h-o.height),c=Me(Math.min(c,r,l.maxWidth)),h=Me(Math.min(h,a,l.maxHeight)),c&&!h&&(h=Me(c/2)),(t!==void 0||e!==void 0)&&s&&l.height&&h>l.height&&(h=l.height,c=Me(Math.floor(h*s))),{width:c,height:h}}function ss(i,t,e){const s=t||1,n=Math.floor(i.height*s),o=Math.floor(i.width*s);i.height=Math.floor(i.height),i.width=Math.floor(i.width);const r=i.canvas;return r.style&&(e||!r.style.height&&!r.style.width)&&(r.style.height=`${i.height}px`,r.style.width=`${i.width}px`),i.currentDevicePixelRatio!==s||r.height!==n||r.width!==o?(i.currentDevicePixelRatio=s,r.height=n,r.width=o,i.ctx.setTransform(s,0,0,s,0,0),!0):!1}const Vr=function(){let i=!1;try{const t={get passive(){return i=!0,!1}};window.addEventListener("test",null,t),window.removeEventListener("test",null,t)}catch{}return i}();function ns(i,t){const e=Er(i,t),s=e&&e.match(/^(\d+)(\.\d+)?px$/);return s?+s[1]:void 0}function St(i,t,e,s){return{x:i.x+e*(t.x-i.x),y:i.y+e*(t.y-i.y)}}function jr(i,t,e,s){return{x:i.x+e*(t.x-i.x),y:s==="middle"?e<.5?i.y:t.y:s==="after"?e<1?i.y:t.y:e>0?t.y:i.y}}function $r(i,t,e,s){const n={x:i.cp2x,y:i.cp2y},o={x:t.cp1x,y:t.cp1y},r=St(i,n,e),a=St(n,o,e),l=St(o,t,e),c=St(r,a,e),h=St(a,l,e);return St(c,h,e)}const Yr=function(i,t){return{x(e){return i+i+t-e},setWidth(e){t=e},textAlign(e){return e==="center"?e:e==="right"?"left":"right"},xPlus(e,s){return e-s},leftForLtr(e,s){return e-s}}},Ur=function(){return{x(i){return i},setWidth(i){},textAlign(i){return i},xPlus(i,t){return i+t},leftForLtr(i,t){return i}}};function Bt(i,t,e){return i?Yr(t,e):Ur()}function On(i,t){let e,s;(t==="ltr"||t==="rtl")&&(e=i.canvas.style,s=[e.getPropertyValue("direction"),e.getPropertyPriority("direction")],e.setProperty("direction",t,"important"),i.prevTextDirection=s)}function Tn(i,t){t!==void 0&&(delete i.prevTextDirection,i.canvas.style.setProperty("direction",t[0],t[1]))}function An(i){return i==="angle"?{between:Di,compare:Uo,normalize:lt}:{between:pt,compare:(t,e)=>t-e,normalize:t=>t}}function os({start:i,end:t,count:e,loop:s,style:n}){return{start:i%e,end:t%e,loop:s&&(t-i+1)%e===0,style:n}}function Xr(i,t,e){const{property:s,start:n,end:o}=e,{between:r,normalize:a}=An(s),l=t.length;let{start:c,end:h,loop:d}=i,f,u;if(d){for(c+=l,h+=l,f=0,u=l;fl(n,y,b)&&a(n,y)!==0,x=()=>a(o,b)===0||l(o,y,b),w=()=>g||v(),M=()=>!g||x();for(let k=h,P=h;k<=d;++k)_=t[k%r],!_.skip&&(b=c(_[s]),b!==y&&(g=l(b,n,o),m===null&&w()&&(m=a(b,n)===0?k:P),m!==null&&M()&&(p.push(os({start:m,end:k,loop:f,count:r,style:u})),m=null),P=k,y=b));return m!==null&&p.push(os({start:m,end:d,loop:f,count:r,style:u})),p}function Ln(i,t){const e=[],s=i.segments;for(let n=0;nn&&i[o%t].skip;)o--;return o%=t,{start:n,end:o}}function qr(i,t,e,s){const n=i.length,o=[];let r=t,a=i[t],l;for(l=t+1;l<=e;++l){const c=i[l%n];c.skip||c.stop?a.skip||(s=!1,o.push({start:t%n,end:(l-1)%n,loop:s}),t=r=c.stop?l:null):(r=l,a.skip&&(t=l)),a=c}return r!==null&&o.push({start:t%n,end:r%n,loop:s}),o}function Gr(i,t){const e=i.points,s=i.options.spanGaps,n=e.length;if(!n)return[];const o=!!i._loop,{start:r,end:a}=Kr(e,n,o,s);if(s===!0)return rs(i,[{start:r,end:a,loop:o}],e,t);const l=aa({chart:t,initial:e.initial,numSteps:r,currentStep:Math.min(s-e.start,r)}))}_refresh(){this._request||(this._running=!0,this._request=mn.call(window,()=>{this._update(),this._request=null,this._running&&this._refresh()}))}_update(t=Date.now()){let e=0;this._charts.forEach((s,n)=>{if(!s.running||!s.items.length)return;const o=s.items;let r=o.length-1,a=!1,l;for(;r>=0;--r)l=o[r],l._active?(l._total>s.duration&&(s.duration=l._total),l.tick(t),a=!0):(o[r]=o[o.length-1],o.pop());a&&(n.draw(),this._notify(n,s,t,"progress")),o.length||(s.running=!1,this._notify(n,s,t,"complete"),s.initial=!1),e+=o.length}),this._lastDate=t,e===0&&(this._running=!1)}_getAnims(t){const e=this._charts;let s=e.get(t);return s||(s={running:!1,initial:!0,items:[],listeners:{complete:[],progress:[]}},e.set(t,s)),s}listen(t,e,s){this._getAnims(t).listeners[e].push(s)}add(t,e){!e||!e.length||this._getAnims(t).items.push(...e)}has(t){return this._getAnims(t).items.length>0}start(t){const e=this._charts.get(t);e&&(e.running=!0,e.start=Date.now(),e.duration=e.items.reduce((s,n)=>Math.max(s,n._duration),0),this._refresh())}running(t){if(!this._running)return!1;const e=this._charts.get(t);return!(!e||!e.running||!e.items.length)}stop(t){const e=this._charts.get(t);if(!e||!e.items.length)return;const s=e.items;let n=s.length-1;for(;n>=0;--n)s[n].cancel();e.items=[],this._notify(t,e,Date.now(),"complete")}remove(t){return this._charts.delete(t)}}var ft=new Qr;const ls="transparent",ta={boolean(i,t,e){return e>.5?t:i},color(i,t,e){const s=Zi(i||ls),n=s.valid&&Zi(t||ls);return n&&n.valid?n.mix(s,e).hexString():t},number(i,t,e){return i+(t-i)*e}};class ea{constructor(t,e,s,n){const o=e[s];n=z([t.to,n,o,t.from]);const r=z([t.from,o,n]);this._active=!0,this._fn=t.fn||ta[t.type||typeof r],this._easing=re[t.easing]||re.linear,this._start=Math.floor(Date.now()+(t.delay||0)),this._duration=this._total=Math.floor(t.duration),this._loop=!!t.loop,this._target=e,this._prop=s,this._from=r,this._to=n,this._promises=void 0}active(){return this._active}update(t,e,s){if(this._active){this._notify(!1);const n=this._target[this._prop],o=s-this._start,r=this._duration-o;this._start=s,this._duration=Math.floor(Math.max(r,t.duration)),this._total+=o,this._loop=!!t.loop,this._to=z([t.to,e,n,t.from]),this._from=z([t.from,n,e])}}cancel(){this._active&&(this.tick(Date.now()),this._active=!1,this._notify(!1))}tick(t){const e=t-this._start,s=this._duration,n=this._prop,o=this._from,r=this._loop,a=this._to;let l;if(this._active=o!==a&&(r||e1?2-l:l,l=this._easing(Math.min(1,Math.max(0,l))),this._target[n]=this._fn(o,a,l)}wait(){const t=this._promises||(this._promises=[]);return new Promise((e,s)=>{t.push({res:e,rej:s})})}_notify(t){const e=t?"res":"rej",s=this._promises||[];for(let n=0;n{const o=t[n];if(!T(o))return;const r={};for(const a of e)r[a]=o[a];(W(o.properties)&&o.properties||[n]).forEach(a=>{(a===n||!s.has(a))&&s.set(a,r)})})}_animateOptions(t,e){const s=e.options,n=sa(t,s);if(!n)return[];const o=this._createAnimations(n,s);return s.$shared&&ia(t.options.$animations,s).then(()=>{t.options=s},()=>{}),o}_createAnimations(t,e){const s=this._properties,n=[],o=t.$animations||(t.$animations={}),r=Object.keys(e),a=Date.now();let l;for(l=r.length-1;l>=0;--l){const c=r[l];if(c.charAt(0)==="$")continue;if(c==="options"){n.push(...this._animateOptions(t,e));continue}const h=e[c];let d=o[c];const f=s.get(c);if(d)if(f&&d.active()){d.update(f,h,a);continue}else d.cancel();if(!f||!f.duration){t[c]=h;continue}o[c]=d=new ea(f,t,c,h),n.push(d)}return n}update(t,e){if(this._properties.size===0){Object.assign(t,e);return}const s=this._createAnimations(t,e);if(s.length)return ft.add(this._chart,s),!0}}function ia(i,t){const e=[],s=Object.keys(t);for(let n=0;n0||!e&&o<0)return n.index}return null}function us(i,t){const{chart:e,_cachedMeta:s}=i,n=e._stacks||(e._stacks={}),{iScale:o,vScale:r,index:a}=s,l=o.axis,c=r.axis,h=aa(o,r,s),d=t.length;let f;for(let u=0;ue[s].axis===t).shift()}function ha(i,t){return Rt(i,{active:!1,dataset:void 0,datasetIndex:t,index:t,mode:"default",type:"dataset"})}function da(i,t,e){return Rt(i,{active:!1,dataIndex:t,parsed:void 0,raw:void 0,element:e,index:t,mode:"default",type:"data"})}function Kt(i,t){const e=i.controller.index,s=i.vScale&&i.vScale.axis;if(s){t=t||i._parsed;for(const n of t){const o=n._stacks;if(!o||o[s]===void 0||o[s][e]===void 0)return;delete o[s][e],o[s]._visualValues!==void 0&&o[s]._visualValues[e]!==void 0&&delete o[s]._visualValues[e]}}}const ii=i=>i==="reset"||i==="none",gs=(i,t)=>t?i:Object.assign({},i),fa=(i,t,e)=>i&&!t.hidden&&t._stacked&&{keys:Fn(e,!0),values:null};class Ht{constructor(t,e){this.chart=t,this._ctx=t.ctx,this.index=e,this._cachedDataOpts={},this._cachedMeta=this.getMeta(),this._type=this._cachedMeta.type,this.options=void 0,this._parsing=!1,this._data=void 0,this._objectData=void 0,this._sharedOptions=void 0,this._drawStart=void 0,this._drawCount=void 0,this.enableOptionSharing=!1,this.supportsDecimation=!1,this.$context=void 0,this._syncList=[],this.datasetElementType=new.target.datasetElementType,this.dataElementType=new.target.dataElementType,this.initialize()}initialize(){const t=this._cachedMeta;this.configure(),this.linkScales(),t._stacked=ds(t.vScale,t),this.addElements(),this.options.fill&&!this.chart.isPluginEnabled("filler")&&console.warn("Tried to use the 'fill' option without the 'Filler' plugin enabled. Please import and register the 'Filler' plugin and make sure it is not disabled in the options")}updateIndex(t){this.index!==t&&Kt(this._cachedMeta),this.index=t}linkScales(){const t=this.chart,e=this._cachedMeta,s=this.getDataset(),n=(d,f,u,p)=>d==="x"?f:d==="r"?p:u,o=e.xAxisID=D(s.xAxisID,ei(t,"x")),r=e.yAxisID=D(s.yAxisID,ei(t,"y")),a=e.rAxisID=D(s.rAxisID,ei(t,"r")),l=e.indexAxis,c=e.iAxisID=n(l,o,r,a),h=e.vAxisID=n(l,r,o,a);e.xScale=this.getScaleForId(o),e.yScale=this.getScaleForId(r),e.rScale=this.getScaleForId(a),e.iScale=this.getScaleForId(c),e.vScale=this.getScaleForId(h)}getDataset(){return this.chart.data.datasets[this.index]}getMeta(){return this.chart.getDatasetMeta(this.index)}getScaleForId(t){return this.chart.scales[t]}_getOtherScale(t){const e=this._cachedMeta;return t===e.iScale?e.vScale:e.iScale}reset(){this._update("reset")}_destroy(){const t=this._cachedMeta;this._data&&Ki(this._data,this),t._stacked&&Kt(t)}_dataCheck(){const t=this.getDataset(),e=t.data||(t.data=[]),s=this._data;if(T(e))this._data=ra(e);else if(s!==e){if(s){Ki(s,this);const n=this._cachedMeta;Kt(n),n._parsed=[]}e&&Object.isExtensible(e)&&Go(e,this),this._syncList=[],this._data=e}}addElements(){const t=this._cachedMeta;this._dataCheck(),this.datasetElementType&&(t.dataset=new this.datasetElementType)}buildOrUpdateElements(t){const e=this._cachedMeta,s=this.getDataset();let n=!1;this._dataCheck();const o=e._stacked;e._stacked=ds(e.vScale,e),e.stack!==s.stack&&(n=!0,Kt(e),e.stack=s.stack),this._resyncElements(t),(n||o!==e._stacked)&&us(this,e._parsed)}configure(){const t=this.chart.config,e=t.datasetScopeKeys(this._type),s=t.getOptionScopes(this.getDataset(),e,!0);this.options=t.createResolver(s,this.getContext()),this._parsing=this.options.parsing,this._cachedDataOpts={}}parse(t,e){const{_cachedMeta:s,_data:n}=this,{iScale:o,_stacked:r}=s,a=o.axis;let l=t===0&&e===n.length?!0:s._sorted,c=t>0&&s._parsed[t-1],h,d,f;if(this._parsing===!1)s._parsed=n,s._sorted=!0,f=n;else{W(n[t])?f=this.parseArrayData(s,n,t,e):T(n[t])?f=this.parseObjectData(s,n,t,e):f=this.parsePrimitiveData(s,n,t,e);const u=()=>d[a]===null||c&&d[a]g||d=0;--f)if(!p()){this.updateRangeFromParsed(c,t,u,l);break}}return c}getAllParsedValues(t){const e=this._cachedMeta._parsed,s=[];let n,o,r;for(n=0,o=e.length;n=0&&tthis.getContext(s,n,e),g=c.resolveNamedOptions(f,u,p,d);return g.$shared&&(g.$shared=l,o[r]=Object.freeze(gs(g,l))),g}_resolveAnimations(t,e,s){const n=this.chart,o=this._cachedDataOpts,r=`animation-${e}`,a=o[r];if(a)return a;let l;if(n.options.animation!==!1){const h=this.chart.config,d=h.datasetAnimationScopeKeys(this._type,e),f=h.getOptionScopes(this.getDataset(),d);l=h.createResolver(f,this.getContext(t,s,e))}const c=new In(n,l&&l.animations);return l&&l._cacheable&&(o[r]=Object.freeze(c)),c}getSharedOptions(t){if(t.$shared)return this._sharedOptions||(this._sharedOptions=Object.assign({},t))}includeOptions(t,e){return!e||ii(t)||this.chart._animationsDisabled}_getSharedOptions(t,e){const s=this.resolveDataElementOptions(t,e),n=this._sharedOptions,o=this.getSharedOptions(s),r=this.includeOptions(e,o)||o!==n;return this.updateSharedOptions(o,e,s),{sharedOptions:o,includeOptions:r}}updateElement(t,e,s,n){ii(n)?Object.assign(t,s):this._resolveAnimations(e,n).update(t,s)}updateSharedOptions(t,e,s){t&&!ii(e)&&this._resolveAnimations(void 0,e).update(t,s)}_setStyle(t,e,s,n){t.active=n;const o=this.getStyle(e,n);this._resolveAnimations(e,s,n).update(t,{options:!n&&this.getSharedOptions(o)||o})}removeHoverStyle(t,e,s){this._setStyle(t,s,"active",!1)}setHoverStyle(t,e,s){this._setStyle(t,s,"active",!0)}_removeDatasetHoverStyle(){const t=this._cachedMeta.dataset;t&&this._setStyle(t,void 0,"active",!1)}_setDatasetHoverStyle(){const t=this._cachedMeta.dataset;t&&this._setStyle(t,void 0,"active",!0)}_resyncElements(t){const e=this._data,s=this._cachedMeta.data;for(const[a,l,c]of this._syncList)this[a](l,c);this._syncList=[];const n=s.length,o=e.length,r=Math.min(o,n);r&&this.parse(0,r),o>n?this._insertElements(n,o-n,t):o{for(c.length+=e,a=c.length-1;a>=r;a--)c[a]=c[a-e]};for(l(o),a=t;an-o))}return i._cache.$bar}function ga(i){const t=i.iScale,e=ua(t,i.type);let s=t._length,n,o,r,a;const l=()=>{r===32767||r===-32768||(de(a)&&(s=Math.min(s,Math.abs(r-a)||s)),a=r)};for(n=0,o=e.length;n0?n[i-1]:null,a=iMath.abs(a)&&(l=a,c=r),t[e.axis]=c,t._custom={barStart:l,barEnd:c,start:n,end:o,min:r,max:a}}function En(i,t,e,s){return W(i)?ba(i,t,e,s):t[e.axis]=e.parse(i,s),t}function ps(i,t,e,s){const n=i.iScale,o=i.vScale,r=n.getLabels(),a=n===o,l=[];let c,h,d,f;for(c=e,h=e+s;c=e?1:-1)}function xa(i){let t,e,s,n,o;return i.horizontal?(t=i.base>i.x,e="left",s="right"):(t=i.basel.controller.options.grouped),o=s.options.stacked,r=[],a=l=>{const c=l.controller.getParsed(e),h=c&&c[l.vScale.axis];if(R(h)||isNaN(h))return!0};for(const l of n)if(!(e!==void 0&&a(l))&&((o===!1||r.indexOf(l.stack)===-1||o===void 0&&l.stack===void 0)&&r.push(l.stack),l.index===t))break;return r.length||r.push(void 0),r}_getStackCount(t){return this._getStacks(void 0,t).length}_getStackIndex(t,e,s){const n=this._getStacks(t,s),o=e!==void 0?n.indexOf(e):-1;return o===-1?n.length-1:o}_getRuler(){const t=this.options,e=this._cachedMeta,s=e.iScale,n=[];let o,r;for(o=0,r=e.data.length;o0&&this.getParsed(e-1);for(let x=0;x=_){M.skip=!0;continue}const k=this.getParsed(x),P=R(k[u]),O=M[f]=r.getPixelForValue(k[f],x),C=M[u]=o||P?a.getBasePixel():a.getPixelForValue(l?this.applyStack(a,k,l):k[u],x);M.skip=isNaN(O)||isNaN(C)||P,M.stop=x>0&&Math.abs(k[f]-v[f])>m,g&&(M.parsed=k,M.raw=c.data[x]),d&&(M.options=h||this.resolveDataElementOptions(x,w.active?"active":n)),b||this.updateElement(w,x,M,n),v=k}}getMaxOverflow(){const t=this._cachedMeta,e=t.dataset,s=e.options&&e.options.borderWidth||0,n=t.data||[];if(!n.length)return s;const o=n[0].size(this.resolveDataElementOptions(0)),r=n[n.length-1].size(this.resolveDataElementOptions(n.length-1));return Math.max(s,o,r)/2}draw(){const t=this._cachedMeta;t.dataset.updateControlPoints(this.chart.chartArea,t.iScale.axis),super.draw()}}S(oi,"id","line"),S(oi,"defaults",{datasetElementType:"line",dataElementType:"point",showLine:!0,spanGaps:!1}),S(oi,"overrides",{scales:{_index_:{type:"category"},_value_:{type:"linear"}}});function wt(){throw new Error("This method is not implemented: Check that a complete date adapter is provided.")}class zi{constructor(t){S(this,"options");this.options=t||{}}static override(t){Object.assign(zi.prototype,t)}init(){}formats(){return wt()}parse(){return wt()}format(){return wt()}add(){return wt()}diff(){return wt()}startOf(){return wt()}endOf(){return wt()}}var wa={_date:zi};function Ma(i,t,e,s){const{controller:n,data:o,_sorted:r}=i,a=n._cachedMeta.iScale;if(a&&t===a.axis&&t!=="r"&&r&&o.length){const l=a._reversePixels?Ko:Dt;if(s){if(n._sharedOptions){const c=o[0],h=typeof c.getRange=="function"&&c.getRange(t);if(h){const d=l(o,t,e-h),f=l(o,t,e+h);return{lo:d.lo,hi:f.hi}}}}else return l(o,t,e)}return{lo:0,hi:o.length-1}}function be(i,t,e,s,n){const o=i.getSortedVisibleDatasetMetas(),r=e[t];for(let a=0,l=o.length;a{l[r](t[e],n)&&(o.push({element:l,datasetIndex:c,index:h}),a=a||l.inRange(t.x,t.y,n))}),s&&!a?[]:o}var Da={evaluateInteractionItems:be,modes:{index(i,t,e,s){const n=Mt(t,i),o=e.axis||"x",r=e.includeInvisible||!1,a=e.intersect?ri(i,n,o,s,r):ai(i,n,o,!1,s,r),l=[];return a.length?(i.getSortedVisibleDatasetMetas().forEach(c=>{const h=a[0].index,d=c.data[h];d&&!d.skip&&l.push({element:d,datasetIndex:c.index,index:h})}),l):[]},dataset(i,t,e,s){const n=Mt(t,i),o=e.axis||"xy",r=e.includeInvisible||!1;let a=e.intersect?ri(i,n,o,s,r):ai(i,n,o,!1,s,r);if(a.length>0){const l=a[0].datasetIndex,c=i.getDatasetMeta(l).data;a=[];for(let h=0;he.pos===t)}function xs(i,t){return i.filter(e=>zn.indexOf(e.pos)===-1&&e.box.axis===t)}function Gt(i,t){return i.sort((e,s)=>{const n=t?s:e,o=t?e:s;return n.weight===o.weight?n.index-o.index:n.weight-o.weight})}function Oa(i){const t=[];let e,s,n,o,r,a;for(e=0,s=(i||[]).length;ec.box.fullSize),!0),s=Gt(qt(t,"left"),!0),n=Gt(qt(t,"right")),o=Gt(qt(t,"top"),!0),r=Gt(qt(t,"bottom")),a=xs(t,"x"),l=xs(t,"y");return{fullSize:e,leftAndTop:s.concat(o),rightAndBottom:n.concat(l).concat(r).concat(a),chartArea:qt(t,"chartArea"),vertical:s.concat(n).concat(l),horizontal:o.concat(r).concat(a)}}function ys(i,t,e,s){return Math.max(i[e],t[e])+Math.max(i[s],t[s])}function Bn(i,t){i.top=Math.max(i.top,t.top),i.left=Math.max(i.left,t.left),i.bottom=Math.max(i.bottom,t.bottom),i.right=Math.max(i.right,t.right)}function La(i,t,e,s){const{pos:n,box:o}=e,r=i.maxPadding;if(!T(n)){e.size&&(i[n]-=e.size);const d=s[e.stack]||{size:0,count:1};d.size=Math.max(d.size,e.horizontal?o.height:o.width),e.size=d.size/d.count,i[n]+=e.size}o.getPadding&&Bn(r,o.getPadding());const a=Math.max(0,t.outerWidth-ys(r,i,"left","right")),l=Math.max(0,t.outerHeight-ys(r,i,"top","bottom")),c=a!==i.w,h=l!==i.h;return i.w=a,i.h=l,e.horizontal?{same:c,other:h}:{same:h,other:c}}function Ia(i){const t=i.maxPadding;function e(s){const n=Math.max(t[s]-i[s],0);return i[s]+=n,n}i.y+=e("top"),i.x+=e("left"),e("right"),e("bottom")}function Fa(i,t){const e=t.maxPadding;function s(n){const o={left:0,top:0,right:0,bottom:0};return n.forEach(r=>{o[r]=Math.max(t[r],e[r])}),o}return s(i?["left","right"]:["top","bottom"])}function ee(i,t,e,s){const n=[];let o,r,a,l,c,h;for(o=0,r=i.length,c=0;o{typeof g.beforeLayout=="function"&&g.beforeLayout()});const h=l.reduce((g,m)=>m.box.options&&m.box.options.display===!1?g:g+1,0)||1,d=Object.freeze({outerWidth:t,outerHeight:e,padding:n,availableWidth:o,availableHeight:r,vBoxMaxWidth:o/2/h,hBoxMaxHeight:r/2}),f=Object.assign({},n);Bn(f,tt(s));const u=Object.assign({maxPadding:f,w:o,h:r,x:n.left,y:n.top},n),p=Aa(l.concat(c),d);ee(a.fullSize,u,d,p),ee(l,u,d,p),ee(c,u,d,p)&&ee(l,u,d,p),Ia(u),vs(a.leftAndTop,u,d,p),u.x+=u.w,u.y+=u.h,vs(a.rightAndBottom,u,d,p),i.chartArea={left:u.left,top:u.top,right:u.left+u.w,bottom:u.top+u.h,height:u.h,width:u.w},L(a.chartArea,g=>{const m=g.box;Object.assign(m,i.chartArea),m.update(u.w,u.h,{left:0,top:0,right:0,bottom:0})})}};class Hn{acquireContext(t,e){}releaseContext(t){return!1}addEventListener(t,e,s){}removeEventListener(t,e,s){}getDevicePixelRatio(){return 1}getMaximumSize(t,e,s,n){return e=Math.max(0,e||t.width),s=s||t.height,{width:e,height:Math.max(0,n?Math.floor(e/n):s)}}isAttached(t){return!0}updateConfig(t){}}class Ea extends Hn{acquireContext(t){return t&&t.getContext&&t.getContext("2d")||null}updateConfig(t){t.options.animation=!1}}const Ee="$chartjs",za={touchstart:"mousedown",touchmove:"mousemove",touchend:"mouseup",pointerenter:"mouseenter",pointerdown:"mousedown",pointermove:"mousemove",pointerup:"mouseup",pointerleave:"mouseout",pointerout:"mouseout"},ks=i=>i===null||i==="";function Ba(i,t){const e=i.style,s=i.getAttribute("height"),n=i.getAttribute("width");if(i[Ee]={initial:{height:s,width:n,style:{display:e.display,height:e.height,width:e.width}}},e.display=e.display||"block",e.boxSizing=e.boxSizing||"border-box",ks(n)){const o=ns(i,"width");o!==void 0&&(i.width=o)}if(ks(s))if(i.style.height==="")i.height=i.width/(t||2);else{const o=ns(i,"height");o!==void 0&&(i.height=o)}return i}const Wn=Vr?{passive:!0}:!1;function Ha(i,t,e){i.addEventListener(t,e,Wn)}function Wa(i,t,e){i.canvas.removeEventListener(t,e,Wn)}function Na(i,t){const e=za[i.type]||i.type,{x:s,y:n}=Mt(i,t);return{type:e,chart:t,native:i,x:s!==void 0?s:null,y:n!==void 0?n:null}}function Ye(i,t){for(const e of i)if(e===t||e.contains(t))return!0}function Va(i,t,e){const s=i.canvas,n=new MutationObserver(o=>{let r=!1;for(const a of o)r=r||Ye(a.addedNodes,s),r=r&&!Ye(a.removedNodes,s);r&&e()});return n.observe(document,{childList:!0,subtree:!0}),n}function ja(i,t,e){const s=i.canvas,n=new MutationObserver(o=>{let r=!1;for(const a of o)r=r||Ye(a.removedNodes,s),r=r&&!Ye(a.addedNodes,s);r&&e()});return n.observe(document,{childList:!0,subtree:!0}),n}const pe=new Map;let ws=0;function Nn(){const i=window.devicePixelRatio;i!==ws&&(ws=i,pe.forEach((t,e)=>{e.currentDevicePixelRatio!==i&&t()}))}function $a(i,t){pe.size||window.addEventListener("resize",Nn),pe.set(i,t)}function Ya(i){pe.delete(i),pe.size||window.removeEventListener("resize",Nn)}function Ua(i,t,e){const s=i.canvas,n=s&&Ei(s);if(!n)return;const o=bn((a,l)=>{const c=n.clientWidth;e(a,l),c{const l=a[0],c=l.contentRect.width,h=l.contentRect.height;c===0&&h===0||o(c,h)});return r.observe(n),$a(i,o),r}function li(i,t,e){e&&e.disconnect(),t==="resize"&&Ya(i)}function Xa(i,t,e){const s=i.canvas,n=bn(o=>{i.ctx!==null&&e(Na(o,i))},i);return Ha(s,t,n),n}class Ka extends Hn{acquireContext(t,e){const s=t&&t.getContext&&t.getContext("2d");return s&&s.canvas===t?(Ba(t,e),s):null}releaseContext(t){const e=t.canvas;if(!e[Ee])return!1;const s=e[Ee].initial;["height","width"].forEach(o=>{const r=s[o];R(r)?e.removeAttribute(o):e.setAttribute(o,r)});const n=s.style||{};return Object.keys(n).forEach(o=>{e.style[o]=n[o]}),e.width=e.width,delete e[Ee],!0}addEventListener(t,e,s){this.removeEventListener(t,e);const n=t.$proxies||(t.$proxies={}),r={attach:Va,detach:ja,resize:Ua}[e]||Xa;n[e]=r(t,e,s)}removeEventListener(t,e){const s=t.$proxies||(t.$proxies={}),n=s[e];if(!n)return;({attach:li,detach:li,resize:li}[e]||Wa)(t,e,n),s[e]=void 0}getDevicePixelRatio(){return window.devicePixelRatio}getMaximumSize(t,e,s,n){return Nr(t,e,s,n)}isAttached(t){const e=Ei(t);return!!(e&&e.isConnected)}}function qa(i){return!Dn()||typeof OffscreenCanvas<"u"&&i instanceof OffscreenCanvas?Ea:Ka}class nt{constructor(){S(this,"x");S(this,"y");S(this,"active",!1);S(this,"options");S(this,"$animations")}tooltipPosition(t){const{x:e,y:s}=this.getProps(["x","y"],t);return{x:e,y:s}}hasValue(){return fe(this.x)&&fe(this.y)}getProps(t,e){const s=this.$animations;if(!e||!s)return this;const n={};return t.forEach(o=>{n[o]=s[o]&&s[o].active()?s[o]._to:this[o]}),n}}S(nt,"defaults",{}),S(nt,"defaultRoutes");function Ga(i,t){const e=i.options.ticks,s=Za(i),n=Math.min(e.maxTicksLimit||s,s),o=e.major.enabled?Qa(t):[],r=o.length,a=o[0],l=o[r-1],c=[];if(r>n)return tl(t,c,o,r/n),c;const h=Ja(o,t,n);if(r>0){let d,f;const u=r>1?Math.round((l-a)/(r-1)):null;for(Pe(t,c,h,R(u)?0:a-u,a),d=0,f=r-1;dn)return l}return Math.max(n,1)}function Qa(i){const t=[];let e,s;for(e=0,s=i.length;ei==="left"?"right":i==="right"?"left":i,Ms=(i,t,e)=>t==="top"||t==="left"?i[t]+e:i[t]-e,Ss=(i,t)=>Math.min(t||i,i);function Ps(i,t){const e=[],s=i.length/t,n=i.length;let o=0;for(;or+a)))return l}function nl(i,t){L(i,e=>{const s=e.gc,n=s.length/2;let o;if(n>t){for(o=0;os?s:e,s=n&&e>s?e:s,{min:ot(e,ot(s,e)),max:ot(s,ot(e,s))}}getPadding(){return{left:this.paddingLeft||0,top:this.paddingTop||0,right:this.paddingRight||0,bottom:this.paddingBottom||0}}getTicks(){return this.ticks}getLabels(){const t=this.chart.data;return this.options.labels||(this.isHorizontal()?t.xLabels:t.yLabels)||t.labels||[]}getLabelItems(t=this.chart.chartArea){return this._labelItems||(this._labelItems=this._computeLabelItems(t))}beforeLayout(){this._cache={},this._dataLimitsCached=!1}beforeUpdate(){F(this.options.beforeUpdate,[this])}update(t,e,s){const{beginAtZero:n,grace:o,ticks:r}=this.options,a=r.sampleSize;this.beforeUpdate(),this.maxWidth=t,this.maxHeight=e,this._margins=s=Object.assign({left:0,right:0,top:0,bottom:0},s),this.ticks=null,this._labelSizes=null,this._gridLineItems=null,this._labelItems=null,this.beforeSetDimensions(),this.setDimensions(),this.afterSetDimensions(),this._maxLength=this.isHorizontal()?this.width+s.left+s.right:this.height+s.top+s.bottom,this._dataLimitsCached||(this.beforeDataLimits(),this.determineDataLimits(),this.afterDataLimits(),this._range=xr(this,o,n),this._dataLimitsCached=!0),this.beforeBuildTicks(),this.ticks=this.buildTicks()||[],this.afterBuildTicks();const l=a=o||s<=1||!this.isHorizontal()){this.labelRotation=n;return}const h=this._getLabelSizes(),d=h.widest.width,f=h.highest.height,u=K(this.chart.width-d,0,this.maxWidth);a=t.offset?this.maxWidth/s:u/(s-1),d+6>a&&(a=u/(s-(t.offset?.5:1)),l=this.maxHeight-Zt(t.grid)-e.padding-Cs(t.title,this.chart.options.font),c=Math.sqrt(d*d+f*f),r=Yo(Math.min(Math.asin(K((h.highest.height+6)/a,-1,1)),Math.asin(K(l/c,-1,1))-Math.asin(K(f/c,-1,1)))),r=Math.max(n,Math.min(o,r))),this.labelRotation=r}afterCalculateLabelRotation(){F(this.options.afterCalculateLabelRotation,[this])}afterAutoSkip(){}beforeFit(){F(this.options.beforeFit,[this])}fit(){const t={width:0,height:0},{chart:e,options:{ticks:s,title:n,grid:o}}=this,r=this._isVisible(),a=this.isHorizontal();if(r){const l=Cs(n,e.options.font);if(a?(t.width=this.maxWidth,t.height=Zt(o)+l):(t.height=this.maxHeight,t.width=Zt(o)+l),s.display&&this.ticks.length){const{first:c,last:h,widest:d,highest:f}=this._getLabelSizes(),u=s.padding*2,p=Ct(this.labelRotation),g=Math.cos(p),m=Math.sin(p);if(a){const b=s.mirror?0:m*d.width+g*f.height;t.height=Math.min(this.maxHeight,t.height+b+u)}else{const b=s.mirror?0:g*d.width+m*f.height;t.width=Math.min(this.maxWidth,t.width+b+u)}this._calculatePadding(c,h,m,g)}}this._handleMargins(),a?(this.width=this._length=e.width-this._margins.left-this._margins.right,this.height=t.height):(this.width=t.width,this.height=this._length=e.height-this._margins.top-this._margins.bottom)}_calculatePadding(t,e,s,n){const{ticks:{align:o,padding:r},position:a}=this.options,l=this.labelRotation!==0,c=a!=="top"&&this.axis==="x";if(this.isHorizontal()){const h=this.getPixelForTick(0)-this.left,d=this.right-this.getPixelForTick(this.ticks.length-1);let f=0,u=0;l?c?(f=n*t.width,u=s*e.height):(f=s*t.height,u=n*e.width):o==="start"?u=e.width:o==="end"?f=t.width:o!=="inner"&&(f=t.width/2,u=e.width/2),this.paddingLeft=Math.max((f-h+r)*this.width/(this.width-h),0),this.paddingRight=Math.max((u-d+r)*this.width/(this.width-d),0)}else{let h=e.height/2,d=t.height/2;o==="start"?(h=0,d=t.height):o==="end"&&(h=e.height,d=0),this.paddingTop=h+r,this.paddingBottom=d+r}}_handleMargins(){this._margins&&(this._margins.left=Math.max(this.paddingLeft,this._margins.left),this._margins.top=Math.max(this.paddingTop,this._margins.top),this._margins.right=Math.max(this.paddingRight,this._margins.right),this._margins.bottom=Math.max(this.paddingBottom,this._margins.bottom))}afterFit(){F(this.options.afterFit,[this])}isHorizontal(){const{axis:t,position:e}=this.options;return e==="top"||e==="bottom"||t==="x"}isFullSize(){return this.options.fullSize}_convertTicksToLabels(t){this.beforeTickToLabelConversion(),this.generateTickLabels(t);let e,s;for(e=0,s=t.length;e({width:r[P]||0,height:a[P]||0});return{first:k(0),last:k(e-1),widest:k(w),highest:k(M),widths:r,heights:a}}getLabelForValue(t){return t}getPixelForValue(t,e){return NaN}getValueForPixel(t){}getPixelForTick(t){const e=this.ticks;return t<0||t>e.length-1?null:this.getPixelForValue(e[t].value)}getPixelForDecimal(t){this._reversePixels&&(t=1-t);const e=this._startPixel+t*this._length;return Xo(this._alignToPixels?kt(this.chart,e,0):e)}getDecimalForPixel(t){const e=(t-this._startPixel)/this._length;return this._reversePixels?1-e:e}getBasePixel(){return this.getPixelForValue(this.getBaseValue())}getBaseValue(){const{min:t,max:e}=this;return t<0&&e<0?e:t>0&&e>0?t:0}getContext(t){const e=this.ticks||[];if(t>=0&&ta*n?a/s:l/n:l*n0}_computeGridLineItems(t){const e=this.axis,s=this.chart,n=this.options,{grid:o,position:r,border:a}=n,l=o.offset,c=this.isHorizontal(),d=this.ticks.length+(l?1:0),f=Zt(o),u=[],p=a.setContext(this.getContext()),g=p.display?p.width:0,m=g/2,b=function(E){return kt(s,E,g)};let _,y,v,x,w,M,k,P,O,C,A,j;if(r==="top")_=b(this.bottom),M=this.bottom-f,P=_-m,C=b(t.top)+m,j=t.bottom;else if(r==="bottom")_=b(this.top),C=t.top,j=b(t.bottom)-m,M=_+m,P=this.top+f;else if(r==="left")_=b(this.right),w=this.right-f,k=_-m,O=b(t.left)+m,A=t.right;else if(r==="right")_=b(this.left),O=t.left,A=b(t.right)-m,w=_+m,k=this.left+f;else if(e==="x"){if(r==="center")_=b((t.top+t.bottom)/2+.5);else if(T(r)){const E=Object.keys(r)[0],H=r[E];_=b(this.chart.scales[E].getPixelForValue(H))}C=t.top,j=t.bottom,M=_+m,P=M+f}else if(e==="y"){if(r==="center")_=b((t.left+t.right)/2);else if(T(r)){const E=Object.keys(r)[0],H=r[E];_=b(this.chart.scales[E].getPixelForValue(H))}w=_-m,k=w-f,O=t.left,A=t.right}const Q=D(n.ticks.maxTicksLimit,d),I=Math.max(1,Math.ceil(d/Q));for(y=0;yo.value===t);return n>=0?e.setContext(this.getContext(n)).lineWidth:0}drawGrid(t){const e=this.options.grid,s=this.ctx,n=this._gridLineItems||(this._gridLineItems=this._computeGridLineItems(t));let o,r;const a=(l,c,h)=>{!h.width||!h.color||(s.save(),s.lineWidth=h.width,s.strokeStyle=h.color,s.setLineDash(h.borderDash||[]),s.lineDashOffset=h.borderDashOffset,s.beginPath(),s.moveTo(l.x,l.y),s.lineTo(c.x,c.y),s.stroke(),s.restore())};if(e.display)for(o=0,r=n.length;o{this.draw(o)}}]:[{z:s,draw:o=>{this.drawBackground(),this.drawGrid(o),this.drawTitle()}},{z:n,draw:()=>{this.drawBorder()}},{z:e,draw:o=>{this.drawLabels(o)}}]}getMatchingVisibleMetas(t){const e=this.chart.getSortedVisibleDatasetMetas(),s=this.axis+"AxisID",n=[];let o,r;for(o=0,r=e.length;o{const s=e.split("."),n=s.pop(),o=[i].concat(s).join("."),r=t[e].split("."),a=r.pop(),l=r.join(".");B.route(o,n,l,a)})}function dl(i){return"id"in i&&"defaults"in i}class fl{constructor(){this.controllers=new Ce(Ht,"datasets",!0),this.elements=new Ce(nt,"elements"),this.plugins=new Ce(Object,"plugins"),this.scales=new Ce(jt,"scales"),this._typedRegistries=[this.controllers,this.scales,this.elements]}add(...t){this._each("register",t)}remove(...t){this._each("unregister",t)}addControllers(...t){this._each("register",t,this.controllers)}addElements(...t){this._each("register",t,this.elements)}addPlugins(...t){this._each("register",t,this.plugins)}addScales(...t){this._each("register",t,this.scales)}getController(t){return this._get(t,this.controllers,"controller")}getElement(t){return this._get(t,this.elements,"element")}getPlugin(t){return this._get(t,this.plugins,"plugin")}getScale(t){return this._get(t,this.scales,"scale")}removeControllers(...t){this._each("unregister",t,this.controllers)}removeElements(...t){this._each("unregister",t,this.elements)}removePlugins(...t){this._each("unregister",t,this.plugins)}removeScales(...t){this._each("unregister",t,this.scales)}_each(t,e,s){[...e].forEach(n=>{const o=s||this._getRegistryForType(n);s||o.isForType(n)||o===this.plugins&&n.id?this._exec(t,o,n):L(n,r=>{const a=s||this._getRegistryForType(r);this._exec(t,a,r)})})}_exec(t,e,s){const n=Ci(t);F(s["before"+n],[],s),e[t](s),F(s["after"+n],[],s)}_getRegistryForType(t){for(let e=0;eo.filter(a=>!r.some(l=>a.plugin.id===l.plugin.id));this._notify(n(e,s),t,"stop"),this._notify(n(s,e),t,"start")}}function gl(i){const t={},e=[],s=Object.keys(at.plugins.items);for(let o=0;o1&&Ds(i[0].toLowerCase());if(s)return s}throw new Error(`Cannot determine type of '${i}' axis. Please provide 'axis' or 'position' option.`)}function Os(i,t,e){if(e[t+"AxisID"]===i)return{axis:t}}function vl(i,t){if(t.data&&t.data.datasets){const e=t.data.datasets.filter(s=>s.xAxisID===i||s.yAxisID===i);if(e.length)return Os(i,"x",e[0])||Os(i,"y",e[0])}return{}}function kl(i,t){const e=At[i.type]||{scales:{}},s=t.scales||{},n=_i(i.type,t),o=Object.create(null);return Object.keys(s).forEach(r=>{const a=s[r];if(!T(a))return console.error(`Invalid scale configuration for scale: ${r}`);if(a._proxy)return console.warn(`Ignoring resolver passed as options for scale: ${r}`);const l=xi(r,a,vl(r,i),B.scales[a.type]),c=xl(l,n),h=e.scales||{};o[r]=ne(Object.create(null),[{axis:l},a,h[l],h[c]])}),i.data.datasets.forEach(r=>{const a=r.type||i.type,l=r.indexAxis||_i(a,t),h=(At[a]||{}).scales||{};Object.keys(h).forEach(d=>{const f=_l(d,l),u=r[f+"AxisID"]||f;o[u]=o[u]||Object.create(null),ne(o[u],[{axis:f},s[u],h[d]])})}),Object.keys(o).forEach(r=>{const a=o[r];ne(a,[B.scales[a.type],B.scale])}),o}function Vn(i){const t=i.options||(i.options={});t.plugins=D(t.plugins,{}),t.scales=kl(i,t)}function jn(i){return i=i||{},i.datasets=i.datasets||[],i.labels=i.labels||[],i}function wl(i){return i=i||{},i.data=jn(i.data),Vn(i),i}const Ts=new Map,$n=new Set;function De(i,t){let e=Ts.get(i);return e||(e=t(),Ts.set(i,e),$n.add(e)),e}const Jt=(i,t,e)=>{const s=Wt(t,e);s!==void 0&&i.add(s)};class Ml{constructor(t){this._config=wl(t),this._scopeCache=new Map,this._resolverCache=new Map}get platform(){return this._config.platform}get type(){return this._config.type}set type(t){this._config.type=t}get data(){return this._config.data}set data(t){this._config.data=jn(t)}get options(){return this._config.options}set options(t){this._config.options=t}get plugins(){return this._config.plugins}update(){const t=this._config;this.clearCache(),Vn(t)}clearCache(){this._scopeCache.clear(),this._resolverCache.clear()}datasetScopeKeys(t){return De(t,()=>[[`datasets.${t}`,""]])}datasetAnimationScopeKeys(t,e){return De(`${t}.transition.${e}`,()=>[[`datasets.${t}.transitions.${e}`,`transitions.${e}`],[`datasets.${t}`,""]])}datasetElementScopeKeys(t,e){return De(`${t}-${e}`,()=>[[`datasets.${t}.elements.${e}`,`datasets.${t}`,`elements.${e}`,""]])}pluginScopeKeys(t){const e=t.id,s=this.type;return De(`${s}-plugin-${e}`,()=>[[`plugins.${e}`,...t.additionalOptionScopes||[]]])}_cachedScopes(t,e){const s=this._scopeCache;let n=s.get(t);return(!n||e)&&(n=new Map,s.set(t,n)),n}getOptionScopes(t,e,s){const{options:n,type:o}=this,r=this._cachedScopes(t,s),a=r.get(e);if(a)return a;const l=new Set;e.forEach(h=>{t&&(l.add(t),h.forEach(d=>Jt(l,t,d))),h.forEach(d=>Jt(l,n,d)),h.forEach(d=>Jt(l,At[o]||{},d)),h.forEach(d=>Jt(l,B,d)),h.forEach(d=>Jt(l,mi,d))});const c=Array.from(l);return c.length===0&&c.push(Object.create(null)),$n.has(e)&&r.set(e,c),c}chartOptionScopes(){const{options:t,type:e}=this;return[t,At[e]||{},B.datasets[e]||{},{type:e},B,mi]}resolveNamedOptions(t,e,s,n=[""]){const o={$shared:!0},{resolver:r,subPrefixes:a}=As(this._resolverCache,t,n);let l=r;if(Pl(r,e)){o.$shared=!1,s=yt(s)?s():s;const c=this.createResolver(t,s,a);l=Nt(r,s,c)}for(const c of e)o[c]=l[c];return o}createResolver(t,e,s=[""],n){const{resolver:o}=As(this._resolverCache,t,s);return T(e)?Nt(o,e,void 0,n):o}}function As(i,t,e){let s=i.get(t);s||(s=new Map,i.set(t,s));const n=e.join();let o=s.get(n);return o||(o={resolver:Li(t,e),subPrefixes:e.filter(a=>!a.toLowerCase().includes("hover"))},s.set(n,o)),o}const Sl=i=>T(i)&&Object.getOwnPropertyNames(i).reduce((t,e)=>t||yt(i[e]),!1);function Pl(i,t){const{isScriptable:e,isIndexable:s}=wn(i);for(const n of t){const o=e(n),r=s(n),a=(r||o)&&i[n];if(o&&(yt(a)||Sl(a))||r&&W(a))return!0}return!1}var Cl="4.4.0";const Dl=["top","bottom","left","right","chartArea"];function Rs(i,t){return i==="top"||i==="bottom"||Dl.indexOf(i)===-1&&t==="x"}function Ls(i,t){return function(e,s){return e[i]===s[i]?e[t]-s[t]:e[i]-s[i]}}function Is(i){const t=i.chart,e=t.options.animation;t.notifyPlugins("afterRender"),F(e&&e.onComplete,[i],t)}function Ol(i){const t=i.chart,e=t.options.animation;F(e&&e.onProgress,[i],t)}function Yn(i){return Dn()&&typeof i=="string"?i=document.getElementById(i):i&&i.length&&(i=i[0]),i&&i.canvas&&(i=i.canvas),i}const ze={},Fs=i=>{const t=Yn(i);return Object.values(ze).filter(e=>e.canvas===t).pop()};function Tl(i,t,e){const s=Object.keys(i);for(const n of s){const o=+n;if(o>=t){const r=i[n];delete i[n],(e>0||o>t)&&(i[o+e]=r)}}}function Al(i,t,e,s){return!e||i.type==="mouseout"?null:s?t:i}function Oe(i,t,e){return i.options.clip?i[e]:t[e]}function Rl(i,t){const{xScale:e,yScale:s}=i;return e&&s?{left:Oe(e,t,"left"),right:Oe(e,t,"right"),top:Oe(s,t,"top"),bottom:Oe(s,t,"bottom")}:t}class Pt{static register(...t){at.add(...t),Es()}static unregister(...t){at.remove(...t),Es()}constructor(t,e){const s=this.config=new Ml(e),n=Yn(t),o=Fs(n);if(o)throw new Error("Canvas is already in use. Chart with ID '"+o.id+"' must be destroyed before the canvas with ID '"+o.canvas.id+"' can be reused.");const r=s.createResolver(s.chartOptionScopes(),this.getContext());this.platform=new(s.platform||qa(n)),this.platform.updateConfig(s);const a=this.platform.acquireContext(n,r.aspectRatio),l=a&&a.canvas,c=l&&l.height,h=l&&l.width;if(this.id=Lo(),this.ctx=a,this.canvas=l,this.width=h,this.height=c,this._options=r,this._aspectRatio=this.aspectRatio,this._layers=[],this._metasets=[],this._stacks=void 0,this.boxes=[],this.currentDevicePixelRatio=void 0,this.chartArea=void 0,this._active=[],this._lastEvent=void 0,this._listeners={},this._responsiveListeners=void 0,this._sortedMetasets=[],this.scales={},this._plugins=new ul,this.$proxies={},this._hiddenIndices={},this.attached=!1,this._animationsDisabled=void 0,this.$context=void 0,this._doResize=Zo(d=>this.update(d),r.resizeDelay||0),this._dataChanges=[],ze[this.id]=this,!a||!l){console.error("Failed to create chart: can't acquire context from the given item");return}ft.listen(this,"complete",Is),ft.listen(this,"progress",Ol),this._initialize(),this.attached&&this.update()}get aspectRatio(){const{options:{aspectRatio:t,maintainAspectRatio:e},width:s,height:n,_aspectRatio:o}=this;return R(t)?e&&o?o:n?s/n:null:t}get data(){return this.config.data}set data(t){this.config.data=t}get options(){return this._options}set options(t){this.config.options=t}get registry(){return at}_initialize(){return this.notifyPlugins("beforeInit"),this.options.responsive?this.resize():ss(this,this.options.devicePixelRatio),this.bindEvents(),this.notifyPlugins("afterInit"),this}clear(){return ts(this.canvas,this.ctx),this}stop(){return ft.stop(this),this}resize(t,e){ft.running(this)?this._resizeBeforeDraw={width:t,height:e}:this._resize(t,e)}_resize(t,e){const s=this.options,n=this.canvas,o=s.maintainAspectRatio&&this.aspectRatio,r=this.platform.getMaximumSize(n,t,e,o),a=s.devicePixelRatio||this.platform.getDevicePixelRatio(),l=this.width?"resize":"attach";this.width=r.width,this.height=r.height,this._aspectRatio=this.aspectRatio,ss(this,a,!0)&&(this.notifyPlugins("resize",{size:r}),F(s.onResize,[this,r],this),this.attached&&this._doResize(l)&&this.render())}ensureScalesHaveIDs(){const e=this.options.scales||{};L(e,(s,n)=>{s.id=n})}buildOrUpdateScales(){const t=this.options,e=t.scales,s=this.scales,n=Object.keys(s).reduce((r,a)=>(r[a]=!1,r),{});let o=[];e&&(o=o.concat(Object.keys(e).map(r=>{const a=e[r],l=xi(r,a),c=l==="r",h=l==="x";return{options:a,dposition:c?"chartArea":h?"bottom":"left",dtype:c?"radialLinear":h?"category":"linear"}}))),L(o,r=>{const a=r.options,l=a.id,c=xi(l,a),h=D(a.type,r.dtype);(a.position===void 0||Rs(a.position,c)!==Rs(r.dposition))&&(a.position=r.dposition),n[l]=!0;let d=null;if(l in s&&s[l].type===h)d=s[l];else{const f=at.getScale(h);d=new f({id:l,type:h,ctx:this.ctx,chart:this}),s[d.id]=d}d.init(a,t)}),L(n,(r,a)=>{r||delete s[a]}),L(s,r=>{it.configure(this,r,r.options),it.addBox(this,r)})}_updateMetasets(){const t=this._metasets,e=this.data.datasets.length,s=t.length;if(t.sort((n,o)=>n.index-o.index),s>e){for(let n=e;ne.length&&delete this._stacks,t.forEach((s,n)=>{e.filter(o=>o===s._dataset).length===0&&this._destroyDatasetMeta(n)})}buildOrUpdateControllers(){const t=[],e=this.data.datasets;let s,n;for(this._removeUnreferencedMetasets(),s=0,n=e.length;s{this.getDatasetMeta(e).controller.reset()},this)}reset(){this._resetElements(),this.notifyPlugins("reset")}update(t){const e=this.config;e.update();const s=this._options=e.createResolver(e.chartOptionScopes(),this.getContext()),n=this._animationsDisabled=!s.animation;if(this._updateScales(),this._checkEventBindings(),this._updateHiddenIndices(),this._plugins.invalidate(),this.notifyPlugins("beforeUpdate",{mode:t,cancelable:!0})===!1)return;const o=this.buildOrUpdateControllers();this.notifyPlugins("beforeElementsUpdate");let r=0;for(let c=0,h=this.data.datasets.length;c{c.reset()}),this._updateDatasets(t),this.notifyPlugins("afterUpdate",{mode:t}),this._layers.sort(Ls("z","_idx"));const{_active:a,_lastEvent:l}=this;l?this._eventHandler(l,!0):a.length&&this._updateHoverStyles(a,a,!0),this.render()}_updateScales(){L(this.scales,t=>{it.removeBox(this,t)}),this.ensureScalesHaveIDs(),this.buildOrUpdateScales()}_checkEventBindings(){const t=this.options,e=new Set(Object.keys(this._listeners)),s=new Set(t.events);(!$i(e,s)||!!this._responsiveListeners!==t.responsive)&&(this.unbindEvents(),this.bindEvents())}_updateHiddenIndices(){const{_hiddenIndices:t}=this,e=this._getUniformDataChanges()||[];for(const{method:s,start:n,count:o}of e){const r=s==="_removeElements"?-o:o;Tl(t,n,r)}}_getUniformDataChanges(){const t=this._dataChanges;if(!t||!t.length)return;this._dataChanges=[];const e=this.data.datasets.length,s=o=>new Set(t.filter(r=>r[0]===o).map((r,a)=>a+","+r.splice(1).join(","))),n=s(0);for(let o=1;oo.split(",")).map(o=>({method:o[1],start:+o[2],count:+o[3]}))}_updateLayout(t){if(this.notifyPlugins("beforeLayout",{cancelable:!0})===!1)return;it.update(this,this.width,this.height,t);const e=this.chartArea,s=e.width<=0||e.height<=0;this._layers=[],L(this.boxes,n=>{s&&n.position==="chartArea"||(n.configure&&n.configure(),this._layers.push(...n._layers()))},this),this._layers.forEach((n,o)=>{n._idx=o}),this.notifyPlugins("afterLayout")}_updateDatasets(t){if(this.notifyPlugins("beforeDatasetsUpdate",{mode:t,cancelable:!0})!==!1){for(let e=0,s=this.data.datasets.length;e=0;--e)this._drawDataset(t[e]);this.notifyPlugins("afterDatasetsDraw")}_drawDataset(t){const e=this.ctx,s=t._clip,n=!s.disabled,o=Rl(t,this.chartArea),r={meta:t,index:t.index,cancelable:!0};this.notifyPlugins("beforeDatasetDraw",r)!==!1&&(n&&Ke(e,{left:s.left===!1?0:o.left-s.left,right:s.right===!1?this.width:o.right+s.right,top:s.top===!1?0:o.top-s.top,bottom:s.bottom===!1?this.height:o.bottom+s.bottom}),t.controller.draw(),n&&qe(e),r.cancelable=!1,this.notifyPlugins("afterDatasetDraw",r))}isPointInArea(t){return ue(t,this.chartArea,this._minPadding)}getElementsAtEventForMode(t,e,s,n){const o=Da.modes[e];return typeof o=="function"?o(this,t,s,n):[]}getDatasetMeta(t){const e=this.data.datasets[t],s=this._metasets;let n=s.filter(o=>o&&o._dataset===e).pop();return n||(n={type:null,data:[],dataset:null,controller:null,hidden:null,xAxisID:null,yAxisID:null,order:e&&e.order||0,index:t,_dataset:e,_parsed:[],_sorted:!1},s.push(n)),n}getContext(){return this.$context||(this.$context=Rt(null,{chart:this,type:"chart"}))}getVisibleDatasetCount(){return this.getSortedVisibleDatasetMetas().length}isDatasetVisible(t){const e=this.data.datasets[t];if(!e)return!1;const s=this.getDatasetMeta(t);return typeof s.hidden=="boolean"?!s.hidden:!e.hidden}setDatasetVisibility(t,e){const s=this.getDatasetMeta(t);s.hidden=!e}toggleDataVisibility(t){this._hiddenIndices[t]=!this._hiddenIndices[t]}getDataVisibility(t){return!this._hiddenIndices[t]}_updateVisibility(t,e,s){const n=s?"show":"hide",o=this.getDatasetMeta(t),r=o.controller._resolveAnimations(void 0,n);de(e)?(o.data[e].hidden=!s,this.update()):(this.setDatasetVisibility(t,s),r.update(o,{visible:s}),this.update(a=>a.datasetIndex===t?n:void 0))}hide(t,e){this._updateVisibility(t,e,!1)}show(t,e){this._updateVisibility(t,e,!0)}_destroyDatasetMeta(t){const e=this._metasets[t];e&&e.controller&&e.controller._destroy(),delete this._metasets[t]}_stop(){let t,e;for(this.stop(),ft.remove(this),t=0,e=this.data.datasets.length;t{e.addEventListener(this,o,r),t[o]=r},n=(o,r,a)=>{o.offsetX=r,o.offsetY=a,this._eventHandler(o)};L(this.options.events,o=>s(o,n))}bindResponsiveEvents(){this._responsiveListeners||(this._responsiveListeners={});const t=this._responsiveListeners,e=this.platform,s=(l,c)=>{e.addEventListener(this,l,c),t[l]=c},n=(l,c)=>{t[l]&&(e.removeEventListener(this,l,c),delete t[l])},o=(l,c)=>{this.canvas&&this.resize(l,c)};let r;const a=()=>{n("attach",a),this.attached=!0,this.resize(),s("resize",o),s("detach",r)};r=()=>{this.attached=!1,n("resize",o),this._stop(),this._resize(0,0),s("attach",a)},e.isAttached(this.canvas)?a():r()}unbindEvents(){L(this._listeners,(t,e)=>{this.platform.removeEventListener(this,e,t)}),this._listeners={},L(this._responsiveListeners,(t,e)=>{this.platform.removeEventListener(this,e,t)}),this._responsiveListeners=void 0}updateHoverStyle(t,e,s){const n=s?"set":"remove";let o,r,a,l;for(e==="dataset"&&(o=this.getDatasetMeta(t[0].datasetIndex),o.controller["_"+n+"DatasetHoverStyle"]()),a=0,l=t.length;a{const a=this.getDatasetMeta(o);if(!a)throw new Error("No dataset found at index "+o);return{datasetIndex:o,element:a.data[r],index:r}});!We(s,e)&&(this._active=s,this._lastEvent=null,this._updateHoverStyles(s,e))}notifyPlugins(t,e,s){return this._plugins.notify(this,t,e,s)}isPluginEnabled(t){return this._plugins._cache.filter(e=>e.plugin.id===t).length===1}_updateHoverStyles(t,e,s){const n=this.options.hover,o=(l,c)=>l.filter(h=>!c.some(d=>h.datasetIndex===d.datasetIndex&&h.index===d.index)),r=o(e,t),a=s?t:o(t,e);r.length&&this.updateHoverStyle(r,n.mode,!1),a.length&&n.mode&&this.updateHoverStyle(a,n.mode,!0)}_eventHandler(t,e){const s={event:t,replay:e,cancelable:!0,inChartArea:this.isPointInArea(t)},n=r=>(r.options.events||this.options.events).includes(t.native.type);if(this.notifyPlugins("beforeEvent",s,n)===!1)return;const o=this._handleEvent(t,e,s.inChartArea);return s.cancelable=!1,this.notifyPlugins("afterEvent",s,n),(o||s.changed)&&this.render(),this}_handleEvent(t,e,s){const{_active:n=[],options:o}=this,r=e,a=this._getActiveElements(t,n,s,r),l=Ho(t),c=Al(t,this._lastEvent,s,l);s&&(this._lastEvent=null,F(o.onHover,[t,a,this],this),l&&F(o.onClick,[t,a,this],this));const h=!We(a,n);return(h||e)&&(this._active=a,this._updateHoverStyles(a,n,e)),this._lastEvent=c,h}_getActiveElements(t,e,s,n){if(t.type==="mouseout")return[];if(!s)return e;const o=this.options.hover;return this.getElementsAtEventForMode(t,o.mode,o,n)}}S(Pt,"defaults",B),S(Pt,"instances",ze),S(Pt,"overrides",At),S(Pt,"registry",at),S(Pt,"version",Cl),S(Pt,"getChart",Fs);function Es(){return L(Pt.instances,i=>i._plugins.invalidate())}function Ll(i,t,e){const{startAngle:s,pixelMargin:n,x:o,y:r,outerRadius:a,innerRadius:l}=t;let c=n/a;i.beginPath(),i.arc(o,r,a,s-c,e+c),l>n?(c=n/l,i.arc(o,r,l,e+c,s-c,!0)):i.arc(o,r,n,e+$,s-$),i.closePath(),i.clip()}function Il(i){return Ri(i,["outerStart","outerEnd","innerStart","innerEnd"])}function Fl(i,t,e,s){const n=Il(i.options.borderRadius),o=(e-t)/2,r=Math.min(o,s*t/2),a=l=>{const c=(e-Math.min(o,l))*s/2;return K(l,0,Math.min(o,c))};return{outerStart:a(n.outerStart),outerEnd:a(n.outerEnd),innerStart:K(n.innerStart,0,r),innerEnd:K(n.innerEnd,0,r)}}function Et(i,t,e,s){return{x:e+i*Math.cos(t),y:s+i*Math.sin(t)}}function Ue(i,t,e,s,n,o){const{x:r,y:a,startAngle:l,pixelMargin:c,innerRadius:h}=t,d=Math.max(t.outerRadius+s+e-c,0),f=h>0?h+s+e+c:0;let u=0;const p=n-l;if(s){const I=h>0?h-s:0,E=d>0?d-s:0,H=(I+E)/2,st=H!==0?p*H/(H+s):p;u=(p-st)/2}const g=Math.max(.001,p*d-e/N)/d,m=(p-g)/2,b=l+m+u,_=n-m-u,{outerStart:y,outerEnd:v,innerStart:x,innerEnd:w}=Fl(t,f,d,_-b),M=d-y,k=d-v,P=b+y/M,O=_-v/k,C=f+x,A=f+w,j=b+x/C,Q=_-w/A;if(i.beginPath(),o){const I=(P+O)/2;if(i.arc(r,a,d,P,I),i.arc(r,a,d,I,O),v>0){const U=Et(k,O,r,a);i.arc(U.x,U.y,v,O,_+$)}const E=Et(A,_,r,a);if(i.lineTo(E.x,E.y),w>0){const U=Et(A,Q,r,a);i.arc(U.x,U.y,w,_+$,Q+Math.PI)}const H=(_-w/f+(b+x/f))/2;if(i.arc(r,a,f,_-w/f,H,!0),i.arc(r,a,f,H,b+x/f,!0),x>0){const U=Et(C,j,r,a);i.arc(U.x,U.y,x,j+Math.PI,b-$)}const st=Et(M,b,r,a);if(i.lineTo(st.x,st.y),y>0){const U=Et(M,P,r,a);i.arc(U.x,U.y,y,b-$,P)}}else{i.moveTo(r,a);const I=Math.cos(P)*d+r,E=Math.sin(P)*d+a;i.lineTo(I,E);const H=Math.cos(O)*d+r,st=Math.sin(O)*d+a;i.lineTo(H,st)}i.closePath()}function El(i,t,e,s,n){const{fullCircles:o,startAngle:r,circumference:a}=t;let l=t.endAngle;if(o){Ue(i,t,e,s,l,n);for(let c=0;c=V||Di(r,l,c),m=pt(a,h+u,d+u);return g&&m}getCenterPoint(e){const{x:s,y:n,startAngle:o,endAngle:r,innerRadius:a,outerRadius:l}=this.getProps(["x","y","startAngle","endAngle","innerRadius","outerRadius"],e),{offset:c,spacing:h}=this.options,d=(o+r)/2,f=(a+l+h+c)/2;return{x:s+Math.cos(d)*f,y:n+Math.sin(d)*f}}tooltipPosition(e){return this.getCenterPoint(e)}draw(e){const{options:s,circumference:n}=this,o=(s.offset||0)/4,r=(s.spacing||0)/2,a=s.circular;if(this.pixelMargin=s.borderAlign==="inner"?.33:0,this.fullCircles=n>V?Math.floor(n/V):0,n===0||this.innerRadius<0||this.outerRadius<0)return;e.save();const l=(this.startAngle+this.endAngle)/2;e.translate(Math.cos(l)*o,Math.sin(l)*o);const c=1-Math.sin(Math.min(N,n||0)),h=o*c;e.fillStyle=s.backgroundColor,e.strokeStyle=s.borderColor,El(e,this,h,r,a),zl(e,this,h,r,a),e.restore()}}S(ie,"id","arc"),S(ie,"defaults",{borderAlign:"center",borderColor:"#fff",borderDash:[],borderDashOffset:0,borderJoinStyle:void 0,borderRadius:0,borderWidth:2,offset:0,spacing:0,angle:void 0,circular:!0}),S(ie,"defaultRoutes",{backgroundColor:"backgroundColor"}),S(ie,"descriptors",{_scriptable:!0,_indexable:e=>e!=="borderDash"});function Un(i,t,e=t){i.lineCap=D(e.borderCapStyle,t.borderCapStyle),i.setLineDash(D(e.borderDash,t.borderDash)),i.lineDashOffset=D(e.borderDashOffset,t.borderDashOffset),i.lineJoin=D(e.borderJoinStyle,t.borderJoinStyle),i.lineWidth=D(e.borderWidth,t.borderWidth),i.strokeStyle=D(e.borderColor,t.borderColor)}function Bl(i,t,e){i.lineTo(e.x,e.y)}function Hl(i){return i.stepped?hr:i.tension||i.cubicInterpolationMode==="monotone"?dr:Bl}function Xn(i,t,e={}){const s=i.length,{start:n=0,end:o=s-1}=e,{start:r,end:a}=t,l=Math.max(n,r),c=Math.min(o,a),h=na&&o>a;return{count:s,start:l,loop:t.loop,ilen:c(r+(c?a-v:v))%o,y=()=>{g!==m&&(i.lineTo(h,m),i.lineTo(h,g),i.lineTo(h,b))};for(l&&(u=n[_(0)],i.moveTo(u.x,u.y)),f=0;f<=a;++f){if(u=n[_(f)],u.skip)continue;const v=u.x,x=u.y,w=v|0;w===p?(xm&&(m=x),h=(d*h+v)/++d):(y(),i.lineTo(v,x),p=w,d=0,g=m=x),b=x}y()}function yi(i){const t=i.options,e=t.borderDash&&t.borderDash.length;return!i._decimated&&!i._loop&&!t.tension&&t.cubicInterpolationMode!=="monotone"&&!t.stepped&&!e?Nl:Wl}function Vl(i){return i.stepped?jr:i.tension||i.cubicInterpolationMode==="monotone"?$r:St}function jl(i,t,e,s){let n=t._path;n||(n=t._path=new Path2D,t.path(n,e,s)&&n.closePath()),Un(i,t.options),i.stroke(n)}function $l(i,t,e,s){const{segments:n,options:o}=t,r=yi(t);for(const a of n)Un(i,o,a.style),i.beginPath(),r(i,t,a,{start:e,end:e+s-1})&&i.closePath(),i.stroke()}const Yl=typeof Path2D=="function";function Ul(i,t,e,s){Yl&&!t.options.segment?jl(i,t,e,s):$l(i,t,e,s)}class Ot extends nt{constructor(t){super(),this.animated=!0,this.options=void 0,this._chart=void 0,this._loop=void 0,this._fullLoop=void 0,this._path=void 0,this._points=void 0,this._segments=void 0,this._decimated=!1,this._pointsUpdated=!1,this._datasetIndex=void 0,t&&Object.assign(this,t)}updateControlPoints(t,e){const s=this.options;if((s.tension||s.cubicInterpolationMode==="monotone")&&!s.stepped&&!this._pointsUpdated){const n=s.spanGaps?this._loop:this._fullLoop;Fr(this._points,s,t,n,e),this._pointsUpdated=!0}}set points(t){this._points=t,delete this._segments,delete this._path,this._pointsUpdated=!1}get points(){return this._points}get segments(){return this._segments||(this._segments=Gr(this,this.options.segment))}first(){const t=this.segments,e=this.points;return t.length&&e[t[0].start]}last(){const t=this.segments,e=this.points,s=t.length;return s&&e[t[s-1].end]}interpolate(t,e){const s=this.options,n=t[e],o=this.points,r=Ln(this,{property:e,start:n,end:n});if(!r.length)return;const a=[],l=Vl(s);let c,h;for(c=0,h=r.length;ct!=="borderDash"&&t!=="fill"});function zs(i,t,e,s){const n=i.options,{[e]:o}=i.getProps([e],s);return Math.abs(t-o){a=Bi(r,a,n);const l=n[r],c=n[a];s!==null?(o.push({x:l.x,y:s}),o.push({x:c.x,y:s})):e!==null&&(o.push({x:e,y:l.y}),o.push({x:e,y:c.y}))}),o}function Bi(i,t,e){for(;t>i;t--){const s=e[t];if(!isNaN(s.x)&&!isNaN(s.y))break}return t}function Bs(i,t,e,s){return i&&t?s(i[e],t[e]):i?i[e]:t?t[e]:0}function qn(i,t){let e=[],s=!1;return W(i)?(s=!0,e=i):e=Ql(i,t),e.length?new Ot({points:e,options:{tension:0},_loop:s,_fullLoop:s}):null}function Hs(i){return i&&i.fill!==!1}function tc(i,t,e){let n=i[t].fill;const o=[t];let r;if(!e)return n;for(;n!==!1&&o.indexOf(n)===-1;){if(!q(n))return n;if(r=i[n],!r)return!1;if(r.visible)return n;o.push(n),n=r.fill}return!1}function ec(i,t,e){const s=oc(i);if(T(s))return isNaN(s.value)?!1:s;let n=parseFloat(s);return q(n)&&Math.floor(n)===n?ic(s[0],t,n,e):["origin","start","end","stack","shape"].indexOf(s)>=0&&s}function ic(i,t,e,s){return(i==="-"||i==="+")&&(e=t+e),e===t||e<0||e>=s?!1:e}function sc(i,t){let e=null;return i==="start"?e=t.bottom:i==="end"?e=t.top:T(i)?e=t.getPixelForValue(i.value):t.getBasePixel&&(e=t.getBasePixel()),e}function nc(i,t,e){let s;return i==="start"?s=e:i==="end"?s=t.options.reverse?t.min:t.max:T(i)?s=i.value:s=t.getBaseValue(),s}function oc(i){const t=i.options,e=t.fill;let s=D(e&&e.target,e);return s===void 0&&(s=!!t.backgroundColor),s===!1||s===null?!1:s===!0?"origin":s}function rc(i){const{scale:t,index:e,line:s}=i,n=[],o=s.segments,r=s.points,a=ac(t,e);a.push(qn({x:null,y:t.bottom},s));for(let l=0;l=0;--r){const a=n[r].$filler;a&&(a.line.updateControlPoints(o,a.axis),s&&a.fill&&di(i.ctx,a,o))}},beforeDatasetsDraw(i,t,e){if(e.drawTime!=="beforeDatasetsDraw")return;const s=i.getSortedVisibleDatasetMetas();for(let n=s.length-1;n>=0;--n){const o=s[n].$filler;Hs(o)&&di(i.ctx,o,i.chartArea)}},beforeDatasetDraw(i,t,e){const s=t.meta.$filler;!Hs(s)||e.drawTime!=="beforeDatasetDraw"||di(i.ctx,s,i.chartArea)},defaults:{propagate:!0,drawTime:"beforeDatasetDraw"}};const js=(i,t)=>{let{boxHeight:e=t,boxWidth:s=t}=i;return i.usePointStyle&&(e=Math.min(e,t),s=i.pointStyleWidth||Math.min(s,t)),{boxWidth:s,boxHeight:e,itemHeight:Math.max(t,e)}},bc=(i,t)=>i!==null&&t!==null&&i.datasetIndex===t.datasetIndex&&i.index===t.index;class $s extends nt{constructor(t){super(),this._added=!1,this.legendHitBoxes=[],this._hoveredItem=null,this.doughnutMode=!1,this.chart=t.chart,this.options=t.options,this.ctx=t.ctx,this.legendItems=void 0,this.columnSizes=void 0,this.lineWidths=void 0,this.maxHeight=void 0,this.maxWidth=void 0,this.top=void 0,this.bottom=void 0,this.left=void 0,this.right=void 0,this.height=void 0,this.width=void 0,this._margins=void 0,this.position=void 0,this.weight=void 0,this.fullSize=void 0}update(t,e,s){this.maxWidth=t,this.maxHeight=e,this._margins=s,this.setDimensions(),this.buildLabels(),this.fit()}setDimensions(){this.isHorizontal()?(this.width=this.maxWidth,this.left=this._margins.left,this.right=this.width):(this.height=this.maxHeight,this.top=this._margins.top,this.bottom=this.height)}buildLabels(){const t=this.options.labels||{};let e=F(t.generateLabels,[this.chart],this)||[];t.filter&&(e=e.filter(s=>t.filter(s,this.chart.data))),t.sort&&(e=e.sort((s,n)=>t.sort(s,n,this.chart.data))),this.options.reverse&&e.reverse(),this.legendItems=e}fit(){const{options:t,ctx:e}=this;if(!t.display){this.width=this.height=0;return}const s=t.labels,n=Y(s.font),o=n.size,r=this._computeTitleHeight(),{boxWidth:a,itemHeight:l}=js(s,o);let c,h;e.font=n.string,this.isHorizontal()?(c=this.maxWidth,h=this._fitRows(r,o,a,l)+10):(h=this.maxHeight,c=this._fitCols(r,n,a,l)+10),this.width=Math.min(c,t.maxWidth||this.maxWidth),this.height=Math.min(h,t.maxHeight||this.maxHeight)}_fitRows(t,e,s,n){const{ctx:o,maxWidth:r,options:{labels:{padding:a}}}=this,l=this.legendHitBoxes=[],c=this.lineWidths=[0],h=n+a;let d=t;o.textAlign="left",o.textBaseline="middle";let f=-1,u=-h;return this.legendItems.forEach((p,g)=>{const m=s+e/2+o.measureText(p.text).width;(g===0||c[c.length-1]+m+2*a>r)&&(d+=h,c[c.length-(g>0?0:1)]=0,u+=h,f++),l[g]={left:0,top:u,row:f,width:m,height:n},c[c.length-1]+=m+a}),d}_fitCols(t,e,s,n){const{ctx:o,maxHeight:r,options:{labels:{padding:a}}}=this,l=this.legendHitBoxes=[],c=this.columnSizes=[],h=r-t;let d=a,f=0,u=0,p=0,g=0;return this.legendItems.forEach((m,b)=>{const{itemWidth:_,itemHeight:y}=_c(s,e,o,m,n);b>0&&u+y+2*a>h&&(d+=f+a,c.push({width:f,height:u}),p+=f+a,g++,f=u=0),l[b]={left:p,top:u,col:g,width:_,height:y},f=Math.max(f,_),u+=y+a}),d+=f,c.push({width:f,height:u}),d}adjustHitBoxes(){if(!this.options.display)return;const t=this._computeTitleHeight(),{legendHitBoxes:e,options:{align:s,labels:{padding:n},rtl:o}}=this,r=Bt(o,this.left,this.width);if(this.isHorizontal()){let a=0,l=X(s,this.left+n,this.right-this.lineWidths[a]);for(const c of e)a!==c.row&&(a=c.row,l=X(s,this.left+n,this.right-this.lineWidths[a])),c.top+=this.top+t+n,c.left=r.leftForLtr(r.x(l),c.width),l+=c.width+n}else{let a=0,l=X(s,this.top+t+n,this.bottom-this.columnSizes[a].height);for(const c of e)c.col!==a&&(a=c.col,l=X(s,this.top+t+n,this.bottom-this.columnSizes[a].height)),c.top=l,c.left+=this.left+n,c.left=r.leftForLtr(r.x(c.left),c.width),l+=c.height+n}}isHorizontal(){return this.options.position==="top"||this.options.position==="bottom"}draw(){if(this.options.display){const t=this.ctx;Ke(t,this),this._draw(),qe(t)}}_draw(){const{options:t,columnSizes:e,lineWidths:s,ctx:n}=this,{align:o,labels:r}=t,a=B.color,l=Bt(t.rtl,this.left,this.width),c=Y(r.font),{padding:h}=r,d=c.size,f=d/2;let u;this.drawTitle(),n.textAlign=l.textAlign("left"),n.textBaseline="middle",n.lineWidth=.5,n.font=c.string;const{boxWidth:p,boxHeight:g,itemHeight:m}=js(r,d),b=function(w,M,k){if(isNaN(p)||p<=0||isNaN(g)||g<0)return;n.save();const P=D(k.lineWidth,1);if(n.fillStyle=D(k.fillStyle,a),n.lineCap=D(k.lineCap,"butt"),n.lineDashOffset=D(k.lineDashOffset,0),n.lineJoin=D(k.lineJoin,"miter"),n.lineWidth=P,n.strokeStyle=D(k.strokeStyle,a),n.setLineDash(D(k.lineDash,[])),r.usePointStyle){const O={radius:g*Math.SQRT2/2,pointStyle:k.pointStyle,rotation:k.rotation,borderWidth:P},C=l.xPlus(w,p/2),A=M+f;vn(n,O,C,A,r.pointStyleWidth&&p)}else{const O=M+Math.max((d-g)/2,0),C=l.leftForLtr(w,p),A=zt(k.borderRadius);n.beginPath(),Object.values(A).some(j=>j!==0)?je(n,{x:C,y:O,w:p,h:g,radius:A}):n.rect(C,O,p,g),n.fill(),P!==0&&n.stroke()}n.restore()},_=function(w,M,k){ge(n,k.text,w,M+m/2,c,{strikethrough:k.hidden,textAlign:l.textAlign(k.textAlign)})},y=this.isHorizontal(),v=this._computeTitleHeight();y?u={x:X(o,this.left+h,this.right-s[0]),y:this.top+h+v,line:0}:u={x:this.left+h,y:X(o,this.top+v+h,this.bottom-e[0].height),line:0},On(this.ctx,t.textDirection);const x=m+h;this.legendItems.forEach((w,M)=>{n.strokeStyle=w.fontColor,n.fillStyle=w.fontColor;const k=n.measureText(w.text).width,P=l.textAlign(w.textAlign||(w.textAlign=r.textAlign)),O=p+f+k;let C=u.x,A=u.y;l.setWidth(this.width),y?M>0&&C+O+h>this.right&&(A=u.y+=x,u.line++,C=u.x=X(o,this.left+h,this.right-s[u.line])):M>0&&A+x>this.bottom&&(C=u.x=C+e[u.line].width+h,u.line++,A=u.y=X(o,this.top+v+h,this.bottom-e[u.line].height));const j=l.x(C);if(b(j,A,w),C=Jo(P,C+p+f,y?C+O:this.right,t.rtl),_(l.x(C),A,w),y)u.x+=O+h;else if(typeof w.text!="string"){const Q=c.lineHeight;u.y+=Zn(w,Q)+h}else u.y+=x}),Tn(this.ctx,t.textDirection)}drawTitle(){const t=this.options,e=t.title,s=Y(e.font),n=tt(e.padding);if(!e.display)return;const o=Bt(t.rtl,this.left,this.width),r=this.ctx,a=e.position,l=s.size/2,c=n.top+l;let h,d=this.left,f=this.width;if(this.isHorizontal())f=Math.max(...this.lineWidths),h=this.top+c,d=X(t.align,d,this.right-f);else{const p=this.columnSizes.reduce((g,m)=>Math.max(g,m.height),0);h=c+X(t.align,this.top,this.bottom-p-t.labels.padding-this._computeTitleHeight())}const u=X(a,d,d+f);r.textAlign=o.textAlign(Ti(a)),r.textBaseline="middle",r.strokeStyle=e.color,r.fillStyle=e.color,r.font=s.string,ge(r,e.text,u,h,s)}_computeTitleHeight(){const t=this.options.title,e=Y(t.font),s=tt(t.padding);return t.display?e.lineHeight+s.height:0}_getLegendItemAt(t,e){let s,n,o;if(pt(t,this.left,this.right)&&pt(e,this.top,this.bottom)){for(o=this.legendHitBoxes,s=0;so.length>r.length?o:r)),t+e.size/2+s.measureText(n).width}function yc(i,t,e){let s=i;return typeof t.text!="string"&&(s=Zn(t,e)),s}function Zn(i,t){const e=i.text?i.text.length:0;return t*e}function vc(i,t){return!!((i==="mousemove"||i==="mouseout")&&(t.onHover||t.onLeave)||t.onClick&&(i==="click"||i==="mouseup"))}var ah={id:"legend",_element:$s,start(i,t,e){const s=i.legend=new $s({ctx:i.ctx,options:e,chart:i});it.configure(i,s,e),it.addBox(i,s)},stop(i){it.removeBox(i,i.legend),delete i.legend},beforeUpdate(i,t,e){const s=i.legend;it.configure(i,s,e),s.options=e},afterUpdate(i){const t=i.legend;t.buildLabels(),t.adjustHitBoxes()},afterEvent(i,t){t.replay||i.legend.handleEvent(t.event)},defaults:{display:!0,position:"top",align:"center",fullSize:!0,reverse:!1,weight:1e3,onClick(i,t,e){const s=t.datasetIndex,n=e.chart;n.isDatasetVisible(s)?(n.hide(s),t.hidden=!0):(n.show(s),t.hidden=!1)},onHover:null,onLeave:null,labels:{color:i=>i.chart.options.color,boxWidth:40,padding:10,generateLabels(i){const t=i.data.datasets,{labels:{usePointStyle:e,pointStyle:s,textAlign:n,color:o,useBorderRadius:r,borderRadius:a}}=i.legend.options;return i._getSortedDatasetMetas().map(l=>{const c=l.controller.getStyle(e?0:void 0),h=tt(c.borderWidth);return{text:t[l.index].label,fillStyle:c.backgroundColor,fontColor:o,hidden:!l.visible,lineCap:c.borderCapStyle,lineDash:c.borderDash,lineDashOffset:c.borderDashOffset,lineJoin:c.borderJoinStyle,lineWidth:(h.width+h.height)/4,strokeStyle:c.borderColor,pointStyle:s||c.pointStyle,rotation:c.rotation,textAlign:n||c.textAlign,borderRadius:r&&(a||c.borderRadius),datasetIndex:l.index}},this)}},title:{color:i=>i.chart.options.color,display:!1,position:"center",text:""}},descriptors:{_scriptable:i=>!i.startsWith("on"),labels:{_scriptable:i=>!["generateLabels","filter","sort"].includes(i)}}};class Jn extends nt{constructor(t){super(),this.chart=t.chart,this.options=t.options,this.ctx=t.ctx,this._padding=void 0,this.top=void 0,this.bottom=void 0,this.left=void 0,this.right=void 0,this.width=void 0,this.height=void 0,this.position=void 0,this.weight=void 0,this.fullSize=void 0}update(t,e){const s=this.options;if(this.left=0,this.top=0,!s.display){this.width=this.height=this.right=this.bottom=0;return}this.width=this.right=t,this.height=this.bottom=e;const n=W(s.text)?s.text.length:1;this._padding=tt(s.padding);const o=n*Y(s.font).lineHeight+this._padding.height;this.isHorizontal()?this.height=o:this.width=o}isHorizontal(){const t=this.options.position;return t==="top"||t==="bottom"}_drawArgs(t){const{top:e,left:s,bottom:n,right:o,options:r}=this,a=r.align;let l=0,c,h,d;return this.isHorizontal()?(h=X(a,s,o),d=e+t,c=o-s):(r.position==="left"?(h=s+t,d=X(a,n,e),l=N*-.5):(h=o-t,d=X(a,e,n),l=N*.5),c=n-e),{titleX:h,titleY:d,maxWidth:c,rotation:l}}draw(){const t=this.ctx,e=this.options;if(!e.display)return;const s=Y(e.font),o=s.lineHeight/2+this._padding.top,{titleX:r,titleY:a,maxWidth:l,rotation:c}=this._drawArgs(o);ge(t,e.text,0,0,s,{color:e.color,maxWidth:l,rotation:c,textAlign:Ti(e.align),textBaseline:"middle",translation:[r,a]})}}function kc(i,t){const e=new Jn({ctx:i.ctx,options:t,chart:i});it.configure(i,e,t),it.addBox(i,e),i.titleBlock=e}var lh={id:"title",_element:Jn,start(i,t,e){kc(i,e)},stop(i){const t=i.titleBlock;it.removeBox(i,t),delete i.titleBlock},beforeUpdate(i,t,e){const s=i.titleBlock;it.configure(i,s,e),s.options=e},defaults:{align:"center",display:!1,font:{weight:"bold"},fullSize:!0,padding:10,position:"top",text:"",weight:2e3},defaultRoutes:{color:"color"},descriptors:{_scriptable:!0,_indexable:!1}};const se={average(i){if(!i.length)return!1;let t,e,s=0,n=0,o=0;for(t=0,e=i.length;t-1?i.split(` +`):i}function wc(i,t){const{element:e,datasetIndex:s,index:n}=t,o=i.getDatasetMeta(s).controller,{label:r,value:a}=o.getLabelAndValue(n);return{chart:i,label:r,parsed:o.getParsed(n),raw:i.data.datasets[s].data[n],formattedValue:a,dataset:o.getDataset(),dataIndex:n,datasetIndex:s,element:e}}function Ys(i,t){const e=i.chart.ctx,{body:s,footer:n,title:o}=i,{boxWidth:r,boxHeight:a}=t,l=Y(t.bodyFont),c=Y(t.titleFont),h=Y(t.footerFont),d=o.length,f=n.length,u=s.length,p=tt(t.padding);let g=p.height,m=0,b=s.reduce((v,x)=>v+x.before.length+x.lines.length+x.after.length,0);if(b+=i.beforeBody.length+i.afterBody.length,d&&(g+=d*c.lineHeight+(d-1)*t.titleSpacing+t.titleMarginBottom),b){const v=t.displayColors?Math.max(a,l.lineHeight):l.lineHeight;g+=u*v+(b-u)*l.lineHeight+(b-1)*t.bodySpacing}f&&(g+=t.footerMarginTop+f*h.lineHeight+(f-1)*t.footerSpacing);let _=0;const y=function(v){m=Math.max(m,e.measureText(v).width+_)};return e.save(),e.font=c.string,L(i.title,y),e.font=l.string,L(i.beforeBody.concat(i.afterBody),y),_=t.displayColors?r+2+t.boxPadding:0,L(s,v=>{L(v.before,y),L(v.lines,y),L(v.after,y)}),_=0,e.font=h.string,L(i.footer,y),e.restore(),m+=p.width,{width:m,height:g}}function Mc(i,t){const{y:e,height:s}=t;return ei.height-s/2?"bottom":"center"}function Sc(i,t,e,s){const{x:n,width:o}=s,r=e.caretSize+e.caretPadding;if(i==="left"&&n+o+r>t.width||i==="right"&&n-o-r<0)return!0}function Pc(i,t,e,s){const{x:n,width:o}=e,{width:r,chartArea:{left:a,right:l}}=i;let c="center";return s==="center"?c=n<=(a+l)/2?"left":"right":n<=o/2?c="left":n>=r-o/2&&(c="right"),Sc(c,i,t,e)&&(c="center"),c}function Us(i,t,e){const s=e.yAlign||t.yAlign||Mc(i,e);return{xAlign:e.xAlign||t.xAlign||Pc(i,t,e,s),yAlign:s}}function Cc(i,t){let{x:e,width:s}=i;return t==="right"?e-=s:t==="center"&&(e-=s/2),e}function Dc(i,t,e){let{y:s,height:n}=i;return t==="top"?s+=e:t==="bottom"?s-=n+e:s-=n/2,s}function Xs(i,t,e,s){const{caretSize:n,caretPadding:o,cornerRadius:r}=i,{xAlign:a,yAlign:l}=e,c=n+o,{topLeft:h,topRight:d,bottomLeft:f,bottomRight:u}=zt(r);let p=Cc(t,a);const g=Dc(t,l,c);return l==="center"?a==="left"?p+=c:a==="right"&&(p-=c):a==="left"?p-=Math.max(h,f)+n:a==="right"&&(p+=Math.max(d,u)+n),{x:K(p,0,s.width-t.width),y:K(g,0,s.height-t.height)}}function Te(i,t,e){const s=tt(e.padding);return t==="center"?i.x+i.width/2:t==="right"?i.x+i.width-s.right:i.x+s.left}function Ks(i){return rt([],ut(i))}function Oc(i,t,e){return Rt(i,{tooltip:t,tooltipItems:e,type:"tooltip"})}function qs(i,t){const e=t&&t.dataset&&t.dataset.tooltip&&t.dataset.tooltip.callbacks;return e?i.override(e):i}const Qn={beforeTitle:dt,title(i){if(i.length>0){const t=i[0],e=t.chart.data.labels,s=e?e.length:0;if(this&&this.options&&this.options.mode==="dataset")return t.dataset.label||"";if(t.label)return t.label;if(s>0&&t.dataIndex"u"?Qn[t].call(e,s):n}class ki extends nt{constructor(t){super(),this.opacity=0,this._active=[],this._eventPosition=void 0,this._size=void 0,this._cachedAnimations=void 0,this._tooltipItems=[],this.$animations=void 0,this.$context=void 0,this.chart=t.chart,this.options=t.options,this.dataPoints=void 0,this.title=void 0,this.beforeBody=void 0,this.body=void 0,this.afterBody=void 0,this.footer=void 0,this.xAlign=void 0,this.yAlign=void 0,this.x=void 0,this.y=void 0,this.height=void 0,this.width=void 0,this.caretX=void 0,this.caretY=void 0,this.labelColors=void 0,this.labelPointStyles=void 0,this.labelTextColors=void 0}initialize(t){this.options=t,this._cachedAnimations=void 0,this.$context=void 0}_resolveAnimations(){const t=this._cachedAnimations;if(t)return t;const e=this.chart,s=this.options.setContext(this.getContext()),n=s.enabled&&e.options.animation&&s.animations,o=new In(this.chart,n);return n._cacheable&&(this._cachedAnimations=Object.freeze(o)),o}getContext(){return this.$context||(this.$context=Oc(this.chart.getContext(),this,this._tooltipItems))}getTitle(t,e){const{callbacks:s}=e,n=G(s,"beforeTitle",this,t),o=G(s,"title",this,t),r=G(s,"afterTitle",this,t);let a=[];return a=rt(a,ut(n)),a=rt(a,ut(o)),a=rt(a,ut(r)),a}getBeforeBody(t,e){return Ks(G(e.callbacks,"beforeBody",this,t))}getBody(t,e){const{callbacks:s}=e,n=[];return L(t,o=>{const r={before:[],lines:[],after:[]},a=qs(s,o);rt(r.before,ut(G(a,"beforeLabel",this,o))),rt(r.lines,G(a,"label",this,o)),rt(r.after,ut(G(a,"afterLabel",this,o))),n.push(r)}),n}getAfterBody(t,e){return Ks(G(e.callbacks,"afterBody",this,t))}getFooter(t,e){const{callbacks:s}=e,n=G(s,"beforeFooter",this,t),o=G(s,"footer",this,t),r=G(s,"afterFooter",this,t);let a=[];return a=rt(a,ut(n)),a=rt(a,ut(o)),a=rt(a,ut(r)),a}_createItems(t){const e=this._active,s=this.chart.data,n=[],o=[],r=[];let a=[],l,c;for(l=0,c=e.length;lt.filter(h,d,f,s))),t.itemSort&&(a=a.sort((h,d)=>t.itemSort(h,d,s))),L(a,h=>{const d=qs(t.callbacks,h);n.push(G(d,"labelColor",this,h)),o.push(G(d,"labelPointStyle",this,h)),r.push(G(d,"labelTextColor",this,h))}),this.labelColors=n,this.labelPointStyles=o,this.labelTextColors=r,this.dataPoints=a,a}update(t,e){const s=this.options.setContext(this.getContext()),n=this._active;let o,r=[];if(!n.length)this.opacity!==0&&(o={opacity:0});else{const a=se[s.position].call(this,n,this._eventPosition);r=this._createItems(s),this.title=this.getTitle(r,s),this.beforeBody=this.getBeforeBody(r,s),this.body=this.getBody(r,s),this.afterBody=this.getAfterBody(r,s),this.footer=this.getFooter(r,s);const l=this._size=Ys(this,s),c=Object.assign({},a,l),h=Us(this.chart,s,c),d=Xs(s,c,h,this.chart);this.xAlign=h.xAlign,this.yAlign=h.yAlign,o={opacity:1,x:d.x,y:d.y,width:l.width,height:l.height,caretX:a.x,caretY:a.y}}this._tooltipItems=r,this.$context=void 0,o&&this._resolveAnimations().update(this,o),t&&s.external&&s.external.call(this,{chart:this.chart,tooltip:this,replay:e})}drawCaret(t,e,s,n){const o=this.getCaretPosition(t,s,n);e.lineTo(o.x1,o.y1),e.lineTo(o.x2,o.y2),e.lineTo(o.x3,o.y3)}getCaretPosition(t,e,s){const{xAlign:n,yAlign:o}=this,{caretSize:r,cornerRadius:a}=s,{topLeft:l,topRight:c,bottomLeft:h,bottomRight:d}=zt(a),{x:f,y:u}=t,{width:p,height:g}=e;let m,b,_,y,v,x;return o==="center"?(v=u+g/2,n==="left"?(m=f,b=m-r,y=v+r,x=v-r):(m=f+p,b=m+r,y=v-r,x=v+r),_=m):(n==="left"?b=f+Math.max(l,h)+r:n==="right"?b=f+p-Math.max(c,d)-r:b=this.caretX,o==="top"?(y=u,v=y-r,m=b-r,_=b+r):(y=u+g,v=y+r,m=b+r,_=b-r),x=y),{x1:m,x2:b,x3:_,y1:y,y2:v,y3:x}}drawTitle(t,e,s){const n=this.title,o=n.length;let r,a,l;if(o){const c=Bt(s.rtl,this.x,this.width);for(t.x=Te(this,s.titleAlign,s),e.textAlign=c.textAlign(s.titleAlign),e.textBaseline="middle",r=Y(s.titleFont),a=s.titleSpacing,e.fillStyle=s.titleColor,e.font=r.string,l=0;l_!==0)?(t.beginPath(),t.fillStyle=o.multiKeyBackground,je(t,{x:g,y:p,w:c,h:l,radius:b}),t.fill(),t.stroke(),t.fillStyle=r.backgroundColor,t.beginPath(),je(t,{x:m,y:p+1,w:c-2,h:l-2,radius:b}),t.fill()):(t.fillStyle=o.multiKeyBackground,t.fillRect(g,p,c,l),t.strokeRect(g,p,c,l),t.fillStyle=r.backgroundColor,t.fillRect(m,p+1,c-2,l-2))}t.fillStyle=this.labelTextColors[s]}drawBody(t,e,s){const{body:n}=this,{bodySpacing:o,bodyAlign:r,displayColors:a,boxHeight:l,boxWidth:c,boxPadding:h}=s,d=Y(s.bodyFont);let f=d.lineHeight,u=0;const p=Bt(s.rtl,this.x,this.width),g=function(k){e.fillText(k,p.x(t.x+u),t.y+f/2),t.y+=f+o},m=p.textAlign(r);let b,_,y,v,x,w,M;for(e.textAlign=r,e.textBaseline="middle",e.font=d.string,t.x=Te(this,m,s),e.fillStyle=s.bodyColor,L(this.beforeBody,g),u=a&&m!=="right"?r==="center"?c/2+h:c+2+h:0,v=0,w=n.length;v0&&e.stroke()}_updateAnimationTarget(t){const e=this.chart,s=this.$animations,n=s&&s.x,o=s&&s.y;if(n||o){const r=se[t.position].call(this,this._active,this._eventPosition);if(!r)return;const a=this._size=Ys(this,t),l=Object.assign({},r,this._size),c=Us(e,t,l),h=Xs(t,l,c,e);(n._to!==h.x||o._to!==h.y)&&(this.xAlign=c.xAlign,this.yAlign=c.yAlign,this.width=a.width,this.height=a.height,this.caretX=r.x,this.caretY=r.y,this._resolveAnimations().update(this,h))}}_willRender(){return!!this.opacity}draw(t){const e=this.options.setContext(this.getContext());let s=this.opacity;if(!s)return;this._updateAnimationTarget(e);const n={width:this.width,height:this.height},o={x:this.x,y:this.y};s=Math.abs(s)<.001?0:s;const r=tt(e.padding),a=this.title.length||this.beforeBody.length||this.body.length||this.afterBody.length||this.footer.length;e.enabled&&a&&(t.save(),t.globalAlpha=s,this.drawBackground(o,t,n,e),On(t,e.textDirection),o.y+=r.top,this.drawTitle(o,t,e),this.drawBody(o,t,e),this.drawFooter(o,t,e),Tn(t,e.textDirection),t.restore())}getActiveElements(){return this._active||[]}setActiveElements(t,e){const s=this._active,n=t.map(({datasetIndex:a,index:l})=>{const c=this.chart.getDatasetMeta(a);if(!c)throw new Error("Cannot find a dataset at index "+a);return{datasetIndex:a,element:c.data[l],index:l}}),o=!We(s,n),r=this._positionChanged(n,e);(o||r)&&(this._active=n,this._eventPosition=e,this._ignoreReplayEvents=!0,this.update(!0))}handleEvent(t,e,s=!0){if(e&&this._ignoreReplayEvents)return!1;this._ignoreReplayEvents=!1;const n=this.options,o=this._active||[],r=this._getActiveElements(t,o,e,s),a=this._positionChanged(r,t),l=e||!We(r,o)||a;return l&&(this._active=r,(n.enabled||n.external)&&(this._eventPosition={x:t.x,y:t.y},this.update(!0,e))),l}_getActiveElements(t,e,s,n){const o=this.options;if(t.type==="mouseout")return[];if(!n)return e;const r=this.chart.getElementsAtEventForMode(t,o.mode,o,s);return o.reverse&&r.reverse(),r}_positionChanged(t,e){const{caretX:s,caretY:n,options:o}=this,r=se[o.position].call(this,t,e);return r!==!1&&(s!==r.x||n!==r.y)}}S(ki,"positioners",se);var ch={id:"tooltip",_element:ki,positioners:se,afterInit(i,t,e){e&&(i.tooltip=new ki({chart:i,options:e}))},beforeUpdate(i,t,e){i.tooltip&&i.tooltip.initialize(e)},reset(i,t,e){i.tooltip&&i.tooltip.initialize(e)},afterDraw(i){const t=i.tooltip;if(t&&t._willRender()){const e={tooltip:t};if(i.notifyPlugins("beforeTooltipDraw",{...e,cancelable:!0})===!1)return;t.draw(i.ctx),i.notifyPlugins("afterTooltipDraw",e)}},afterEvent(i,t){if(i.tooltip){const e=t.replay;i.tooltip.handleEvent(t.event,e,t.inChartArea)&&(t.changed=!0)}},defaults:{enabled:!0,external:null,position:"average",backgroundColor:"rgba(0,0,0,0.8)",titleColor:"#fff",titleFont:{weight:"bold"},titleSpacing:2,titleMarginBottom:6,titleAlign:"left",bodyColor:"#fff",bodySpacing:2,bodyFont:{},bodyAlign:"left",footerColor:"#fff",footerSpacing:2,footerMarginTop:6,footerFont:{weight:"bold"},footerAlign:"left",padding:6,caretPadding:2,caretSize:5,cornerRadius:6,boxHeight:(i,t)=>t.bodyFont.size,boxWidth:(i,t)=>t.bodyFont.size,multiKeyBackground:"#fff",displayColors:!0,boxPadding:0,borderColor:"rgba(0,0,0,0)",borderWidth:0,animation:{duration:400,easing:"easeOutQuart"},animations:{numbers:{type:"number",properties:["x","y","width","height","caretX","caretY"]},opacity:{easing:"linear",duration:200}},callbacks:Qn},defaultRoutes:{bodyFont:"font",footerFont:"font",titleFont:"font"},descriptors:{_scriptable:i=>i!=="filter"&&i!=="itemSort"&&i!=="external",_indexable:!1,callbacks:{_scriptable:!1,_indexable:!1},animation:{_fallback:!1},animations:{_fallback:"animation"}},additionalOptionScopes:["interaction"]};const Tc=(i,t,e,s)=>(typeof t=="string"?(e=i.push(t)-1,s.unshift({index:e,label:t})):isNaN(t)&&(e=null),e);function Ac(i,t,e,s){const n=i.indexOf(t);if(n===-1)return Tc(i,t,e,s);const o=i.lastIndexOf(t);return n!==o?e:n}const Rc=(i,t)=>i===null?null:K(Math.round(i),0,t);function Gs(i){const t=this.getLabels();return i>=0&&ie.length-1?null:this.getPixelForValue(e[t].value)}getValueForPixel(t){return Math.round(this._startValue+this.getDecimalForPixel(t)*this._valueRange)}getBasePixel(){return this.bottom}}S(Zs,"id","category"),S(Zs,"defaults",{ticks:{callback:Gs}});function Lc(i,t){const e=[],{bounds:n,step:o,min:r,max:a,precision:l,count:c,maxTicks:h,maxDigits:d,includeBounds:f}=i,u=o||1,p=h-1,{min:g,max:m}=t,b=!R(r),_=!R(a),y=!R(c),v=(m-g)/(d+1);let x=Ui((m-g)/p/u)*u,w,M,k,P;if(x<1e-14&&!b&&!_)return[{value:g},{value:m}];P=Math.ceil(m/x)-Math.floor(g/x),P>p&&(x=Ui(P*x/p/u)*u),R(l)||(w=Math.pow(10,l),x=Math.ceil(x*w)/w),n==="ticks"?(M=Math.floor(g/x)*x,k=Math.ceil(m/x)*x):(M=g,k=m),b&&_&&o&&jo((a-r)/o,x/1e3)?(P=Math.round(Math.min((a-r)/x,h)),x=(a-r)/P,M=r,k=a):y?(M=b?r:M,k=_?a:k,P=c-1,x=(k-M)/P):(P=(k-M)/x,oe(P,Math.round(P),x/1e3)?P=Math.round(P):P=Math.ceil(P));const O=Math.max(Xi(x),Xi(M));w=Math.pow(10,R(l)?O:l),M=Math.round(M*w)/w,k=Math.round(k*w)/w;let C=0;for(b&&(f&&M!==r?(e.push({value:r}),Ma)break;e.push({value:A})}return _&&f&&k!==a?e.length&&oe(e[e.length-1].value,a,Js(a,v,i))?e[e.length-1].value=a:e.push({value:a}):(!_||k===a)&&e.push({value:k}),e}function Js(i,t,{horizontal:e,minRotation:s}){const n=Ct(s),o=(e?Math.sin(n):Math.cos(n))||.001,r=.75*t*(""+i).length;return Math.min(t/o,r)}class Ic extends jt{constructor(t){super(t),this.start=void 0,this.end=void 0,this._startValue=void 0,this._endValue=void 0,this._valueRange=0}parse(t,e){return R(t)||(typeof t=="number"||t instanceof Number)&&!isFinite(+t)?null:+t}handleTickRangeOptions(){const{beginAtZero:t}=this.options,{minDefined:e,maxDefined:s}=this.getUserBounds();let{min:n,max:o}=this;const r=l=>n=e?n:l,a=l=>o=s?o:l;if(t){const l=ct(n),c=ct(o);l<0&&c<0?a(0):l>0&&c>0&&r(0)}if(n===o){let l=o===0?1:Math.abs(o*.05);a(o+l),t||r(n-l)}this.min=n,this.max=o}getTickLimit(){const t=this.options.ticks;let{maxTicksLimit:e,stepSize:s}=t,n;return s?(n=Math.ceil(this.max/s)-Math.floor(this.min/s)+1,n>1e3&&(console.warn(`scales.${this.id}.ticks.stepSize: ${s} would result generating up to ${n} ticks. Limiting to 1000.`),n=1e3)):(n=this.computeTickLimit(),e=e||11),e&&(n=Math.min(e,n)),n}computeTickLimit(){return Number.POSITIVE_INFINITY}buildTicks(){const t=this.options,e=t.ticks;let s=this.getTickLimit();s=Math.max(2,s);const n={maxTicks:s,bounds:t.bounds,min:t.min,max:t.max,precision:e.precision,step:e.stepSize,count:e.count,maxDigits:this._maxDigits(),horizontal:this.isHorizontal(),minRotation:e.minRotation||0,includeBounds:e.includeBounds!==!1},o=this._range||this,r=Lc(n,o);return t.bounds==="ticks"&&$o(r,this,"value"),t.reverse?(r.reverse(),this.start=this.max,this.end=this.min):(this.start=this.min,this.end=this.max),r}configure(){const t=this.ticks;let e=this.min,s=this.max;if(super.configure(),this.options.offset&&t.length){const n=(s-e)/Math.max(t.length-1,1)/2;e-=n,s+=n}this._startValue=e,this._endValue=s,this._valueRange=s-e}getLabelForValue(t){return _n(t,this.chart.options.locale,this.options.ticks.format)}}class Qs extends Ic{determineDataLimits(){const{min:t,max:e}=this.getMinMax(!0);this.min=q(t)?t:0,this.max=q(e)?e:1,this.handleTickRangeOptions()}computeTickLimit(){const t=this.isHorizontal(),e=t?this.width:this.height,s=Ct(this.options.ticks.minRotation),n=(t?Math.sin(s):Math.cos(s))||.001,o=this._resolveTickFontOptions(0);return Math.ceil(e/Math.min(40,o.lineHeight/n))}getPixelForValue(t){return t===null?NaN:this.getPixelForDecimal((t-this._startValue)/this._valueRange)}getValueForPixel(t){return this._startValue+this.getDecimalForPixel(t)*this._valueRange}}S(Qs,"id","linear"),S(Qs,"defaults",{ticks:{callback:yn.formatters.numeric}});const Ze={millisecond:{common:!0,size:1,steps:1e3},second:{common:!0,size:1e3,steps:60},minute:{common:!0,size:6e4,steps:60},hour:{common:!0,size:36e5,steps:24},day:{common:!0,size:864e5,steps:30},week:{common:!1,size:6048e5,steps:4},month:{common:!0,size:2628e6,steps:12},quarter:{common:!1,size:7884e6,steps:4},year:{common:!0,size:3154e7}},J=Object.keys(Ze);function tn(i,t){return i-t}function en(i,t){if(R(t))return null;const e=i._adapter,{parser:s,round:n,isoWeekday:o}=i._parseOpts;let r=t;return typeof s=="function"&&(r=s(r)),q(r)||(r=typeof s=="string"?e.parse(r,s):e.parse(r)),r===null?null:(n&&(r=n==="week"&&(fe(o)||o===!0)?e.startOf(r,"isoWeek",o):e.startOf(r,n)),+r)}function sn(i,t,e,s){const n=J.length;for(let o=J.indexOf(i);o=J.indexOf(e);o--){const r=J[o];if(Ze[r].common&&i._adapter.diff(n,s,r)>=t-1)return r}return J[e?J.indexOf(e):0]}function Ec(i){for(let t=J.indexOf(i)+1,e=J.length;t=t?e[s]:e[n];i[o]=!0}}function zc(i,t,e,s){const n=i._adapter,o=+n.startOf(t[0].value,s),r=t[t.length-1].value;let a,l;for(a=o;a<=r;a=+n.add(a,1,s))l=e[a],l>=0&&(t[l].major=!0);return t}function on(i,t,e){const s=[],n={},o=t.length;let r,a;for(r=0;r+t.value))}initOffsets(t=[]){let e=0,s=0,n,o;this.options.offset&&t.length&&(n=this.getDecimalForValue(t[0]),t.length===1?e=1-n:e=(this.getDecimalForValue(t[1])-n)/2,o=this.getDecimalForValue(t[t.length-1]),t.length===1?s=o:s=(o-this.getDecimalForValue(t[t.length-2]))/2);const r=t.length<3?.5:.25;e=K(e,0,r),s=K(s,0,r),this._offsets={start:e,end:s,factor:1/(e+1+s)}}_generate(){const t=this._adapter,e=this.min,s=this.max,n=this.options,o=n.time,r=o.unit||sn(o.minUnit,e,s,this._getLabelCapacity(e)),a=D(n.ticks.stepSize,1),l=r==="week"?o.isoWeekday:!1,c=fe(l)||l===!0,h={};let d=e,f,u;if(c&&(d=+t.startOf(d,"isoWeek",l)),d=+t.startOf(d,c?"day":r),t.diff(s,e,r)>1e5*a)throw new Error(e+" and "+s+" are too far apart with stepSize of "+a+" "+r);const p=n.ticks.source==="data"&&this.getDataTimestamps();for(f=d,u=0;f+g)}getLabelForValue(t){const e=this._adapter,s=this.options.time;return s.tooltipFormat?e.format(t,s.tooltipFormat):e.format(t,s.displayFormats.datetime)}format(t,e){const n=this.options.time.displayFormats,o=this._unit,r=e||n[o];return this._adapter.format(t,r)}_tickFormatFunction(t,e,s,n){const o=this.options,r=o.ticks.callback;if(r)return F(r,[t,e,s],this);const a=o.time.displayFormats,l=this._unit,c=this._majorUnit,h=l&&a[l],d=c&&a[c],f=s[e],u=c&&d&&f&&f.major;return this._adapter.format(t,n||(u?d:h))}generateTickLabels(t){let e,s,n;for(e=0,s=t.length;e0?a:1}getDataTimestamps(){let t=this._cache.data||[],e,s;if(t.length)return t;const n=this.getMatchingVisibleMetas();if(this._normalized&&n.length)return this._cache.data=n[0].controller.getAllParsedValues(this);for(e=0,s=n.length;e=i[s].pos&&t<=i[n].pos&&({lo:s,hi:n}=Dt(i,"pos",t)),{pos:o,time:a}=i[s],{pos:r,time:l}=i[n]):(t>=i[s].time&&t<=i[n].time&&({lo:s,hi:n}=Dt(i,"time",t)),{time:o,pos:a}=i[s],{time:r,pos:l}=i[n]);const c=r-o;return c?a+(l-a)*(t-o)/c:a}class rn extends Xe{constructor(t){super(t),this._table=[],this._minPos=void 0,this._tableRange=void 0}initOffsets(){const t=this._getTimestampsForTable(),e=this._table=this.buildLookupTable(t);this._minPos=Ae(e,this.min),this._tableRange=Ae(e,this.max)-this._minPos,super.initOffsets(t)}buildLookupTable(t){const{min:e,max:s}=this,n=[],o=[];let r,a,l,c,h;for(r=0,a=t.length;r=e&&c<=s&&n.push(c);if(n.length<2)return[{time:e,pos:0},{time:s,pos:1}];for(r=0,a=n.length;rn-o)}_getTimestampsForTable(){let t=this._cache.all||[];if(t.length)return t;const e=this.getDataTimestamps(),s=this.getLabelTimestamps();return e.length&&s.length?t=this.normalize(e.concat(s)):t=e.length?e:s,t=this._cache.all=t,t}getDecimalForValue(t){return(Ae(this._table,t)-this._minPos)/this._tableRange}getValueForPixel(t){const e=this._offsets,s=this.getDecimalForPixel(t)/e.factor-e.end;return Ae(this._table,s*this._tableRange+this._minPos,!0)}}S(rn,"id","timeseries"),S(rn,"defaults",Xe.defaults);/*! + * chartjs-plugin-datalabels v2.2.0 + * https://chartjs-plugin-datalabels.netlify.app + * (c) 2017-2022 chartjs-plugin-datalabels contributors + * Released under the MIT license + */var an=function(){if(typeof window<"u"){if(window.devicePixelRatio)return window.devicePixelRatio;var i=window.screen;if(i)return(i.deviceXDPI||1)/(i.logicalXDPI||1)}return 1}(),le={toTextLines:function(i){var t=[],e;for(i=[].concat(i);i.length;)e=i.pop(),typeof e=="string"?t.unshift.apply(t,e.split(` +`)):Array.isArray(e)?i.push.apply(i,e):R(i)||t.unshift(""+e);return t},textSize:function(i,t,e){var s=[].concat(t),n=s.length,o=i.font,r=0,a;for(i.font=e.string,a=0;ae.right&&(s|=eo),te.bottom&&(s|=io),s}function Wc(i,t){for(var e=i.x0,s=i.y0,n=i.x1,o=i.y1,r=Re(e,s,t),a=Re(n,o,t),l,c,h;!(!(r|a)||r&a);)l=r||a,l&so?(c=e+(n-e)*(t.top-s)/(o-s),h=t.top):l&io?(c=e+(n-e)*(t.bottom-s)/(o-s),h=t.bottom):l&eo?(h=s+(o-s)*(t.right-e)/(n-e),c=t.right):l&to&&(h=s+(o-s)*(t.left-e)/(n-e),c=t.left),l===r?(e=c,s=h,r=Re(e,s,t)):(n=c,o=h,a=Re(n,o,t));return{x0:e,x1:n,y0:s,y1:o}}function Le(i,t){var e=t.anchor,s=i,n,o;return t.clamp&&(s=Wc(s,t.area)),e==="start"?(n=s.x0,o=s.y0):e==="end"?(n=s.x1,o=s.y1):(n=(s.x0+s.x1)/2,o=(s.y0+s.y1)/2),Bc(n,o,i.vx,i.vy,t.align)}var Ie={arc:function(i,t){var e=(i.startAngle+i.endAngle)/2,s=Math.cos(e),n=Math.sin(e),o=i.innerRadius,r=i.outerRadius;return Le({x0:i.x+s*o,y0:i.y+n*o,x1:i.x+s*r,y1:i.y+n*r,vx:s,vy:n},t)},point:function(i,t){var e=fi(i,t.origin),s=e.x*i.options.radius,n=e.y*i.options.radius;return Le({x0:i.x-s,y0:i.y-n,x1:i.x+s,y1:i.y+n,vx:e.x,vy:e.y},t)},bar:function(i,t){var e=fi(i,t.origin),s=i.x,n=i.y,o=0,r=0;return i.horizontal?(s=Math.min(i.x,i.base),o=Math.abs(i.base-i.x)):(n=Math.min(i.y,i.base),r=Math.abs(i.base-i.y)),Le({x0:s,y0:n+r,x1:s+o,y1:n,vx:e.x,vy:e.y},t)},fallback:function(i,t){var e=fi(i,t.origin);return Le({x0:i.x,y0:i.y,x1:i.x+(i.width||0),y1:i.y+(i.height||0),vx:e.x,vy:e.y},t)}},mt=le.rasterize;function Nc(i){var t=i.borderWidth||0,e=i.padding,s=i.size.height,n=i.size.width,o=-n/2,r=-s/2;return{frame:{x:o-e.left-t,y:r-e.top-t,w:n+e.width+t*2,h:s+e.height+t*2},text:{x:o,y:r,w:n,h:s}}}function Vc(i,t){var e=t.chart.getDatasetMeta(t.datasetIndex).vScale;if(!e)return null;if(e.xCenter!==void 0&&e.yCenter!==void 0)return{x:e.xCenter,y:e.yCenter};var s=e.getBasePixel();return i.horizontal?{x:s,y:null}:{x:null,y:s}}function jc(i){return i instanceof ie?Ie.arc:i instanceof Be?Ie.point:i instanceof He?Ie.bar:Ie.fallback}function $c(i,t,e,s,n,o){var r=Math.PI/2;if(o){var a=Math.min(o,n/2,s/2),l=t+a,c=e+a,h=t+s-a,d=e+n-a;i.moveTo(t,c),ls.x+s.w+e*2||i.y>s.y+s.h+e*2)},intersects:function(i){var t=this._points(),e=i._points(),s=[Fe(t[0],t[1]),Fe(t[0],t[3])],n,o,r;for(this._rotation!==i._rotation&&s.push(Fe(e[0],e[1]),Fe(e[0],e[3])),n=0;n=0;--e)for(n=i[e].$layout,s=e-1;s>=0&&n._visible;--s)o=i[s].$layout,o._visible&&n._box.intersects(o._box)&&t(n,o);return i}function Jc(i){var t,e,s,n,o,r,a;for(t=0,e=i.length;tl.getProps([c],!0)[c]}),o=s.geometry(),r=ro(a,s.model(),o),n._box.update(r,o,s.rotation()));return Zc(i,function(l,c){var h=l._hidable,d=c._hidable;h&&d||d?c._visible=!1:h&&(l._visible=!1)})}var ce={prepare:function(i){var t=[],e,s,n,o,r;for(e=0,n=i.length;e=0;--e)if(s=i[e].$layout,s&&s._visible&&s._box.contains(t))return i[e];return null},draw:function(i,t){var e,s,n,o,r,a;for(e=0,s=t.length;esvg,.leaflet-pane>canvas,.leaflet-zoom-box,.leaflet-image-layer,.leaflet-layer{position:absolute;left:0;top:0}.leaflet-container{overflow:hidden}.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow{-webkit-user-select:none;-moz-user-select:none;user-select:none;-webkit-user-drag:none}.leaflet-tile::selection{background:transparent}.leaflet-safari .leaflet-tile{image-rendering:-webkit-optimize-contrast}.leaflet-safari .leaflet-tile-container{width:1600px;height:1600px;-webkit-transform-origin:0 0}.leaflet-marker-icon,.leaflet-marker-shadow{display:block}.leaflet-container .leaflet-overlay-pane svg{max-width:none!important;max-height:none!important}.leaflet-container .leaflet-marker-pane img,.leaflet-container .leaflet-shadow-pane img,.leaflet-container .leaflet-tile-pane img,.leaflet-container img.leaflet-image-layer,.leaflet-container .leaflet-tile{max-width:none!important;max-height:none!important;width:auto;padding:0}.leaflet-container img.leaflet-tile{mix-blend-mode:plus-lighter}.leaflet-container.leaflet-touch-zoom{-ms-touch-action:pan-x pan-y;touch-action:pan-x pan-y}.leaflet-container.leaflet-touch-drag{-ms-touch-action:pinch-zoom;touch-action:none;touch-action:pinch-zoom}.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom{-ms-touch-action:none;touch-action:none}.leaflet-container{-webkit-tap-highlight-color:transparent}.leaflet-container a{-webkit-tap-highlight-color:rgba(51,181,229,.4)}.leaflet-tile{filter:inherit;visibility:hidden}.leaflet-tile-loaded{visibility:inherit}.leaflet-zoom-box{width:0;height:0;-moz-box-sizing:border-box;box-sizing:border-box;z-index:800}.leaflet-overlay-pane svg{-moz-user-select:none}.leaflet-pane{z-index:400}.leaflet-tile-pane{z-index:200}.leaflet-overlay-pane{z-index:400}.leaflet-shadow-pane{z-index:500}.leaflet-marker-pane{z-index:600}.leaflet-tooltip-pane{z-index:650}.leaflet-popup-pane{z-index:700}.leaflet-map-pane canvas{z-index:100}.leaflet-map-pane svg{z-index:200}.leaflet-vml-shape{width:1px;height:1px}.lvml{behavior:url(#default#VML);display:inline-block;position:absolute}.leaflet-control{position:relative;z-index:800;pointer-events:visiblePainted;pointer-events:auto}.leaflet-top,.leaflet-bottom{position:absolute;z-index:1000;pointer-events:none}.leaflet-top{top:0}.leaflet-right{right:0}.leaflet-bottom{bottom:0}.leaflet-left{left:0}.leaflet-control{float:left;clear:both}.leaflet-right .leaflet-control{float:right}.leaflet-top .leaflet-control{margin-top:10px}.leaflet-bottom .leaflet-control{margin-bottom:10px}.leaflet-left .leaflet-control{margin-left:10px}.leaflet-right .leaflet-control{margin-right:10px}.leaflet-fade-anim .leaflet-popup{opacity:0;-webkit-transition:opacity .2s linear;-moz-transition:opacity .2s linear;transition:opacity .2s linear}.leaflet-fade-anim .leaflet-map-pane .leaflet-popup{opacity:1}.leaflet-zoom-animated{-webkit-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0}svg.leaflet-zoom-animated{will-change:transform}.leaflet-zoom-anim .leaflet-zoom-animated{-webkit-transition:-webkit-transform .25s cubic-bezier(0,0,.25,1);-moz-transition:-moz-transform .25s cubic-bezier(0,0,.25,1);transition:transform .25s cubic-bezier(0,0,.25,1)}.leaflet-zoom-anim .leaflet-tile,.leaflet-pan-anim .leaflet-tile{-webkit-transition:none;-moz-transition:none;transition:none}.leaflet-zoom-anim .leaflet-zoom-hide{visibility:hidden}.leaflet-interactive{cursor:pointer}.leaflet-grab{cursor:-webkit-grab;cursor:-moz-grab;cursor:grab}.leaflet-crosshair,.leaflet-crosshair .leaflet-interactive{cursor:crosshair}.leaflet-popup-pane,.leaflet-control{cursor:auto}.leaflet-dragging .leaflet-grab,.leaflet-dragging .leaflet-grab .leaflet-interactive,.leaflet-dragging .leaflet-marker-draggable{cursor:move;cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:grabbing}.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-image-layer,.leaflet-pane>svg path,.leaflet-tile-container{pointer-events:none}.leaflet-marker-icon.leaflet-interactive,.leaflet-image-layer.leaflet-interactive,.leaflet-pane>svg path.leaflet-interactive,svg.leaflet-image-layer.leaflet-interactive path{pointer-events:visiblePainted;pointer-events:auto}.leaflet-container{background:#ddd;outline-offset:1px}.leaflet-container a{color:#0078a8}.leaflet-zoom-box{border:2px dotted #38f;background:rgba(255,255,255,.5)}.leaflet-container{font-family:Helvetica Neue,Arial,Helvetica,sans-serif;font-size:12px;font-size:.75rem;line-height:1.5}.leaflet-bar{box-shadow:0 1px 5px #000000a6;border-radius:4px}.leaflet-bar a{background-color:#fff;border-bottom:1px solid #ccc;width:26px;height:26px;line-height:26px;display:block;text-align:center;text-decoration:none;color:#000}.leaflet-bar a,.leaflet-control-layers-toggle{background-position:50% 50%;background-repeat:no-repeat;display:block}.leaflet-bar a:hover,.leaflet-bar a:focus{background-color:#f4f4f4}.leaflet-bar a:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.leaflet-bar a:last-child{border-bottom-left-radius:4px;border-bottom-right-radius:4px;border-bottom:none}.leaflet-bar a.leaflet-disabled{cursor:default;background-color:#f4f4f4;color:#bbb}.leaflet-touch .leaflet-bar a{width:30px;height:30px;line-height:30px}.leaflet-touch .leaflet-bar a:first-child{border-top-left-radius:2px;border-top-right-radius:2px}.leaflet-touch .leaflet-bar a:last-child{border-bottom-left-radius:2px;border-bottom-right-radius:2px}.leaflet-control-zoom-in,.leaflet-control-zoom-out{font:700 18px Lucida Console,Monaco,monospace;text-indent:1px}.leaflet-touch .leaflet-control-zoom-in,.leaflet-touch .leaflet-control-zoom-out{font-size:22px}.leaflet-control-layers{box-shadow:0 1px 5px #0006;background:#fff;border-radius:5px}.leaflet-control-layers-toggle{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAQAAAADQ4RFAAACf0lEQVR4AY1UM3gkARTePdvdoTxXKc+qTl3aU5U6b2Kbkz3Gtq3Zw6ziLGNPzrYx7946Tr6/ee/XeCQ4D3ykPtL5tHno4n0d/h3+xfuWHGLX81cn7r0iTNzjr7LrlxCqPtkbTQEHeqOrTy4Yyt3VCi/IOB0v7rVC7q45Q3Gr5K6jt+3Gl5nCoDD4MtO+j96Wu8atmhGqcNGHObuf8OM/x3AMx38+4Z2sPqzCxRFK2aF2e5Jol56XTLyggAMTL56XOMoS1W4pOyjUcGGQdZxU6qRh7B9Zp+PfpOFlqt0zyDZckPi1ttmIp03jX8gyJ8a/PG2yutpS/Vol7peZIbZcKBAEEheEIAgFbDkz5H6Zrkm2hVWGiXKiF4Ycw0RWKdtC16Q7qe3X4iOMxruonzegJzWaXFrU9utOSsLUmrc0YjeWYjCW4PDMADElpJSSQ0vQvA1Tm6/JlKnqFs1EGyZiFCqnRZTEJJJiKRYzVYzJck2Rm6P4iH+cmSY0YzimYa8l0EtTODFWhcMIMVqdsI2uiTvKmTisIDHJ3od5GILVhBCarCfVRmo4uTjkhrhzkiBV7SsaqS+TzrzM1qpGGUFt28pIySQHR6h7F6KSwGWm97ay+Z+ZqMcEjEWebE7wxCSQwpkhJqoZA5ivCdZDjJepuJ9IQjGGUmuXJdBFUygxVqVsxFsLMbDe8ZbDYVCGKxs+W080max1hFCarCfV+C1KATwcnvE9gRRuMP2prdbWGowm1KB1y+zwMMENkM755cJ2yPDtqhTI6ED1M/82yIDtC/4j4BijjeObflpO9I9MwXTCsSX8jWAFeHr05WoLTJ5G8IQVS/7vwR6ohirYM7f6HzYpogfS3R2OAAAAAElFTkSuQmCC);width:36px;height:36px}.leaflet-retina .leaflet-control-layers-toggle{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAA0CAQAAABvcdNgAAAEsklEQVR4AWL4TydIhpZK1kpWOlg0w3ZXP6D2soBtG42jeI6ZmQTHzAxiTbSJsYLjO9HhP+WOmcuhciVnmHVQcJnp7DFvScowZorad/+V/fVzMdMT2g9Cv9guXGv/7pYOrXh2U+RRR3dSd9JRx6bIFc/ekqHI29JC6pJ5ZEh1yWkhkbcFeSjxgx3L2m1cb1C7bceyxA+CNjT/Ifff+/kDk2u/w/33/IeCMOSaWZ4glosqT3DNnNZQ7Cs58/3Ce5HL78iZH/vKVIaYlqzfdLu8Vi7dnvUbEza5Idt36tquZFldl6N5Z/POLof0XLK61mZCmJSWjVF9tEjUluu74IUXvgttuVIHE7YxSkaYhJZam7yiM9Pv82JYfl9nptxZaxMJE4YSPty+vF0+Y2up9d3wwijfjZbabqm/3bZ9ecKHsiGmRflnn1MW4pjHf9oLufyn2z3y1D6n8g8TZhxyzipLNPnAUpsOiuWimg52psrTZYnOWYNDTMuWBWa0tJb4rgq1UvmutpaYEbZlwU3CLJm/ayYjHW5/h7xWLn9Hh1vepDkyf7dE7MtT5LR4e7yYpHrkhOUpEfssBLq2pPhAqoSWKUkk7EDqkmK6RrCEzqDjhNDWNE+XSMvkJRDWlZTmCW0l0PHQGRZY5t1L83kT0Y3l2SItk5JAWHl2dCOBm+fPu3fo5/3v61RMCO9Jx2EEYYhb0rmNQMX/vm7gqOEJLcXTGw3CAuRNeyaPWwjR8PRqKQ1PDA/dpv+on9Shox52WFnx0KY8onHayrJzm87i5h9xGw/tfkev0jGsQizqezUKjk12hBMKJ4kbCqGPVNXudyyrShovGw5CgxsRICxF6aRmSjlBnHRzg7Gx8fKqEubI2rahQYdR1YgDIRQO7JvQyD52hoIQx0mxa0ODtW2Iozn1le2iIRdzwWewedyZzewidueOGqlsn1MvcnQpuVwLGG3/IR1hIKxCjelIDZ8ldqWz25jWAsnldEnK0Zxro19TGVb2ffIZEsIO89EIEDvKMPrzmBOQcKQ+rroye6NgRRxqR4U8EAkz0CL6uSGOm6KQCdWjvjRiSP1BPalCRS5iQYiEIvxuBMJEWgzSoHADcVMuN7IuqqTeyUPq22qFimFtxDyBBJEwNyt6TM88blFHao/6tWWhuuOM4SAK4EI4QmFHA+SEyWlp4EQoJ13cYGzMu7yszEIBOm2rVmHUNqwAIQabISNMRstmdhNWcFLsSm+0tjJH1MdRxO5Nx0WDMhCtgD6OKgZeljJqJKc9po8juskR9XN0Y1lZ3mWjLR9JCO1jRDMd0fpYC2VnvjBSEFg7wBENc0R9HFlb0xvF1+TBEpF68d+DHR6IOWVv2BECtxo46hOFUBd/APU57WIoEwJhIi2CdpyZX0m93BZicktMj1AS9dClteUFAUNUIEygRZCtik5zSxI9MubTBH1GOiHsiLJ3OCoSZkILa9PxiN0EbvhsAo8tdAf9Seepd36lGWHmtNANTv5Jd0z4QYyeo/UEJqxKRpg5LZx6btLPsOaEmdMyxYdlc8LMaJnikDlhclqmPiQnTEpLUIZEwkRagjYkEibQErwhkTAKCLQEbUgkzJQWc/0PstHHcfEdQ+UAAAAASUVORK5CYII=);background-size:26px 26px}.leaflet-touch .leaflet-control-layers-toggle{width:44px;height:44px}.leaflet-control-layers .leaflet-control-layers-list,.leaflet-control-layers-expanded .leaflet-control-layers-toggle{display:none}.leaflet-control-layers-expanded .leaflet-control-layers-list{display:block;position:relative}.leaflet-control-layers-expanded{padding:6px 10px 6px 6px;color:#333;background:#fff}.leaflet-control-layers-scrollbar{overflow-y:scroll;overflow-x:hidden;padding-right:5px}.leaflet-control-layers-selector{margin-top:2px;position:relative;top:1px}.leaflet-control-layers label{display:block;font-size:13px;font-size:1.08333em}.leaflet-control-layers-separator{height:0;border-top:1px solid #ddd;margin:5px -10px 5px -6px}.leaflet-default-icon-path{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAApCAYAAADAk4LOAAAFgUlEQVR4Aa1XA5BjWRTN2oW17d3YaZtr2962HUzbDNpjszW24mRt28p47v7zq/bXZtrp/lWnXr337j3nPCe85NcypgSFdugCpW5YoDAMRaIMqRi6aKq5E3YqDQO3qAwjVWrD8Ncq/RBpykd8oZUb/kaJutow8r1aP9II0WmLKLIsJyv1w/kqw9Ch2MYdB++12Onxee/QMwvf4/Dk/Lfp/i4nxTXtOoQ4pW5Aj7wpici1A9erdAN2OH64x8OSP9j3Ft3b7aWkTg/Fm91siTra0f9on5sQr9INejH6CUUUpavjFNq1B+Oadhxmnfa8RfEmN8VNAsQhPqF55xHkMzz3jSmChWU6f7/XZKNH+9+hBLOHYozuKQPxyMPUKkrX/K0uWnfFaJGS1QPRtZsOPtr3NsW0uyh6NNCOkU3Yz+bXbT3I8G3xE5EXLXtCXbbqwCO9zPQYPRTZ5vIDXD7U+w7rFDEoUUf7ibHIR4y6bLVPXrz8JVZEql13trxwue/uDivd3fkWRbS6/IA2bID4uk0UpF1N8qLlbBlXs4Ee7HLTfV1j54APvODnSfOWBqtKVvjgLKzF5YdEk5ewRkGlK0i33Eofffc7HT56jD7/6U+qH3Cx7SBLNntH5YIPvODnyfIXZYRVDPqgHtLs5ABHD3YzLuespb7t79FY34DjMwrVrcTuwlT55YMPvOBnRrJ4VXTdNnYug5ucHLBjEpt30701A3Ts+HEa73u6dT3FNWwflY86eMHPk+Yu+i6pzUpRrW7SNDg5JHR4KapmM5Wv2E8Tfcb1HoqqHMHU+uWDD7zg54mz5/2BSnizi9T1Dg4QQXLToGNCkb6tb1NU+QAlGr1++eADrzhn/u8Q2YZhQVlZ5+CAOtqfbhmaUCS1ezNFVm2imDbPmPng5wmz+gwh+oHDce0eUtQ6OGDIyR0uUhUsoO3vfDmmgOezH0mZN59x7MBi++WDL1g/eEiU3avlidO671bkLfwbw5XV2P8Pzo0ydy4t2/0eu33xYSOMOD8hTf4CrBtGMSoXfPLchX+J0ruSePw3LZeK0juPJbYzrhkH0io7B3k164hiGvawhOKMLkrQLyVpZg8rHFW7E2uHOL888IBPlNZ1FPzstSJM694fWr6RwpvcJK60+0HCILTBzZLFNdtAzJaohze60T8qBzyh5ZuOg5e7uwQppofEmf2++DYvmySqGBuKaicF1blQjhuHdvCIMvp8whTTfZzI7RldpwtSzL+F1+wkdZ2TBOW2gIF88PBTzD/gpeREAMEbxnJcaJHNHrpzji0gQCS6hdkEeYt9DF/2qPcEC8RM28Hwmr3sdNyht00byAut2k3gufWNtgtOEOFGUwcXWNDbdNbpgBGxEvKkOQsxivJx33iow0Vw5S6SVTrpVq11ysA2Rp7gTfPfktc6zhtXBBC+adRLshf6sG2RfHPZ5EAc4sVZ83yCN00Fk/4kggu40ZTvIEm5g24qtU4KjBrx/BTTH8ifVASAG7gKrnWxJDcU7x8X6Ecczhm3o6YicvsLXWfh3Ch1W0k8x0nXF+0fFxgt4phz8QvypiwCCFKMqXCnqXExjq10beH+UUA7+nG6mdG/Pu0f3LgFcGrl2s0kNNjpmoJ9o4B29CMO8dMT4Q5ox8uitF6fqsrJOr8qnwNbRzv6hSnG5wP+64C7h9lp30hKNtKdWjtdkbuPA19nJ7Tz3zR/ibgARbhb4AlhavcBebmTHcFl2fvYEnW0ox9xMxKBS8btJ+KiEbq9zA4RthQXDhPa0T9TEe69gWupwc6uBUphquXgf+/FrIjweHQS4/pduMe5ERUMHUd9xv8ZR98CxkS4F2n3EUrUZ10EYNw7BWm9x1GiPssi3GgiGRDKWRYZfXlON+dfNbM+GgIwYdwAAAAASUVORK5CYII=)}.leaflet-container .leaflet-control-attribution{background:#fff;background:rgba(255,255,255,.8);margin:0}.leaflet-control-attribution,.leaflet-control-scale-line{padding:0 5px;color:#333;line-height:1.4}.leaflet-control-attribution a{text-decoration:none}.leaflet-control-attribution a:hover,.leaflet-control-attribution a:focus{text-decoration:underline}.leaflet-attribution-flag{display:inline!important;vertical-align:baseline!important;width:1em;height:.6669em}.leaflet-left .leaflet-control-scale{margin-left:5px}.leaflet-bottom .leaflet-control-scale{margin-bottom:5px}.leaflet-control-scale-line{border:2px solid #777;border-top:none;line-height:1.1;padding:2px 5px 1px;white-space:nowrap;-moz-box-sizing:border-box;box-sizing:border-box;background:rgba(255,255,255,.8);text-shadow:1px 1px #fff}.leaflet-control-scale-line:not(:first-child){border-top:2px solid #777;border-bottom:none;margin-top:-2px}.leaflet-control-scale-line:not(:first-child):not(:last-child){border-bottom:2px solid #777}.leaflet-touch .leaflet-control-attribution,.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{box-shadow:none}.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{border:2px solid rgba(0,0,0,.2);background-clip:padding-box}.leaflet-popup{position:absolute;text-align:center;margin-bottom:20px}.leaflet-popup-content-wrapper{padding:1px;text-align:left;border-radius:12px}.leaflet-popup-content{margin:13px 24px 13px 20px;line-height:1.3;font-size:13px;font-size:1.08333em;min-height:1px}.leaflet-popup-content p{margin:1.3em 0}.leaflet-popup-tip-container{width:40px;height:20px;position:absolute;left:50%;margin-top:-1px;margin-left:-20px;overflow:hidden;pointer-events:none}.leaflet-popup-tip{width:17px;height:17px;padding:1px;margin:-10px auto 0;pointer-events:auto;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.leaflet-popup-content-wrapper,.leaflet-popup-tip{background:white;color:#333;box-shadow:0 3px 14px #0006}.leaflet-container a.leaflet-popup-close-button{position:absolute;top:0;right:0;border:none;text-align:center;width:24px;height:24px;font:16px/24px Tahoma,Verdana,sans-serif;color:#757575;text-decoration:none;background:transparent}.leaflet-container a.leaflet-popup-close-button:hover,.leaflet-container a.leaflet-popup-close-button:focus{color:#585858}.leaflet-popup-scrolled{overflow:auto}.leaflet-oldie .leaflet-popup-content-wrapper{-ms-zoom:1}.leaflet-oldie .leaflet-popup-tip{width:24px;margin:0 auto;-ms-filter:"progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";filter:progid:DXImageTransform.Microsoft.Matrix(M11=.70710678,M12=.70710678,M21=-.70710678,M22=.70710678)}.leaflet-oldie .leaflet-control-zoom,.leaflet-oldie .leaflet-control-layers,.leaflet-oldie .leaflet-popup-content-wrapper,.leaflet-oldie .leaflet-popup-tip{border:1px solid #999}.leaflet-div-icon{background:#fff;border:1px solid #666}.leaflet-tooltip{position:absolute;padding:6px;background-color:#fff;border:1px solid #fff;border-radius:3px;color:#222;white-space:nowrap;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none;box-shadow:0 1px 3px #0006}.leaflet-tooltip.leaflet-interactive{cursor:pointer;pointer-events:auto}.leaflet-tooltip-top:before,.leaflet-tooltip-bottom:before,.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{position:absolute;pointer-events:none;border:6px solid transparent;background:transparent;content:""}.leaflet-tooltip-bottom{margin-top:6px}.leaflet-tooltip-top{margin-top:-6px}.leaflet-tooltip-bottom:before,.leaflet-tooltip-top:before{left:50%;margin-left:-6px}.leaflet-tooltip-top:before{bottom:0;margin-bottom:-12px;border-top-color:#fff}.leaflet-tooltip-bottom:before{top:0;margin-top:-12px;margin-left:-6px;border-bottom-color:#fff}.leaflet-tooltip-left{margin-left:-6px}.leaflet-tooltip-right{margin-left:6px}.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{top:50%;margin-top:-6px}.leaflet-tooltip-left:before{right:0;margin-right:-12px;border-left-color:#fff}.leaflet-tooltip-right:before{left:0;margin-left:-12px;border-right-color:#fff}@media print{.leaflet-control{-webkit-print-color-adjust:exact;print-color-adjust:exact}} diff --git a/fittrackee/dist/static/css/profile.083b26ea.css b/fittrackee/dist/static/css/profile.083b26ea.css deleted file mode 100644 index 7f34fe50..00000000 --- a/fittrackee/dist/static/css/profile.083b26ea.css +++ /dev/null @@ -1 +0,0 @@ -#account-confirmation[data-v-785df978]{display:flex;flex-direction:column;align-items:center}#account-confirmation svg[data-v-785df978]{stroke:none;fill-rule:nonzero;fill:var(--app-color);filter:var(--svg-filter);width:100px}#account-confirmation .error-message[data-v-785df978]{font-size:1.1em;text-align:center;display:flex;flex-direction:column}@media screen and (max-width:1000px){#account-confirmation .error-message[data-v-785df978]{font-size:1em}}#email-update[data-v-8c2ec9ce]{display:flex;flex-direction:column;align-items:center}#email-update svg[data-v-8c2ec9ce]{stroke:none;fill-rule:nonzero;fill:var(--app-color);filter:var(--svg-filter);width:100px}#email-update .error-message[data-v-8c2ec9ce]{font-size:1.1em;text-align:center;display:flex;flex-direction:column}@media screen and (max-width:1000px){#email-update .error-message[data-v-8c2ec9ce]{font-size:1em}}#profile[data-v-641164f3]{padding:0 10px 40px}#profile[data-v-641164f3],#profile[data-v-641164f3] .profile-form{display:flex;flex-direction:column}#profile[data-v-641164f3] .profile-form hr{border-color:var(--card-border-color);border-width:1px 0 0 0}#profile[data-v-641164f3] .profile-form .form-items{display:flex;flex-direction:column}#profile[data-v-641164f3] .profile-form .form-items input{margin:5px 0}#profile[data-v-641164f3] .profile-form .form-items select{height:35px;padding:5px 0}#profile[data-v-641164f3] .profile-form .form-items ::v-deep(.custom-textarea) textarea{padding:5px}#profile[data-v-641164f3] .profile-form .form-items .form-item{display:flex;flex-direction:column;padding:10px}#profile[data-v-641164f3] .profile-form .form-items .birth-date{height:20px}#profile[data-v-641164f3] .profile-form .form-buttons{display:flex;margin-top:10px;padding:10px 0;gap:10px}#user[data-v-af7007f4]{margin:auto;width:700px}@media screen and (max-width:1000px){#user[data-v-af7007f4]{width:100%;margin:0 auto 50px auto}} \ No newline at end of file diff --git a/fittrackee/dist/static/css/reset.e2527ec6.css b/fittrackee/dist/static/css/reset.e2527ec6.css deleted file mode 100644 index 0214ab85..00000000 --- a/fittrackee/dist/static/css/reset.e2527ec6.css +++ /dev/null @@ -1 +0,0 @@ -#account-confirmation-email[data-v-66aca424]{display:flex;flex-direction:column}#account-confirmation-email .email-sent[data-v-66aca424]{display:flex;flex-direction:column;align-items:center}#account-confirmation-email .email-sent svg[data-v-66aca424]{stroke:none;fill-rule:nonzero;fill:var(--app-color);filter:var(--svg-filter);width:100px}#account-confirmation-email .email-sent .email-sent-message[data-v-66aca424]{font-size:1.1em;text-align:center}@media screen and (max-width:1000px){#account-confirmation-email .email-sent .email-sent-message[data-v-66aca424]{font-size:1em}}#account-confirmation-email[data-v-66aca424] .card .card-content #user-auth-form{margin-top:0}#account-confirmation-email[data-v-66aca424] .card .card-content #user-auth-form #user-form{width:100%}#account-confirmation[data-v-35aad344]{display:flex}#account-confirmation .container[data-v-35aad344]{display:flex;justify-content:center;width:50%}@media screen and (max-width:700px){#account-confirmation .container[data-v-35aad344]{width:100%}}#password-action-done[data-v-eac78356]{display:flex;flex-direction:column;align-items:center}#password-action-done svg[data-v-eac78356]{stroke:none;fill-rule:nonzero;fill:var(--app-color);filter:var(--svg-filter);width:100px}#password-action-done .password-message[data-v-eac78356]{font-size:1.1em;text-align:center}@media screen and (max-width:1000px){#password-action-done .password-message[data-v-eac78356]{font-size:1em}}#password-reset-request[data-v-68377e44] .card .card-content #user-form{width:100%}#password-reset[data-v-a1cc55c4]{display:flex}#password-reset .container[data-v-a1cc55c4]{display:flex;justify-content:center;width:50%}@media screen and (max-width:700px){#password-reset .container[data-v-a1cc55c4]{width:100%}} \ No newline at end of file diff --git a/fittrackee/dist/static/css/statistics.315506b0.css b/fittrackee/dist/static/css/statistics.315506b0.css deleted file mode 100644 index bead6af6..00000000 --- a/fittrackee/dist/static/css/statistics.315506b0.css +++ /dev/null @@ -1 +0,0 @@ -.chart-menu[data-v-361ef577]{display:flex;align-items:center}.chart-menu .chart-arrow[data-v-361ef577],.chart-menu .time-frames[data-v-361ef577]{flex-grow:1;text-align:center}.chart-menu .chart-arrow[data-v-361ef577]{cursor:pointer}.sports-menu{display:flex;flex-wrap:wrap;padding:10px}.sports-menu label{display:flex;align-items:center;font-size:.9em;font-weight:400;min-width:120px;padding:10px}@media screen and (max-width:1000px){.sports-menu label{min-width:100px}}@media screen and (max-width:500px){.sports-menu label{min-width:20px}.sports-menu label .sport-label{display:none}}.sports-menu .sport-img{padding:3px;width:20px;height:20px}#user-statistics.stats-disabled[data-v-742b02d0]{opacity:.3;pointer-events:none}#user-statistics[data-v-742b02d0] .chart-radio{justify-content:space-around;padding:30px 10px 10px 10px}#statistics[data-v-19ce09a2]{display:flex;width:100%}#statistics .container[data-v-19ce09a2]{display:flex;flex-direction:column;width:100%} \ No newline at end of file diff --git a/fittrackee/dist/static/css/workouts.6abd9bd9.css b/fittrackee/dist/static/css/workouts.6abd9bd9.css deleted file mode 100644 index c8385c1c..00000000 --- a/fittrackee/dist/static/css/workouts.6abd9bd9.css +++ /dev/null @@ -1 +0,0 @@ -.workouts-filters .form .form-all-items[data-v-28429a13]{display:flex;flex-direction:column;padding-top:0}.workouts-filters .form .form-all-items .form-items-group[data-v-28429a13]{display:flex;flex-direction:column;padding:5px}.workouts-filters .form .form-all-items .form-items-group .form-item[data-v-28429a13]{display:flex;flex-direction:column}.workouts-filters .form .form-all-items .form-items-group .form-item .form-inputs-group[data-v-28429a13]{display:flex;flex-direction:row;justify-content:space-around;align-items:center}.workouts-filters .form .form-all-items .form-items-group .form-item .form-inputs-group input[data-v-28429a13]{width:34%}.workouts-filters .form .form-all-items .form-items-group .form-item .form-inputs-group span[data-v-28429a13]{padding:5px}.workouts-filters .form .form-all-items .form-items-group .form-item input[data-v-28429a13]{height:16px}.workouts-filters .form .form-all-items .form-items-group .form-item select[data-v-28429a13]{height:38px;padding:0 5px}.workouts-filters .form .form-all-items .form-items-group .form-item-title[data-v-28429a13]{padding-top:10px}.workouts-filters .form .form-all-items .form-items-group .form-item-title input.title[data-v-28429a13]{width:100%}.workouts-filters .form-button[data-v-28429a13]{display:flex;justify-content:center;flex-wrap:wrap;margin:5px}.workouts-filters .form-button button[data-v-28429a13]{margin-top:10px;width:100%}@media screen and (max-width:1000px){.workouts-filters .form .form-all-items[data-v-28429a13]{flex-direction:row;padding-top:5px}.workouts-filters .form .form-all-items .form-items-group[data-v-28429a13]{padding:0 5px;height:100%}.workouts-filters .form .form-all-items .form-items-group .form-item label[data-v-28429a13],.workouts-filters .form .form-all-items .form-items-group .form-item span[data-v-28429a13]{font-size:.9em}.workouts-filters .form .form-all-items .form-items-group .form-item .form-inputs-group[data-v-28429a13]{flex-direction:column;justify-content:normal;padding:0}.workouts-filters .form .form-all-items .form-items-group .form-item .form-inputs-group input[data-v-28429a13]{width:85%}.workouts-filters .form .form-all-items .form-items-group .form-item .form-inputs-group span[data-v-28429a13]{padding:0}.workouts-filters .form .form-all-items .form-items-group .form-item-title[data-v-28429a13]{padding-top:0}.workouts-filters .form-button[data-v-28429a13]{flex-wrap:nowrap}.workouts-filters .form-button button[data-v-28429a13]{margin:10px 5px;width:100%}}@media screen and (max-width:700px){.workouts-filters .form .form-all-items[data-v-28429a13]{flex-direction:column;padding-top:0}.workouts-filters .form .form-all-items .form-items-group[data-v-28429a13]{padding:5px}.workouts-filters .form .form-all-items .form-items-group .form-item label[data-v-28429a13]{font-size:1em}.workouts-filters .form .form-all-items .form-items-group .form-item .form-inputs-group[data-v-28429a13]{flex-direction:row;justify-content:space-around;align-items:center}.workouts-filters .form .form-all-items .form-items-group .form-item .form-inputs-group input[data-v-28429a13]{width:50%}.workouts-filters .form .form-all-items .form-items-group .form-item .form-inputs-group span[data-v-28429a13]{padding:5px}.workouts-filters .form-button[data-v-28429a13]{flex-wrap:nowrap}.workouts-filters .form-button button[data-v-28429a13]{margin:10px 5px}}@media screen and (max-width:500px){.workouts-filters .form-button[data-v-28429a13]{flex-wrap:wrap}.workouts-filters .form .form-all-items .form-items-group .form-item-title[data-v-28429a13]{padding-top:10px}.workouts-filters .form .form-all-items .form-items-group .form-item-title input.title[data-v-28429a13]{width:100%}}.workouts-list[data-v-5b391214]{display:flex;flex-direction:column;margin-bottom:50px;width:100%}.workouts-list .box[data-v-5b391214]{padding:10px 15px}@media screen and (max-width:700px){.workouts-list .box.empty-table[data-v-5b391214]{display:none}}.workouts-list .box .total[data-v-5b391214]{display:flex;gap:5px}.workouts-list .box .total .total-label[data-v-5b391214]{font-weight:700}.workouts-list .box .top-pagination[data-v-5b391214]{display:none}@media screen and (max-width:700px){.workouts-list .box .top-pagination[data-v-5b391214]{display:flex}.workouts-list .box[data-v-5b391214] .pagination-center ul{margin-top:0}}.workouts-list .box .workouts-table .smaller th[data-v-5b391214]{font-size:.95em;padding:10px 0;max-width:100px}.workouts-list .box .workouts-table td[data-v-5b391214]{text-align:right}.workouts-list .box .workouts-table .sport-col[data-v-5b391214]{padding:0}.workouts-list .box .workouts-table .workout-title[data-v-5b391214]{text-align:left;width:100px;position:relative}.workouts-list .box .workouts-table .workout-title .fa-map-o[data-v-5b391214]{font-size:.75em;padding-right:5px}.workouts-list .box .workouts-table .workout-title .nav-item[data-v-5b391214]{white-space:nowrap}.workouts-list .box .workouts-table .workout-title .nav-item .title[data-v-5b391214]{word-break:break-word;white-space:normal}.workouts-list .box .workouts-table .workout-title .static-map[data-v-5b391214]{display:none;box-shadow:3px 3px 3px 1px #d3d3d3}.workouts-list .box .workouts-table .workout-title:hover .static-map[data-v-5b391214]{display:block}.workouts-list .box .workouts-table .sport-img[data-v-5b391214]{height:20px;width:20px}.workouts-list .box .workouts-table .workout-date[data-v-5b391214]{max-width:60px;text-align:left}@media screen and (max-width:700px){.workouts-list .box .workouts-table .workout-date[data-v-5b391214],.workouts-list .box .workouts-table .workout-title[data-v-5b391214],.workouts-list .box .workouts-table td[data-v-5b391214]{text-align:center}.workouts-list .box .workouts-table .sport-col[data-v-5b391214]{display:flex;justify-content:center;padding:10px}.workouts-list .box .workouts-table .workout-date[data-v-5b391214]{max-width:none}.workouts-list .box .workouts-table .workout-title[data-v-5b391214]{max-width:none;width:100%}.workouts-list .box .workouts-table .workout-title:hover .static-map[data-v-5b391214]{display:none}}.workouts-list .more-workouts[data-v-5b391214]{display:flex;justify-content:center;padding:10px}#workouts .workouts-container[data-v-57ec0168]{display:flex;flex-direction:row}@media screen and (max-width:1000px){#workouts .workouts-container[data-v-57ec0168]{flex-direction:column}}#workouts .workouts-container .filters-container[data-v-57ec0168],#workouts .workouts-container .list-container[data-v-57ec0168]{display:flex;flex-direction:column}#workouts .workouts-container .filters-container[data-v-57ec0168]{width:25%}@media screen and (max-width:1000px){#workouts .workouts-container .filters-container[data-v-57ec0168]{width:100%}}@media screen and (max-width:1000px)and (max-width:700px){#workouts .workouts-container .filters-container.hidden[data-v-57ec0168]{display:none}}#workouts .workouts-container .display-filters[data-v-57ec0168]{display:none;font-size:.8em;padding:0 20px}#workouts .workouts-container .display-filters span[data-v-57ec0168]{cursor:pointer;font-weight:700;padding-left:5px}#workouts .workouts-container .display-filters .fa[data-v-57ec0168]{cursor:pointer}@media screen and (max-width:700px){#workouts .workouts-container .display-filters[data-v-57ec0168]{display:flex;justify-content:flex-end;align-items:center}}#workouts .workouts-container .list-container[data-v-57ec0168]{width:75%}@media screen and (max-width:1000px){#workouts .workouts-container .list-container[data-v-57ec0168]{width:100%}}#workout-card-title[data-v-40df61be]{display:flex;justify-content:space-between;align-items:center}#workout-card-title .workout-arrow[data-v-40df61be]{cursor:pointer;padding:10px}#workout-card-title .workout-arrow.inactive[data-v-40df61be]{color:var(--disabled-color);cursor:default}#workout-card-title .workout-card-title[data-v-40df61be]{display:flex;flex-grow:1;align-items:center}#workout-card-title .workout-card-title .sport-img[data-v-40df61be]{padding:0 10px}#workout-card-title .workout-card-title .sport-img[data-v-40df61be] svg{height:35px;width:35px}#workout-card-title .workout-card-title .workout-title span[data-v-40df61be]{margin-right:5px}#workout-card-title .workout-card-title .workout-date[data-v-40df61be]{font-size:.8em;font-weight:400}#workout-card-title .workout-card-title .workout-segment[data-v-40df61be]{font-weight:400}#workout-card-title .workout-card-title .workout-link[data-v-40df61be]{padding-left:10px}#workout-card-title .workout-card-title .fa[data-v-40df61be]{padding:0 3px}#workout-card-title .workout-card-title .icon-button[data-v-40df61be]{cursor:pointer;padding:0;margin-left:2px}@media screen and (max-width:700px){#workout-card-title .workout-arrow[data-v-40df61be]{padding:5px}}@media screen and (max-width:700px)and (max-width:700px){#workout-card-title .workout-card-title .fa-download[data-v-40df61be],#workout-card-title .workout-card-title .fa-edit[data-v-40df61be],#workout-card-title .workout-card-title .fa-trash[data-v-40df61be]{padding:0 7px}}.workout-record sup[data-v-1a5282f6]{font-size:75%;line-height:0}.wind[data-v-40697ed1]{display:flex;justify-content:center}.wind .wind-bearing[data-v-40697ed1]{padding-left:5px}#workout-weather[data-v-807b431a]{padding-top:10px}#workout-weather .weather-img[data-v-807b431a]{height:30px;filter:var(--workout-img-color)}#workout-weather .weather-img-small[data-v-807b431a]{height:20px}#workout-weather .weather-table[data-v-807b431a]{width:100%;text-align:center}#workout-weather .weather-table .weather-th[data-v-807b431a]{display:flex;flex-direction:column;text-transform:capitalize}#workout-weather .weather-table tbody[data-v-807b431a]{font-size:.8em}#workout-info[data-v-2c41cfc8]{display:flex;flex-direction:column;padding:10px 20px;width:100%}#workout-info .fa[data-v-2c41cfc8],#workout-info .mountains[data-v-2c41cfc8]{padding-right:5px}#workout-info .workout-data[data-v-2c41cfc8]{padding:5px 0}#workout-info .workout-data .label[data-v-2c41cfc8]{text-transform:capitalize}#workout-info .workout-data .value[data-v-2c41cfc8]{font-weight:700;text-transform:lowercase}@media screen and (max-width:700px){#workout-info[data-v-2c41cfc8]{padding:10px}}.leaflet-image-layer,.leaflet-layer,.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-pane,.leaflet-pane>canvas,.leaflet-pane>svg,.leaflet-tile,.leaflet-tile-container,.leaflet-zoom-box{position:absolute;left:0;top:0}.leaflet-container{overflow:hidden}.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-tile{-webkit-user-select:none;-moz-user-select:none;user-select:none;-webkit-user-drag:none}.leaflet-tile::-moz-selection{background:transparent}.leaflet-tile::selection{background:transparent}.leaflet-safari .leaflet-tile{image-rendering:-webkit-optimize-contrast}.leaflet-safari .leaflet-tile-container{width:1600px;height:1600px;-webkit-transform-origin:0 0}.leaflet-marker-icon,.leaflet-marker-shadow{display:block}.leaflet-container .leaflet-overlay-pane svg{max-width:none!important;max-height:none!important}.leaflet-container .leaflet-marker-pane img,.leaflet-container .leaflet-shadow-pane img,.leaflet-container .leaflet-tile,.leaflet-container .leaflet-tile-pane img,.leaflet-container img.leaflet-image-layer{max-width:none!important;max-height:none!important;width:auto;padding:0}.leaflet-container img.leaflet-tile{mix-blend-mode:plus-lighter}.leaflet-container.leaflet-touch-zoom{touch-action:pan-x pan-y}.leaflet-container.leaflet-touch-drag{touch-action:none;touch-action:pinch-zoom}.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom{touch-action:none}.leaflet-container{-webkit-tap-highlight-color:transparent}.leaflet-container a{-webkit-tap-highlight-color:rgba(51,181,229,.4)}.leaflet-tile{filter:inherit;visibility:hidden}.leaflet-tile-loaded{visibility:inherit}.leaflet-zoom-box{width:0;height:0;box-sizing:border-box;z-index:800}.leaflet-overlay-pane svg{-moz-user-select:none}.leaflet-pane{z-index:400}.leaflet-tile-pane{z-index:200}.leaflet-overlay-pane{z-index:400}.leaflet-shadow-pane{z-index:500}.leaflet-marker-pane{z-index:600}.leaflet-tooltip-pane{z-index:650}.leaflet-popup-pane{z-index:700}.leaflet-map-pane canvas{z-index:100}.leaflet-map-pane svg{z-index:200}.leaflet-vml-shape{width:1px;height:1px}.lvml{behavior:url(#default#VML);display:inline-block;position:absolute}.leaflet-control{position:relative;z-index:800;pointer-events:visiblePainted;pointer-events:auto}.leaflet-bottom,.leaflet-top{position:absolute;z-index:1000;pointer-events:none}.leaflet-top{top:0}.leaflet-right{right:0}.leaflet-bottom{bottom:0}.leaflet-left{left:0}.leaflet-control{float:left;clear:both}.leaflet-right .leaflet-control{float:right}.leaflet-top .leaflet-control{margin-top:10px}.leaflet-bottom .leaflet-control{margin-bottom:10px}.leaflet-left .leaflet-control{margin-left:10px}.leaflet-right .leaflet-control{margin-right:10px}.leaflet-fade-anim .leaflet-popup{opacity:0;transition:opacity .2s linear}.leaflet-fade-anim .leaflet-map-pane .leaflet-popup{opacity:1}.leaflet-zoom-animated{transform-origin:0 0}svg.leaflet-zoom-animated{will-change:transform}.leaflet-zoom-anim .leaflet-zoom-animated{transition:transform .25s cubic-bezier(0,0,.25,1)}.leaflet-pan-anim .leaflet-tile,.leaflet-zoom-anim .leaflet-tile{transition:none}.leaflet-zoom-anim .leaflet-zoom-hide{visibility:hidden}.leaflet-interactive{cursor:pointer}.leaflet-grab{cursor:grab}.leaflet-crosshair,.leaflet-crosshair .leaflet-interactive{cursor:crosshair}.leaflet-control,.leaflet-popup-pane{cursor:auto}.leaflet-dragging .leaflet-grab,.leaflet-dragging .leaflet-grab .leaflet-interactive,.leaflet-dragging .leaflet-marker-draggable{cursor:move;cursor:grabbing}.leaflet-image-layer,.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-pane>svg path,.leaflet-tile-container{pointer-events:none}.leaflet-image-layer.leaflet-interactive,.leaflet-marker-icon.leaflet-interactive,.leaflet-pane>svg path.leaflet-interactive,svg.leaflet-image-layer.leaflet-interactive path{pointer-events:visiblePainted;pointer-events:auto}.leaflet-container{background:#ddd;outline-offset:1px}.leaflet-container a{color:#0078a8}.leaflet-zoom-box{border:2px dotted #38f;background:hsla(0,0%,100%,.5)}.leaflet-container{font-family:Helvetica Neue,Arial,Helvetica,sans-serif;font-size:12px;font-size:.75rem;line-height:1.5}.leaflet-bar{box-shadow:0 1px 5px rgba(0,0,0,.65);border-radius:4px}.leaflet-bar a{background-color:#fff;border-bottom:1px solid #ccc;width:26px;height:26px;line-height:26px;display:block;text-align:center;text-decoration:none;color:#000}.leaflet-bar a,.leaflet-control-layers-toggle{background-position:50% 50%;background-repeat:no-repeat;display:block}.leaflet-bar a:focus,.leaflet-bar a:hover{background-color:#f4f4f4}.leaflet-bar a:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.leaflet-bar a:last-child{border-bottom-left-radius:4px;border-bottom-right-radius:4px;border-bottom:none}.leaflet-bar a.leaflet-disabled{cursor:default;background-color:#f4f4f4;color:#bbb}.leaflet-touch .leaflet-bar a{width:30px;height:30px;line-height:30px}.leaflet-touch .leaflet-bar a:first-child{border-top-left-radius:2px;border-top-right-radius:2px}.leaflet-touch .leaflet-bar a:last-child{border-bottom-left-radius:2px;border-bottom-right-radius:2px}.leaflet-control-zoom-in,.leaflet-control-zoom-out{font:700 18px Lucida Console,Monaco,monospace;text-indent:1px}.leaflet-touch .leaflet-control-zoom-in,.leaflet-touch .leaflet-control-zoom-out{font-size:22px}.leaflet-control-layers{box-shadow:0 1px 5px rgba(0,0,0,.4);background:#fff;border-radius:5px}.leaflet-control-layers-toggle{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAQAAAADQ4RFAAACf0lEQVR4AY1UM3gkARTePdvdoTxXKc+qTl3aU5U6b2Kbkz3Gtq3Zw6ziLGNPzrYx7946Tr6/ee/XeCQ4D3ykPtL5tHno4n0d/h3+xfuWHGLX81cn7r0iTNzjr7LrlxCqPtkbTQEHeqOrTy4Yyt3VCi/IOB0v7rVC7q45Q3Gr5K6jt+3Gl5nCoDD4MtO+j96Wu8atmhGqcNGHObuf8OM/x3AMx38+4Z2sPqzCxRFK2aF2e5Jol56XTLyggAMTL56XOMoS1W4pOyjUcGGQdZxU6qRh7B9Zp+PfpOFlqt0zyDZckPi1ttmIp03jX8gyJ8a/PG2yutpS/Vol7peZIbZcKBAEEheEIAgFbDkz5H6Zrkm2hVWGiXKiF4Ycw0RWKdtC16Q7qe3X4iOMxruonzegJzWaXFrU9utOSsLUmrc0YjeWYjCW4PDMADElpJSSQ0vQvA1Tm6/JlKnqFs1EGyZiFCqnRZTEJJJiKRYzVYzJck2Rm6P4iH+cmSY0YzimYa8l0EtTODFWhcMIMVqdsI2uiTvKmTisIDHJ3od5GILVhBCarCfVRmo4uTjkhrhzkiBV7SsaqS+TzrzM1qpGGUFt28pIySQHR6h7F6KSwGWm97ay+Z+ZqMcEjEWebE7wxCSQwpkhJqoZA5ivCdZDjJepuJ9IQjGGUmuXJdBFUygxVqVsxFsLMbDe8ZbDYVCGKxs+W080max1hFCarCfV+C1KATwcnvE9gRRuMP2prdbWGowm1KB1y+zwMMENkM755cJ2yPDtqhTI6ED1M/82yIDtC/4j4BijjeObflpO9I9MwXTCsSX8jWAFeHr05WoLTJ5G8IQVS/7vwR6ohirYM7f6HzYpogfS3R2OAAAAAElFTkSuQmCC);width:36px;height:36px}.leaflet-retina .leaflet-control-layers-toggle{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAA0CAQAAABvcdNgAAAEsklEQVR4AWL4TydIhpZK1kpWOlg0w3ZXP6D2soBtG42jeI6ZmQTHzAxiTbSJsYLjO9HhP+WOmcuhciVnmHVQcJnp7DFvScowZorad/+V/fVzMdMT2g9Cv9guXGv/7pYOrXh2U+RRR3dSd9JRx6bIFc/ekqHI29JC6pJ5ZEh1yWkhkbcFeSjxgx3L2m1cb1C7bceyxA+CNjT/Ifff+/kDk2u/w/33/IeCMOSaWZ4glosqT3DNnNZQ7Cs58/3Ce5HL78iZH/vKVIaYlqzfdLu8Vi7dnvUbEza5Idt36tquZFldl6N5Z/POLof0XLK61mZCmJSWjVF9tEjUluu74IUXvgttuVIHE7YxSkaYhJZam7yiM9Pv82JYfl9nptxZaxMJE4YSPty+vF0+Y2up9d3wwijfjZbabqm/3bZ9ecKHsiGmRflnn1MW4pjHf9oLufyn2z3y1D6n8g8TZhxyzipLNPnAUpsOiuWimg52psrTZYnOWYNDTMuWBWa0tJb4rgq1UvmutpaYEbZlwU3CLJm/ayYjHW5/h7xWLn9Hh1vepDkyf7dE7MtT5LR4e7yYpHrkhOUpEfssBLq2pPhAqoSWKUkk7EDqkmK6RrCEzqDjhNDWNE+XSMvkJRDWlZTmCW0l0PHQGRZY5t1L83kT0Y3l2SItk5JAWHl2dCOBm+fPu3fo5/3v61RMCO9Jx2EEYYhb0rmNQMX/vm7gqOEJLcXTGw3CAuRNeyaPWwjR8PRqKQ1PDA/dpv+on9Shox52WFnx0KY8onHayrJzm87i5h9xGw/tfkev0jGsQizqezUKjk12hBMKJ4kbCqGPVNXudyyrShovGw5CgxsRICxF6aRmSjlBnHRzg7Gx8fKqEubI2rahQYdR1YgDIRQO7JvQyD52hoIQx0mxa0ODtW2Iozn1le2iIRdzwWewedyZzewidueOGqlsn1MvcnQpuVwLGG3/IR1hIKxCjelIDZ8ldqWz25jWAsnldEnK0Zxro19TGVb2ffIZEsIO89EIEDvKMPrzmBOQcKQ+rroye6NgRRxqR4U8EAkz0CL6uSGOm6KQCdWjvjRiSP1BPalCRS5iQYiEIvxuBMJEWgzSoHADcVMuN7IuqqTeyUPq22qFimFtxDyBBJEwNyt6TM88blFHao/6tWWhuuOM4SAK4EI4QmFHA+SEyWlp4EQoJ13cYGzMu7yszEIBOm2rVmHUNqwAIQabISNMRstmdhNWcFLsSm+0tjJH1MdRxO5Nx0WDMhCtgD6OKgZeljJqJKc9po8juskR9XN0Y1lZ3mWjLR9JCO1jRDMd0fpYC2VnvjBSEFg7wBENc0R9HFlb0xvF1+TBEpF68d+DHR6IOWVv2BECtxo46hOFUBd/APU57WIoEwJhIi2CdpyZX0m93BZicktMj1AS9dClteUFAUNUIEygRZCtik5zSxI9MubTBH1GOiHsiLJ3OCoSZkILa9PxiN0EbvhsAo8tdAf9Seepd36lGWHmtNANTv5Jd0z4QYyeo/UEJqxKRpg5LZx6btLPsOaEmdMyxYdlc8LMaJnikDlhclqmPiQnTEpLUIZEwkRagjYkEibQErwhkTAKCLQEbUgkzJQWc/0PstHHcfEdQ+UAAAAASUVORK5CYII=);background-size:26px 26px}.leaflet-touch .leaflet-control-layers-toggle{width:44px;height:44px}.leaflet-control-layers .leaflet-control-layers-list,.leaflet-control-layers-expanded .leaflet-control-layers-toggle{display:none}.leaflet-control-layers-expanded .leaflet-control-layers-list{display:block;position:relative}.leaflet-control-layers-expanded{padding:6px 10px 6px 6px;color:#333;background:#fff}.leaflet-control-layers-scrollbar{overflow-y:scroll;overflow-x:hidden;padding-right:5px}.leaflet-control-layers-selector{margin-top:2px;position:relative;top:1px}.leaflet-control-layers label{display:block;font-size:13px;font-size:1.08333em}.leaflet-control-layers-separator{height:0;border-top:1px solid #ddd;margin:5px -10px 5px -6px}.leaflet-default-icon-path{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAApCAYAAADAk4LOAAAFgUlEQVR4Aa1XA5BjWRTN2oW17d3YaZtr2962HUzbDNpjszW24mRt28p47v7zq/bXZtrp/lWnXr337j3nPCe85NcypgSFdugCpW5YoDAMRaIMqRi6aKq5E3YqDQO3qAwjVWrD8Ncq/RBpykd8oZUb/kaJutow8r1aP9II0WmLKLIsJyv1w/kqw9Ch2MYdB++12Onxee/QMwvf4/Dk/Lfp/i4nxTXtOoQ4pW5Aj7wpici1A9erdAN2OH64x8OSP9j3Ft3b7aWkTg/Fm91siTra0f9on5sQr9INejH6CUUUpavjFNq1B+Oadhxmnfa8RfEmN8VNAsQhPqF55xHkMzz3jSmChWU6f7/XZKNH+9+hBLOHYozuKQPxyMPUKkrX/K0uWnfFaJGS1QPRtZsOPtr3NsW0uyh6NNCOkU3Yz+bXbT3I8G3xE5EXLXtCXbbqwCO9zPQYPRTZ5vIDXD7U+w7rFDEoUUf7ibHIR4y6bLVPXrz8JVZEql13trxwue/uDivd3fkWRbS6/IA2bID4uk0UpF1N8qLlbBlXs4Ee7HLTfV1j54APvODnSfOWBqtKVvjgLKzF5YdEk5ewRkGlK0i33Eofffc7HT56jD7/6U+qH3Cx7SBLNntH5YIPvODnyfIXZYRVDPqgHtLs5ABHD3YzLuespb7t79FY34DjMwrVrcTuwlT55YMPvOBnRrJ4VXTdNnYug5ucHLBjEpt30701A3Ts+HEa73u6dT3FNWwflY86eMHPk+Yu+i6pzUpRrW7SNDg5JHR4KapmM5Wv2E8Tfcb1HoqqHMHU+uWDD7zg54mz5/2BSnizi9T1Dg4QQXLToGNCkb6tb1NU+QAlGr1++eADrzhn/u8Q2YZhQVlZ5+CAOtqfbhmaUCS1ezNFVm2imDbPmPng5wmz+gwh+oHDce0eUtQ6OGDIyR0uUhUsoO3vfDmmgOezH0mZN59x7MBi++WDL1g/eEiU3avlidO671bkLfwbw5XV2P8Pzo0ydy4t2/0eu33xYSOMOD8hTf4CrBtGMSoXfPLchX+J0ruSePw3LZeK0juPJbYzrhkH0io7B3k164hiGvawhOKMLkrQLyVpZg8rHFW7E2uHOL888IBPlNZ1FPzstSJM694fWr6RwpvcJK60+0HCILTBzZLFNdtAzJaohze60T8qBzyh5ZuOg5e7uwQppofEmf2++DYvmySqGBuKaicF1blQjhuHdvCIMvp8whTTfZzI7RldpwtSzL+F1+wkdZ2TBOW2gIF88PBTzD/gpeREAMEbxnJcaJHNHrpzji0gQCS6hdkEeYt9DF/2qPcEC8RM28Hwmr3sdNyht00byAut2k3gufWNtgtOEOFGUwcXWNDbdNbpgBGxEvKkOQsxivJx33iow0Vw5S6SVTrpVq11ysA2Rp7gTfPfktc6zhtXBBC+adRLshf6sG2RfHPZ5EAc4sVZ83yCN00Fk/4kggu40ZTvIEm5g24qtU4KjBrx/BTTH8ifVASAG7gKrnWxJDcU7x8X6Ecczhm3o6YicvsLXWfh3Ch1W0k8x0nXF+0fFxgt4phz8QvypiwCCFKMqXCnqXExjq10beH+UUA7+nG6mdG/Pu0f3LgFcGrl2s0kNNjpmoJ9o4B29CMO8dMT4Q5ox8uitF6fqsrJOr8qnwNbRzv6hSnG5wP+64C7h9lp30hKNtKdWjtdkbuPA19nJ7Tz3zR/ibgARbhb4AlhavcBebmTHcFl2fvYEnW0ox9xMxKBS8btJ+KiEbq9zA4RthQXDhPa0T9TEe69gWupwc6uBUphquXgf+/FrIjweHQS4/pduMe5ERUMHUd9xv8ZR98CxkS4F2n3EUrUZ10EYNw7BWm9x1GiPssi3GgiGRDKWRYZfXlON+dfNbM+GgIwYdwAAAAASUVORK5CYII=)}.leaflet-container .leaflet-control-attribution{background:#fff;background:hsla(0,0%,100%,.8);margin:0}.leaflet-control-attribution,.leaflet-control-scale-line{padding:0 5px;color:#333;line-height:1.4}.leaflet-control-attribution a{text-decoration:none}.leaflet-control-attribution a:focus,.leaflet-control-attribution a:hover{text-decoration:underline}.leaflet-attribution-flag{display:inline!important;vertical-align:baseline!important;width:1em;height:.6669em}.leaflet-left .leaflet-control-scale{margin-left:5px}.leaflet-bottom .leaflet-control-scale{margin-bottom:5px}.leaflet-control-scale-line{border:2px solid #777;border-top:none;line-height:1.1;padding:2px 5px 1px;white-space:nowrap;box-sizing:border-box;background:hsla(0,0%,100%,.8);text-shadow:1px 1px #fff}.leaflet-control-scale-line:not(:first-child){border-top:2px solid #777;border-bottom:none;margin-top:-2px}.leaflet-control-scale-line:not(:first-child):not(:last-child){border-bottom:2px solid #777}.leaflet-touch .leaflet-bar,.leaflet-touch .leaflet-control-attribution,.leaflet-touch .leaflet-control-layers{box-shadow:none}.leaflet-touch .leaflet-bar,.leaflet-touch .leaflet-control-layers{border:2px solid rgba(0,0,0,.2);background-clip:padding-box}.leaflet-popup{position:absolute;text-align:center;margin-bottom:20px}.leaflet-popup-content-wrapper{padding:1px;text-align:left;border-radius:12px}.leaflet-popup-content{margin:13px 24px 13px 20px;line-height:1.3;font-size:13px;font-size:1.08333em;min-height:1px}.leaflet-popup-content p{margin:17px 0;margin:1.3em 0}.leaflet-popup-tip-container{width:40px;height:20px;position:absolute;left:50%;margin-top:-1px;margin-left:-20px;overflow:hidden;pointer-events:none}.leaflet-popup-tip{width:17px;height:17px;padding:1px;margin:-10px auto 0;pointer-events:auto;transform:rotate(45deg)}.leaflet-popup-content-wrapper,.leaflet-popup-tip{background:#fff;color:#333;box-shadow:0 3px 14px rgba(0,0,0,.4)}.leaflet-container a.leaflet-popup-close-button{position:absolute;top:0;right:0;border:none;text-align:center;width:24px;height:24px;font:16px/24px Tahoma,Verdana,sans-serif;color:#757575;text-decoration:none;background:transparent}.leaflet-container a.leaflet-popup-close-button:focus,.leaflet-container a.leaflet-popup-close-button:hover{color:#585858}.leaflet-popup-scrolled{overflow:auto}.leaflet-oldie .leaflet-popup-content-wrapper{-ms-zoom:1}.leaflet-oldie .leaflet-popup-tip{width:24px;margin:0 auto;-ms-filter:"progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";filter:progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678,M12=0.70710678,M21=-0.70710678,M22=0.70710678)}.leaflet-oldie .leaflet-control-layers,.leaflet-oldie .leaflet-control-zoom,.leaflet-oldie .leaflet-popup-content-wrapper,.leaflet-oldie .leaflet-popup-tip{border:1px solid #999}.leaflet-div-icon{background:#fff;border:1px solid #666}.leaflet-tooltip{position:absolute;padding:6px;background-color:#fff;border:1px solid #fff;border-radius:3px;color:#222;white-space:nowrap;-webkit-user-select:none;-moz-user-select:none;user-select:none;pointer-events:none;box-shadow:0 1px 3px rgba(0,0,0,.4)}.leaflet-tooltip.leaflet-interactive{cursor:pointer;pointer-events:auto}.leaflet-tooltip-bottom:before,.leaflet-tooltip-left:before,.leaflet-tooltip-right:before,.leaflet-tooltip-top:before{position:absolute;pointer-events:none;border:6px solid transparent;background:transparent;content:""}.leaflet-tooltip-bottom{margin-top:6px}.leaflet-tooltip-top{margin-top:-6px}.leaflet-tooltip-bottom:before,.leaflet-tooltip-top:before{left:50%;margin-left:-6px}.leaflet-tooltip-top:before{bottom:0;margin-bottom:-12px;border-top-color:#fff}.leaflet-tooltip-bottom:before{top:0;margin-top:-12px;margin-left:-6px;border-bottom-color:#fff}.leaflet-tooltip-left{margin-left:-6px}.leaflet-tooltip-right{margin-left:6px}.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{top:50%;margin-top:-6px}.leaflet-tooltip-left:before{right:0;margin-right:-12px;border-left-color:#fff}.leaflet-tooltip-right:before{left:0;margin-left:-12px;border-right-color:#fff}@media print{.leaflet-control{-webkit-print-color-adjust:exact;print-color-adjust:exact}}#workout-map[data-v-4582e1d0]{padding:10px 0}#workout-map .leaflet-container[data-v-4582e1d0],#workout-map .no-map[data-v-4582e1d0]{height:400px;width:600px}#workout-map .no-map[data-v-4582e1d0]{line-height:400px}#workout-map .map-control[data-v-4582e1d0]{background:#fff;padding:5px 10px;border:2px solid #bfc0ab;border-radius:3px;color:#000}#workout-map[data-v-4582e1d0] .fullscreen{display:flex;align-items:center;z-index:1000}#workout-map[data-v-4582e1d0] .fullscreen .fullscreen-map{height:100%;width:100%}@media screen and (max-width:700px){#workout-map[data-v-4582e1d0]{padding:0}#workout-map .leaflet-container[data-v-4582e1d0]{width:100%;height:300px}#workout-map .no-map[data-v-4582e1d0]{display:none}}.workout-detail[data-v-118e2382]{display:flex}.workout-detail[data-v-118e2382] .card{width:100%}.workout-detail[data-v-118e2382] .card .card-title{padding:10px 15px}.workout-detail[data-v-118e2382] .card .card-content{display:flex;flex-direction:row}@media screen and (max-width:1000px){.workout-detail[data-v-118e2382] .card .card-content{flex-direction:column}}#workout-chart[data-v-68415552] .card .card-title{text-transform:capitalize}#workout-chart[data-v-68415552] .card .card-content{display:flex;flex-direction:column}#workout-chart[data-v-68415552] .card .card-content .chart-radio{width:100%;display:flex;justify-content:center}#workout-chart[data-v-68415552] .card .card-content .chart-radio label{padding:0 10px}#workout-chart[data-v-68415552] .card .card-content .chart-info{display:flex;justify-content:space-between;font-size:.85em;font-style:italic}#workout-chart[data-v-68415552] .card .card-content #chart-legend{display:flex;justify-content:center}#workout-chart[data-v-68415552] .card .card-content #chart-legend ul{display:flex;margin-bottom:0;padding:0}#workout-chart[data-v-68415552] .card .card-content #chart-legend ul li{cursor:pointer;display:flex;font-size:.85em;padding:0 5px}#workout-chart[data-v-68415552] .card .card-content #chart-legend ul li span{border-radius:5%;border-style:solid;border-width:1.5px;height:10px;margin-top:4px;margin-left:2px;width:20px}@media screen and (max-width:700px){#workout-chart[data-v-68415552] .card .card-content{padding:10px 0}#workout-chart[data-v-68415552] .card .card-content .chart-info{display:flex;flex-direction:column-reverse}#workout-chart[data-v-68415552] .card .card-content .chart-info .elevation-start{padding:10px 15px 0}#workout-chart[data-v-68415552] .card .card-content .chart-info .no-data-cleaning{padding:0 20px}}#workout-note[data-v-f6b59442] .card-content{font-style:italic;white-space:pre-wrap}#workout-segments[data-v-6b8a27cd] .card .card-title{text-transform:capitalize}#workout-segments[data-v-6b8a27cd] .card .card-content{padding-bottom:0;padding-top:0}#workout-segments[data-v-6b8a27cd] .card .card-content a{font-weight:700}#workout-segments[data-v-6b8a27cd] .card .card-content ul{padding:0 10px;list-style:square}#workout[data-v-53c4e53a]{display:flex}#workout .container[data-v-53c4e53a]{width:100%;padding:0}#workout .container .workout-container[data-v-53c4e53a]{width:100%}#workout .container .workout-loading[data-v-53c4e53a]{height:calc(100vh - 130px);width:100%}#workout .container .workout-loading .loading[data-v-53c4e53a]{display:flex;align-items:center;height:100%}#workout-edition[data-v-402915dc] .card .card-title{text-align:center;text-transform:uppercase}@media screen and (max-width:1000px){#workout-edition[data-v-402915dc] .card .card-content{padding:10px 0}}#workout-edition[data-v-402915dc] .card .card-content #workout-form .form-items{display:flex;flex-direction:column}#workout-edition[data-v-402915dc] .card .card-content #workout-form .form-items input{height:20px}#workout-edition[data-v-402915dc] .card .card-content #workout-form .form-items .workout-date-duration{display:flex;flex-direction:row;justify-content:space-between}@media screen and (max-width:1000px){#workout-edition[data-v-402915dc] .card .card-content #workout-form .form-items .workout-date-duration{flex-direction:column}}#workout-edition[data-v-402915dc] .card .card-content #workout-form .form-items .form-item{display:flex;flex-direction:column;padding:10px}#workout-edition[data-v-402915dc] .card .card-content #workout-form .form-items .form-item .workout-date-time{display:flex}#workout-edition[data-v-402915dc] .card .card-content #workout-form .form-items .form-item .workout-date-time #workout-date{margin-right:10px}#workout-edition[data-v-402915dc] .card .card-content #workout-form .form-items .form-item .workout-duration{width:25px}#workout-edition[data-v-402915dc] .card .card-content #workout-form .form-items .form-item-radio{display:flex;justify-content:space-around}#workout-edition[data-v-402915dc] .card .card-content #workout-form .form-items .form-item-radio label{font-weight:400}@media screen and (max-width:1000px){#workout-edition[data-v-402915dc] .card .card-content #workout-form .form-items .form-item-radio label{font-size:.9em}}#workout-edition[data-v-402915dc] .card .card-content #workout-form .form-items .form-item-radio input{margin-top:-2px;vertical-align:middle}#workout-edition[data-v-402915dc] .card .card-content #workout-form .form-buttons{display:flex;justify-content:flex-end}#workout-edition[data-v-402915dc] .card .card-content #workout-form .form-buttons button{margin:5px}#workout-edition[data-v-402915dc] .card .card-content #workout-form .files-help{display:flex;justify-content:space-around;margin-top:10px}#workout-edition[data-v-402915dc] .card .card-content #workout-form .files-help div{display:flex}@media screen and (max-width:1000px){#workout-edition[data-v-402915dc] .card .card-content #workout-form .files-help div{flex-direction:column}}#workout-edition[data-v-402915dc] .card .card-content #workout-form .files-help div ul{margin:0;padding:0 20px}#workout-edition[data-v-402915dc] .card .card-content #workout-form .workout-data{display:flex;flex-direction:row;justify-content:space-between}#workout-edition[data-v-402915dc] .card .card-content #workout-form .workout-data .form-item{width:30%}@media screen and (max-width:1000px){#workout-edition[data-v-402915dc] .card .card-content #workout-form .workout-data{flex-direction:column}#workout-edition[data-v-402915dc] .card .card-content #workout-form .workout-data .form-item{width:auto}}@media screen and (max-width:700px){#workout-edition[data-v-402915dc]{margin-bottom:0}#workout-edition.center-form[data-v-402915dc]{margin:50px auto}#workout-edition.with-margin[data-v-402915dc]{margin-top:0}}#workout-edition .errored[data-v-402915dc]{outline:2px solid var(--input-error-color)} \ No newline at end of file diff --git a/fittrackee/dist/static/fonts/pt-sans-v9-latin-700.51b1613b.woff2 b/fittrackee/dist/static/fonts/pt-sans-v9-latin-700-080d87ea.woff2 similarity index 100% rename from fittrackee/dist/static/fonts/pt-sans-v9-latin-700.51b1613b.woff2 rename to fittrackee/dist/static/fonts/pt-sans-v9-latin-700-080d87ea.woff2 diff --git a/fittrackee/dist/static/img/pt-sans-v9-latin-700.b8a7047e.svg b/fittrackee/dist/static/fonts/pt-sans-v9-latin-700-870a604e.svg similarity index 100% rename from fittrackee/dist/static/img/pt-sans-v9-latin-700.b8a7047e.svg rename to fittrackee/dist/static/fonts/pt-sans-v9-latin-700-870a604e.svg diff --git a/fittrackee/dist/static/fonts/pt-sans-v9-latin-700.01a58da9.eot b/fittrackee/dist/static/fonts/pt-sans-v9-latin-700-9ea1a9d8.eot similarity index 100% rename from fittrackee/dist/static/fonts/pt-sans-v9-latin-700.01a58da9.eot rename to fittrackee/dist/static/fonts/pt-sans-v9-latin-700-9ea1a9d8.eot diff --git a/fittrackee/dist/static/fonts/pt-sans-v9-latin-700.5ff2a2d7.woff b/fittrackee/dist/static/fonts/pt-sans-v9-latin-700-a61d5b9a.woff similarity index 100% rename from fittrackee/dist/static/fonts/pt-sans-v9-latin-700.5ff2a2d7.woff rename to fittrackee/dist/static/fonts/pt-sans-v9-latin-700-a61d5b9a.woff diff --git a/fittrackee/dist/static/fonts/pt-sans-v9-latin-700.6514157e.ttf b/fittrackee/dist/static/fonts/pt-sans-v9-latin-700-ae254009.ttf similarity index 100% rename from fittrackee/dist/static/fonts/pt-sans-v9-latin-700.6514157e.ttf rename to fittrackee/dist/static/fonts/pt-sans-v9-latin-700-ae254009.ttf diff --git a/fittrackee/dist/static/img/pt-sans-v9-latin-italic.0b285c83.svg b/fittrackee/dist/static/fonts/pt-sans-v9-latin-italic-0b2a1680.svg similarity index 100% rename from fittrackee/dist/static/img/pt-sans-v9-latin-italic.0b285c83.svg rename to fittrackee/dist/static/fonts/pt-sans-v9-latin-italic-0b2a1680.svg diff --git a/fittrackee/dist/static/fonts/pt-sans-v9-latin-italic.6206408d.ttf b/fittrackee/dist/static/fonts/pt-sans-v9-latin-italic-1d78cd1f.ttf similarity index 100% rename from fittrackee/dist/static/fonts/pt-sans-v9-latin-italic.6206408d.ttf rename to fittrackee/dist/static/fonts/pt-sans-v9-latin-italic-1d78cd1f.ttf diff --git a/fittrackee/dist/static/fonts/pt-sans-v9-latin-italic.fe36f54f.woff b/fittrackee/dist/static/fonts/pt-sans-v9-latin-italic-6ba71e58.woff similarity index 100% rename from fittrackee/dist/static/fonts/pt-sans-v9-latin-italic.fe36f54f.woff rename to fittrackee/dist/static/fonts/pt-sans-v9-latin-italic-6ba71e58.woff diff --git a/fittrackee/dist/static/fonts/pt-sans-v9-latin-italic.10011d51.woff2 b/fittrackee/dist/static/fonts/pt-sans-v9-latin-italic-b0c71d14.woff2 similarity index 100% rename from fittrackee/dist/static/fonts/pt-sans-v9-latin-italic.10011d51.woff2 rename to fittrackee/dist/static/fonts/pt-sans-v9-latin-italic-b0c71d14.woff2 diff --git a/fittrackee/dist/static/fonts/pt-sans-v9-latin-italic.8293436e.eot b/fittrackee/dist/static/fonts/pt-sans-v9-latin-italic-d64e4cc3.eot similarity index 100% rename from fittrackee/dist/static/fonts/pt-sans-v9-latin-italic.8293436e.eot rename to fittrackee/dist/static/fonts/pt-sans-v9-latin-italic-d64e4cc3.eot diff --git a/fittrackee/dist/static/fonts/pt-sans-v9-latin-regular.e7867499.woff2 b/fittrackee/dist/static/fonts/pt-sans-v9-latin-regular-143c5c01.woff2 similarity index 100% rename from fittrackee/dist/static/fonts/pt-sans-v9-latin-regular.e7867499.woff2 rename to fittrackee/dist/static/fonts/pt-sans-v9-latin-regular-143c5c01.woff2 diff --git a/fittrackee/dist/static/fonts/pt-sans-v9-latin-regular.c5a514ae.eot b/fittrackee/dist/static/fonts/pt-sans-v9-latin-regular-60032a5a.eot similarity index 100% rename from fittrackee/dist/static/fonts/pt-sans-v9-latin-regular.c5a514ae.eot rename to fittrackee/dist/static/fonts/pt-sans-v9-latin-regular-60032a5a.eot diff --git a/fittrackee/dist/static/img/pt-sans-v9-latin-regular.59a385b4.svg b/fittrackee/dist/static/fonts/pt-sans-v9-latin-regular-96f1a1a9.svg similarity index 100% rename from fittrackee/dist/static/img/pt-sans-v9-latin-regular.59a385b4.svg rename to fittrackee/dist/static/fonts/pt-sans-v9-latin-regular-96f1a1a9.svg diff --git a/fittrackee/dist/static/fonts/pt-sans-v9-latin-regular.b5b74f16.woff b/fittrackee/dist/static/fonts/pt-sans-v9-latin-regular-ecf0da3b.woff similarity index 100% rename from fittrackee/dist/static/fonts/pt-sans-v9-latin-regular.b5b74f16.woff rename to fittrackee/dist/static/fonts/pt-sans-v9-latin-regular-ecf0da3b.woff diff --git a/fittrackee/dist/static/fonts/pt-sans-v9-latin-regular.c43bc0a2.ttf b/fittrackee/dist/static/fonts/pt-sans-v9-latin-regular-ed3b51f6.ttf similarity index 100% rename from fittrackee/dist/static/fonts/pt-sans-v9-latin-regular.c43bc0a2.ttf rename to fittrackee/dist/static/fonts/pt-sans-v9-latin-regular-ed3b51f6.ttf diff --git a/fittrackee/dist/static/img/map.5b26d82b.svg b/fittrackee/dist/static/img/map-5e472f63.svg similarity index 100% rename from fittrackee/dist/static/img/map.5b26d82b.svg rename to fittrackee/dist/static/img/map-5e472f63.svg diff --git a/fittrackee/dist/static/index-51012998.js b/fittrackee/dist/static/index-51012998.js new file mode 100644 index 00000000..4171e7d9 --- /dev/null +++ b/fittrackee/dist/static/index-51012998.js @@ -0,0 +1,448 @@ +import{C as Nd,B as iE,L as uE,a as WA,b as GA,P as zA,p as BA,c as HA,d as VA,i as jA,e as KA,f as YA,g as qA}from"./charts-ed4ceed1.js";import{c as $e,g as XA,a as yd}from"./maps-c37c70d1.js";(function(){const t=document.createElement("link").relList;if(t&&t.supports&&t.supports("modulepreload"))return;for(const a of document.querySelectorAll('link[rel="modulepreload"]'))r(a);new MutationObserver(a=>{for(const s of a)if(s.type==="childList")for(const o of s.addedNodes)o.tagName==="LINK"&&o.rel==="modulepreload"&&r(o)}).observe(document,{childList:!0,subtree:!0});function n(a){const s={};return a.integrity&&(s.integrity=a.integrity),a.referrerPolicy&&(s.referrerPolicy=a.referrerPolicy),a.crossOrigin==="use-credentials"?s.credentials="include":a.crossOrigin==="anonymous"?s.credentials="omit":s.credentials="same-origin",s}function r(a){if(a.ep)return;a.ep=!0;const s=n(a);fetch(a.href,s)}})();function Cd(e,t){const n=Object.create(null),r=e.split(",");for(let a=0;a!!n[a.toLowerCase()]:a=>!!n[a]}const Tt={},Fa=[],Nn=()=>{},ZA=()=>!1,QA=/^on[^a-z]/,Cu=e=>QA.test(e),Dd=e=>e.startsWith("onUpdate:"),Bt=Object.assign,Pd=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},JA=Object.prototype.hasOwnProperty,rt=(e,t)=>JA.call(e,t),ye=Array.isArray,Wa=e=>Ro(e)==="[object Map]",ps=e=>Ro(e)==="[object Set]",d0=e=>Ro(e)==="[object Date]",ze=e=>typeof e=="function",Pt=e=>typeof e=="string",Va=e=>typeof e=="symbol",mt=e=>e!==null&&typeof e=="object",cE=e=>(mt(e)||ze(e))&&ze(e.then)&&ze(e.catch),lE=Object.prototype.toString,Ro=e=>lE.call(e),eS=e=>Ro(e).slice(8,-1),dE=e=>Ro(e)==="[object Object]",wd=e=>Pt(e)&&e!=="NaN"&&e[0]!=="-"&&""+parseInt(e,10)===e,Oi=Cd(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),Du=e=>{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))},tS=/-(\w)/g,Kn=Du(e=>e.replace(tS,(t,n)=>n?n.toUpperCase():"")),nS=/\B([A-Z])/g,pa=Du(e=>e.replace(nS,"-$1").toLowerCase()),Ot=Du(e=>e.charAt(0).toUpperCase()+e.slice(1)),hc=Du(e=>e?`on${Ot(e)}`:""),ua=(e,t)=>!Object.is(e,t),Ii=(e,t)=>{for(let n=0;n{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,value:n})},Fi=e=>{const t=parseFloat(e);return isNaN(t)?e:t};let f0;const nl=()=>f0||(f0=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{});function Wr(e){if(ye(e)){const t={};for(let n=0;n{if(n){const r=n.split(aS);r.length>1&&(t[r[0].trim()]=r[1].trim())}}),t}function Se(e){let t="";if(Pt(e))t=e;else if(ye(e))for(let n=0;nca(n,t))}const h=e=>Pt(e)?e:e==null?"":ye(e)||mt(e)&&(e.toString===lE||!ze(e.toString))?JSON.stringify(e,pE,2):String(e),pE=(e,t)=>t&&t.__v_isRef?pE(e,t.value):Wa(t)?{[`Map(${t.size})`]:[...t.entries()].reduce((n,[r,a])=>(n[`${r} =>`]=a,n),{})}:ps(t)?{[`Set(${t.size})`]:[...t.values()]}:mt(t)&&!ye(t)&&!dE(t)?String(t):t;let vn;class mE{constructor(t=!1){this.detached=t,this._active=!0,this.effects=[],this.cleanups=[],this.parent=vn,!t&&vn&&(this.index=(vn.scopes||(vn.scopes=[])).push(this)-1)}get active(){return this._active}run(t){if(this._active){const n=vn;try{return vn=this,t()}finally{vn=n}}}on(){vn=this}off(){vn=this.parent}stop(t){if(this._active){let n,r;for(n=0,r=this.effects.length;n{const t=new Set(e);return t.w=0,t.n=0,t},EE=e=>(e.w&kr)>0,hE=e=>(e.n&kr)>0,fS=({deps:e})=>{if(e.length)for(let t=0;t{const{deps:t}=e;if(t.length){let n=0;for(let r=0;r{(l==="length"||!Va(l)&&l>=u)&&i.push(c)})}else switch(n!==void 0&&i.push(o.get(n)),t){case"add":ye(e)?wd(n)&&i.push(o.get("length")):(i.push(o.get(oa)),Wa(e)&&i.push(o.get(al)));break;case"delete":ye(e)||(i.push(o.get(oa)),Wa(e)&&i.push(o.get(al)));break;case"set":Wa(e)&&i.push(o.get(oa));break}if(i.length===1)i[0]&&sl(i[0]);else{const u=[];for(const c of i)c&&u.push(...c);sl($d(u))}}function sl(e,t){const n=ye(e)?e:[...e];for(const r of n)r.computed&&m0(r);for(const r of n)r.computed||m0(r)}function m0(e,t){(e!==bn||e.allowRecurse)&&(e.scheduler?e.scheduler():e.run())}function mS(e,t){var n;return(n=Wi.get(e))==null?void 0:n.get(t)}const _S=Cd("__proto__,__v_isRef,__isVue"),AE=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>e!=="arguments"&&e!=="caller").map(e=>Symbol[e]).filter(Va)),_0=ES();function ES(){const e={};return["includes","indexOf","lastIndexOf"].forEach(t=>{e[t]=function(...n){const r=tt(this);for(let s=0,o=this.length;s{e[t]=function(...n){ms();const r=tt(this)[t].apply(this,n);return _s(),r}}),e}function hS(e){const t=tt(this);return cn(t,"has",e),t.hasOwnProperty(e)}class SE{constructor(t=!1,n=!1){this._isReadonly=t,this._shallow=n}get(t,n,r){const a=this._isReadonly,s=this._shallow;if(n==="__v_isReactive")return!a;if(n==="__v_isReadonly")return a;if(n==="__v_isShallow")return s;if(n==="__v_raw"&&r===(a?s?DS:bE:s?vE:IE).get(t))return t;const o=ye(t);if(!a){if(o&&rt(_0,n))return Reflect.get(_0,n,r);if(n==="hasOwnProperty")return hS}const i=Reflect.get(t,n,r);return(Va(n)?AE.has(n):_S(n))||(a||cn(t,"get",n),s)?i:Ft(i)?o&&wd(n)?i:i.value:mt(i)?a?NE(i):Ht(i):i}}class OE extends SE{constructor(t=!1){super(!1,t)}set(t,n,r,a){let s=t[n];if(ja(s)&&Ft(s)&&!Ft(r))return!1;if(!this._shallow&&(!Gi(r)&&!ja(r)&&(s=tt(s),r=tt(r)),!ye(t)&&Ft(s)&&!Ft(r)))return s.value=r,!0;const o=ye(t)&&wd(n)?Number(n)e,Pu=e=>Reflect.getPrototypeOf(e);function Vo(e,t,n=!1,r=!1){e=e.__v_raw;const a=tt(e),s=tt(t);n||(ua(t,s)&&cn(a,"get",t),cn(a,"get",s));const{has:o}=Pu(a),i=r?Ud:n?Fd:eo;if(o.call(a,t))return i(e.get(t));if(o.call(a,s))return i(e.get(s));e!==a&&e.get(t)}function jo(e,t=!1){const n=this.__v_raw,r=tt(n),a=tt(e);return t||(ua(e,a)&&cn(r,"has",e),cn(r,"has",a)),e===a?n.has(e):n.has(e)||n.has(a)}function Ko(e,t=!1){return e=e.__v_raw,!t&&cn(tt(e),"iterate",oa),Reflect.get(e,"size",e)}function E0(e){e=tt(e);const t=tt(this);return Pu(t).has.call(t,e)||(t.add(e),ur(t,"add",e,e)),this}function h0(e,t){t=tt(t);const n=tt(this),{has:r,get:a}=Pu(n);let s=r.call(n,e);s||(e=tt(e),s=r.call(n,e));const o=a.call(n,e);return n.set(e,t),s?ua(t,o)&&ur(n,"set",e,t):ur(n,"add",e,t),this}function T0(e){const t=tt(this),{has:n,get:r}=Pu(t);let a=n.call(t,e);a||(e=tt(e),a=n.call(t,e)),r&&r.call(t,e);const s=t.delete(e);return a&&ur(t,"delete",e,void 0),s}function g0(){const e=tt(this),t=e.size!==0,n=e.clear();return t&&ur(e,"clear",void 0,void 0),n}function Yo(e,t){return function(r,a){const s=this,o=s.__v_raw,i=tt(o),u=t?Ud:e?Fd:eo;return!e&&cn(i,"iterate",oa),o.forEach((c,l)=>r.call(a,u(c),u(l),s))}}function qo(e,t,n){return function(...r){const a=this.__v_raw,s=tt(a),o=Wa(s),i=e==="entries"||e===Symbol.iterator&&o,u=e==="keys"&&o,c=a[e](...r),l=n?Ud:t?Fd:eo;return!t&&cn(s,"iterate",u?al:oa),{next(){const{value:f,done:d}=c.next();return d?{value:f,done:d}:{value:i?[l(f[0]),l(f[1])]:l(f),done:d}},[Symbol.iterator](){return this}}}}function Tr(e){return function(...t){return e==="delete"?!1:this}}function OS(){const e={get(s){return Vo(this,s)},get size(){return Ko(this)},has:jo,add:E0,set:h0,delete:T0,clear:g0,forEach:Yo(!1,!1)},t={get(s){return Vo(this,s,!1,!0)},get size(){return Ko(this)},has:jo,add:E0,set:h0,delete:T0,clear:g0,forEach:Yo(!1,!0)},n={get(s){return Vo(this,s,!0)},get size(){return Ko(this,!0)},has(s){return jo.call(this,s,!0)},add:Tr("add"),set:Tr("set"),delete:Tr("delete"),clear:Tr("clear"),forEach:Yo(!0,!1)},r={get(s){return Vo(this,s,!0,!0)},get size(){return Ko(this,!0)},has(s){return jo.call(this,s,!0)},add:Tr("add"),set:Tr("set"),delete:Tr("delete"),clear:Tr("clear"),forEach:Yo(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach(s=>{e[s]=qo(s,!1,!1),n[s]=qo(s,!0,!1),t[s]=qo(s,!1,!0),r[s]=qo(s,!0,!0)}),[e,n,t,r]}const[IS,vS,bS,RS]=OS();function Md(e,t){const n=t?e?RS:bS:e?vS:IS;return(r,a,s)=>a==="__v_isReactive"?!e:a==="__v_isReadonly"?e:a==="__v_raw"?r:Reflect.get(rt(n,a)&&a in r?n:r,a,s)}const NS={get:Md(!1,!1)},yS={get:Md(!1,!0)},CS={get:Md(!0,!1)},IE=new WeakMap,vE=new WeakMap,bE=new WeakMap,DS=new WeakMap;function PS(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function wS(e){return e.__v_skip||!Object.isExtensible(e)?0:PS(eS(e))}function Ht(e){return ja(e)?e:xd(e,!1,gS,NS,IE)}function RE(e){return xd(e,!1,SS,yS,vE)}function NE(e){return xd(e,!0,AS,CS,bE)}function xd(e,t,n,r,a){if(!mt(e)||e.__v_raw&&!(t&&e.__v_isReactive))return e;const s=a.get(e);if(s)return s;const o=wS(e);if(o===0)return e;const i=new Proxy(e,o===2?r:n);return a.set(e,i),i}function Ga(e){return ja(e)?Ga(e.__v_raw):!!(e&&e.__v_isReactive)}function ja(e){return!!(e&&e.__v_isReadonly)}function Gi(e){return!!(e&&e.__v_isShallow)}function wu(e){return Ga(e)||ja(e)}function tt(e){const t=e&&e.__v_raw;return t?tt(t):e}function Yn(e){return xi(e,"__v_skip",!0),e}const eo=e=>mt(e)?Ht(e):e,Fd=e=>mt(e)?NE(e):e;function yE(e){Lr&&bn&&(e=tt(e),gE(e.dep||(e.dep=$d())))}function CE(e,t){e=tt(e);const n=e.dep;n&&sl(n)}function Ft(e){return!!(e&&e.__v_isRef===!0)}function le(e){return DE(e,!1)}function Lu(e){return DE(e,!0)}function DE(e,t){return Ft(e)?e:new LS(e,t)}class LS{constructor(t,n){this.__v_isShallow=n,this.dep=void 0,this.__v_isRef=!0,this._rawValue=n?t:tt(t),this._value=n?t:eo(t)}get value(){return yE(this),this._value}set value(t){const n=this.__v_isShallow||Gi(t)||ja(t);t=n?t:tt(t),ua(t,this._rawValue)&&(this._rawValue=t,this._value=n?t:eo(t),CE(this))}}function E(e){return Ft(e)?e.value:e}const $S={get:(e,t,n)=>E(Reflect.get(e,t,n)),set:(e,t,n,r)=>{const a=e[t];return Ft(a)&&!Ft(n)?(a.value=n,!0):Reflect.set(e,t,n,r)}};function PE(e){return Ga(e)?e:new Proxy(e,$S)}function ge(e){const t=ye(e)?new Array(e.length):{};for(const n in e)t[n]=US(e,n);return t}class kS{constructor(t,n,r){this._object=t,this._key=n,this._defaultValue=r,this.__v_isRef=!0}get value(){const t=this._object[this._key];return t===void 0?this._defaultValue:t}set value(t){this._object[this._key]=t}get dep(){return mS(tt(this._object),this._key)}}function US(e,t,n){const r=e[t];return Ft(r)?r:new kS(e,t,n)}class MS{constructor(t,n,r,a){this._setter=n,this.dep=void 0,this.__v_isRef=!0,this.__v_isReadonly=!1,this._dirty=!0,this.effect=new kd(t,()=>{this._dirty||(this._dirty=!0,CE(this))}),this.effect.computed=this,this.effect.active=this._cacheable=!a,this.__v_isReadonly=r}get value(){const t=tt(this);return yE(t),(t._dirty||!t._cacheable)&&(t._dirty=!1,t._value=t.effect.run()),t._value}set value(t){this._setter(t)}}function xS(e,t,n=!1){let r,a;const s=ze(e);return s?(r=e,a=Nn):(r=e.get,a=e.set),new MS(r,a,s||!a,n)}function $r(e,t,n,r){let a;try{a=r?e(...r):e()}catch(s){$u(s,t,n)}return a}function yn(e,t,n,r){if(ze(e)){const s=$r(e,t,n,r);return s&&cE(s)&&s.catch(o=>{$u(o,t,n)}),s}const a=[];for(let s=0;s>>1,a=Kt[r],s=no(a);sHn&&Kt.splice(t,1)}function zS(e){ye(e)?za.push(...e):(!rr||!rr.includes(e,e.allowRecurse?Zr+1:Zr))&&za.push(e),LE()}function A0(e,t=to?Hn+1:0){for(;tno(n)-no(r)),Zr=0;Zre.id==null?1/0:e.id,BS=(e,t)=>{const n=no(e)-no(t);if(n===0){if(e.pre&&!t.pre)return-1;if(t.pre&&!e.pre)return 1}return n};function kE(e){ol=!1,to=!0,Kt.sort(BS);const t=Nn;try{for(Hn=0;HnPt(m)?m.trim():m)),f&&(a=n.map(Fi))}let i,u=r[i=hc(t)]||r[i=hc(Kn(t))];!u&&s&&(u=r[i=hc(pa(t))]),u&&yn(u,e,6,a);const c=r[i+"Once"];if(c){if(!e.emitted)e.emitted={};else if(e.emitted[i])return;e.emitted[i]=!0,yn(c,e,6,a)}}function UE(e,t,n=!1){const r=t.emitsCache,a=r.get(e);if(a!==void 0)return a;const s=e.emits;let o={},i=!1;if(!ze(e)){const u=c=>{const l=UE(c,t,!0);l&&(i=!0,Bt(o,l))};!n&&t.mixins.length&&t.mixins.forEach(u),e.extends&&u(e.extends),e.mixins&&e.mixins.forEach(u)}return!s&&!i?(mt(e)&&r.set(e,null),null):(ye(s)?s.forEach(u=>o[u]=null):Bt(o,s),mt(e)&&r.set(e,o),o)}function ku(e,t){return!e||!Cu(t)?!1:(t=t.slice(2).replace(/Once$/,""),rt(e,t[0].toLowerCase()+t.slice(1))||rt(e,pa(t))||rt(e,t))}let Gt=null,Uu=null;function zi(e){const t=Gt;return Gt=e,Uu=e&&e.type.__scopeId||null,t}function dt(e){Uu=e}function ft(){Uu=null}function pe(e,t=Gt,n){if(!t||e._n)return e;const r=(...a)=>{r._d&&w0(-1);const s=zi(t);let o;try{o=e(...a)}finally{zi(s),r._d&&w0(1)}return o};return r._n=!0,r._c=!0,r._d=!0,r}function Tc(e){const{type:t,vnode:n,proxy:r,withProxy:a,props:s,propsOptions:[o],slots:i,attrs:u,emit:c,render:l,renderCache:f,data:d,setupState:m,ctx:_,inheritAttrs:A}=e;let R,I;const b=zi(e);try{if(n.shapeFlag&4){const T=a||r;R=Bn(l.call(T,T,f,s,m,d,_)),I=u}else{const T=t;R=Bn(T.length>1?T(s,{attrs:u,slots:i,emit:c}):T(s,null)),I=t.props?u:VS(u)}}catch(T){Bs.length=0,$u(T,e,1),R=U(Ur)}let v=R;if(I&&A!==!1){const T=Object.keys(I),{shapeFlag:L}=v;T.length&&L&7&&(o&&T.some(Dd)&&(I=jS(I,o)),v=Ya(v,I))}return n.dirs&&(v=Ya(v),v.dirs=v.dirs?v.dirs.concat(n.dirs):n.dirs),n.transition&&(v.transition=n.transition),R=v,zi(b),R}const VS=e=>{let t;for(const n in e)(n==="class"||n==="style"||Cu(n))&&((t||(t={}))[n]=e[n]);return t},jS=(e,t)=>{const n={};for(const r in e)(!Dd(r)||!(r.slice(9)in t))&&(n[r]=e[r]);return n};function KS(e,t,n){const{props:r,children:a,component:s}=e,{props:o,children:i,patchFlag:u}=t,c=s.emitsOptions;if(t.dirs||t.transition)return!0;if(n&&u>=0){if(u&1024)return!0;if(u&16)return r?S0(r,o,c):!!o;if(u&8){const l=t.dynamicProps;for(let f=0;fe.__isSuspense;function JS(e,t){t&&t.pendingBranch?ye(e)?t.effects.push(...e):t.effects.push(e):zS(e)}const Xo={};function He(e,t,n){return FE(e,t,n)}function FE(e,t,{immediate:n,deep:r,flush:a,onTrack:s,onTrigger:o}=Tt){var i;const u=dS()===((i=xt)==null?void 0:i.scope)?xt:null;let c,l=!1,f=!1;if(Ft(e)?(c=()=>e.value,l=Gi(e)):Ga(e)?(c=()=>e,r=!0):ye(e)?(f=!0,l=e.some(T=>Ga(T)||Gi(T)),c=()=>e.map(T=>{if(Ft(T))return T.value;if(Ga(T))return na(T);if(ze(T))return $r(T,u,2)})):ze(e)?t?c=()=>$r(e,u,2):c=()=>{if(!(u&&u.isUnmounted))return d&&d(),yn(e,u,3,[m])}:c=Nn,t&&r){const T=c;c=()=>na(T())}let d,m=T=>{d=b.onStop=()=>{$r(T,u,4)}},_;if(so)if(m=Nn,t?n&&yn(t,u,3,[c(),f?[]:void 0,m]):c(),a==="sync"){const T=HO();_=T.__watcherHandles||(T.__watcherHandles=[])}else return Nn;let A=f?new Array(e.length).fill(Xo):Xo;const R=()=>{if(b.active)if(t){const T=b.run();(r||l||(f?T.some((L,w)=>ua(L,A[w])):ua(T,A)))&&(d&&d(),yn(t,u,3,[T,A===Xo?void 0:f&&A[0]===Xo?[]:A,m]),A=T)}else b.run()};R.allowRecurse=!!t;let I;a==="sync"?I=R:a==="post"?I=()=>rn(R,u&&u.suspense):(R.pre=!0,u&&(R.id=u.uid),I=()=>Gd(R));const b=new kd(c,I);t?n?R():A=b.run():a==="post"?rn(b.run.bind(b),u&&u.suspense):b.run();const v=()=>{b.stop(),u&&u.scope&&Pd(u.scope.effects,b)};return _&&_.push(v),v}function eO(e,t,n){const r=this.proxy,a=Pt(e)?e.includes(".")?WE(r,e):()=>r[e]:e.bind(r,r);let s;ze(t)?s=t:(s=t.handler,n=t);const o=xt;qa(this);const i=FE(a,s.bind(r),n);return o?qa(o):ia(),i}function WE(e,t){const n=t.split(".");return()=>{let r=e;for(let a=0;a{na(n,t)});else if(dE(e))for(const n in e)na(e[n],t);return e}function Qe(e,t){const n=Gt;if(n===null)return e;const r=Fu(n)||n.proxy,a=e.dirs||(e.dirs=[]);for(let s=0;sBt({name:e.name},t,{setup:e}))():e}const Ws=e=>!!e.type.__asyncLoader,GE=e=>e.type.__isKeepAlive;function tO(e,t){zE(e,"a",t)}function nO(e,t){zE(e,"da",t)}function zE(e,t,n=xt){const r=e.__wdc||(e.__wdc=()=>{let a=n;for(;a;){if(a.isDeactivated)return;a=a.parent}return e()});if(Mu(t,r,n),n){let a=n.parent;for(;a&&a.parent;)GE(a.parent.vnode)&&rO(r,t,n,a),a=a.parent}}function rO(e,t,n,r){const a=Mu(t,e,r,!0);Nt(()=>{Pd(r[t],a)},n)}function Mu(e,t,n=xt,r=!1){if(n){const a=n[e]||(n[e]=[]),s=t.__weh||(t.__weh=(...o)=>{if(n.isUnmounted)return;ms(),qa(n);const i=yn(t,n,e,o);return ia(),_s(),i});return r?a.unshift(s):a.push(s),s}}const fr=e=>(t,n=xt)=>(!so||e==="sp")&&Mu(e,(...r)=>t(...r),n),Rt=fr("bm"),It=fr("m"),aO=fr("bu"),sO=fr("u"),No=fr("bum"),Nt=fr("um"),oO=fr("sp"),iO=fr("rtg"),uO=fr("rtc");function cO(e,t=xt){Mu("ec",e,t)}function Be(e,t,n,r){let a;const s=n&&n[r];if(ye(e)||Pt(e)){a=new Array(e.length);for(let o=0,i=e.length;ot(o,i,void 0,s&&s[i]));else{const o=Object.keys(e);a=new Array(o.length);for(let i=0,u=o.length;iVi(t)?!(t.type===Ur||t.type===be&&!BE(t.children)):!0)?e:null}const il=e=>e?th(e)?Fu(e)||e.proxy:il(e.parent):null,Gs=Bt(Object.create(null),{$:e=>e,$el:e=>e.vnode.el,$data:e=>e.data,$props:e=>e.props,$attrs:e=>e.attrs,$slots:e=>e.slots,$refs:e=>e.refs,$parent:e=>il(e.parent),$root:e=>il(e.root),$emit:e=>e.emit,$options:e=>zd(e),$forceUpdate:e=>e.f||(e.f=()=>Gd(e.update)),$nextTick:e=>e.n||(e.n=On.bind(e.proxy)),$watch:e=>eO.bind(e)}),gc=(e,t)=>e!==Tt&&!e.__isScriptSetup&&rt(e,t),lO={get({_:e},t){const{ctx:n,setupState:r,data:a,props:s,accessCache:o,type:i,appContext:u}=e;let c;if(t[0]!=="$"){const m=o[t];if(m!==void 0)switch(m){case 1:return r[t];case 2:return a[t];case 4:return n[t];case 3:return s[t]}else{if(gc(r,t))return o[t]=1,r[t];if(a!==Tt&&rt(a,t))return o[t]=2,a[t];if((c=e.propsOptions[0])&&rt(c,t))return o[t]=3,s[t];if(n!==Tt&&rt(n,t))return o[t]=4,n[t];ul&&(o[t]=0)}}const l=Gs[t];let f,d;if(l)return t==="$attrs"&&cn(e,"get",t),l(e);if((f=i.__cssModules)&&(f=f[t]))return f;if(n!==Tt&&rt(n,t))return o[t]=4,n[t];if(d=u.config.globalProperties,rt(d,t))return d[t]},set({_:e},t,n){const{data:r,setupState:a,ctx:s}=e;return gc(a,t)?(a[t]=n,!0):r!==Tt&&rt(r,t)?(r[t]=n,!0):rt(e.props,t)||t[0]==="$"&&t.slice(1)in e?!1:(s[t]=n,!0)},has({_:{data:e,setupState:t,accessCache:n,ctx:r,appContext:a,propsOptions:s}},o){let i;return!!n[o]||e!==Tt&&rt(e,o)||gc(t,o)||(i=s[0])&&rt(i,o)||rt(r,o)||rt(Gs,o)||rt(a.config.globalProperties,o)},defineProperty(e,t,n){return n.get!=null?e._.accessCache[t]=0:rt(n,"value")&&this.set(e,t,n.value,null),Reflect.defineProperty(e,t,n)}};function I0(e){return ye(e)?e.reduce((t,n)=>(t[n]=null,t),{}):e}let ul=!0;function dO(e){const t=zd(e),n=e.proxy,r=e.ctx;ul=!1,t.beforeCreate&&v0(t.beforeCreate,e,"bc");const{data:a,computed:s,methods:o,watch:i,provide:u,inject:c,created:l,beforeMount:f,mounted:d,beforeUpdate:m,updated:_,activated:A,deactivated:R,beforeDestroy:I,beforeUnmount:b,destroyed:v,unmounted:T,render:L,renderTracked:w,renderTriggered:P,errorCaptured:V,serverPrefetch:G,expose:z,inheritAttrs:k,components:Z,directives:J,filters:te}=t;if(c&&fO(c,r,null),o)for(const B in o){const ae=o[B];ze(ae)&&(r[B]=ae.bind(n))}if(a){const B=a.call(n,n);mt(B)&&(e.data=Ht(B))}if(ul=!0,s)for(const B in s){const ae=s[B],Ne=ze(ae)?ae.bind(n,n):ze(ae.get)?ae.get.bind(n,n):Nn,ke=!ze(ae)&&ze(ae.set)?ae.set.bind(n):Nn,Te=$({get:Ne,set:ke});Object.defineProperty(r,B,{enumerable:!0,configurable:!0,get:()=>Te.value,set:Ce=>Te.value=Ce})}if(i)for(const B in i)HE(i[B],r,n,B);if(u){const B=ze(u)?u.call(n):u;Reflect.ownKeys(B).forEach(ae=>{tn(ae,B[ae])})}l&&v0(l,e,"c");function W(B,ae){ye(ae)?ae.forEach(Ne=>B(Ne.bind(n))):ae&&B(ae.bind(n))}if(W(Rt,f),W(It,d),W(aO,m),W(sO,_),W(tO,A),W(nO,R),W(cO,V),W(uO,w),W(iO,P),W(No,b),W(Nt,T),W(oO,G),ye(z))if(z.length){const B=e.exposed||(e.exposed={});z.forEach(ae=>{Object.defineProperty(B,ae,{get:()=>n[ae],set:Ne=>n[ae]=Ne})})}else e.exposed||(e.exposed={});L&&e.render===Nn&&(e.render=L),k!=null&&(e.inheritAttrs=k),Z&&(e.components=Z),J&&(e.directives=J)}function fO(e,t,n=Nn){ye(e)&&(e=cl(e));for(const r in e){const a=e[r];let s;mt(a)?"default"in a?s=At(a.from||r,a.default,!0):s=At(a.from||r):s=At(a),Ft(s)?Object.defineProperty(t,r,{enumerable:!0,configurable:!0,get:()=>s.value,set:o=>s.value=o}):t[r]=s}}function v0(e,t,n){yn(ye(e)?e.map(r=>r.bind(t.proxy)):e.bind(t.proxy),t,n)}function HE(e,t,n,r){const a=r.includes(".")?WE(n,r):()=>n[r];if(Pt(e)){const s=t[e];ze(s)&&He(a,s)}else if(ze(e))He(a,e.bind(n));else if(mt(e))if(ye(e))e.forEach(s=>HE(s,t,n,r));else{const s=ze(e.handler)?e.handler.bind(n):t[e.handler];ze(s)&&He(a,s,e)}}function zd(e){const t=e.type,{mixins:n,extends:r}=t,{mixins:a,optionsCache:s,config:{optionMergeStrategies:o}}=e.appContext,i=s.get(t);let u;return i?u=i:!a.length&&!n&&!r?u=t:(u={},a.length&&a.forEach(c=>Bi(u,c,o,!0)),Bi(u,t,o)),mt(t)&&s.set(t,u),u}function Bi(e,t,n,r=!1){const{mixins:a,extends:s}=t;s&&Bi(e,s,n,!0),a&&a.forEach(o=>Bi(e,o,n,!0));for(const o in t)if(!(r&&o==="expose")){const i=pO[o]||n&&n[o];e[o]=i?i(e[o],t[o]):t[o]}return e}const pO={data:b0,props:R0,emits:R0,methods:xs,computed:xs,beforeCreate:Xt,created:Xt,beforeMount:Xt,mounted:Xt,beforeUpdate:Xt,updated:Xt,beforeDestroy:Xt,beforeUnmount:Xt,destroyed:Xt,unmounted:Xt,activated:Xt,deactivated:Xt,errorCaptured:Xt,serverPrefetch:Xt,components:xs,directives:xs,watch:_O,provide:b0,inject:mO};function b0(e,t){return t?e?function(){return Bt(ze(e)?e.call(this,this):e,ze(t)?t.call(this,this):t)}:t:e}function mO(e,t){return xs(cl(e),cl(t))}function cl(e){if(ye(e)){const t={};for(let n=0;n1)return n&&ze(t)?t.call(r&&r.proxy):t}}function TO(e,t,n,r=!1){const a={},s={};xi(s,xu,1),e.propsDefaults=Object.create(null),jE(e,t,a,s);for(const o in e.propsOptions[0])o in a||(a[o]=void 0);n?e.props=r?a:RE(a):e.type.props?e.props=a:e.props=s,e.attrs=s}function gO(e,t,n,r){const{props:a,attrs:s,vnode:{patchFlag:o}}=e,i=tt(a),[u]=e.propsOptions;let c=!1;if((r||o>0)&&!(o&16)){if(o&8){const l=e.vnode.dynamicProps;for(let f=0;f{u=!0;const[d,m]=KE(f,t,!0);Bt(o,d),m&&i.push(...m)};!n&&t.mixins.length&&t.mixins.forEach(l),e.extends&&l(e.extends),e.mixins&&e.mixins.forEach(l)}if(!s&&!u)return mt(e)&&r.set(e,Fa),Fa;if(ye(s))for(let l=0;l-1,m[1]=A<0||_-1||rt(m,"default"))&&i.push(f)}}}const c=[o,i];return mt(e)&&r.set(e,c),c}function N0(e){return e[0]!=="$"}function y0(e){const t=e&&e.toString().match(/^\s*(function|class) (\w+)/);return t?t[2]:e===null?"null":""}function C0(e,t){return y0(e)===y0(t)}function D0(e,t){return ye(t)?t.findIndex(n=>C0(n,e)):ze(t)&&C0(t,e)?0:-1}const YE=e=>e[0]==="_"||e==="$stable",Bd=e=>ye(e)?e.map(Bn):[Bn(e)],AO=(e,t,n)=>{if(t._n)return t;const r=pe((...a)=>Bd(t(...a)),n);return r._c=!1,r},qE=(e,t,n)=>{const r=e._ctx;for(const a in e){if(YE(a))continue;const s=e[a];if(ze(s))t[a]=AO(a,s,r);else if(s!=null){const o=Bd(s);t[a]=()=>o}}},XE=(e,t)=>{const n=Bd(t);e.slots.default=()=>n},SO=(e,t)=>{if(e.vnode.shapeFlag&32){const n=t._;n?(e.slots=tt(t),xi(t,"_",n)):qE(t,e.slots={})}else e.slots={},t&&XE(e,t);xi(e.slots,xu,1)},OO=(e,t,n)=>{const{vnode:r,slots:a}=e;let s=!0,o=Tt;if(r.shapeFlag&32){const i=t._;i?n&&i===1?s=!1:(Bt(a,t),!n&&i===1&&delete a._):(s=!t.$stable,qE(t,a)),o=t}else t&&(XE(e,t),o={default:1});if(s)for(const i in a)!YE(i)&&o[i]==null&&delete a[i]};function dl(e,t,n,r,a=!1){if(ye(e)){e.forEach((d,m)=>dl(d,t&&(ye(t)?t[m]:t),n,r,a));return}if(Ws(r)&&!a)return;const s=r.shapeFlag&4?Fu(r.component)||r.component.proxy:r.el,o=a?null:s,{i,r:u}=e,c=t&&t.r,l=i.refs===Tt?i.refs={}:i.refs,f=i.setupState;if(c!=null&&c!==u&&(Pt(c)?(l[c]=null,rt(f,c)&&(f[c]=null)):Ft(c)&&(c.value=null)),ze(u))$r(u,i,12,[o,l]);else{const d=Pt(u),m=Ft(u);if(d||m){const _=()=>{if(e.f){const A=d?rt(f,u)?f[u]:l[u]:u.value;a?ye(A)&&Pd(A,s):ye(A)?A.includes(s)||A.push(s):d?(l[u]=[s],rt(f,u)&&(f[u]=l[u])):(u.value=[s],e.k&&(l[e.k]=u.value))}else d?(l[u]=o,rt(f,u)&&(f[u]=o)):m&&(u.value=o,e.k&&(l[e.k]=o))};o?(_.id=-1,rn(_,n)):_()}}}const rn=JS;function IO(e){return vO(e)}function vO(e,t){const n=nl();n.__VUE__=!0;const{insert:r,remove:a,patchProp:s,createElement:o,createText:i,createComment:u,setText:c,setElementText:l,parentNode:f,nextSibling:d,setScopeId:m=Nn,insertStaticContent:_}=e,A=(C,S,O,y=null,M=null,H=null,ne=!1,ie=null,fe=!!S.dynamicChildren)=>{if(C===S)return;C&&!Rs(C,S)&&(y=X(C),Ce(C,M,H,!0),C=null),S.patchFlag===-2&&(fe=!1,S.dynamicChildren=null);const{type:oe,ref:Re,shapeFlag:_e}=S;switch(oe){case yo:R(C,S,O,y);break;case Ur:I(C,S,O,y);break;case vi:C==null&&b(S,O,y,ne);break;case be:Z(C,S,O,y,M,H,ne,ie,fe);break;default:_e&1?L(C,S,O,y,M,H,ne,ie,fe):_e&6?J(C,S,O,y,M,H,ne,ie,fe):(_e&64||_e&128)&&oe.process(C,S,O,y,M,H,ne,ie,fe,de)}Re!=null&&M&&dl(Re,C&&C.ref,H,S||C,!S)},R=(C,S,O,y)=>{if(C==null)r(S.el=i(S.children),O,y);else{const M=S.el=C.el;S.children!==C.children&&c(M,S.children)}},I=(C,S,O,y)=>{C==null?r(S.el=u(S.children||""),O,y):S.el=C.el},b=(C,S,O,y)=>{[C.el,C.anchor]=_(C.children,S,O,y,C.el,C.anchor)},v=({el:C,anchor:S},O,y)=>{let M;for(;C&&C!==S;)M=d(C),r(C,O,y),C=M;r(S,O,y)},T=({el:C,anchor:S})=>{let O;for(;C&&C!==S;)O=d(C),a(C),C=O;a(S)},L=(C,S,O,y,M,H,ne,ie,fe)=>{ne=ne||S.type==="svg",C==null?w(S,O,y,M,H,ne,ie,fe):G(C,S,M,H,ne,ie,fe)},w=(C,S,O,y,M,H,ne,ie)=>{let fe,oe;const{type:Re,props:_e,shapeFlag:F,transition:q,dirs:Ie}=C;if(fe=C.el=o(C.type,H,_e&&_e.is,_e),F&8?l(fe,C.children):F&16&&V(C.children,fe,null,y,M,H&&Re!=="foreignObject",ne,ie),Ie&&Kr(C,null,y,"created"),P(fe,C,C.scopeId,ne,y),_e){for(const et in _e)et!=="value"&&!Oi(et)&&s(fe,et,null,_e[et],H,C.children,y,M,st);"value"in _e&&s(fe,"value",null,_e.value),(oe=_e.onVnodeBeforeMount)&&Un(oe,y,C)}Ie&&Kr(C,null,y,"beforeMount");const we=bO(M,q);we&&q.beforeEnter(fe),r(fe,S,O),((oe=_e&&_e.onVnodeMounted)||we||Ie)&&rn(()=>{oe&&Un(oe,y,C),we&&q.enter(fe),Ie&&Kr(C,null,y,"mounted")},M)},P=(C,S,O,y,M)=>{if(O&&m(C,O),y)for(let H=0;H{for(let oe=fe;oe{const ie=S.el=C.el;let{patchFlag:fe,dynamicChildren:oe,dirs:Re}=S;fe|=C.patchFlag&16;const _e=C.props||Tt,F=S.props||Tt;let q;O&&Yr(O,!1),(q=F.onVnodeBeforeUpdate)&&Un(q,O,S,C),Re&&Kr(S,C,O,"beforeUpdate"),O&&Yr(O,!0);const Ie=M&&S.type!=="foreignObject";if(oe?z(C.dynamicChildren,oe,ie,O,y,Ie,H):ne||ae(C,S,ie,null,O,y,Ie,H,!1),fe>0){if(fe&16)k(ie,S,_e,F,O,y,M);else if(fe&2&&_e.class!==F.class&&s(ie,"class",null,F.class,M),fe&4&&s(ie,"style",_e.style,F.style,M),fe&8){const we=S.dynamicProps;for(let et=0;et{q&&Un(q,O,S,C),Re&&Kr(S,C,O,"updated")},y)},z=(C,S,O,y,M,H,ne)=>{for(let ie=0;ie{if(O!==y){if(O!==Tt)for(const ie in O)!Oi(ie)&&!(ie in y)&&s(C,ie,O[ie],null,ne,S.children,M,H,st);for(const ie in y){if(Oi(ie))continue;const fe=y[ie],oe=O[ie];fe!==oe&&ie!=="value"&&s(C,ie,oe,fe,ne,S.children,M,H,st)}"value"in y&&s(C,"value",O.value,y.value)}},Z=(C,S,O,y,M,H,ne,ie,fe)=>{const oe=S.el=C?C.el:i(""),Re=S.anchor=C?C.anchor:i("");let{patchFlag:_e,dynamicChildren:F,slotScopeIds:q}=S;q&&(ie=ie?ie.concat(q):q),C==null?(r(oe,O,y),r(Re,O,y),V(S.children,O,Re,M,H,ne,ie,fe)):_e>0&&_e&64&&F&&C.dynamicChildren?(z(C.dynamicChildren,F,O,M,H,ne,ie),(S.key!=null||M&&S===M.subTree)&&Hd(C,S,!0)):ae(C,S,O,Re,M,H,ne,ie,fe)},J=(C,S,O,y,M,H,ne,ie,fe)=>{S.slotScopeIds=ie,C==null?S.shapeFlag&512?M.ctx.activate(S,O,y,ne,fe):te(S,O,y,M,H,ne,fe):D(C,S,fe)},te=(C,S,O,y,M,H,ne)=>{const ie=C.component=UO(C,y,M);if(GE(C)&&(ie.ctx.renderer=de),MO(ie),ie.asyncDep){if(M&&M.registerDep(ie,W),!C.el){const fe=ie.subTree=U(Ur);I(null,fe,S,O)}return}W(ie,C,S,O,M,H,ne)},D=(C,S,O)=>{const y=S.component=C.component;if(KS(C,S,O))if(y.asyncDep&&!y.asyncResolved){B(y,S,O);return}else y.next=S,GS(y.update),y.update();else S.el=C.el,y.vnode=S},W=(C,S,O,y,M,H,ne)=>{const ie=()=>{if(C.isMounted){let{next:Re,bu:_e,u:F,parent:q,vnode:Ie}=C,we=Re,et;Yr(C,!1),Re?(Re.el=Ie.el,B(C,Re,ne)):Re=Ie,_e&&Ii(_e),(et=Re.props&&Re.props.onVnodeBeforeUpdate)&&Un(et,q,Re,Ie),Yr(C,!0);const _t=Tc(C),kt=C.subTree;C.subTree=_t,A(kt,_t,f(kt.el),X(kt),C,M,H),Re.el=_t.el,we===null&&YS(C,_t.el),F&&rn(F,M),(et=Re.props&&Re.props.onVnodeUpdated)&&rn(()=>Un(et,q,Re,Ie),M)}else{let Re;const{el:_e,props:F}=S,{bm:q,m:Ie,parent:we}=C,et=Ws(S);if(Yr(C,!1),q&&Ii(q),!et&&(Re=F&&F.onVnodeBeforeMount)&&Un(Re,we,S),Yr(C,!0),_e&&Ke){const _t=()=>{C.subTree=Tc(C),Ke(_e,C.subTree,C,M,null)};et?S.type.__asyncLoader().then(()=>!C.isUnmounted&&_t()):_t()}else{const _t=C.subTree=Tc(C);A(null,_t,O,y,C,M,H),S.el=_t.el}if(Ie&&rn(Ie,M),!et&&(Re=F&&F.onVnodeMounted)){const _t=S;rn(()=>Un(Re,we,_t),M)}(S.shapeFlag&256||we&&Ws(we.vnode)&&we.vnode.shapeFlag&256)&&C.a&&rn(C.a,M),C.isMounted=!0,S=O=y=null}},fe=C.effect=new kd(ie,()=>Gd(oe),C.scope),oe=C.update=()=>fe.run();oe.id=C.uid,Yr(C,!0),oe()},B=(C,S,O)=>{S.component=C;const y=C.vnode.props;C.vnode=S,C.next=null,gO(C,S.props,y,O),OO(C,S.children,O),ms(),A0(),_s()},ae=(C,S,O,y,M,H,ne,ie,fe=!1)=>{const oe=C&&C.children,Re=C?C.shapeFlag:0,_e=S.children,{patchFlag:F,shapeFlag:q}=S;if(F>0){if(F&128){ke(oe,_e,O,y,M,H,ne,ie,fe);return}else if(F&256){Ne(oe,_e,O,y,M,H,ne,ie,fe);return}}q&8?(Re&16&&st(oe,M,H),_e!==oe&&l(O,_e)):Re&16?q&16?ke(oe,_e,O,y,M,H,ne,ie,fe):st(oe,M,H,!0):(Re&8&&l(O,""),q&16&&V(_e,O,y,M,H,ne,ie,fe))},Ne=(C,S,O,y,M,H,ne,ie,fe)=>{C=C||Fa,S=S||Fa;const oe=C.length,Re=S.length,_e=Math.min(oe,Re);let F;for(F=0;F<_e;F++){const q=S[F]=fe?br(S[F]):Bn(S[F]);A(C[F],q,O,null,M,H,ne,ie,fe)}oe>Re?st(C,M,H,!0,!1,_e):V(S,O,y,M,H,ne,ie,fe,_e)},ke=(C,S,O,y,M,H,ne,ie,fe)=>{let oe=0;const Re=S.length;let _e=C.length-1,F=Re-1;for(;oe<=_e&&oe<=F;){const q=C[oe],Ie=S[oe]=fe?br(S[oe]):Bn(S[oe]);if(Rs(q,Ie))A(q,Ie,O,null,M,H,ne,ie,fe);else break;oe++}for(;oe<=_e&&oe<=F;){const q=C[_e],Ie=S[F]=fe?br(S[F]):Bn(S[F]);if(Rs(q,Ie))A(q,Ie,O,null,M,H,ne,ie,fe);else break;_e--,F--}if(oe>_e){if(oe<=F){const q=F+1,Ie=qF)for(;oe<=_e;)Ce(C[oe],M,H,!0),oe++;else{const q=oe,Ie=oe,we=new Map;for(oe=Ie;oe<=F;oe++){const fn=S[oe]=fe?br(S[oe]):Bn(S[oe]);fn.key!=null&&we.set(fn.key,oe)}let et,_t=0;const kt=F-Ie+1;let hr=!1,Ec=0;const bs=new Array(kt);for(oe=0;oe=kt){Ce(fn,M,H,!0);continue}let kn;if(fn.key!=null)kn=we.get(fn.key);else for(et=Ie;et<=F;et++)if(bs[et-Ie]===0&&Rs(fn,S[et])){kn=et;break}kn===void 0?Ce(fn,M,H,!0):(bs[kn-Ie]=oe+1,kn>=Ec?Ec=kn:hr=!0,A(fn,S[kn],O,null,M,H,ne,ie,fe),_t++)}const c0=hr?RO(bs):Fa;for(et=c0.length-1,oe=kt-1;oe>=0;oe--){const fn=Ie+oe,kn=S[fn],l0=fn+1{const{el:H,type:ne,transition:ie,children:fe,shapeFlag:oe}=C;if(oe&6){Te(C.component.subTree,S,O,y);return}if(oe&128){C.suspense.move(S,O,y);return}if(oe&64){ne.move(C,S,O,de);return}if(ne===be){r(H,S,O);for(let _e=0;_eie.enter(H),M);else{const{leave:_e,delayLeave:F,afterLeave:q}=ie,Ie=()=>r(H,S,O),we=()=>{_e(H,()=>{Ie(),q&&q()})};F?F(H,Ie,we):we()}else r(H,S,O)},Ce=(C,S,O,y=!1,M=!1)=>{const{type:H,props:ne,ref:ie,children:fe,dynamicChildren:oe,shapeFlag:Re,patchFlag:_e,dirs:F}=C;if(ie!=null&&dl(ie,null,O,C,!0),Re&256){S.ctx.deactivate(C);return}const q=Re&1&&F,Ie=!Ws(C);let we;if(Ie&&(we=ne&&ne.onVnodeBeforeUnmount)&&Un(we,S,C),Re&6)Ve(C.component,O,y);else{if(Re&128){C.suspense.unmount(O,y);return}q&&Kr(C,null,S,"beforeUnmount"),Re&64?C.type.remove(C,S,O,M,de,y):oe&&(H!==be||_e>0&&_e&64)?st(oe,S,O,!1,!0):(H===be&&_e&384||!M&&Re&16)&&st(fe,S,O),y&&yt(C)}(Ie&&(we=ne&&ne.onVnodeUnmounted)||q)&&rn(()=>{we&&Un(we,S,C),q&&Kr(C,null,S,"unmounted")},O)},yt=C=>{const{type:S,el:O,anchor:y,transition:M}=C;if(S===be){We(O,y);return}if(S===vi){T(C);return}const H=()=>{a(O),M&&!M.persisted&&M.afterLeave&&M.afterLeave()};if(C.shapeFlag&1&&M&&!M.persisted){const{leave:ne,delayLeave:ie}=M,fe=()=>ne(O,H);ie?ie(C.el,H,fe):fe()}else H()},We=(C,S)=>{let O;for(;C!==S;)O=d(C),a(C),C=O;a(S)},Ve=(C,S,O)=>{const{bum:y,scope:M,update:H,subTree:ne,um:ie}=C;y&&Ii(y),M.stop(),H&&(H.active=!1,Ce(ne,C,S,O)),ie&&rn(ie,S),rn(()=>{C.isUnmounted=!0},S),S&&S.pendingBranch&&!S.isUnmounted&&C.asyncDep&&!C.asyncResolved&&C.suspenseId===S.pendingId&&(S.deps--,S.deps===0&&S.resolve())},st=(C,S,O,y=!1,M=!1,H=0)=>{for(let ne=H;neC.shapeFlag&6?X(C.component.subTree):C.shapeFlag&128?C.suspense.next():d(C.anchor||C.el),me=(C,S,O)=>{C==null?S._vnode&&Ce(S._vnode,null,null,!0):A(S._vnode||null,C,S,null,null,null,O),A0(),$E(),S._vnode=C},de={p:A,um:Ce,m:Te,r:yt,mt:te,mc:V,pc:ae,pbc:z,n:X,o:e};let Oe,Ke;return t&&([Oe,Ke]=t(de)),{render:me,hydrate:Oe,createApp:hO(me,Oe)}}function Yr({effect:e,update:t},n){e.allowRecurse=t.allowRecurse=n}function bO(e,t){return(!e||e&&!e.pendingBranch)&&t&&!t.persisted}function Hd(e,t,n=!1){const r=e.children,a=t.children;if(ye(r)&&ye(a))for(let s=0;s>1,e[n[i]]0&&(t[r]=n[s-1]),n[s]=r)}}for(s=n.length,o=n[s-1];s-- >0;)n[s]=o,o=t[o];return n}const NO=e=>e.__isTeleport,zs=e=>e&&(e.disabled||e.disabled===""),P0=e=>typeof SVGElement<"u"&&e instanceof SVGElement,fl=(e,t)=>{const n=e&&e.to;return Pt(n)?t?t(n):null:n},yO={__isTeleport:!0,process(e,t,n,r,a,s,o,i,u,c){const{mc:l,pc:f,pbc:d,o:{insert:m,querySelector:_,createText:A,createComment:R}}=c,I=zs(t.props);let{shapeFlag:b,children:v,dynamicChildren:T}=t;if(e==null){const L=t.el=A(""),w=t.anchor=A("");m(L,n,r),m(w,n,r);const P=t.target=fl(t.props,_),V=t.targetAnchor=A("");P&&(m(V,P),o=o||P0(P));const G=(z,k)=>{b&16&&l(v,z,k,a,s,o,i,u)};I?G(n,w):P&&G(P,V)}else{t.el=e.el;const L=t.anchor=e.anchor,w=t.target=e.target,P=t.targetAnchor=e.targetAnchor,V=zs(e.props),G=V?n:w,z=V?L:P;if(o=o||P0(w),T?(d(e.dynamicChildren,T,G,a,s,o,i),Hd(e,t,!0)):u||f(e,t,G,z,a,s,o,i,!1),I)V?t.props&&e.props&&t.props.to!==e.props.to&&(t.props.to=e.props.to):Zo(t,n,L,c,1);else if((t.props&&t.props.to)!==(e.props&&e.props.to)){const k=t.target=fl(t.props,_);k&&Zo(t,k,null,c,0)}else V&&Zo(t,w,P,c,1)}ZE(t)},remove(e,t,n,r,{um:a,o:{remove:s}},o){const{shapeFlag:i,children:u,anchor:c,targetAnchor:l,target:f,props:d}=e;if(f&&s(l),o&&s(c),i&16){const m=o||!zs(d);for(let _=0;_0?Rn||Fa:null,PO(),ro>0&&Rn&&Rn.push(e),e}function N(e,t,n,r,a,s){return QE(p(e,t,n,r,a,s,!0))}function re(e,t,n,r,a){return QE(U(e,t,n,r,a,!0))}function Vi(e){return e?e.__v_isVNode===!0:!1}function Rs(e,t){return e.type===t.type&&e.key===t.key}const xu="__vInternal",JE=({key:e})=>e??null,bi=({ref:e,ref_key:t,ref_for:n})=>(typeof e=="number"&&(e=""+e),e!=null?Pt(e)||Ft(e)||ze(e)?{i:Gt,r:e,k:t,f:!!n}:e:null);function p(e,t=null,n=null,r=0,a=null,s=e===be?0:1,o=!1,i=!1){const u={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&JE(t),ref:t&&bi(t),scopeId:Uu,slotScopeIds:null,children:n,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetAnchor:null,staticCount:0,shapeFlag:s,patchFlag:r,dynamicProps:a,dynamicChildren:null,appContext:null,ctx:Gt};return i?(Vd(u,n),s&128&&e.normalize(u)):n&&(u.shapeFlag|=Pt(n)?8:16),ro>0&&!o&&Rn&&(u.patchFlag>0||s&6)&&u.patchFlag!==32&&Rn.push(u),u}const U=wO;function wO(e,t=null,n=null,r=0,a=null,s=!1){if((!e||e===XS)&&(e=Ur),Vi(e)){const i=Ya(e,t,!0);return n&&Vd(i,n),ro>0&&!s&&Rn&&(i.shapeFlag&6?Rn[Rn.indexOf(e)]=i:Rn.push(i)),i.patchFlag|=-2,i}if(zO(e)&&(e=e.__vccOpts),t){t=LO(t);let{class:i,style:u}=t;i&&!Pt(i)&&(t.class=Se(i)),mt(u)&&(wu(u)&&!ye(u)&&(u=Bt({},u)),t.style=Wr(u))}const o=Pt(e)?1:QS(e)?128:NO(e)?64:mt(e)?4:ze(e)?2:0;return p(e,t,n,r,a,o,s,!0)}function LO(e){return e?wu(e)||xu in e?Bt({},e):e:null}function Ya(e,t,n=!1){const{props:r,ref:a,patchFlag:s,children:o}=e,i=t?eh(r||{},t):r;return{__v_isVNode:!0,__v_skip:!0,type:e.type,props:i,key:i&&JE(i),ref:t&&t.ref?n&&a?ye(a)?a.concat(bi(t)):[a,bi(t)]:bi(t):a,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:o,target:e.target,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==be?s===-1?16:s|16:s,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:e.transition,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&Ya(e.ssContent),ssFallback:e.ssFallback&&Ya(e.ssFallback),el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce}}function K(e=" ",t=0){return U(yo,null,e,t)}function pr(e,t){const n=U(vi,null,e);return n.staticCount=t,n}function x(e="",t=!1){return t?(g(),re(Ur,null,e)):U(Ur,null,e)}function Bn(e){return e==null||typeof e=="boolean"?U(Ur):ye(e)?U(be,null,e.slice()):typeof e=="object"?br(e):U(yo,null,String(e))}function br(e){return e.el===null&&e.patchFlag!==-1||e.memo?e:Ya(e)}function Vd(e,t){let n=0;const{shapeFlag:r}=e;if(t==null)t=null;else if(ye(t))n=16;else if(typeof t=="object")if(r&65){const a=t.default;a&&(a._c&&(a._d=!1),Vd(e,a()),a._c&&(a._d=!0));return}else{n=32;const a=t._;!a&&!(xu in t)?t._ctx=Gt:a===3&&Gt&&(Gt.slots._===1?t._=1:(t._=2,e.patchFlag|=1024))}else ze(t)?(t={default:t,_ctx:Gt},n=32):(t=String(t),r&64?(n=16,t=[K(t)]):n=8);e.children=t,e.shapeFlag|=n}function eh(...e){const t={};for(let n=0;nxt||Gt;let jd,Oa,L0="__VUE_INSTANCE_SETTERS__";(Oa=nl()[L0])||(Oa=nl()[L0]=[]),Oa.push(e=>xt=e),jd=e=>{Oa.length>1?Oa.forEach(t=>t(e)):Oa[0](e)};const qa=e=>{jd(e),e.scope.on()},ia=()=>{xt&&xt.scope.off(),jd(null)};function th(e){return e.vnode.shapeFlag&4}let so=!1;function MO(e,t=!1){so=t;const{props:n,children:r}=e.vnode,a=th(e);TO(e,n,a,t),SO(e,r);const s=a?xO(e,t):void 0;return so=!1,s}function xO(e,t){const n=e.type;e.accessCache=Object.create(null),e.proxy=Yn(new Proxy(e.ctx,lO));const{setup:r}=n;if(r){const a=e.setupContext=r.length>1?WO(e):null;qa(e),ms();const s=$r(r,e,0,[e.props,a]);if(_s(),ia(),cE(s)){if(s.then(ia,ia),t)return s.then(o=>{$0(e,o,t)}).catch(o=>{$u(o,e,0)});e.asyncDep=s}else $0(e,s,t)}else nh(e,t)}function $0(e,t,n){ze(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:mt(t)&&(e.setupState=PE(t)),nh(e,n)}let k0;function nh(e,t,n){const r=e.type;if(!e.render){if(!t&&k0&&!r.render){const a=r.template||zd(e).template;if(a){const{isCustomElement:s,compilerOptions:o}=e.appContext.config,{delimiters:i,compilerOptions:u}=r,c=Bt(Bt({isCustomElement:s,delimiters:i},o),u);r.render=k0(a,c)}}e.render=r.render||Nn}{qa(e),ms();try{dO(e)}finally{_s(),ia()}}}function FO(e){return e.attrsProxy||(e.attrsProxy=new Proxy(e.attrs,{get(t,n){return cn(e,"get","$attrs"),t[n]}}))}function WO(e){const t=n=>{e.exposed=n||{}};return{get attrs(){return FO(e)},slots:e.slots,emit:e.emit,expose:t}}function Fu(e){if(e.exposed)return e.exposeProxy||(e.exposeProxy=new Proxy(PE(Yn(e.exposed)),{get(t,n){if(n in t)return t[n];if(n in Gs)return Gs[n](e)},has(t,n){return n in t||n in Gs}}))}function GO(e,t=!0){return ze(e)?e.displayName||e.name:e.name||t&&e.__name}function zO(e){return ze(e)&&"__vccOpts"in e}const $=(e,t)=>xS(e,t,so);function In(e,t,n){const r=arguments.length;return r===2?mt(t)&&!ye(t)?Vi(t)?U(e,null,[t]):U(e,t):U(e,null,t):(r>3?n=Array.prototype.slice.call(arguments,2):r===3&&Vi(n)&&(n=[n]),U(e,t,n))}const BO=Symbol.for("v-scx"),HO=()=>At(BO),rh="3.3.8",VO="http://www.w3.org/2000/svg",Qr=typeof document<"u"?document:null,U0=Qr&&Qr.createElement("template"),jO={insert:(e,t,n)=>{t.insertBefore(e,n||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,n,r)=>{const a=t?Qr.createElementNS(VO,e):Qr.createElement(e,n?{is:n}:void 0);return e==="select"&&r&&r.multiple!=null&&a.setAttribute("multiple",r.multiple),a},createText:e=>Qr.createTextNode(e),createComment:e=>Qr.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>Qr.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},insertStaticContent(e,t,n,r,a,s){const o=n?n.previousSibling:t.lastChild;if(a&&(a===s||a.nextSibling))for(;t.insertBefore(a.cloneNode(!0),n),!(a===s||!(a=a.nextSibling)););else{U0.innerHTML=r?`${e}`:e;const i=U0.content;if(r){const u=i.firstChild;for(;u.firstChild;)i.appendChild(u.firstChild);i.removeChild(u)}t.insertBefore(i,n)}return[o?o.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}},KO=Symbol("_vtc");function YO(e,t,n){const r=e[KO];r&&(t=(t?[t,...r]:[...r]).join(" ")),t==null?e.removeAttribute("class"):n?e.setAttribute("class",t):e.className=t}const qO=Symbol("_vod");function XO(e,t,n){const r=e.style,a=Pt(n);if(n&&!a){if(t&&!Pt(t))for(const s in t)n[s]==null&&pl(r,s,"");for(const s in n)pl(r,s,n[s])}else{const s=r.display;a?t!==n&&(r.cssText=n):t&&e.removeAttribute("style"),qO in e&&(r.display=s)}}const M0=/\s*!important$/;function pl(e,t,n){if(ye(n))n.forEach(r=>pl(e,t,r));else if(n==null&&(n=""),t.startsWith("--"))e.setProperty(t,n);else{const r=ZO(e,t);M0.test(n)?e.setProperty(pa(r),n.replace(M0,""),"important"):e[r]=n}}const x0=["Webkit","Moz","ms"],Ac={};function ZO(e,t){const n=Ac[t];if(n)return n;let r=Kn(t);if(r!=="filter"&&r in e)return Ac[t]=r;r=Ot(r);for(let a=0;aSc||(rI.then(()=>Sc=0),Sc=Date.now());function sI(e,t){const n=r=>{if(!r._vts)r._vts=Date.now();else if(r._vts<=n.attached)return;yn(oI(r,n.value),t,5,[r])};return n.value=e,n.attached=aI(),n}function oI(e,t){if(ye(t)){const n=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{n.call(e),e._stopped=!0},t.map(r=>a=>!a._stopped&&r&&r(a))}else return t}const z0=/^on[a-z]/,iI=(e,t,n,r,a=!1,s,o,i,u)=>{t==="class"?YO(e,r,a):t==="style"?XO(e,n,r):Cu(t)?Dd(t)||tI(e,t,n,r,o):(t[0]==="."?(t=t.slice(1),!0):t[0]==="^"?(t=t.slice(1),!1):uI(e,t,r,a))?JO(e,t,r,s,o,i,u):(t==="true-value"?e._trueValue=r:t==="false-value"&&(e._falseValue=r),QO(e,t,r,a))};function uI(e,t,n,r){return r?!!(t==="innerHTML"||t==="textContent"||t in e&&z0.test(t)&&ze(n)):t==="spellcheck"||t==="draggable"||t==="translate"||t==="form"||t==="list"&&e.tagName==="INPUT"||t==="type"&&e.tagName==="TEXTAREA"||z0.test(t)&&Pt(n)?!1:t in e}const Mr=e=>{const t=e.props["onUpdate:modelValue"]||!1;return ye(t)?n=>Ii(t,n):t};function cI(e){e.target.composing=!0}function B0(e){const t=e.target;t.composing&&(t.composing=!1,t.dispatchEvent(new Event("input")))}const gn=Symbol("_assign"),at={created(e,{modifiers:{lazy:t,trim:n,number:r}},a){e[gn]=Mr(a);const s=r||a.props&&a.props.type==="number";sr(e,t?"change":"input",o=>{if(o.target.composing)return;let i=e.value;n&&(i=i.trim()),s&&(i=Fi(i)),e[gn](i)}),n&&sr(e,"change",()=>{e.value=e.value.trim()}),t||(sr(e,"compositionstart",cI),sr(e,"compositionend",B0),sr(e,"change",B0))},mounted(e,{value:t}){e.value=t??""},beforeUpdate(e,{value:t,modifiers:{lazy:n,trim:r,number:a}},s){if(e[gn]=Mr(s),e.composing||document.activeElement===e&&e.type!=="range"&&(n||r&&e.value.trim()===t||(a||e.type==="number")&&Fi(e.value)===t))return;const o=t??"";e.value!==o&&(e.value=o)}},Kd={deep:!0,created(e,t,n){e[gn]=Mr(n),sr(e,"change",()=>{const r=e._modelValue,a=Xa(e),s=e.checked,o=e[gn];if(ye(r)){const i=Ld(r,a),u=i!==-1;if(s&&!u)o(r.concat(a));else if(!s&&u){const c=[...r];c.splice(i,1),o(c)}}else if(ps(r)){const i=new Set(r);s?i.add(a):i.delete(a),o(i)}else o(ah(e,s))})},mounted:H0,beforeUpdate(e,t,n){e[gn]=Mr(n),H0(e,t,n)}};function H0(e,{value:t,oldValue:n},r){e._modelValue=t,ye(t)?e.checked=Ld(t,r.props.value)>-1:ps(t)?e.checked=t.has(r.props.value):t!==n&&(e.checked=ca(t,ah(e,!0)))}const lI={created(e,{value:t},n){e.checked=ca(t,n.props.value),e[gn]=Mr(n),sr(e,"change",()=>{e[gn](Xa(e))})},beforeUpdate(e,{value:t,oldValue:n},r){e[gn]=Mr(r),t!==n&&(e.checked=ca(t,r.props.value))}},ji={deep:!0,created(e,{value:t,modifiers:{number:n}},r){const a=ps(t);sr(e,"change",()=>{const s=Array.prototype.filter.call(e.options,o=>o.selected).map(o=>n?Fi(Xa(o)):Xa(o));e[gn](e.multiple?a?new Set(s):s:s[0])}),e[gn]=Mr(r)},mounted(e,{value:t}){V0(e,t)},beforeUpdate(e,t,n){e[gn]=Mr(n)},updated(e,{value:t}){V0(e,t)}};function V0(e,t){const n=e.multiple;if(!(n&&!ye(t)&&!ps(t))){for(let r=0,a=e.options.length;r-1:s.selected=t.has(o);else if(ca(Xa(s),t)){e.selectedIndex!==r&&(e.selectedIndex=r);return}}!n&&e.selectedIndex!==-1&&(e.selectedIndex=-1)}}function Xa(e){return"_value"in e?e._value:e.value}function ah(e,t){const n=t?"_trueValue":"_falseValue";return n in e?e[n]:t}const dI={created(e,t,n){Qo(e,t,n,null,"created")},mounted(e,t,n){Qo(e,t,n,null,"mounted")},beforeUpdate(e,t,n,r){Qo(e,t,n,r,"beforeUpdate")},updated(e,t,n,r){Qo(e,t,n,r,"updated")}};function fI(e,t){switch(e){case"SELECT":return ji;case"TEXTAREA":return at;default:switch(t){case"checkbox":return Kd;case"radio":return lI;default:return at}}}function Qo(e,t,n,r,a){const o=fI(e.tagName,n.props&&n.props.type)[a];o&&o(e,t,n,r)}const pI=["ctrl","shift","alt","meta"],mI={stop:e=>e.stopPropagation(),prevent:e=>e.preventDefault(),self:e=>e.target!==e.currentTarget,ctrl:e=>!e.ctrlKey,shift:e=>!e.shiftKey,alt:e=>!e.altKey,meta:e=>!e.metaKey,left:e=>"button"in e&&e.button!==0,middle:e=>"button"in e&&e.button!==1,right:e=>"button"in e&&e.button!==2,exact:(e,t)=>pI.some(n=>e[`${n}Key`]&&!t.includes(n))},Je=(e,t)=>(n,...r)=>{for(let a=0;an=>{if(!("key"in n))return;const r=pa(n.key);if(t.some(a=>a===r||_I[a]===r))return e(n)},EI=Bt({patchProp:iI},jO);let j0;function sh(){return j0||(j0=IO(EI))}const hI=(...e)=>{sh().render(...e)},TI=(...e)=>{const t=sh().createApp(...e),{mount:n}=t;return t.mount=r=>{const a=gI(r);if(!a)return;const s=t._component;!ze(s)&&!s.render&&!s.template&&(s.template=a.innerHTML),a.innerHTML="";const o=n(a,!1,a instanceof SVGElement);return a instanceof Element&&(a.removeAttribute("v-cloak"),a.setAttribute("data-v-app","")),o},t};function gI(e){return Pt(e)?document.querySelector(e):e}var AI=Object.defineProperty,SI=Object.defineProperties,OI=Object.getOwnPropertyDescriptors,Ki=Object.getOwnPropertySymbols,oh=Object.prototype.hasOwnProperty,ih=Object.prototype.propertyIsEnumerable,K0=(e,t,n)=>t in e?AI(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,Jo=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{},uh=function(e){return e},II=function(e,t,n){switch(n.length){case 0:return e.call(t);case 1:return e.call(t,n[0]);case 2:return e.call(t,n[0],n[1]);case 3:return e.call(t,n[0],n[1],n[2])}return e.apply(t,n)},Y0=Math.max,vI=function(e,t,n){return t=Y0(t===void 0?e.length-1:t,0),function(){for(var r=arguments,a=-1,s=Y0(r.length-t,0),o=Array(s);++a0){if(++t>=800)return arguments[0]}else t=0;return e.apply(void 0,arguments)}}(JI),nv=uh,rv=vI,av=tv,sv=function(e,t){return av(rv(e,t,nv),e+"")},fh=function(e,t){return e===t||e!=e&&t!=t},ph=function(e){return typeof e=="number"&&e>-1&&e%1==0&&e<=9007199254740991},ov=dh,iv=ph,mh=function(e){return e!=null&&iv(e.length)&&!ov(e)},uv=/^(?:0|[1-9]\d*)$/,_h=function(e,t){var n=typeof e;return!!(t=t??9007199254740991)&&(n=="number"||n!="symbol"&&uv.test(e))&&e>-1&&e%1==0&&e2?t[2]:void 0;for(a&&Yv(t[0],t[1],a)&&(r=1);++ne.pageOnly||!Zn.isEnabled),s=$(()=>(a.value||e.teleport)&&r.isFullscreen?{position:"fixed",left:"0",top:"0",width:"100%",height:"100%"}:void 0);function o(){t("change",r.isFullscreen),t("update:modelValue",r.isFullscreen),t("update:fullscreen",r.isFullscreen)}function i(){Zn.isFullscreen||Zn.off("change",i),r.isFullscreen=Zn.isFullscreen,o()}function u(d){d.key==="Escape"&&l()}function c(){a.value?(r.isFullscreen=!0,o(),document.removeEventListener("keyup",u),document.addEventListener("keyup",u)):(Zn.off("change",i),Zn.on("change",i),Zn.request(e.teleport?document.body:n.value))}function l(){r.isFullscreen&&(a.value?(r.isFullscreen=!1,o(),document.removeEventListener("keyup",u)):Zn.exit())}return He(()=>e.fullscreen,d=>{d!==r.isFullscreen&&(d?c():l())}),He(()=>e.modelValue,d=>{d!==r.isFullscreen&&(d?c():l())}),f=((d,m)=>{for(var _ in m||(m={}))oh.call(m,_)&&K0(d,_,m[_]);if(Ki)for(var _ of Ki(m))ih.call(m,_)&&K0(d,_,m[_]);return d})({wrapper:n,wrapperStyle:s},ge(r)),SI(f,OI({toggle:function(d){d===void 0?r.isFullscreen?l():c():d?c():l()},request:c,exit:l,shadeClick:function(d){d.target===n.value&&e.exitOnClickWrapper&&l()}}));var f}});Ah.render=function(e,t,n,r,a,s){return g(),re(DO,{to:"body",disabled:!e.teleport||!e.fullscreen},[U("div",eh({ref:"wrapper"},e.$attrs,{style:e.wrapperStyle,class:{[e.fullscreenClass]:e.isFullscreen},onClick:t[1]||(t[1]=o=>e.shadeClick(o))}),[Ka(e.$slots,"default")],16)],8,["disabled"])};const Qv=typeof window<"u"&&window!==null;(function(){if(Qv&&"IntersectionObserver"in window&&"IntersectionObserverEntry"in window&&"intersectionRatio"in window.IntersectionObserverEntry.prototype)return"isIntersecting"in window.IntersectionObserverEntry.prototype||Object.defineProperty(window.IntersectionObserverEntry.prototype,"isIntersecting",{get(){return this.intersectionRatio>0}}),!0})();const Jv=Object.prototype.propertyIsEnumerable,op=Object.getOwnPropertySymbols;function Ri(e){return typeof e=="function"||toString.call(e)==="[object Object]"}function e2(e){return e!=="__proto__"&&e!=="constructor"&&e!=="prototype"}function t2(e,...t){if(!Ri(e))throw new TypeError("expected the first argument to be an object");if(t.length===0||typeof Symbol!="function"||typeof op!="function")return e;for(const n of t){const r=op(n);for(const a of r)Jv.call(n,a)&&(e[a]=n[a])}return e}function Zd(e,...t){let n=0;var r;for((typeof(r=e)=="object"?r===null:typeof r!="function")&&(e=t[n++]),e||(e={});n{r.key==="Escape"&&(document.removeEventListener("keyup",n),this.exit())};return this.isFullscreen=!0,this.element=e,document.removeEventListener("keyup",n),document.addEventListener("keyup",n),this.options.callback&&this.options.callback(this.isFullscreen),Promise.resolve()}{const n=()=>{Mn.isFullscreen||(Mn.off("change",n),up(this)),this.isFullscreen=Mn.isFullscreen,this.options.teleport?this.element=e||null:this.element=Mn.element,this.options.callback&&this.options.callback(Mn.isFullscreen)};return Mn.on("change",n),Mn.request(this.options.teleport?document.body:e)}},exit(){return this.isFullscreen?this.options.pageOnly?(up(this),this.isFullscreen=!1,this.element=null,this.options.callback&&this.options.callback(this.isFullscreen),Promise.resolve()):Mn.exit():Promise.resolve()}},n2=(e,t,n)=>{const r=()=>{let a;const s={teleport:t.modifiers.teleport,pageOnly:t.modifiers.pageOnly};if(t.value)if(typeof t.value=="string")a=t.value;else{const o=t.value,{target:i}=o,u=((c,l)=>{var f={};for(var d in c)oh.call(c,d)&&l.indexOf(d)<0&&(f[d]=c[d]);if(c!=null&&Ki)for(var d of Ki(c))l.indexOf(d)<0&&ih.call(c,d)&&(f[d]=c[d]);return f})(o,["target"]);a=i,Zd(s,u)}typeof a=="string"&&(a=document.querySelector(a)),Oh.toggle(a,s)};e._onClickFullScreen&&e.removeEventListener("click",e._onClickFullScreen),e.addEventListener("click",r),e._onClickFullScreen=r};var r2={install(e,{name:t="fullscreen"}={}){e.config.globalProperties[`$${t}`]=Oh,e.component(t,Zv(Ah,{name:t})),e.directive(t,n2)}};const Qd=e=>(dt("data-v-dd2dabd2"),e=e(),ft(),e),a2={id:"footer"},s2={class:"footer-items"},o2={class:"footer-item"},i2=Qd(()=>p("strong",null,"FitTrackee",-1)),u2=Qd(()=>p("div",{class:"footer-item bullet"},"•",-1)),c2={class:"footer-item"},l2={key:0,class:"footer-item bullet"},d2={key:1,class:"footer-item"},f2=["href"],p2=Qd(()=>p("div",{class:"footer-item bullet"},"•",-1)),m2={class:"footer-item"},_2=Q({__name:"Footer",props:{version:{},adminContact:{}},setup(e){const t=e,{adminContact:n,version:r}=ge(t);return(a,s)=>{const o=ue("router-link");return g(),N("footer",a2,[p("div",s2,[p("div",o2,[i2,K(" v"+h(E(r)),1)]),u2,p("div",c2,[U(o,{to:"/about"},{default:pe(()=>[K(h(a.$t("common.ABOUT")),1)]),_:1})]),E(n)?(g(),N("div",l2,"•")):x("",!0),E(n)?(g(),N("div",d2,[p("a",{href:`mailto:${E(n)}`},h(a.$t("common.CONTACT")),9,f2)])):x("",!0),p2,p("div",m2,[U(o,{to:"/privacy-policy"},{default:pe(()=>[K(h(a.$t("privacy_policy.TITLE")),1)]),_:1})])])])}}});const se=(e,t)=>{const n=e.__vccOpts||e;for(const[r,a]of t)n[r]=a;return n},E2=se(_2,[["__scopeId","data-v-dd2dabd2"]]);function Ih(e,t){return function(){return e.apply(t,arguments)}}const{toString:h2}=Object.prototype,{getPrototypeOf:Jd}=Object,Gu=(e=>t=>{const n=h2.call(t);return e[n]||(e[n]=n.slice(8,-1).toLowerCase())})(Object.create(null)),qn=e=>(e=e.toLowerCase(),t=>Gu(t)===e),zu=e=>t=>typeof t===e,{isArray:Es}=Array,oo=zu("undefined");function T2(e){return e!==null&&!oo(e)&&e.constructor!==null&&!oo(e.constructor)&&An(e.constructor.isBuffer)&&e.constructor.isBuffer(e)}const vh=qn("ArrayBuffer");function g2(e){let t;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?t=ArrayBuffer.isView(e):t=e&&e.buffer&&vh(e.buffer),t}const A2=zu("string"),An=zu("function"),bh=zu("number"),Bu=e=>e!==null&&typeof e=="object",S2=e=>e===!0||e===!1,Ni=e=>{if(Gu(e)!=="object")return!1;const t=Jd(e);return(t===null||t===Object.prototype||Object.getPrototypeOf(t)===null)&&!(Symbol.toStringTag in e)&&!(Symbol.iterator in e)},O2=qn("Date"),I2=qn("File"),v2=qn("Blob"),b2=qn("FileList"),R2=e=>Bu(e)&&An(e.pipe),N2=e=>{let t;return e&&(typeof FormData=="function"&&e instanceof FormData||An(e.append)&&((t=Gu(e))==="formdata"||t==="object"&&An(e.toString)&&e.toString()==="[object FormData]"))},y2=qn("URLSearchParams"),C2=e=>e.trim?e.trim():e.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function Co(e,t,{allOwnKeys:n=!1}={}){if(e===null||typeof e>"u")return;let r,a;if(typeof e!="object"&&(e=[e]),Es(e))for(r=0,a=e.length;r0;)if(a=n[r],t===a.toLowerCase())return a;return null}const Nh=(()=>typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global)(),yh=e=>!oo(e)&&e!==Nh;function hl(){const{caseless:e}=yh(this)&&this||{},t={},n=(r,a)=>{const s=e&&Rh(t,a)||a;Ni(t[s])&&Ni(r)?t[s]=hl(t[s],r):Ni(r)?t[s]=hl({},r):Es(r)?t[s]=r.slice():t[s]=r};for(let r=0,a=arguments.length;r(Co(t,(a,s)=>{n&&An(a)?e[s]=Ih(a,n):e[s]=a},{allOwnKeys:r}),e),P2=e=>(e.charCodeAt(0)===65279&&(e=e.slice(1)),e),w2=(e,t,n,r)=>{e.prototype=Object.create(t.prototype,r),e.prototype.constructor=e,Object.defineProperty(e,"super",{value:t.prototype}),n&&Object.assign(e.prototype,n)},L2=(e,t,n,r)=>{let a,s,o;const i={};if(t=t||{},e==null)return t;do{for(a=Object.getOwnPropertyNames(e),s=a.length;s-- >0;)o=a[s],(!r||r(o,e,t))&&!i[o]&&(t[o]=e[o],i[o]=!0);e=n!==!1&&Jd(e)}while(e&&(!n||n(e,t))&&e!==Object.prototype);return t},$2=(e,t,n)=>{e=String(e),(n===void 0||n>e.length)&&(n=e.length),n-=t.length;const r=e.indexOf(t,n);return r!==-1&&r===n},k2=e=>{if(!e)return null;if(Es(e))return e;let t=e.length;if(!bh(t))return null;const n=new Array(t);for(;t-- >0;)n[t]=e[t];return n},U2=(e=>t=>e&&t instanceof e)(typeof Uint8Array<"u"&&Jd(Uint8Array)),M2=(e,t)=>{const r=(e&&e[Symbol.iterator]).call(e);let a;for(;(a=r.next())&&!a.done;){const s=a.value;t.call(e,s[0],s[1])}},x2=(e,t)=>{let n;const r=[];for(;(n=e.exec(t))!==null;)r.push(n);return r},F2=qn("HTMLFormElement"),W2=e=>e.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(n,r,a){return r.toUpperCase()+a}),cp=(({hasOwnProperty:e})=>(t,n)=>e.call(t,n))(Object.prototype),G2=qn("RegExp"),Ch=(e,t)=>{const n=Object.getOwnPropertyDescriptors(e),r={};Co(n,(a,s)=>{let o;(o=t(a,s,e))!==!1&&(r[s]=o||a)}),Object.defineProperties(e,r)},z2=e=>{Ch(e,(t,n)=>{if(An(e)&&["arguments","caller","callee"].indexOf(n)!==-1)return!1;const r=e[n];if(An(r)){if(t.enumerable=!1,"writable"in t){t.writable=!1;return}t.set||(t.set=()=>{throw Error("Can not rewrite read-only method '"+n+"'")})}})},B2=(e,t)=>{const n={},r=a=>{a.forEach(s=>{n[s]=!0})};return Es(e)?r(e):r(String(e).split(t)),n},H2=()=>{},V2=(e,t)=>(e=+e,Number.isFinite(e)?e:t),Nc="abcdefghijklmnopqrstuvwxyz",lp="0123456789",Dh={DIGIT:lp,ALPHA:Nc,ALPHA_DIGIT:Nc+Nc.toUpperCase()+lp},j2=(e=16,t=Dh.ALPHA_DIGIT)=>{let n="";const{length:r}=t;for(;e--;)n+=t[Math.random()*r|0];return n};function K2(e){return!!(e&&An(e.append)&&e[Symbol.toStringTag]==="FormData"&&e[Symbol.iterator])}const Y2=e=>{const t=new Array(10),n=(r,a)=>{if(Bu(r)){if(t.indexOf(r)>=0)return;if(!("toJSON"in r)){t[a]=r;const s=Es(r)?[]:{};return Co(r,(o,i)=>{const u=n(o,a+1);!oo(u)&&(s[i]=u)}),t[a]=void 0,s}}return r};return n(e,0)},q2=qn("AsyncFunction"),X2=e=>e&&(Bu(e)||An(e))&&An(e.then)&&An(e.catch),ee={isArray:Es,isArrayBuffer:vh,isBuffer:T2,isFormData:N2,isArrayBufferView:g2,isString:A2,isNumber:bh,isBoolean:S2,isObject:Bu,isPlainObject:Ni,isUndefined:oo,isDate:O2,isFile:I2,isBlob:v2,isRegExp:G2,isFunction:An,isStream:R2,isURLSearchParams:y2,isTypedArray:U2,isFileList:b2,forEach:Co,merge:hl,extend:D2,trim:C2,stripBOM:P2,inherits:w2,toFlatObject:L2,kindOf:Gu,kindOfTest:qn,endsWith:$2,toArray:k2,forEachEntry:M2,matchAll:x2,isHTMLForm:F2,hasOwnProperty:cp,hasOwnProp:cp,reduceDescriptors:Ch,freezeMethods:z2,toObjectSet:B2,toCamelCase:W2,noop:H2,toFiniteNumber:V2,findKey:Rh,global:Nh,isContextDefined:yh,ALPHABET:Dh,generateString:j2,isSpecCompliantForm:K2,toJSONObject:Y2,isAsyncFn:q2,isThenable:X2};function nt(e,t,n,r,a){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack,this.message=e,this.name="AxiosError",t&&(this.code=t),n&&(this.config=n),r&&(this.request=r),a&&(this.response=a)}ee.inherits(nt,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:ee.toJSONObject(this.config),code:this.code,status:this.response&&this.response.status?this.response.status:null}}});const Ph=nt.prototype,wh={};["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(e=>{wh[e]={value:e}});Object.defineProperties(nt,wh);Object.defineProperty(Ph,"isAxiosError",{value:!0});nt.from=(e,t,n,r,a,s)=>{const o=Object.create(Ph);return ee.toFlatObject(e,o,function(u){return u!==Error.prototype},i=>i!=="isAxiosError"),nt.call(o,e.message,t,n,r,a),o.cause=e,o.name=e.name,s&&Object.assign(o,s),o};const Z2=null;function Tl(e){return ee.isPlainObject(e)||ee.isArray(e)}function Lh(e){return ee.endsWith(e,"[]")?e.slice(0,-2):e}function dp(e,t,n){return e?e.concat(t).map(function(a,s){return a=Lh(a),!n&&s?"["+a+"]":a}).join(n?".":""):t}function Q2(e){return ee.isArray(e)&&!e.some(Tl)}const J2=ee.toFlatObject(ee,{},null,function(t){return/^is[A-Z]/.test(t)});function Hu(e,t,n){if(!ee.isObject(e))throw new TypeError("target must be an object");t=t||new FormData,n=ee.toFlatObject(n,{metaTokens:!0,dots:!1,indexes:!1},!1,function(A,R){return!ee.isUndefined(R[A])});const r=n.metaTokens,a=n.visitor||l,s=n.dots,o=n.indexes,u=(n.Blob||typeof Blob<"u"&&Blob)&&ee.isSpecCompliantForm(t);if(!ee.isFunction(a))throw new TypeError("visitor must be a function");function c(_){if(_===null)return"";if(ee.isDate(_))return _.toISOString();if(!u&&ee.isBlob(_))throw new nt("Blob is not supported. Use a Buffer instead.");return ee.isArrayBuffer(_)||ee.isTypedArray(_)?u&&typeof Blob=="function"?new Blob([_]):Buffer.from(_):_}function l(_,A,R){let I=_;if(_&&!R&&typeof _=="object"){if(ee.endsWith(A,"{}"))A=r?A:A.slice(0,-2),_=JSON.stringify(_);else if(ee.isArray(_)&&Q2(_)||(ee.isFileList(_)||ee.endsWith(A,"[]"))&&(I=ee.toArray(_)))return A=Lh(A),I.forEach(function(v,T){!(ee.isUndefined(v)||v===null)&&t.append(o===!0?dp([A],T,s):o===null?A:A+"[]",c(v))}),!1}return Tl(_)?!0:(t.append(dp(R,A,s),c(_)),!1)}const f=[],d=Object.assign(J2,{defaultVisitor:l,convertValue:c,isVisitable:Tl});function m(_,A){if(!ee.isUndefined(_)){if(f.indexOf(_)!==-1)throw Error("Circular reference detected in "+A.join("."));f.push(_),ee.forEach(_,function(I,b){(!(ee.isUndefined(I)||I===null)&&a.call(t,I,ee.isString(b)?b.trim():b,A,d))===!0&&m(I,A?A.concat(b):[b])}),f.pop()}}if(!ee.isObject(e))throw new TypeError("data must be an object");return m(e),t}function fp(e){const t={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(e).replace(/[!'()~]|%20|%00/g,function(r){return t[r]})}function ef(e,t){this._pairs=[],e&&Hu(e,this,t)}const $h=ef.prototype;$h.append=function(t,n){this._pairs.push([t,n])};$h.toString=function(t){const n=t?function(r){return t.call(this,r,fp)}:fp;return this._pairs.map(function(a){return n(a[0])+"="+n(a[1])},"").join("&")};function eb(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function kh(e,t,n){if(!t)return e;const r=n&&n.encode||eb,a=n&&n.serialize;let s;if(a?s=a(t,n):s=ee.isURLSearchParams(t)?t.toString():new ef(t,n).toString(r),s){const o=e.indexOf("#");o!==-1&&(e=e.slice(0,o)),e+=(e.indexOf("?")===-1?"?":"&")+s}return e}class tb{constructor(){this.handlers=[]}use(t,n,r){return this.handlers.push({fulfilled:t,rejected:n,synchronous:r?r.synchronous:!1,runWhen:r?r.runWhen:null}),this.handlers.length-1}eject(t){this.handlers[t]&&(this.handlers[t]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(t){ee.forEach(this.handlers,function(r){r!==null&&t(r)})}}const pp=tb,Uh={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},nb=typeof URLSearchParams<"u"?URLSearchParams:ef,rb=typeof FormData<"u"?FormData:null,ab=typeof Blob<"u"?Blob:null,sb={isBrowser:!0,classes:{URLSearchParams:nb,FormData:rb,Blob:ab},protocols:["http","https","file","blob","url","data"]},Mh=typeof window<"u"&&typeof document<"u",ob=(e=>Mh&&["ReactNative","NativeScript","NS"].indexOf(e)<0)(typeof navigator<"u"&&navigator.product),ib=(()=>typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function")(),ub=Object.freeze(Object.defineProperty({__proto__:null,hasBrowserEnv:Mh,hasStandardBrowserEnv:ob,hasStandardBrowserWebWorkerEnv:ib},Symbol.toStringTag,{value:"Module"})),Vn={...ub,...sb};function cb(e,t){return Hu(e,new Vn.classes.URLSearchParams,Object.assign({visitor:function(n,r,a,s){return Vn.isNode&&ee.isBuffer(n)?(this.append(r,n.toString("base64")),!1):s.defaultVisitor.apply(this,arguments)}},t))}function lb(e){return ee.matchAll(/\w+|\[(\w*)]/g,e).map(t=>t[0]==="[]"?"":t[1]||t[0])}function db(e){const t={},n=Object.keys(e);let r;const a=n.length;let s;for(r=0;r=n.length;return o=!o&&ee.isArray(a)?a.length:o,u?(ee.hasOwnProp(a,o)?a[o]=[a[o],r]:a[o]=r,!i):((!a[o]||!ee.isObject(a[o]))&&(a[o]=[]),t(n,r,a[o],s)&&ee.isArray(a[o])&&(a[o]=db(a[o])),!i)}if(ee.isFormData(e)&&ee.isFunction(e.entries)){const n={};return ee.forEachEntry(e,(r,a)=>{t(lb(r),a,n,0)}),n}return null}function fb(e,t,n){if(ee.isString(e))try{return(t||JSON.parse)(e),ee.trim(e)}catch(r){if(r.name!=="SyntaxError")throw r}return(n||JSON.stringify)(e)}const tf={transitional:Uh,adapter:["xhr","http"],transformRequest:[function(t,n){const r=n.getContentType()||"",a=r.indexOf("application/json")>-1,s=ee.isObject(t);if(s&&ee.isHTMLForm(t)&&(t=new FormData(t)),ee.isFormData(t))return a&&a?JSON.stringify(xh(t)):t;if(ee.isArrayBuffer(t)||ee.isBuffer(t)||ee.isStream(t)||ee.isFile(t)||ee.isBlob(t))return t;if(ee.isArrayBufferView(t))return t.buffer;if(ee.isURLSearchParams(t))return n.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),t.toString();let i;if(s){if(r.indexOf("application/x-www-form-urlencoded")>-1)return cb(t,this.formSerializer).toString();if((i=ee.isFileList(t))||r.indexOf("multipart/form-data")>-1){const u=this.env&&this.env.FormData;return Hu(i?{"files[]":t}:t,u&&new u,this.formSerializer)}}return s||a?(n.setContentType("application/json",!1),fb(t)):t}],transformResponse:[function(t){const n=this.transitional||tf.transitional,r=n&&n.forcedJSONParsing,a=this.responseType==="json";if(t&&ee.isString(t)&&(r&&!this.responseType||a)){const o=!(n&&n.silentJSONParsing)&&a;try{return JSON.parse(t)}catch(i){if(o)throw i.name==="SyntaxError"?nt.from(i,nt.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:Vn.classes.FormData,Blob:Vn.classes.Blob},validateStatus:function(t){return t>=200&&t<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};ee.forEach(["delete","get","head","post","put","patch"],e=>{tf.headers[e]={}});const nf=tf,pb=ee.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"]),mb=e=>{const t={};let n,r,a;return e&&e.split(` +`).forEach(function(o){a=o.indexOf(":"),n=o.substring(0,a).trim().toLowerCase(),r=o.substring(a+1).trim(),!(!n||t[n]&&pb[n])&&(n==="set-cookie"?t[n]?t[n].push(r):t[n]=[r]:t[n]=t[n]?t[n]+", "+r:r)}),t},mp=Symbol("internals");function Cs(e){return e&&String(e).trim().toLowerCase()}function yi(e){return e===!1||e==null?e:ee.isArray(e)?e.map(yi):String(e)}function _b(e){const t=Object.create(null),n=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let r;for(;r=n.exec(e);)t[r[1]]=r[2];return t}const Eb=e=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(e.trim());function yc(e,t,n,r,a){if(ee.isFunction(r))return r.call(this,t,n);if(a&&(t=n),!!ee.isString(t)){if(ee.isString(r))return t.indexOf(r)!==-1;if(ee.isRegExp(r))return r.test(t)}}function hb(e){return e.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(t,n,r)=>n.toUpperCase()+r)}function Tb(e,t){const n=ee.toCamelCase(" "+t);["get","set","has"].forEach(r=>{Object.defineProperty(e,r+n,{value:function(a,s,o){return this[r].call(this,t,a,s,o)},configurable:!0})})}class Vu{constructor(t){t&&this.set(t)}set(t,n,r){const a=this;function s(i,u,c){const l=Cs(u);if(!l)throw new Error("header name must be a non-empty string");const f=ee.findKey(a,l);(!f||a[f]===void 0||c===!0||c===void 0&&a[f]!==!1)&&(a[f||u]=yi(i))}const o=(i,u)=>ee.forEach(i,(c,l)=>s(c,l,u));return ee.isPlainObject(t)||t instanceof this.constructor?o(t,n):ee.isString(t)&&(t=t.trim())&&!Eb(t)?o(mb(t),n):t!=null&&s(n,t,r),this}get(t,n){if(t=Cs(t),t){const r=ee.findKey(this,t);if(r){const a=this[r];if(!n)return a;if(n===!0)return _b(a);if(ee.isFunction(n))return n.call(this,a,r);if(ee.isRegExp(n))return n.exec(a);throw new TypeError("parser must be boolean|regexp|function")}}}has(t,n){if(t=Cs(t),t){const r=ee.findKey(this,t);return!!(r&&this[r]!==void 0&&(!n||yc(this,this[r],r,n)))}return!1}delete(t,n){const r=this;let a=!1;function s(o){if(o=Cs(o),o){const i=ee.findKey(r,o);i&&(!n||yc(r,r[i],i,n))&&(delete r[i],a=!0)}}return ee.isArray(t)?t.forEach(s):s(t),a}clear(t){const n=Object.keys(this);let r=n.length,a=!1;for(;r--;){const s=n[r];(!t||yc(this,this[s],s,t,!0))&&(delete this[s],a=!0)}return a}normalize(t){const n=this,r={};return ee.forEach(this,(a,s)=>{const o=ee.findKey(r,s);if(o){n[o]=yi(a),delete n[s];return}const i=t?hb(s):String(s).trim();i!==s&&delete n[s],n[i]=yi(a),r[i]=!0}),this}concat(...t){return this.constructor.concat(this,...t)}toJSON(t){const n=Object.create(null);return ee.forEach(this,(r,a)=>{r!=null&&r!==!1&&(n[a]=t&&ee.isArray(r)?r.join(", "):r)}),n}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map(([t,n])=>t+": "+n).join(` +`)}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(t){return t instanceof this?t:new this(t)}static concat(t,...n){const r=new this(t);return n.forEach(a=>r.set(a)),r}static accessor(t){const r=(this[mp]=this[mp]={accessors:{}}).accessors,a=this.prototype;function s(o){const i=Cs(o);r[i]||(Tb(a,o),r[i]=!0)}return ee.isArray(t)?t.forEach(s):s(t),this}}Vu.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]);ee.reduceDescriptors(Vu.prototype,({value:e},t)=>{let n=t[0].toUpperCase()+t.slice(1);return{get:()=>e,set(r){this[n]=r}}});ee.freezeMethods(Vu);const cr=Vu;function Cc(e,t){const n=this||nf,r=t||n,a=cr.from(r.headers);let s=r.data;return ee.forEach(e,function(i){s=i.call(n,s,a.normalize(),t?t.status:void 0)}),a.normalize(),s}function Fh(e){return!!(e&&e.__CANCEL__)}function Do(e,t,n){nt.call(this,e??"canceled",nt.ERR_CANCELED,t,n),this.name="CanceledError"}ee.inherits(Do,nt,{__CANCEL__:!0});function gb(e,t,n){const r=n.config.validateStatus;!n.status||!r||r(n.status)?e(n):t(new nt("Request failed with status code "+n.status,[nt.ERR_BAD_REQUEST,nt.ERR_BAD_RESPONSE][Math.floor(n.status/100)-4],n.config,n.request,n))}const Ab=Vn.hasStandardBrowserEnv?function(){return{write:function(n,r,a,s,o,i){const u=[];u.push(n+"="+encodeURIComponent(r)),ee.isNumber(a)&&u.push("expires="+new Date(a).toGMTString()),ee.isString(s)&&u.push("path="+s),ee.isString(o)&&u.push("domain="+o),i===!0&&u.push("secure"),document.cookie=u.join("; ")},read:function(n){const r=document.cookie.match(new RegExp("(^|;\\s*)("+n+")=([^;]*)"));return r?decodeURIComponent(r[3]):null},remove:function(n){this.write(n,"",Date.now()-864e5)}}}():function(){return{write:function(){},read:function(){return null},remove:function(){}}}();function Sb(e){return/^([a-z][a-z\d+\-.]*:)?\/\//i.test(e)}function Ob(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}function Wh(e,t){return e&&!Sb(t)?Ob(e,t):t}const Ib=Vn.hasStandardBrowserEnv?function(){const t=/(msie|trident)/i.test(navigator.userAgent),n=document.createElement("a");let r;function a(s){let o=s;return t&&(n.setAttribute("href",o),o=n.href),n.setAttribute("href",o),{href:n.href,protocol:n.protocol?n.protocol.replace(/:$/,""):"",host:n.host,search:n.search?n.search.replace(/^\?/,""):"",hash:n.hash?n.hash.replace(/^#/,""):"",hostname:n.hostname,port:n.port,pathname:n.pathname.charAt(0)==="/"?n.pathname:"/"+n.pathname}}return r=a(window.location.href),function(o){const i=ee.isString(o)?a(o):o;return i.protocol===r.protocol&&i.host===r.host}}():function(){return function(){return!0}}();function vb(e){const t=/^([-+\w]{1,25})(:?\/\/|:)/.exec(e);return t&&t[1]||""}function bb(e,t){e=e||10;const n=new Array(e),r=new Array(e);let a=0,s=0,o;return t=t!==void 0?t:1e3,function(u){const c=Date.now(),l=r[s];o||(o=c),n[a]=u,r[a]=c;let f=s,d=0;for(;f!==a;)d+=n[f++],f=f%e;if(a=(a+1)%e,a===s&&(s=(s+1)%e),c-o{const s=a.loaded,o=a.lengthComputable?a.total:void 0,i=s-n,u=r(i),c=s<=o;n=s;const l={loaded:s,total:o,progress:o?s/o:void 0,bytes:i,rate:u||void 0,estimated:u&&o&&c?(o-s)/u:void 0,event:a};l[t?"download":"upload"]=!0,e(l)}}const Rb=typeof XMLHttpRequest<"u",Nb=Rb&&function(e){return new Promise(function(n,r){let a=e.data;const s=cr.from(e.headers).normalize(),o=e.responseType;let i;function u(){e.cancelToken&&e.cancelToken.unsubscribe(i),e.signal&&e.signal.removeEventListener("abort",i)}let c;if(ee.isFormData(a)){if(Vn.hasStandardBrowserEnv||Vn.hasStandardBrowserWebWorkerEnv)s.setContentType(!1);else if((c=s.getContentType())!==!1){const[_,...A]=c?c.split(";").map(R=>R.trim()).filter(Boolean):[];s.setContentType([_||"multipart/form-data",...A].join("; "))}}let l=new XMLHttpRequest;if(e.auth){const _=e.auth.username||"",A=e.auth.password?unescape(encodeURIComponent(e.auth.password)):"";s.set("Authorization","Basic "+btoa(_+":"+A))}const f=Wh(e.baseURL,e.url);l.open(e.method.toUpperCase(),kh(f,e.params,e.paramsSerializer),!0),l.timeout=e.timeout;function d(){if(!l)return;const _=cr.from("getAllResponseHeaders"in l&&l.getAllResponseHeaders()),R={data:!o||o==="text"||o==="json"?l.responseText:l.response,status:l.status,statusText:l.statusText,headers:_,config:e,request:l};gb(function(b){n(b),u()},function(b){r(b),u()},R),l=null}if("onloadend"in l?l.onloadend=d:l.onreadystatechange=function(){!l||l.readyState!==4||l.status===0&&!(l.responseURL&&l.responseURL.indexOf("file:")===0)||setTimeout(d)},l.onabort=function(){l&&(r(new nt("Request aborted",nt.ECONNABORTED,e,l)),l=null)},l.onerror=function(){r(new nt("Network Error",nt.ERR_NETWORK,e,l)),l=null},l.ontimeout=function(){let A=e.timeout?"timeout of "+e.timeout+"ms exceeded":"timeout exceeded";const R=e.transitional||Uh;e.timeoutErrorMessage&&(A=e.timeoutErrorMessage),r(new nt(A,R.clarifyTimeoutError?nt.ETIMEDOUT:nt.ECONNABORTED,e,l)),l=null},Vn.hasStandardBrowserEnv){const _=Ib(f)&&e.xsrfCookieName&&Ab.read(e.xsrfCookieName);_&&s.set(e.xsrfHeaderName,_)}a===void 0&&s.setContentType(null),"setRequestHeader"in l&&ee.forEach(s.toJSON(),function(A,R){l.setRequestHeader(R,A)}),ee.isUndefined(e.withCredentials)||(l.withCredentials=!!e.withCredentials),o&&o!=="json"&&(l.responseType=e.responseType),typeof e.onDownloadProgress=="function"&&l.addEventListener("progress",_p(e.onDownloadProgress,!0)),typeof e.onUploadProgress=="function"&&l.upload&&l.upload.addEventListener("progress",_p(e.onUploadProgress)),(e.cancelToken||e.signal)&&(i=_=>{l&&(r(!_||_.type?new Do(null,e,l):_),l.abort(),l=null)},e.cancelToken&&e.cancelToken.subscribe(i),e.signal&&(e.signal.aborted?i():e.signal.addEventListener("abort",i)));const m=vb(f);if(m&&Vn.protocols.indexOf(m)===-1){r(new nt("Unsupported protocol "+m+":",nt.ERR_BAD_REQUEST,e));return}l.send(a||null)})},gl={http:Z2,xhr:Nb};ee.forEach(gl,(e,t)=>{if(e){try{Object.defineProperty(e,"name",{value:t})}catch{}Object.defineProperty(e,"adapterName",{value:t})}});const Ep=e=>`- ${e}`,yb=e=>ee.isFunction(e)||e===null||e===!1,Gh={getAdapter:e=>{e=ee.isArray(e)?e:[e];const{length:t}=e;let n,r;const a={};for(let s=0;s`adapter ${i} `+(u===!1?"is not supported by the environment":"is not available in the build"));let o=t?s.length>1?`since : +`+s.map(Ep).join(` +`):" "+Ep(s[0]):"as no adapter specified";throw new nt("There is no suitable adapter to dispatch the request "+o,"ERR_NOT_SUPPORT")}return r},adapters:gl};function Dc(e){if(e.cancelToken&&e.cancelToken.throwIfRequested(),e.signal&&e.signal.aborted)throw new Do(null,e)}function hp(e){return Dc(e),e.headers=cr.from(e.headers),e.data=Cc.call(e,e.transformRequest),["post","put","patch"].indexOf(e.method)!==-1&&e.headers.setContentType("application/x-www-form-urlencoded",!1),Gh.getAdapter(e.adapter||nf.adapter)(e).then(function(r){return Dc(e),r.data=Cc.call(e,e.transformResponse,r),r.headers=cr.from(r.headers),r},function(r){return Fh(r)||(Dc(e),r&&r.response&&(r.response.data=Cc.call(e,e.transformResponse,r.response),r.response.headers=cr.from(r.response.headers))),Promise.reject(r)})}const Tp=e=>e instanceof cr?e.toJSON():e;function Za(e,t){t=t||{};const n={};function r(c,l,f){return ee.isPlainObject(c)&&ee.isPlainObject(l)?ee.merge.call({caseless:f},c,l):ee.isPlainObject(l)?ee.merge({},l):ee.isArray(l)?l.slice():l}function a(c,l,f){if(ee.isUndefined(l)){if(!ee.isUndefined(c))return r(void 0,c,f)}else return r(c,l,f)}function s(c,l){if(!ee.isUndefined(l))return r(void 0,l)}function o(c,l){if(ee.isUndefined(l)){if(!ee.isUndefined(c))return r(void 0,c)}else return r(void 0,l)}function i(c,l,f){if(f in t)return r(c,l);if(f in e)return r(void 0,c)}const u={url:s,method:s,data:s,baseURL:o,transformRequest:o,transformResponse:o,paramsSerializer:o,timeout:o,timeoutMessage:o,withCredentials:o,adapter:o,responseType:o,xsrfCookieName:o,xsrfHeaderName:o,onUploadProgress:o,onDownloadProgress:o,decompress:o,maxContentLength:o,maxBodyLength:o,beforeRedirect:o,transport:o,httpAgent:o,httpsAgent:o,cancelToken:o,socketPath:o,responseEncoding:o,validateStatus:i,headers:(c,l)=>a(Tp(c),Tp(l),!0)};return ee.forEach(Object.keys(Object.assign({},e,t)),function(l){const f=u[l]||a,d=f(e[l],t[l],l);ee.isUndefined(d)&&f!==i||(n[l]=d)}),n}const zh="1.6.1",rf={};["object","boolean","number","function","string","symbol"].forEach((e,t)=>{rf[e]=function(r){return typeof r===e||"a"+(t<1?"n ":" ")+e}});const gp={};rf.transitional=function(t,n,r){function a(s,o){return"[Axios v"+zh+"] Transitional option '"+s+"'"+o+(r?". "+r:"")}return(s,o,i)=>{if(t===!1)throw new nt(a(o," has been removed"+(n?" in "+n:"")),nt.ERR_DEPRECATED);return n&&!gp[o]&&(gp[o]=!0,console.warn(a(o," has been deprecated since v"+n+" and will be removed in the near future"))),t?t(s,o,i):!0}};function Cb(e,t,n){if(typeof e!="object")throw new nt("options must be an object",nt.ERR_BAD_OPTION_VALUE);const r=Object.keys(e);let a=r.length;for(;a-- >0;){const s=r[a],o=t[s];if(o){const i=e[s],u=i===void 0||o(i,s,e);if(u!==!0)throw new nt("option "+s+" must be "+u,nt.ERR_BAD_OPTION_VALUE);continue}if(n!==!0)throw new nt("Unknown option "+s,nt.ERR_BAD_OPTION)}}const Al={assertOptions:Cb,validators:rf},gr=Al.validators;class qi{constructor(t){this.defaults=t,this.interceptors={request:new pp,response:new pp}}request(t,n){typeof t=="string"?(n=n||{},n.url=t):n=t||{},n=Za(this.defaults,n);const{transitional:r,paramsSerializer:a,headers:s}=n;r!==void 0&&Al.assertOptions(r,{silentJSONParsing:gr.transitional(gr.boolean),forcedJSONParsing:gr.transitional(gr.boolean),clarifyTimeoutError:gr.transitional(gr.boolean)},!1),a!=null&&(ee.isFunction(a)?n.paramsSerializer={serialize:a}:Al.assertOptions(a,{encode:gr.function,serialize:gr.function},!0)),n.method=(n.method||this.defaults.method||"get").toLowerCase();let o=s&&ee.merge(s.common,s[n.method]);s&&ee.forEach(["delete","get","head","post","put","patch","common"],_=>{delete s[_]}),n.headers=cr.concat(o,s);const i=[];let u=!0;this.interceptors.request.forEach(function(A){typeof A.runWhen=="function"&&A.runWhen(n)===!1||(u=u&&A.synchronous,i.unshift(A.fulfilled,A.rejected))});const c=[];this.interceptors.response.forEach(function(A){c.push(A.fulfilled,A.rejected)});let l,f=0,d;if(!u){const _=[hp.bind(this),void 0];for(_.unshift.apply(_,i),_.push.apply(_,c),d=_.length,l=Promise.resolve(n);f{if(!r._listeners)return;let s=r._listeners.length;for(;s-- >0;)r._listeners[s](a);r._listeners=null}),this.promise.then=a=>{let s;const o=new Promise(i=>{r.subscribe(i),s=i}).then(a);return o.cancel=function(){r.unsubscribe(s)},o},t(function(s,o,i){r.reason||(r.reason=new Do(s,o,i),n(r.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(t){if(this.reason){t(this.reason);return}this._listeners?this._listeners.push(t):this._listeners=[t]}unsubscribe(t){if(!this._listeners)return;const n=this._listeners.indexOf(t);n!==-1&&this._listeners.splice(n,1)}static source(){let t;return{token:new af(function(a){t=a}),cancel:t}}}const Db=af;function Pb(e){return function(n){return e.apply(null,n)}}function wb(e){return ee.isObject(e)&&e.isAxiosError===!0}const Sl={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(Sl).forEach(([e,t])=>{Sl[t]=e});const Lb=Sl;function Bh(e){const t=new Ci(e),n=Ih(Ci.prototype.request,t);return ee.extend(n,Ci.prototype,t,{allOwnKeys:!0}),ee.extend(n,t,null,{allOwnKeys:!0}),n.create=function(a){return Bh(Za(e,a))},n}const wt=Bh(nf);wt.Axios=Ci;wt.CanceledError=Do;wt.CancelToken=Db;wt.isCancel=Fh;wt.VERSION=zh;wt.toFormData=Hu;wt.AxiosError=nt;wt.Cancel=wt.CanceledError;wt.all=function(t){return Promise.all(t)};wt.spread=Pb;wt.isAxiosError=wb;wt.mergeConfig=Za;wt.AxiosHeaders=cr;wt.formToJSON=e=>xh(ee.isHTMLForm(e)?new FormData(e):e);wt.getAdapter=Gh.getAdapter;wt.HttpStatusCode=Lb;wt.default=wt;const Hh=wt;var Vh=(e=>(e.ACCEPT_PRIVACY_POLICY="ACCEPT_PRIVACY_POLICY",e.CHECK_AUTH_USER="CHECK_AUTH_USER",e.CONFIRM_ACCOUNT="CONFIRM_ACCOUNT",e.CONFIRM_EMAIL="CONFIRM_EMAIL",e.DELETE_ACCOUNT="DELETE_ACCOUNT",e.DELETE_PICTURE="DELETE_PICTURE",e.GET_REQUEST_DATA_EXPORT="GET_REQUEST_DATA_EXPORT",e.GET_USER_PROFILE="GET_USER_PROFILE",e.LOGIN_OR_REGISTER="LOGIN_OR_REGISTER",e.LOGOUT="LOGOUT",e.REQUEST_DATA_EXPORT="REQUEST_DATA_EXPORT",e.RESEND_ACCOUNT_CONFIRMATION_EMAIL="RESEND_ACCOUNT_CONFIRMATION_EMAIL",e.RESET_USER_PASSWORD="RESET_USER_PASSWORD",e.RESET_USER_SPORT_PREFERENCES="RESET_USER_SPORT_PREFERENCES",e.SEND_PASSWORD_RESET_REQUEST="SEND_PASSWORD_RESET_REQUEST",e.UPDATE_USER_ACCOUNT="UPDATE_USER_ACCOUNT",e.UPDATE_USER_PICTURE="UPDATE_USER_PICTURE",e.UPDATE_USER_PROFILE="UPDATE_USER_PROFILE",e.UPDATE_USER_PREFERENCES="UPDATE_USER_PREFERENCES",e.UPDATE_USER_SPORT_PREFERENCES="UPDATE_USER_SPORT_PREFERENCES",e))(Vh||{}),jh=(e=>(e.AUTH_TOKEN="AUTH_TOKEN",e.AUTH_USER_PROFILE="AUTH_USER_PROFILE",e.IS_ADMIN="IS_ADMIN",e.IS_AUTHENTICATED="IS_AUTHENTICATED",e.IS_SUCCESS="IS_SUCCESS",e.IS_REGISTRATION_SUCCESS="IS_REGISTRATION_SUCCESS",e.USER_LOADING="USER_LOADING",e.EXPORT_REQUEST="EXPORT_REQUEST",e))(jh||{}),Kh=(e=>(e.CLEAR_AUTH_USER_TOKEN="CLEAR_AUTH_USER_TOKEN",e.UPDATE_AUTH_TOKEN="UPDATE_AUTH_TOKEN",e.UPDATE_AUTH_USER_PROFILE="UPDATE_AUTH_USER_PROFILE",e.UPDATE_IS_SUCCESS="UPDATE_USER_IS_SUCCESS",e.UPDATE_IS_REGISTRATION_SUCCESS="UPDATE_IS_REGISTRATION_SUCCESS",e.UPDATE_USER_LOADING="UPDATE_USER_LOADING",e.SET_EXPORT_REQUEST="SET_EXPORT_REQUEST",e))(Kh||{}),Yh=(e=>(e.AUTHORIZE_CLIENT="AUTHORIZE_CLIENT",e.CREATE_CLIENT="CREATE_CLIENT",e.DELETE_CLIENT="DELETE_CLIENT",e.GET_CLIENTS="GET_CLIENTS",e.GET_CLIENT_BY_CLIENT_ID="GET_CLIENT_BY_CLIENT_ID",e.GET_CLIENT_BY_ID="GET_CLIENT_BY_ID",e.REVOKE_ALL_TOKENS="REVOKE_ALL_TOKENS",e))(Yh||{}),qh=(e=>(e.CLIENT="CLIENT",e.CLIENTS="CLIENTS",e.CLIENTS_PAGINATION="CLIENTS_PAGINATION",e.REVOCATION_SUCCESSFUL="REVOCATION_SUCCESSFUL",e))(qh||{}),Xh=(e=>(e.EMPTY_CLIENT="EMPTY_CLIENT",e.SET_CLIENT="SET_CLIENT",e.SET_CLIENTS="SET_CLIENTS",e.SET_CLIENTS_PAGINATION="SET_CLIENTS_PAGINATION",e.SET_REVOCATION_SUCCESSFUL="SET_REVOCATION_SUCCESSFUL",e))(Xh||{}),Zh=(e=>(e.GET_APPLICATION_CONFIG="GET_APPLICATION_CONFIG",e.GET_APPLICATION_PRIVACY_POLICY="GET_APPLICATION_PRIVACY_POLICY",e.GET_APPLICATION_STATS="GET_APPLICATION_STATS",e.UPDATE_APPLICATION_CONFIG="UPDATE_APPLICATION_CONFIG",e.UPDATE_APPLICATION_LANGUAGE="UPDATE_APPLICATION_LANGUAGE",e))(Zh||{}),Qh=(e=>(e.APP_CONFIG="APP_CONFIG",e.APP_LOADING="APP_LOADING",e.APP_STATS="APP_STATS",e.ERROR_MESSAGES="ERROR_MESSAGES",e.LANGUAGE="LANGUAGE",e.LOCALE="LOCALE",e))(Qh||{}),Jh=(e=>(e.EMPTY_ERROR_MESSAGES="EMPTY_ERROR_MESSAGES",e.SET_ERROR_MESSAGES="SET_ERROR_MESSAGES",e.UPDATE_APPLICATION_CONFIG="UPDATE_APPLICATION_CONFIG",e.UPDATE_APPLICATION_LOADING="UPDATE_APPLICATION_LOADING",e.UPDATE_APPLICATION_PRIVACY_POLICY="UPDATE_APPLICATION_PRIVACY_POLICY",e.UPDATE_APPLICATION_STATS="UPDATE_APPLICATION_STATS",e.UPDATE_LANG="UPDATE_LANG",e))(Jh||{}),e1=(e=>(e.GET_SPORTS="GET_SPORTS",e.UPDATE_SPORTS="UPDATE_SPORTS",e))(e1||{}),t1=(e=>(e.SPORTS="SPORTS",e))(t1||{}),n1=(e=>(e.SET_SPORTS="SET_SPORTS",e))(n1||{}),r1=(e=>(e.GET_USER_STATS="GET_USER_STATS",e))(r1||{}),a1=(e=>(e.USER_STATS="USER_STATS",e))(a1||{}),s1=(e=>(e.EMPTY_USER_STATS="EMPTY_USER_STATS",e.UPDATE_USER_STATS="UPDATE_USER_STATS",e))(s1||{}),o1=(e=>(e.EMPTY_USER="EMPTY_USER",e.EMPTY_USERS="EMPTY_USERS",e.GET_USER="GET_USER",e.GET_USERS="GET_USERS",e.UPDATE_USER="UPDATE_USER",e.DELETE_USER_ACCOUNT="DELETE_USER_ACCOUNT",e))(o1||{}),i1=(e=>(e.USER="USER",e.USERS="USERS",e.USERS_IS_SUCCESS="USERS_IS_SUCCESS",e.USERS_LOADING="USERS_LOADING",e.USERS_PAGINATION="USERS_PAGINATION",e))(i1||{}),u1=(e=>(e.UPDATE_USER="UPDATE_USER",e.UPDATE_USER_IN_USERS="UPDATE_USER_IN_USERS",e.UPDATE_USERS="UPDATE_USERS",e.UPDATE_USERS_LOADING="UPDATE_USERS_LOADING",e.UPDATE_USERS_PAGINATION="UPDATE_USERS_PAGINATION",e.UPDATE_IS_SUCCESS="UPDATE_IS_SUCCESS",e))(u1||{}),c1=(e=>(e.ADD_WORKOUT="ADD_WORKOUT",e.ADD_WORKOUT_WITHOUT_GPX="ADD_WORKOUT_WITHOUT_GPX",e.DELETE_WORKOUT="DELETE_WORKOUT",e.EDIT_WORKOUT="EDIT_WORKOUT",e.GET_CALENDAR_WORKOUTS="GET_CALENDAR_WORKOUTS",e.GET_USER_WORKOUTS="GET_USER_WORKOUTS",e.GET_TIMELINE_WORKOUTS="GET_TIMELINE_WORKOUTS",e.GET_MORE_TIMELINE_WORKOUTS="GET_MORE_TIMELINE_WORKOUTS",e.GET_WORKOUT_DATA="GET_WORKOUT_DATA",e))(c1||{}),l1=(e=>(e.CALENDAR_WORKOUTS="CALENDAR_WORKOUTS",e.TIMELINE_WORKOUTS="TIMELINE_WORKOUTS",e.USER_WORKOUTS="USER_WORKOUTS",e.WORKOUT_DATA="WORKOUT_DATA",e.WORKOUTS_PAGINATION="WORKOUTS_PAGINATION",e))(l1||{}),ra=(e=>(e.ADD_TIMELINE_WORKOUTS="ADD_TIMELINE_WORKOUTS",e.EMPTY_WORKOUTS="EMPTY_WORKOUTS",e.EMPTY_CALENDAR_WORKOUTS="EMPTY_CALENDAR_WORKOUTS",e.EMPTY_WORKOUT="EMPTY_WORKOUT",e.SET_CALENDAR_WORKOUTS="SET_CALENDAR_WORKOUTS",e.SET_TIMELINE_WORKOUTS="SET_TIMELINE_WORKOUTS",e.SET_USER_WORKOUTS="SET_USER_WORKOUTS",e.SET_WORKOUT="SET_WORKOUT",e.SET_WORKOUT_GPX="SET_WORKOUT_GPX",e.SET_WORKOUT_CHART_DATA="SET_WORKOUT_CHART_DATA",e.SET_WORKOUT_LOADING="SET_WORKOUT_LOADING",e.SET_WORKOUTS_PAGINATION="SET_WORKOUTS_PAGINATION",e))(ra||{});const j={ACTIONS:Zh,GETTERS:Qh,MUTATIONS:Jh},Wt={ACTIONS:e1,GETTERS:t1,MUTATIONS:n1},xr={ACTIONS:r1,GETTERS:a1,MUTATIONS:s1},Y={ACTIONS:Vh,GETTERS:jh,MUTATIONS:Kh},Ye={ACTIONS:Yh,GETTERS:qh,MUTATIONS:Xh},Le={ACTIONS:o1,GETTERS:i1,MUTATIONS:u1},Ae={ACTIONS:c1,GETTERS:l1,MUTATIONS:ra},Po=()=>"/api/",Ee=(e,t,n="UNKNOWN")=>{var s;if(t&&t.message==="canceled")return;const r=t!=null&&t.response&&t.response.data?t.response.data:null;if(((s=t==null?void 0:t.response)==null?void 0:s.status)===401&&(r==null?void 0:r.error)==="invalid_token"){localStorage.removeItem("authToken"),e.dispatch(Y.ACTIONS.CHECK_AUTH_USER);return}const a=t?t.response?t.response.status===413?"file size is greater than the allowed size":r!=null&&r.message?r.message:n:t.message?t.message:n:n;e.commit(j.MUTATIONS.SET_ERROR_MESSAGES,a.includes(` +`)?a.split(` +`).filter(o=>o!=="").map(o=>`api.ERROR.${o}`):`api.ERROR.${a}`)},$b={class:"user-picture"},kb=["alt","src"],Ub={key:1,class:"no-picture"},Mb=p("i",{class:"fa fa-user-circle-o","aria-hidden":"true"},null,-1),xb=[Mb],wo=Q({__name:"UserPicture",props:{user:{}},setup(e){const t=e,n=$(()=>t.user.picture?`${Po()}users/${t.user.username}/picture?${Date.now()}`:"");return(r,a)=>(g(),N("div",$b,[n.value!==""?(g(),N("img",{key:0,class:"profile-user-img",alt:r.$t("user.USER_PICTURE"),src:n.value},null,8,kb)):(g(),N("div",Ub,xb))]))}});function Fb(){return d1().__VUE_DEVTOOLS_GLOBAL_HOOK__}function d1(){return typeof navigator<"u"&&typeof window<"u"?window:typeof global<"u"?global:{}}const Wb=typeof Proxy=="function",Gb="devtools-plugin:setup",zb="plugin:settings:set";let Ia,Ol;function Bb(){var e;return Ia!==void 0||(typeof window<"u"&&window.performance?(Ia=!0,Ol=window.performance):typeof global<"u"&&(!((e=global.perf_hooks)===null||e===void 0)&&e.performance)?(Ia=!0,Ol=global.perf_hooks.performance):Ia=!1),Ia}function Hb(){return Bb()?Ol.now():Date.now()}class Vb{constructor(t,n){this.target=null,this.targetQueue=[],this.onQueue=[],this.plugin=t,this.hook=n;const r={};if(t.settings)for(const o in t.settings){const i=t.settings[o];r[o]=i.defaultValue}const a=`__vue-devtools-plugin-settings__${t.id}`;let s=Object.assign({},r);try{const o=localStorage.getItem(a),i=JSON.parse(o);Object.assign(s,i)}catch{}this.fallbacks={getSettings(){return s},setSettings(o){try{localStorage.setItem(a,JSON.stringify(o))}catch{}s=o},now(){return Hb()}},n&&n.on(zb,(o,i)=>{o===this.plugin.id&&this.fallbacks.setSettings(i)}),this.proxiedOn=new Proxy({},{get:(o,i)=>this.target?this.target.on[i]:(...u)=>{this.onQueue.push({method:i,args:u})}}),this.proxiedTarget=new Proxy({},{get:(o,i)=>this.target?this.target[i]:i==="on"?this.proxiedOn:Object.keys(this.fallbacks).includes(i)?(...u)=>(this.targetQueue.push({method:i,args:u,resolve:()=>{}}),this.fallbacks[i](...u)):(...u)=>new Promise(c=>{this.targetQueue.push({method:i,args:u,resolve:c})})})}async setRealTarget(t){this.target=t;for(const n of this.onQueue)this.target.on[n.method](...n.args);for(const n of this.targetQueue)n.resolve(await this.target[n.method](...n.args))}}function jb(e,t){const n=e,r=d1(),a=Fb(),s=Wb&&n.enableEarlyProxy;if(a&&(r.__VUE_DEVTOOLS_PLUGIN_API_AVAILABLE__||!s))a.emit(Gb,e,t);else{const o=s?new Vb(n,a):null;(r.__VUE_DEVTOOLS_PLUGINS__=r.__VUE_DEVTOOLS_PLUGINS__||[]).push({pluginDescriptor:n,setupFn:t,proxy:o}),o&&t(o.proxiedTarget)}}/*! + * vuex v4.1.0 + * (c) 2022 Evan You + * @license MIT + */var f1="store";function Kb(e){return e===void 0&&(e=null),At(e!==null?e:f1)}function hs(e,t){Object.keys(e).forEach(function(n){return t(e[n],n)})}function Yb(e){return e!==null&&typeof e=="object"}function qb(e){return e&&typeof e.then=="function"}function Xb(e,t){return function(){return e(t)}}function p1(e,t,n){return t.indexOf(e)<0&&(n&&n.prepend?t.unshift(e):t.push(e)),function(){var r=t.indexOf(e);r>-1&&t.splice(r,1)}}function m1(e,t){e._actions=Object.create(null),e._mutations=Object.create(null),e._wrappedGetters=Object.create(null),e._modulesNamespaceMap=Object.create(null);var n=e.state;ju(e,n,[],e._modules.root,!0),sf(e,n,t)}function sf(e,t,n){var r=e._state,a=e._scope;e.getters={},e._makeLocalGettersCache=Object.create(null);var s=e._wrappedGetters,o={},i={},u=_E(!0);u.run(function(){hs(s,function(c,l){o[l]=Xb(c,e),i[l]=$(function(){return o[l]()}),Object.defineProperty(e.getters,l,{get:function(){return i[l].value},enumerable:!0})})}),e._state=Ht({data:t}),e._scope=u,e.strict&&tR(e),r&&n&&e._withCommit(function(){r.data=null}),a&&a.stop()}function ju(e,t,n,r,a){var s=!n.length,o=e._modules.getNamespace(n);if(r.namespaced&&(e._modulesNamespaceMap[o],e._modulesNamespaceMap[o]=r),!s&&!a){var i=of(t,n.slice(0,-1)),u=n[n.length-1];e._withCommit(function(){i[u]=r.state})}var c=r.context=Zb(e,o,n);r.forEachMutation(function(l,f){var d=o+f;Qb(e,d,l,c)}),r.forEachAction(function(l,f){var d=l.root?f:o+f,m=l.handler||l;Jb(e,d,m,c)}),r.forEachGetter(function(l,f){var d=o+f;eR(e,d,l,c)}),r.forEachChild(function(l,f){ju(e,t,n.concat(f),l,a)})}function Zb(e,t,n){var r=t==="",a={dispatch:r?e.dispatch:function(s,o,i){var u=Xi(s,o,i),c=u.payload,l=u.options,f=u.type;return(!l||!l.root)&&(f=t+f),e.dispatch(f,c)},commit:r?e.commit:function(s,o,i){var u=Xi(s,o,i),c=u.payload,l=u.options,f=u.type;(!l||!l.root)&&(f=t+f),e.commit(f,c,l)}};return Object.defineProperties(a,{getters:{get:r?function(){return e.getters}:function(){return _1(e,t)}},state:{get:function(){return of(e.state,n)}}}),a}function _1(e,t){if(!e._makeLocalGettersCache[t]){var n={},r=t.length;Object.keys(e.getters).forEach(function(a){if(a.slice(0,r)===t){var s=a.slice(r);Object.defineProperty(n,s,{get:function(){return e.getters[a]},enumerable:!0})}}),e._makeLocalGettersCache[t]=n}return e._makeLocalGettersCache[t]}function Qb(e,t,n,r){var a=e._mutations[t]||(e._mutations[t]=[]);a.push(function(o){n.call(e,r.state,o)})}function Jb(e,t,n,r){var a=e._actions[t]||(e._actions[t]=[]);a.push(function(o){var i=n.call(e,{dispatch:r.dispatch,commit:r.commit,getters:r.getters,state:r.state,rootGetters:e.getters,rootState:e.state},o);return qb(i)||(i=Promise.resolve(i)),e._devtoolHook?i.catch(function(u){throw e._devtoolHook.emit("vuex:error",u),u}):i})}function eR(e,t,n,r){e._wrappedGetters[t]||(e._wrappedGetters[t]=function(s){return n(r.state,r.getters,s.state,s.getters)})}function tR(e){He(function(){return e._state.data},function(){},{deep:!0,flush:"sync"})}function of(e,t){return t.reduce(function(n,r){return n[r]},e)}function Xi(e,t,n){return Yb(e)&&e.type&&(n=t,t=e,e=e.type),{type:e,payload:t,options:n}}var nR="vuex bindings",Ap="vuex:mutations",Pc="vuex:actions",va="vuex",rR=0;function aR(e,t){jb({id:"org.vuejs.vuex",app:e,label:"Vuex",homepage:"https://next.vuex.vuejs.org/",logo:"https://vuejs.org/images/icons/favicon-96x96.png",packageName:"vuex",componentStateTypes:[nR]},function(n){n.addTimelineLayer({id:Ap,label:"Vuex Mutations",color:Sp}),n.addTimelineLayer({id:Pc,label:"Vuex Actions",color:Sp}),n.addInspector({id:va,label:"Vuex",icon:"storage",treeFilterPlaceholder:"Filter stores..."}),n.on.getInspectorTree(function(r){if(r.app===e&&r.inspectorId===va)if(r.filter){var a=[];g1(a,t._modules.root,r.filter,""),r.rootNodes=a}else r.rootNodes=[T1(t._modules.root,"")]}),n.on.getInspectorState(function(r){if(r.app===e&&r.inspectorId===va){var a=r.nodeId;_1(t,a),r.state=iR(cR(t._modules,a),a==="root"?t.getters:t._makeLocalGettersCache,a)}}),n.on.editInspectorState(function(r){if(r.app===e&&r.inspectorId===va){var a=r.nodeId,s=r.path;a!=="root"&&(s=a.split("/").filter(Boolean).concat(s)),t._withCommit(function(){r.set(t._state.data,s,r.state.value)})}}),t.subscribe(function(r,a){var s={};r.payload&&(s.payload=r.payload),s.state=a,n.notifyComponentUpdate(),n.sendInspectorTree(va),n.sendInspectorState(va),n.addTimelineEvent({layerId:Ap,event:{time:Date.now(),title:r.type,data:s}})}),t.subscribeAction({before:function(r,a){var s={};r.payload&&(s.payload=r.payload),r._id=rR++,r._time=Date.now(),s.state=a,n.addTimelineEvent({layerId:Pc,event:{time:r._time,title:r.type,groupId:r._id,subtitle:"start",data:s}})},after:function(r,a){var s={},o=Date.now()-r._time;s.duration={_custom:{type:"duration",display:o+"ms",tooltip:"Action duration",value:o}},r.payload&&(s.payload=r.payload),s.state=a,n.addTimelineEvent({layerId:Pc,event:{time:Date.now(),title:r.type,groupId:r._id,subtitle:"end",data:s}})}})})}var Sp=8702998,sR=6710886,oR=16777215,E1={label:"namespaced",textColor:oR,backgroundColor:sR};function h1(e){return e&&e!=="root"?e.split("/").slice(-2,-1)[0]:"Root"}function T1(e,t){return{id:t||"root",label:h1(t),tags:e.namespaced?[E1]:[],children:Object.keys(e._children).map(function(n){return T1(e._children[n],t+n+"/")})}}function g1(e,t,n,r){r.includes(n)&&e.push({id:r||"root",label:r.endsWith("/")?r.slice(0,r.length-1):r||"Root",tags:t.namespaced?[E1]:[]}),Object.keys(t._children).forEach(function(a){g1(e,t._children[a],n,r+a+"/")})}function iR(e,t,n){t=n==="root"?t:t[n];var r=Object.keys(t),a={state:Object.keys(e.state).map(function(o){return{key:o,editable:!0,value:e.state[o]}})};if(r.length){var s=uR(t);a.getters=Object.keys(s).map(function(o){return{key:o.endsWith("/")?h1(o):o,editable:!1,value:Il(function(){return s[o]})}})}return a}function uR(e){var t={};return Object.keys(e).forEach(function(n){var r=n.split("/");if(r.length>1){var a=t,s=r.pop();r.forEach(function(o){a[o]||(a[o]={_custom:{value:{},display:o,tooltip:"Module",abstract:!0}}),a=a[o]._custom.value}),a[s]=Il(function(){return e[n]})}else t[n]=Il(function(){return e[n]})}),t}function cR(e,t){var n=t.split("/").filter(function(r){return r});return n.reduce(function(r,a,s){var o=r[a];if(!o)throw new Error('Missing module "'+a+'" for path "'+t+'".');return s===n.length-1?o:o._children},t==="root"?e:e.root._children)}function Il(e){try{return e()}catch(t){return t}}var wn=function(t,n){this.runtime=n,this._children=Object.create(null),this._rawModule=t;var r=t.state;this.state=(typeof r=="function"?r():r)||{}},A1={namespaced:{configurable:!0}};A1.namespaced.get=function(){return!!this._rawModule.namespaced};wn.prototype.addChild=function(t,n){this._children[t]=n};wn.prototype.removeChild=function(t){delete this._children[t]};wn.prototype.getChild=function(t){return this._children[t]};wn.prototype.hasChild=function(t){return t in this._children};wn.prototype.update=function(t){this._rawModule.namespaced=t.namespaced,t.actions&&(this._rawModule.actions=t.actions),t.mutations&&(this._rawModule.mutations=t.mutations),t.getters&&(this._rawModule.getters=t.getters)};wn.prototype.forEachChild=function(t){hs(this._children,t)};wn.prototype.forEachGetter=function(t){this._rawModule.getters&&hs(this._rawModule.getters,t)};wn.prototype.forEachAction=function(t){this._rawModule.actions&&hs(this._rawModule.actions,t)};wn.prototype.forEachMutation=function(t){this._rawModule.mutations&&hs(this._rawModule.mutations,t)};Object.defineProperties(wn.prototype,A1);var ma=function(t){this.register([],t,!1)};ma.prototype.get=function(t){return t.reduce(function(n,r){return n.getChild(r)},this.root)};ma.prototype.getNamespace=function(t){var n=this.root;return t.reduce(function(r,a){return n=n.getChild(a),r+(n.namespaced?a+"/":"")},"")};ma.prototype.update=function(t){S1([],this.root,t)};ma.prototype.register=function(t,n,r){var a=this;r===void 0&&(r=!0);var s=new wn(n,r);if(t.length===0)this.root=s;else{var o=this.get(t.slice(0,-1));o.addChild(t[t.length-1],s)}n.modules&&hs(n.modules,function(i,u){a.register(t.concat(u),i,r)})};ma.prototype.unregister=function(t){var n=this.get(t.slice(0,-1)),r=t[t.length-1],a=n.getChild(r);a&&a.runtime&&n.removeChild(r)};ma.prototype.isRegistered=function(t){var n=this.get(t.slice(0,-1)),r=t[t.length-1];return n?n.hasChild(r):!1};function S1(e,t,n){if(t.update(n),n.modules)for(var r in n.modules){if(!t.getChild(r))return;S1(e.concat(r),t.getChild(r),n.modules[r])}}function lR(e){return new dn(e)}var dn=function(t){var n=this;t===void 0&&(t={});var r=t.plugins;r===void 0&&(r=[]);var a=t.strict;a===void 0&&(a=!1);var s=t.devtools;this._committing=!1,this._actions=Object.create(null),this._actionSubscribers=[],this._mutations=Object.create(null),this._wrappedGetters=Object.create(null),this._modules=new ma(t),this._modulesNamespaceMap=Object.create(null),this._subscribers=[],this._makeLocalGettersCache=Object.create(null),this._scope=null,this._devtools=s;var o=this,i=this,u=i.dispatch,c=i.commit;this.dispatch=function(d,m){return u.call(o,d,m)},this.commit=function(d,m,_){return c.call(o,d,m,_)},this.strict=a;var l=this._modules.root.state;ju(this,l,[],this._modules.root),sf(this,l),r.forEach(function(f){return f(n)})},uf={state:{configurable:!0}};dn.prototype.install=function(t,n){t.provide(n||f1,this),t.config.globalProperties.$store=this;var r=this._devtools!==void 0?this._devtools:!1;r&&aR(t,this)};uf.state.get=function(){return this._state.data};uf.state.set=function(e){};dn.prototype.commit=function(t,n,r){var a=this,s=Xi(t,n,r),o=s.type,i=s.payload,u={type:o,payload:i},c=this._mutations[o];c&&(this._withCommit(function(){c.forEach(function(f){f(i)})}),this._subscribers.slice().forEach(function(l){return l(u,a.state)}))};dn.prototype.dispatch=function(t,n){var r=this,a=Xi(t,n),s=a.type,o=a.payload,i={type:s,payload:o},u=this._actions[s];if(u){try{this._actionSubscribers.slice().filter(function(l){return l.before}).forEach(function(l){return l.before(i,r.state)})}catch{}var c=u.length>1?Promise.all(u.map(function(l){return l(o)})):u[0](o);return new Promise(function(l,f){c.then(function(d){try{r._actionSubscribers.filter(function(m){return m.after}).forEach(function(m){return m.after(i,r.state)})}catch{}l(d)},function(d){try{r._actionSubscribers.filter(function(m){return m.error}).forEach(function(m){return m.error(i,r.state,d)})}catch{}f(d)})})}};dn.prototype.subscribe=function(t,n){return p1(t,this._subscribers,n)};dn.prototype.subscribeAction=function(t,n){var r=typeof t=="function"?{before:t}:t;return p1(r,this._actionSubscribers,n)};dn.prototype.watch=function(t,n,r){var a=this;return He(function(){return t(a.state,a.getters)},n,Object.assign({},r))};dn.prototype.replaceState=function(t){var n=this;this._withCommit(function(){n._state.data=t})};dn.prototype.registerModule=function(t,n,r){r===void 0&&(r={}),typeof t=="string"&&(t=[t]),this._modules.register(t,n),ju(this,this.state,t,this._modules.get(t),r.preserveState),sf(this,this.state)};dn.prototype.unregisterModule=function(t){var n=this;typeof t=="string"&&(t=[t]),this._modules.unregister(t),this._withCommit(function(){var r=of(n.state,t.slice(0,-1));delete r[t[t.length-1]]}),m1(this)};dn.prototype.hasModule=function(t){return typeof t=="string"&&(t=[t]),this._modules.isRegistered(t)};dn.prototype.hotUpdate=function(t){this._modules.update(t),m1(this,!0)};dn.prototype._withCommit=function(t){var n=this._committing;this._committing=!0,t(),this._committing=n};Object.defineProperties(dn.prototype,uf);function Fe(){return Kb()}function pt(e){return function(){var t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},n=t.width?String(t.width):e.defaultWidth,r=e.formats[n]||e.formats[e.defaultWidth];return r}}function Me(e){return function(t,n){var r=n!=null&&n.context?String(n.context):"standalone",a;if(r==="formatting"&&e.formattingValues){var s=e.defaultFormattingWidth||e.defaultWidth,o=n!=null&&n.width?String(n.width):s;a=e.formattingValues[o]||e.formattingValues[s]}else{var i=e.defaultWidth,u=n!=null&&n.width?String(n.width):e.defaultWidth;a=e.values[u]||e.values[i]}var c=e.argumentCallback?e.argumentCallback(t):t;return a[c]}}function xe(e){return function(t){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=n.width,a=r&&e.matchPatterns[r]||e.matchPatterns[e.defaultMatchWidth],s=t.match(a);if(!s)return null;var o=s[0],i=r&&e.parsePatterns[r]||e.parsePatterns[e.defaultParseWidth],u=Array.isArray(i)?fR(i,function(f){return f.test(o)}):dR(i,function(f){return f.test(o)}),c;c=e.valueCallback?e.valueCallback(u):u,c=n.valueCallback?n.valueCallback(c):c;var l=t.slice(o.length);return{value:c,rest:l}}}function dR(e,t){for(var n in e)if(e.hasOwnProperty(n)&&t(e[n]))return n}function fR(e,t){for(var n=0;n1&&arguments[1]!==void 0?arguments[1]:{},r=t.match(e.matchPattern);if(!r)return null;var a=r[0],s=t.match(e.parsePattern);if(!s)return null;var o=e.valueCallback?e.valueCallback(s[0]):s[0];o=n.valueCallback?n.valueCallback(o):o;var i=t.slice(a.length);return{value:o,rest:i}}}function Zi(e){"@babel/helpers - typeof";return Zi=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Zi(e)}function Vt(e){if(e===null||e===!0||e===!1)return NaN;var t=Number(e);return isNaN(t)?t:t<0?Math.ceil(t):Math.floor(t)}function Ge(e,t){if(t.length1?"s":"")+" required, but only "+t.length+" present")}function Xe(e){Ge(1,arguments);var t=Object.prototype.toString.call(e);return e instanceof Date||Zi(e)==="object"&&t==="[object Date]"?new Date(e.getTime()):typeof e=="number"||t==="[object Number]"?new Date(e):((typeof e=="string"||t==="[object String]")&&typeof console<"u"&&(console.warn("Starting with v2.0.0-beta.1 date-fns doesn't accept strings as date arguments. Please use `parseISO` to parse strings. See: https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#string-arguments"),console.warn(new Error().stack)),new Date(NaN))}function Lo(e,t){Ge(2,arguments);var n=Xe(e),r=Vt(t);return isNaN(r)?new Date(NaN):(r&&n.setDate(n.getDate()+r),n)}function Qa(e,t){Ge(2,arguments);var n=Xe(e),r=Vt(t);if(isNaN(r))return new Date(NaN);if(!r)return n;var a=n.getDate(),s=new Date(n.getTime());s.setMonth(n.getMonth()+r+1,0);var o=s.getDate();return a>=o?s:(n.setFullYear(s.getFullYear(),s.getMonth(),a),n)}function pR(e,t){Ge(2,arguments);var n=Xe(e).getTime(),r=Vt(t);return new Date(n+r)}var mR={};function _a(){return mR}function Ku(e,t){var n,r,a,s,o,i,u,c;Ge(1,arguments);var l=_a(),f=Vt((n=(r=(a=(s=t==null?void 0:t.weekStartsOn)!==null&&s!==void 0?s:t==null||(o=t.locale)===null||o===void 0||(i=o.options)===null||i===void 0?void 0:i.weekStartsOn)!==null&&a!==void 0?a:l.weekStartsOn)!==null&&r!==void 0?r:(u=l.locale)===null||u===void 0||(c=u.options)===null||c===void 0?void 0:c.weekStartsOn)!==null&&n!==void 0?n:0);if(!(f>=0&&f<=6))throw new RangeError("weekStartsOn must be between 0 and 6 inclusively");var d=Xe(e),m=d.getDay(),_=(m0?1:a}function O1(e,t){Ge(2,arguments);var n=Op(e),r=Op(t);return n.getTime()===r.getTime()}function _R(e){return Ge(1,arguments),e instanceof Date||Zi(e)==="object"&&Object.prototype.toString.call(e)==="[object Date]"}function ER(e){if(Ge(1,arguments),!_R(e)&&typeof e!="number")return!1;var t=Xe(e);return!isNaN(Number(t))}function hR(e,t){Ge(2,arguments);var n=Xe(e),r=Xe(t),a=n.getFullYear()-r.getFullYear(),s=n.getMonth()-r.getMonth();return a*12+s}function TR(e,t){return Ge(2,arguments),Xe(e).getTime()-Xe(t).getTime()}var Ip={ceil:Math.ceil,round:Math.round,floor:Math.floor,trunc:function(t){return t<0?Math.ceil(t):Math.floor(t)}},gR="trunc";function AR(e){return e?Ip[e]:Ip[gR]}function SR(e){Ge(1,arguments);var t=Xe(e);return t.setHours(23,59,59,999),t}function $o(e){Ge(1,arguments);var t=Xe(e),n=t.getMonth();return t.setFullYear(t.getFullYear(),n+1,0),t.setHours(23,59,59,999),t}function OR(e){Ge(1,arguments);var t=Xe(e);return SR(t).getTime()===$o(t).getTime()}function IR(e,t){Ge(2,arguments);var n=Xe(e),r=Xe(t),a=Di(n,r),s=Math.abs(hR(n,r)),o;if(s<1)o=0;else{n.getMonth()===1&&n.getDate()>27&&n.setDate(30),n.setMonth(n.getMonth()-a*s);var i=Di(n,r)===-a;OR(Xe(e))&&s===1&&Di(e,r)===1&&(i=!1),o=a*(s-Number(i))}return o===0?0:o}function vR(e,t,n){Ge(2,arguments);var r=TR(e,t)/1e3;return AR(n==null?void 0:n.roundingMethod)(r)}function ko(e){Ge(1,arguments);var t=Xe(e);return t.setDate(1),t.setHours(0,0,0,0),t}function I1(e){Ge(1,arguments);var t=Xe(e),n=t.getFullYear();return t.setFullYear(n+1,0,0),t.setHours(23,59,59,999),t}function cf(e){Ge(1,arguments);var t=Xe(e),n=new Date(0);return n.setFullYear(t.getFullYear(),0,1),n.setHours(0,0,0,0),n}function lf(e,t){var n,r,a,s,o,i,u,c;Ge(1,arguments);var l=_a(),f=Vt((n=(r=(a=(s=t==null?void 0:t.weekStartsOn)!==null&&s!==void 0?s:t==null||(o=t.locale)===null||o===void 0||(i=o.options)===null||i===void 0?void 0:i.weekStartsOn)!==null&&a!==void 0?a:l.weekStartsOn)!==null&&r!==void 0?r:(u=l.locale)===null||u===void 0||(c=u.options)===null||c===void 0?void 0:c.weekStartsOn)!==null&&n!==void 0?n:0);if(!(f>=0&&f<=6))throw new RangeError("weekStartsOn must be between 0 and 6 inclusively");var d=Xe(e),m=d.getDay(),_=(m=a.getTime()?n+1:t.getTime()>=o.getTime()?n:n-1}function yR(e){Ge(1,arguments);var t=v1(e),n=new Date(0);n.setUTCFullYear(t,0,4),n.setUTCHours(0,0,0,0);var r=Ji(n);return r}var CR=6048e5;function DR(e){Ge(1,arguments);var t=Xe(e),n=Ji(t).getTime()-yR(t).getTime();return Math.round(n/CR)+1}function Ja(e,t){var n,r,a,s,o,i,u,c;Ge(1,arguments);var l=_a(),f=Vt((n=(r=(a=(s=t==null?void 0:t.weekStartsOn)!==null&&s!==void 0?s:t==null||(o=t.locale)===null||o===void 0||(i=o.options)===null||i===void 0?void 0:i.weekStartsOn)!==null&&a!==void 0?a:l.weekStartsOn)!==null&&r!==void 0?r:(u=l.locale)===null||u===void 0||(c=u.options)===null||c===void 0?void 0:c.weekStartsOn)!==null&&n!==void 0?n:0);if(!(f>=0&&f<=6))throw new RangeError("weekStartsOn must be between 0 and 6 inclusively");var d=Xe(e),m=d.getUTCDay(),_=(m=1&&m<=7))throw new RangeError("firstWeekContainsDate must be between 1 and 7 inclusively");var _=new Date(0);_.setUTCFullYear(f+1,0,m),_.setUTCHours(0,0,0,0);var A=Ja(_,t),R=new Date(0);R.setUTCFullYear(f,0,m),R.setUTCHours(0,0,0,0);var I=Ja(R,t);return l.getTime()>=A.getTime()?f+1:l.getTime()>=I.getTime()?f:f-1}function PR(e,t){var n,r,a,s,o,i,u,c;Ge(1,arguments);var l=_a(),f=Vt((n=(r=(a=(s=t==null?void 0:t.firstWeekContainsDate)!==null&&s!==void 0?s:t==null||(o=t.locale)===null||o===void 0||(i=o.options)===null||i===void 0?void 0:i.firstWeekContainsDate)!==null&&a!==void 0?a:l.firstWeekContainsDate)!==null&&r!==void 0?r:(u=l.locale)===null||u===void 0||(c=u.options)===null||c===void 0?void 0:c.firstWeekContainsDate)!==null&&n!==void 0?n:1),d=b1(e,t),m=new Date(0);m.setUTCFullYear(d,0,f),m.setUTCHours(0,0,0,0);var _=Ja(m,t);return _}var wR=6048e5;function LR(e,t){Ge(1,arguments);var n=Xe(e),r=Ja(n,t).getTime()-PR(n,t).getTime();return Math.round(r/wR)+1}function ot(e,t){for(var n=e<0?"-":"",r=Math.abs(e).toString();r.length0?r:1-r;return ot(n==="yy"?a%100:a,n.length)},M:function(t,n){var r=t.getUTCMonth();return n==="M"?String(r+1):ot(r+1,2)},d:function(t,n){return ot(t.getUTCDate(),n.length)},a:function(t,n){var r=t.getUTCHours()/12>=1?"pm":"am";switch(n){case"a":case"aa":return r.toUpperCase();case"aaa":return r;case"aaaaa":return r[0];case"aaaa":default:return r==="am"?"a.m.":"p.m."}},h:function(t,n){return ot(t.getUTCHours()%12||12,n.length)},H:function(t,n){return ot(t.getUTCHours(),n.length)},m:function(t,n){return ot(t.getUTCMinutes(),n.length)},s:function(t,n){return ot(t.getUTCSeconds(),n.length)},S:function(t,n){var r=n.length,a=t.getUTCMilliseconds(),s=Math.floor(a*Math.pow(10,r-3));return ot(s,n.length)}};const Ar=$R;var ba={am:"am",pm:"pm",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},kR={G:function(t,n,r){var a=t.getUTCFullYear()>0?1:0;switch(n){case"G":case"GG":case"GGG":return r.era(a,{width:"abbreviated"});case"GGGGG":return r.era(a,{width:"narrow"});case"GGGG":default:return r.era(a,{width:"wide"})}},y:function(t,n,r){if(n==="yo"){var a=t.getUTCFullYear(),s=a>0?a:1-a;return r.ordinalNumber(s,{unit:"year"})}return Ar.y(t,n)},Y:function(t,n,r,a){var s=b1(t,a),o=s>0?s:1-s;if(n==="YY"){var i=o%100;return ot(i,2)}return n==="Yo"?r.ordinalNumber(o,{unit:"year"}):ot(o,n.length)},R:function(t,n){var r=v1(t);return ot(r,n.length)},u:function(t,n){var r=t.getUTCFullYear();return ot(r,n.length)},Q:function(t,n,r){var a=Math.ceil((t.getUTCMonth()+1)/3);switch(n){case"Q":return String(a);case"QQ":return ot(a,2);case"Qo":return r.ordinalNumber(a,{unit:"quarter"});case"QQQ":return r.quarter(a,{width:"abbreviated",context:"formatting"});case"QQQQQ":return r.quarter(a,{width:"narrow",context:"formatting"});case"QQQQ":default:return r.quarter(a,{width:"wide",context:"formatting"})}},q:function(t,n,r){var a=Math.ceil((t.getUTCMonth()+1)/3);switch(n){case"q":return String(a);case"qq":return ot(a,2);case"qo":return r.ordinalNumber(a,{unit:"quarter"});case"qqq":return r.quarter(a,{width:"abbreviated",context:"standalone"});case"qqqqq":return r.quarter(a,{width:"narrow",context:"standalone"});case"qqqq":default:return r.quarter(a,{width:"wide",context:"standalone"})}},M:function(t,n,r){var a=t.getUTCMonth();switch(n){case"M":case"MM":return Ar.M(t,n);case"Mo":return r.ordinalNumber(a+1,{unit:"month"});case"MMM":return r.month(a,{width:"abbreviated",context:"formatting"});case"MMMMM":return r.month(a,{width:"narrow",context:"formatting"});case"MMMM":default:return r.month(a,{width:"wide",context:"formatting"})}},L:function(t,n,r){var a=t.getUTCMonth();switch(n){case"L":return String(a+1);case"LL":return ot(a+1,2);case"Lo":return r.ordinalNumber(a+1,{unit:"month"});case"LLL":return r.month(a,{width:"abbreviated",context:"standalone"});case"LLLLL":return r.month(a,{width:"narrow",context:"standalone"});case"LLLL":default:return r.month(a,{width:"wide",context:"standalone"})}},w:function(t,n,r,a){var s=LR(t,a);return n==="wo"?r.ordinalNumber(s,{unit:"week"}):ot(s,n.length)},I:function(t,n,r){var a=DR(t);return n==="Io"?r.ordinalNumber(a,{unit:"week"}):ot(a,n.length)},d:function(t,n,r){return n==="do"?r.ordinalNumber(t.getUTCDate(),{unit:"date"}):Ar.d(t,n)},D:function(t,n,r){var a=NR(t);return n==="Do"?r.ordinalNumber(a,{unit:"dayOfYear"}):ot(a,n.length)},E:function(t,n,r){var a=t.getUTCDay();switch(n){case"E":case"EE":case"EEE":return r.day(a,{width:"abbreviated",context:"formatting"});case"EEEEE":return r.day(a,{width:"narrow",context:"formatting"});case"EEEEEE":return r.day(a,{width:"short",context:"formatting"});case"EEEE":default:return r.day(a,{width:"wide",context:"formatting"})}},e:function(t,n,r,a){var s=t.getUTCDay(),o=(s-a.weekStartsOn+8)%7||7;switch(n){case"e":return String(o);case"ee":return ot(o,2);case"eo":return r.ordinalNumber(o,{unit:"day"});case"eee":return r.day(s,{width:"abbreviated",context:"formatting"});case"eeeee":return r.day(s,{width:"narrow",context:"formatting"});case"eeeeee":return r.day(s,{width:"short",context:"formatting"});case"eeee":default:return r.day(s,{width:"wide",context:"formatting"})}},c:function(t,n,r,a){var s=t.getUTCDay(),o=(s-a.weekStartsOn+8)%7||7;switch(n){case"c":return String(o);case"cc":return ot(o,n.length);case"co":return r.ordinalNumber(o,{unit:"day"});case"ccc":return r.day(s,{width:"abbreviated",context:"standalone"});case"ccccc":return r.day(s,{width:"narrow",context:"standalone"});case"cccccc":return r.day(s,{width:"short",context:"standalone"});case"cccc":default:return r.day(s,{width:"wide",context:"standalone"})}},i:function(t,n,r){var a=t.getUTCDay(),s=a===0?7:a;switch(n){case"i":return String(s);case"ii":return ot(s,n.length);case"io":return r.ordinalNumber(s,{unit:"day"});case"iii":return r.day(a,{width:"abbreviated",context:"formatting"});case"iiiii":return r.day(a,{width:"narrow",context:"formatting"});case"iiiiii":return r.day(a,{width:"short",context:"formatting"});case"iiii":default:return r.day(a,{width:"wide",context:"formatting"})}},a:function(t,n,r){var a=t.getUTCHours(),s=a/12>=1?"pm":"am";switch(n){case"a":case"aa":return r.dayPeriod(s,{width:"abbreviated",context:"formatting"});case"aaa":return r.dayPeriod(s,{width:"abbreviated",context:"formatting"}).toLowerCase();case"aaaaa":return r.dayPeriod(s,{width:"narrow",context:"formatting"});case"aaaa":default:return r.dayPeriod(s,{width:"wide",context:"formatting"})}},b:function(t,n,r){var a=t.getUTCHours(),s;switch(a===12?s=ba.noon:a===0?s=ba.midnight:s=a/12>=1?"pm":"am",n){case"b":case"bb":return r.dayPeriod(s,{width:"abbreviated",context:"formatting"});case"bbb":return r.dayPeriod(s,{width:"abbreviated",context:"formatting"}).toLowerCase();case"bbbbb":return r.dayPeriod(s,{width:"narrow",context:"formatting"});case"bbbb":default:return r.dayPeriod(s,{width:"wide",context:"formatting"})}},B:function(t,n,r){var a=t.getUTCHours(),s;switch(a>=17?s=ba.evening:a>=12?s=ba.afternoon:a>=4?s=ba.morning:s=ba.night,n){case"B":case"BB":case"BBB":return r.dayPeriod(s,{width:"abbreviated",context:"formatting"});case"BBBBB":return r.dayPeriod(s,{width:"narrow",context:"formatting"});case"BBBB":default:return r.dayPeriod(s,{width:"wide",context:"formatting"})}},h:function(t,n,r){if(n==="ho"){var a=t.getUTCHours()%12;return a===0&&(a=12),r.ordinalNumber(a,{unit:"hour"})}return Ar.h(t,n)},H:function(t,n,r){return n==="Ho"?r.ordinalNumber(t.getUTCHours(),{unit:"hour"}):Ar.H(t,n)},K:function(t,n,r){var a=t.getUTCHours()%12;return n==="Ko"?r.ordinalNumber(a,{unit:"hour"}):ot(a,n.length)},k:function(t,n,r){var a=t.getUTCHours();return a===0&&(a=24),n==="ko"?r.ordinalNumber(a,{unit:"hour"}):ot(a,n.length)},m:function(t,n,r){return n==="mo"?r.ordinalNumber(t.getUTCMinutes(),{unit:"minute"}):Ar.m(t,n)},s:function(t,n,r){return n==="so"?r.ordinalNumber(t.getUTCSeconds(),{unit:"second"}):Ar.s(t,n)},S:function(t,n){return Ar.S(t,n)},X:function(t,n,r,a){var s=a._originalDate||t,o=s.getTimezoneOffset();if(o===0)return"Z";switch(n){case"X":return bp(o);case"XXXX":case"XX":return Xr(o);case"XXXXX":case"XXX":default:return Xr(o,":")}},x:function(t,n,r,a){var s=a._originalDate||t,o=s.getTimezoneOffset();switch(n){case"x":return bp(o);case"xxxx":case"xx":return Xr(o);case"xxxxx":case"xxx":default:return Xr(o,":")}},O:function(t,n,r,a){var s=a._originalDate||t,o=s.getTimezoneOffset();switch(n){case"O":case"OO":case"OOO":return"GMT"+vp(o,":");case"OOOO":default:return"GMT"+Xr(o,":")}},z:function(t,n,r,a){var s=a._originalDate||t,o=s.getTimezoneOffset();switch(n){case"z":case"zz":case"zzz":return"GMT"+vp(o,":");case"zzzz":default:return"GMT"+Xr(o,":")}},t:function(t,n,r,a){var s=a._originalDate||t,o=Math.floor(s.getTime()/1e3);return ot(o,n.length)},T:function(t,n,r,a){var s=a._originalDate||t,o=s.getTime();return ot(o,n.length)}};function vp(e,t){var n=e>0?"-":"+",r=Math.abs(e),a=Math.floor(r/60),s=r%60;if(s===0)return n+String(a);var o=t||"";return n+String(a)+o+ot(s,2)}function bp(e,t){if(e%60===0){var n=e>0?"-":"+";return n+ot(Math.abs(e)/60,2)}return Xr(e,t)}function Xr(e,t){var n=t||"",r=e>0?"-":"+",a=Math.abs(e),s=ot(Math.floor(a/60),2),o=ot(a%60,2);return r+s+n+o}const UR=kR;var Rp=function(t,n){switch(t){case"P":return n.date({width:"short"});case"PP":return n.date({width:"medium"});case"PPP":return n.date({width:"long"});case"PPPP":default:return n.date({width:"full"})}},R1=function(t,n){switch(t){case"p":return n.time({width:"short"});case"pp":return n.time({width:"medium"});case"ppp":return n.time({width:"long"});case"pppp":default:return n.time({width:"full"})}},MR=function(t,n){var r=t.match(/(P+)(p+)?/)||[],a=r[1],s=r[2];if(!s)return Rp(t,n);var o;switch(a){case"P":o=n.dateTime({width:"short"});break;case"PP":o=n.dateTime({width:"medium"});break;case"PPP":o=n.dateTime({width:"long"});break;case"PPPP":default:o=n.dateTime({width:"full"});break}return o.replace("{{date}}",Rp(a,n)).replace("{{time}}",R1(s,n))},xR={p:R1,P:MR};const FR=xR;var WR=["D","DD"],GR=["YY","YYYY"];function zR(e){return WR.indexOf(e)!==-1}function BR(e){return GR.indexOf(e)!==-1}function Np(e,t,n){if(e==="YYYY")throw new RangeError("Use `yyyy` instead of `YYYY` (in `".concat(t,"`) for formatting years to the input `").concat(n,"`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md"));if(e==="YY")throw new RangeError("Use `yy` instead of `YY` (in `".concat(t,"`) for formatting years to the input `").concat(n,"`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md"));if(e==="D")throw new RangeError("Use `d` instead of `D` (in `".concat(t,"`) for formatting days of the month to the input `").concat(n,"`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md"));if(e==="DD")throw new RangeError("Use `dd` instead of `DD` (in `".concat(t,"`) for formatting days of the month to the input `").concat(n,"`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md"))}var HR={lessThanXSeconds:{one:"less than a second",other:"less than {{count}} seconds"},xSeconds:{one:"1 second",other:"{{count}} seconds"},halfAMinute:"half a minute",lessThanXMinutes:{one:"less than a minute",other:"less than {{count}} minutes"},xMinutes:{one:"1 minute",other:"{{count}} minutes"},aboutXHours:{one:"about 1 hour",other:"about {{count}} hours"},xHours:{one:"1 hour",other:"{{count}} hours"},xDays:{one:"1 day",other:"{{count}} days"},aboutXWeeks:{one:"about 1 week",other:"about {{count}} weeks"},xWeeks:{one:"1 week",other:"{{count}} weeks"},aboutXMonths:{one:"about 1 month",other:"about {{count}} months"},xMonths:{one:"1 month",other:"{{count}} months"},aboutXYears:{one:"about 1 year",other:"about {{count}} years"},xYears:{one:"1 year",other:"{{count}} years"},overXYears:{one:"over 1 year",other:"over {{count}} years"},almostXYears:{one:"almost 1 year",other:"almost {{count}} years"}},VR=function(t,n,r){var a,s=HR[t];return typeof s=="string"?a=s:n===1?a=s.one:a=s.other.replace("{{count}}",n.toString()),r!=null&&r.addSuffix?r.comparison&&r.comparison>0?"in "+a:a+" ago":a};const jR=VR;var KR={full:"EEEE, MMMM do, y",long:"MMMM do, y",medium:"MMM d, y",short:"MM/dd/yyyy"},YR={full:"h:mm:ss a zzzz",long:"h:mm:ss a z",medium:"h:mm:ss a",short:"h:mm a"},qR={full:"{{date}} 'at' {{time}}",long:"{{date}} 'at' {{time}}",medium:"{{date}}, {{time}}",short:"{{date}}, {{time}}"},XR={date:pt({formats:KR,defaultWidth:"full"}),time:pt({formats:YR,defaultWidth:"full"}),dateTime:pt({formats:qR,defaultWidth:"full"})};const ZR=XR;var QR={lastWeek:"'last' eeee 'at' p",yesterday:"'yesterday at' p",today:"'today at' p",tomorrow:"'tomorrow at' p",nextWeek:"eeee 'at' p",other:"P"},JR=function(t,n,r,a){return QR[t]};const eN=JR;var tN={narrow:["B","A"],abbreviated:["BC","AD"],wide:["Before Christ","Anno Domini"]},nN={narrow:["1","2","3","4"],abbreviated:["Q1","Q2","Q3","Q4"],wide:["1st quarter","2nd quarter","3rd quarter","4th quarter"]},rN={narrow:["J","F","M","A","M","J","J","A","S","O","N","D"],abbreviated:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],wide:["January","February","March","April","May","June","July","August","September","October","November","December"]},aN={narrow:["S","M","T","W","T","F","S"],short:["Su","Mo","Tu","We","Th","Fr","Sa"],abbreviated:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],wide:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},sN={narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"}},oN={narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"}},iN=function(t,n){var r=Number(t),a=r%100;if(a>20||a<10)switch(a%10){case 1:return r+"st";case 2:return r+"nd";case 3:return r+"rd"}return r+"th"},uN={ordinalNumber:iN,era:Me({values:tN,defaultWidth:"wide"}),quarter:Me({values:nN,defaultWidth:"wide",argumentCallback:function(t){return t-1}}),month:Me({values:rN,defaultWidth:"wide"}),day:Me({values:aN,defaultWidth:"wide"}),dayPeriod:Me({values:sN,defaultWidth:"wide",formattingValues:oN,defaultFormattingWidth:"wide"})};const cN=uN;var lN=/^(\d+)(th|st|nd|rd)?/i,dN=/\d+/i,fN={narrow:/^(b|a)/i,abbreviated:/^(b\.?\s?c\.?|b\.?\s?c\.?\s?e\.?|a\.?\s?d\.?|c\.?\s?e\.?)/i,wide:/^(before christ|before common era|anno domini|common era)/i},pN={any:[/^b/i,/^(a|c)/i]},mN={narrow:/^[1234]/i,abbreviated:/^q[1234]/i,wide:/^[1234](th|st|nd|rd)? quarter/i},_N={any:[/1/i,/2/i,/3/i,/4/i]},EN={narrow:/^[jfmasond]/i,abbreviated:/^(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)/i,wide:/^(january|february|march|april|may|june|july|august|september|october|november|december)/i},hN={narrow:[/^j/i,/^f/i,/^m/i,/^a/i,/^m/i,/^j/i,/^j/i,/^a/i,/^s/i,/^o/i,/^n/i,/^d/i],any:[/^ja/i,/^f/i,/^mar/i,/^ap/i,/^may/i,/^jun/i,/^jul/i,/^au/i,/^s/i,/^o/i,/^n/i,/^d/i]},TN={narrow:/^[smtwf]/i,short:/^(su|mo|tu|we|th|fr|sa)/i,abbreviated:/^(sun|mon|tue|wed|thu|fri|sat)/i,wide:/^(sunday|monday|tuesday|wednesday|thursday|friday|saturday)/i},gN={narrow:[/^s/i,/^m/i,/^t/i,/^w/i,/^t/i,/^f/i,/^s/i],any:[/^su/i,/^m/i,/^tu/i,/^w/i,/^th/i,/^f/i,/^sa/i]},AN={narrow:/^(a|p|mi|n|(in the|at) (morning|afternoon|evening|night))/i,any:/^([ap]\.?\s?m\.?|midnight|noon|(in the|at) (morning|afternoon|evening|night))/i},SN={any:{am:/^a/i,pm:/^p/i,midnight:/^mi/i,noon:/^no/i,morning:/morning/i,afternoon:/afternoon/i,evening:/evening/i,night:/night/i}},ON={ordinalNumber:mr({matchPattern:lN,parsePattern:dN,valueCallback:function(t){return parseInt(t,10)}}),era:xe({matchPatterns:fN,defaultMatchWidth:"wide",parsePatterns:pN,defaultParseWidth:"any"}),quarter:xe({matchPatterns:mN,defaultMatchWidth:"wide",parsePatterns:_N,defaultParseWidth:"any",valueCallback:function(t){return t+1}}),month:xe({matchPatterns:EN,defaultMatchWidth:"wide",parsePatterns:hN,defaultParseWidth:"any"}),day:xe({matchPatterns:TN,defaultMatchWidth:"wide",parsePatterns:gN,defaultParseWidth:"any"}),dayPeriod:xe({matchPatterns:AN,defaultMatchWidth:"any",parsePatterns:SN,defaultParseWidth:"any"})};const IN=ON;var vN={code:"en-US",formatDistance:jR,formatLong:ZR,formatRelative:eN,localize:cN,match:IN,options:{weekStartsOn:0,firstWeekContainsDate:1}};const Yu=vN;var bN=/[yYQqMLwIdDecihHKkms]o|(\w)\1*|''|'(''|[^'])+('|$)|./g,RN=/P+p+|P+|p+|''|'(''|[^'])+('|$)|./g,NN=/^'([^]*?)'?$/,yN=/''/g,CN=/[a-zA-Z]/;function ln(e,t,n){var r,a,s,o,i,u,c,l,f,d,m,_,A,R,I,b,v,T;Ge(2,arguments);var L=String(t),w=_a(),P=(r=(a=n==null?void 0:n.locale)!==null&&a!==void 0?a:w.locale)!==null&&r!==void 0?r:Yu,V=Vt((s=(o=(i=(u=n==null?void 0:n.firstWeekContainsDate)!==null&&u!==void 0?u:n==null||(c=n.locale)===null||c===void 0||(l=c.options)===null||l===void 0?void 0:l.firstWeekContainsDate)!==null&&i!==void 0?i:w.firstWeekContainsDate)!==null&&o!==void 0?o:(f=w.locale)===null||f===void 0||(d=f.options)===null||d===void 0?void 0:d.firstWeekContainsDate)!==null&&s!==void 0?s:1);if(!(V>=1&&V<=7))throw new RangeError("firstWeekContainsDate must be between 1 and 7 inclusively");var G=Vt((m=(_=(A=(R=n==null?void 0:n.weekStartsOn)!==null&&R!==void 0?R:n==null||(I=n.locale)===null||I===void 0||(b=I.options)===null||b===void 0?void 0:b.weekStartsOn)!==null&&A!==void 0?A:w.weekStartsOn)!==null&&_!==void 0?_:(v=w.locale)===null||v===void 0||(T=v.options)===null||T===void 0?void 0:T.weekStartsOn)!==null&&m!==void 0?m:0);if(!(G>=0&&G<=6))throw new RangeError("weekStartsOn must be between 0 and 6 inclusively");if(!P.localize)throw new RangeError("locale must contain localize property");if(!P.formatLong)throw new RangeError("locale must contain formatLong property");var z=Xe(e);if(!ER(z))throw new RangeError("Invalid time value");var k=vl(z),Z=bR(z,k),J={firstWeekContainsDate:V,weekStartsOn:G,locale:P,_originalDate:z},te=L.match(RN).map(function(D){var W=D[0];if(W==="p"||W==="P"){var B=FR[W];return B(D,P.formatLong)}return D}).join("").match(bN).map(function(D){if(D==="''")return"'";var W=D[0];if(W==="'")return DN(D);var B=UR[W];if(B)return!(n!=null&&n.useAdditionalWeekYearTokens)&&BR(D)&&Np(D,t,String(e)),!(n!=null&&n.useAdditionalDayOfYearTokens)&&zR(D)&&Np(D,t,String(e)),B(Z,D,P.localize,J);if(W.match(CN))throw new RangeError("Format string contains an unescaped latin alphabet character `"+W+"`");return D}).join("");return te}function DN(e){var t=e.match(NN);return t?t[1].replace(yN,"'"):e}function N1(e,t){if(e==null)throw new TypeError("assign requires that input parameter not be null or undefined");for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n]);return e}function PN(e){return N1({},e)}var yp=1440,wN=2520,wc=43200,LN=86400;function $N(e,t,n){var r,a;Ge(2,arguments);var s=_a(),o=(r=(a=n==null?void 0:n.locale)!==null&&a!==void 0?a:s.locale)!==null&&r!==void 0?r:Yu;if(!o.formatDistance)throw new RangeError("locale must contain formatDistance property");var i=Di(e,t);if(isNaN(i))throw new RangeError("Invalid time value");var u=N1(PN(n),{addSuffix:!!(n!=null&&n.addSuffix),comparison:i}),c,l;i>0?(c=Xe(t),l=Xe(e)):(c=Xe(e),l=Xe(t));var f=vR(l,c),d=(vl(l)-vl(c))/1e3,m=Math.round((f-d)/60),_;if(m<2)return n!=null&&n.includeSeconds?f<5?o.formatDistance("lessThanXSeconds",5,u):f<10?o.formatDistance("lessThanXSeconds",10,u):f<20?o.formatDistance("lessThanXSeconds",20,u):f<40?o.formatDistance("halfAMinute",0,u):f<60?o.formatDistance("lessThanXMinutes",1,u):o.formatDistance("xMinutes",1,u):m===0?o.formatDistance("lessThanXMinutes",1,u):o.formatDistance("xMinutes",m,u);if(m<45)return o.formatDistance("xMinutes",m,u);if(m<90)return o.formatDistance("aboutXHours",1,u);if(m0?"in "+a:"vor "+a:a};const WN=FN;var GN={full:"EEEE, do MMMM y",long:"do MMMM y",medium:"do MMM y",short:"dd.MM.y"},zN={full:"HH:mm:ss zzzz",long:"HH:mm:ss z",medium:"HH:mm:ss",short:"HH:mm"},BN={full:"{{date}} 'um' {{time}}",long:"{{date}} 'um' {{time}}",medium:"{{date}} {{time}}",short:"{{date}} {{time}}"},HN={date:pt({formats:GN,defaultWidth:"full"}),time:pt({formats:zN,defaultWidth:"full"}),dateTime:pt({formats:BN,defaultWidth:"full"})};const VN=HN;var jN={lastWeek:"'letzten' eeee 'um' p",yesterday:"'gestern um' p",today:"'heute um' p",tomorrow:"'morgen um' p",nextWeek:"eeee 'um' p",other:"P"},KN=function(t,n,r,a){return jN[t]};const YN=KN;var qN={narrow:["v.Chr.","n.Chr."],abbreviated:["v.Chr.","n.Chr."],wide:["vor Christus","nach Christus"]},XN={narrow:["1","2","3","4"],abbreviated:["Q1","Q2","Q3","Q4"],wide:["1. Quartal","2. Quartal","3. Quartal","4. Quartal"]},yl={narrow:["J","F","M","A","M","J","J","A","S","O","N","D"],abbreviated:["Jan","Feb","Mär","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Dez"],wide:["Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"]},ZN={narrow:yl.narrow,abbreviated:["Jan.","Feb.","März","Apr.","Mai","Juni","Juli","Aug.","Sep.","Okt.","Nov.","Dez."],wide:yl.wide},QN={narrow:["S","M","D","M","D","F","S"],short:["So","Mo","Di","Mi","Do","Fr","Sa"],abbreviated:["So.","Mo.","Di.","Mi.","Do.","Fr.","Sa."],wide:["Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag"]},JN={narrow:{am:"vm.",pm:"nm.",midnight:"Mitternacht",noon:"Mittag",morning:"Morgen",afternoon:"Nachm.",evening:"Abend",night:"Nacht"},abbreviated:{am:"vorm.",pm:"nachm.",midnight:"Mitternacht",noon:"Mittag",morning:"Morgen",afternoon:"Nachmittag",evening:"Abend",night:"Nacht"},wide:{am:"vormittags",pm:"nachmittags",midnight:"Mitternacht",noon:"Mittag",morning:"Morgen",afternoon:"Nachmittag",evening:"Abend",night:"Nacht"}},e3={narrow:{am:"vm.",pm:"nm.",midnight:"Mitternacht",noon:"Mittag",morning:"morgens",afternoon:"nachm.",evening:"abends",night:"nachts"},abbreviated:{am:"vorm.",pm:"nachm.",midnight:"Mitternacht",noon:"Mittag",morning:"morgens",afternoon:"nachmittags",evening:"abends",night:"nachts"},wide:{am:"vormittags",pm:"nachmittags",midnight:"Mitternacht",noon:"Mittag",morning:"morgens",afternoon:"nachmittags",evening:"abends",night:"nachts"}},t3=function(t){var n=Number(t);return n+"."},n3={ordinalNumber:t3,era:Me({values:qN,defaultWidth:"wide"}),quarter:Me({values:XN,defaultWidth:"wide",argumentCallback:function(t){return t-1}}),month:Me({values:yl,formattingValues:ZN,defaultWidth:"wide"}),day:Me({values:QN,defaultWidth:"wide"}),dayPeriod:Me({values:JN,defaultWidth:"wide",formattingValues:e3,defaultFormattingWidth:"wide"})};const r3=n3;var a3=/^(\d+)(\.)?/i,s3=/\d+/i,o3={narrow:/^(v\.? ?Chr\.?|n\.? ?Chr\.?)/i,abbreviated:/^(v\.? ?Chr\.?|n\.? ?Chr\.?)/i,wide:/^(vor Christus|vor unserer Zeitrechnung|nach Christus|unserer Zeitrechnung)/i},i3={any:[/^v/i,/^n/i]},u3={narrow:/^[1234]/i,abbreviated:/^q[1234]/i,wide:/^[1234](\.)? Quartal/i},c3={any:[/1/i,/2/i,/3/i,/4/i]},l3={narrow:/^[jfmasond]/i,abbreviated:/^(j[aä]n|feb|mär[z]?|apr|mai|jun[i]?|jul[i]?|aug|sep|okt|nov|dez)\.?/i,wide:/^(januar|februar|märz|april|mai|juni|juli|august|september|oktober|november|dezember)/i},d3={narrow:[/^j/i,/^f/i,/^m/i,/^a/i,/^m/i,/^j/i,/^j/i,/^a/i,/^s/i,/^o/i,/^n/i,/^d/i],any:[/^j[aä]/i,/^f/i,/^mär/i,/^ap/i,/^mai/i,/^jun/i,/^jul/i,/^au/i,/^s/i,/^o/i,/^n/i,/^d/i]},f3={narrow:/^[smdmf]/i,short:/^(so|mo|di|mi|do|fr|sa)/i,abbreviated:/^(son?|mon?|die?|mit?|don?|fre?|sam?)\.?/i,wide:/^(sonntag|montag|dienstag|mittwoch|donnerstag|freitag|samstag)/i},p3={any:[/^so/i,/^mo/i,/^di/i,/^mi/i,/^do/i,/^f/i,/^sa/i]},m3={narrow:/^(vm\.?|nm\.?|Mitternacht|Mittag|morgens|nachm\.?|abends|nachts)/i,abbreviated:/^(vorm\.?|nachm\.?|Mitternacht|Mittag|morgens|nachm\.?|abends|nachts)/i,wide:/^(vormittags|nachmittags|Mitternacht|Mittag|morgens|nachmittags|abends|nachts)/i},_3={any:{am:/^v/i,pm:/^n/i,midnight:/^Mitte/i,noon:/^Mitta/i,morning:/morgens/i,afternoon:/nachmittags/i,evening:/abends/i,night:/nachts/i}},E3={ordinalNumber:mr({matchPattern:a3,parsePattern:s3,valueCallback:function(t){return parseInt(t)}}),era:xe({matchPatterns:o3,defaultMatchWidth:"wide",parsePatterns:i3,defaultParseWidth:"any"}),quarter:xe({matchPatterns:u3,defaultMatchWidth:"wide",parsePatterns:c3,defaultParseWidth:"any",valueCallback:function(t){return t+1}}),month:xe({matchPatterns:l3,defaultMatchWidth:"wide",parsePatterns:d3,defaultParseWidth:"any"}),day:xe({matchPatterns:f3,defaultMatchWidth:"wide",parsePatterns:p3,defaultParseWidth:"any"}),dayPeriod:xe({matchPatterns:m3,defaultMatchWidth:"wide",parsePatterns:_3,defaultParseWidth:"any"})};const h3=E3;var T3={code:"de",formatDistance:WN,formatLong:VN,formatRelative:YN,localize:r3,match:h3,options:{weekStartsOn:1,firstWeekContainsDate:4}};const g3=T3;var A3={lessThanXSeconds:{one:"menos de un segundo",other:"menos de {{count}} segundos"},xSeconds:{one:"1 segundo",other:"{{count}} segundos"},halfAMinute:"medio minuto",lessThanXMinutes:{one:"menos de un minuto",other:"menos de {{count}} minutos"},xMinutes:{one:"1 minuto",other:"{{count}} minutos"},aboutXHours:{one:"alrededor de 1 hora",other:"alrededor de {{count}} horas"},xHours:{one:"1 hora",other:"{{count}} horas"},xDays:{one:"1 día",other:"{{count}} días"},aboutXWeeks:{one:"alrededor de 1 semana",other:"alrededor de {{count}} semanas"},xWeeks:{one:"1 semana",other:"{{count}} semanas"},aboutXMonths:{one:"alrededor de 1 mes",other:"alrededor de {{count}} meses"},xMonths:{one:"1 mes",other:"{{count}} meses"},aboutXYears:{one:"alrededor de 1 año",other:"alrededor de {{count}} años"},xYears:{one:"1 año",other:"{{count}} años"},overXYears:{one:"más de 1 año",other:"más de {{count}} años"},almostXYears:{one:"casi 1 año",other:"casi {{count}} años"}},S3=function(t,n,r){var a,s=A3[t];return typeof s=="string"?a=s:n===1?a=s.one:a=s.other.replace("{{count}}",n.toString()),r!=null&&r.addSuffix?r.comparison&&r.comparison>0?"en "+a:"hace "+a:a};const O3=S3;var I3={full:"EEEE, d 'de' MMMM 'de' y",long:"d 'de' MMMM 'de' y",medium:"d MMM y",short:"dd/MM/y"},v3={full:"HH:mm:ss zzzz",long:"HH:mm:ss z",medium:"HH:mm:ss",short:"HH:mm"},b3={full:"{{date}} 'a las' {{time}}",long:"{{date}} 'a las' {{time}}",medium:"{{date}}, {{time}}",short:"{{date}}, {{time}}"},R3={date:pt({formats:I3,defaultWidth:"full"}),time:pt({formats:v3,defaultWidth:"full"}),dateTime:pt({formats:b3,defaultWidth:"full"})};const N3=R3;var y3={lastWeek:"'el' eeee 'pasado a la' p",yesterday:"'ayer a la' p",today:"'hoy a la' p",tomorrow:"'mañana a la' p",nextWeek:"eeee 'a la' p",other:"P"},C3={lastWeek:"'el' eeee 'pasado a las' p",yesterday:"'ayer a las' p",today:"'hoy a las' p",tomorrow:"'mañana a las' p",nextWeek:"eeee 'a las' p",other:"P"},D3=function(t,n,r,a){return n.getUTCHours()!==1?C3[t]:y3[t]};const P3=D3;var w3={narrow:["AC","DC"],abbreviated:["AC","DC"],wide:["antes de cristo","después de cristo"]},L3={narrow:["1","2","3","4"],abbreviated:["T1","T2","T3","T4"],wide:["1º trimestre","2º trimestre","3º trimestre","4º trimestre"]},$3={narrow:["e","f","m","a","m","j","j","a","s","o","n","d"],abbreviated:["ene","feb","mar","abr","may","jun","jul","ago","sep","oct","nov","dic"],wide:["enero","febrero","marzo","abril","mayo","junio","julio","agosto","septiembre","octubre","noviembre","diciembre"]},k3={narrow:["d","l","m","m","j","v","s"],short:["do","lu","ma","mi","ju","vi","sá"],abbreviated:["dom","lun","mar","mié","jue","vie","sáb"],wide:["domingo","lunes","martes","miércoles","jueves","viernes","sábado"]},U3={narrow:{am:"a",pm:"p",midnight:"mn",noon:"md",morning:"mañana",afternoon:"tarde",evening:"tarde",night:"noche"},abbreviated:{am:"AM",pm:"PM",midnight:"medianoche",noon:"mediodia",morning:"mañana",afternoon:"tarde",evening:"tarde",night:"noche"},wide:{am:"a.m.",pm:"p.m.",midnight:"medianoche",noon:"mediodia",morning:"mañana",afternoon:"tarde",evening:"tarde",night:"noche"}},M3={narrow:{am:"a",pm:"p",midnight:"mn",noon:"md",morning:"de la mañana",afternoon:"de la tarde",evening:"de la tarde",night:"de la noche"},abbreviated:{am:"AM",pm:"PM",midnight:"medianoche",noon:"mediodia",morning:"de la mañana",afternoon:"de la tarde",evening:"de la tarde",night:"de la noche"},wide:{am:"a.m.",pm:"p.m.",midnight:"medianoche",noon:"mediodia",morning:"de la mañana",afternoon:"de la tarde",evening:"de la tarde",night:"de la noche"}},x3=function(t,n){var r=Number(t);return r+"º"},F3={ordinalNumber:x3,era:Me({values:w3,defaultWidth:"wide"}),quarter:Me({values:L3,defaultWidth:"wide",argumentCallback:function(t){return Number(t)-1}}),month:Me({values:$3,defaultWidth:"wide"}),day:Me({values:k3,defaultWidth:"wide"}),dayPeriod:Me({values:U3,defaultWidth:"wide",formattingValues:M3,defaultFormattingWidth:"wide"})};const W3=F3;var G3=/^(\d+)(º)?/i,z3=/\d+/i,B3={narrow:/^(ac|dc|a|d)/i,abbreviated:/^(a\.?\s?c\.?|a\.?\s?e\.?\s?c\.?|d\.?\s?c\.?|e\.?\s?c\.?)/i,wide:/^(antes de cristo|antes de la era com[uú]n|despu[eé]s de cristo|era com[uú]n)/i},H3={any:[/^ac/i,/^dc/i],wide:[/^(antes de cristo|antes de la era com[uú]n)/i,/^(despu[eé]s de cristo|era com[uú]n)/i]},V3={narrow:/^[1234]/i,abbreviated:/^T[1234]/i,wide:/^[1234](º)? trimestre/i},j3={any:[/1/i,/2/i,/3/i,/4/i]},K3={narrow:/^[efmajsond]/i,abbreviated:/^(ene|feb|mar|abr|may|jun|jul|ago|sep|oct|nov|dic)/i,wide:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i},Y3={narrow:[/^e/i,/^f/i,/^m/i,/^a/i,/^m/i,/^j/i,/^j/i,/^a/i,/^s/i,/^o/i,/^n/i,/^d/i],any:[/^en/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i]},q3={narrow:/^[dlmjvs]/i,short:/^(do|lu|ma|mi|ju|vi|s[áa])/i,abbreviated:/^(dom|lun|mar|mi[ée]|jue|vie|s[áa]b)/i,wide:/^(domingo|lunes|martes|mi[ée]rcoles|jueves|viernes|s[áa]bado)/i},X3={narrow:[/^d/i,/^l/i,/^m/i,/^m/i,/^j/i,/^v/i,/^s/i],any:[/^do/i,/^lu/i,/^ma/i,/^mi/i,/^ju/i,/^vi/i,/^sa/i]},Z3={narrow:/^(a|p|mn|md|(de la|a las) (mañana|tarde|noche))/i,any:/^([ap]\.?\s?m\.?|medianoche|mediodia|(de la|a las) (mañana|tarde|noche))/i},Q3={any:{am:/^a/i,pm:/^p/i,midnight:/^mn/i,noon:/^md/i,morning:/mañana/i,afternoon:/tarde/i,evening:/tarde/i,night:/noche/i}},J3={ordinalNumber:mr({matchPattern:G3,parsePattern:z3,valueCallback:function(t){return parseInt(t,10)}}),era:xe({matchPatterns:B3,defaultMatchWidth:"wide",parsePatterns:H3,defaultParseWidth:"any"}),quarter:xe({matchPatterns:V3,defaultMatchWidth:"wide",parsePatterns:j3,defaultParseWidth:"any",valueCallback:function(t){return t+1}}),month:xe({matchPatterns:K3,defaultMatchWidth:"wide",parsePatterns:Y3,defaultParseWidth:"any"}),day:xe({matchPatterns:q3,defaultMatchWidth:"wide",parsePatterns:X3,defaultParseWidth:"any"}),dayPeriod:xe({matchPatterns:Z3,defaultMatchWidth:"any",parsePatterns:Q3,defaultParseWidth:"any"})};const ey=J3;var ty={code:"es",formatDistance:O3,formatLong:N3,formatRelative:P3,localize:W3,match:ey,options:{weekStartsOn:1,firstWeekContainsDate:1}};const ny=ty;var ry={lessThanXSeconds:{one:"moins d’une seconde",other:"moins de {{count}} secondes"},xSeconds:{one:"1 seconde",other:"{{count}} secondes"},halfAMinute:"30 secondes",lessThanXMinutes:{one:"moins d’une minute",other:"moins de {{count}} minutes"},xMinutes:{one:"1 minute",other:"{{count}} minutes"},aboutXHours:{one:"environ 1 heure",other:"environ {{count}} heures"},xHours:{one:"1 heure",other:"{{count}} heures"},xDays:{one:"1 jour",other:"{{count}} jours"},aboutXWeeks:{one:"environ 1 semaine",other:"environ {{count}} semaines"},xWeeks:{one:"1 semaine",other:"{{count}} semaines"},aboutXMonths:{one:"environ 1 mois",other:"environ {{count}} mois"},xMonths:{one:"1 mois",other:"{{count}} mois"},aboutXYears:{one:"environ 1 an",other:"environ {{count}} ans"},xYears:{one:"1 an",other:"{{count}} ans"},overXYears:{one:"plus d’un an",other:"plus de {{count}} ans"},almostXYears:{one:"presqu’un an",other:"presque {{count}} ans"}},ay=function(t,n,r){var a,s=ry[t];return typeof s=="string"?a=s:n===1?a=s.one:a=s.other.replace("{{count}}",String(n)),r!=null&&r.addSuffix?r.comparison&&r.comparison>0?"dans "+a:"il y a "+a:a};const sy=ay;var oy={full:"EEEE d MMMM y",long:"d MMMM y",medium:"d MMM y",short:"dd/MM/y"},iy={full:"HH:mm:ss zzzz",long:"HH:mm:ss z",medium:"HH:mm:ss",short:"HH:mm"},uy={full:"{{date}} 'à' {{time}}",long:"{{date}} 'à' {{time}}",medium:"{{date}}, {{time}}",short:"{{date}}, {{time}}"},cy={date:pt({formats:oy,defaultWidth:"full"}),time:pt({formats:iy,defaultWidth:"full"}),dateTime:pt({formats:uy,defaultWidth:"full"})};const ly=cy;var dy={lastWeek:"eeee 'dernier à' p",yesterday:"'hier à' p",today:"'aujourd’hui à' p",tomorrow:"'demain à' p'",nextWeek:"eeee 'prochain à' p",other:"P"},fy=function(t,n,r,a){return dy[t]};const py=fy;var my={narrow:["av. J.-C","ap. J.-C"],abbreviated:["av. J.-C","ap. J.-C"],wide:["avant Jésus-Christ","après Jésus-Christ"]},_y={narrow:["T1","T2","T3","T4"],abbreviated:["1er trim.","2ème trim.","3ème trim.","4ème trim."],wide:["1er trimestre","2ème trimestre","3ème trimestre","4ème trimestre"]},Ey={narrow:["J","F","M","A","M","J","J","A","S","O","N","D"],abbreviated:["janv.","févr.","mars","avr.","mai","juin","juil.","août","sept.","oct.","nov.","déc."],wide:["janvier","février","mars","avril","mai","juin","juillet","août","septembre","octobre","novembre","décembre"]},hy={narrow:["D","L","M","M","J","V","S"],short:["di","lu","ma","me","je","ve","sa"],abbreviated:["dim.","lun.","mar.","mer.","jeu.","ven.","sam."],wide:["dimanche","lundi","mardi","mercredi","jeudi","vendredi","samedi"]},Ty={narrow:{am:"AM",pm:"PM",midnight:"minuit",noon:"midi",morning:"mat.",afternoon:"ap.m.",evening:"soir",night:"mat."},abbreviated:{am:"AM",pm:"PM",midnight:"minuit",noon:"midi",morning:"matin",afternoon:"après-midi",evening:"soir",night:"matin"},wide:{am:"AM",pm:"PM",midnight:"minuit",noon:"midi",morning:"du matin",afternoon:"de l’après-midi",evening:"du soir",night:"du matin"}},gy=function(t,n){var r=Number(t),a=n==null?void 0:n.unit;if(r===0)return"0";var s=["year","week","hour","minute","second"],o;return r===1?o=a&&s.includes(a)?"ère":"er":o="ème",r+o},Ay={ordinalNumber:gy,era:Me({values:my,defaultWidth:"wide"}),quarter:Me({values:_y,defaultWidth:"wide",argumentCallback:function(t){return t-1}}),month:Me({values:Ey,defaultWidth:"wide"}),day:Me({values:hy,defaultWidth:"wide"}),dayPeriod:Me({values:Ty,defaultWidth:"wide"})};const Sy=Ay;var Oy=/^(\d+)(ième|ère|ème|er|e)?/i,Iy=/\d+/i,vy={narrow:/^(av\.J\.C|ap\.J\.C|ap\.J\.-C)/i,abbreviated:/^(av\.J\.-C|av\.J-C|apr\.J\.-C|apr\.J-C|ap\.J-C)/i,wide:/^(avant Jésus-Christ|après Jésus-Christ)/i},by={any:[/^av/i,/^ap/i]},Ry={narrow:/^T?[1234]/i,abbreviated:/^[1234](er|ème|e)? trim\.?/i,wide:/^[1234](er|ème|e)? trimestre/i},Ny={any:[/1/i,/2/i,/3/i,/4/i]},yy={narrow:/^[jfmasond]/i,abbreviated:/^(janv|févr|mars|avr|mai|juin|juill|juil|août|sept|oct|nov|déc)\.?/i,wide:/^(janvier|février|mars|avril|mai|juin|juillet|août|septembre|octobre|novembre|décembre)/i},Cy={narrow:[/^j/i,/^f/i,/^m/i,/^a/i,/^m/i,/^j/i,/^j/i,/^a/i,/^s/i,/^o/i,/^n/i,/^d/i],any:[/^ja/i,/^f/i,/^mar/i,/^av/i,/^ma/i,/^juin/i,/^juil/i,/^ao/i,/^s/i,/^o/i,/^n/i,/^d/i]},Dy={narrow:/^[lmjvsd]/i,short:/^(di|lu|ma|me|je|ve|sa)/i,abbreviated:/^(dim|lun|mar|mer|jeu|ven|sam)\.?/i,wide:/^(dimanche|lundi|mardi|mercredi|jeudi|vendredi|samedi)/i},Py={narrow:[/^d/i,/^l/i,/^m/i,/^m/i,/^j/i,/^v/i,/^s/i],any:[/^di/i,/^lu/i,/^ma/i,/^me/i,/^je/i,/^ve/i,/^sa/i]},wy={narrow:/^(a|p|minuit|midi|mat\.?|ap\.?m\.?|soir|nuit)/i,any:/^([ap]\.?\s?m\.?|du matin|de l'après[-\s]midi|du soir|de la nuit)/i},Ly={any:{am:/^a/i,pm:/^p/i,midnight:/^min/i,noon:/^mid/i,morning:/mat/i,afternoon:/ap/i,evening:/soir/i,night:/nuit/i}},$y={ordinalNumber:mr({matchPattern:Oy,parsePattern:Iy,valueCallback:function(t){return parseInt(t)}}),era:xe({matchPatterns:vy,defaultMatchWidth:"wide",parsePatterns:by,defaultParseWidth:"any"}),quarter:xe({matchPatterns:Ry,defaultMatchWidth:"wide",parsePatterns:Ny,defaultParseWidth:"any",valueCallback:function(t){return t+1}}),month:xe({matchPatterns:yy,defaultMatchWidth:"wide",parsePatterns:Cy,defaultParseWidth:"any"}),day:xe({matchPatterns:Dy,defaultMatchWidth:"wide",parsePatterns:Py,defaultParseWidth:"any"}),dayPeriod:xe({matchPatterns:wy,defaultMatchWidth:"any",parsePatterns:Ly,defaultParseWidth:"any"})};const ky=$y;var Uy={code:"fr",formatDistance:sy,formatLong:ly,formatRelative:py,localize:Sy,match:ky,options:{weekStartsOn:1,firstWeekContainsDate:4}};const My=Uy;var xy={lessThanXSeconds:{one:"menos dun segundo",other:"menos de {{count}} segundos"},xSeconds:{one:"1 segundo",other:"{{count}} segundos"},halfAMinute:"medio minuto",lessThanXMinutes:{one:"menos dun minuto",other:"menos de {{count}} minutos"},xMinutes:{one:"1 minuto",other:"{{count}} minutos"},aboutXHours:{one:"arredor dunha hora",other:"arredor de {{count}} horas"},xHours:{one:"1 hora",other:"{{count}} horas"},xDays:{one:"1 día",other:"{{count}} días"},aboutXWeeks:{one:"arredor dunha semana",other:"arredor de {{count}} semanas"},xWeeks:{one:"1 semana",other:"{{count}} semanas"},aboutXMonths:{one:"arredor de 1 mes",other:"arredor de {{count}} meses"},xMonths:{one:"1 mes",other:"{{count}} meses"},aboutXYears:{one:"arredor dun ano",other:"arredor de {{count}} anos"},xYears:{one:"1 ano",other:"{{count}} anos"},overXYears:{one:"máis dun ano",other:"máis de {{count}} anos"},almostXYears:{one:"case un ano",other:"case {{count}} anos"}},Fy=function(t,n,r){var a,s=xy[t];return typeof s=="string"?a=s:n===1?a=s.one:a=s.other.replace("{{count}}",String(n)),r!=null&&r.addSuffix?r.comparison&&r.comparison>0?"en "+a:"hai "+a:a};const Wy=Fy;var Gy={full:"EEEE, d 'de' MMMM y",long:"d 'de' MMMM y",medium:"d MMM y",short:"dd/MM/y"},zy={full:"HH:mm:ss zzzz",long:"HH:mm:ss z",medium:"HH:mm:ss",short:"HH:mm"},By={full:"{{date}} 'ás' {{time}}",long:"{{date}} 'ás' {{time}}",medium:"{{date}}, {{time}}",short:"{{date}}, {{time}}"},Hy={date:pt({formats:Gy,defaultWidth:"full"}),time:pt({formats:zy,defaultWidth:"full"}),dateTime:pt({formats:By,defaultWidth:"full"})};const Vy=Hy;var jy={lastWeek:"'o' eeee 'pasado á' LT",yesterday:"'onte á' p",today:"'hoxe á' p",tomorrow:"'mañá á' p",nextWeek:"eeee 'á' p",other:"P"},Ky={lastWeek:"'o' eeee 'pasado ás' p",yesterday:"'onte ás' p",today:"'hoxe ás' p",tomorrow:"'mañá ás' p",nextWeek:"eeee 'ás' p",other:"P"},Yy=function(t,n,r,a){return n.getUTCHours()!==1?Ky[t]:jy[t]};const qy=Yy;var Xy={narrow:["AC","DC"],abbreviated:["AC","DC"],wide:["antes de cristo","despois de cristo"]},Zy={narrow:["1","2","3","4"],abbreviated:["T1","T2","T3","T4"],wide:["1º trimestre","2º trimestre","3º trimestre","4º trimestre"]},Qy={narrow:["e","f","m","a","m","j","j","a","s","o","n","d"],abbreviated:["xan","feb","mar","abr","mai","xun","xul","ago","set","out","nov","dec"],wide:["xaneiro","febreiro","marzo","abril","maio","xuño","xullo","agosto","setembro","outubro","novembro","decembro"]},Jy={narrow:["d","l","m","m","j","v","s"],short:["do","lu","ma","me","xo","ve","sa"],abbreviated:["dom","lun","mar","mer","xov","ven","sab"],wide:["domingo","luns","martes","mércores","xoves","venres","sábado"]},eC={narrow:{am:"a",pm:"p",midnight:"mn",noon:"md",morning:"mañá",afternoon:"tarde",evening:"tarde",night:"noite"},abbreviated:{am:"AM",pm:"PM",midnight:"medianoite",noon:"mediodía",morning:"mañá",afternoon:"tarde",evening:"tardiña",night:"noite"},wide:{am:"a.m.",pm:"p.m.",midnight:"medianoite",noon:"mediodía",morning:"mañá",afternoon:"tarde",evening:"tardiña",night:"noite"}},tC={narrow:{am:"a",pm:"p",midnight:"mn",noon:"md",morning:"da mañá",afternoon:"da tarde",evening:"da tardiña",night:"da noite"},abbreviated:{am:"AM",pm:"PM",midnight:"medianoite",noon:"mediodía",morning:"da mañá",afternoon:"da tarde",evening:"da tardiña",night:"da noite"},wide:{am:"a.m.",pm:"p.m.",midnight:"medianoite",noon:"mediodía",morning:"da mañá",afternoon:"da tarde",evening:"da tardiña",night:"da noite"}},nC=function(t,n){var r=Number(t);return r+"º"},rC={ordinalNumber:nC,era:Me({values:Xy,defaultWidth:"wide"}),quarter:Me({values:Zy,defaultWidth:"wide",argumentCallback:function(t){return t-1}}),month:Me({values:Qy,defaultWidth:"wide"}),day:Me({values:Jy,defaultWidth:"wide"}),dayPeriod:Me({values:eC,defaultWidth:"wide",formattingValues:tC,defaultFormattingWidth:"wide"})};const aC=rC;var sC=/^(\d+)(º)?/i,oC=/\d+/i,iC={narrow:/^(ac|dc|a|d)/i,abbreviated:/^(a\.?\s?c\.?|a\.?\s?e\.?\s?c\.?|d\.?\s?c\.?|e\.?\s?c\.?)/i,wide:/^(antes de cristo|antes da era com[uú]n|despois de cristo|era com[uú]n)/i},uC={any:[/^ac/i,/^dc/i],wide:[/^(antes de cristo|antes da era com[uú]n)/i,/^(despois de cristo|era com[uú]n)/i]},cC={narrow:/^[1234]/i,abbreviated:/^T[1234]/i,wide:/^[1234](º)? trimestre/i},lC={any:[/1/i,/2/i,/3/i,/4/i]},dC={narrow:/^[xfmasond]/i,abbreviated:/^(xan|feb|mar|abr|mai|xun|xul|ago|set|out|nov|dec)/i,wide:/^(xaneiro|febreiro|marzo|abril|maio|xuño|xullo|agosto|setembro|outubro|novembro|decembro)/i},fC={narrow:[/^x/i,/^f/i,/^m/i,/^a/i,/^m/i,/^x/i,/^x/i,/^a/i,/^s/i,/^o/i,/^n/i,/^d/i],any:[/^xan/i,/^feb/i,/^mar/i,/^abr/i,/^mai/i,/^xun/i,/^xul/i,/^ago/i,/^set/i,/^out/i,/^nov/i,/^dec/i]},pC={narrow:/^[dlmxvs]/i,short:/^(do|lu|ma|me|xo|ve|sa)/i,abbreviated:/^(dom|lun|mar|mer|xov|ven|sab)/i,wide:/^(domingo|luns|martes|m[eé]rcores|xoves|venres|s[áa]bado)/i},mC={narrow:[/^d/i,/^l/i,/^m/i,/^m/i,/^x/i,/^v/i,/^s/i],any:[/^do/i,/^lu/i,/^ma/i,/^me/i,/^xo/i,/^ve/i,/^sa/i]},_C={narrow:/^(a|p|mn|md|(da|[aá]s) (mañ[aá]|tarde|noite))/i,any:/^([ap]\.?\s?m\.?|medianoite|mediod[ií]a|(da|[aá]s) (mañ[aá]|tarde|noite))/i},EC={any:{am:/^a/i,pm:/^p/i,midnight:/^mn/i,noon:/^md/i,morning:/mañ[aá]/i,afternoon:/tarde/i,evening:/tardiña/i,night:/noite/i}},hC={ordinalNumber:mr({matchPattern:sC,parsePattern:oC,valueCallback:function(t){return parseInt(t,10)}}),era:xe({matchPatterns:iC,defaultMatchWidth:"wide",parsePatterns:uC,defaultParseWidth:"any"}),quarter:xe({matchPatterns:cC,defaultMatchWidth:"wide",parsePatterns:lC,defaultParseWidth:"any",valueCallback:function(t){return t+1}}),month:xe({matchPatterns:dC,defaultMatchWidth:"wide",parsePatterns:fC,defaultParseWidth:"any"}),day:xe({matchPatterns:pC,defaultMatchWidth:"wide",parsePatterns:mC,defaultParseWidth:"any"}),dayPeriod:xe({matchPatterns:_C,defaultMatchWidth:"any",parsePatterns:EC,defaultParseWidth:"any"})};const TC=hC;var gC={code:"gl",formatDistance:Wy,formatLong:Vy,formatRelative:qy,localize:aC,match:TC,options:{weekStartsOn:1,firstWeekContainsDate:1}};const AC=gC;var SC={lessThanXSeconds:{one:"meno di un secondo",other:"meno di {{count}} secondi"},xSeconds:{one:"un secondo",other:"{{count}} secondi"},halfAMinute:"alcuni secondi",lessThanXMinutes:{one:"meno di un minuto",other:"meno di {{count}} minuti"},xMinutes:{one:"un minuto",other:"{{count}} minuti"},aboutXHours:{one:"circa un'ora",other:"circa {{count}} ore"},xHours:{one:"un'ora",other:"{{count}} ore"},xDays:{one:"un giorno",other:"{{count}} giorni"},aboutXWeeks:{one:"circa una settimana",other:"circa {{count}} settimane"},xWeeks:{one:"una settimana",other:"{{count}} settimane"},aboutXMonths:{one:"circa un mese",other:"circa {{count}} mesi"},xMonths:{one:"un mese",other:"{{count}} mesi"},aboutXYears:{one:"circa un anno",other:"circa {{count}} anni"},xYears:{one:"un anno",other:"{{count}} anni"},overXYears:{one:"più di un anno",other:"più di {{count}} anni"},almostXYears:{one:"quasi un anno",other:"quasi {{count}} anni"}},OC=function(t,n,r){var a,s=SC[t];return typeof s=="string"?a=s:n===1?a=s.one:a=s.other.replace("{{count}}",n.toString()),r!=null&&r.addSuffix?r.comparison&&r.comparison>0?"tra "+a:a+" fa":a};const IC=OC;var vC={full:"EEEE d MMMM y",long:"d MMMM y",medium:"d MMM y",short:"dd/MM/y"},bC={full:"HH:mm:ss zzzz",long:"HH:mm:ss z",medium:"HH:mm:ss",short:"HH:mm"},RC={full:"{{date}} {{time}}",long:"{{date}} {{time}}",medium:"{{date}} {{time}}",short:"{{date}} {{time}}"},NC={date:pt({formats:vC,defaultWidth:"full"}),time:pt({formats:bC,defaultWidth:"full"}),dateTime:pt({formats:RC,defaultWidth:"full"})};const yC=NC;var df=["domenica","lunedì","martedì","mercoledì","giovedì","venerdì","sabato"];function CC(e){switch(e){case 0:return"'domenica scorsa alle' p";default:return"'"+df[e]+" scorso alle' p"}}function Pp(e){return"'"+df[e]+" alle' p"}function DC(e){switch(e){case 0:return"'domenica prossima alle' p";default:return"'"+df[e]+" prossimo alle' p"}}var PC={lastWeek:function(t,n,r){var a=t.getUTCDay();return Nl(t,n,r)?Pp(a):CC(a)},yesterday:"'ieri alle' p",today:"'oggi alle' p",tomorrow:"'domani alle' p",nextWeek:function(t,n,r){var a=t.getUTCDay();return Nl(t,n,r)?Pp(a):DC(a)},other:"P"},wC=function(t,n,r,a){var s=PC[t];return typeof s=="function"?s(n,r,a):s};const LC=wC;var $C={narrow:["aC","dC"],abbreviated:["a.C.","d.C."],wide:["avanti Cristo","dopo Cristo"]},kC={narrow:["1","2","3","4"],abbreviated:["T1","T2","T3","T4"],wide:["1º trimestre","2º trimestre","3º trimestre","4º trimestre"]},UC={narrow:["G","F","M","A","M","G","L","A","S","O","N","D"],abbreviated:["gen","feb","mar","apr","mag","giu","lug","ago","set","ott","nov","dic"],wide:["gennaio","febbraio","marzo","aprile","maggio","giugno","luglio","agosto","settembre","ottobre","novembre","dicembre"]},MC={narrow:["D","L","M","M","G","V","S"],short:["dom","lun","mar","mer","gio","ven","sab"],abbreviated:["dom","lun","mar","mer","gio","ven","sab"],wide:["domenica","lunedì","martedì","mercoledì","giovedì","venerdì","sabato"]},xC={narrow:{am:"m.",pm:"p.",midnight:"mezzanotte",noon:"mezzogiorno",morning:"mattina",afternoon:"pomeriggio",evening:"sera",night:"notte"},abbreviated:{am:"AM",pm:"PM",midnight:"mezzanotte",noon:"mezzogiorno",morning:"mattina",afternoon:"pomeriggio",evening:"sera",night:"notte"},wide:{am:"AM",pm:"PM",midnight:"mezzanotte",noon:"mezzogiorno",morning:"mattina",afternoon:"pomeriggio",evening:"sera",night:"notte"}},FC={narrow:{am:"m.",pm:"p.",midnight:"mezzanotte",noon:"mezzogiorno",morning:"di mattina",afternoon:"del pomeriggio",evening:"di sera",night:"di notte"},abbreviated:{am:"AM",pm:"PM",midnight:"mezzanotte",noon:"mezzogiorno",morning:"di mattina",afternoon:"del pomeriggio",evening:"di sera",night:"di notte"},wide:{am:"AM",pm:"PM",midnight:"mezzanotte",noon:"mezzogiorno",morning:"di mattina",afternoon:"del pomeriggio",evening:"di sera",night:"di notte"}},WC=function(t,n){var r=Number(t);return String(r)},GC={ordinalNumber:WC,era:Me({values:$C,defaultWidth:"wide"}),quarter:Me({values:kC,defaultWidth:"wide",argumentCallback:function(t){return t-1}}),month:Me({values:UC,defaultWidth:"wide"}),day:Me({values:MC,defaultWidth:"wide"}),dayPeriod:Me({values:xC,defaultWidth:"wide",formattingValues:FC,defaultFormattingWidth:"wide"})};const zC=GC;var BC=/^(\d+)(º)?/i,HC=/\d+/i,VC={narrow:/^(aC|dC)/i,abbreviated:/^(a\.?\s?C\.?|a\.?\s?e\.?\s?v\.?|d\.?\s?C\.?|e\.?\s?v\.?)/i,wide:/^(avanti Cristo|avanti Era Volgare|dopo Cristo|Era Volgare)/i},jC={any:[/^a/i,/^(d|e)/i]},KC={narrow:/^[1234]/i,abbreviated:/^t[1234]/i,wide:/^[1234](º)? trimestre/i},YC={any:[/1/i,/2/i,/3/i,/4/i]},qC={narrow:/^[gfmalsond]/i,abbreviated:/^(gen|feb|mar|apr|mag|giu|lug|ago|set|ott|nov|dic)/i,wide:/^(gennaio|febbraio|marzo|aprile|maggio|giugno|luglio|agosto|settembre|ottobre|novembre|dicembre)/i},XC={narrow:[/^g/i,/^f/i,/^m/i,/^a/i,/^m/i,/^g/i,/^l/i,/^a/i,/^s/i,/^o/i,/^n/i,/^d/i],any:[/^ge/i,/^f/i,/^mar/i,/^ap/i,/^mag/i,/^gi/i,/^l/i,/^ag/i,/^s/i,/^o/i,/^n/i,/^d/i]},ZC={narrow:/^[dlmgvs]/i,short:/^(do|lu|ma|me|gi|ve|sa)/i,abbreviated:/^(dom|lun|mar|mer|gio|ven|sab)/i,wide:/^(domenica|luned[i|ì]|marted[i|ì]|mercoled[i|ì]|gioved[i|ì]|venerd[i|ì]|sabato)/i},QC={narrow:[/^d/i,/^l/i,/^m/i,/^m/i,/^g/i,/^v/i,/^s/i],any:[/^d/i,/^l/i,/^ma/i,/^me/i,/^g/i,/^v/i,/^s/i]},JC={narrow:/^(a|m\.|p|mezzanotte|mezzogiorno|(di|del) (mattina|pomeriggio|sera|notte))/i,any:/^([ap]\.?\s?m\.?|mezzanotte|mezzogiorno|(di|del) (mattina|pomeriggio|sera|notte))/i},eD={any:{am:/^a/i,pm:/^p/i,midnight:/^mezza/i,noon:/^mezzo/i,morning:/mattina/i,afternoon:/pomeriggio/i,evening:/sera/i,night:/notte/i}},tD={ordinalNumber:mr({matchPattern:BC,parsePattern:HC,valueCallback:function(t){return parseInt(t,10)}}),era:xe({matchPatterns:VC,defaultMatchWidth:"wide",parsePatterns:jC,defaultParseWidth:"any"}),quarter:xe({matchPatterns:KC,defaultMatchWidth:"wide",parsePatterns:YC,defaultParseWidth:"any",valueCallback:function(t){return t+1}}),month:xe({matchPatterns:qC,defaultMatchWidth:"wide",parsePatterns:XC,defaultParseWidth:"any"}),day:xe({matchPatterns:ZC,defaultMatchWidth:"wide",parsePatterns:QC,defaultParseWidth:"any"}),dayPeriod:xe({matchPatterns:JC,defaultMatchWidth:"any",parsePatterns:eD,defaultParseWidth:"any"})};const nD=tD;var rD={code:"it",formatDistance:IC,formatLong:yC,formatRelative:LC,localize:zC,match:nD,options:{weekStartsOn:1,firstWeekContainsDate:4}};const aD=rD;var sD={lessThanXSeconds:{one:"mindre enn ett sekund",other:"mindre enn {{count}} sekunder"},xSeconds:{one:"ett sekund",other:"{{count}} sekunder"},halfAMinute:"et halvt minutt",lessThanXMinutes:{one:"mindre enn ett minutt",other:"mindre enn {{count}} minutter"},xMinutes:{one:"ett minutt",other:"{{count}} minutter"},aboutXHours:{one:"omtrent en time",other:"omtrent {{count}} timer"},xHours:{one:"en time",other:"{{count}} timer"},xDays:{one:"en dag",other:"{{count}} dager"},aboutXWeeks:{one:"omtrent en uke",other:"omtrent {{count}} uker"},xWeeks:{one:"en uke",other:"{{count}} uker"},aboutXMonths:{one:"omtrent en måned",other:"omtrent {{count}} måneder"},xMonths:{one:"en måned",other:"{{count}} måneder"},aboutXYears:{one:"omtrent ett år",other:"omtrent {{count}} år"},xYears:{one:"ett år",other:"{{count}} år"},overXYears:{one:"over ett år",other:"over {{count}} år"},almostXYears:{one:"nesten ett år",other:"nesten {{count}} år"}},oD=function(t,n,r){var a,s=sD[t];return typeof s=="string"?a=s:n===1?a=s.one:a=s.other.replace("{{count}}",String(n)),r!=null&&r.addSuffix?r.comparison&&r.comparison>0?"om "+a:a+" siden":a};const iD=oD;var uD={full:"EEEE d. MMMM y",long:"d. MMMM y",medium:"d. MMM y",short:"dd.MM.y"},cD={full:"'kl'. HH:mm:ss zzzz",long:"HH:mm:ss z",medium:"HH:mm:ss",short:"HH:mm"},lD={full:"{{date}} 'kl.' {{time}}",long:"{{date}} 'kl.' {{time}}",medium:"{{date}} {{time}}",short:"{{date}} {{time}}"},dD={date:pt({formats:uD,defaultWidth:"full"}),time:pt({formats:cD,defaultWidth:"full"}),dateTime:pt({formats:lD,defaultWidth:"full"})};const fD=dD;var pD={lastWeek:"'forrige' eeee 'kl.' p",yesterday:"'i går kl.' p",today:"'i dag kl.' p",tomorrow:"'i morgen kl.' p",nextWeek:"EEEE 'kl.' p",other:"P"},mD=function(t,n,r,a){return pD[t]};const _D=mD;var ED={narrow:["f.Kr.","e.Kr."],abbreviated:["f.Kr.","e.Kr."],wide:["før Kristus","etter Kristus"]},hD={narrow:["1","2","3","4"],abbreviated:["Q1","Q2","Q3","Q4"],wide:["1. kvartal","2. kvartal","3. kvartal","4. kvartal"]},TD={narrow:["J","F","M","A","M","J","J","A","S","O","N","D"],abbreviated:["jan.","feb.","mars","apr.","mai","juni","juli","aug.","sep.","okt.","nov.","des."],wide:["januar","februar","mars","april","mai","juni","juli","august","september","oktober","november","desember"]},gD={narrow:["S","M","T","O","T","F","L"],short:["sø","ma","ti","on","to","fr","lø"],abbreviated:["søn","man","tir","ons","tor","fre","lør"],wide:["søndag","mandag","tirsdag","onsdag","torsdag","fredag","lørdag"]},AD={narrow:{am:"a",pm:"p",midnight:"midnatt",noon:"middag",morning:"på morg.",afternoon:"på etterm.",evening:"på kvelden",night:"på natten"},abbreviated:{am:"a.m.",pm:"p.m.",midnight:"midnatt",noon:"middag",morning:"på morg.",afternoon:"på etterm.",evening:"på kvelden",night:"på natten"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnatt",noon:"middag",morning:"på morgenen",afternoon:"på ettermiddagen",evening:"på kvelden",night:"på natten"}},SD=function(t,n){var r=Number(t);return r+"."},OD={ordinalNumber:SD,era:Me({values:ED,defaultWidth:"wide"}),quarter:Me({values:hD,defaultWidth:"wide",argumentCallback:function(t){return t-1}}),month:Me({values:TD,defaultWidth:"wide"}),day:Me({values:gD,defaultWidth:"wide"}),dayPeriod:Me({values:AD,defaultWidth:"wide"})};const ID=OD;var vD=/^(\d+)\.?/i,bD=/\d+/i,RD={narrow:/^(f\.? ?Kr\.?|fvt\.?|e\.? ?Kr\.?|evt\.?)/i,abbreviated:/^(f\.? ?Kr\.?|fvt\.?|e\.? ?Kr\.?|evt\.?)/i,wide:/^(før Kristus|før vår tid|etter Kristus|vår tid)/i},ND={any:[/^f/i,/^e/i]},yD={narrow:/^[1234]/i,abbreviated:/^q[1234]/i,wide:/^[1234](\.)? kvartal/i},CD={any:[/1/i,/2/i,/3/i,/4/i]},DD={narrow:/^[jfmasond]/i,abbreviated:/^(jan|feb|mars?|apr|mai|juni?|juli?|aug|sep|okt|nov|des)\.?/i,wide:/^(januar|februar|mars|april|mai|juni|juli|august|september|oktober|november|desember)/i},PD={narrow:[/^j/i,/^f/i,/^m/i,/^a/i,/^m/i,/^j/i,/^j/i,/^a/i,/^s/i,/^o/i,/^n/i,/^d/i],any:[/^ja/i,/^f/i,/^mar/i,/^ap/i,/^mai/i,/^jun/i,/^jul/i,/^aug/i,/^s/i,/^o/i,/^n/i,/^d/i]},wD={narrow:/^[smtofl]/i,short:/^(sø|ma|ti|on|to|fr|lø)/i,abbreviated:/^(søn|man|tir|ons|tor|fre|lør)/i,wide:/^(søndag|mandag|tirsdag|onsdag|torsdag|fredag|lørdag)/i},LD={any:[/^s/i,/^m/i,/^ti/i,/^o/i,/^to/i,/^f/i,/^l/i]},$D={narrow:/^(midnatt|middag|(på) (morgenen|ettermiddagen|kvelden|natten)|[ap])/i,any:/^([ap]\.?\s?m\.?|midnatt|middag|(på) (morgenen|ettermiddagen|kvelden|natten))/i},kD={any:{am:/^a(\.?\s?m\.?)?$/i,pm:/^p(\.?\s?m\.?)?$/i,midnight:/^midn/i,noon:/^midd/i,morning:/morgen/i,afternoon:/ettermiddag/i,evening:/kveld/i,night:/natt/i}},UD={ordinalNumber:mr({matchPattern:vD,parsePattern:bD,valueCallback:function(t){return parseInt(t,10)}}),era:xe({matchPatterns:RD,defaultMatchWidth:"wide",parsePatterns:ND,defaultParseWidth:"any"}),quarter:xe({matchPatterns:yD,defaultMatchWidth:"wide",parsePatterns:CD,defaultParseWidth:"any",valueCallback:function(t){return t+1}}),month:xe({matchPatterns:DD,defaultMatchWidth:"wide",parsePatterns:PD,defaultParseWidth:"any"}),day:xe({matchPatterns:wD,defaultMatchWidth:"wide",parsePatterns:LD,defaultParseWidth:"any"}),dayPeriod:xe({matchPatterns:$D,defaultMatchWidth:"any",parsePatterns:kD,defaultParseWidth:"any"})};const MD=UD;var xD={code:"nb",formatDistance:iD,formatLong:fD,formatRelative:_D,localize:ID,match:MD,options:{weekStartsOn:1,firstWeekContainsDate:4}};const FD=xD;var WD={lessThanXSeconds:{one:"minder dan een seconde",other:"minder dan {{count}} seconden"},xSeconds:{one:"1 seconde",other:"{{count}} seconden"},halfAMinute:"een halve minuut",lessThanXMinutes:{one:"minder dan een minuut",other:"minder dan {{count}} minuten"},xMinutes:{one:"een minuut",other:"{{count}} minuten"},aboutXHours:{one:"ongeveer 1 uur",other:"ongeveer {{count}} uur"},xHours:{one:"1 uur",other:"{{count}} uur"},xDays:{one:"1 dag",other:"{{count}} dagen"},aboutXWeeks:{one:"ongeveer 1 week",other:"ongeveer {{count}} weken"},xWeeks:{one:"1 week",other:"{{count}} weken"},aboutXMonths:{one:"ongeveer 1 maand",other:"ongeveer {{count}} maanden"},xMonths:{one:"1 maand",other:"{{count}} maanden"},aboutXYears:{one:"ongeveer 1 jaar",other:"ongeveer {{count}} jaar"},xYears:{one:"1 jaar",other:"{{count}} jaar"},overXYears:{one:"meer dan 1 jaar",other:"meer dan {{count}} jaar"},almostXYears:{one:"bijna 1 jaar",other:"bijna {{count}} jaar"}},GD=function(t,n,r){var a,s=WD[t];return typeof s=="string"?a=s:n===1?a=s.one:a=s.other.replace("{{count}}",String(n)),r!=null&&r.addSuffix?r.comparison&&r.comparison>0?"over "+a:a+" geleden":a};const zD=GD;var BD={full:"EEEE d MMMM y",long:"d MMMM y",medium:"d MMM y",short:"dd-MM-y"},HD={full:"HH:mm:ss zzzz",long:"HH:mm:ss z",medium:"HH:mm:ss",short:"HH:mm"},VD={full:"{{date}} 'om' {{time}}",long:"{{date}} 'om' {{time}}",medium:"{{date}}, {{time}}",short:"{{date}}, {{time}}"},jD={date:pt({formats:BD,defaultWidth:"full"}),time:pt({formats:HD,defaultWidth:"full"}),dateTime:pt({formats:VD,defaultWidth:"full"})};const KD=jD;var YD={lastWeek:"'afgelopen' eeee 'om' p",yesterday:"'gisteren om' p",today:"'vandaag om' p",tomorrow:"'morgen om' p",nextWeek:"eeee 'om' p",other:"P"},qD=function(t,n,r,a){return YD[t]};const XD=qD;var ZD={narrow:["v.C.","n.C."],abbreviated:["v.Chr.","n.Chr."],wide:["voor Christus","na Christus"]},QD={narrow:["1","2","3","4"],abbreviated:["K1","K2","K3","K4"],wide:["1e kwartaal","2e kwartaal","3e kwartaal","4e kwartaal"]},JD={narrow:["J","F","M","A","M","J","J","A","S","O","N","D"],abbreviated:["jan.","feb.","mrt.","apr.","mei","jun.","jul.","aug.","sep.","okt.","nov.","dec."],wide:["januari","februari","maart","april","mei","juni","juli","augustus","september","oktober","november","december"]},e4={narrow:["Z","M","D","W","D","V","Z"],short:["zo","ma","di","wo","do","vr","za"],abbreviated:["zon","maa","din","woe","don","vri","zat"],wide:["zondag","maandag","dinsdag","woensdag","donderdag","vrijdag","zaterdag"]},t4={narrow:{am:"AM",pm:"PM",midnight:"middernacht",noon:"het middaguur",morning:"'s ochtends",afternoon:"'s middags",evening:"'s avonds",night:"'s nachts"},abbreviated:{am:"AM",pm:"PM",midnight:"middernacht",noon:"het middaguur",morning:"'s ochtends",afternoon:"'s middags",evening:"'s avonds",night:"'s nachts"},wide:{am:"AM",pm:"PM",midnight:"middernacht",noon:"het middaguur",morning:"'s ochtends",afternoon:"'s middags",evening:"'s avonds",night:"'s nachts"}},n4=function(t,n){var r=Number(t);return r+"e"},r4={ordinalNumber:n4,era:Me({values:ZD,defaultWidth:"wide"}),quarter:Me({values:QD,defaultWidth:"wide",argumentCallback:function(t){return t-1}}),month:Me({values:JD,defaultWidth:"wide"}),day:Me({values:e4,defaultWidth:"wide"}),dayPeriod:Me({values:t4,defaultWidth:"wide"})};const a4=r4;var s4=/^(\d+)e?/i,o4=/\d+/i,i4={narrow:/^([vn]\.? ?C\.?)/,abbreviated:/^([vn]\. ?Chr\.?)/,wide:/^((voor|na) Christus)/},u4={any:[/^v/,/^n/]},c4={narrow:/^[1234]/i,abbreviated:/^K[1234]/i,wide:/^[1234]e kwartaal/i},l4={any:[/1/i,/2/i,/3/i,/4/i]},d4={narrow:/^[jfmasond]/i,abbreviated:/^(jan.|feb.|mrt.|apr.|mei|jun.|jul.|aug.|sep.|okt.|nov.|dec.)/i,wide:/^(januari|februari|maart|april|mei|juni|juli|augustus|september|oktober|november|december)/i},f4={narrow:[/^j/i,/^f/i,/^m/i,/^a/i,/^m/i,/^j/i,/^j/i,/^a/i,/^s/i,/^o/i,/^n/i,/^d/i],any:[/^jan/i,/^feb/i,/^m(r|a)/i,/^apr/i,/^mei/i,/^jun/i,/^jul/i,/^aug/i,/^sep/i,/^okt/i,/^nov/i,/^dec/i]},p4={narrow:/^[zmdwv]/i,short:/^(zo|ma|di|wo|do|vr|za)/i,abbreviated:/^(zon|maa|din|woe|don|vri|zat)/i,wide:/^(zondag|maandag|dinsdag|woensdag|donderdag|vrijdag|zaterdag)/i},m4={narrow:[/^z/i,/^m/i,/^d/i,/^w/i,/^d/i,/^v/i,/^z/i],any:[/^zo/i,/^ma/i,/^di/i,/^wo/i,/^do/i,/^vr/i,/^za/i]},_4={any:/^(am|pm|middernacht|het middaguur|'s (ochtends|middags|avonds|nachts))/i},E4={any:{am:/^am/i,pm:/^pm/i,midnight:/^middernacht/i,noon:/^het middaguur/i,morning:/ochtend/i,afternoon:/middag/i,evening:/avond/i,night:/nacht/i}},h4={ordinalNumber:mr({matchPattern:s4,parsePattern:o4,valueCallback:function(t){return parseInt(t,10)}}),era:xe({matchPatterns:i4,defaultMatchWidth:"wide",parsePatterns:u4,defaultParseWidth:"any"}),quarter:xe({matchPatterns:c4,defaultMatchWidth:"wide",parsePatterns:l4,defaultParseWidth:"any",valueCallback:function(t){return t+1}}),month:xe({matchPatterns:d4,defaultMatchWidth:"wide",parsePatterns:f4,defaultParseWidth:"any"}),day:xe({matchPatterns:p4,defaultMatchWidth:"wide",parsePatterns:m4,defaultParseWidth:"any"}),dayPeriod:xe({matchPatterns:_4,defaultMatchWidth:"any",parsePatterns:E4,defaultParseWidth:"any"})};const T4=h4;var g4={code:"nl",formatDistance:zD,formatLong:KD,formatRelative:XD,localize:a4,match:T4,options:{weekStartsOn:1,firstWeekContainsDate:4}};const A4=g4;var S4={lessThanXSeconds:{one:{regular:"mniej niż sekunda",past:"mniej niż sekundę",future:"mniej niż sekundę"},twoFour:"mniej niż {{count}} sekundy",other:"mniej niż {{count}} sekund"},xSeconds:{one:{regular:"sekunda",past:"sekundę",future:"sekundę"},twoFour:"{{count}} sekundy",other:"{{count}} sekund"},halfAMinute:{one:"pół minuty",twoFour:"pół minuty",other:"pół minuty"},lessThanXMinutes:{one:{regular:"mniej niż minuta",past:"mniej niż minutę",future:"mniej niż minutę"},twoFour:"mniej niż {{count}} minuty",other:"mniej niż {{count}} minut"},xMinutes:{one:{regular:"minuta",past:"minutę",future:"minutę"},twoFour:"{{count}} minuty",other:"{{count}} minut"},aboutXHours:{one:{regular:"około godziny",past:"około godziny",future:"około godzinę"},twoFour:"około {{count}} godziny",other:"około {{count}} godzin"},xHours:{one:{regular:"godzina",past:"godzinę",future:"godzinę"},twoFour:"{{count}} godziny",other:"{{count}} godzin"},xDays:{one:{regular:"dzień",past:"dzień",future:"1 dzień"},twoFour:"{{count}} dni",other:"{{count}} dni"},aboutXWeeks:{one:"około tygodnia",twoFour:"około {{count}} tygodni",other:"około {{count}} tygodni"},xWeeks:{one:"tydzień",twoFour:"{{count}} tygodnie",other:"{{count}} tygodni"},aboutXMonths:{one:"około miesiąc",twoFour:"około {{count}} miesiące",other:"około {{count}} miesięcy"},xMonths:{one:"miesiąc",twoFour:"{{count}} miesiące",other:"{{count}} miesięcy"},aboutXYears:{one:"około rok",twoFour:"około {{count}} lata",other:"około {{count}} lat"},xYears:{one:"rok",twoFour:"{{count}} lata",other:"{{count}} lat"},overXYears:{one:"ponad rok",twoFour:"ponad {{count}} lata",other:"ponad {{count}} lat"},almostXYears:{one:"prawie rok",twoFour:"prawie {{count}} lata",other:"prawie {{count}} lat"}};function O4(e,t){if(t===1)return e.one;var n=t%100;if(n<=20&&n>10)return e.other;var r=n%10;return r>=2&&r<=4?e.twoFour:e.other}function Lc(e,t,n){var r=O4(e,t),a=typeof r=="string"?r:r[n];return a.replace("{{count}}",String(t))}var I4=function(t,n,r){var a=S4[t];return r!=null&&r.addSuffix?r.comparison&&r.comparison>0?"za "+Lc(a,n,"future"):Lc(a,n,"past")+" temu":Lc(a,n,"regular")};const v4=I4;var b4={full:"EEEE, do MMMM y",long:"do MMMM y",medium:"do MMM y",short:"dd.MM.y"},R4={full:"HH:mm:ss zzzz",long:"HH:mm:ss z",medium:"HH:mm:ss",short:"HH:mm"},N4={full:"{{date}} {{time}}",long:"{{date}} {{time}}",medium:"{{date}}, {{time}}",short:"{{date}}, {{time}}"},y4={date:pt({formats:b4,defaultWidth:"full"}),time:pt({formats:R4,defaultWidth:"full"}),dateTime:pt({formats:N4,defaultWidth:"full"})};const C4=y4;var D4={masculine:"ostatni",feminine:"ostatnia"},P4={masculine:"ten",feminine:"ta"},w4={masculine:"następny",feminine:"następna"},L4={0:"feminine",1:"masculine",2:"masculine",3:"feminine",4:"masculine",5:"masculine",6:"feminine"};function wp(e,t,n,r){var a;if(Nl(t,n,r))a=P4;else if(e==="lastWeek")a=D4;else if(e==="nextWeek")a=w4;else throw new Error("Cannot determine adjectives for token ".concat(e));var s=t.getUTCDay(),o=L4[s],i=a[o];return"'".concat(i,"' eeee 'o' p")}var $4={lastWeek:wp,yesterday:"'wczoraj o' p",today:"'dzisiaj o' p",tomorrow:"'jutro o' p",nextWeek:wp,other:"P"},k4=function(t,n,r,a){var s=$4[t];return typeof s=="function"?s(t,n,r,a):s};const U4=k4;var M4={narrow:["p.n.e.","n.e."],abbreviated:["p.n.e.","n.e."],wide:["przed naszą erą","naszej ery"]},x4={narrow:["1","2","3","4"],abbreviated:["I kw.","II kw.","III kw.","IV kw."],wide:["I kwartał","II kwartał","III kwartał","IV kwartał"]},F4={narrow:["S","L","M","K","M","C","L","S","W","P","L","G"],abbreviated:["sty","lut","mar","kwi","maj","cze","lip","sie","wrz","paź","lis","gru"],wide:["styczeń","luty","marzec","kwiecień","maj","czerwiec","lipiec","sierpień","wrzesień","październik","listopad","grudzień"]},W4={narrow:["s","l","m","k","m","c","l","s","w","p","l","g"],abbreviated:["sty","lut","mar","kwi","maj","cze","lip","sie","wrz","paź","lis","gru"],wide:["stycznia","lutego","marca","kwietnia","maja","czerwca","lipca","sierpnia","września","października","listopada","grudnia"]},G4={narrow:["N","P","W","Ś","C","P","S"],short:["nie","pon","wto","śro","czw","pią","sob"],abbreviated:["niedz.","pon.","wt.","śr.","czw.","pt.","sob."],wide:["niedziela","poniedziałek","wtorek","środa","czwartek","piątek","sobota"]},z4={narrow:["n","p","w","ś","c","p","s"],short:["nie","pon","wto","śro","czw","pią","sob"],abbreviated:["niedz.","pon.","wt.","śr.","czw.","pt.","sob."],wide:["niedziela","poniedziałek","wtorek","środa","czwartek","piątek","sobota"]},B4={narrow:{am:"a",pm:"p",midnight:"półn.",noon:"poł",morning:"rano",afternoon:"popoł.",evening:"wiecz.",night:"noc"},abbreviated:{am:"AM",pm:"PM",midnight:"północ",noon:"południe",morning:"rano",afternoon:"popołudnie",evening:"wieczór",night:"noc"},wide:{am:"AM",pm:"PM",midnight:"północ",noon:"południe",morning:"rano",afternoon:"popołudnie",evening:"wieczór",night:"noc"}},H4={narrow:{am:"a",pm:"p",midnight:"o półn.",noon:"w poł.",morning:"rano",afternoon:"po poł.",evening:"wiecz.",night:"w nocy"},abbreviated:{am:"AM",pm:"PM",midnight:"o północy",noon:"w południe",morning:"rano",afternoon:"po południu",evening:"wieczorem",night:"w nocy"},wide:{am:"AM",pm:"PM",midnight:"o północy",noon:"w południe",morning:"rano",afternoon:"po południu",evening:"wieczorem",night:"w nocy"}},V4=function(t,n){return String(t)},j4={ordinalNumber:V4,era:Me({values:M4,defaultWidth:"wide"}),quarter:Me({values:x4,defaultWidth:"wide",argumentCallback:function(t){return t-1}}),month:Me({values:F4,defaultWidth:"wide",formattingValues:W4,defaultFormattingWidth:"wide"}),day:Me({values:G4,defaultWidth:"wide",formattingValues:z4,defaultFormattingWidth:"wide"}),dayPeriod:Me({values:B4,defaultWidth:"wide",formattingValues:H4,defaultFormattingWidth:"wide"})};const K4=j4;var Y4=/^(\d+)?/i,q4=/\d+/i,X4={narrow:/^(p\.?\s*n\.?\s*e\.?\s*|n\.?\s*e\.?\s*)/i,abbreviated:/^(p\.?\s*n\.?\s*e\.?\s*|n\.?\s*e\.?\s*)/i,wide:/^(przed\s*nasz(ą|a)\s*er(ą|a)|naszej\s*ery)/i},Z4={any:[/^p/i,/^n/i]},Q4={narrow:/^[1234]/i,abbreviated:/^(I|II|III|IV)\s*kw\.?/i,wide:/^(I|II|III|IV)\s*kwarta(ł|l)/i},J4={narrow:[/1/i,/2/i,/3/i,/4/i],any:[/^I kw/i,/^II kw/i,/^III kw/i,/^IV kw/i]},eP={narrow:/^[slmkcwpg]/i,abbreviated:/^(sty|lut|mar|kwi|maj|cze|lip|sie|wrz|pa(ź|z)|lis|gru)/i,wide:/^(stycznia|stycze(ń|n)|lutego|luty|marca|marzec|kwietnia|kwiecie(ń|n)|maja|maj|czerwca|czerwiec|lipca|lipiec|sierpnia|sierpie(ń|n)|wrze(ś|s)nia|wrzesie(ń|n)|pa(ź|z)dziernika|pa(ź|z)dziernik|listopada|listopad|grudnia|grudzie(ń|n))/i},tP={narrow:[/^s/i,/^l/i,/^m/i,/^k/i,/^m/i,/^c/i,/^l/i,/^s/i,/^w/i,/^p/i,/^l/i,/^g/i],any:[/^st/i,/^lu/i,/^mar/i,/^k/i,/^maj/i,/^c/i,/^lip/i,/^si/i,/^w/i,/^p/i,/^lis/i,/^g/i]},nP={narrow:/^[npwścs]/i,short:/^(nie|pon|wto|(ś|s)ro|czw|pi(ą|a)|sob)/i,abbreviated:/^(niedz|pon|wt|(ś|s)r|czw|pt|sob)\.?/i,wide:/^(niedziela|poniedzia(ł|l)ek|wtorek|(ś|s)roda|czwartek|pi(ą|a)tek|sobota)/i},rP={narrow:[/^n/i,/^p/i,/^w/i,/^ś/i,/^c/i,/^p/i,/^s/i],abbreviated:[/^n/i,/^po/i,/^w/i,/^(ś|s)r/i,/^c/i,/^pt/i,/^so/i],any:[/^n/i,/^po/i,/^w/i,/^(ś|s)r/i,/^c/i,/^pi/i,/^so/i]},aP={narrow:/^(^a$|^p$|pó(ł|l)n\.?|o\s*pó(ł|l)n\.?|po(ł|l)\.?|w\s*po(ł|l)\.?|po\s*po(ł|l)\.?|rano|wiecz\.?|noc|w\s*nocy)/i,any:/^(am|pm|pó(ł|l)noc|o\s*pó(ł|l)nocy|po(ł|l)udnie|w\s*po(ł|l)udnie|popo(ł|l)udnie|po\s*po(ł|l)udniu|rano|wieczór|wieczorem|noc|w\s*nocy)/i},sP={narrow:{am:/^a$/i,pm:/^p$/i,midnight:/pó(ł|l)n/i,noon:/po(ł|l)/i,morning:/rano/i,afternoon:/po\s*po(ł|l)/i,evening:/wiecz/i,night:/noc/i},any:{am:/^am/i,pm:/^pm/i,midnight:/pó(ł|l)n/i,noon:/po(ł|l)/i,morning:/rano/i,afternoon:/po\s*po(ł|l)/i,evening:/wiecz/i,night:/noc/i}},oP={ordinalNumber:mr({matchPattern:Y4,parsePattern:q4,valueCallback:function(t){return parseInt(t,10)}}),era:xe({matchPatterns:X4,defaultMatchWidth:"wide",parsePatterns:Z4,defaultParseWidth:"any"}),quarter:xe({matchPatterns:Q4,defaultMatchWidth:"wide",parsePatterns:J4,defaultParseWidth:"any",valueCallback:function(t){return t+1}}),month:xe({matchPatterns:eP,defaultMatchWidth:"wide",parsePatterns:tP,defaultParseWidth:"any"}),day:xe({matchPatterns:nP,defaultMatchWidth:"wide",parsePatterns:rP,defaultParseWidth:"any"}),dayPeriod:xe({matchPatterns:aP,defaultMatchWidth:"any",parsePatterns:sP,defaultParseWidth:"any"})};const iP=oP;var uP={code:"pl",formatDistance:v4,formatLong:C4,formatRelative:U4,localize:K4,match:iP,options:{weekStartsOn:1,firstWeekContainsDate:4}};const cP=uP;/*! + * shared v9.6.5 + * (c) 2023 kazuya kawaguchi + * Released under the MIT License. + */const Cl=typeof window<"u",Gr=(e,t=!1)=>t?Symbol.for(e):Symbol(e),lP=(e,t,n)=>dP({l:e,k:t,s:n}),dP=e=>JSON.stringify(e).replace(/\u2028/g,"\\u2028").replace(/\u2029/g,"\\u2029").replace(/\u0027/g,"\\u0027"),Lt=e=>typeof e=="number"&&isFinite(e),fP=e=>C1(e)==="[object Date]",Fr=e=>C1(e)==="[object RegExp]",qu=e=>Ue(e)&&Object.keys(e).length===0,zt=Object.assign;let Lp;const or=()=>Lp||(Lp=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{});function $p(e){return e.replace(//g,">").replace(/"/g,""").replace(/'/g,"'")}const pP=Object.prototype.hasOwnProperty;function uo(e,t){return pP.call(e,t)}const gt=Array.isArray,bt=e=>typeof e=="function",he=e=>typeof e=="string",qe=e=>typeof e=="boolean",ut=e=>e!==null&&typeof e=="object",y1=Object.prototype.toString,C1=e=>y1.call(e),Ue=e=>{if(!ut(e))return!1;const t=Object.getPrototypeOf(e);return t===null||t.constructor===Object},mP=e=>e==null?"":gt(e)||Ue(e)&&e.toString===y1?JSON.stringify(e,null,2):String(e);function _P(e,t=""){return e.reduce((n,r,a)=>a===0?n+r:n+t+r,"")}function ff(e){let t=e;return()=>++t}function EP(e,t){typeof console<"u"&&(console.warn("[intlify] "+e),t&&console.warn(t.stack))}/*! + * message-compiler v9.6.5 + * (c) 2023 kazuya kawaguchi + * Released under the MIT License. + */function hP(e,t,n){return{line:e,column:t,offset:n}}function Dl(e,t,n){const r={start:e,end:t};return n!=null&&(r.source=n),r}const TP=/\{([0-9a-zA-Z]+)\}/g;function gP(e,...t){return t.length===1&&AP(t[0])&&(t=t[0]),(!t||!t.hasOwnProperty)&&(t={}),e.replace(TP,(n,r)=>t.hasOwnProperty(r)?t[r]:"")}const D1=Object.assign,kp=e=>typeof e=="string",AP=e=>e!==null&&typeof e=="object";function P1(e,t=""){return e.reduce((n,r,a)=>a===0?n+r:n+t+r,"")}const Pe={EXPECTED_TOKEN:1,INVALID_TOKEN_IN_PLACEHOLDER:2,UNTERMINATED_SINGLE_QUOTE_IN_PLACEHOLDER:3,UNKNOWN_ESCAPE_SEQUENCE:4,INVALID_UNICODE_ESCAPE_SEQUENCE:5,UNBALANCED_CLOSING_BRACE:6,UNTERMINATED_CLOSING_BRACE:7,EMPTY_PLACEHOLDER:8,NOT_ALLOW_NEST_PLACEHOLDER:9,INVALID_LINKED_FORMAT:10,MUST_HAVE_MESSAGES_IN_PLURAL:11,UNEXPECTED_EMPTY_LINKED_MODIFIER:12,UNEXPECTED_EMPTY_LINKED_KEY:13,UNEXPECTED_LEXICAL_ANALYSIS:14,UNHANDLED_CODEGEN_NODE_TYPE:15,UNHANDLED_MINIFIER_NODE_TYPE:16,__EXTEND_POINT__:17},SP={[Pe.EXPECTED_TOKEN]:"Expected token: '{0}'",[Pe.INVALID_TOKEN_IN_PLACEHOLDER]:"Invalid token in placeholder: '{0}'",[Pe.UNTERMINATED_SINGLE_QUOTE_IN_PLACEHOLDER]:"Unterminated single quote in placeholder",[Pe.UNKNOWN_ESCAPE_SEQUENCE]:"Unknown escape sequence: \\{0}",[Pe.INVALID_UNICODE_ESCAPE_SEQUENCE]:"Invalid unicode escape sequence: {0}",[Pe.UNBALANCED_CLOSING_BRACE]:"Unbalanced closing brace",[Pe.UNTERMINATED_CLOSING_BRACE]:"Unterminated closing brace",[Pe.EMPTY_PLACEHOLDER]:"Empty placeholder",[Pe.NOT_ALLOW_NEST_PLACEHOLDER]:"Not allowed nest placeholder",[Pe.INVALID_LINKED_FORMAT]:"Invalid linked format",[Pe.MUST_HAVE_MESSAGES_IN_PLURAL]:"Plural must have messages",[Pe.UNEXPECTED_EMPTY_LINKED_MODIFIER]:"Unexpected empty linked modifier",[Pe.UNEXPECTED_EMPTY_LINKED_KEY]:"Unexpected empty linked key",[Pe.UNEXPECTED_LEXICAL_ANALYSIS]:"Unexpected lexical analysis in token: '{0}'",[Pe.UNHANDLED_CODEGEN_NODE_TYPE]:"unhandled codegen node type: '{0}'",[Pe.UNHANDLED_MINIFIER_NODE_TYPE]:"unhandled mimifier node type: '{0}'"};function Ts(e,t,n={}){const{domain:r,messages:a,args:s}=n,o=gP((a||SP)[e]||"",...s||[]),i=new SyntaxError(String(o));return i.code=e,t&&(i.location=t),i.domain=r,i}function OP(e){throw e}const Qn=" ",IP="\r",Zt=` +`,vP=String.fromCharCode(8232),bP=String.fromCharCode(8233);function RP(e){const t=e;let n=0,r=1,a=1,s=0;const o=P=>t[P]===IP&&t[P+1]===Zt,i=P=>t[P]===Zt,u=P=>t[P]===bP,c=P=>t[P]===vP,l=P=>o(P)||i(P)||u(P)||c(P),f=()=>n,d=()=>r,m=()=>a,_=()=>s,A=P=>o(P)||u(P)||c(P)?Zt:t[P],R=()=>A(n),I=()=>A(n+s);function b(){return s=0,l(n)&&(r++,a=0),o(n)&&n++,n++,a++,t[n]}function v(){return o(n+s)&&s++,s++,t[n+s]}function T(){n=0,r=1,a=1,s=0}function L(P=0){s=P}function w(){const P=n+s;for(;P!==n;)b();s=0}return{index:f,line:d,column:m,peekOffset:_,charAt:A,currentChar:R,currentPeek:I,next:b,peek:v,reset:T,resetPeek:L,skipToPeek:w}}const Sr=void 0,NP=".",Up="'",yP="tokenizer";function CP(e,t={}){const n=t.location!==!1,r=RP(e),a=()=>r.index(),s=()=>hP(r.line(),r.column(),r.index()),o=s(),i=a(),u={currentType:14,offset:i,startLoc:o,endLoc:o,lastType:14,lastOffset:i,lastStartLoc:o,lastEndLoc:o,braceNest:0,inLinked:!1,text:""},c=()=>u,{onError:l}=t;function f(S,O,y,...M){const H=c();if(O.column+=y,O.offset+=y,l){const ne=n?Dl(H.startLoc,O):null,ie=Ts(S,ne,{domain:yP,args:M});l(ie)}}function d(S,O,y){S.endLoc=s(),S.currentType=O;const M={type:O};return n&&(M.loc=Dl(S.startLoc,S.endLoc)),y!=null&&(M.value=y),M}const m=S=>d(S,14);function _(S,O){return S.currentChar()===O?(S.next(),O):(f(Pe.EXPECTED_TOKEN,s(),0,O),"")}function A(S){let O="";for(;S.currentPeek()===Qn||S.currentPeek()===Zt;)O+=S.currentPeek(),S.peek();return O}function R(S){const O=A(S);return S.skipToPeek(),O}function I(S){if(S===Sr)return!1;const O=S.charCodeAt(0);return O>=97&&O<=122||O>=65&&O<=90||O===95}function b(S){if(S===Sr)return!1;const O=S.charCodeAt(0);return O>=48&&O<=57}function v(S,O){const{currentType:y}=O;if(y!==2)return!1;A(S);const M=I(S.currentPeek());return S.resetPeek(),M}function T(S,O){const{currentType:y}=O;if(y!==2)return!1;A(S);const M=S.currentPeek()==="-"?S.peek():S.currentPeek(),H=b(M);return S.resetPeek(),H}function L(S,O){const{currentType:y}=O;if(y!==2)return!1;A(S);const M=S.currentPeek()===Up;return S.resetPeek(),M}function w(S,O){const{currentType:y}=O;if(y!==8)return!1;A(S);const M=S.currentPeek()===".";return S.resetPeek(),M}function P(S,O){const{currentType:y}=O;if(y!==9)return!1;A(S);const M=I(S.currentPeek());return S.resetPeek(),M}function V(S,O){const{currentType:y}=O;if(!(y===8||y===12))return!1;A(S);const M=S.currentPeek()===":";return S.resetPeek(),M}function G(S,O){const{currentType:y}=O;if(y!==10)return!1;const M=()=>{const ne=S.currentPeek();return ne==="{"?I(S.peek()):ne==="@"||ne==="%"||ne==="|"||ne===":"||ne==="."||ne===Qn||!ne?!1:ne===Zt?(S.peek(),M()):I(ne)},H=M();return S.resetPeek(),H}function z(S){A(S);const O=S.currentPeek()==="|";return S.resetPeek(),O}function k(S){const O=A(S),y=S.currentPeek()==="%"&&S.peek()==="{";return S.resetPeek(),{isModulo:y,hasSpace:O.length>0}}function Z(S,O=!0){const y=(H=!1,ne="",ie=!1)=>{const fe=S.currentPeek();return fe==="{"?ne==="%"?!1:H:fe==="@"||!fe?ne==="%"?!0:H:fe==="%"?(S.peek(),y(H,"%",!0)):fe==="|"?ne==="%"||ie?!0:!(ne===Qn||ne===Zt):fe===Qn?(S.peek(),y(!0,Qn,ie)):fe===Zt?(S.peek(),y(!0,Zt,ie)):!0},M=y();return O&&S.resetPeek(),M}function J(S,O){const y=S.currentChar();return y===Sr?Sr:O(y)?(S.next(),y):null}function te(S){return J(S,y=>{const M=y.charCodeAt(0);return M>=97&&M<=122||M>=65&&M<=90||M>=48&&M<=57||M===95||M===36})}function D(S){return J(S,y=>{const M=y.charCodeAt(0);return M>=48&&M<=57})}function W(S){return J(S,y=>{const M=y.charCodeAt(0);return M>=48&&M<=57||M>=65&&M<=70||M>=97&&M<=102})}function B(S){let O="",y="";for(;O=D(S);)y+=O;return y}function ae(S){R(S);const O=S.currentChar();return O!=="%"&&f(Pe.EXPECTED_TOKEN,s(),0,O),S.next(),"%"}function Ne(S){let O="";for(;;){const y=S.currentChar();if(y==="{"||y==="}"||y==="@"||y==="|"||!y)break;if(y==="%")if(Z(S))O+=y,S.next();else break;else if(y===Qn||y===Zt)if(Z(S))O+=y,S.next();else{if(z(S))break;O+=y,S.next()}else O+=y,S.next()}return O}function ke(S){R(S);let O="",y="";for(;O=te(S);)y+=O;return S.currentChar()===Sr&&f(Pe.UNTERMINATED_CLOSING_BRACE,s(),0),y}function Te(S){R(S);let O="";return S.currentChar()==="-"?(S.next(),O+=`-${B(S)}`):O+=B(S),S.currentChar()===Sr&&f(Pe.UNTERMINATED_CLOSING_BRACE,s(),0),O}function Ce(S){R(S),_(S,"'");let O="",y="";const M=ne=>ne!==Up&&ne!==Zt;for(;O=J(S,M);)O==="\\"?y+=yt(S):y+=O;const H=S.currentChar();return H===Zt||H===Sr?(f(Pe.UNTERMINATED_SINGLE_QUOTE_IN_PLACEHOLDER,s(),0),H===Zt&&(S.next(),_(S,"'")),y):(_(S,"'"),y)}function yt(S){const O=S.currentChar();switch(O){case"\\":case"'":return S.next(),`\\${O}`;case"u":return We(S,O,4);case"U":return We(S,O,6);default:return f(Pe.UNKNOWN_ESCAPE_SEQUENCE,s(),0,O),""}}function We(S,O,y){_(S,O);let M="";for(let H=0;HH!=="{"&&H!=="}"&&H!==Qn&&H!==Zt;for(;O=J(S,M);)y+=O;return y}function st(S){let O="",y="";for(;O=te(S);)y+=O;return y}function X(S){const O=(y=!1,M)=>{const H=S.currentChar();return H==="{"||H==="%"||H==="@"||H==="|"||H==="("||H===")"||!H||H===Qn?M:H===Zt||H===NP?(M+=H,S.next(),O(y,M)):(M+=H,S.next(),O(!0,M))};return O(!1,"")}function me(S){R(S);const O=_(S,"|");return R(S),O}function de(S,O){let y=null;switch(S.currentChar()){case"{":return O.braceNest>=1&&f(Pe.NOT_ALLOW_NEST_PLACEHOLDER,s(),0),S.next(),y=d(O,2,"{"),R(S),O.braceNest++,y;case"}":return O.braceNest>0&&O.currentType===2&&f(Pe.EMPTY_PLACEHOLDER,s(),0),S.next(),y=d(O,3,"}"),O.braceNest--,O.braceNest>0&&R(S),O.inLinked&&O.braceNest===0&&(O.inLinked=!1),y;case"@":return O.braceNest>0&&f(Pe.UNTERMINATED_CLOSING_BRACE,s(),0),y=Oe(S,O)||m(O),O.braceNest=0,y;default:let H=!0,ne=!0,ie=!0;if(z(S))return O.braceNest>0&&f(Pe.UNTERMINATED_CLOSING_BRACE,s(),0),y=d(O,1,me(S)),O.braceNest=0,O.inLinked=!1,y;if(O.braceNest>0&&(O.currentType===5||O.currentType===6||O.currentType===7))return f(Pe.UNTERMINATED_CLOSING_BRACE,s(),0),O.braceNest=0,Ke(S,O);if(H=v(S,O))return y=d(O,5,ke(S)),R(S),y;if(ne=T(S,O))return y=d(O,6,Te(S)),R(S),y;if(ie=L(S,O))return y=d(O,7,Ce(S)),R(S),y;if(!H&&!ne&&!ie)return y=d(O,13,Ve(S)),f(Pe.INVALID_TOKEN_IN_PLACEHOLDER,s(),0,y.value),R(S),y;break}return y}function Oe(S,O){const{currentType:y}=O;let M=null;const H=S.currentChar();switch((y===8||y===9||y===12||y===10)&&(H===Zt||H===Qn)&&f(Pe.INVALID_LINKED_FORMAT,s(),0),H){case"@":return S.next(),M=d(O,8,"@"),O.inLinked=!0,M;case".":return R(S),S.next(),d(O,9,".");case":":return R(S),S.next(),d(O,10,":");default:return z(S)?(M=d(O,1,me(S)),O.braceNest=0,O.inLinked=!1,M):w(S,O)||V(S,O)?(R(S),Oe(S,O)):P(S,O)?(R(S),d(O,12,st(S))):G(S,O)?(R(S),H==="{"?de(S,O)||M:d(O,11,X(S))):(y===8&&f(Pe.INVALID_LINKED_FORMAT,s(),0),O.braceNest=0,O.inLinked=!1,Ke(S,O))}}function Ke(S,O){let y={type:14};if(O.braceNest>0)return de(S,O)||m(O);if(O.inLinked)return Oe(S,O)||m(O);switch(S.currentChar()){case"{":return de(S,O)||m(O);case"}":return f(Pe.UNBALANCED_CLOSING_BRACE,s(),0),S.next(),d(O,3,"}");case"@":return Oe(S,O)||m(O);default:if(z(S))return y=d(O,1,me(S)),O.braceNest=0,O.inLinked=!1,y;const{isModulo:H,hasSpace:ne}=k(S);if(H)return ne?d(O,0,Ne(S)):d(O,4,ae(S));if(Z(S))return d(O,0,Ne(S));break}return y}function C(){const{currentType:S,offset:O,startLoc:y,endLoc:M}=u;return u.lastType=S,u.lastOffset=O,u.lastStartLoc=y,u.lastEndLoc=M,u.offset=a(),u.startLoc=s(),r.currentChar()===Sr?d(u,14):Ke(r,u)}return{nextToken:C,currentOffset:a,currentPosition:s,context:c}}const DP="parser",PP=/(?:\\\\|\\'|\\u([0-9a-fA-F]{4})|\\U([0-9a-fA-F]{6}))/g;function wP(e,t,n){switch(e){case"\\\\":return"\\";case"\\'":return"'";default:{const r=parseInt(t||n,16);return r<=55295||r>=57344?String.fromCodePoint(r):"�"}}}function LP(e={}){const t=e.location!==!1,{onError:n}=e;function r(I,b,v,T,...L){const w=I.currentPosition();if(w.offset+=T,w.column+=T,n){const P=t?Dl(v,w):null,V=Ts(b,P,{domain:DP,args:L});n(V)}}function a(I,b,v){const T={type:I};return t&&(T.start=b,T.end=b,T.loc={start:v,end:v}),T}function s(I,b,v,T){T&&(I.type=T),t&&(I.end=b,I.loc&&(I.loc.end=v))}function o(I,b){const v=I.context(),T=a(3,v.offset,v.startLoc);return T.value=b,s(T,I.currentOffset(),I.currentPosition()),T}function i(I,b){const v=I.context(),{lastOffset:T,lastStartLoc:L}=v,w=a(5,T,L);return w.index=parseInt(b,10),I.nextToken(),s(w,I.currentOffset(),I.currentPosition()),w}function u(I,b){const v=I.context(),{lastOffset:T,lastStartLoc:L}=v,w=a(4,T,L);return w.key=b,I.nextToken(),s(w,I.currentOffset(),I.currentPosition()),w}function c(I,b){const v=I.context(),{lastOffset:T,lastStartLoc:L}=v,w=a(9,T,L);return w.value=b.replace(PP,wP),I.nextToken(),s(w,I.currentOffset(),I.currentPosition()),w}function l(I){const b=I.nextToken(),v=I.context(),{lastOffset:T,lastStartLoc:L}=v,w=a(8,T,L);return b.type!==12?(r(I,Pe.UNEXPECTED_EMPTY_LINKED_MODIFIER,v.lastStartLoc,0),w.value="",s(w,T,L),{nextConsumeToken:b,node:w}):(b.value==null&&r(I,Pe.UNEXPECTED_LEXICAL_ANALYSIS,v.lastStartLoc,0,xn(b)),w.value=b.value||"",s(w,I.currentOffset(),I.currentPosition()),{node:w})}function f(I,b){const v=I.context(),T=a(7,v.offset,v.startLoc);return T.value=b,s(T,I.currentOffset(),I.currentPosition()),T}function d(I){const b=I.context(),v=a(6,b.offset,b.startLoc);let T=I.nextToken();if(T.type===9){const L=l(I);v.modifier=L.node,T=L.nextConsumeToken||I.nextToken()}switch(T.type!==10&&r(I,Pe.UNEXPECTED_LEXICAL_ANALYSIS,b.lastStartLoc,0,xn(T)),T=I.nextToken(),T.type===2&&(T=I.nextToken()),T.type){case 11:T.value==null&&r(I,Pe.UNEXPECTED_LEXICAL_ANALYSIS,b.lastStartLoc,0,xn(T)),v.key=f(I,T.value||"");break;case 5:T.value==null&&r(I,Pe.UNEXPECTED_LEXICAL_ANALYSIS,b.lastStartLoc,0,xn(T)),v.key=u(I,T.value||"");break;case 6:T.value==null&&r(I,Pe.UNEXPECTED_LEXICAL_ANALYSIS,b.lastStartLoc,0,xn(T)),v.key=i(I,T.value||"");break;case 7:T.value==null&&r(I,Pe.UNEXPECTED_LEXICAL_ANALYSIS,b.lastStartLoc,0,xn(T)),v.key=c(I,T.value||"");break;default:r(I,Pe.UNEXPECTED_EMPTY_LINKED_KEY,b.lastStartLoc,0);const L=I.context(),w=a(7,L.offset,L.startLoc);return w.value="",s(w,L.offset,L.startLoc),v.key=w,s(v,L.offset,L.startLoc),{nextConsumeToken:T,node:v}}return s(v,I.currentOffset(),I.currentPosition()),{node:v}}function m(I){const b=I.context(),v=b.currentType===1?I.currentOffset():b.offset,T=b.currentType===1?b.endLoc:b.startLoc,L=a(2,v,T);L.items=[];let w=null;do{const G=w||I.nextToken();switch(w=null,G.type){case 0:G.value==null&&r(I,Pe.UNEXPECTED_LEXICAL_ANALYSIS,b.lastStartLoc,0,xn(G)),L.items.push(o(I,G.value||""));break;case 6:G.value==null&&r(I,Pe.UNEXPECTED_LEXICAL_ANALYSIS,b.lastStartLoc,0,xn(G)),L.items.push(i(I,G.value||""));break;case 5:G.value==null&&r(I,Pe.UNEXPECTED_LEXICAL_ANALYSIS,b.lastStartLoc,0,xn(G)),L.items.push(u(I,G.value||""));break;case 7:G.value==null&&r(I,Pe.UNEXPECTED_LEXICAL_ANALYSIS,b.lastStartLoc,0,xn(G)),L.items.push(c(I,G.value||""));break;case 8:const z=d(I);L.items.push(z.node),w=z.nextConsumeToken||null;break}}while(b.currentType!==14&&b.currentType!==1);const P=b.currentType===1?b.lastOffset:I.currentOffset(),V=b.currentType===1?b.lastEndLoc:I.currentPosition();return s(L,P,V),L}function _(I,b,v,T){const L=I.context();let w=T.items.length===0;const P=a(1,b,v);P.cases=[],P.cases.push(T);do{const V=m(I);w||(w=V.items.length===0),P.cases.push(V)}while(L.currentType!==14);return w&&r(I,Pe.MUST_HAVE_MESSAGES_IN_PLURAL,v,0),s(P,I.currentOffset(),I.currentPosition()),P}function A(I){const b=I.context(),{offset:v,startLoc:T}=b,L=m(I);return b.currentType===14?L:_(I,v,T,L)}function R(I){const b=CP(I,D1({},e)),v=b.context(),T=a(0,v.offset,v.startLoc);return t&&T.loc&&(T.loc.source=I),T.body=A(b),e.onCacheKey&&(T.cacheKey=e.onCacheKey(I)),v.currentType!==14&&r(b,Pe.UNEXPECTED_LEXICAL_ANALYSIS,v.lastStartLoc,0,I[v.offset]||""),s(T,b.currentOffset(),b.currentPosition()),T}return{parse:R}}function xn(e){if(e.type===14)return"EOF";const t=(e.value||"").replace(/\r?\n/gu,"\\n");return t.length>10?t.slice(0,9)+"…":t}function $P(e,t={}){const n={ast:e,helpers:new Set};return{context:()=>n,helper:s=>(n.helpers.add(s),s)}}function Mp(e,t){for(let n=0;nxp(n)),e}function xp(e){if(e.items.length===1){const t=e.items[0];(t.type===3||t.type===9)&&(e.static=t.value,delete t.value)}else{const t=[];for(let n=0;ni;function c(R,I){i.code+=R}function l(R,I=!0){const b=I?a:"";c(s?b+" ".repeat(R):b)}function f(R=!0){const I=++i.indentLevel;R&&l(I)}function d(R=!0){const I=--i.indentLevel;R&&l(I)}function m(){l(i.indentLevel)}return{context:u,push:c,indent:f,deindent:d,newline:m,helper:R=>`_${R}`,needIndent:()=>i.needIndent}}function WP(e,t){const{helper:n}=e;e.push(`${n("linked")}(`),es(e,t.key),t.modifier?(e.push(", "),es(e,t.modifier),e.push(", _type")):e.push(", undefined, _type"),e.push(")")}function GP(e,t){const{helper:n,needIndent:r}=e;e.push(`${n("normalize")}([`),e.indent(r());const a=t.items.length;for(let s=0;s1){e.push(`${n("plural")}([`),e.indent(r());const a=t.cases.length;for(let s=0;s{const n=kp(t.mode)?t.mode:"normal",r=kp(t.filename)?t.filename:"message.intl",a=!!t.sourceMap,s=t.breakLineCode!=null?t.breakLineCode:n==="arrow"?";":` +`,o=t.needIndent?t.needIndent:n!=="arrow",i=e.helpers||[],u=FP(e,{mode:n,filename:r,sourceMap:a,breakLineCode:s,needIndent:o});u.push(n==="normal"?"function __msg__ (ctx) {":"(ctx) => {"),u.indent(o),i.length>0&&(u.push(`const { ${P1(i.map(f=>`${f}: _${f}`),", ")} } = ctx`),u.newline()),u.push("return "),es(u,e),u.deindent(o),u.push("}"),delete e.helpers;const{code:c,map:l}=u.context();return{ast:e,code:c,map:l?l.toJSON():void 0}};function VP(e,t={}){const n=D1({},t),r=!!n.jit,a=!!n.minify,s=n.optimize==null?!0:n.optimize,i=LP(n).parse(e);return r?(s&&UP(i),a&&Pa(i),{ast:i,code:""}):(kP(i,n),HP(i,n))}/*! + * core-base v9.6.5 + * (c) 2023 kazuya kawaguchi + * Released under the MIT License. + */function jP(){typeof __INTLIFY_PROD_DEVTOOLS__!="boolean"&&(or().__INTLIFY_PROD_DEVTOOLS__=!1),typeof __INTLIFY_JIT_COMPILATION__!="boolean"&&(or().__INTLIFY_JIT_COMPILATION__=!1),typeof __INTLIFY_DROP_MESSAGE_COMPILER__!="boolean"&&(or().__INTLIFY_DROP_MESSAGE_COMPILER__=!1)}const zr=[];zr[0]={w:[0],i:[3,0],"[":[4],o:[7]};zr[1]={w:[1],".":[2],"[":[4],o:[7]};zr[2]={w:[2],i:[3,0],0:[3,0]};zr[3]={i:[3,0],0:[3,0],w:[1,1],".":[2,1],"[":[4,1],o:[7,1]};zr[4]={"'":[5,0],'"':[6,0],"[":[4,2],"]":[1,3],o:8,l:[4,0]};zr[5]={"'":[4,0],o:8,l:[5,0]};zr[6]={'"':[4,0],o:8,l:[6,0]};const KP=/^\s?(?:true|false|-?[\d.]+|'[^']*'|"[^"]*")\s?$/;function YP(e){return KP.test(e)}function qP(e){const t=e.charCodeAt(0),n=e.charCodeAt(e.length-1);return t===n&&(t===34||t===39)?e.slice(1,-1):e}function XP(e){if(e==null)return"o";switch(e.charCodeAt(0)){case 91:case 93:case 46:case 34:case 39:return e;case 95:case 36:case 45:return"i";case 9:case 10:case 13:case 160:case 65279:case 8232:case 8233:return"w"}return"i"}function ZP(e){const t=e.trim();return e.charAt(0)==="0"&&isNaN(parseInt(e))?!1:YP(t)?qP(t):"*"+t}function QP(e){const t=[];let n=-1,r=0,a=0,s,o,i,u,c,l,f;const d=[];d[0]=()=>{o===void 0?o=i:o+=i},d[1]=()=>{o!==void 0&&(t.push(o),o=void 0)},d[2]=()=>{d[0](),a++},d[3]=()=>{if(a>0)a--,r=4,d[0]();else{if(a=0,o===void 0||(o=ZP(o),o===!1))return!1;d[1]()}};function m(){const _=e[n+1];if(r===5&&_==="'"||r===6&&_==='"')return n++,i="\\"+_,d[0](),!0}for(;r!==null;)if(n++,s=e[n],!(s==="\\"&&m())){if(u=XP(s),f=zr[r],c=f[u]||f.l||8,c===8||(r=c[0],c[1]!==void 0&&(l=d[c[1]],l&&(i=s,l()===!1))))return;if(r===7)return t}}const Fp=new Map;function JP(e,t){return ut(e)?e[t]:null}function ew(e,t){if(!ut(e))return null;let n=Fp.get(t);if(n||(n=QP(t),n&&Fp.set(t,n)),!n)return null;const r=n.length;let a=e,s=0;for(;se,nw=e=>"",rw="text",aw=e=>e.length===0?"":_P(e),sw=mP;function Wp(e,t){return e=Math.abs(e),t===2?e?e>1?1:0:1:e?Math.min(e,2):0}function ow(e){const t=Lt(e.pluralIndex)?e.pluralIndex:-1;return e.named&&(Lt(e.named.count)||Lt(e.named.n))?Lt(e.named.count)?e.named.count:Lt(e.named.n)?e.named.n:t:t}function iw(e,t){t.count||(t.count=e),t.n||(t.n=e)}function uw(e={}){const t=e.locale,n=ow(e),r=ut(e.pluralRules)&&he(t)&&bt(e.pluralRules[t])?e.pluralRules[t]:Wp,a=ut(e.pluralRules)&&he(t)&&bt(e.pluralRules[t])?Wp:void 0,s=I=>I[r(n,I.length,a)],o=e.list||[],i=I=>o[I],u=e.named||{};Lt(e.pluralIndex)&&iw(n,u);const c=I=>u[I];function l(I){const b=bt(e.messages)?e.messages(I):ut(e.messages)?e.messages[I]:!1;return b||(e.parent?e.parent.message(I):nw)}const f=I=>e.modifiers?e.modifiers[I]:tw,d=Ue(e.processor)&&bt(e.processor.normalize)?e.processor.normalize:aw,m=Ue(e.processor)&&bt(e.processor.interpolate)?e.processor.interpolate:sw,_=Ue(e.processor)&&he(e.processor.type)?e.processor.type:rw,R={list:i,named:c,plural:s,linked:(I,...b)=>{const[v,T]=b;let L="text",w="";b.length===1?ut(v)?(w=v.modifier||w,L=v.type||L):he(v)&&(w=v||w):b.length===2&&(he(v)&&(w=v||w),he(T)&&(L=T||L));const P=l(I)(R),V=L==="vnode"&>(P)&&w?P[0]:P;return w?f(w)(V,L):V},message:l,type:_,interpolate:m,normalize:d,values:zt({},o,u)};return R}let co=null;function cw(e){co=e}function lw(e,t,n){co&&co.emit("i18n:init",{timestamp:Date.now(),i18n:e,version:t,meta:n})}const dw=fw("function:translate");function fw(e){return t=>co&&co.emit(e,t)}const pw={NOT_FOUND_KEY:1,FALLBACK_TO_TRANSLATE:2,CANNOT_FORMAT_NUMBER:3,FALLBACK_TO_NUMBER_FORMAT:4,CANNOT_FORMAT_DATE:5,FALLBACK_TO_DATE_FORMAT:6,EXPERIMENTAL_CUSTOM_MESSAGE_COMPILER:7,__EXTEND_POINT__:8};function mf(e,t){return t.locale!=null?Gp(t.locale):Gp(e.locale)}let $c;function Gp(e){return he(e)?e:$c!=null&&e.resolvedOnce?$c:$c=e()}function mw(e,t,n){return[...new Set([n,...gt(t)?t:ut(t)?Object.keys(t):he(t)?[t]:[n]])]}function w1(e,t,n){const r=he(n)?n:ts,a=e;a.__localeChainCache||(a.__localeChainCache=new Map);let s=a.__localeChainCache.get(r);if(!s){s=[];let o=[n];for(;gt(o);)o=zp(s,o,t);const i=gt(t)||!Ue(t)?t:t.default?t.default:null;o=he(i)?[i]:i,gt(o)&&zp(s,o,!1),a.__localeChainCache.set(r,s)}return s}function zp(e,t,n){let r=!0;for(let a=0;a`${e.charAt(0).toLocaleUpperCase()}${e.substr(1)}`;function Tw(){return{upper:(e,t)=>t==="text"&&he(e)?e.toUpperCase():t==="vnode"&&ut(e)&&"__v_isVNode"in e?e.children.toUpperCase():e,lower:(e,t)=>t==="text"&&he(e)?e.toLowerCase():t==="vnode"&&ut(e)&&"__v_isVNode"in e?e.children.toLowerCase():e,capitalize:(e,t)=>t==="text"&&he(e)?Hp(e):t==="vnode"&&ut(e)&&"__v_isVNode"in e?Hp(e.children):e}}let L1;function Vp(e){L1=e}let $1;function gw(e){$1=e}let k1;function Aw(e){k1=e}let U1=null;const Sw=e=>{U1=e},Ow=()=>U1;let M1=null;const jp=e=>{M1=e},Iw=()=>M1;let Kp=0;function vw(e={}){const t=bt(e.onWarn)?e.onWarn:EP,n=he(e.version)?e.version:hw,r=he(e.locale)||bt(e.locale)?e.locale:ts,a=bt(r)?ts:r,s=gt(e.fallbackLocale)||Ue(e.fallbackLocale)||he(e.fallbackLocale)||e.fallbackLocale===!1?e.fallbackLocale:a,o=Ue(e.messages)?e.messages:{[a]:{}},i=Ue(e.datetimeFormats)?e.datetimeFormats:{[a]:{}},u=Ue(e.numberFormats)?e.numberFormats:{[a]:{}},c=zt({},e.modifiers||{},Tw()),l=e.pluralRules||{},f=bt(e.missing)?e.missing:null,d=qe(e.missingWarn)||Fr(e.missingWarn)?e.missingWarn:!0,m=qe(e.fallbackWarn)||Fr(e.fallbackWarn)?e.fallbackWarn:!0,_=!!e.fallbackFormat,A=!!e.unresolving,R=bt(e.postTranslation)?e.postTranslation:null,I=Ue(e.processor)?e.processor:null,b=qe(e.warnHtmlMessage)?e.warnHtmlMessage:!0,v=!!e.escapeParameter,T=bt(e.messageCompiler)?e.messageCompiler:L1,L=bt(e.messageResolver)?e.messageResolver:$1||JP,w=bt(e.localeFallbacker)?e.localeFallbacker:k1||mw,P=ut(e.fallbackContext)?e.fallbackContext:void 0,V=e,G=ut(V.__datetimeFormatters)?V.__datetimeFormatters:new Map,z=ut(V.__numberFormatters)?V.__numberFormatters:new Map,k=ut(V.__meta)?V.__meta:{};Kp++;const Z={version:n,cid:Kp,locale:r,fallbackLocale:s,messages:o,modifiers:c,pluralRules:l,missing:f,missingWarn:d,fallbackWarn:m,fallbackFormat:_,unresolving:A,postTranslation:R,processor:I,warnHtmlMessage:b,escapeParameter:v,messageCompiler:T,messageResolver:L,localeFallbacker:w,fallbackContext:P,onWarn:t,__meta:k};return Z.datetimeFormats=i,Z.numberFormats=u,Z.__datetimeFormatters=G,Z.__numberFormatters=z,__INTLIFY_PROD_DEVTOOLS__&&lw(Z,n,k),Z}function _f(e,t,n,r,a){const{missing:s,onWarn:o}=e;if(s!==null){const i=s(e,n,t,a);return he(i)?i:t}else return t}function Ds(e,t,n){const r=e;r.__localeChainCache=new Map,e.localeFallbacker(e,n,t)}function kc(e){return n=>bw(n,e)}function bw(e,t){const n=t.b||t.body;if((n.t||n.type)===1){const r=n,a=r.c||r.cases;return e.plural(a.reduce((s,o)=>[...s,Yp(e,o)],[]))}else return Yp(e,n)}function Yp(e,t){const n=t.s||t.static;if(n)return e.type==="text"?n:e.normalize([n]);{const r=(t.i||t.items).reduce((a,s)=>[...a,Pl(e,s)],[]);return e.normalize(r)}}function Pl(e,t){const n=t.t||t.type;switch(n){case 3:const r=t;return r.v||r.value;case 9:const a=t;return a.v||a.value;case 4:const s=t;return e.interpolate(e.named(s.k||s.key));case 5:const o=t;return e.interpolate(e.list(o.i!=null?o.i:o.index));case 6:const i=t,u=i.m||i.modifier;return e.linked(Pl(e,i.k||i.key),u?Pl(e,u):void 0,e.type);case 7:const c=t;return c.v||c.value;case 8:const l=t;return l.v||l.value;default:throw new Error(`unhandled node type on format message part: ${n}`)}}const x1=Pe.__EXTEND_POINT__,ei=ff(x1),Pr={INVALID_ARGUMENT:x1,INVALID_DATE_ARGUMENT:ei(),INVALID_ISO_DATE_ARGUMENT:ei(),NOT_SUPPORT_NON_STRING_MESSAGE:ei(),__EXTEND_POINT__:ei()};function aa(e){return Ts(e,null,void 0)}const F1=e=>e;let $a=Object.create(null);const ns=e=>ut(e)&&(e.t===0||e.type===0)&&("b"in e||"body"in e);function W1(e,t={}){let n=!1;const r=t.onError||OP;return t.onError=a=>{n=!0,r(a)},{...VP(e,t),detectError:n}}const Rw=(e,t)=>{if(!he(e))throw aa(Pr.NOT_SUPPORT_NON_STRING_MESSAGE);{qe(t.warnHtmlMessage)&&t.warnHtmlMessage;const r=(t.onCacheKey||F1)(e),a=$a[r];if(a)return a;const{code:s,detectError:o}=W1(e,t),i=new Function(`return ${s}`)();return o?i:$a[r]=i}};function Nw(e,t){if(__INTLIFY_JIT_COMPILATION__&&!__INTLIFY_DROP_MESSAGE_COMPILER__&&he(e)){qe(t.warnHtmlMessage)&&t.warnHtmlMessage;const r=(t.onCacheKey||F1)(e),a=$a[r];if(a)return a;const{ast:s,detectError:o}=W1(e,{...t,location:!1,jit:!0}),i=kc(s);return o?i:$a[r]=i}else{const n=e.cacheKey;if(n){const r=$a[n];return r||($a[n]=kc(e))}else return kc(e)}}const qp=()=>"",Tn=e=>bt(e);function Xp(e,...t){const{fallbackFormat:n,postTranslation:r,unresolving:a,messageCompiler:s,fallbackLocale:o,messages:i}=e,[u,c]=wl(...t),l=qe(c.missingWarn)?c.missingWarn:e.missingWarn,f=qe(c.fallbackWarn)?c.fallbackWarn:e.fallbackWarn,d=qe(c.escapeParameter)?c.escapeParameter:e.escapeParameter,m=!!c.resolvedMessage,_=he(c.default)||qe(c.default)?qe(c.default)?s?u:()=>u:c.default:n?s?u:()=>u:"",A=n||_!=="",R=mf(e,c);d&&yw(c);let[I,b,v]=m?[u,R,i[R]||{}]:G1(e,u,R,o,f,l),T=I,L=u;if(!m&&!(he(T)||ns(T)||Tn(T))&&A&&(T=_,L=T),!m&&(!(he(T)||ns(T)||Tn(T))||!he(b)))return a?Xu:u;let w=!1;const P=()=>{w=!0},V=Tn(T)?T:z1(e,u,b,T,L,P);if(w)return T;const G=Pw(e,b,v,c),z=uw(G),k=Cw(e,V,z),Z=r?r(k,u):k;if(__INTLIFY_PROD_DEVTOOLS__){const J={timestamp:Date.now(),key:he(u)?u:Tn(T)?T.key:"",locale:b||(Tn(T)?T.locale:""),format:he(T)?T:Tn(T)?T.source:"",message:Z};J.meta=zt({},e.__meta,Ow()||{}),dw(J)}return Z}function yw(e){gt(e.list)?e.list=e.list.map(t=>he(t)?$p(t):t):ut(e.named)&&Object.keys(e.named).forEach(t=>{he(e.named[t])&&(e.named[t]=$p(e.named[t]))})}function G1(e,t,n,r,a,s){const{messages:o,onWarn:i,messageResolver:u,localeFallbacker:c}=e,l=c(e,r,n);let f={},d,m=null;const _="translate";for(let A=0;Ar;return c.locale=n,c.key=t,c}const u=o(r,Dw(e,n,a,r,i,s));return u.locale=n,u.key=t,u.source=r,u}function Cw(e,t,n){return t(n)}function wl(...e){const[t,n,r]=e,a={};if(!he(t)&&!Lt(t)&&!Tn(t)&&!ns(t))throw aa(Pr.INVALID_ARGUMENT);const s=Lt(t)?String(t):(Tn(t),t);return Lt(n)?a.plural=n:he(n)?a.default=n:Ue(n)&&!qu(n)?a.named=n:gt(n)&&(a.list=n),Lt(r)?a.plural=r:he(r)?a.default=r:Ue(r)&&zt(a,r),[s,a]}function Dw(e,t,n,r,a,s){return{locale:t,key:n,warnHtmlMessage:a,onError:o=>{throw s&&s(o),o},onCacheKey:o=>lP(t,n,o)}}function Pw(e,t,n,r){const{modifiers:a,pluralRules:s,messageResolver:o,fallbackLocale:i,fallbackWarn:u,missingWarn:c,fallbackContext:l}=e,d={locale:t,modifiers:a,pluralRules:s,messages:m=>{let _=o(n,m);if(_==null&&l){const[,,A]=G1(l,m,t,i,u,c);_=o(A,m)}if(he(_)||ns(_)){let A=!1;const I=z1(e,m,t,_,m,()=>{A=!0});return A?qp:I}else return Tn(_)?_:qp}};return e.processor&&(d.processor=e.processor),r.list&&(d.list=r.list),r.named&&(d.named=r.named),Lt(r.plural)&&(d.pluralIndex=r.plural),d}function Zp(e,...t){const{datetimeFormats:n,unresolving:r,fallbackLocale:a,onWarn:s,localeFallbacker:o}=e,{__datetimeFormatters:i}=e,[u,c,l,f]=Ll(...t),d=qe(l.missingWarn)?l.missingWarn:e.missingWarn;qe(l.fallbackWarn)?l.fallbackWarn:e.fallbackWarn;const m=!!l.part,_=mf(e,l),A=o(e,a,_);if(!he(u)||u==="")return new Intl.DateTimeFormat(_,f).format(c);let R={},I,b=null;const v="datetime format";for(let w=0;w{B1.includes(u)?o[u]=n[u]:s[u]=n[u]}),he(r)?s.locale=r:Ue(r)&&(o=r),Ue(a)&&(o=a),[s.key||"",i,s,o]}function Qp(e,t,n){const r=e;for(const a in n){const s=`${t}__${a}`;r.__datetimeFormatters.has(s)&&r.__datetimeFormatters.delete(s)}}function Jp(e,...t){const{numberFormats:n,unresolving:r,fallbackLocale:a,onWarn:s,localeFallbacker:o}=e,{__numberFormatters:i}=e,[u,c,l,f]=$l(...t),d=qe(l.missingWarn)?l.missingWarn:e.missingWarn;qe(l.fallbackWarn)?l.fallbackWarn:e.fallbackWarn;const m=!!l.part,_=mf(e,l),A=o(e,a,_);if(!he(u)||u==="")return new Intl.NumberFormat(_,f).format(c);let R={},I,b=null;const v="number format";for(let w=0;w{H1.includes(u)?o[u]=n[u]:s[u]=n[u]}),he(r)?s.locale=r:Ue(r)&&(o=r),Ue(a)&&(o=a),[s.key||"",i,s,o]}function em(e,t,n){const r=e;for(const a in n){const s=`${t}__${a}`;r.__numberFormatters.has(s)&&r.__numberFormatters.delete(s)}}jP();/*! + * vue-i18n v9.6.5 + * (c) 2023 kazuya kawaguchi + * Released under the MIT License. + */const ww="9.6.5";function Lw(){typeof __VUE_I18N_FULL_INSTALL__!="boolean"&&(or().__VUE_I18N_FULL_INSTALL__=!0),typeof __VUE_I18N_LEGACY_API__!="boolean"&&(or().__VUE_I18N_LEGACY_API__=!0),typeof __INTLIFY_JIT_COMPILATION__!="boolean"&&(or().__INTLIFY_JIT_COMPILATION__=!1),typeof __INTLIFY_DROP_MESSAGE_COMPILER__!="boolean"&&(or().__INTLIFY_DROP_MESSAGE_COMPILER__=!1),typeof __INTLIFY_PROD_DEVTOOLS__!="boolean"&&(or().__INTLIFY_PROD_DEVTOOLS__=!1)}const V1=pw.__EXTEND_POINT__,Or=ff(V1);Or(),Or(),Or(),Or(),Or(),Or(),Or(),Or();const j1=Pr.__EXTEND_POINT__,nn=ff(j1),Dt={UNEXPECTED_RETURN_TYPE:j1,INVALID_ARGUMENT:nn(),MUST_BE_CALL_SETUP_TOP:nn(),NOT_INSTALLED:nn(),NOT_AVAILABLE_IN_LEGACY_MODE:nn(),REQUIRED_VALUE:nn(),INVALID_VALUE:nn(),CANNOT_SETUP_VUE_DEVTOOLS_PLUGIN:nn(),NOT_INSTALLED_WITH_PROVIDE:nn(),UNEXPECTED_ERROR:nn(),NOT_COMPATIBLE_LEGACY_VUE_I18N:nn(),BRIDGE_SUPPORT_VUE_2_ONLY:nn(),MUST_DEFINE_I18N_OPTION_IN_ALLOW_COMPOSITION:nn(),NOT_AVAILABLE_COMPOSITION_IN_LEGACY:nn(),__EXTEND_POINT__:nn()};function $t(e,...t){return Ts(e,null,void 0)}const kl=Gr("__translateVNode"),Ul=Gr("__datetimeParts"),Ml=Gr("__numberParts"),K1=Gr("__setPluralRules"),Y1=Gr("__injectWithOption"),xl=Gr("__dispose");function lo(e){if(!ut(e))return e;for(const t in e)if(uo(e,t))if(!t.includes("."))ut(e[t])&&lo(e[t]);else{const n=t.split("."),r=n.length-1;let a=e,s=!1;for(let o=0;o{if("locale"in i&&"resource"in i){const{locale:u,resource:c}=i;u?(o[u]=o[u]||{},Hs(c,o[u])):Hs(c,o)}else he(i)&&Hs(JSON.parse(i),o)}),a==null&&s)for(const i in o)uo(o,i)&&lo(o[i]);return o}const ti=e=>!ut(e)||gt(e);function Hs(e,t){if(ti(e)||ti(t))throw $t(Dt.INVALID_VALUE);for(const n in e)uo(e,n)&&(ti(e[n])||ti(t[n])?t[n]=e[n]:Hs(e[n],t[n]))}function q1(e){return e.type}function X1(e,t,n){let r=ut(t.messages)?t.messages:{};"__i18nGlobal"in n&&(r=Zu(e.locale.value,{messages:r,__i18n:n.__i18nGlobal}));const a=Object.keys(r);a.length&&a.forEach(s=>{e.mergeLocaleMessage(s,r[s])});{if(ut(t.datetimeFormats)){const s=Object.keys(t.datetimeFormats);s.length&&s.forEach(o=>{e.mergeDateTimeFormat(o,t.datetimeFormats[o])})}if(ut(t.numberFormats)){const s=Object.keys(t.numberFormats);s.length&&s.forEach(o=>{e.mergeNumberFormat(o,t.numberFormats[o])})}}}function tm(e){return U(yo,null,e,0)}const nm="__INTLIFY_META__",rm=()=>[],$w=()=>!1;let am=0;function sm(e){return(t,n,r,a)=>e(n,r,ao()||void 0,a)}const kw=()=>{const e=ao();let t=null;return e&&(t=q1(e)[nm])?{[nm]:t}:null};function Ef(e={},t){const{__root:n,__injectWithOption:r}=e,a=n===void 0,s=e.flatJson;let o=qe(e.inheritLocale)?e.inheritLocale:!0;const i=le(n&&o?n.locale.value:he(e.locale)?e.locale:ts),u=le(n&&o?n.fallbackLocale.value:he(e.fallbackLocale)||gt(e.fallbackLocale)||Ue(e.fallbackLocale)||e.fallbackLocale===!1?e.fallbackLocale:i.value),c=le(Zu(i.value,e)),l=le(Ue(e.datetimeFormats)?e.datetimeFormats:{[i.value]:{}}),f=le(Ue(e.numberFormats)?e.numberFormats:{[i.value]:{}});let d=n?n.missingWarn:qe(e.missingWarn)||Fr(e.missingWarn)?e.missingWarn:!0,m=n?n.fallbackWarn:qe(e.fallbackWarn)||Fr(e.fallbackWarn)?e.fallbackWarn:!0,_=n?n.fallbackRoot:qe(e.fallbackRoot)?e.fallbackRoot:!0,A=!!e.fallbackFormat,R=bt(e.missing)?e.missing:null,I=bt(e.missing)?sm(e.missing):null,b=bt(e.postTranslation)?e.postTranslation:null,v=n?n.warnHtmlMessage:qe(e.warnHtmlMessage)?e.warnHtmlMessage:!0,T=!!e.escapeParameter;const L=n?n.modifiers:Ue(e.modifiers)?e.modifiers:{};let w=e.pluralRules||n&&n.pluralRules,P;P=(()=>{a&&jp(null);const F={version:ww,locale:i.value,fallbackLocale:u.value,messages:c.value,modifiers:L,pluralRules:w,missing:I===null?void 0:I,missingWarn:d,fallbackWarn:m,fallbackFormat:A,unresolving:!0,postTranslation:b===null?void 0:b,warnHtmlMessage:v,escapeParameter:T,messageResolver:e.messageResolver,messageCompiler:e.messageCompiler,__meta:{framework:"vue"}};F.datetimeFormats=l.value,F.numberFormats=f.value,F.__datetimeFormatters=Ue(P)?P.__datetimeFormatters:void 0,F.__numberFormatters=Ue(P)?P.__numberFormatters:void 0;const q=vw(F);return a&&jp(q),q})(),Ds(P,i.value,u.value);function G(){return[i.value,u.value,c.value,l.value,f.value]}const z=$({get:()=>i.value,set:F=>{i.value=F,P.locale=i.value}}),k=$({get:()=>u.value,set:F=>{u.value=F,P.fallbackLocale=u.value,Ds(P,i.value,F)}}),Z=$(()=>c.value),J=$(()=>l.value),te=$(()=>f.value);function D(){return bt(b)?b:null}function W(F){b=F,P.postTranslation=F}function B(){return R}function ae(F){F!==null&&(I=sm(F)),R=F,P.missing=I}const Ne=(F,q,Ie,we,et,_t)=>{G();let kt;try{__INTLIFY_PROD_DEVTOOLS__,a||(P.fallbackContext=n?Iw():void 0),kt=F(P)}finally{__INTLIFY_PROD_DEVTOOLS__,a||(P.fallbackContext=void 0)}if(Ie!=="translate exists"&&Lt(kt)&&kt===Xu||Ie==="translate exists"&&!kt){const[hr,Ec]=q();return n&&_?we(n):et(hr)}else{if(_t(kt))return kt;throw $t(Dt.UNEXPECTED_RETURN_TYPE)}};function ke(...F){return Ne(q=>Reflect.apply(Xp,null,[q,...F]),()=>wl(...F),"translate",q=>Reflect.apply(q.t,q,[...F]),q=>q,q=>he(q))}function Te(...F){const[q,Ie,we]=F;if(we&&!ut(we))throw $t(Dt.INVALID_ARGUMENT);return ke(q,Ie,zt({resolvedMessage:!0},we||{}))}function Ce(...F){return Ne(q=>Reflect.apply(Zp,null,[q,...F]),()=>Ll(...F),"datetime format",q=>Reflect.apply(q.d,q,[...F]),()=>Bp,q=>he(q))}function yt(...F){return Ne(q=>Reflect.apply(Jp,null,[q,...F]),()=>$l(...F),"number format",q=>Reflect.apply(q.n,q,[...F]),()=>Bp,q=>he(q))}function We(F){return F.map(q=>he(q)||Lt(q)||qe(q)?tm(String(q)):q)}const st={normalize:We,interpolate:F=>F,type:"vnode"};function X(...F){return Ne(q=>{let Ie;const we=q;try{we.processor=st,Ie=Reflect.apply(Xp,null,[we,...F])}finally{we.processor=null}return Ie},()=>wl(...F),"translate",q=>q[kl](...F),q=>[tm(q)],q=>gt(q))}function me(...F){return Ne(q=>Reflect.apply(Jp,null,[q,...F]),()=>$l(...F),"number format",q=>q[Ml](...F),rm,q=>he(q)||gt(q))}function de(...F){return Ne(q=>Reflect.apply(Zp,null,[q,...F]),()=>Ll(...F),"datetime format",q=>q[Ul](...F),rm,q=>he(q)||gt(q))}function Oe(F){w=F,P.pluralRules=w}function Ke(F,q){return Ne(()=>{if(!F)return!1;const Ie=he(q)?q:i.value,we=O(Ie),et=P.messageResolver(we,F);return ns(et)||Tn(et)||he(et)},()=>[F],"translate exists",Ie=>Reflect.apply(Ie.te,Ie,[F,q]),$w,Ie=>qe(Ie))}function C(F){let q=null;const Ie=w1(P,u.value,i.value);for(let we=0;we{o&&(i.value=F,P.locale=F,Ds(P,i.value,u.value))}),He(n.fallbackLocale,F=>{o&&(u.value=F,P.fallbackLocale=F,Ds(P,i.value,u.value))}));const _e={id:am,locale:z,fallbackLocale:k,get inheritLocale(){return o},set inheritLocale(F){o=F,F&&n&&(i.value=n.locale.value,u.value=n.fallbackLocale.value,Ds(P,i.value,u.value))},get availableLocales(){return Object.keys(c.value).sort()},messages:Z,get modifiers(){return L},get pluralRules(){return w||{}},get isGlobal(){return a},get missingWarn(){return d},set missingWarn(F){d=F,P.missingWarn=d},get fallbackWarn(){return m},set fallbackWarn(F){m=F,P.fallbackWarn=m},get fallbackRoot(){return _},set fallbackRoot(F){_=F},get fallbackFormat(){return A},set fallbackFormat(F){A=F,P.fallbackFormat=A},get warnHtmlMessage(){return v},set warnHtmlMessage(F){v=F,P.warnHtmlMessage=F},get escapeParameter(){return T},set escapeParameter(F){T=F,P.escapeParameter=F},t:ke,getLocaleMessage:O,setLocaleMessage:y,mergeLocaleMessage:M,getPostTranslationHandler:D,setPostTranslationHandler:W,getMissingHandler:B,setMissingHandler:ae,[K1]:Oe};return _e.datetimeFormats=J,_e.numberFormats=te,_e.rt=Te,_e.te=Ke,_e.tm=S,_e.d=Ce,_e.n=yt,_e.getDateTimeFormat=H,_e.setDateTimeFormat=ne,_e.mergeDateTimeFormat=ie,_e.getNumberFormat=fe,_e.setNumberFormat=oe,_e.mergeNumberFormat=Re,_e[Y1]=r,_e[kl]=X,_e[Ul]=de,_e[Ml]=me,_e}function Uw(e){const t=he(e.locale)?e.locale:ts,n=he(e.fallbackLocale)||gt(e.fallbackLocale)||Ue(e.fallbackLocale)||e.fallbackLocale===!1?e.fallbackLocale:t,r=bt(e.missing)?e.missing:void 0,a=qe(e.silentTranslationWarn)||Fr(e.silentTranslationWarn)?!e.silentTranslationWarn:!0,s=qe(e.silentFallbackWarn)||Fr(e.silentFallbackWarn)?!e.silentFallbackWarn:!0,o=qe(e.fallbackRoot)?e.fallbackRoot:!0,i=!!e.formatFallbackMessages,u=Ue(e.modifiers)?e.modifiers:{},c=e.pluralizationRules,l=bt(e.postTranslation)?e.postTranslation:void 0,f=he(e.warnHtmlInMessage)?e.warnHtmlInMessage!=="off":!0,d=!!e.escapeParameterHtml,m=qe(e.sync)?e.sync:!0;let _=e.messages;if(Ue(e.sharedMessages)){const L=e.sharedMessages;_=Object.keys(L).reduce((P,V)=>{const G=P[V]||(P[V]={});return zt(G,L[V]),P},_||{})}const{__i18n:A,__root:R,__injectWithOption:I}=e,b=e.datetimeFormats,v=e.numberFormats,T=e.flatJson;return{locale:t,fallbackLocale:n,messages:_,flatJson:T,datetimeFormats:b,numberFormats:v,missing:r,missingWarn:a,fallbackWarn:s,fallbackRoot:o,fallbackFormat:i,modifiers:u,pluralRules:c,postTranslation:l,warnHtmlMessage:f,escapeParameter:d,messageResolver:e.messageResolver,inheritLocale:m,__i18n:A,__root:R,__injectWithOption:I}}function Fl(e={},t){{const n=Ef(Uw(e)),{__extender:r}=e,a={id:n.id,get locale(){return n.locale.value},set locale(s){n.locale.value=s},get fallbackLocale(){return n.fallbackLocale.value},set fallbackLocale(s){n.fallbackLocale.value=s},get messages(){return n.messages.value},get datetimeFormats(){return n.datetimeFormats.value},get numberFormats(){return n.numberFormats.value},get availableLocales(){return n.availableLocales},get formatter(){return{interpolate(){return[]}}},set formatter(s){},get missing(){return n.getMissingHandler()},set missing(s){n.setMissingHandler(s)},get silentTranslationWarn(){return qe(n.missingWarn)?!n.missingWarn:n.missingWarn},set silentTranslationWarn(s){n.missingWarn=qe(s)?!s:s},get silentFallbackWarn(){return qe(n.fallbackWarn)?!n.fallbackWarn:n.fallbackWarn},set silentFallbackWarn(s){n.fallbackWarn=qe(s)?!s:s},get modifiers(){return n.modifiers},get formatFallbackMessages(){return n.fallbackFormat},set formatFallbackMessages(s){n.fallbackFormat=s},get postTranslation(){return n.getPostTranslationHandler()},set postTranslation(s){n.setPostTranslationHandler(s)},get sync(){return n.inheritLocale},set sync(s){n.inheritLocale=s},get warnHtmlInMessage(){return n.warnHtmlMessage?"warn":"off"},set warnHtmlInMessage(s){n.warnHtmlMessage=s!=="off"},get escapeParameterHtml(){return n.escapeParameter},set escapeParameterHtml(s){n.escapeParameter=s},get preserveDirectiveContent(){return!0},set preserveDirectiveContent(s){},get pluralizationRules(){return n.pluralRules||{}},__composer:n,t(...s){const[o,i,u]=s,c={};let l=null,f=null;if(!he(o))throw $t(Dt.INVALID_ARGUMENT);const d=o;return he(i)?c.locale=i:gt(i)?l=i:Ue(i)&&(f=i),gt(u)?l=u:Ue(u)&&(f=u),Reflect.apply(n.t,n,[d,l||f||{},c])},rt(...s){return Reflect.apply(n.rt,n,[...s])},tc(...s){const[o,i,u]=s,c={plural:1};let l=null,f=null;if(!he(o))throw $t(Dt.INVALID_ARGUMENT);const d=o;return he(i)?c.locale=i:Lt(i)?c.plural=i:gt(i)?l=i:Ue(i)&&(f=i),he(u)?c.locale=u:gt(u)?l=u:Ue(u)&&(f=u),Reflect.apply(n.t,n,[d,l||f||{},c])},te(s,o){return n.te(s,o)},tm(s){return n.tm(s)},getLocaleMessage(s){return n.getLocaleMessage(s)},setLocaleMessage(s,o){n.setLocaleMessage(s,o)},mergeLocaleMessage(s,o){n.mergeLocaleMessage(s,o)},d(...s){return Reflect.apply(n.d,n,[...s])},getDateTimeFormat(s){return n.getDateTimeFormat(s)},setDateTimeFormat(s,o){n.setDateTimeFormat(s,o)},mergeDateTimeFormat(s,o){n.mergeDateTimeFormat(s,o)},n(...s){return Reflect.apply(n.n,n,[...s])},getNumberFormat(s){return n.getNumberFormat(s)},setNumberFormat(s,o){n.setNumberFormat(s,o)},mergeNumberFormat(s,o){n.mergeNumberFormat(s,o)},getChoiceIndex(s,o){return-1}};return a.__extender=r,a}}const hf={tag:{type:[String,Object]},locale:{type:String},scope:{type:String,validator:e=>e==="parent"||e==="global",default:"parent"},i18n:{type:Object}};function Mw({slots:e},t){return t.length===1&&t[0]==="default"?(e.default?e.default():[]).reduce((r,a)=>[...r,...a.type===be?a.children:[a]],[]):t.reduce((n,r)=>{const a=e[r];return a&&(n[r]=a()),n},{})}function Z1(e){return be}const xw=Q({name:"i18n-t",props:zt({keypath:{type:String,required:!0},plural:{type:[Number,String],validator:e=>Lt(e)||!isNaN(e)}},hf),setup(e,t){const{slots:n,attrs:r}=t,a=e.i18n||Yt({useScope:e.scope,__useComponent:!0});return()=>{const s=Object.keys(n).filter(f=>f!=="_"),o={};e.locale&&(o.locale=e.locale),e.plural!==void 0&&(o.plural=he(e.plural)?+e.plural:e.plural);const i=Mw(t,s),u=a[kl](e.keypath,i,o),c=zt({},r),l=he(e.tag)||ut(e.tag)?e.tag:Z1();return In(l,c,u)}}}),om=xw;function Fw(e){return gt(e)&&!he(e[0])}function Q1(e,t,n,r){const{slots:a,attrs:s}=t;return()=>{const o={part:!0};let i={};e.locale&&(o.locale=e.locale),he(e.format)?o.key=e.format:ut(e.format)&&(he(e.format.key)&&(o.key=e.format.key),i=Object.keys(e.format).reduce((d,m)=>n.includes(m)?zt({},d,{[m]:e.format[m]}):d,{}));const u=r(e.value,o,i);let c=[o.key];gt(u)?c=u.map((d,m)=>{const _=a[d.type],A=_?_({[d.type]:d.value,index:m,parts:u}):[d.value];return Fw(A)&&(A[0].key=`${d.type}-${m}`),A}):he(u)&&(c=[u]);const l=zt({},s),f=he(e.tag)||ut(e.tag)?e.tag:Z1();return In(f,l,c)}}const Ww=Q({name:"i18n-n",props:zt({value:{type:Number,required:!0},format:{type:[String,Object]}},hf),setup(e,t){const n=e.i18n||Yt({useScope:"parent",__useComponent:!0});return Q1(e,t,H1,(...r)=>n[Ml](...r))}}),im=Ww,Gw=Q({name:"i18n-d",props:zt({value:{type:[Number,Date],required:!0},format:{type:[String,Object]}},hf),setup(e,t){const n=e.i18n||Yt({useScope:"parent",__useComponent:!0});return Q1(e,t,B1,(...r)=>n[Ul](...r))}}),um=Gw;function zw(e,t){const n=e;if(e.mode==="composition")return n.__getInstance(t)||e.global;{const r=n.__getInstance(t);return r!=null?r.__composer:e.global.__composer}}function Bw(e){const t=o=>{const{instance:i,modifiers:u,value:c}=o;if(!i||!i.$)throw $t(Dt.UNEXPECTED_ERROR);const l=zw(e,i.$),f=cm(c);return[Reflect.apply(l.t,l,[...lm(f)]),l]};return{created:(o,i)=>{const[u,c]=t(i);Cl&&e.global===c&&(o.__i18nWatcher=He(c.locale,()=>{i.instance&&i.instance.$forceUpdate()})),o.__composer=c,o.textContent=u},unmounted:o=>{Cl&&o.__i18nWatcher&&(o.__i18nWatcher(),o.__i18nWatcher=void 0,delete o.__i18nWatcher),o.__composer&&(o.__composer=void 0,delete o.__composer)},beforeUpdate:(o,{value:i})=>{if(o.__composer){const u=o.__composer,c=cm(i);o.textContent=Reflect.apply(u.t,u,[...lm(c)])}},getSSRProps:o=>{const[i]=t(o);return{textContent:i}}}}function cm(e){if(he(e))return{path:e};if(Ue(e)){if(!("path"in e))throw $t(Dt.REQUIRED_VALUE,"path");return e}else throw $t(Dt.INVALID_VALUE)}function lm(e){const{path:t,locale:n,args:r,choice:a,plural:s}=e,o={},i=r||{};return he(n)&&(o.locale=n),Lt(a)&&(o.plural=a),Lt(s)&&(o.plural=s),[t,i,o]}function Hw(e,t,...n){const r=Ue(n[0])?n[0]:{},a=!!r.useI18nComponentName;(qe(r.globalInstall)?r.globalInstall:!0)&&([a?"i18n":om.name,"I18nT"].forEach(o=>e.component(o,om)),[im.name,"I18nN"].forEach(o=>e.component(o,im)),[um.name,"I18nD"].forEach(o=>e.component(o,um))),e.directive("t",Bw(t))}function Vw(e,t,n){return{beforeCreate(){const r=ao();if(!r)throw $t(Dt.UNEXPECTED_ERROR);const a=this.$options;if(a.i18n){const s=a.i18n;if(a.__i18n&&(s.__i18n=a.__i18n),s.__root=t,this===this.$root)this.$i18n=dm(e,s);else{s.__injectWithOption=!0,s.__extender=n.__vueI18nExtend,this.$i18n=Fl(s);const o=this.$i18n;o.__extender&&(o.__disposer=o.__extender(this.$i18n))}}else if(a.__i18n)if(this===this.$root)this.$i18n=dm(e,a);else{this.$i18n=Fl({__i18n:a.__i18n,__injectWithOption:!0,__extender:n.__vueI18nExtend,__root:t});const s=this.$i18n;s.__extender&&(s.__disposer=s.__extender(this.$i18n))}else this.$i18n=e;a.__i18nGlobal&&X1(t,a,a),this.$t=(...s)=>this.$i18n.t(...s),this.$rt=(...s)=>this.$i18n.rt(...s),this.$tc=(...s)=>this.$i18n.tc(...s),this.$te=(s,o)=>this.$i18n.te(s,o),this.$d=(...s)=>this.$i18n.d(...s),this.$n=(...s)=>this.$i18n.n(...s),this.$tm=s=>this.$i18n.tm(s),n.__setInstance(r,this.$i18n)},mounted(){},unmounted(){const r=ao();if(!r)throw $t(Dt.UNEXPECTED_ERROR);const a=this.$i18n;delete this.$t,delete this.$rt,delete this.$tc,delete this.$te,delete this.$d,delete this.$n,delete this.$tm,a.__disposer&&(a.__disposer(),delete a.__disposer,delete a.__extender),n.__deleteInstance(r),delete this.$i18n}}}function dm(e,t){e.locale=t.locale||e.locale,e.fallbackLocale=t.fallbackLocale||e.fallbackLocale,e.missing=t.missing||e.missing,e.silentTranslationWarn=t.silentTranslationWarn||e.silentFallbackWarn,e.silentFallbackWarn=t.silentFallbackWarn||e.silentFallbackWarn,e.formatFallbackMessages=t.formatFallbackMessages||e.formatFallbackMessages,e.postTranslation=t.postTranslation||e.postTranslation,e.warnHtmlInMessage=t.warnHtmlInMessage||e.warnHtmlInMessage,e.escapeParameterHtml=t.escapeParameterHtml||e.escapeParameterHtml,e.sync=t.sync||e.sync,e.__composer[K1](t.pluralizationRules||e.pluralizationRules);const n=Zu(e.locale,{messages:t.messages,__i18n:t.__i18n});return Object.keys(n).forEach(r=>e.mergeLocaleMessage(r,n[r])),t.datetimeFormats&&Object.keys(t.datetimeFormats).forEach(r=>e.mergeDateTimeFormat(r,t.datetimeFormats[r])),t.numberFormats&&Object.keys(t.numberFormats).forEach(r=>e.mergeNumberFormat(r,t.numberFormats[r])),e}const jw=Gr("global-vue-i18n");function Kw(e={},t){const n=__VUE_I18N_LEGACY_API__&&qe(e.legacy)?e.legacy:__VUE_I18N_LEGACY_API__,r=qe(e.globalInjection)?e.globalInjection:!0,a=__VUE_I18N_LEGACY_API__&&n?!!e.allowComposition:!0,s=new Map,[o,i]=Yw(e,n),u=Gr("");function c(d){return s.get(d)||null}function l(d,m){s.set(d,m)}function f(d){s.delete(d)}{const d={get mode(){return __VUE_I18N_LEGACY_API__&&n?"legacy":"composition"},get allowComposition(){return a},async install(m,..._){if(m.__VUE_I18N_SYMBOL__=u,m.provide(m.__VUE_I18N_SYMBOL__,d),Ue(_[0])){const I=_[0];d.__composerExtend=I.__composerExtend,d.__vueI18nExtend=I.__vueI18nExtend}let A=null;!n&&r&&(A=r6(m,d.global)),__VUE_I18N_FULL_INSTALL__&&Hw(m,d,..._),__VUE_I18N_LEGACY_API__&&n&&m.mixin(Vw(i,i.__composer,d));const R=m.unmount;m.unmount=()=>{A&&A(),d.dispose(),R()}},get global(){return i},dispose(){o.stop()},__instances:s,__getInstance:c,__setInstance:l,__deleteInstance:f};return d}}function Yt(e={}){const t=ao();if(t==null)throw $t(Dt.MUST_BE_CALL_SETUP_TOP);if(!t.isCE&&t.appContext.app!=null&&!t.appContext.app.__VUE_I18N_SYMBOL__)throw $t(Dt.NOT_INSTALLED);const n=qw(t),r=Zw(n),a=q1(t),s=Xw(e,a);if(__VUE_I18N_LEGACY_API__&&n.mode==="legacy"&&!e.__useComponent){if(!n.allowComposition)throw $t(Dt.NOT_AVAILABLE_IN_LEGACY_MODE);return t6(t,s,r,e)}if(s==="global")return X1(r,e,a),r;if(s==="parent"){let u=Qw(n,t,e.__useComponent);return u==null&&(u=r),u}const o=n;let i=o.__getInstance(t);if(i==null){const u=zt({},e);"__i18n"in a&&(u.__i18n=a.__i18n),r&&(u.__root=r),i=Ef(u),o.__composerExtend&&(i[xl]=o.__composerExtend(i)),e6(o,t,i),o.__setInstance(t,i)}return i}function Yw(e,t,n){const r=_E();{const a=__VUE_I18N_LEGACY_API__&&t?r.run(()=>Fl(e)):r.run(()=>Ef(e));if(a==null)throw $t(Dt.UNEXPECTED_ERROR);return[r,a]}}function qw(e){{const t=At(e.isCE?jw:e.appContext.app.__VUE_I18N_SYMBOL__);if(!t)throw $t(e.isCE?Dt.NOT_INSTALLED_WITH_PROVIDE:Dt.UNEXPECTED_ERROR);return t}}function Xw(e,t){return qu(e)?"__i18n"in t?"local":"global":e.useScope?e.useScope:"local"}function Zw(e){return e.mode==="composition"?e.global:e.global.__composer}function Qw(e,t,n=!1){let r=null;const a=t.root;let s=Jw(t,n);for(;s!=null;){const o=e;if(e.mode==="composition")r=o.__getInstance(s);else if(__VUE_I18N_LEGACY_API__){const i=o.__getInstance(s);i!=null&&(r=i.__composer,n&&r&&!r[Y1]&&(r=null))}if(r!=null||a===s)break;s=s.parent}return r}function Jw(e,t=!1){return e==null?null:t&&e.vnode.ctx||e.parent}function e6(e,t,n){It(()=>{},t),Nt(()=>{const r=n;e.__deleteInstance(t);const a=r[xl];a&&(a(),delete r[xl])},t)}function t6(e,t,n,r={}){const a=t==="local",s=Lu(null);if(a&&e.proxy&&!(e.proxy.$options.i18n||e.proxy.$options.__i18n))throw $t(Dt.MUST_DEFINE_I18N_OPTION_IN_ALLOW_COMPOSITION);const o=qe(r.inheritLocale)?r.inheritLocale:!he(r.locale),i=le(!a||o?n.locale.value:he(r.locale)?r.locale:ts),u=le(!a||o?n.fallbackLocale.value:he(r.fallbackLocale)||gt(r.fallbackLocale)||Ue(r.fallbackLocale)||r.fallbackLocale===!1?r.fallbackLocale:i.value),c=le(Zu(i.value,r)),l=le(Ue(r.datetimeFormats)?r.datetimeFormats:{[i.value]:{}}),f=le(Ue(r.numberFormats)?r.numberFormats:{[i.value]:{}}),d=a?n.missingWarn:qe(r.missingWarn)||Fr(r.missingWarn)?r.missingWarn:!0,m=a?n.fallbackWarn:qe(r.fallbackWarn)||Fr(r.fallbackWarn)?r.fallbackWarn:!0,_=a?n.fallbackRoot:qe(r.fallbackRoot)?r.fallbackRoot:!0,A=!!r.fallbackFormat,R=bt(r.missing)?r.missing:null,I=bt(r.postTranslation)?r.postTranslation:null,b=a?n.warnHtmlMessage:qe(r.warnHtmlMessage)?r.warnHtmlMessage:!0,v=!!r.escapeParameter,T=a?n.modifiers:Ue(r.modifiers)?r.modifiers:{},L=r.pluralRules||a&&n.pluralRules;function w(){return[i.value,u.value,c.value,l.value,f.value]}const P=$({get:()=>s.value?s.value.locale.value:i.value,set:O=>{s.value&&(s.value.locale.value=O),i.value=O}}),V=$({get:()=>s.value?s.value.fallbackLocale.value:u.value,set:O=>{s.value&&(s.value.fallbackLocale.value=O),u.value=O}}),G=$(()=>s.value?s.value.messages.value:c.value),z=$(()=>l.value),k=$(()=>f.value);function Z(){return s.value?s.value.getPostTranslationHandler():I}function J(O){s.value&&s.value.setPostTranslationHandler(O)}function te(){return s.value?s.value.getMissingHandler():R}function D(O){s.value&&s.value.setMissingHandler(O)}function W(O){return w(),O()}function B(...O){return s.value?W(()=>Reflect.apply(s.value.t,null,[...O])):W(()=>"")}function ae(...O){return s.value?Reflect.apply(s.value.rt,null,[...O]):""}function Ne(...O){return s.value?W(()=>Reflect.apply(s.value.d,null,[...O])):W(()=>"")}function ke(...O){return s.value?W(()=>Reflect.apply(s.value.n,null,[...O])):W(()=>"")}function Te(O){return s.value?s.value.tm(O):{}}function Ce(O,y){return s.value?s.value.te(O,y):!1}function yt(O){return s.value?s.value.getLocaleMessage(O):{}}function We(O,y){s.value&&(s.value.setLocaleMessage(O,y),c.value[O]=y)}function Ve(O,y){s.value&&s.value.mergeLocaleMessage(O,y)}function st(O){return s.value?s.value.getDateTimeFormat(O):{}}function X(O,y){s.value&&(s.value.setDateTimeFormat(O,y),l.value[O]=y)}function me(O,y){s.value&&s.value.mergeDateTimeFormat(O,y)}function de(O){return s.value?s.value.getNumberFormat(O):{}}function Oe(O,y){s.value&&(s.value.setNumberFormat(O,y),f.value[O]=y)}function Ke(O,y){s.value&&s.value.mergeNumberFormat(O,y)}const C={get id(){return s.value?s.value.id:-1},locale:P,fallbackLocale:V,messages:G,datetimeFormats:z,numberFormats:k,get inheritLocale(){return s.value?s.value.inheritLocale:o},set inheritLocale(O){s.value&&(s.value.inheritLocale=O)},get availableLocales(){return s.value?s.value.availableLocales:Object.keys(c.value)},get modifiers(){return s.value?s.value.modifiers:T},get pluralRules(){return s.value?s.value.pluralRules:L},get isGlobal(){return s.value?s.value.isGlobal:!1},get missingWarn(){return s.value?s.value.missingWarn:d},set missingWarn(O){s.value&&(s.value.missingWarn=O)},get fallbackWarn(){return s.value?s.value.fallbackWarn:m},set fallbackWarn(O){s.value&&(s.value.missingWarn=O)},get fallbackRoot(){return s.value?s.value.fallbackRoot:_},set fallbackRoot(O){s.value&&(s.value.fallbackRoot=O)},get fallbackFormat(){return s.value?s.value.fallbackFormat:A},set fallbackFormat(O){s.value&&(s.value.fallbackFormat=O)},get warnHtmlMessage(){return s.value?s.value.warnHtmlMessage:b},set warnHtmlMessage(O){s.value&&(s.value.warnHtmlMessage=O)},get escapeParameter(){return s.value?s.value.escapeParameter:v},set escapeParameter(O){s.value&&(s.value.escapeParameter=O)},t:B,getPostTranslationHandler:Z,setPostTranslationHandler:J,getMissingHandler:te,setMissingHandler:D,rt:ae,d:Ne,n:ke,tm:Te,te:Ce,getLocaleMessage:yt,setLocaleMessage:We,mergeLocaleMessage:Ve,getDateTimeFormat:st,setDateTimeFormat:X,mergeDateTimeFormat:me,getNumberFormat:de,setNumberFormat:Oe,mergeNumberFormat:Ke};function S(O){O.locale.value=i.value,O.fallbackLocale.value=u.value,Object.keys(c.value).forEach(y=>{O.mergeLocaleMessage(y,c.value[y])}),Object.keys(l.value).forEach(y=>{O.mergeDateTimeFormat(y,l.value[y])}),Object.keys(f.value).forEach(y=>{O.mergeNumberFormat(y,f.value[y])}),O.escapeParameter=v,O.fallbackFormat=A,O.fallbackRoot=_,O.fallbackWarn=m,O.missingWarn=d,O.warnHtmlMessage=b}return Rt(()=>{if(e.proxy==null||e.proxy.$i18n==null)throw $t(Dt.NOT_AVAILABLE_COMPOSITION_IN_LEGACY);const O=s.value=e.proxy.$i18n.__composer;t==="global"?(i.value=O.locale.value,u.value=O.fallbackLocale.value,c.value=O.messages.value,l.value=O.datetimeFormats.value,f.value=O.numberFormats.value):a&&S(O)}),C}const n6=["locale","fallbackLocale","availableLocales"],fm=["t","rt","d","n","tm","te"];function r6(e,t){const n=Object.create(null);return n6.forEach(a=>{const s=Object.getOwnPropertyDescriptor(t,a);if(!s)throw $t(Dt.UNEXPECTED_ERROR);const o=Ft(s.value)?{get(){return s.value.value},set(i){s.value.value=i}}:{get(){return s.get&&s.get()}};Object.defineProperty(n,a,o)}),e.config.globalProperties.$i18n=n,fm.forEach(a=>{const s=Object.getOwnPropertyDescriptor(t,a);if(!s||!s.value)throw $t(Dt.UNEXPECTED_ERROR);Object.defineProperty(e.config.globalProperties,`$${a}`,s)}),()=>{delete e.config.globalProperties.$i18n,fm.forEach(a=>{delete e.config.globalProperties[`$${a}`]})}}Lw();__INTLIFY_JIT_COMPILATION__?Vp(Nw):Vp(Rw);gw(ew);Aw(w1);if(__INTLIFY_PROD_DEVTOOLS__){const e=or();e.__INTLIFY__=!0,cw(e.__INTLIFY_DEVTOOLS_GLOBAL_HOOK__)}const a6="Über diese Instanz",s6="Kontaktiere den Administrator",o6="FitTrackee ist ein selbst-gehosteter Outdoor-Aktivitäts-Tracker.",i6="unter {0} Lizenz ",u6="Quellcode",c6="Wetterdaten von:",l6={ABOUT_THIS_INSTANCE:a6,CONTACT_ADMIN:s6,FITTRACKEE_DESCRIPTION:o6,FITTRACKEE_LICENSE:i6,SOURCE_CODE:u6,WEATHER_DATA_FROM:c6},d6={DESCRIPTION:"Zusätzliche Informationen, die für deine Nutzer nützlich sein könnten. Markdown-Syntax wird unterstützt.",TEXT:"Detaillierte Instanz-Informationen"},f6="Aktion",p6="Aktiviere Konto",m6="Aktiv",_6="Admin",E6="Administration",h6="Hinzufügen/Entfernen von Administratorrechten, Lösche Nutzerkonto.",T6="Anwendung",g6={ADMIN_CONTACT:"Kontakt-E-Mail des Administrators",MAX_FILES_IN_ZIP_LABEL:"Max. Dateianzahl im zip Archiv",MAX_USERS_HELP:"Wenn 0, gibt es keine Registrierungslimitierung..",MAX_USERS_LABEL:"Max. Anzahl aktiver Nutzer",NO_CONTACT_EMAIL:"keine Kontakt-E-Mail",SINGLE_UPLOAD_MAX_SIZE_LABEL:"Max. Größe der hochgeladenen Dateien (in Mb)",TITLE:"Anwendungskonfiguration",ZIP_UPLOAD_MAX_SIZE_LABEL:"Max. Größe des zip Archives (in Mb)"},A6="Zurück zu Admin",S6="Möchtest du wirklich das {0} Konto löschen? Alle Daten werden gelöscht. Dieser Vorgang kann nicht rückgängig gemacht werden.",O6="Möchtest du wirklich das {0} Passwort zurücksetzen?",I6="Aktuelle E-Mail",v6="Lösche Nutzer",b6="E-Mail-Versand ist deaktiviert.",R6="Aktivieren/Deaktivieren von Sportarten.",N6="Neue E-Mail",y6="Kein Text eingegeben",C6="Das wasswort wurde zurückgesetzt.",D6="Füge deine eigene Datenschutzrichtlinie hinzu oder leer lassen, um die standardmäßige zu verwenden. Markdown-Syntax wird unterstützt.",P6="Registrierung ist derzeit deaktiviert.",w6="Registrierung ist derzeit aktiviert.",L6="Passwort zurücksetzen",$6={TABLE:{ACTIVE:"Aktiv",HAS_WORKOUTS:"Trainings existieren",IMAGE:"Bild",LABEL:"Titel"},TITLE:"Sportarten Administration"},k6="Aktualisiere Anwemdungskonfiguration.",U6="Aktualisiere E-Mail",M6="Nutzer",x6={SELECTS:{ORDER_BY:{ADMIN:"Adminstatus",CREATED_AT:"Registrierungsdatum",IS_ACTIVE:"Accountstatus",USERNAME:"Nutzername",WORKOUTS_COUNT:"Trainingsanzahl"}},TABLE:{ADD_ADMIN_RIGHTS:"Administratorrechte hinzufügen",REMOVE_ADMIN_RIGHTS:"Administratorrechte entfernen"},TITLE:"Administration - Benutzer"},F6="Die E-Mail Adresse wurde aktualisiert.",W6={ABOUT:d6,ACTION:f6,ACTIVATE_USER_ACCOUNT:p6,ACTIVE:m6,ADMIN:_6,ADMINISTRATION:E6,ADMIN_RIGHTS_DELETE_USER_ACCOUNT:h6,APPLICATION:T6,APP_CONFIG:g6,BACK_TO_ADMIN:A6,CONFIRM_USER_ACCOUNT_DELETION:S6,CONFIRM_USER_PASSWORD_RESET:O6,CURRENT_EMAIL:I6,DELETE_USER:v6,EMAIL_SENDING_DISABLED:b6,ENABLE_DISABLE_SPORTS:R6,NEW_EMAIL:N6,NO_TEXT_ENTERED:y6,PASSWORD_RESET_SUCCESSFUL:C6,PRIVACY_POLICY_DESCRIPTION:D6,REGISTRATION_DISABLED:P6,REGISTRATION_ENABLED:w6,RESET_USER_PASSWORD:L6,SPORTS:$6,UPDATE_APPLICATION_DESCRIPTION:k6,UPDATE_USER_EMAIL:U6,USER:M6,USERS:x6,USER_EMAIL_UPDATE_SUCCESSFUL:F6},G6={"