From bf11761bc875ed2a8bdb53180d1341dcf717d874 Mon Sep 17 00:00:00 2001 From: Ashhhleyyy Date: Sat, 13 Aug 2022 16:08:44 +0100 Subject: [PATCH] feat: Initial commit --- .gitignore | 24 + .prettierignore | 32 + .prettierrc | 8 + .vscode/extensions.json | 3 + README.md | 3 + index.html | 16 + package.json | 34 + pnpm-lock.yaml | 3522 +++++++++++++++++++++++++++++++ public/apple-touch-icon.png | Bin 0 -> 13342 bytes public/favicon-192.png | Bin 0 -> 14175 bytes public/favicon.png | Bin 0 -> 14237 bytes public/robots.txt | 2 + squircle.svg | 14 + src/App.svelte | 171 ++ src/app.css | 15 + src/assets/wordlist.json | 2299 ++++++++++++++++++++ src/client/ChatWindow.svelte | 18 + src/client/GameOver.svelte | 80 + src/client/GuessPage.svelte | 26 + src/client/JoinPage.svelte | 31 + src/client/SelectWord.svelte | 22 + src/client/WaitingLobby.svelte | 65 + src/components/Button.svelte | 19 + src/components/Card.svelte | 7 + src/components/TextInput.svelte | 23 + src/components/utils.ts | 1 + src/lib/socket.ts | 43 + src/lib/util.ts | 27 + src/main.ts | 10 + src/server/game.ts | 147 ++ src/server/main.ts | 109 + src/server/words.ts | 14 + src/vite-env.d.ts | 2 + svelte.config.js | 7 + tsconfig.json | 21 + tsconfig.node.json | 8 + vite.config.ts | 30 + 37 files changed, 6853 insertions(+) create mode 100644 .gitignore create mode 100644 .prettierignore create mode 100644 .prettierrc create mode 100644 .vscode/extensions.json create mode 100644 README.md create mode 100644 index.html create mode 100644 package.json create mode 100644 pnpm-lock.yaml create mode 100644 public/apple-touch-icon.png create mode 100644 public/favicon-192.png create mode 100644 public/favicon.png create mode 100644 public/robots.txt create mode 100644 squircle.svg create mode 100644 src/App.svelte create mode 100644 src/app.css create mode 100644 src/assets/wordlist.json create mode 100644 src/client/ChatWindow.svelte create mode 100644 src/client/GameOver.svelte create mode 100644 src/client/GuessPage.svelte create mode 100644 src/client/JoinPage.svelte create mode 100644 src/client/SelectWord.svelte create mode 100644 src/client/WaitingLobby.svelte create mode 100644 src/components/Button.svelte create mode 100644 src/components/Card.svelte create mode 100644 src/components/TextInput.svelte create mode 100644 src/components/utils.ts create mode 100644 src/lib/socket.ts create mode 100644 src/lib/util.ts create mode 100644 src/main.ts create mode 100644 src/server/game.ts create mode 100644 src/server/main.ts create mode 100644 src/server/words.ts create mode 100644 src/vite-env.d.ts create mode 100644 svelte.config.js create mode 100644 tsconfig.json create mode 100644 tsconfig.node.json create mode 100644 vite.config.ts diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a547bf3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,24 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +dist +dist-ssr +*.local + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +.DS_Store +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 0000000..f4f0eec --- /dev/null +++ b/.prettierignore @@ -0,0 +1,32 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +# lockfile +pnpm-lock.yaml + +# CI +.pnpm-store +.drone.yml + +node_modules +dist +dist-ssr +*.local +.next/ + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +.DS_Store +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 0000000..d7a5a9c --- /dev/null +++ b/.prettierrc @@ -0,0 +1,8 @@ +{ + "jsxSingleQuote": true, + "semi": true, + "tabWidth": 4, + "useTabs": false, + "trailingComma": "es5", + "singleQuote": true +} diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..bdef820 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,3 @@ +{ + "recommendations": ["svelte.svelte-vscode"] +} diff --git a/README.md b/README.md new file mode 100644 index 0000000..e01a982 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# Doodly + +A skribbl.io clone that doesn't include builtin drawing. diff --git a/index.html b/index.html new file mode 100644 index 0000000..af8c531 --- /dev/null +++ b/index.html @@ -0,0 +1,16 @@ + + + + + + + Doodly + + + + + +
+ + + diff --git a/package.json b/package.json new file mode 100644 index 0000000..753105a --- /dev/null +++ b/package.json @@ -0,0 +1,34 @@ +{ + "name": "doodly", + "private": true, + "version": "0.0.0", + "type": "module", + "scripts": { + "dev": "vite --host 0.0.0.0", + "build": "vite build", + "preview": "vite preview", + "check": "svelte-check --tsconfig ./tsconfig.json", + "dev:server": "node --loader ts-node/esm src/server/main.ts", + "format:check": "prettier --check .", + "format": "prettier --write ." + }, + "devDependencies": { + "@sveltejs/vite-plugin-svelte": "^1.0.1", + "@tsconfig/svelte": "^3.0.0", + "prettier": "^2.7.1", + "svelte": "^3.49.0", + "svelte-check": "^2.8.0", + "svelte-preprocess": "^4.10.7", + "ts-node": "^10.9.1", + "tslib": "^2.4.0", + "typescript": "^4.6.4", + "vite": "^3.0.6", + "vite-plugin-pwa": "^0.12.3" + }, + "dependencies": { + "@fontsource/noto-sans": "^4.5.11", + "bulma": "^0.9.4", + "socket.io": "^4.5.1", + "socket.io-client": "^4.5.1" + } +} \ No newline at end of file diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml new file mode 100644 index 0000000..066787c --- /dev/null +++ b/pnpm-lock.yaml @@ -0,0 +1,3522 @@ +lockfileVersion: 5.4 + +specifiers: + '@fontsource/noto-sans': ^4.5.11 + '@sveltejs/vite-plugin-svelte': ^1.0.1 + '@tsconfig/svelte': ^3.0.0 + bulma: ^0.9.4 + prettier: ^2.7.1 + socket.io: ^4.5.1 + socket.io-client: ^4.5.1 + svelte: ^3.49.0 + svelte-check: ^2.8.0 + svelte-preprocess: ^4.10.7 + ts-node: ^10.9.1 + tslib: ^2.4.0 + typescript: ^4.6.4 + vite: ^3.0.6 + vite-plugin-pwa: ^0.12.3 + +dependencies: + '@fontsource/noto-sans': 4.5.11 + bulma: 0.9.4 + socket.io: 4.5.1 + socket.io-client: 4.5.1 + +devDependencies: + '@sveltejs/vite-plugin-svelte': 1.0.1_svelte@3.49.0+vite@3.0.6 + '@tsconfig/svelte': 3.0.0 + prettier: 2.7.1 + svelte: 3.49.0 + svelte-check: 2.8.0_svelte@3.49.0 + svelte-preprocess: 4.10.7_uslzfc62di2n2otc2tvfklnwji + ts-node: 10.9.1_typescript@4.7.4 + tslib: 2.4.0 + typescript: 4.7.4 + vite: 3.0.6 + vite-plugin-pwa: 0.12.3_vite@3.0.6 + +packages: + + /@ampproject/remapping/2.2.0: + resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==} + engines: {node: '>=6.0.0'} + dependencies: + '@jridgewell/gen-mapping': 0.1.1 + '@jridgewell/trace-mapping': 0.3.14 + dev: true + + /@apideck/better-ajv-errors/0.3.6_ajv@8.11.0: + resolution: {integrity: sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==} + engines: {node: '>=10'} + peerDependencies: + ajv: '>=8' + dependencies: + ajv: 8.11.0 + json-schema: 0.4.0 + jsonpointer: 5.0.1 + leven: 3.1.0 + dev: true + + /@babel/code-frame/7.18.6: + resolution: {integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/highlight': 7.18.6 + dev: true + + /@babel/compat-data/7.18.8: + resolution: {integrity: sha512-HSmX4WZPPK3FUxYp7g2T6EyO8j96HlZJlxmKPSh6KAcqwyDrfx7hKjXpAW/0FhFfTJsR0Yt4lAjLI2coMptIHQ==} + engines: {node: '>=6.9.0'} + dev: true + + /@babel/core/7.18.10: + resolution: {integrity: sha512-JQM6k6ENcBFKVtWvLavlvi/mPcpYZ3+R+2EySDEMSMbp7Mn4FexlbbJVrx2R7Ijhr01T8gyqrOaABWIOgxeUyw==} + engines: {node: '>=6.9.0'} + dependencies: + '@ampproject/remapping': 2.2.0 + '@babel/code-frame': 7.18.6 + '@babel/generator': 7.18.12 + '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.10 + '@babel/helper-module-transforms': 7.18.9 + '@babel/helpers': 7.18.9 + '@babel/parser': 7.18.11 + '@babel/template': 7.18.10 + '@babel/traverse': 7.18.11 + '@babel/types': 7.18.10 + convert-source-map: 1.8.0 + debug: 4.3.4 + gensync: 1.0.0-beta.2 + json5: 2.2.1 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/generator/7.18.12: + resolution: {integrity: sha512-dfQ8ebCN98SvyL7IxNMCUtZQSq5R7kxgN+r8qYTGDmmSion1hX2C0zq2yo1bsCDhXixokv1SAWTZUMYbO/V5zg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.18.10 + '@jridgewell/gen-mapping': 0.3.2 + jsesc: 2.5.2 + dev: true + + /@babel/helper-annotate-as-pure/7.18.6: + resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.18.10 + dev: true + + /@babel/helper-builder-binary-assignment-operator-visitor/7.18.9: + resolution: {integrity: sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-explode-assignable-expression': 7.18.6 + '@babel/types': 7.18.10 + dev: true + + /@babel/helper-compilation-targets/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/compat-data': 7.18.8 + '@babel/core': 7.18.10 + '@babel/helper-validator-option': 7.18.6 + browserslist: 4.21.3 + semver: 6.3.0 + dev: true + + /@babel/helper-create-class-features-plugin/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-WvypNAYaVh23QcjpMR24CwZY2Nz6hqdOcFdPbNpV56hL5H6KiFheO7Xm1aPdlLQ7d5emYZX7VZwPp9x3z+2opw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-function-name': 7.18.9 + '@babel/helper-member-expression-to-functions': 7.18.9 + '@babel/helper-optimise-call-expression': 7.18.6 + '@babel/helper-replace-supers': 7.18.9 + '@babel/helper-split-export-declaration': 7.18.6 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/helper-create-regexp-features-plugin/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-7LcpH1wnQLGrI+4v+nPp+zUvIkF9x0ddv1Hkdue10tg3gmRnLy97DXh4STiOf1qeIInyD69Qv5kKSZzKD8B/7A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-annotate-as-pure': 7.18.6 + regexpu-core: 5.1.0 + dev: true + + /@babel/helper-define-polyfill-provider/0.3.2_@babel+core@7.18.10: + resolution: {integrity: sha512-r9QJJ+uDWrd+94BSPcP6/de67ygLtvVy6cK4luE6MOuDsZIdoaPBnfSpbO/+LTifjPckbKXRuI9BB/Z2/y3iTg==} + peerDependencies: + '@babel/core': ^7.4.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + debug: 4.3.4 + lodash.debounce: 4.0.8 + resolve: 1.22.1 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/helper-environment-visitor/7.18.9: + resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==} + engines: {node: '>=6.9.0'} + dev: true + + /@babel/helper-explode-assignable-expression/7.18.6: + resolution: {integrity: sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.18.10 + dev: true + + /@babel/helper-function-name/7.18.9: + resolution: {integrity: sha512-fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/template': 7.18.10 + '@babel/types': 7.18.10 + dev: true + + /@babel/helper-hoist-variables/7.18.6: + resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.18.10 + dev: true + + /@babel/helper-member-expression-to-functions/7.18.9: + resolution: {integrity: sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.18.10 + dev: true + + /@babel/helper-module-imports/7.18.6: + resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.18.10 + dev: true + + /@babel/helper-module-transforms/7.18.9: + resolution: {integrity: sha512-KYNqY0ICwfv19b31XzvmI/mfcylOzbLtowkw+mfvGPAQ3kfCnMLYbED3YecL5tPd8nAYFQFAd6JHp2LxZk/J1g==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-module-imports': 7.18.6 + '@babel/helper-simple-access': 7.18.6 + '@babel/helper-split-export-declaration': 7.18.6 + '@babel/helper-validator-identifier': 7.18.6 + '@babel/template': 7.18.10 + '@babel/traverse': 7.18.11 + '@babel/types': 7.18.10 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/helper-optimise-call-expression/7.18.6: + resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.18.10 + dev: true + + /@babel/helper-plugin-utils/7.18.9: + resolution: {integrity: sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==} + engines: {node: '>=6.9.0'} + dev: true + + /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-wrap-function': 7.18.11 + '@babel/types': 7.18.10 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/helper-replace-supers/7.18.9: + resolution: {integrity: sha512-dNsWibVI4lNT6HiuOIBr1oyxo40HvIVmbwPUm3XZ7wMh4k2WxrxTqZwSqw/eEmXDS9np0ey5M2bz9tBmO9c+YQ==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-member-expression-to-functions': 7.18.9 + '@babel/helper-optimise-call-expression': 7.18.6 + '@babel/traverse': 7.18.11 + '@babel/types': 7.18.10 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/helper-simple-access/7.18.6: + resolution: {integrity: sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.18.10 + dev: true + + /@babel/helper-skip-transparent-expression-wrappers/7.18.9: + resolution: {integrity: sha512-imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.18.10 + dev: true + + /@babel/helper-split-export-declaration/7.18.6: + resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.18.10 + dev: true + + /@babel/helper-string-parser/7.18.10: + resolution: {integrity: sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==} + engines: {node: '>=6.9.0'} + dev: true + + /@babel/helper-validator-identifier/7.18.6: + resolution: {integrity: sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==} + engines: {node: '>=6.9.0'} + dev: true + + /@babel/helper-validator-option/7.18.6: + resolution: {integrity: sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==} + engines: {node: '>=6.9.0'} + dev: true + + /@babel/helper-wrap-function/7.18.11: + resolution: {integrity: sha512-oBUlbv+rjZLh2Ks9SKi4aL7eKaAXBWleHzU89mP0G6BMUlRxSckk9tSIkgDGydhgFxHuGSlBQZfnaD47oBEB7w==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-function-name': 7.18.9 + '@babel/template': 7.18.10 + '@babel/traverse': 7.18.11 + '@babel/types': 7.18.10 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/helpers/7.18.9: + resolution: {integrity: sha512-Jf5a+rbrLoR4eNdUmnFu8cN5eNJT6qdTdOg5IHIzq87WwyRw9PwguLFOWYgktN/60IP4fgDUawJvs7PjQIzELQ==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/template': 7.18.10 + '@babel/traverse': 7.18.11 + '@babel/types': 7.18.10 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/highlight/7.18.6: + resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-validator-identifier': 7.18.6 + chalk: 2.4.2 + js-tokens: 4.0.0 + dev: true + + /@babel/parser/7.18.11: + resolution: {integrity: sha512-9JKn5vN+hDt0Hdqn1PiJ2guflwP+B6Ga8qbDuoF0PzzVhrzsKIJo8yGqVk6CmMHiMei9w1C1Bp9IMJSIK+HPIQ==} + engines: {node: '>=6.0.0'} + hasBin: true + dependencies: + '@babel/types': 7.18.10 + dev: true + + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.13.0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-skip-transparent-expression-wrappers': 7.18.9 + '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.18.10 + dev: true + + /@babel/plugin-proposal-async-generator-functions/7.18.10_@babel+core@7.18.10: + resolution: {integrity: sha512-1mFuY2TOsR1hxbjCo4QL+qlIjV07p4H4EUYw2J/WCqsvFV6V9X9z9YhXbWndc/4fw+hYGlDT7egYxliMp5O6Ew==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.10 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-create-class-features-plugin': 7.18.9_@babel+core@7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-proposal-class-static-block/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.12.0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-create-class-features-plugin': 7.18.9_@babel+core@7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.18.10 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.10 + dev: true + + /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.10 + dev: true + + /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.10 + dev: true + + /@babel/plugin-proposal-logical-assignment-operators/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.10 + dev: true + + /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.10 + dev: true + + /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.10 + dev: true + + /@babel/plugin-proposal-object-rest-spread/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.18.8 + '@babel/core': 7.18.10 + '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.10 + '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.18.10 + dev: true + + /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.10 + dev: true + + /@babel/plugin-proposal-optional-chaining/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-skip-transparent-expression-wrappers': 7.18.9 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.10 + dev: true + + /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-create-class-features-plugin': 7.18.9_@babel+core@7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-proposal-private-property-in-object/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-create-class-features-plugin': 7.18.9_@babel+core@7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.10 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} + engines: {node: '>=4'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.18.10: + resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.18.10: + resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.18.10: + resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.18.10: + resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.18.10: + resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-syntax-import-assertions/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-/DU3RXad9+bZwrgWJQKbr39gYbJpLJHezqEzRzi/BHRlJ9zsQb4CK2CA/5apllXNomwA1qHwzvHl+AdEmC5krQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.18.10: + resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.18.10: + resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.18.10: + resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.18.10: + resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.18.10: + resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.18.10: + resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.18.10: + resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.18.10: + resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.18.10: + resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-transform-async-to-generator/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-module-imports': 7.18.6 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.18.10 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-transform-block-scoping/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-transform-classes/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-EkRQxsxoytpTlKJmSPYrsOMjCILacAjtSVkd4gChEe2kXjFCun3yohhW5I7plXJhCemM0gKsaGMcO8tinvCA5g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-function-name': 7.18.9 + '@babel/helper-optimise-call-expression': 7.18.6 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-replace-supers': 7.18.9 + '@babel/helper-split-export-declaration': 7.18.6 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-computed-properties/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-transform-destructuring/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-p5VCYNddPLkZTq4XymQIaIfZNJwT9YsjkPOhkVEqt6QIpQFZVM9IltqqYpOEkJoN1DPznmxUDyZ5CTZs/ZCuHA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.18.10: + resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.10 + '@babel/helper-function-name': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-transform-literals/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-transform-modules-amd/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-module-transforms': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 + babel-plugin-dynamic-import-node: 2.3.3 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-modules-commonjs/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-module-transforms': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-simple-access': 7.18.6 + babel-plugin-dynamic-import-node: 2.3.3 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-modules-systemjs/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-zY/VSIbbqtoRoJKo2cDTewL364jSlZGvn0LKOf9ntbfxOvjfmyrdtEEOAdswOswhZEb8UH3jDkCKHd1sPgsS0A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-hoist-variables': 7.18.6 + '@babel/helper-module-transforms': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-validator-identifier': 7.18.6 + babel-plugin-dynamic-import-node: 2.3.3 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-module-transforms': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-named-capturing-groups-regex/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-UmEOGF8XgaIqD74bC8g7iV3RYj8lMf0Bw7NJzvnS9qQhM4mg+1WHKotUIdjxgD2RGrgFLZZPCFPFj3P/kVDYhg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-replace-supers': 7.18.9 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-parameters/7.18.8_@babel+core@7.18.10: + resolution: {integrity: sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-transform-regenerator/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + regenerator-transform: 0.15.0 + dev: true + + /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-transform-spread/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-39Q814wyoOPtIB/qGopNIL9xDChOE1pNU0ZY5dO0owhiVt/5kFm4li+/bBtwc7QotG0u5EPzqhZdjMtmqBqyQA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-skip-transparent-expression-wrappers': 7.18.9 + dev: true + + /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.18.10: + resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/preset-env/7.18.10_@babel+core@7.18.10: + resolution: {integrity: sha512-wVxs1yjFdW3Z/XkNfXKoblxoHgbtUF7/l3PvvP4m02Qz9TZ6uZGxRVYjSQeR87oQmHco9zWitW5J82DJ7sCjvA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.18.8 + '@babel/core': 7.18.10 + '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-validator-option': 7.18.6 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-proposal-async-generator-functions': 7.18.10_@babel+core@7.18.10 + '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-proposal-class-static-block': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-proposal-logical-assignment-operators': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-proposal-object-rest-spread': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.10 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.18.10 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.18.10 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.10 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.10 + '@babel/plugin-syntax-import-assertions': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.10 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.10 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.10 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.10 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.10 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.10 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.10 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.10 + '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.18.10 + '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-block-scoping': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-transform-classes': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-transform-destructuring': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.18.10 + '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-modules-amd': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-modules-commonjs': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-modules-systemjs': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-named-capturing-groups-regex': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.18.10 + '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-regenerator': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-spread': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.18.10 + '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.18.10 + '@babel/preset-modules': 0.1.5_@babel+core@7.18.10 + '@babel/types': 7.18.10 + babel-plugin-polyfill-corejs2: 0.3.2_@babel+core@7.18.10 + babel-plugin-polyfill-corejs3: 0.5.3_@babel+core@7.18.10 + babel-plugin-polyfill-regenerator: 0.4.0_@babel+core@7.18.10 + core-js-compat: 3.24.1 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/preset-modules/0.1.5_@babel+core@7.18.10: + resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.18.10 + '@babel/types': 7.18.10 + esutils: 2.0.3 + dev: true + + /@babel/runtime/7.18.9: + resolution: {integrity: sha512-lkqXDcvlFT5rvEjiu6+QYO+1GXrEHRo2LOtS7E4GtX5ESIZOgepqsZBVIj6Pv+a6zqsya9VCgiK1KAK4BvJDAw==} + engines: {node: '>=6.9.0'} + dependencies: + regenerator-runtime: 0.13.9 + dev: true + + /@babel/template/7.18.10: + resolution: {integrity: sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.18.6 + '@babel/parser': 7.18.11 + '@babel/types': 7.18.10 + dev: true + + /@babel/traverse/7.18.11: + resolution: {integrity: sha512-TG9PiM2R/cWCAy6BPJKeHzNbu4lPzOSZpeMfeNErskGpTJx6trEvFaVCbDvpcxwy49BKWmEPwiW8mrysNiDvIQ==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.18.6 + '@babel/generator': 7.18.12 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-function-name': 7.18.9 + '@babel/helper-hoist-variables': 7.18.6 + '@babel/helper-split-export-declaration': 7.18.6 + '@babel/parser': 7.18.11 + '@babel/types': 7.18.10 + debug: 4.3.4 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/types/7.18.10: + resolution: {integrity: sha512-MJvnbEiiNkpjo+LknnmRrqbY1GPUUggjv+wQVjetM/AONoupqRALB7I6jGqNUAZsKcRIEu2J6FRFvsczljjsaQ==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-string-parser': 7.18.10 + '@babel/helper-validator-identifier': 7.18.6 + to-fast-properties: 2.0.0 + dev: true + + /@cspotcode/source-map-support/0.8.1: + resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} + engines: {node: '>=12'} + dependencies: + '@jridgewell/trace-mapping': 0.3.9 + dev: true + + /@esbuild/linux-loong64/0.14.54: + resolution: {integrity: sha512-bZBrLAIX1kpWelV0XemxBZllyRmM6vgFQQG2GdNb+r3Fkp0FOh1NJSvekXDs7jq70k4euu1cryLMfU+mTXlEpw==} + engines: {node: '>=12'} + cpu: [loong64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@fontsource/noto-sans/4.5.11: + resolution: {integrity: sha512-lBX7FCjIjSrQ+iMuXUuO+mbjbnUsJyZANg/04PgkeeAYe+cwnX81ibbgrAk1F56M6/btIrWQoDjxsK6Sz8KoVQ==} + dev: false + + /@jridgewell/gen-mapping/0.1.1: + resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==} + engines: {node: '>=6.0.0'} + dependencies: + '@jridgewell/set-array': 1.1.2 + '@jridgewell/sourcemap-codec': 1.4.14 + dev: true + + /@jridgewell/gen-mapping/0.3.2: + resolution: {integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==} + engines: {node: '>=6.0.0'} + dependencies: + '@jridgewell/set-array': 1.1.2 + '@jridgewell/sourcemap-codec': 1.4.14 + '@jridgewell/trace-mapping': 0.3.14 + dev: true + + /@jridgewell/resolve-uri/3.1.0: + resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==} + engines: {node: '>=6.0.0'} + dev: true + + /@jridgewell/set-array/1.1.2: + resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} + engines: {node: '>=6.0.0'} + dev: true + + /@jridgewell/source-map/0.3.2: + resolution: {integrity: sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==} + dependencies: + '@jridgewell/gen-mapping': 0.3.2 + '@jridgewell/trace-mapping': 0.3.14 + dev: true + + /@jridgewell/sourcemap-codec/1.4.14: + resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==} + dev: true + + /@jridgewell/trace-mapping/0.3.14: + resolution: {integrity: sha512-bJWEfQ9lPTvm3SneWwRFVLzrh6nhjwqw7TUFFBEMzwvg7t7PCDenf2lDwqo4NQXzdpgBXyFgDWnQA+2vkruksQ==} + dependencies: + '@jridgewell/resolve-uri': 3.1.0 + '@jridgewell/sourcemap-codec': 1.4.14 + dev: true + + /@jridgewell/trace-mapping/0.3.9: + resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} + dependencies: + '@jridgewell/resolve-uri': 3.1.0 + '@jridgewell/sourcemap-codec': 1.4.14 + dev: true + + /@nodelib/fs.scandir/2.1.5: + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + engines: {node: '>= 8'} + dependencies: + '@nodelib/fs.stat': 2.0.5 + run-parallel: 1.2.0 + dev: true + + /@nodelib/fs.stat/2.0.5: + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} + engines: {node: '>= 8'} + dev: true + + /@nodelib/fs.walk/1.2.8: + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} + engines: {node: '>= 8'} + dependencies: + '@nodelib/fs.scandir': 2.1.5 + fastq: 1.13.0 + dev: true + + /@rollup/plugin-babel/5.3.1_56fnebo2rl23pzm3cph57q7t7i: + resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==} + engines: {node: '>= 10.0.0'} + peerDependencies: + '@babel/core': ^7.0.0 + '@types/babel__core': ^7.1.9 + rollup: ^1.20.0||^2.0.0 + peerDependenciesMeta: + '@types/babel__core': + optional: true + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-module-imports': 7.18.6 + '@rollup/pluginutils': 3.1.0_rollup@2.77.3 + rollup: 2.77.3 + dev: true + + /@rollup/plugin-node-resolve/11.2.1_rollup@2.77.3: + resolution: {integrity: sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==} + engines: {node: '>= 10.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0 + dependencies: + '@rollup/pluginutils': 3.1.0_rollup@2.77.3 + '@types/resolve': 1.17.1 + builtin-modules: 3.3.0 + deepmerge: 4.2.2 + is-module: 1.0.0 + resolve: 1.22.1 + rollup: 2.77.3 + dev: true + + /@rollup/plugin-replace/2.4.2_rollup@2.77.3: + resolution: {integrity: sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==} + peerDependencies: + rollup: ^1.20.0 || ^2.0.0 + dependencies: + '@rollup/pluginutils': 3.1.0_rollup@2.77.3 + magic-string: 0.25.9 + rollup: 2.77.3 + dev: true + + /@rollup/pluginutils/3.1.0_rollup@2.77.3: + resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} + engines: {node: '>= 8.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0 + dependencies: + '@types/estree': 0.0.39 + estree-walker: 1.0.1 + picomatch: 2.3.1 + rollup: 2.77.3 + dev: true + + /@rollup/pluginutils/4.2.1: + resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==} + engines: {node: '>= 8.0.0'} + dependencies: + estree-walker: 2.0.2 + picomatch: 2.3.1 + dev: true + + /@socket.io/component-emitter/3.1.0: + resolution: {integrity: sha512-+9jVqKhRSpsc591z5vX+X5Yyw+he/HCB4iQ/RYxw35CEPaY1gnsNE43nf9n9AaYjAQrTiI/mOwKUKdUs9vf7Xg==} + dev: false + + /@surma/rollup-plugin-off-main-thread/2.2.3: + resolution: {integrity: sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==} + dependencies: + ejs: 3.1.8 + json5: 2.2.1 + magic-string: 0.25.9 + string.prototype.matchall: 4.0.7 + dev: true + + /@sveltejs/vite-plugin-svelte/1.0.1_svelte@3.49.0+vite@3.0.6: + resolution: {integrity: sha512-PorCgUounn0VXcpeJu+hOweZODKmGuLHsLomwqSj+p26IwjjGffmYQfVHtiTWq+NqaUuuHWWG7vPge6UFw4Aeg==} + engines: {node: ^14.18.0 || >= 16} + peerDependencies: + diff-match-patch: ^1.0.5 + svelte: ^3.44.0 + vite: ^3.0.0 + peerDependenciesMeta: + diff-match-patch: + optional: true + dependencies: + '@rollup/pluginutils': 4.2.1 + debug: 4.3.4 + deepmerge: 4.2.2 + kleur: 4.1.5 + magic-string: 0.26.2 + svelte: 3.49.0 + svelte-hmr: 0.14.12_svelte@3.49.0 + vite: 3.0.6 + transitivePeerDependencies: + - supports-color + dev: true + + /@tsconfig/node10/1.0.9: + resolution: {integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==} + dev: true + + /@tsconfig/node12/1.0.11: + resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==} + dev: true + + /@tsconfig/node14/1.0.3: + resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==} + dev: true + + /@tsconfig/node16/1.0.3: + resolution: {integrity: sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==} + dev: true + + /@tsconfig/svelte/3.0.0: + resolution: {integrity: sha512-pYrtLtOwku/7r1i9AMONsJMVYAtk3hzOfiGNekhtq5tYBGA7unMve8RvUclKLMT3PrihvJqUmzsRGh0RP84hKg==} + dev: true + + /@types/component-emitter/1.2.11: + resolution: {integrity: sha512-SRXjM+tfsSlA9VuG8hGO2nft2p8zjXCK1VcC6N4NXbBbYbSia9kzCChYQajIjzIqOOOuh5Ock6MmV2oux4jDZQ==} + dev: false + + /@types/cookie/0.4.1: + resolution: {integrity: sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==} + dev: false + + /@types/cors/2.8.12: + resolution: {integrity: sha512-vt+kDhq/M2ayberEtJcIN/hxXy1Pk+59g2FV/ZQceeaTyCtCucjL2Q7FXlFjtWn4n15KCr1NE2lNNFhp0lEThw==} + dev: false + + /@types/estree/0.0.39: + resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==} + dev: true + + /@types/node/18.7.1: + resolution: {integrity: sha512-GKX1Qnqxo4S+Z/+Z8KKPLpH282LD7jLHWJcVryOflnsnH+BtSDfieR6ObwBMwpnNws0bUK8GI7z0unQf9bARNQ==} + + /@types/pug/2.0.6: + resolution: {integrity: sha512-SnHmG9wN1UVmagJOnyo/qkk0Z7gejYxOYYmaAwr5u2yFYfsupN3sg10kyzN8Hep/2zbHxCnsumxOoRIRMBwKCg==} + dev: true + + /@types/resolve/1.17.1: + resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==} + dependencies: + '@types/node': 18.7.1 + dev: true + + /@types/sass/1.43.1: + resolution: {integrity: sha512-BPdoIt1lfJ6B7rw35ncdwBZrAssjcwzI5LByIrYs+tpXlj/CAkuVdRsgZDdP4lq5EjyWzwxZCqAoFyHKFwp32g==} + dependencies: + '@types/node': 18.7.1 + dev: true + + /@types/trusted-types/2.0.2: + resolution: {integrity: sha512-F5DIZ36YVLE+PN+Zwws4kJogq47hNgX3Nx6WyDJ3kcplxyke3XIzB8uK5n/Lpm1HBsbGzd6nmGehL8cPekP+Tg==} + dev: true + + /accepts/1.3.8: + resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==} + engines: {node: '>= 0.6'} + dependencies: + mime-types: 2.1.35 + negotiator: 0.6.3 + dev: false + + /acorn-walk/8.2.0: + resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==} + engines: {node: '>=0.4.0'} + dev: true + + /acorn/8.8.0: + resolution: {integrity: sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==} + engines: {node: '>=0.4.0'} + hasBin: true + dev: true + + /ajv/8.11.0: + resolution: {integrity: sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==} + dependencies: + fast-deep-equal: 3.1.3 + json-schema-traverse: 1.0.0 + require-from-string: 2.0.2 + uri-js: 4.4.1 + dev: true + + /ansi-styles/3.2.1: + resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} + engines: {node: '>=4'} + dependencies: + color-convert: 1.9.3 + dev: true + + /ansi-styles/4.3.0: + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} + dependencies: + color-convert: 2.0.1 + dev: true + + /anymatch/3.1.2: + resolution: {integrity: sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==} + engines: {node: '>= 8'} + dependencies: + normalize-path: 3.0.0 + picomatch: 2.3.1 + dev: true + + /arg/4.1.3: + resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} + dev: true + + /async/3.2.4: + resolution: {integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==} + dev: true + + /at-least-node/1.0.0: + resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==} + engines: {node: '>= 4.0.0'} + dev: true + + /babel-plugin-dynamic-import-node/2.3.3: + resolution: {integrity: sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==} + dependencies: + object.assign: 4.1.3 + dev: true + + /babel-plugin-polyfill-corejs2/0.3.2_@babel+core@7.18.10: + resolution: {integrity: sha512-LPnodUl3lS0/4wN3Rb+m+UK8s7lj2jcLRrjho4gLw+OJs+I4bvGXshINesY5xx/apM+biTnQ9reDI8yj+0M5+Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.18.8 + '@babel/core': 7.18.10 + '@babel/helper-define-polyfill-provider': 0.3.2_@babel+core@7.18.10 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: true + + /babel-plugin-polyfill-corejs3/0.5.3_@babel+core@7.18.10: + resolution: {integrity: sha512-zKsXDh0XjnrUEW0mxIHLfjBfnXSMr5Q/goMe/fxpQnLm07mcOZiIZHBNWCMx60HmdvjxfXcalac0tfFg0wqxyw==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-define-polyfill-provider': 0.3.2_@babel+core@7.18.10 + core-js-compat: 3.24.1 + transitivePeerDependencies: + - supports-color + dev: true + + /babel-plugin-polyfill-regenerator/0.4.0_@babel+core@7.18.10: + resolution: {integrity: sha512-RW1cnryiADFeHmfLS+WW/G431p1PsW5qdRdz0SDRi7TKcUgc7Oh/uXkT7MZ/+tGsT1BkczEAmD5XjUyJ5SWDTw==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-define-polyfill-provider': 0.3.2_@babel+core@7.18.10 + transitivePeerDependencies: + - supports-color + dev: true + + /balanced-match/1.0.2: + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + dev: true + + /base64id/2.0.0: + resolution: {integrity: sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==} + engines: {node: ^4.5.0 || >= 5.9} + dev: false + + /binary-extensions/2.2.0: + resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} + engines: {node: '>=8'} + dev: true + + /brace-expansion/1.1.11: + resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} + dependencies: + balanced-match: 1.0.2 + concat-map: 0.0.1 + dev: true + + /brace-expansion/2.0.1: + resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} + dependencies: + balanced-match: 1.0.2 + dev: true + + /braces/3.0.2: + resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} + engines: {node: '>=8'} + dependencies: + fill-range: 7.0.1 + dev: true + + /browserslist/4.21.3: + resolution: {integrity: sha512-898rgRXLAyRkM1GryrrBHGkqA5hlpkV5MhtZwg9QXeiyLUYs2k00Un05aX5l2/yJIOObYKOpS2JNo8nJDE7fWQ==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + dependencies: + caniuse-lite: 1.0.30001375 + electron-to-chromium: 1.4.218 + node-releases: 2.0.6 + update-browserslist-db: 1.0.5_browserslist@4.21.3 + dev: true + + /buffer-crc32/0.2.13: + resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} + dev: true + + /buffer-from/1.1.2: + resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} + dev: true + + /builtin-modules/3.3.0: + resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} + engines: {node: '>=6'} + dev: true + + /bulma/0.9.4: + resolution: {integrity: sha512-86FlT5+1GrsgKbPLRRY7cGDg8fsJiP/jzTqXXVqiUZZ2aZT8uemEOHlU1CDU+TxklPEZ11HZNNWclRBBecP4CQ==} + dev: false + + /call-bind/1.0.2: + resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} + dependencies: + function-bind: 1.1.1 + get-intrinsic: 1.1.2 + dev: true + + /callsites/3.1.0: + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + engines: {node: '>=6'} + dev: true + + /caniuse-lite/1.0.30001375: + resolution: {integrity: sha512-kWIMkNzLYxSvnjy0hL8w1NOaWNr2rn39RTAVyIwcw8juu60bZDWiF1/loOYANzjtJmy6qPgNmn38ro5Pygagdw==} + dev: true + + /chalk/2.4.2: + resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} + engines: {node: '>=4'} + dependencies: + ansi-styles: 3.2.1 + escape-string-regexp: 1.0.5 + supports-color: 5.5.0 + dev: true + + /chalk/4.1.2: + resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} + engines: {node: '>=10'} + dependencies: + ansi-styles: 4.3.0 + supports-color: 7.2.0 + dev: true + + /chokidar/3.5.3: + resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} + engines: {node: '>= 8.10.0'} + dependencies: + anymatch: 3.1.2 + braces: 3.0.2 + glob-parent: 5.1.2 + is-binary-path: 2.1.0 + is-glob: 4.0.3 + normalize-path: 3.0.0 + readdirp: 3.6.0 + optionalDependencies: + fsevents: 2.3.2 + dev: true + + /color-convert/1.9.3: + resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} + dependencies: + color-name: 1.1.3 + dev: true + + /color-convert/2.0.1: + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} + dependencies: + color-name: 1.1.4 + dev: true + + /color-name/1.1.3: + resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} + dev: true + + /color-name/1.1.4: + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + dev: true + + /commander/2.20.3: + resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} + dev: true + + /common-tags/1.8.2: + resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==} + engines: {node: '>=4.0.0'} + dev: true + + /component-emitter/1.3.0: + resolution: {integrity: sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==} + dev: false + + /concat-map/0.0.1: + resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=} + dev: true + + /convert-source-map/1.8.0: + resolution: {integrity: sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==} + dependencies: + safe-buffer: 5.1.2 + dev: true + + /cookie/0.4.2: + resolution: {integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==} + engines: {node: '>= 0.6'} + dev: false + + /core-js-compat/3.24.1: + resolution: {integrity: sha512-XhdNAGeRnTpp8xbD+sR/HFDK9CbeeeqXT6TuofXh3urqEevzkWmLRgrVoykodsw8okqo2pu1BOmuCKrHx63zdw==} + dependencies: + browserslist: 4.21.3 + semver: 7.0.0 + dev: true + + /cors/2.8.5: + resolution: {integrity: sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==} + engines: {node: '>= 0.10'} + dependencies: + object-assign: 4.1.1 + vary: 1.1.2 + dev: false + + /create-require/1.1.1: + resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} + dev: true + + /crypto-random-string/2.0.0: + resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==} + engines: {node: '>=8'} + dev: true + + /debug/4.3.4: + resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.1.2 + + /deepmerge/4.2.2: + resolution: {integrity: sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==} + engines: {node: '>=0.10.0'} + dev: true + + /define-properties/1.1.4: + resolution: {integrity: sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==} + engines: {node: '>= 0.4'} + dependencies: + has-property-descriptors: 1.0.0 + object-keys: 1.1.1 + dev: true + + /detect-indent/6.1.0: + resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==} + engines: {node: '>=8'} + dev: true + + /diff/4.0.2: + resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} + engines: {node: '>=0.3.1'} + dev: true + + /ejs/3.1.8: + resolution: {integrity: sha512-/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ==} + engines: {node: '>=0.10.0'} + hasBin: true + dependencies: + jake: 10.8.5 + dev: true + + /electron-to-chromium/1.4.218: + resolution: {integrity: sha512-INDylKH//YIf2w67D+IjkfVnGVrZ/D94DAU/FPPm6T4jEPbEDQvo9r2wTj0ncFdtJH8+V8BggZTaN8Rzk5wkgw==} + dev: true + + /engine.io-client/6.2.2: + resolution: {integrity: sha512-8ZQmx0LQGRTYkHuogVZuGSpDqYZtCM/nv8zQ68VZ+JkOpazJ7ICdsSpaO6iXwvaU30oFg5QJOJWj8zWqhbKjkQ==} + dependencies: + '@socket.io/component-emitter': 3.1.0 + debug: 4.3.4 + engine.io-parser: 5.0.4 + ws: 8.2.3 + xmlhttprequest-ssl: 2.0.0 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + dev: false + + /engine.io-parser/5.0.4: + resolution: {integrity: sha512-+nVFp+5z1E3HcToEnO7ZIj3g+3k9389DvWtvJZz0T6/eOCPIyyxehFcedoYrZQrp0LgQbD9pPXhpMBKMd5QURg==} + engines: {node: '>=10.0.0'} + dev: false + + /engine.io/6.2.0: + resolution: {integrity: sha512-4KzwW3F3bk+KlzSOY57fj/Jx6LyRQ1nbcyIadehl+AnXjKT7gDO0ORdRi/84ixvMKTym6ZKuxvbzN62HDDU1Lg==} + engines: {node: '>=10.0.0'} + dependencies: + '@types/cookie': 0.4.1 + '@types/cors': 2.8.12 + '@types/node': 18.7.1 + accepts: 1.3.8 + base64id: 2.0.0 + cookie: 0.4.2 + cors: 2.8.5 + debug: 4.3.4 + engine.io-parser: 5.0.4 + ws: 8.2.3 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + dev: false + + /es-abstract/1.20.1: + resolution: {integrity: sha512-WEm2oBhfoI2sImeM4OF2zE2V3BYdSF+KnSi9Sidz51fQHd7+JuF8Xgcj9/0o+OWeIeIS/MiuNnlruQrJf16GQA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + es-to-primitive: 1.2.1 + function-bind: 1.1.1 + function.prototype.name: 1.1.5 + get-intrinsic: 1.1.2 + get-symbol-description: 1.0.0 + has: 1.0.3 + has-property-descriptors: 1.0.0 + has-symbols: 1.0.3 + internal-slot: 1.0.3 + is-callable: 1.2.4 + is-negative-zero: 2.0.2 + is-regex: 1.1.4 + is-shared-array-buffer: 1.0.2 + is-string: 1.0.7 + is-weakref: 1.0.2 + object-inspect: 1.12.2 + object-keys: 1.1.1 + object.assign: 4.1.3 + regexp.prototype.flags: 1.4.3 + string.prototype.trimend: 1.0.5 + string.prototype.trimstart: 1.0.5 + unbox-primitive: 1.0.2 + dev: true + + /es-to-primitive/1.2.1: + resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} + engines: {node: '>= 0.4'} + dependencies: + is-callable: 1.2.4 + is-date-object: 1.0.5 + is-symbol: 1.0.4 + dev: true + + /es6-promise/3.3.1: + resolution: {integrity: sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg==} + dev: true + + /esbuild-android-64/0.14.54: + resolution: {integrity: sha512-Tz2++Aqqz0rJ7kYBfz+iqyE3QMycD4vk7LBRyWaAVFgFtQ/O8EJOnVmTOiDWYZ/uYzB4kvP+bqejYdVKzE5lAQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [android] + requiresBuild: true + dev: true + optional: true + + /esbuild-android-arm64/0.14.54: + resolution: {integrity: sha512-F9E+/QDi9sSkLaClO8SOV6etqPd+5DgJje1F9lOWoNncDdOBL2YF59IhsWATSt0TLZbYCf3pNlTHvVV5VfHdvg==} + engines: {node: '>=12'} + cpu: [arm64] + os: [android] + requiresBuild: true + dev: true + optional: true + + /esbuild-darwin-64/0.14.54: + resolution: {integrity: sha512-jtdKWV3nBviOd5v4hOpkVmpxsBy90CGzebpbO9beiqUYVMBtSc0AL9zGftFuBon7PNDcdvNCEuQqw2x0wP9yug==} + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /esbuild-darwin-arm64/0.14.54: + resolution: {integrity: sha512-OPafJHD2oUPyvJMrsCvDGkRrVCar5aVyHfWGQzY1dWnzErjrDuSETxwA2HSsyg2jORLY8yBfzc1MIpUkXlctmw==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /esbuild-freebsd-64/0.14.54: + resolution: {integrity: sha512-OKwd4gmwHqOTp4mOGZKe/XUlbDJ4Q9TjX0hMPIDBUWWu/kwhBAudJdBoxnjNf9ocIB6GN6CPowYpR/hRCbSYAg==} + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + + /esbuild-freebsd-arm64/0.14.54: + resolution: {integrity: sha512-sFwueGr7OvIFiQT6WeG0jRLjkjdqWWSrfbVwZp8iMP+8UHEHRBvlaxL6IuKNDwAozNUmbb8nIMXa7oAOARGs1Q==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + + /esbuild-linux-32/0.14.54: + resolution: {integrity: sha512-1ZuY+JDI//WmklKlBgJnglpUL1owm2OX+8E1syCD6UAxcMM/XoWd76OHSjl/0MR0LisSAXDqgjT3uJqT67O3qw==} + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /esbuild-linux-64/0.14.54: + resolution: {integrity: sha512-EgjAgH5HwTbtNsTqQOXWApBaPVdDn7XcK+/PtJwZLT1UmpLoznPd8c5CxqsH2dQK3j05YsB3L17T8vE7cp4cCg==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /esbuild-linux-arm/0.14.54: + resolution: {integrity: sha512-qqz/SjemQhVMTnvcLGoLOdFpCYbz4v4fUo+TfsWG+1aOu70/80RV6bgNpR2JCrppV2moUQkww+6bWxXRL9YMGw==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /esbuild-linux-arm64/0.14.54: + resolution: {integrity: sha512-WL71L+0Rwv+Gv/HTmxTEmpv0UgmxYa5ftZILVi2QmZBgX3q7+tDeOQNqGtdXSdsL8TQi1vIaVFHUPDe0O0kdig==} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /esbuild-linux-mips64le/0.14.54: + resolution: {integrity: sha512-qTHGQB8D1etd0u1+sB6p0ikLKRVuCWhYQhAHRPkO+OF3I/iSlTKNNS0Lh2Oc0g0UFGguaFZZiPJdJey3AGpAlw==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /esbuild-linux-ppc64le/0.14.54: + resolution: {integrity: sha512-j3OMlzHiqwZBDPRCDFKcx595XVfOfOnv68Ax3U4UKZ3MTYQB5Yz3X1mn5GnodEVYzhtZgxEBidLWeIs8FDSfrQ==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /esbuild-linux-riscv64/0.14.54: + resolution: {integrity: sha512-y7Vt7Wl9dkOGZjxQZnDAqqn+XOqFD7IMWiewY5SPlNlzMX39ocPQlOaoxvT4FllA5viyV26/QzHtvTjVNOxHZg==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /esbuild-linux-s390x/0.14.54: + resolution: {integrity: sha512-zaHpW9dziAsi7lRcyV4r8dhfG1qBidQWUXweUjnw+lliChJqQr+6XD71K41oEIC3Mx1KStovEmlzm+MkGZHnHA==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /esbuild-netbsd-64/0.14.54: + resolution: {integrity: sha512-PR01lmIMnfJTgeU9VJTDY9ZerDWVFIUzAtJuDHwwceppW7cQWjBBqP48NdeRtoP04/AtO9a7w3viI+PIDr6d+w==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + requiresBuild: true + dev: true + optional: true + + /esbuild-openbsd-64/0.14.54: + resolution: {integrity: sha512-Qyk7ikT2o7Wu76UsvvDS5q0amJvmRzDyVlL0qf5VLsLchjCa1+IAvd8kTBgUxD7VBUUVgItLkk609ZHUc1oCaw==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + requiresBuild: true + dev: true + optional: true + + /esbuild-sunos-64/0.14.54: + resolution: {integrity: sha512-28GZ24KmMSeKi5ueWzMcco6EBHStL3B6ubM7M51RmPwXQGLe0teBGJocmWhgwccA1GeFXqxzILIxXpHbl9Q/Kw==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + requiresBuild: true + dev: true + optional: true + + /esbuild-windows-32/0.14.54: + resolution: {integrity: sha512-T+rdZW19ql9MjS7pixmZYVObd9G7kcaZo+sETqNH4RCkuuYSuv9AGHUVnPoP9hhuE1WM1ZimHz1CIBHBboLU7w==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /esbuild-windows-64/0.14.54: + resolution: {integrity: sha512-AoHTRBUuYwXtZhjXZbA1pGfTo8cJo3vZIcWGLiUcTNgHpJJMC1rVA44ZereBHMJtotyN71S8Qw0npiCIkW96cQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /esbuild-windows-arm64/0.14.54: + resolution: {integrity: sha512-M0kuUvXhot1zOISQGXwWn6YtS+Y/1RT9WrVIOywZnJHo3jCDyewAc79aKNQWFCQm+xNHVTq9h8dZKvygoXQQRg==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /esbuild/0.14.54: + resolution: {integrity: sha512-Cy9llcy8DvET5uznocPyqL3BFRrFXSVqbgpMJ9Wz8oVjZlh/zUSNbPRbov0VX7VxN2JH1Oa0uNxZ7eLRb62pJA==} + engines: {node: '>=12'} + hasBin: true + requiresBuild: true + optionalDependencies: + '@esbuild/linux-loong64': 0.14.54 + esbuild-android-64: 0.14.54 + esbuild-android-arm64: 0.14.54 + esbuild-darwin-64: 0.14.54 + esbuild-darwin-arm64: 0.14.54 + esbuild-freebsd-64: 0.14.54 + esbuild-freebsd-arm64: 0.14.54 + esbuild-linux-32: 0.14.54 + esbuild-linux-64: 0.14.54 + esbuild-linux-arm: 0.14.54 + esbuild-linux-arm64: 0.14.54 + esbuild-linux-mips64le: 0.14.54 + esbuild-linux-ppc64le: 0.14.54 + esbuild-linux-riscv64: 0.14.54 + esbuild-linux-s390x: 0.14.54 + esbuild-netbsd-64: 0.14.54 + esbuild-openbsd-64: 0.14.54 + esbuild-sunos-64: 0.14.54 + esbuild-windows-32: 0.14.54 + esbuild-windows-64: 0.14.54 + esbuild-windows-arm64: 0.14.54 + dev: true + + /escalade/3.1.1: + resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} + engines: {node: '>=6'} + dev: true + + /escape-string-regexp/1.0.5: + resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} + engines: {node: '>=0.8.0'} + dev: true + + /estree-walker/1.0.1: + resolution: {integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==} + dev: true + + /estree-walker/2.0.2: + resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} + dev: true + + /esutils/2.0.3: + resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} + engines: {node: '>=0.10.0'} + dev: true + + /fast-deep-equal/3.1.3: + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + dev: true + + /fast-glob/3.2.11: + resolution: {integrity: sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==} + engines: {node: '>=8.6.0'} + dependencies: + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 + glob-parent: 5.1.2 + merge2: 1.4.1 + micromatch: 4.0.5 + dev: true + + /fast-json-stable-stringify/2.1.0: + resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} + dev: true + + /fastq/1.13.0: + resolution: {integrity: sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==} + dependencies: + reusify: 1.0.4 + dev: true + + /filelist/1.0.4: + resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==} + dependencies: + minimatch: 5.1.0 + dev: true + + /fill-range/7.0.1: + resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} + engines: {node: '>=8'} + dependencies: + to-regex-range: 5.0.1 + dev: true + + /fs-extra/9.1.0: + resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==} + engines: {node: '>=10'} + dependencies: + at-least-node: 1.0.0 + graceful-fs: 4.2.10 + jsonfile: 6.1.0 + universalify: 2.0.0 + dev: true + + /fs.realpath/1.0.0: + resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} + dev: true + + /fsevents/2.3.2: + resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /function-bind/1.1.1: + resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} + dev: true + + /function.prototype.name/1.1.5: + resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.1 + functions-have-names: 1.2.3 + dev: true + + /functions-have-names/1.2.3: + resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} + dev: true + + /gensync/1.0.0-beta.2: + resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} + engines: {node: '>=6.9.0'} + dev: true + + /get-intrinsic/1.1.2: + resolution: {integrity: sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA==} + dependencies: + function-bind: 1.1.1 + has: 1.0.3 + has-symbols: 1.0.3 + dev: true + + /get-own-enumerable-property-symbols/3.0.2: + resolution: {integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==} + dev: true + + /get-symbol-description/1.0.0: + resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.1.2 + dev: true + + /glob-parent/5.1.2: + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} + engines: {node: '>= 6'} + dependencies: + is-glob: 4.0.3 + dev: true + + /glob/7.2.3: + resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 3.1.2 + once: 1.4.0 + path-is-absolute: 1.0.1 + dev: true + + /globals/11.12.0: + resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} + engines: {node: '>=4'} + dev: true + + /graceful-fs/4.2.10: + resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==} + dev: true + + /has-bigints/1.0.2: + resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} + dev: true + + /has-flag/3.0.0: + resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} + engines: {node: '>=4'} + dev: true + + /has-flag/4.0.0: + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} + dev: true + + /has-property-descriptors/1.0.0: + resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==} + dependencies: + get-intrinsic: 1.1.2 + dev: true + + /has-symbols/1.0.3: + resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} + engines: {node: '>= 0.4'} + dev: true + + /has-tostringtag/1.0.0: + resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} + engines: {node: '>= 0.4'} + dependencies: + has-symbols: 1.0.3 + dev: true + + /has/1.0.3: + resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} + engines: {node: '>= 0.4.0'} + dependencies: + function-bind: 1.1.1 + dev: true + + /idb/7.0.2: + resolution: {integrity: sha512-jjKrT1EnyZewQ/gCBb/eyiYrhGzws2FeY92Yx8qT9S9GeQAmo4JFVIiWRIfKW/6Ob9A+UDAOW9j9jn58fy2HIg==} + dev: true + + /import-fresh/3.3.0: + resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} + engines: {node: '>=6'} + dependencies: + parent-module: 1.0.1 + resolve-from: 4.0.0 + dev: true + + /inflight/1.0.6: + resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} + dependencies: + once: 1.4.0 + wrappy: 1.0.2 + dev: true + + /inherits/2.0.4: + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + dev: true + + /internal-slot/1.0.3: + resolution: {integrity: sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==} + engines: {node: '>= 0.4'} + dependencies: + get-intrinsic: 1.1.2 + has: 1.0.3 + side-channel: 1.0.4 + dev: true + + /is-bigint/1.0.4: + resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} + dependencies: + has-bigints: 1.0.2 + dev: true + + /is-binary-path/2.1.0: + resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} + engines: {node: '>=8'} + dependencies: + binary-extensions: 2.2.0 + dev: true + + /is-boolean-object/1.1.2: + resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + has-tostringtag: 1.0.0 + dev: true + + /is-callable/1.2.4: + resolution: {integrity: sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==} + engines: {node: '>= 0.4'} + dev: true + + /is-core-module/2.10.0: + resolution: {integrity: sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg==} + dependencies: + has: 1.0.3 + dev: true + + /is-date-object/1.0.5: + resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.0 + dev: true + + /is-extglob/2.1.1: + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} + engines: {node: '>=0.10.0'} + dev: true + + /is-glob/4.0.3: + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + engines: {node: '>=0.10.0'} + dependencies: + is-extglob: 2.1.1 + dev: true + + /is-module/1.0.0: + resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==} + dev: true + + /is-negative-zero/2.0.2: + resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} + engines: {node: '>= 0.4'} + dev: true + + /is-number-object/1.0.7: + resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.0 + dev: true + + /is-number/7.0.0: + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} + dev: true + + /is-obj/1.0.1: + resolution: {integrity: sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==} + engines: {node: '>=0.10.0'} + dev: true + + /is-regex/1.1.4: + resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + has-tostringtag: 1.0.0 + dev: true + + /is-regexp/1.0.0: + resolution: {integrity: sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==} + engines: {node: '>=0.10.0'} + dev: true + + /is-shared-array-buffer/1.0.2: + resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} + dependencies: + call-bind: 1.0.2 + dev: true + + /is-stream/2.0.1: + resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} + engines: {node: '>=8'} + dev: true + + /is-string/1.0.7: + resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.0 + dev: true + + /is-symbol/1.0.4: + resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} + engines: {node: '>= 0.4'} + dependencies: + has-symbols: 1.0.3 + dev: true + + /is-weakref/1.0.2: + resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} + dependencies: + call-bind: 1.0.2 + dev: true + + /jake/10.8.5: + resolution: {integrity: sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==} + engines: {node: '>=10'} + hasBin: true + dependencies: + async: 3.2.4 + chalk: 4.1.2 + filelist: 1.0.4 + minimatch: 3.1.2 + dev: true + + /jest-worker/26.6.2: + resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==} + engines: {node: '>= 10.13.0'} + dependencies: + '@types/node': 18.7.1 + merge-stream: 2.0.0 + supports-color: 7.2.0 + dev: true + + /js-tokens/4.0.0: + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + dev: true + + /jsesc/0.5.0: + resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} + hasBin: true + dev: true + + /jsesc/2.5.2: + resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} + engines: {node: '>=4'} + hasBin: true + dev: true + + /json-schema-traverse/1.0.0: + resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} + dev: true + + /json-schema/0.4.0: + resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==} + dev: true + + /json5/2.2.1: + resolution: {integrity: sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==} + engines: {node: '>=6'} + hasBin: true + dev: true + + /jsonfile/6.1.0: + resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} + dependencies: + universalify: 2.0.0 + optionalDependencies: + graceful-fs: 4.2.10 + dev: true + + /jsonpointer/5.0.1: + resolution: {integrity: sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==} + engines: {node: '>=0.10.0'} + dev: true + + /kleur/4.1.5: + resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} + engines: {node: '>=6'} + dev: true + + /leven/3.1.0: + resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} + engines: {node: '>=6'} + dev: true + + /lodash.debounce/4.0.8: + resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} + dev: true + + /lodash.sortby/4.7.0: + resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==} + dev: true + + /lodash/4.17.21: + resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + dev: true + + /magic-string/0.25.9: + resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==} + dependencies: + sourcemap-codec: 1.4.8 + dev: true + + /magic-string/0.26.2: + resolution: {integrity: sha512-NzzlXpclt5zAbmo6h6jNc8zl2gNRGHvmsZW4IvZhTC4W7k4OlLP+S5YLussa/r3ixNT66KOQfNORlXHSOy/X4A==} + engines: {node: '>=12'} + dependencies: + sourcemap-codec: 1.4.8 + dev: true + + /make-error/1.3.6: + resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} + dev: true + + /merge-stream/2.0.0: + resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} + dev: true + + /merge2/1.4.1: + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} + engines: {node: '>= 8'} + dev: true + + /micromatch/4.0.5: + resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} + engines: {node: '>=8.6'} + dependencies: + braces: 3.0.2 + picomatch: 2.3.1 + dev: true + + /mime-db/1.52.0: + resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} + engines: {node: '>= 0.6'} + dev: false + + /mime-types/2.1.35: + resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} + engines: {node: '>= 0.6'} + dependencies: + mime-db: 1.52.0 + dev: false + + /min-indent/1.0.1: + resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} + engines: {node: '>=4'} + dev: true + + /minimatch/3.1.2: + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + dependencies: + brace-expansion: 1.1.11 + dev: true + + /minimatch/5.1.0: + resolution: {integrity: sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==} + engines: {node: '>=10'} + dependencies: + brace-expansion: 2.0.1 + dev: true + + /minimist/1.2.6: + resolution: {integrity: sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==} + dev: true + + /mkdirp/0.5.6: + resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} + hasBin: true + dependencies: + minimist: 1.2.6 + dev: true + + /mri/1.2.0: + resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} + engines: {node: '>=4'} + dev: true + + /ms/2.1.2: + resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} + + /nanoid/3.3.4: + resolution: {integrity: sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + dev: true + + /negotiator/0.6.3: + resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} + engines: {node: '>= 0.6'} + dev: false + + /node-releases/2.0.6: + resolution: {integrity: sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==} + dev: true + + /normalize-path/3.0.0: + resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} + engines: {node: '>=0.10.0'} + dev: true + + /object-assign/4.1.1: + resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} + engines: {node: '>=0.10.0'} + dev: false + + /object-inspect/1.12.2: + resolution: {integrity: sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==} + dev: true + + /object-keys/1.1.1: + resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} + engines: {node: '>= 0.4'} + dev: true + + /object.assign/4.1.3: + resolution: {integrity: sha512-ZFJnX3zltyjcYJL0RoCJuzb+11zWGyaDbjgxZbdV7rFEcHQuYxrZqhow67aA7xpes6LhojyFDaBKAFfogQrikA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + has-symbols: 1.0.3 + object-keys: 1.1.1 + dev: true + + /once/1.4.0: + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + dependencies: + wrappy: 1.0.2 + dev: true + + /parent-module/1.0.1: + resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} + engines: {node: '>=6'} + dependencies: + callsites: 3.1.0 + dev: true + + /path-is-absolute/1.0.1: + resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} + engines: {node: '>=0.10.0'} + dev: true + + /path-parse/1.0.7: + resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + dev: true + + /picocolors/1.0.0: + resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} + dev: true + + /picomatch/2.3.1: + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} + dev: true + + /postcss/8.4.16: + resolution: {integrity: sha512-ipHE1XBvKzm5xI7hiHCZJCSugxvsdq2mPnsq5+UF+VHCjiBvtDrlxJfMBToWaP9D5XlgNmcFGqoHmUn0EYEaRQ==} + engines: {node: ^10 || ^12 || >=14} + dependencies: + nanoid: 3.3.4 + picocolors: 1.0.0 + source-map-js: 1.0.2 + dev: true + + /prettier/2.7.1: + resolution: {integrity: sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==} + engines: {node: '>=10.13.0'} + hasBin: true + dev: true + + /pretty-bytes/5.6.0: + resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==} + engines: {node: '>=6'} + dev: true + + /pretty-bytes/6.0.0: + resolution: {integrity: sha512-6UqkYefdogmzqAZWzJ7laYeJnaXDy2/J+ZqiiMtS7t7OfpXWTlaeGMwX8U6EFvPV/YWWEKRkS8hKS4k60WHTOg==} + engines: {node: ^14.13.1 || >=16.0.0} + dev: true + + /punycode/2.1.1: + resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==} + engines: {node: '>=6'} + dev: true + + /queue-microtask/1.2.3: + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + dev: true + + /randombytes/2.1.0: + resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} + dependencies: + safe-buffer: 5.2.1 + dev: true + + /readdirp/3.6.0: + resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} + engines: {node: '>=8.10.0'} + dependencies: + picomatch: 2.3.1 + dev: true + + /regenerate-unicode-properties/10.0.1: + resolution: {integrity: sha512-vn5DU6yg6h8hP/2OkQo3K7uVILvY4iu0oI4t3HFa81UPkhGJwkRwM10JEc3upjdhHjs/k8GJY1sRBhk5sr69Bw==} + engines: {node: '>=4'} + dependencies: + regenerate: 1.4.2 + dev: true + + /regenerate/1.4.2: + resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} + dev: true + + /regenerator-runtime/0.13.9: + resolution: {integrity: sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==} + dev: true + + /regenerator-transform/0.15.0: + resolution: {integrity: sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==} + dependencies: + '@babel/runtime': 7.18.9 + dev: true + + /regexp.prototype.flags/1.4.3: + resolution: {integrity: sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + functions-have-names: 1.2.3 + dev: true + + /regexpu-core/5.1.0: + resolution: {integrity: sha512-bb6hk+xWd2PEOkj5It46A16zFMs2mv86Iwpdu94la4S3sJ7C973h2dHpYKwIBGaWSO7cIRJ+UX0IeMaWcO4qwA==} + engines: {node: '>=4'} + dependencies: + regenerate: 1.4.2 + regenerate-unicode-properties: 10.0.1 + regjsgen: 0.6.0 + regjsparser: 0.8.4 + unicode-match-property-ecmascript: 2.0.0 + unicode-match-property-value-ecmascript: 2.0.0 + dev: true + + /regjsgen/0.6.0: + resolution: {integrity: sha512-ozE883Uigtqj3bx7OhL1KNbCzGyW2NQZPl6Hs09WTvCuZD5sTI4JY58bkbQWa/Y9hxIsvJ3M8Nbf7j54IqeZbA==} + dev: true + + /regjsparser/0.8.4: + resolution: {integrity: sha512-J3LABycON/VNEu3abOviqGHuB/LOtOQj8SKmfP9anY5GfAVw/SPjwzSjxGjbZXIxbGfqTHtJw58C2Li/WkStmA==} + hasBin: true + dependencies: + jsesc: 0.5.0 + dev: true + + /require-from-string/2.0.2: + resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} + engines: {node: '>=0.10.0'} + dev: true + + /resolve-from/4.0.0: + resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} + engines: {node: '>=4'} + dev: true + + /resolve/1.22.1: + resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==} + hasBin: true + dependencies: + is-core-module: 2.10.0 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + dev: true + + /reusify/1.0.4: + resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + dev: true + + /rimraf/2.7.1: + resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} + hasBin: true + dependencies: + glob: 7.2.3 + dev: true + + /rollup-plugin-terser/7.0.2_rollup@2.77.3: + resolution: {integrity: sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==} + peerDependencies: + rollup: ^2.0.0 + dependencies: + '@babel/code-frame': 7.18.6 + jest-worker: 26.6.2 + rollup: 2.77.3 + serialize-javascript: 4.0.0 + terser: 5.14.2 + dev: true + + /rollup/2.77.3: + resolution: {integrity: sha512-/qxNTG7FbmefJWoeeYJFbHehJ2HNWnjkAFRKzWN/45eNBBF/r8lo992CwcJXEzyVxs5FmfId+vTSTQDb+bxA+g==} + engines: {node: '>=10.0.0'} + hasBin: true + optionalDependencies: + fsevents: 2.3.2 + dev: true + + /run-parallel/1.2.0: + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + dependencies: + queue-microtask: 1.2.3 + dev: true + + /sade/1.8.1: + resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==} + engines: {node: '>=6'} + dependencies: + mri: 1.2.0 + dev: true + + /safe-buffer/5.1.2: + resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} + dev: true + + /safe-buffer/5.2.1: + resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + dev: true + + /sander/0.5.1: + resolution: {integrity: sha512-3lVqBir7WuKDHGrKRDn/1Ye3kwpXaDOMsiRP1wd6wpZW56gJhsbp5RqQpA6JG/P+pkXizygnr1dKR8vzWaVsfA==} + dependencies: + es6-promise: 3.3.1 + graceful-fs: 4.2.10 + mkdirp: 0.5.6 + rimraf: 2.7.1 + dev: true + + /semver/6.3.0: + resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==} + hasBin: true + dev: true + + /semver/7.0.0: + resolution: {integrity: sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==} + hasBin: true + dev: true + + /serialize-javascript/4.0.0: + resolution: {integrity: sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==} + dependencies: + randombytes: 2.1.0 + dev: true + + /side-channel/1.0.4: + resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.1.2 + object-inspect: 1.12.2 + dev: true + + /socket.io-adapter/2.4.0: + resolution: {integrity: sha512-W4N+o69rkMEGVuk2D/cvca3uYsvGlMwsySWV447y99gUPghxq42BxqLNMndb+a1mm/5/7NeXVQS7RLa2XyXvYg==} + dev: false + + /socket.io-client/4.5.1: + resolution: {integrity: sha512-e6nLVgiRYatS+AHXnOnGi4ocOpubvOUCGhyWw8v+/FxW8saHkinG6Dfhi9TU0Kt/8mwJIAASxvw6eujQmjdZVA==} + engines: {node: '>=10.0.0'} + dependencies: + '@socket.io/component-emitter': 3.1.0 + debug: 4.3.4 + engine.io-client: 6.2.2 + socket.io-parser: 4.2.1 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + dev: false + + /socket.io-parser/4.0.5: + resolution: {integrity: sha512-sNjbT9dX63nqUFIOv95tTVm6elyIU4RvB1m8dOeZt+IgWwcWklFDOdmGcfo3zSiRsnR/3pJkjY5lfoGqEe4Eig==} + engines: {node: '>=10.0.0'} + dependencies: + '@types/component-emitter': 1.2.11 + component-emitter: 1.3.0 + debug: 4.3.4 + transitivePeerDependencies: + - supports-color + dev: false + + /socket.io-parser/4.2.1: + resolution: {integrity: sha512-V4GrkLy+HeF1F/en3SpUaM+7XxYXpuMUWLGde1kSSh5nQMN4hLrbPIkD+otwh6q9R6NOQBN4AMaOZ2zVjui82g==} + engines: {node: '>=10.0.0'} + dependencies: + '@socket.io/component-emitter': 3.1.0 + debug: 4.3.4 + transitivePeerDependencies: + - supports-color + dev: false + + /socket.io/4.5.1: + resolution: {integrity: sha512-0y9pnIso5a9i+lJmsCdtmTTgJFFSvNQKDnPQRz28mGNnxbmqYg2QPtJTLFxhymFZhAIn50eHAKzJeiNaKr+yUQ==} + engines: {node: '>=10.0.0'} + dependencies: + accepts: 1.3.8 + base64id: 2.0.0 + debug: 4.3.4 + engine.io: 6.2.0 + socket.io-adapter: 2.4.0 + socket.io-parser: 4.0.5 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + dev: false + + /sorcery/0.10.0: + resolution: {integrity: sha512-R5ocFmKZQFfSTstfOtHjJuAwbpGyf9qjQa1egyhvXSbM7emjrtLXtGdZsDJDABC85YBfVvrOiGWKSYXPKdvP1g==} + hasBin: true + dependencies: + buffer-crc32: 0.2.13 + minimist: 1.2.6 + sander: 0.5.1 + sourcemap-codec: 1.4.8 + dev: true + + /source-map-js/1.0.2: + resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} + engines: {node: '>=0.10.0'} + dev: true + + /source-map-support/0.5.21: + resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} + dependencies: + buffer-from: 1.1.2 + source-map: 0.6.1 + dev: true + + /source-map/0.6.1: + resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} + engines: {node: '>=0.10.0'} + dev: true + + /source-map/0.8.0-beta.0: + resolution: {integrity: sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==} + engines: {node: '>= 8'} + dependencies: + whatwg-url: 7.1.0 + dev: true + + /sourcemap-codec/1.4.8: + resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==} + dev: true + + /string.prototype.matchall/4.0.7: + resolution: {integrity: sha512-f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg==} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.1 + get-intrinsic: 1.1.2 + has-symbols: 1.0.3 + internal-slot: 1.0.3 + regexp.prototype.flags: 1.4.3 + side-channel: 1.0.4 + dev: true + + /string.prototype.trimend/1.0.5: + resolution: {integrity: sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.1 + dev: true + + /string.prototype.trimstart/1.0.5: + resolution: {integrity: sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.1 + dev: true + + /stringify-object/3.3.0: + resolution: {integrity: sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==} + engines: {node: '>=4'} + dependencies: + get-own-enumerable-property-symbols: 3.0.2 + is-obj: 1.0.1 + is-regexp: 1.0.0 + dev: true + + /strip-comments/2.0.1: + resolution: {integrity: sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw==} + engines: {node: '>=10'} + dev: true + + /strip-indent/3.0.0: + resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} + engines: {node: '>=8'} + dependencies: + min-indent: 1.0.1 + dev: true + + /supports-color/5.5.0: + resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} + engines: {node: '>=4'} + dependencies: + has-flag: 3.0.0 + dev: true + + /supports-color/7.2.0: + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} + dependencies: + has-flag: 4.0.0 + dev: true + + /supports-preserve-symlinks-flag/1.0.0: + resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} + engines: {node: '>= 0.4'} + dev: true + + /svelte-check/2.8.0_svelte@3.49.0: + resolution: {integrity: sha512-HRL66BxffMAZusqe5I5k26mRWQ+BobGd9Rxm3onh7ZVu0nTk8YTKJ9vu3LVPjUGLU9IX7zS+jmwPVhJYdXJ8vg==} + hasBin: true + peerDependencies: + svelte: ^3.24.0 + dependencies: + '@jridgewell/trace-mapping': 0.3.14 + chokidar: 3.5.3 + fast-glob: 3.2.11 + import-fresh: 3.3.0 + picocolors: 1.0.0 + sade: 1.8.1 + svelte: 3.49.0 + svelte-preprocess: 4.10.7_uslzfc62di2n2otc2tvfklnwji + typescript: 4.7.4 + transitivePeerDependencies: + - '@babel/core' + - coffeescript + - less + - node-sass + - postcss + - postcss-load-config + - pug + - sass + - stylus + - sugarss + dev: true + + /svelte-hmr/0.14.12_svelte@3.49.0: + resolution: {integrity: sha512-4QSW/VvXuqVcFZ+RhxiR8/newmwOCTlbYIezvkeN6302YFRE8cXy0naamHcjz8Y9Ce3ITTZtrHrIL0AGfyo61w==} + engines: {node: ^12.20 || ^14.13.1 || >= 16} + peerDependencies: + svelte: '>=3.19.0' + dependencies: + svelte: 3.49.0 + dev: true + + /svelte-preprocess/4.10.7_uslzfc62di2n2otc2tvfklnwji: + resolution: {integrity: sha512-sNPBnqYD6FnmdBrUmBCaqS00RyCsCpj2BG58A1JBswNF7b0OKviwxqVrOL/CKyJrLSClrSeqQv5BXNg2RUbPOw==} + engines: {node: '>= 9.11.2'} + requiresBuild: true + peerDependencies: + '@babel/core': ^7.10.2 + coffeescript: ^2.5.1 + less: ^3.11.3 || ^4.0.0 + node-sass: '*' + postcss: ^7 || ^8 + postcss-load-config: ^2.1.0 || ^3.0.0 || ^4.0.0 + pug: ^3.0.0 + sass: ^1.26.8 + stylus: ^0.55.0 + sugarss: ^2.0.0 + svelte: ^3.23.0 + typescript: ^3.9.5 || ^4.0.0 + peerDependenciesMeta: + '@babel/core': + optional: true + coffeescript: + optional: true + less: + optional: true + node-sass: + optional: true + postcss: + optional: true + postcss-load-config: + optional: true + pug: + optional: true + sass: + optional: true + stylus: + optional: true + sugarss: + optional: true + typescript: + optional: true + dependencies: + '@types/pug': 2.0.6 + '@types/sass': 1.43.1 + detect-indent: 6.1.0 + magic-string: 0.25.9 + sorcery: 0.10.0 + strip-indent: 3.0.0 + svelte: 3.49.0 + typescript: 4.7.4 + dev: true + + /svelte/3.49.0: + resolution: {integrity: sha512-+lmjic1pApJWDfPCpUUTc1m8azDqYCG1JN9YEngrx/hUyIcFJo6VZhj0A1Ai0wqoHcEIuQy+e9tk+4uDgdtsFA==} + engines: {node: '>= 8'} + dev: true + + /temp-dir/2.0.0: + resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==} + engines: {node: '>=8'} + dev: true + + /tempy/0.6.0: + resolution: {integrity: sha512-G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw==} + engines: {node: '>=10'} + dependencies: + is-stream: 2.0.1 + temp-dir: 2.0.0 + type-fest: 0.16.0 + unique-string: 2.0.0 + dev: true + + /terser/5.14.2: + resolution: {integrity: sha512-oL0rGeM/WFQCUd0y2QrWxYnq7tfSuKBiqTjRPWrRgB46WD/kiwHwF8T23z78H6Q6kGCuuHcPB+KULHRdxvVGQA==} + engines: {node: '>=10'} + hasBin: true + dependencies: + '@jridgewell/source-map': 0.3.2 + acorn: 8.8.0 + commander: 2.20.3 + source-map-support: 0.5.21 + dev: true + + /to-fast-properties/2.0.0: + resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} + engines: {node: '>=4'} + dev: true + + /to-regex-range/5.0.1: + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} + dependencies: + is-number: 7.0.0 + dev: true + + /tr46/1.0.1: + resolution: {integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==} + dependencies: + punycode: 2.1.1 + dev: true + + /ts-node/10.9.1_typescript@4.7.4: + resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} + hasBin: true + peerDependencies: + '@swc/core': '>=1.2.50' + '@swc/wasm': '>=1.2.50' + '@types/node': '*' + typescript: '>=2.7' + peerDependenciesMeta: + '@swc/core': + optional: true + '@swc/wasm': + optional: true + dependencies: + '@cspotcode/source-map-support': 0.8.1 + '@tsconfig/node10': 1.0.9 + '@tsconfig/node12': 1.0.11 + '@tsconfig/node14': 1.0.3 + '@tsconfig/node16': 1.0.3 + acorn: 8.8.0 + acorn-walk: 8.2.0 + arg: 4.1.3 + create-require: 1.1.1 + diff: 4.0.2 + make-error: 1.3.6 + typescript: 4.7.4 + v8-compile-cache-lib: 3.0.1 + yn: 3.1.1 + dev: true + + /tslib/2.4.0: + resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==} + dev: true + + /type-fest/0.16.0: + resolution: {integrity: sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==} + engines: {node: '>=10'} + dev: true + + /typescript/4.7.4: + resolution: {integrity: sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==} + engines: {node: '>=4.2.0'} + hasBin: true + dev: true + + /unbox-primitive/1.0.2: + resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} + dependencies: + call-bind: 1.0.2 + has-bigints: 1.0.2 + has-symbols: 1.0.3 + which-boxed-primitive: 1.0.2 + dev: true + + /unicode-canonical-property-names-ecmascript/2.0.0: + resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==} + engines: {node: '>=4'} + dev: true + + /unicode-match-property-ecmascript/2.0.0: + resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==} + engines: {node: '>=4'} + dependencies: + unicode-canonical-property-names-ecmascript: 2.0.0 + unicode-property-aliases-ecmascript: 2.0.0 + dev: true + + /unicode-match-property-value-ecmascript/2.0.0: + resolution: {integrity: sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==} + engines: {node: '>=4'} + dev: true + + /unicode-property-aliases-ecmascript/2.0.0: + resolution: {integrity: sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==} + engines: {node: '>=4'} + dev: true + + /unique-string/2.0.0: + resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==} + engines: {node: '>=8'} + dependencies: + crypto-random-string: 2.0.0 + dev: true + + /universalify/2.0.0: + resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==} + engines: {node: '>= 10.0.0'} + dev: true + + /upath/1.2.0: + resolution: {integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==} + engines: {node: '>=4'} + dev: true + + /update-browserslist-db/1.0.5_browserslist@4.21.3: + resolution: {integrity: sha512-dteFFpCyvuDdr9S/ff1ISkKt/9YZxKjI9WlRR99c180GaztJtRa/fn18FdxGVKVsnPY7/a/FDN68mcvUmP4U7Q==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + dependencies: + browserslist: 4.21.3 + escalade: 3.1.1 + picocolors: 1.0.0 + dev: true + + /uri-js/4.4.1: + resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + dependencies: + punycode: 2.1.1 + dev: true + + /v8-compile-cache-lib/3.0.1: + resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} + dev: true + + /vary/1.1.2: + resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} + engines: {node: '>= 0.8'} + dev: false + + /vite-plugin-pwa/0.12.3_vite@3.0.6: + resolution: {integrity: sha512-gmYdIVXpmBuNjzbJFPZFzxWYrX4lHqwMAlOtjmXBbxApiHjx9QPXKQPJjSpeTeosLKvVbNcKSAAhfxMda0QVNQ==} + peerDependencies: + vite: ^2.0.0 || ^3.0.0-0 + dependencies: + debug: 4.3.4 + fast-glob: 3.2.11 + pretty-bytes: 6.0.0 + rollup: 2.77.3 + vite: 3.0.6 + workbox-build: 6.5.4 + workbox-window: 6.5.4 + transitivePeerDependencies: + - '@types/babel__core' + - supports-color + dev: true + + /vite/3.0.6: + resolution: {integrity: sha512-pjfsWIzfUlQME/VAmU6SsjdHkTt6WAHysuqPkHDcjzNu6IGtxDSZ/VfRYOwHaCqX4M3Ivz0kxuSfAPM6gAIX+w==} + engines: {node: ^14.18.0 || >=16.0.0} + hasBin: true + peerDependencies: + less: '*' + sass: '*' + stylus: '*' + terser: ^5.4.0 + peerDependenciesMeta: + less: + optional: true + sass: + optional: true + stylus: + optional: true + terser: + optional: true + dependencies: + esbuild: 0.14.54 + postcss: 8.4.16 + resolve: 1.22.1 + rollup: 2.77.3 + optionalDependencies: + fsevents: 2.3.2 + dev: true + + /webidl-conversions/4.0.2: + resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==} + dev: true + + /whatwg-url/7.1.0: + resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==} + dependencies: + lodash.sortby: 4.7.0 + tr46: 1.0.1 + webidl-conversions: 4.0.2 + dev: true + + /which-boxed-primitive/1.0.2: + resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} + dependencies: + is-bigint: 1.0.4 + is-boolean-object: 1.1.2 + is-number-object: 1.0.7 + is-string: 1.0.7 + is-symbol: 1.0.4 + dev: true + + /workbox-background-sync/6.5.4: + resolution: {integrity: sha512-0r4INQZMyPky/lj4Ou98qxcThrETucOde+7mRGJl13MPJugQNKeZQOdIJe/1AchOP23cTqHcN/YVpD6r8E6I8g==} + dependencies: + idb: 7.0.2 + workbox-core: 6.5.4 + dev: true + + /workbox-broadcast-update/6.5.4: + resolution: {integrity: sha512-I/lBERoH1u3zyBosnpPEtcAVe5lwykx9Yg1k6f8/BGEPGaMMgZrwVrqL1uA9QZ1NGGFoyE6t9i7lBjOlDhFEEw==} + dependencies: + workbox-core: 6.5.4 + dev: true + + /workbox-build/6.5.4: + resolution: {integrity: sha512-kgRevLXEYvUW9WS4XoziYqZ8Q9j/2ziJYEtTrjdz5/L/cTUa2XfyMP2i7c3p34lgqJ03+mTiz13SdFef2POwbA==} + engines: {node: '>=10.0.0'} + dependencies: + '@apideck/better-ajv-errors': 0.3.6_ajv@8.11.0 + '@babel/core': 7.18.10 + '@babel/preset-env': 7.18.10_@babel+core@7.18.10 + '@babel/runtime': 7.18.9 + '@rollup/plugin-babel': 5.3.1_56fnebo2rl23pzm3cph57q7t7i + '@rollup/plugin-node-resolve': 11.2.1_rollup@2.77.3 + '@rollup/plugin-replace': 2.4.2_rollup@2.77.3 + '@surma/rollup-plugin-off-main-thread': 2.2.3 + ajv: 8.11.0 + common-tags: 1.8.2 + fast-json-stable-stringify: 2.1.0 + fs-extra: 9.1.0 + glob: 7.2.3 + lodash: 4.17.21 + pretty-bytes: 5.6.0 + rollup: 2.77.3 + rollup-plugin-terser: 7.0.2_rollup@2.77.3 + source-map: 0.8.0-beta.0 + stringify-object: 3.3.0 + strip-comments: 2.0.1 + tempy: 0.6.0 + upath: 1.2.0 + workbox-background-sync: 6.5.4 + workbox-broadcast-update: 6.5.4 + workbox-cacheable-response: 6.5.4 + workbox-core: 6.5.4 + workbox-expiration: 6.5.4 + workbox-google-analytics: 6.5.4 + workbox-navigation-preload: 6.5.4 + workbox-precaching: 6.5.4 + workbox-range-requests: 6.5.4 + workbox-recipes: 6.5.4 + workbox-routing: 6.5.4 + workbox-strategies: 6.5.4 + workbox-streams: 6.5.4 + workbox-sw: 6.5.4 + workbox-window: 6.5.4 + transitivePeerDependencies: + - '@types/babel__core' + - supports-color + dev: true + + /workbox-cacheable-response/6.5.4: + resolution: {integrity: sha512-DCR9uD0Fqj8oB2TSWQEm1hbFs/85hXXoayVwFKLVuIuxwJaihBsLsp4y7J9bvZbqtPJ1KlCkmYVGQKrBU4KAug==} + dependencies: + workbox-core: 6.5.4 + dev: true + + /workbox-core/6.5.4: + resolution: {integrity: sha512-OXYb+m9wZm8GrORlV2vBbE5EC1FKu71GGp0H4rjmxmF4/HLbMCoTFws87M3dFwgpmg0v00K++PImpNQ6J5NQ6Q==} + dev: true + + /workbox-expiration/6.5.4: + resolution: {integrity: sha512-jUP5qPOpH1nXtjGGh1fRBa1wJL2QlIb5mGpct3NzepjGG2uFFBn4iiEBiI9GUmfAFR2ApuRhDydjcRmYXddiEQ==} + dependencies: + idb: 7.0.2 + workbox-core: 6.5.4 + dev: true + + /workbox-google-analytics/6.5.4: + resolution: {integrity: sha512-8AU1WuaXsD49249Wq0B2zn4a/vvFfHkpcFfqAFHNHwln3jK9QUYmzdkKXGIZl9wyKNP+RRX30vcgcyWMcZ9VAg==} + dependencies: + workbox-background-sync: 6.5.4 + workbox-core: 6.5.4 + workbox-routing: 6.5.4 + workbox-strategies: 6.5.4 + dev: true + + /workbox-navigation-preload/6.5.4: + resolution: {integrity: sha512-IIwf80eO3cr8h6XSQJF+Hxj26rg2RPFVUmJLUlM0+A2GzB4HFbQyKkrgD5y2d84g2IbJzP4B4j5dPBRzamHrng==} + dependencies: + workbox-core: 6.5.4 + dev: true + + /workbox-precaching/6.5.4: + resolution: {integrity: sha512-hSMezMsW6btKnxHB4bFy2Qfwey/8SYdGWvVIKFaUm8vJ4E53JAY+U2JwLTRD8wbLWoP6OVUdFlXsTdKu9yoLTg==} + dependencies: + workbox-core: 6.5.4 + workbox-routing: 6.5.4 + workbox-strategies: 6.5.4 + dev: true + + /workbox-range-requests/6.5.4: + resolution: {integrity: sha512-Je2qR1NXCFC8xVJ/Lux6saH6IrQGhMpDrPXWZWWS8n/RD+WZfKa6dSZwU+/QksfEadJEr/NfY+aP/CXFFK5JFg==} + dependencies: + workbox-core: 6.5.4 + dev: true + + /workbox-recipes/6.5.4: + resolution: {integrity: sha512-QZNO8Ez708NNwzLNEXTG4QYSKQ1ochzEtRLGaq+mr2PyoEIC1xFW7MrWxrONUxBFOByksds9Z4//lKAX8tHyUA==} + dependencies: + workbox-cacheable-response: 6.5.4 + workbox-core: 6.5.4 + workbox-expiration: 6.5.4 + workbox-precaching: 6.5.4 + workbox-routing: 6.5.4 + workbox-strategies: 6.5.4 + dev: true + + /workbox-routing/6.5.4: + resolution: {integrity: sha512-apQswLsbrrOsBUWtr9Lf80F+P1sHnQdYodRo32SjiByYi36IDyL2r7BH1lJtFX8fwNHDa1QOVY74WKLLS6o5Pg==} + dependencies: + workbox-core: 6.5.4 + dev: true + + /workbox-strategies/6.5.4: + resolution: {integrity: sha512-DEtsxhx0LIYWkJBTQolRxG4EI0setTJkqR4m7r4YpBdxtWJH1Mbg01Cj8ZjNOO8etqfA3IZaOPHUxCs8cBsKLw==} + dependencies: + workbox-core: 6.5.4 + dev: true + + /workbox-streams/6.5.4: + resolution: {integrity: sha512-FXKVh87d2RFXkliAIheBojBELIPnWbQdyDvsH3t74Cwhg0fDheL1T8BqSM86hZvC0ZESLsznSYWw+Va+KVbUzg==} + dependencies: + workbox-core: 6.5.4 + workbox-routing: 6.5.4 + dev: true + + /workbox-sw/6.5.4: + resolution: {integrity: sha512-vo2RQo7DILVRoH5LjGqw3nphavEjK4Qk+FenXeUsknKn14eCNedHOXWbmnvP4ipKhlE35pvJ4yl4YYf6YsJArA==} + dev: true + + /workbox-window/6.5.4: + resolution: {integrity: sha512-HnLZJDwYBE+hpG25AQBO8RUWBJRaCsI9ksQJEp3aCOFCaG5kqaToAYXFRAHxzRluM2cQbGzdQF5rjKPWPA1fug==} + dependencies: + '@types/trusted-types': 2.0.2 + workbox-core: 6.5.4 + dev: true + + /wrappy/1.0.2: + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + dev: true + + /ws/8.2.3: + resolution: {integrity: sha512-wBuoj1BDpC6ZQ1B7DWQBYVLphPWkm8i9Y0/3YdHjHKHiohOJ1ws+3OccDWtH+PoC9DZD5WOTrJvNbWvjS6JWaA==} + engines: {node: '>=10.0.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: ^5.0.2 + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + dev: false + + /xmlhttprequest-ssl/2.0.0: + resolution: {integrity: sha512-QKxVRxiRACQcVuQEYFsI1hhkrMlrXHPegbbd1yn9UHOmRxY+si12nQYzri3vbzt8VdTTRviqcKxcyllFas5z2A==} + engines: {node: '>=0.4.0'} + dev: false + + /yn/3.1.1: + resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} + engines: {node: '>=6'} + dev: true diff --git a/public/apple-touch-icon.png b/public/apple-touch-icon.png new file mode 100644 index 0000000000000000000000000000000000000000..c995475afd7622db2b578efa9bdb03f477895203 GIT binary patch literal 13342 zcmZ8|18`(t^k&S7ZB1-vV%xTzOl;fEOl*5%+qP|cl8KXjzyH>5)oyilclGOc`rdcX zyXSo0cTPtt%1a=?;lhD{fFMXoiYf!|jsHDipnzAtDJT{Y5Kspz5fMcz6B7^+szles zE|~#A?BU$zC@~%GQ{w%Ee9Ul6X-LOKZWn50YsgB5F?Ora?+B^r)HOlTB7H(GcQ&^I zvuX}%$Pi-4j`v8nHi@V^HgNRw+m4?8ylp2(*FSo5m(q=pzJm_9cK>E9{4I8=a%v7X6#S9K#M-0Zjs-Yk2(xg%h^?c${SkRy(;i zQ3A?JQc-b$!i7sxk)66>yW4c4C4|Nk+n0W^Z%j!%w9`@9W>KxUBC%$EQ3nkXPVPz$plbD-#IFxgiJ$cNz!?mP1y%5-;!tl(CG2D9G1; zkG!tZWZ(#_gQS)-2ndqVe^1adfl@2rAhe5=oEY>m3#wR<>ruE}jl%#Q)=RuGnm49lJr|Z|^7Qd_i|;amj+DkDpj&Qzji9)&klxR7OlW zb?Fal+OH7_%BZ5moIj=4V*{)N*B@Cp&`nK56G+t%A!=nlTA$CI^KW32&B@8Yr@_EB zcZnQ%Y^cWZPD4KOFXIzG)BI^FvCqDb7m6XxAI1je-|_DLo|&4Ygur90JesU&dFI0O ztMaiO8~HKJg|z+@iuE1@Z8!5gg%>Y;$;eu~pAxl;={;_VG&7sL57W=`~a(-OBAFjcR$5@_Cw(A&0EoNzvWG|f$W<1`yL zB^sLfIG-U}x_KX#Hu8C@#(H|{@!DdZE02g}xCMz!WBGSs1_Zwnqc*d4Z)y{TT33&h zq|Fx>Gg6O#kOUlSZ-9U>YD$R;sd}tmWqbPIFa5shQR^z}XlhiqY52~Vbfo7oGK{?u zpd}mtB7!PO5%@hBcFZ(=G9lg5ew%kYQ$ar|U5X_gc8!E20Xd~Md;^YW!7ivCGm6-fh zGR}_yO)|Qh;^!oM9W<9P$i_cS)v_K*mSqC7guK1^_OLC^%~LsGHKQ1qWPL=nqI|2i3h za*;x|qtTt9l`rW9S!ZDuK~D<)M2Zp(=$DO=Uc>T5M@Ou}ni7j~6Qm*i0&gh%QUKNU zF;t=?W2U_k)4uiE{pNtmh4SG~Ig8=D1u1LlsF0Ru&<~~)AZ!S#-07USPcNcva3Pv; z!bO(AAP?_=OMOpMG#XD*?Pc0(pG8Hg@T`PLW=cB`HUm)uStB0BiIm2Ha{S8>CJ)0B ztRhga_f3#~J}4Zzhifi0+o7-{gq#5?1#BYlA|O=qsn7af8YPZVQKr+kRk%xVL}K4N zq(n9w7hK=az zA=_9firD(!Q~%r*o<2PlxZUzMcsE|Q3SaIs7y$dU>n zp*Z0>Al+i*1yK`u))#<=2Yx~2h=_{?++qD|{dh3ajd|(i3{W6G7*Ub+dkrWJyaE3m z+{2{b&mlZ3zw5S}n?TZ9e!KBIR50wd8=+H{&E2#g#w)^X8loGKH)PU0bAP-T{F(VS zcXW`-@G_LIMBryc+C+fA(CehsflFdZnkGa7|0CJxA(f%67@xU-RYaNw*pA4tt}OGA zVl$XO(q*i#ag`_^g@9Q^+6pNaDDAfnUKLrbFq`G>;_`6Juzh@?qIXkTbBKHR0hEd#xJ`8*~`HQf2MpzzmFI z=pHp;y~tT2_^s%jxzO`_I0bts1^w*MH2p`+x$!RuHi(cS;|`u;4ondya0joTyCgVlonal9uaVQ+(&oIl zYfi*lhH-lv4z_08n zLeLik7UWUomBFdI{%R3|WRt7?m`bkN)Eu9;vB==N5^LGRYx}i;lbL zbMGKqL4^C9Ga|?4vJqFdBoK10Tlky$6aP5nmE9|1`QsZ0D=PA0mS2ZCVYoM5VWIk0 zlS`%_^@D7Sn&ZHJGjE+WEf%)bTa5;I^oO4`Mu_{$QEu#TjcwCgl$G0(pe}=)Nox+z z!o`Px;4|Q1UZ@UNA!3rT|C56%&N(+?3+jeW2g|6{a!!m8|7k{h)9sSwt7BvNV~4)F zPK^CXGXZ(mWsRD8g5yDsEl?=|cLSCebB6OA^?}&kgo8ytt@dS-{*kZqZQqgO>yD}# zfe%KGfo^!7G7c*r_LwnqxwcPjV9Tu&x}g!GatABL~F0 zMfLA`GISaLwlEjA5c9YIAr#4BlL|Ujdh!&XL8liDB7p!#Z}4cg@?;o|*nDz$9>^WR_W&Vz~;77sPzXB03h{vqRoVDTpreHcLeguvJ!sqbYEI=yJ?AB#%u>k+`>Kz9)UV zkJ>zxSD@q(z$l%FTe9mjj)dDPD9}cAtL9C#5>cP?A`-XChmKr}qXSE3GOpoX?IrT- z3=Za*MuoLWr8mzXYpcNgjouQx2Je*4Oc`D|@2pFhT=$RFx5l93-+ab3b9fa0h4PjrolQQ2U&9JN~J2N*i z23n3u^Sg6Y^OTc>!&-6&myf7Y3Gxp6JmJEjHnV=w=UnPk)D>&`GNsmiLomz_4U}gzL|0ZNcosF!~FZHa*(`84V|3p_xLNm zkz@gn+~$(!A^Z+{j8yZ6vu(JVE?0*11yr|W=cq)bz>b7B625`1U6CNdLjlIVLx`fk zOIPp5J3EDSHMDk|B9=kGQoFWHoir=Zo4sC6mQxKK8Zs+q>V*9*WHigS7gL|+46SMA z_j@wf_~F|~?Z*r+L4>B+(TPo&a?Dns{t;My zO{rU%l_$eV`!7G1+XhUB9h2$59GLziTg2PI?3=P<`2#vd}I(Y8( z(u39t1)U)0%?AGQ^v*@X^TMLtHamh&6GJyQd6X-DI^jE+hjn;_L>%~F=V z@%m|>dzT3;2+5hzTEuZKxYXeFaEfwali;V2F0-NVEl~Z5D;Q@@#;oL4^yX&YlA61u zlRiFF)XfmcYf7+HmKcAw47SaVjOMKK4 ztgE^P7U1cyb$LX)%HnfFvL?0aMz)7Mv4SQKXvISv9TR zlnoZfrdt#WD-u+8OI(B)jx;c84aHD~%+`|mQj5{c^>UH-!Qitas~&B!T`4!XT#KYu z_=FZ9LRncf{olZ<(8_4KOD87E2jn{6?qTH#t&0kaQ}YCP6;%{)s`R_Qsamz(zJ&y& z{M}+(a;o2kRTARqnXt9)Kr zMgMqg@nn`oS+s!lE3e8+2}quH?B;+yxA?+N0%HzDALqV z&9@{@Oyq8j!-2&!@t(eWy+Lv`)gbWA31}P^(G7Q$NVF$RDD?wifMZR2Ha%mm;oLZ> zU8e=JS@d5@5hQHddfe;GfC$*tAeS11jziZ{AX*e@X_$&AVW``tO;xo;{>;Xkal1Qa z4PSeISK`gCKYq}}>~6z1E+)*FabHm0nF{>bRMln1z`5BKk@VvSEbH`~EJC>+JTf7j zr3h9C^mgUY3en=DcKF2b66Y^+TWW23Qm$J+gqe32%2Gs5lt`Eb>+@Jq+1BjpkIwr+ zKg64=gZ7Q%x;vBT(edoskp*cS(o@wUB4e2DPhv_Wc2q@x_}0WNY<41omf89mgV->u=~%9$^Z=#tmAI{Qv4(AzzYU94Bg2;WH zjs#qOWHc90rxvqK*l^NC^``v`q_|5ocp+d{nNw)v1 zM^q$a922v0hE7^h|F`82YYVjbVeVeKNIHFmd_F+EIzC()ALh2^7&~0Wl=xv3owLF&WcOw)m93|jGLHj^cfH} z_J0*#SzaHt04Z$CKjnku0HXn!FK|36K7B;F3r8%*Tv>EQy?k4zj?bf z{d0b^NJ-90nVp)(mqaiT>n=rL4b=Pjk;SuAbD?hDR6ePvY`HAcj-WuLy7?Wq-~@EnoF{3VFjDA%18#eZmMLA)s&xPc$WB2fYXeQR01#XC_ad|&pe|BH6Ls>7XN zE;fAo%`pxbI;=s@Qux~;j&2ly@)nXU-?xz&`I`Y+wcI+yYi~t@^f@3tPJ1s`z5DC1 zvChea+W8NS;Y|u_=kv2Z5YtAm@|6y84Nr7RfqRViwi*Gr?}xWorD+nXNFjfYZd6xR zD;#sh1R(FqHYcZp=+yD-@DEM5$Rl3CaO^*y(9<9O`C5sc?5ZF(8c!@XYj6Fm5qsZy zvbPu@fOlxOb)141!!541=V`Fm0vVe~=!ZSRFs=E2l5Z2OYr9XrRI_y}aK; zf>6ZuQG~7A(cHsGGE)cUU1~C?W{Ak~<4(Q0kO3T-+|g4Tbzg}}>E=g`E>?2H|Iow9 z?62ixqK@A7avz?1S#;#nvZfN5m~U*TG~8{MYpYc?a0ILmSMt5ix=z$#j2s&pN3AEkk>{_01^xD?JX2Q=LmPeG|~Rs z=x;lf%-(PyR$*GFicAIGYPOLay=>8B9n(rWYe5y~R6d2U^9@Nat0(Fd#hhoZ_gdIh3R|5La=p3c81DXz15jD`|brL87OUi-Rp` z=2yT0A-gw>2h(t_Elx=-w4|MZL%=;GV5bq%xIRiK@Wo~$sh76=Q#g|YlxrGffcVVQy1#l-#j z3|At`_1gZyw&-&HmjDvbA*B1h4fH>UsVFA(5g=9dW*;qLy(k`n#&PEIo2p~aa0$W7 zASJ2qYjIp9ttzwW`org0Sih69&bXIBm>_`X@;W_7O{HVei zaK$}wvUF_4rz+7rO?kC@^?D~0=VT)pWt1;8h`@p0ae7~ z?O{m|MvL0|<zQME>htLL^2D<4jV(<%wnBeIltMxUjK1pFn3amJO4Z@F#n!A zol*d)OHDY$or=>&3A=}<^4+MS-I5PVA&5xLIMvy1$v)VDwVX zT+Q(!3&Uid6sG*~vsL-BeGt$z9@2>|HLOutPvjR;B~Z6`JZF$(B5gz-_G00 zuJ*SfSxlDt9l5`4*LQ>|j+nT_OIN+tL_aWr@C0groV((Y_=|qr zLO!&+79CEsA7$I;nCZ{wKMM zi__^F`1B-|i)k0fM}%TPQrU{+^0SWs5;*4{-ny?S?e8fJlLOgj^Gy+PkDNpn!Ze0y z4H-$-5zXv`dj!=~9^SzZ-ji#wI<6u(@F^Dp(|@Syv0qu^uMgb?*5x%ajd)B-l5&nn zd%o+f7#Wk~eab=$5&Ujo0Pm4*jP61yGUKXStLD~4JiWL(IAgImAf*(D1%R`(bOsrs z67BPAaOXp&@B6y}r;5&!_4sP6Xj9p*UuQP!f}Aqj?eFw96r*@69r{eH6w9P#HgB&AE9w6-FNyH z&)+ayyxdsE%E@w%)zQyH@X{9VNs_WSu0P*tFso_eIu7Xsx5_#EKL2FCtdZF}``maI z{tZGPbN6bmX*3iARVa0LYQyK~2)%q~+iKe3*7lO4*G5V%J-u4aV<{I%e=EW0w@ zxKNuk;K*)jnKYZ;_i=)w(65saQ>$H9<@4g$-xZJF3!0vmAs@QR>)7HcU?g}5=Q3Ex zLGFUXP&0arHCrW6_j@Y*nZ-|I(;9nBXHPe|w6;Fdyi&RPc8w#AbzEmWV7t7{!l|@T zqW91~=q&7?1$m_u=(y93BdZ;j+>evqP70k^JG@3SAkPyMQ9wi2V~1(*@sGZ0lMAm> zEtV0C<>7=HE~)?-*sRSb_&pze-tV_Me;fgiH$KYz9-{!e6vVRE+I=5LaGoWN5#b7a?bfrHym!zGgnZ-O01nF zic-P8p{eGhnYB8EtmUafpB!Cu&qNJMc_m!W_~tuvMhcL#w{9;4120oFGx)zs1-|bL z&|-<#qh}^lww^DoYbuLk-|_oy;Ll_pHPCVP@dVn98N&0W&>&e^B&TMRi;HKsHz(53 z!Zdd0#F7Sv*L9BX-FLpITDDuz-BV=T6K`cu5XH-QX9X2TT8C{%LL4*~G@kHY!j>B9 zIHY|9Ti_myYBv%Ml1NNa$vjZ&L{gf5S35Qlux13|-~jl_tNY&H-u%V20YKBrtA+Rt zRlJ8Ite}W{P(CEQdiuWJ@KKl9tnv?FzQ-`_TzX&9`Y;vo?D0>C3uY$nnr*McET8{& z><<2ZwI$sI&<&jBpHY|svo>D8lqezkB zEk2;2Vlm4ypAYoobWd`^!D+%*#^X7>#rbPxg~eNlp+Zc|lC-8nR$qx*YhltJfe#fR zQ0>cz!Z7uJl^tVtD6|-7|A-4PvAICk8VJr+?CTH@LTS=))Q&J%L^*Rl$emf)3l?nZ21YXIJl63Cow`vSe zZLT4W3V0>t=)xkC?;Qp9Ss1vwIdV%9V)u5PC(kLRSy&gH#O1ZwSpq>PZB*w}bVc7z ztrfeC7uG9PqMs$ka*=Z)T|Vfe)RG6wZz&E_Q%70+^Mlv!6>DGm^uB!jjS;=ZYGd@$ zC&%#`wV#E5DMP+CeQGkNIefcd>D5E~({bA2-Qt4e3v_nCn0Of|K2E{5{jOp11rL*q zh{Tj`U0zpP9=}D`Ff6+YlPWn{v}<98O$Ha)?t>f3a2oZ`kG?W2_C1a?}643rLh?emFXU$j?Dzu81K__U@R*tA z1jPF$Wse!C7hOXnny3I}W&HEW8kL*Ew|G`{WoS$!_H}=zLRd(OLaVJDFeCyDgKEIP zAw5)7^xr==NJ%Xy*<))xI!{dej+|9_jXGIOq{ujL7kB%D;L74Srl-YM8?Tn{lte&+ zdBtZT{K<8M@q#`*zjC3Vgg%{Z$J$QwjxKU~gK&DCONtESF|EdWOWyFs@WtDJJa15u ziZcWtj_sabOt>(HfORwdSFLIuj;xzw!71M~m^mYpJFVpZuilgNo3kby>pap9aTtOC zRF>I0s-V{NO7=c#!F7mLO-()2|E6htV%jc~)K55&2`HCIe zR#Irs+tubNu$;SOOca{RBhqsII)@*jMurRX{F^=?-prjwI$r1dh`;HlzS6I|00B6F z>JJt63<+$J8zXWfh`ga;c1NG)PnwlYU3qo8ifcrfsgrik4|izTbj7nT>7g5h`)ipI zEBosuJ=aEK*T`%3c`8`&-=eX1yB=D66t=a4RC;NY?x2r3$0$Jr_Bo~i(VoJ+#~8Wu zeZ2H7)lN+VByQ6VO;?fhnr`+~A=cn!|6qR=O2Z6pTQ_*T8{M+X4DwNTe}&Ze6aTum zs4_AO4n6{XeeZig-O$q$Rdhu^wNDSE>I|WByz{(MVJr&zZzjJq4ja4{@VEYGsD%RM z)ts*(yG}GZM=Mei2wUGr2no0B1>Z@&F(Z?YtG}*hs`?a5l2-*(JkYuk2h9y5jF25x`g^Gm}A4rm51uUpc~;NY_k^ zzj{P?zL^Cg+vPu#!5RD5GBZ-bN-LveihCf_vo`YfM=fp)_L7>vcZKNiH|0MSgN1UN zQUw^Hij6)%1>r0p@}hO*Ha>HyO#KeDqHafTWGmblajM3tJUcon=NqYMPCe%pFt(NJQ&F!^GIA z{BoCPK^YvNGWdPi>u@z5RIRC`p{o*F?jG%2j%*Muo^Zpr{p~p0j=JOB;!CqGkdk5! zgX0Ff>@V_oFjTjrJ1X&}eQ?ca-@ zv_PbB*79+!LlOA~&Vw`mU=0*ZHshX{sg(AM4>DS56 z=5B2%E>oYG+erDIkr`HjwXysw3)hp?K{rVImqWD!&q-@0U&(5Hrr|x(?IuZsb(c*o zhR^+I4OZWh&oXF9nXTp1y}Fz32_pZtkzW)!XutCWCT$c54zsc1&ThDg4`GY&uJs2e zJr`nd&zW~GXB7}BPZrY5H7M{{ z_1U4cQLR@hGFr9uqf`cr`GC;lT<}|fw>=oBg2O-#IBJ>$<=>YF&YGjbTrImI*KNd2 z3AS?oTMx$C+4}xY;@5tFHMo?*$1+MG(z^SY|Jd#Z`SbA)WUm%eqYl7wx8A{*8(v|_ z;dolUCODP$Spz}8#klm2n>(4JuMrt_41V)OG&aA6hs%IQ!b3&YU5nI9;)qW5_b0!=p?8f$>uHHp&YWKPmVo zLd|?w2T+4@5E&)hau2R7;vIba`GgFpuK)T8!elJeN=9Rm>+Agh5?T?AfWNIZ0#uFImR(WdM8$oVy#Ldz0F-hv_~~U`seN{J zzjuKIbdq(DZ_U~y=lq@=A<`b0$}Pj5sn^Fkpt^-MMcpcc_zBq!?K5ziI07_c^s zh;}?OT=+OV8bVB#smh61GN9oT;$G@3*K}BCS`5ky*#J8RU;%)|_NS9(#>x??pG|qx zGr5@<#EgjlJS&S3JhO`45Y}<(_!|UlGY|ojYUF&H-#*OmDvtjrjx=@BVP*3V`9Xp| z4Pv~k-4#K60U~`t`5Cy6%|5Q+Co8(1e0Oz3Rajl%we<%;l?8k(IGRpg0_r?a!iNJTZ|iY0De*BMhmP^QIVA61_4J> z!5t8Y03aHBDBI7dqbu{eV*8 zcb1f8ZA$Q!pAHgHmKxGxk?Sv~3BS_D;+Z|lgg;qt4Cr@1if<5wK5nQ+lKp}1Xv>M%d^aZvZJurxp7 zJ9gSLfsZ&bdJHnGO^66er!OeC_N%4M1HdO`+`R?12tFP>!Jc1(o?n4%77X!j)HZPf zkM=EOE+j(#QVEW?c@AvV789Q#-C|$1F8SOoDdU z!RM!f-0JP}h)#INcI54WDOrFCfL(LGNy|cnP|QN{g_Mk)L}z`dsfqE^SwCo{Un-?h z2L53wdp7O_TKPc70}K)Zpg~L06m229d-IZ}3sD}*jM<}{0*kp2-uY@rE@@eYLd=kq zMN0QXUZbKX+Wisg7FR$7NQ98UWfN=hA-h9(e0T@rWwVM7KzY3Y9EdTVT2jvP*b3KC*Zi4P?%#EelH{eUkl^a&15{pTe2{c?f(TOCQ5H8~H``md%GpNN0Z9868;4S;ZRmzSwR} zO2mTm=BTIZFHJMFKrh8k&YEGP-)D*$Y6h=NC|0(I zz+^fyp`^jBx0*5E6*J_VixOv^ly+uk4{=MR5L7orbl`Kqx=+&xTQkW93ydKm62k2F zhvph$;-jCMT$9I6{6=O6iG!g9wi)%%f<+2nr(lH7Cu!3O{)|@NC^$2VMLymaJcvC+ z%rMtpjjahsCqYP|84+Wl@a!xBD~^pLz#lf*whE0;yuM&c6-jy+c$dZ(kcch5t6l`p z0f5NjcA$I8+cq={wsT1XVkOkO6 zqR#b^WT1jXJ9W+J1%(Z?ya0 zp>TR)zj-2(&|6Pd4D(-0z%^68;=i@RQ}1>I-RkXjVUhg0QDdb0eeeEiI>@_e5UIPs zA126M#57$@jaE zsg=3s|8Ky|&BFG-4c<-h6#)aP|2u+<)lV~L7o(pJ|Gy0^xD5g<2>y?SshP8hla+&umAxH^ hv$BLRv9YU_tqZ-C-9hNs5O5-hl$g9|jj&QZ0N=mBPnwx__ zbjhB{or?Wpgo6bwG1B@12NYXLpYbE{6%br!1w80A>=3G1M!0RmA?TTS^mQSzlD*;{ z7xw3(lTa5Z7Q8f;>m}y7eKO9vJqq*mnyXKsQ2YMwDSuDFT(&7D1g77^TO>6@JJx=B zQZNK*CXSMZ^Y{DV-KGP<0J2Tozm$}|f7ch>0y|-;;>x0T4leIw^CDO7jdIK( zzfWyQmVIL@r>53V>%k|d#!cV6)@3o)8phy5=+8XcJEATV-r=fYKMO6bO0JupRVQeF zotT-o(lEMJBPRUlxjI2_Vnc4jV{m&r>zQjUwt>*bBlyCw%XO>lTU;!i7(9&O;xjXq z2Df2HKp5C!!O~g+V(u=3Atw-PLyB92>pwEmK6&K}ghly%E%l*i6C11eIXPYw>}7+8 z^p*z!SON-jISpkH$d?ub3JL>(9)L|j2Oy9q8wm8r1OyVu0)Yrz^1i7H0Ux|EQ?}_OwjjI6>A8bIn5O@pFcqTZw!lV24|!#2#62W*bU`ZCrKcKTh3kB^bUido zKTx>1Ia}E}SW;^+7~coNp?-SN8C zJ3jn?nvV`6L;Qn$n9H}}1WzG|P7`-ONfITFSvgC$GGaCe0tN#|R4M1w9#^(SOah~< ziq0h0F=w={agsgr6S~3E zL@?=xJ@wS;9dPw0BKF6ejo!E;ZDf&JbrZ|cXy#W5TV>26QE5K#THK#Cbt+$#@k#H~ zQsct}iZmGAx56u(eLWM@iO$AKvys9%6Z?ieS;=cN_*$oWNeoXVco5462i}^6LfUv~lJVqEI+^uS zsL#?Dqqq5fIb?9=lo37Ww-7ll*V}SF&^YD|RyJ>^4|tgkWe8a)&VQlNE4nGR zS=?SbON1N7l9nfc1fy!)31cF~!1lVcuHEL{cI>~!S)iz@GCHBL>VdI<_3FX*`2}(d zGN2H=%vs!z8@6{0;@(?=C8Wai8MpG5?^pIQ~BdqjbZIE6FfzV`L)^UAm z5nZH>aNDM(6;n!XWm7%McEI*n=X73$Xmp4%!LWsFd&!YlcgI8PDFw- z8LSqzjr4<$^nQ(hnN^84T<$*ENamn8ch;we)`Z)vg;g?3z!oQxpplph)-SjgX_wG5 z_0ylxr0HT3>ANwk=EwLRW~9#(6pp_Rq>(mV?cj}IjihU^P8wMiENSE_lMSs}T0x4~ zoX-L#V6&MV+P{SGYw%uF+7YeTelf9fG~sgD$#GZ#$do%rL65=QVo-*7-k)IgU|JK* zb36&kH_@)EWidDhA~EV#&qO`SJ&{WVMNa?V}AJ_Z@XPEe^- zvnDx6Pin%{^t|72M@m$YX&OqA(OE&7m{JWgjM6QytOOO0Kg{(=_8?-r^4ZoI{(?({ z6P0e$WKBY|l)Ez~qmn>;bz;>}OM|bPCfmA&ENzxYwY?<1$sp8G~r7bF_13G5_nxXpNAt4*R%s z5-i$@R&26-F554c_~*=F@^}#gbiHBS+eoYva6R2gYX@aSB>Tb6Ak`!a)~T>A{kZer z!KyH?QNuL~sa7@DpjQ+j1&F&NRk}&vnr+y5Ao3jp)dwEsoC^-nNAf#L+!}b?OO|4! z*L7-~(V3ELI)k1MStc}ut+G~OKVRtw#sig6x+h2m_&0uV9uENz;p3rg9L(04#C3u` z3m!G2^r5`c-5s!DYO8IH1(n4Z!V}tgWtD&v4dH@w;`z--_&dz9wx8tJkw|a)?mkjJ z2;_Y!ASo$sFSyANfA|)0(e?!YkrMU=3&t3!TU2V2yzdMZ8-tz@4JScJaLzr(`*ujX z!9kL{sm4$3)S?LSPPE543v@P_73dyT@TxsPYdPxUCqWq=Ohy2=>a?8m!0%oXx~D1Z z@fBn1FFZ0rKLMG7E&?*-LV9IoICF7A4yvV9*uWL58u%@TBh)lH!3!it**c6;uJ;!`&~!s`#UK3V?O9pZ7Au=()j1qpB`V(Cf82} zkB})8DMqFRd3AFL&w?THT%QiMPTnfpB19FWBP~7Ru$$suaF8LeQJVRkPCcr`fxCI- z^fg7xj|3OHPnfI|JT}}=NXX=oDyFj9yoKd)NcMrV1ZHu3-Xl#eZv{0^Di0Ta=<<#0 z>IHV$gmM&(&9uLr(T5=O$KT#pbDX5ht4bffa^vDsQkUhICM*xtnT zSYt)svC8anl4;u1eCQy)6QtGCDz_h&ea^>UyBl*=A#*6NwQ!?R3KEm>RGT6j10-RuOU%twL!MU-y8A zBIrkCSLuakjlb!1p0U{T9Z)z|?jfJJ@6pu``WmHFm!@ikd?!h|Hq)0;{-<(%HEx1L zB4+W1UOinBTB)x!IQ@6dH_@Vr8V(bdmHH31txPKH!1&8j6zN*p%`Ib$!qJilk7z)W zaD84`{Yf`kXKjZQ=k=gq65~b65Noz|x zEbc|&h}8fJV`lY=B6XOOR=f5ud_+Z>GI?8hHf|A;A@r`MZ>E0ZT-^ZkJ^VFAGf6z6 zKSX#YMEKup9P><^@Qj3ZLVDAvkllV}QnusVV}>#}2NuTz!(^EyxUC2_&c$y{I)=R>JvZK#!1_`*A!+V4xT4+1M{n|>a$HQyL9x9ED)~&-BIFuHKqe{| z*s3^whYNX(DJo*N^VG_z%+6UM)Zqt(0R2($%Zrv!?g zQ&EqyB}CvOBw_K^f`_cTx{Qkz!-a*jei<0vgR5~)7j zl+v>#yFt6UTN730(2Y-8DsaCyvJ2ut7#7E?Qm%ae>FxfT`=6LC%}1r0g={RCsh^#8ZLO}AAHS4>{~-TMBkWitu++b&qQEWgTp#O3 zYc!3{nSZsPwflQ~>jy3vbAkXU6qw<0L+#!w5_`R_&jKfj1@HN=njSfH_}+FcbG714 zypd9V0eDE@FDDFi?i! zp%iF7_@&kz`7W?27fvu|Q0N4RVbjXcudVa0zu^?=s>hZ6oXU8hNJR5>Aoe{~qP~b} zLy3@Jtchn|(eFG3r0)0`5Je^<&QL$m#uS9=vhvW0I&_Fsp#jmPNDh%lDcA&~i1Jfi zMa*c+zDmP=v?Tn~X4|_!Y4t|yoF(sDgVXx~28Htd1AlqjlraVq9%=y{nf5%`EbLl2 z_iM6eAbUN%lz(@{@ZP?;0!~d{n&<504#nx?8LWdX`O8;1j4dS-#A1thLza>yaTNH@ zzg}op#}l_xQ$lRCoAot}JDSGb$$}zZxR{?7cv>l_vROB&5TY7i_bHpYJg7;vy`Lv! z`M=e3pALYf)hlzL!|z^R3~PLKl)s&-2GX{N2W*3vd9SFpWVfD46*a$8$hZVvQu1`mv@)m!>P0cr{5=&ta4C!rH~!_+;cIP z`*9cCpnMmN{VviJ*QXI_)UU!3U}aZ@%u4(w))xeb`^BP!m7uw(kXHHf`mrAg1gb#B;(k0)riCLp%O5J@=Da3!>qA25 z_xOrFwI(FyHwNl_tMc&O5bgS#tDy8YI#8kbO0X~(hnvEtn8MccZF`f=sRh?nOtZH? z%W#HWtuzYM?mtC7zz~G|nerQ6hd`U=;!DnLXO+UwCmbg~lZ%p9H7NAQ zHp=AM>_l?wd;WmJ_|q#%ASt`t_#xd%p5a}6tEk8flj7QEy@Y~|XXW(pb64Z27ZRu! zWQ<&Cn+Y--fvfVsX zjTRK?NGrM=$sNGCjp8Cq<$v;`|6X|-OQQ%qvR4>TwylHNfnDt=d> zAkD>!Zkjz>Fp6YupK-8pT|&N5C`{q7 zZ$0->A}kapnm;b{wRFcTMW!z)jsi(1r}U_rE<2<6_C%h`9lPl?Bo=H!td@2>1zg_I zaE{kreBAfX(%hDe_RiVdhdJX2aHhlw9!>Wnp`<>|>1!(Gbkl;tr3PHsSFI6|A3N@s zi7?I_H`B{8o6WYB=GO#bFGq#qG&!w{kkof-5m~f@+7Hz3dxej!&#JA}xU{|0pcRH{ zeKGNzslv0aQ*PfPbqYlK5(reL7fx_!6A~QZKKMDA67#S&o-C`GfQy^N>R9~B+F6pvd;(A^57mh1g*TB#Cxy8IMN28v`Z5)=@;PGj_Q;aTP9hP`KP{R&F|U0ez!hLM6JFm zv@kiAig~tIyFlEw`yyS_Ug^Xz%gGJw%v*NjBuZFJ0y^8 zhpiKsosC)BI38@*B{G>me{vu8P+Fd&AfUWLSC?myMMSXSUzH5ZRGe`r3IkW|;i>Co zev3Z{eZgXVy6KJS8M!Cq+r`^Dr2^h zW>VqzY_%q$&!8WW_6L2wl1Yy$#MZI;N^m90xSmEv6QVJUaTEc$=rAx>gD2PV`gc$$ z_!FaLGynv%F&K$3P+QPAflR}sINXGW1OIFa`$7T4K@e-$*kM2S4mBPc^@zs6Z!UHe z%CVyA-J?JOne7V}vZq{6rgb*WD;TSo4GJ7Q0%#CyN)6~)nC1Pi>q2Q2Ehx>5silme zslxJfuUJ;*t9O>@lLw|#x${R_)e;2%0N45Os@WglB|JRqWB{nB1iYbb7N-jqf1~xZ zhIML6erhV}R9?_kXZme9;=qoisM#~ArP;slFL44B`F2Nm3gmMYgYvuYK0CkbInMQX zc{{AvEdF?8Bjfc6qNqhJzI_+}!a}gGa%+c!4-H=FLn|xYaI0ou5H#ZJ)xbd-T&*?0$m@MVxz&WMFIVp62T8 znbW40zaU(v(^EbLL!7-tG9(%Z>+bsr-h(sOt9&5q=cj8(53ojN6C$*oCt6JV2Sj~_ zNo<)h*1A+|qO1Rn~=grKFUhRBpE&}LHK{a$eO7Zz{C;wdppL(@_2avOoAesj@fO4y%+bYjrv*tV14 zA2sdmESoU4__@(Vmkw*5syy~ib=!BrJZo!H122x&hkU$zd$;Kpn>4#c+_R-iP>lUMl)%@B5Yy#cM6T{N2X2k;g^>2veFiklm{D-~AHl8sTA(=Ca5Omh zbKeHO2-xkvdtG)QvdXBfx7z$eS_}`*!VS=I^TDNQ#z-+GeX)suWn{MXyI_?(5F;1MUyy*f|Ga%6uUccRk z8g%17p2sevrl&SpBk+qwU}F>KXss9dEvh;XHE7=tWtb{d(tO>t0TS2^D8QJm3s)W7 z)Z{31zF^-Dq#pXY@IeRmCX+c2t6z*(L$U9CUKSAf7A8q9vK-U@$- zh?`v@6a?kQ>B0a@1n^9t)+?{^A=5F84dzj?@N}~dpmqz&$&QJwaCWbnZaxAv2T zjo8(Yk@pnWR>%85X4G0x{(7tY=L7GNzkKl~h{Ga`7Bbh#F?o_;uT7VoA39a?D!(n3 zm|HtRYFao1&RiI>;cz)Z%y4-`%q%$`7bVu?=UIEc0DpY4C!x>Jkjz7cNr6nQpKMh| z-cI_qsGf}xMI#JnU-u|qAI?nPwwz{(c%2-_kK$OOC74)=KJP@zXg%D zpIw&gg$V~q+h)Gc#|Ls=b^dA>rM<}!$&;r;f=3th`|GZ}euwPMJ$`Z9|W^3qJ~xdIMX$&Gt!etb)R z|4D7HwgL#*)t)aoA#LN7@;Hc=tU_K%fVAOjEW?ygQV$}_B=6SI{}~7co5K43{t2YT zlR*ApYd)+YXL+V|-JcQP_sT3l>$-X#t7syZ>3`Fd#uDs#G9i5HvlIVHY7lEzJ|;5c zo-ye6;kyk~JC)!s);a8Y*MD=k@(;E=`~_p?F%81|nwU->hTV>{AL@;8fBqq{_c@O} z+PcB0j2T_inK<9GNB1?BNJC{5n=YffZ7?RKu)RxVC>cO;`PLPh@8xKzFE%i^;(Z2d zw+B8FIF)L;Y0+DG2>#)ku99pK-D||FpD!S#`d#x(F)6ABBrhC`c_$er88ZkL`(ejx zI;{>PR0pz7@Uj#63&l$(@(i!}?s#LNh!c&Px-|S2lf`uD;m)^m_)RwM!YS<{p+Fb3dfDd`6N-69i9s z_oI9F9w+J&1*g615;yy!Y%)am!=nSfu@2F~8GzBe9QjLI^=EUQz!YY%wx7t~aeNju z3JGSbMPE)lul2&M=9w!SsPyC*8Ev`DPh=%fR^a;O*u>;o_c`;EzRKqV0w(JjQ-r8~ zcn$Fk%T+uIJfxZV#qvW*DAZ+VxiVYSQ&?1|$Vr`ux64`FKzJEX+H(B}ok~!RyoN)b zC5i;2dinV*g^H92mCHwoi7NKW&{#_wrzwmSwGCS{*b ztvZDy@QLL9(5F^a4R|KhZIjXCp$&Q3>1pNHRt`>Sm3A;BlB@}1RW zS4dvE=73b}*CI&AigY@HIRK7NY9QEAkj>1*;g@NPu3yW z)LssOjG_Lg78u<3f;_29K@K0wzn{!u(I$y72K7>;8s}BkK7_(MWfpYmYtqi@=qQx! z12ymKUXa)lg?m-krvyj=^01gj=}{j_Aq;XOHabFT7eDL(S)pCa&0w~8U>4kOl9_6; zu<+_KO<*lXQfcKkj&G;Eiv+W+VNHqTsyy^gtkmsg#$svCzrn(%oV^7N*g-kFrQDy% z+Lb1kbaf#{)Q8A?L?;L>5~2A=$p~x;1R21F_9%vc zfWwbKlw(ChZ#L%SzlT)*=eH+`dzDEev7T$c5)+T(9GeytLe7uaF+yCF;(X>_{Y{yyN3lQKejKAcy6>P>giIe z^rUm%brgy!ZC}(`ptIhifHsD|{(u_Tc~4eXD|cD|e3A2Nn^=;s=KPWz<7%h>yJjPW z)^x+75|gg5p}UO~8)4b566@wpTUS3v(ltE;<3a>wLWACZP-a5{iW-M-ZQhI1$oDOsmAaF@wcqM_ z2PgmAO?HIw*Q^n{I5_&y^wTfcBD^#!*IU`l)MU%}3Dvi@#Etf2^a0nmxl3Pn@d65N zE@L!RA}YTp>?KJd6+|2svjXw#R)o3fPbO{;K*FKL8jW&A=5wU$oM=geh&ZunN7PX9GK=>Kdkc{g zMMCmDpt=B*1kgqof0Vn!mj-Oq$_jd(XA6#ePF-@;gMEN4rW>Nw9+tu%vjso(FYNdFzNEgPXs<%&991(6fd#u`S<>C zX3F;!{M2!IZ5nXNyeaZFujJimQ%&b!HGG)lW^{X^j!ZY00+5N8;tU)wxRYmk6Yy6V zq72hx{(K~R*o$Aeica4FTd6EYzLUp!6FRO|5Xr1cwpCehoSnufK1oiCr}5=RI$8@s z_3p)5?u|!s6`+tz6Se2?NTt9B1V#Z2&o}MYq>^?*{J%m!@iL=4Zp`kuLOUgWD~68% z>(${MB3Zfg;Wp;3DBGWyyT^=|rnulT2n`MPn-V>6sc>h`Wza;IX|7&-((Fck9M59@ zXBrKyf86IeeLB}@a;vF`5umgUNMT~1+}=B1a}U$-rXmE?FgzW*>NzU~4|fmIWN=Ts zij|t4CCk!1Q4SA)r>5M>K1}cY&iFOFTWq}4L(uI`qF7hoXU46Zr8hgrQ(~Vmpz9*& z4~RpKwT)WfYUWMGAY7NRAjD3*LWax^3CF{Tsi%#I;!mk%cWFy@7IS6qUv9pCI8Uy3 zD6}$i-GO+MIum^&YNIiCUd3(CkHBnR6Mn$qj5icJF1z*N;j11=pK`T1*L2$w>%6;`!RE|9L zber)%K1oSX3L!a8h9fYRo3_{~=E#Ic6dTgx65tWwDAhA>1a}*a@sj(n-agGK00J3> z{4!YlTA2sHK1ABz2mLZ&+ajN?y)cRo3B{lQf=V*Zb3q`4n8CIO1#~*8oP=nQ^7A-a z1;f`-k^?Dy&c1DX&?GI}NWUktyCc8;WrJnybtAhV_pk@K(jdESXuXU80cPZGE%ILc~?j z`Hkhj+Mm<+8TwD4C@q9+qD;b}kzli^t>X2VaRMBU>!!>1{clz|7XYMbMlNrks^`W4 zcs1sa5JS~f+v&W3%EAYLXvzcP*EZP=^%xG25Ho6OEoM4V>6qLPgm>Bi+0~Vw#X`QQ zjVd>xQUDc39{Od28qtOr`g&0O?2RC?3n=wPcKdcvTH&^TVK;Pt0)c2 z`bVdas&zYBQr0luJqtUby~!@(KwP@_>Wt*2{g_WNbkk~=0L!fx2Pgyb9?l1-sR3HP zzA&pQS)+_sS)E@Du9!Yoxd8O(xjZ?hU$1PGd7$-A;oT?x@(zV4jw80ddcZ;1 zdwK>$jn@MQ=@eCFk|`dqQvO=xQYZ7&h4njMuxu$jht@}G!af4AGiRkBrijDQN`%u2 zOl$643!Gks@U))T!W*3{ZKdL-Iyv{6IKZ?eJ+XMa8hWSvaq_Fgb~Fn{w~tCQuPjvS z4}Q8WYX+NF2$CM6Si;n=Hy$Xl2`KeL0PCWiTar;1xju&4ZCq2u4FWu%8m39ngKlfqja+cDN z#J0pIQWJ5ac|V;qN1{Odi~J{bo#7(xnN)TmQHlBBSmi=(v0K|O7QPq&aR7+!_GsBM z00t1(Y-auL7K8vtIP*nq;=EAD{qx(@A3aUzb0bl&FqGSlQ-Oe3PQaHu;K$970%_bb z_t^75MN&WTk(>O9#L6Ktyz4ZwQlPaewOgK}%ilZ{2d+ zAF23M>Vd3>Mieaggyfxk(_+dIoZQpwiShOyu9m8m496=UV-{XNI!s$CDSP!%h6BIH z0pj=BRYo>IdtlHdf$YBQsT*6GF#Vy4MgTc(PbMJd14 zfPDY!+Uo#{5kS!GRqPg3qRV%SV5nKvk~|3s8+wsC1m&0ovT499V-u&~)GYF)?vhv! zE~QHs9X(-n-}ibYkn`2w(iq^PUANu$Q~Mp-l25N_>Zxn}!|5--_(xp)W%y-w;Q3cZT1&cTY10i5q}T>Ln)AiGv{rB*B4^P1vTCb3wN6j zocj4fQauE-LXXu|3hLpZ`ltG72g{<3-qIfkOOQySMx}%3DT|F?n9P<-4}aLx zarxV-vm?9jamq2v2j;C5rsfxi06nv;`!`r;Qy<{ij+jiQGKLyk0YzUpV=}KoUIg9H|l-52KKfeDbow|5CkKNf_mb8l*x5mDE@go4573}Q&@x+lC z$Bor{9|ZR(hNc)kz}i5Xy5rxT*#LEIG4@xmD|Mxz+NhsM7p!a@^C<-AF5oj|0x~j_hM%EFOiGEuTzGwm8M5^x5+c!`k2cdvk?|OiSd6hJt_kcVc&A zcxQcn@0oJ_oA-xyBwHUuKZXLp7D9+LWcg6RFw4TUdz#3iD$_S6M;z_VE1PidM(qmA z3Zs}JJY5a2m)&4igUF#>>;1h{^FK~ybPSPRt&?tLnP3uYH$d=GZvJ? zo{1Mv#>bXVZ{3m6rPbL9A%JAO=rIASy{}~ML*^u(-I=h%n8WN{I?SZw06V-5D)FIU$|J@6^E8IO+8;~Vt^$a$!UJI z_5J8jkSbR6>p~64B^hT0>{DElZxDx2FW570op@Ppd|ce@i6x&h*hw7M@eb(Us4BYh zk;wqd*2RyLGA^}y0lgb^3=?G)MSiak0TqFmzb4z;Rug(54Gou&O9|_Rn8%@fp9-3y zOWkY$=AB-tybrDE>eyme7ci+uTyz_yd`*dzBTyC0*c7lWiRjaC3X8&^fCuOz*M3fV z9uBzNZFvC^4?+M`0LqG#^$~^e+kU|IlL*EN7Smn94fEklzLoipSbMO*)ATU7EJe`P zN&Gv=FF2Udu=roQ%GhusHtkeNVfpIFRkv_YwJQ0PL7uII`ufOWcb*;~z~bj(>qj8O z&P9!w4OsA)a1gQ3g+mM<-h4L6Qln5}BLtQY8#tFX0M|ZeW>9LGCn(@}qe76am|3>r z3XI19MCOayO@0U4_fco48U*4DGUk-m4yF@PO?v)K;&Zz2Xv?=O-a|hB7}}mD2N$Os zj=f%y$s9u|-L1g>nlWjKSwvSz18w~7(vTipVvmQ7^=a2mkksYGyy9L za_}`a?6~$szglh{TD)0lM1@k*jzw@o)uEK+yXihFH$7%fAJ;>)4i~p!x=@}}uMy3) zL9U+((h6Z4iHz!R!3hXZb$-8&*vwa#ETDS|A3A1cHN~~8P91-&y`t9tuOQrPHCaUR z7)SGB8IAF@JxGal)}OqCUZ>waWL(^EutCC8DhE49O`ac~P%#0X(nCQNpv`ZhfwGe~rxowL)y@01TP zcwM_H3ryJZya{$8l2CDVJV5BN`o(Ou>e#I3cT}V0ID5<0XUYkWTLIdVF~Eb|+7}v} zRewTCYfu==Cc|)W-dPOh0bq7iQvgA`OPx4XuA5&*wqES0uD>}mqf?f=sqHAwpTd5Ez^M8q89l#z{|f;5xImGO@`!;cDVX?Wp{G*C`Iv>#8a$#px_bI1RvQ zRtIx$kbDALoqS71{gk>IM7wO`CTaA*KDD#Qu5)0k_VG12yR!h&oLc+Wfk5KUIPQhQ z6a|Z>2#Hpz?ON33e!Pi3dgyJ>$@Qiy!uhu+KEw`yw9U+%mH-zD;MD{h@%Bp^^@(HG z6^4QPOtBRK)5C7(5!GNPZ2BOX*vAAv*)5bbnx8{Tf>VjZDmFP}i%G$Hhr?W(lJgG= zJ>3Y^yLA&?4y?;I>G_7+gDd*I3nuV*yZ~BVLQSz3a5Y$BuGI0;lRXWzq@0=^lFZE_!wPem zWq_z5ZRfcdZr0S@D+IXI(-srp%gUs}G%vB~Ap}6W5xb;H@@vTe0gUjDs6pcFJNuFv z7~IVoH9^g@JS9s<7$d}3JTIM&jzjAXaiY6)Xd!O2&SKYBPW4j7dFKpM@a9jks9X+g z4~>Eg<2jw?0Cx`UE7Drp;aV3KbnWoiviF0 zF|4@ze$x%)0V@l!Gr=^gQI4SDGk;P__iYS2(pwceE09PS(Y1e1>9(>0C$}r5#gY1! z(D64M+!n)_CEP`9!K-?zrjh9qB33x0%~#4~j5A#DFOknLA=nD%^c&>CCG$NhoVy3& zS@Ve;y?vO-e8r^LoY$ap){;(1+rdGffrwk=uxR1UXeHze!Xdg~m^S1)YZJ>5CykuS z5&fQ4thIdPrSk-tz62$iJX|J;Fr}3-ZhW3(S|^Df&M2%%*SBuAl%K65fLO%yM!G{= z5Ca+JuumZf!9JyBd38pQudCdBzDJ^Aqf{#DhO4uV*~Kj(;zVhHyJP9wX`lQ;IrRfI z1&5nMK}eC?jK(|Z`py0OeW9YoKI%A|(UiE+xAK^|#OfbB-k$SIA>YX7+7wtRwP803 zy}}(^z+$#;iK`++rTnM4JAqG9j??o3^oTv86=){4pFv*_QkPK=Ly@9fdkmgaD&mN< z<=T`@qYp$;Z)jl#n#UQm%KUcj=wjI58r1`^bWutih(fq>TwtB4kDqj+(ir24K7@;` zf+!s%A5e?*cjJ-5b){o? zP8Itp&T0Ef+rfNt7J%GSg(O;%1si997fuIfMXgk#k99hWHeEjEi!I^pPK^EYzz9YK z$5xJjCLKNiQYqMkl&J?+LOPogk}CZ+hh#}-j-y?lZ{dv%yB4)L>m<#kO-{83VpL#2 z6;*;oh}z{C1r_~nev)vK(F7R@J$x7lB7kgCG|>ec97n`dlz7&d_UuwwxEG(d-MunDDNDRG>0bW ztk9L5K6f7oT$71WwS{oR4J7E&0|%8c-BHK#`6cU}N6J2tDOjj@)7h~i{eaykOn9{t zIb8E6Ug(y>>gr~=zjzl@1q|#V=b9{t%tj51)66(I`kZ44YcwTTm)T4wesO<%*uFMd z_Sz4Xil6Qw$-E0O`5aqj@%Ls{BzZFOZoH6e_XkQV=l!Vt;NfNx%GtHyTb8g+GT?p= zRcV-R;#cy-dD;rAIA0>*jw2cmXbQ>U<~cQF~B`e0_M&xK5n+wHXa}qXNv#%gNee^-IBt}&C=4rr#$C81Q_x5 v|BkS*bT@aib@8xub^^I;$VyO{dD=R7Fxxt9hmZUKz6g?+R*|ZcFbVlD?CI|0 literal 0 HcmV?d00001 diff --git a/public/favicon.png b/public/favicon.png new file mode 100644 index 0000000000000000000000000000000000000000..186110e4a894b5553d8ab2c8d03d5ce34459e12c GIT binary patch literal 14237 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

4#*g8EmXn?&YLRxq;S%;gWg0AyC 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 literal 0 HcmV?d00001 diff --git a/public/robots.txt b/public/robots.txt new file mode 100644 index 0000000..c2a49f4 --- /dev/null +++ b/public/robots.txt @@ -0,0 +1,2 @@ +User-agent: * +Allow: / diff --git a/squircle.svg b/squircle.svg new file mode 100644 index 0000000..fce921e --- /dev/null +++ b/squircle.svg @@ -0,0 +1,14 @@ + diff --git a/src/App.svelte b/src/App.svelte new file mode 100644 index 0000000..b0ab0d0 --- /dev/null +++ b/src/App.svelte @@ -0,0 +1,171 @@ + + +

+ {#if !connected} + error = ''}> + {:else} + {#if gameState === 'waiting'} + + {:else if gameState === 'waitingForWord'} + +

+ Waiting for a word to be picked... +

+
+ {:else if gameState === 'selectingWord'} + socket.emit('pickWord', event.detail)} /> + {:else if gameState === 'guessing'} + socket.emit('guessWord', e.detail, (correct) => { + if (correct) { + gameState = 'guessedCorrectly'; + } + })} /> + + {:else if gameState === 'guessedCorrectly'} + +

Correct!

+

+ Waiting for the other players to finish... +

+
+ + {:else if gameState === 'drawing'} + +

+ Start drawing! +

+
+ + + {:else if gameState === 'gameOver'} + + {/if} + {/if} +
diff --git a/src/app.css b/src/app.css new file mode 100644 index 0000000..0e92e3d --- /dev/null +++ b/src/app.css @@ -0,0 +1,15 @@ +body { + font-family: 'Noto Sans', sans-serif; + /* background-color: #212; + color: #ded; + + box-sizing: border-box; */ +} + +* { + box-sizing: inherit; +} + +/* input, button { + font-family: inherit; +} */ diff --git a/src/assets/wordlist.json b/src/assets/wordlist.json new file mode 100644 index 0000000..5e9c4bd --- /dev/null +++ b/src/assets/wordlist.json @@ -0,0 +1,2299 @@ +[ + "ABBA", + "Abraham Lincoln", + "abstract", + "abyss", + "AC/DC", + "accident", + "accordion", + "ace", + "acid", + "acne", + "acorn", + "action", + "actor", + "addiction", + "addition", + "Adidas", + "adorable", + "adult", + "advertisement", + "Africa", + "afro", + "afterlife", + "air conditioner", + "airbag", + "aircraft", + "airplane", + "airport", + "Aladdin", + "alarm", + "albatross", + "alcohol", + "alien", + "allergy", + "alley", + "alligator", + "almond", + "alpaca", + "ambulance", + "America", + "Amsterdam", + "anaconda", + "anchor", + "Android", + "angel", + "Angelina Jolie", + "anglerfish", + "angry", + "Angry Birds", + "animation", + "anime", + "ant", + "Antarctica", + "anteater", + "antelope", + "antenna", + "anthill", + "antivirus", + "Anubis", + "anvil", + "apartment", + "apocalypse", + "applause", + "Apple", + "apple", + "apple pie", + "apple seed", + "apricot", + "aquarium", + "arch", + "archaeologist", + "archer", + "architect", + "Argentina", + "aristocrat", + "arm", + "armadillo", + "armor", + "armpit", + "arrow", + "ash", + "Asia", + "assassin", + "assault", + "Asterix", + "asteroid", + "astronaut", + "asymmetry", + "athlete", + "Atlantis", + "atom", + "attic", + "Audi", + "audience", + "Australia", + "autograph", + "avocado", + "axe", + "baboon", + "baby", + "back pain", + "backbone", + "backflip", + "backpack", + "bacon", + "bad", + "badger", + "bag", + "bagel", + "bagpipes", + "baguette", + "bait", + "bakery", + "baklava", + "balance", + "balcony", + "bald", + "ball", + "ballerina", + "ballet", + "balloon", + "Bambi", + "bamboo", + "banana", + "Band-Aid", + "bandage", + "bandana", + "banjo", + "bank", + "banker", + "bar", + "Barack Obama", + "barbarian", + "barbecue", + "barbed wire", + "barber", + "barcode", + "bark", + "barn", + "barrel", + "Bart Simpson", + "bartender", + "base", + "basement", + "basket", + "basketball", + "bat", + "bathroom", + "bathtub", + "Batman", + "battery", + "battle", + "battleship", + "bayonet", + "bazooka", + "beach", + "beak", + "bean", + "bean bag", + "beanie", + "beanstalk", + "bear", + "bear trap", + "beatbox", + "beaver", + "bed", + "bed bug", + "bed sheet", + "bedtime", + "bee", + "beef", + "beer", + "beet", + "Beethoven", + "beetle", + "bell", + "bell pepper", + "bellow", + "belly", + "belly button", + "below", + "belt", + "bench", + "betray", + "Bible", + "bicycle", + "Big Ben", + "bill", + "Bill Gates", + "billiards", + "bingo", + "binoculars", + "biology", + "birch", + "bird", + "bird bath", + "birthday", + "biscuit", + "Bitcoin", + "bite", + "black", + "Black Friday", + "black hole", + "blackberry", + "blacksmith", + "blanket", + "bleach", + "blender", + "blimp", + "blind", + "blindfold", + "blizzard", + "blood", + "blowfish", + "blue", + "blueberry", + "blush", + "BMW", + "BMX", + "boar", + "board", + "boat", + "bobsled", + "bodyguard", + "boil", + "bomb", + "Bomberman", + "booger", + "book", + "bookmark", + "bookshelf", + "boomerang", + "boots", + "border", + "bottle", + "bottle flip", + "bounce", + "bouncer", + "bow", + "bowl", + "bowling", + "box", + "boy", + "bracelet", + "braces", + "brain", + "brainwash", + "branch", + "brand", + "Brazil", + "bread", + "breakfast", + "breath", + "brick", + "bricklayer", + "bride", + "bridge", + "broadcast", + "broccoli", + "broken heart", + "bronze", + "broom", + "broomstick", + "brownie", + "Bruce Lee", + "bruise", + "brunette", + "brush", + "bubble", + "bubble gum", + "bucket", + "Bugs Bunny", + "building", + "bulge", + "bull", + "bulldozer", + "bullet", + "bumper", + "bungee jumping", + "bunk bed", + "bunny", + "burglar", + "burp", + "burrito", + "bus", + "bus driver", + "bus stop", + "butcher", + "butler", + "butt cheeks", + "butter", + "butterfly", + "button", + "cab driver", + "cabin", + "cabinet", + "cactus", + "cage", + "cake", + "calendar", + "camel", + "camera", + "campfire", + "camping", + "can", + "can opener", + "Canada", + "canary", + "candle", + "canister", + "cannon", + "canyon", + "cap", + "cape", + "cappuccino", + "Capricorn", + "captain", + "Captain America", + "car wash", + "cardboard", + "carnival", + "carnivore", + "carpenter", + "carpet", + "carrot", + "cartoon", + "cash", + "casino", + "cast", + "cat", + "Cat Woman", + "catalog", + "catapult", + "caterpillar", + "catfish", + "cathedral", + "cauldron", + "cauliflower", + "cave", + "caveman", + "caviar", + "ceiling", + "ceiling fan", + "celebrate", + "celebrity", + "cell", + "cell phone", + "cello", + "cement", + "centaur", + "centipede", + "Cerberus", + "chain", + "chainsaw", + "chair", + "chalk", + "chameleon", + "champagne", + "champion", + "chandelier", + "charger", + "Charlie Chaplin", + "cheek", + "cheeks", + "cheerleader", + "cheese", + "cheeseburger", + "cheesecake", + "cheetah", + "chef", + "chemical", + "cherry", + "cherry blossom", + "chess", + "chest", + "chest hair", + "chestnut", + "chestplate", + "chew", + "Chewbacca", + "chicken", + "chihuahua", + "child", + "chime", + "chimney", + "chimpanzee", + "chin", + "China", + "Chinatown", + "chinchilla", + "chocolate", + "chopsticks", + "Christmas", + "Chrome", + "Chuck Norris", + "church", + "cicada cigarette", + "cinema", + "circle", + "circus", + "clap", + "clarinet", + "classroom", + "claw", + "clay", + "clean", + "clickbait", + "cliff", + "climb", + "cloak", + "clock", + "cloth", + "clothes hanger", + "cloud", + "clover", + "clown", + "clownfish", + "coach", + "coal", + "coast", + "coast guard", + "coaster", + "coat", + "cobra", + "cockroach", + "cocktail", + "coconut", + "cocoon", + "coffee", + "coffee shop", + "coffin", + "coin", + "cola", + "cold", + "collapse", + "collar", + "color-blind", + "Colosseum", + "comb", + "comedian", + "comedy", + "comet", + "comfortable", + "comic book", + "commander", + "commercial", + "communism", + "community", + "compass", + "complete", + "computer", + "concert", + "condiment", + "cone", + "confused", + "console", + "continent", + "controller", + "conversation", + "cookie", + "cookie jar", + "Cookie Monster", + "copper", + "copy", + "coral", + "coral reef", + "cord", + "cork", + "corkscrew", + "corn", + "corn dog", + "corner", + "cornfield", + "corpse", + "cotton", + "cotton candy", + "country", + "cousin", + "cow", + "cowbell", + "cowboy", + "coyote", + "crab", + "crack", + "Crash Bandicoot", + "crate", + "crawl space", + "crayon", + "cream", + "credit", + "credit card", + "Creeper", + "cricket", + "cringe", + "Croatia", + "crocodile", + "croissant", + "crossbow", + "crow", + "crowbar", + "crucible", + "cruise", + "crust", + "crystal", + "Cuba", + "cube", + "cuckoo", + "cucumber", + "cup", + "cupboard", + "cupcake", + "Cupid", + "curry", + "curtain", + "cushion", + "customer", + "cut", + "cute", + "cyborg", + "cylinder", + "cymbal", + "Daffy Duck", + "dagger", + "daisy", + "dalmatian", + "dance", + "dandelion", + "dandruff", + "darts", + "Darwin", + "Darwin Watterson", + "dashboard", + "daughter", + "day", + "dead", + "Deadpool", + "deaf", + "deep", + "deer", + "defense", + "delivery", + "demon", + "demonstration", + "dent", + "dentist", + "deodorant", + "depressed", + "derp", + "desert", + "desk", + "desperate", + "dessert", + "detective", + "detonate", + "dew", + "Dexter", + "diagonal", + "diagram", + "diamond", + "diaper", + "dice", + "dictionary", + "die", + "diet", + "dig", + "dinner", + "dinosaur", + "diploma", + "dirty", + "disaster", + "Discord", + "disease", + "dishrag", + "dispenser", + "display", + "diss track", + "distance", + "diva", + "divorce", + "dizzy", + "DNA", + "dock", + "doctor", + "dog", + "doghouse", + "doll", + "dollar", + "dollhouse", + "dolphin", + "dome", + "dominoes", + "Donald Duck", + "Donald Trump", + "donkey", + "door", + "doorknob", + "Dora", + "Doritos", + "dots", + "double", + "dough", + "download", + "Dracula", + "dragon", + "dragonfly", + "drain", + "drama", + "drawer", + "dream", + "dress", + "drink", + "drip", + "drive", + "driver", + "drool", + "droplet", + "drought", + "drum", + "drum kit", + "duck", + "duct tape", + "duel", + "Dumbo", + "dwarf", + "dynamite", + "eagle", + "ear", + "earbuds", + "Earth", + "earthquake", + "earwax", + "east", + "Easter", + "Easter Bunny", + "eat", + "echo", + "eclipse", + "eel", + "egg", + "eggplant", + "Egypt", + "Eiffel tower", + "Einstein", + "elbow", + "elder", + "election", + "electric car", + "electric guitar", + "electrician", + "electricity", + "elephant", + "elevator", + "Elmo", + "Elon Musk", + "Elsa", + "embers", + "emerald", + "Eminem", + "emoji", + "employer", + "emu", + "end", + "engine", + "engineer", + "England", + "equator", + "eraser", + "error", + "eskimo", + "espresso", + "Europe", + "evaporate", + "evening", + "evolution", + "exam", + "Excalibur", + "excavator", + "exercise", + "explosion", + "eye", + "eye shadow", + "eyebrow", + "eyelash", + "fabric", + "fabulous", + "facade", + "face", + "face paint", + "Facebook", + "factory", + "failure", + "fairy", + "fake teeth", + "fall", + "family", + "Family Guy", + "Fanta", + "farm", + "farmer", + "fashion designer", + "fast", + "fast food", + "fast forward", + "father", + "faucet", + "feather", + "fence", + "fencing", + "fern", + "Ferrari", + "festival", + "fidget spinner", + "field", + "figurine", + "filmmaker", + "filter", + "finger", + "fingernail", + "fingertip", + "Finn", + "Finn and Jake", + "fire alarm", + "fire hydrant", + "fire truck", + "fireball", + "firecracker", + "firefighter", + "firefly", + "firehouse", + "fireman", + "fireplace", + "fireproof", + "fireside", + "firework", + "fish", + "fish bowl", + "fisherman", + "fist fight", + "fitness trainer", + "fizz", + "flag", + "flagpole", + "flamethrower", + "flamingo", + "Flash", + "flashlight", + "flask", + "flea", + "flight attendant", + "flock", + "floodlight", + "floppy disk", + "Florida", + "florist", + "flower", + "flu", + "fluid", + "flush", + "flute", + "fly", + "fly swatter", + "flying pig", + "fog", + "foil", + "folder", + "food", + "forehead", + "forest", + "forest fire", + "fork", + "fort", + "fortress", + "fortune", + "fossil", + "fountain", + "fox", + "frame", + "France", + "Frankenstein", + "freckles", + "Fred Flintstone", + "freezer", + "fridge", + "fries", + "frog", + "frostbite", + "frosting", + "frown", + "fruit", + "full", + "full moon", + "funeral", + "funny", + "fur", + "furniture", + "galaxy", + "Gandalf", + "Gandhi", + "gang", + "gangster", + "garage", + "garbage", + "garden", + "gardener", + "Garfield", + "garlic", + "gas", + "gas mask", + "gasoline", + "gasp", + "gate", + "gem", + "gender", + "generator", + "genie", + "gentle", + "gentleman", + "geography", + "germ", + "Germany", + "geyser", + "ghost", + "giant", + "gift", + "giraffe", + "girl", + "gladiator", + "glass", + "glasses", + "glitter", + "globe", + "gloss", + "glove", + "glow", + "glowstick", + "glue", + "glue stick", + "gnome", + "goal", + "goat", + "goatee", + "goblin", + "God", + "godfather", + "gold", + "gold chain", + "golden apple", + "golden egg", + "goldfish", + "golf", + "golf cart", + "good", + "Goofy", + "Google", + "goose", + "gorilla", + "graduation", + "graffiti", + "grandmother", + "grapefruit", + "grapes", + "graph", + "grass", + "grasshopper", + "grave", + "gravedigger", + "gravel", + "graveyard", + "gravity", + "Great Wall", + "Greece", + "greed", + "Green Lantern", + "grenade", + "grid", + "grill", + "grin", + "Grinch", + "groom", + "Gru", + "grumpy", + "guillotine", + "guinea pig", + "guitar", + "Gumball", + "gumball", + "gummy", + "gummy bear", + "gummy worm", + "hacker", + "hair", + "hair roller", + "hairbrush", + "haircut", + "hairspray", + "hairy", + "half", + "halo", + "ham", + "hamburger", + "hammer", + "hammock", + "hamster", + "hand", + "handicap", + "handle", + "handshake", + "hanger", + "happy", + "Happy Meal", + "harbor", + "hard", + "hard hat", + "harmonica", + "harp", + "harpoon", + "Harry Potter", + "hashtag", + "hat", + "Hawaii", + "hazard", + "hazelnut", + "head", + "headache", + "headband", + "headboard", + "heading", + "headphones", + "health", + "heart", + "heat", + "hedgehog", + "heel", + "heist", + "helicopter", + "hell", + "Hello Kitty", + "helmet", + "hen", + "Hercules", + "hermit", + "hero", + "hexagon", + "hibernate", + "hieroglyph", + "high five", + "high heels", + "high score", + "highway", + "hilarious", + "hill", + "hip hop", + "hippie", + "hippo", + "hitchhiker", + "hive", + "hobbit", + "hockey", + "holiday", + "Hollywood", + "Home Alone", + "homeless", + "Homer Simpson", + "honey", + "honeycomb", + "hoof", + "hook", + "hop", + "hopscotch", + "horizon", + "horn", + "horse", + "horsewhip", + "hose", + "hospital", + "hot", + "hot chocolate", + "hot dog", + "hot sauce", + "hotel", + "hourglass", + "house", + "hovercraft", + "hug", + "Hula Hoop", + "Hulk", + "hummingbird", + "hunger", + "hunter", + "hurdle", + "hurt", + "husband", + "hut", + "hyena", + "hypnotize", + "ice", + "ice cream", + "ice cream truck", + "iceberg", + "icicle", + "idea", + "Ikea", + "imagination", + "impact", + "incognito", + "India", + "industry", + "infinite", + "injection", + "insect", + "inside", + "insomnia", + "Intel", + "internet", + "intersection", + "interview", + "invasion", + "invention", + "invisible", + "iPad", + "iPhone", + "Ireland", + "iron", + "Iron Giant", + "Iron Man", + "island", + "Israel", + "Italy", + "ivy", + "Jack-o-lantern", + "jacket", + "jackhammer", + "Jackie Chan", + "jaguar", + "jail", + "jalapeno", + "James Bond", + "janitor", + "Japan", + "jaw", + "JayZ", + "jazz", + "jeans", + "jeep", + "jello", + "jelly", + "jellyfish", + "Jenga", + "jester", + "Jesus Christ", + "jet ski", + "Jimmy Neutron", + "John Cena", + "Johnny Bravo", + "joker", + "journalist", + "journey", + "judge", + "juggle", + "juice", + "jump rope", + "jungle", + "junk food", + "kangaroo", + "karaoke", + "karate", + "katana", + "Katy Perry", + "kazoo", + "kebab", + "keg", + "kendama", + "Kermit", + "ketchup", + "kettle", + "key", + "keyboard", + "KFC", + "kidney", + "Kim Jong-un", + "kindergarten", + "king", + "King Kong", + "Kirby", + "kiss", + "kitchen", + "kite", + "kitten", + "kiwi", + "knee", + "kneel", + "knife", + "knight", + "knot", + "knuckle", + "koala", + "kraken", + "Kung Fu", + "label", + "laboratory", + "ladder", + "lady", + "Lady Gaga", + "ladybug", + "lake", + "lamb", + "lamp", + "landlord", + "landscape", + "lane", + "language", + "lantern", + "lap", + "laptop", + "Las Vegas", + "Lasagna", + "laser", + "lasso", + "laundry", + "lava", + "lava lamp", + "lawn mower", + "lawyer", + "leader", + "leaf", + "leak", + "leash", + "leather", + "leave", + "leech", + "Lego", + "legs", + "lemon", + "lemonade", + "lemur", + "lens", + "Leonardo da Vinci", + "Leonardo DiCaprio", + "leprechaun", + "lettuce", + "levitate", + "librarian", + "library", + "licorice", + "lid", + "light bulb", + "lighter", + "lighthouse", + "lightning", + "lightsaber", + "lily", + "lilypad", + "limbo", + "lime", + "limousine", + "line", + "link", + "lion", + "Lion King", + "lips", + "lipstick", + "litter box", + "lizard", + "llama", + "loading", + "loaf", + "lobster", + "lock", + "log", + "logo", + "lollipop", + "London", + "London Eye", + "loot", + "loser", + "lotion", + "lottery", + "lounge", + "love", + "low", + "luck", + "luggage", + "Luigi", + "lumberjack", + "lung", + "lynx", + "lyrics", + "macaroni", + "machine", + "macho", + "Madagascar", + "mafia", + "magazine", + "magic", + "magic trick", + "magic wand", + "magician", + "magma", + "magnet", + "magnifier", + "maid", + "mailbox", + "mailman", + "makeup", + "mall", + "mammoth", + "manatee", + "manhole", + "manicure", + "mannequin", + "mansion", + "mantis", + "map", + "maracas", + "marathon", + "marble", + "margarine", + "marigold", + "Mario", + "Mark Zuckerberg", + "market", + "marmalade", + "marmot", + "Mars", + "marshmallow", + "mascot", + "mask", + "massage", + "match", + "matchbox", + "mattress", + "mayonnaise", + "mayor", + "maze", + "McDonalds", + "meal", + "meat", + "meatball", + "meatloaf", + "mechanic", + "Medusa", + "meerkat", + "megaphone", + "melon", + "melt", + "meme", + "Mercedes", + "Mercury", + "mermaid", + "message", + "messy", + "metal", + "meteorite", + "Mexico", + "Michael Jackson", + "Mickey Mouse", + "microphone", + "microscope", + "Microsoft", + "microwave", + "midnight", + "military", + "milk", + "milkman", + "milkshake", + "Milky Way", + "mime", + "Minecraft", + "miner", + "Miniclip", + "minigolf", + "Minion", + "minivan", + "Minotaur", + "mint", + "minute", + "mirror", + "missile", + "model", + "mohawk", + "mold", + "mole", + "Mona Lisa", + "Monday", + "money", + "monk", + "monkey", + "Monster", + "monster", + "Mont Blanc", + "moon", + "moose", + "mop", + "Morgan Freeman", + "morning", + "Morse code", + "Morty", + "mosquito", + "moss", + "moth", + "mothball", + "mother", + "motherboard", + "motorbike", + "motorcycle", + "Mount Everest", + "Mount Rushmore", + "mountain", + "mouse", + "mousetrap", + "mouth", + "movie", + "Mozart", + "Mr Bean", + "Mr Meeseeks", + "Mr. Bean", + "Mr. Meeseeks", + "MTV", + "mud", + "muffin", + "mug", + "Mummy", + "murderer", + "muscle", + "museum", + "mushroom", + "musket", + "mustache", + "mustard", + "nachos", + "nail", + "nail file", + "nail polish", + "napkin", + "narwhal", + "Nasa", + "NASCAR", + "nature", + "navy", + "neck", + "needle", + "neighbor", + "neighborhood", + "Nemo", + "Neptune", + "nerd", + "nest", + "Netherlands", + "network", + "New Zealand", + "newspaper", + "nickel", + "night", + "nightclub", + "nightmare", + "Nike", + "ninja", + "Nintendo Switch", + "noob", + "noodle", + "north", + "North Korea", + "Northern Lights", + "Norway", + "nose", + "nose hair", + "nose ring", + "nosebleed", + "nostrils", + "Notch", + "notebook", + "notepad", + "nothing", + "notification", + "novel", + "nugget", + "nuke", + "nun", + "nurse", + "nut", + "nutcracker", + "Nutella", + "nutmeg", + "nutshell", + "oar", + "Obelix", + "observatory", + "ocean", + "octagon", + "octopus", + "office", + "oil", + "Olaf", + "old", + "omelet", + "onion", + "open", + "opera", + "orange", + "orangutan", + "orbit", + "orca", + "orchestra", + "orchid", + "Oreo", + "organ", + "origami", + "ostrich", + "otter", + "outside", + "oval", + "overweight", + "owl", + "oxygen", + "oyster", + "Pac-Man", + "paddle", + "page", + "pain", + "paint", + "paintball", + "pajamas", + "palace", + "palette", + "palm", + "palm tree", + "pan", + "pancake", + "panda", + "panpipes", + "panther", + "pants", + "papaya", + "paper", + "paper bag", + "parachute", + "parade", + "parakeet", + "parents", + "Paris", + "park", + "parking", + "parrot", + "party", + "password", + "pasta", + "pastry", + "path", + "patient", + "patio", + "Patrick", + "patriot", + "pause", + "pavement", + "paw", + "Paypal", + "peace", + "peach", + "peacock", + "peanut", + "pear", + "peas", + "peasant", + "pedal", + "pelican", + "pencil", + "pencil case", + "pencil sharpener", + "pendulum", + "penguin", + "peninsula", + "penny", + "pensioner", + "Peppa Pig", + "pepper", + "pepperoni", + "Pepsi", + "perfume", + "periscope", + "person", + "pet food", + "pet shop", + "petal", + "pharmacist", + "Phineas and Ferb", + "photo frame", + "photograph", + "photographer", + "Photoshop", + "piano", + "Picasso", + "pickaxe", + "pickle", + "picnic", + "pie", + "pig", + "pigeon", + "piggy bank", + "pigsty", + "Pikachu", + "pike", + "pill", + "pillar", + "pillow", + "pillow fight", + "pilot", + "pimple", + "pin", + "pinball", + "pine", + "pine cone", + "pineapple", + "pink", + "Pink Panther", + "pinky", + "Pinocchio", + "pinwheel", + "pipe", + "pirate", + "pirate ship", + "pistachio", + "pistol", + "pitchfork", + "pizza", + "plague", + "planet", + "plank", + "plate", + "platypus", + "player", + "playground", + "Playstation", + "plow", + "plug", + "plumber", + "plunger", + "Pluto", + "pocket", + "pogo stick", + "point", + "poison", + "poisonous", + "poke", + "Pokemon", + "polar bear", + "policeman", + "pollution", + "polo", + "pond", + "pony", + "ponytail", + "poodle", + "poop", + "poor", + "popcorn", + "pope", + "Popeye", + "poppy", + "Popsicle", + "popular", + "porch", + "porcupine", + "Porky Pig", + "portal", + "portrait", + "Portugal", + "Poseidon", + "positive", + "postcard", + "poster", + "pot", + "pot of gold", + "potato", + "potion", + "pound", + "powder", + "prawn", + "pray", + "preach", + "pregnant", + "present", + "president", + "pretzel", + "price tag", + "priest", + "prince", + "princess", + "Pringles", + "printer", + "prism", + "prison", + "pro", + "procrastination", + "professor", + "programmer", + "promotion", + "protest", + "provoke", + "prune", + "pub", + "pudding", + "puddle", + "puffin", + "puma", + "Pumba", + "pumpkin", + "punishment", + "punk", + "puppet", + "purity", + "purse", + "puzzle", + "pyramid", + "quarter", + "queen", + "queue", + "quicksand", + "quill", + "quilt", + "quokka", + "raccoon", + "race", + "racecar", + "radar", + "radiation", + "radio", + "radish", + "raft", + "rail", + "rain", + "rainbow", + "raincoat", + "raindrop", + "rainforest", + "raisin", + "rake", + "ram", + "ramp", + "rapper", + "raspberry", + "rat", + "ravioli", + "razor", + "razorblade", + "read", + "reality", + "reception", + "receptionist", + "record", + "rectangle", + "recycling", + "red", + "red carpet", + "Reddit", + "reeds", + "referee", + "reflection", + "reindeer", + "relationship", + "religion", + "remote", + "repeat", + "reptile", + "rest", + "restaurant", + "retail", + "revolver", + "rewind", + "rhinoceros", + "rib", + "ribbon", + "rice", + "Rick", + "ring", + "ringtone", + "risk", + "river", + "roadblock", + "robber", + "Robbie Rotten", + "robin", + "Robin Hood", + "robot", + "rock", + "rocket", + "rockstar", + "roll", + "Romania", + "Rome", + "roof", + "room", + "rooster", + "root", + "rose", + "royal", + "rubber", + "ruby", + "rug", + "ruler", + "run", + "rune", + "Russia", + "sad", + "saddle", + "safari", + "safe", + "sailboat", + "salad", + "sale", + "saliva", + "salmon", + "salt", + "saltwater", + "Samsung", + "sand", + "sand castle", + "sandbox", + "sandstorm", + "sandwich", + "Santa", + "satellite", + "Saturn", + "sauce", + "sauna", + "sausage", + "saxophone", + "scar", + "scarecrow", + "scarf", + "scary", + "scent", + "school", + "science", + "scientist", + "scissors", + "Scooby Doo", + "scoop", + "score", + "Scotland", + "scream", + "screen", + "screw", + "scribble", + "scuba", + "sculpture", + "scythe", + "sea", + "sea lion", + "seafood", + "seagull", + "seahorse", + "seal", + "search", + "seashell", + "seasick", + "season", + "seat belt", + "seaweed", + "second", + "security", + "seed", + "seesaw", + "Segway", + "semicircle", + "sensei", + "server", + "sew", + "sewing machine", + "shadow", + "shake", + "shallow", + "shampoo", + "shape", + "shark", + "shaving cream", + "sheep", + "shelf", + "shell", + "Sherlock Holmes", + "shipwreck", + "shirt", + "shock", + "shoe", + "shoebox", + "shoelace", + "shop", + "shopping", + "shopping cart", + "short", + "shotgun", + "shoulder", + "shout", + "shovel", + "shower", + "Shrek", + "shrew", + "shrub", + "shy", + "sick", + "signature", + "silence", + "silo", + "silver", + "silverware", + "sing", + "Singapore", + "sink", + "sit", + "six pack", + "skateboard", + "skateboarder", + "skates", + "skeleton", + "ski", + "ski jump", + "skin", + "skinny", + "Skittles", + "skribbl.io", + "Skrillex", + "skull", + "skunk", + "sky", + "skydiving", + "skyline", + "Skype", + "skyscraper", + "slam", + "sledge", + "sledgehammer", + "sleep", + "sleeve", + "slide", + "slime", + "slingshot", + "Slinky", + "slippery", + "slope", + "sloth", + "slow", + "slump", + "smell", + "smile", + "smoke", + "snail", + "snake", + "sneeze", + "sniper", + "snow", + "snowball", + "snowball fight", + "snowboard", + "snowflake", + "snowman", + "soap", + "soccer", + "social media", + "socket", + "socks", + "soda", + "soil", + "Solar System", + "soldier", + "sombrero", + "son", + "Sonic", + "sound", + "soup", + "south", + "space", + "space suit", + "spaceship", + "spade", + "spaghetti", + "Spain", + "spark", + "sparkles", + "Spartacus", + "spatula", + "speaker", + "spear", + "spelunker", + "sphinx", + "spider", + "Spiderman", + "spin", + "spinach", + "spine", + "spiral", + "spit", + "spoiler", + "sponge", + "SpongeBob", + "spool", + "spoon", + "spore", + "sports", + "spray paint", + "spring", + "sprinkler", + "spy", + "square", + "squid", + "Squidward", + "squirrel", + "stab", + "stadium", + "stage", + "stamp", + "stand", + "stapler", + "star", + "Star Wars", + "starfish", + "starfruit", + "statue", + "Statue of Liberty", + "Steam", + "steam", + "Stegosaurus", + "step", + "stereo", + "Steve Jobs", + "sting", + "stingray", + "stomach", + "stone", + "Stone Age", + "stoned", + "stop sign", + "stork", + "storm", + "stove", + "straw", + "strawberry", + "streamer", + "street", + "stress", + "strong", + "student", + "studio", + "study", + "stylus", + "submarine", + "subway", + "Sudoku", + "Suez Canal", + "sugar", + "suitcase", + "summer", + "sun", + "sunburn", + "sunflower", + "sunglasses", + "sunrise", + "sunshade", + "Superman", + "supermarket", + "superpower", + "surface", + "surfboard", + "surgeon", + "survivor", + "Susan Wojcicki", + "sushi", + "swag", + "swamp", + "swan", + "swarm", + "sweat", + "sweater", + "swimming pool", + "swimsuit", + "swing", + "switch", + "sword", + "swordfish", + "Sydney Opera House", + "symphony", + "T-rex", + "table", + "table tennis", + "tablecloth", + "tablet", + "tabletop", + "taco", + "tadpole", + "tail", + "tailor", + "Tails", + "take off", + "talent show", + "tampon", + "tangerine", + "tank", + "tape", + "tarantula", + "target", + "Tarzan", + "taser", + "tattoo", + "taxi", + "taxi driver", + "tea", + "teacher", + "teapot", + "tear", + "teaspoon", + "teddy bear", + "telephone", + "telescope", + "Teletubby", + "television", + "temperature", + "tennis", + "tennis racket", + "tent", + "tentacle", + "Terminator", + "Tetris", + "text", + "The Beatles", + "thermometer", + "thief", + "thin", + "think", + "thirst", + "Thor", + "throat", + "throne", + "thug", + "thumb", + "thunder", + "thunderstorm", + "ticket", + "tickle", + "tie", + "tiger", + "time machine", + "timpani", + "tiny", + "tip", + "tiramisu", + "tire", + "tired", + "tissue", + "tissue box", + "Titanic", + "toad", + "toast", + "toaster", + "toe", + "toenail", + "toilet", + "tomato", + "tomb", + "tombstone", + "tongue", + "toolbox", + "tooth", + "Tooth Fairy", + "toothbrush", + "toothpaste", + "toothpick", + "top hat", + "torch", + "tornado", + "torpedo", + "tortoise", + "totem", + "toucan", + "touch", + "tourist", + "tow truck", + "towel", + "tower", + "Tower Bridge", + "Tower of Pisa", + "toy", + "tractor", + "traffic", + "traffic light", + "trailer", + "train", + "translate", + "trap", + "trapdoor", + "trash can", + "traveler", + "treadmill", + "treasure", + "tree", + "treehouse", + "trend", + "triangle", + "trick shot", + "tricycle", + "trigger", + "triplets", + "tripod", + "trombone", + "trophy", + "tropical", + "truck", + "truck driver", + "trumpet", + "tuba", + "tug", + "tumor", + "tuna", + "tunnel", + "turd", + "turkey", + "turnip", + "turtle", + "tuxedo", + "Tweety", + "twig", + "Twitter", + "type", + "udder", + "UFO", + "ukulele", + "umbrella", + "uncle", + "underground", + "underweight", + "undo", + "unibrow", + "unicorn", + "unicycle", + "uniform", + "universe", + "upgrade", + "Uranus", + "Usain Bolt", + "USB", + "vacation", + "vaccine", + "vacuum", + "valley", + "vampire", + "vanilla", + "vanish", + "Vatican", + "vault", + "Vault boy", + "vegetable", + "vegetarian", + "vein", + "Velociraptor", + "vent", + "Venus", + "vertical", + "veterinarian", + "victim", + "victory", + "video", + "video game", + "village", + "villain", + "Vin Diesel", + "vine", + "vinegar", + "viola", + "violence", + "violin", + "virtual reality", + "virus", + "vise", + "vision", + "vitamin", + "vlogger", + "vodka", + "volcano", + "volleyball", + "volume", + "vomit", + "voodoo", + "vortex", + "vote", + "vulture", + "vuvuzela", + "W-LAN", + "waffle", + "waist", + "waiter", + "wake up", + "walk", + "wall", + "Wall-e", + "wallpaper", + "walnut", + "walrus", + "warehouse", + "warm", + "wart", + "wasp", + "watch", + "water", + "water cycle", + "water gun", + "waterfall", + "wave", + "wax", + "weak", + "wealth", + "weapon", + "weasel", + "weather", + "web", + "website", + "wedding", + "welder", + "well", + "werewolf", + "west", + "western", + "whale", + "WhatsApp", + "wheel", + "wheelbarrow", + "whisk", + "whisper", + "whistle", + "white", + "wife", + "wig", + "wiggle", + "William Shakespeare", + "William Wallace", + "willow", + "wind", + "windmill", + "window", + "windshield", + "wine", + "wine glass", + "wing", + "wingnut", + "winner", + "Winnie the Pooh", + "winter", + "wire", + "wireless", + "witch", + "witness", + "wizard", + "wolf", + "Wolverine", + "Wonder Woman", + "wonderland", + "woodpecker", + "wool", + "work", + "workplace", + "world", + "worm", + "wound", + "wrapping", + "wreath", + "wrench", + "wrestler", + "wrestling", + "wrinkle", + "wrist", + "writer", + "x-ray", + "Xbox", + "Xerox", + "xylophone", + "yacht", + "yardstick", + "yawn", + "yearbook", + "yellow", + "yeti", + "Yin and Yang", + "yo-yo", + "Yoda", + "yogurt", + "yolk", + "Yoshi", + "young", + "Youtube", + "youtuber", + "zebra", + "Zelda", + "zeppelin", + "Zeus", + "zigzag", + "zipline", + "zipper", + "zombie", + "zoo", + "zoom", + "Zorro", + "Zuma" +] diff --git a/src/client/ChatWindow.svelte b/src/client/ChatWindow.svelte new file mode 100644 index 0000000..3dec75b --- /dev/null +++ b/src/client/ChatWindow.svelte @@ -0,0 +1,18 @@ + + + +

Chat

+
+ {#each messages as message} +

+ {message.author}: + {message.message} +

+ {/each} +
+
diff --git a/src/client/GameOver.svelte b/src/client/GameOver.svelte new file mode 100644 index 0000000..53ee5be --- /dev/null +++ b/src/client/GameOver.svelte @@ -0,0 +1,80 @@ + + + +

Game over

+ +
+

Details

+ +
    +
  • Drawing: {gameOver.drawer}
  • +
  • Word: {gameOver.word}
  • +
+
+ +
+

Rankings

+ + + + + + + + + + + + {#each gameOver.leaderboard as entry, i} + + + + + + {/each} + +
PosPlayerTime
{i + 1} + + {entry.username} + + {#if entry.username === username} + + You + + {/if} + + {(entry.time / 1000).toFixed(1)} +
+
+ + {#if isHost} +
+

+ Host options +

+ +
+ +
+
+ {/if} +
+ + diff --git a/src/client/GuessPage.svelte b/src/client/GuessPage.svelte new file mode 100644 index 0000000..6107026 --- /dev/null +++ b/src/client/GuessPage.svelte @@ -0,0 +1,26 @@ + + + +

Guess!

+ + submit(e.detail)} /> + +
diff --git a/src/client/JoinPage.svelte b/src/client/JoinPage.svelte new file mode 100644 index 0000000..3f2c43f --- /dev/null +++ b/src/client/JoinPage.svelte @@ -0,0 +1,31 @@ + + + + {#if error !== ''} +
+
+ {/if} + + + + + +
diff --git a/src/client/SelectWord.svelte b/src/client/SelectWord.svelte new file mode 100644 index 0000000..bcbff2b --- /dev/null +++ b/src/client/SelectWord.svelte @@ -0,0 +1,22 @@ + + + +

Pick a word!

+ +
+ {#each words as word} + + {/each} +
+
diff --git a/src/client/WaitingLobby.svelte b/src/client/WaitingLobby.svelte new file mode 100644 index 0000000..e3b0cae --- /dev/null +++ b/src/client/WaitingLobby.svelte @@ -0,0 +1,65 @@ + + + +

+ Waiting for + {#if host} + players + {:else} + the host + {/if} +

+ +
+

+ Players +

+ +
    + {#each players as player} +
  • + + {player.username} + + + {#if player.isHost} + + Host + + {/if} +
  • + {/each} +
+
+ + {#if host} +
+

Game

+ +
+ {/if} +
+ + +

How to play

+ +

+ A random player will be chosen to pick a word, which they will then have to draw it in front of everyone else. + +
+ + All incorrect guesses are broadcast to the chat window for every player though, so be careful! +

+
diff --git a/src/components/Button.svelte b/src/components/Button.svelte new file mode 100644 index 0000000..c294b4e --- /dev/null +++ b/src/components/Button.svelte @@ -0,0 +1,19 @@ + + + diff --git a/src/components/Card.svelte b/src/components/Card.svelte new file mode 100644 index 0000000..72f7000 --- /dev/null +++ b/src/components/Card.svelte @@ -0,0 +1,7 @@ +
+
+
+ +
+
+
diff --git a/src/components/TextInput.svelte b/src/components/TextInput.svelte new file mode 100644 index 0000000..9c6dacf --- /dev/null +++ b/src/components/TextInput.svelte @@ -0,0 +1,23 @@ + + + +
+
+ { + if (e.key === 'Enter') { + dispatch('submit', value); + } + }}> +
+
diff --git a/src/components/utils.ts b/src/components/utils.ts new file mode 100644 index 0000000..63b5beb --- /dev/null +++ b/src/components/utils.ts @@ -0,0 +1 @@ +export type BulmaColour = 'primary' | 'link' | 'success' | 'warning' | 'danger'; diff --git a/src/lib/socket.ts b/src/lib/socket.ts new file mode 100644 index 0000000..382448b --- /dev/null +++ b/src/lib/socket.ts @@ -0,0 +1,43 @@ +export interface ServerToClientEvents { + playerJoined: (username: string) => void; + playerLeft: (username: string) => void; + becameHost: (username: string) => void; + waitForWordPick: () => void; + pickWord: (words: string[]) => void; + startGuessing: () => void; + startDrawing: () => void; + chatMessage: (author: string, message: string) => void; + gameOver: (result: GameOver) => void; +} + +export interface GameOver { + leaderboard: (Player & { time: number })[]; + drawer: string; + word: string; +} + +type Result = { error: false; data: T } | { error: true; message: string }; + +export interface ClientToServerEvents { + joinGame: (id: string, username: string, callback: (result: Result<{id: string, isHost: boolean, players: Player[]}>) => void) => void; + startGame: () => void; + + pickWord: (word: string) => void; + guessWord: (word: string, callback: (success: boolean) => void) => void; +} + +export interface SocketData { + gameId: string; +} + +export interface Player { + username: string; + isHost: boolean; +} + +export type GameState = 'waiting' | 'selectingWord' | 'waitingForWord' | 'drawing' | 'guessing' | 'guessedCorrectly' | 'gameOver'; + +export interface ChatMessage { + author: string; + message: string; +} diff --git a/src/lib/util.ts b/src/lib/util.ts new file mode 100644 index 0000000..9928b77 --- /dev/null +++ b/src/lib/util.ts @@ -0,0 +1,27 @@ +export function sleep(ms: number): Promise { + return new Promise((resolve) => setTimeout(resolve, ms)); +} + +// https://www.tutorialspoint.com/levenshtein-distance-in-javascript +export function levenshteinDistance(a: string, b: string): number { + const track: number[][] = Array(b.length + 1) + .fill(null) + .map(() => Array(a.length + 1).fill(null)); + for (let i = 0; i <= a.length; i += 1) { + track[0][i] = i; + } + for (let j = 0; j <= b.length; j += 1) { + track[j][0] = j; + } + for (let j = 1; j <= b.length; j += 1) { + for (let i = 1; i <= a.length; i += 1) { + const indicator = a[i - 1] === b[j - 1] ? 0 : 1; + track[j][i] = Math.min( + track[j][i - 1] + 1, // deletion + track[j - 1][i] + 1, // insertion + track[j - 1][i - 1] + indicator // substitution + ); + } + } + return track[b.length][a.length]; +} diff --git a/src/main.ts b/src/main.ts new file mode 100644 index 0000000..ae18da5 --- /dev/null +++ b/src/main.ts @@ -0,0 +1,10 @@ +import './app.css'; +import App from './App.svelte'; +import '@fontsource/noto-sans'; +import 'bulma/css/bulma.css'; + +const app = new App({ + target: document.getElementById('app'), +}); + +export default app; diff --git a/src/server/game.ts b/src/server/game.ts new file mode 100644 index 0000000..c6591c6 --- /dev/null +++ b/src/server/game.ts @@ -0,0 +1,147 @@ +import type { Server, Socket } from "socket.io"; +import type { ClientToServerEvents, Player, ServerToClientEvents, SocketData } from "src/lib/socket"; +import { levenshteinDistance } from "../lib/util.js"; +import randomWords from "./words.js"; + +export class Game { + io: Server; + gameId: string; + players: Map; + host: string; + + startTime: number | null; + currentPlayer: string | null; + currentWord: string | null; + successfulPlayers: [string, number][]; + + constructor(gameId: string, io: Server) { + this.io = io; + this.gameId = gameId; + this.players = new Map(); + } + + playerJoin(socket: Socket, username: string): string | Player { + for (const player of this.players.values()) { + if (player.username === username) { + return 'username taken'; + } + } + + const isHost = this.players.size === 0; + + if (isHost) { + this.host = socket.id; + } + + const player: Player = { + isHost, + username, + }; + this.players.set(socket.id, player); + + return player; + } + + /** + * Called when a client socket disconnects. + * + * @param socket Socket that has just disconnected + * @returns true if the game is empty, false otherwise + */ + playerLeft(socket: Socket): boolean { + const player = this.players.get(socket.id); + this.players.delete(socket.id); + if (this.players.size === 0) return true; + if (player.isHost) { + // we need to assign a new host for this room + const playerIds = Array.from(this.players.keys()); + const newHostId = playerIds[Math.floor(Math.random() * playerIds.length)]; + const newHost = this.players.get(newHostId); + newHost.isHost = true; + this.io.to(this.gameId).emit('becameHost', newHost.username); + this.host = newHostId; + } + this.io.to(this.gameId).emit('playerLeft', player.username); + return false; + } + + /** + * Called when the host presses the 'Start game' button. + * Will pick a random player to choose a word, and then + * broadcast the start to the other players. + */ + gameStart(socket: Socket) { + if (!this.players.get(socket.id).isHost) return; + + const playerIds = Array.from(this.players.keys()); + const player = playerIds[Math.floor(Math.random() * playerIds.length)]; + const words = randomWords(3); + this.currentPlayer = player; + this.successfulPlayers = []; + this.io.to(this.gameId).except(player).emit('waitForWordPick'); + this.io.to(player).emit('pickWord', words); + } + + pickWord(socket: Socket, word: string) { + if (socket.id !== this.currentPlayer) return; + this.currentWord = word; + this.io.to(this.gameId).except(socket.id).emit('startGuessing'); + this.io.to(socket.id).emit('startDrawing'); + this.startTime = new Date().getTime(); + } + + /** + * Called when a player makes a guess during a game. + * + * @param socket The socket of the player that made the guess + * @param guess The word that the player guessed + * @returns true if the word was correct, false otherwise + */ + guessWord(socket: Socket, guess: string): boolean { + if (!this.currentWord || this.successfulPlayers.find(([id, _]) => id === socket.id) !== undefined) return; + + const player = this.players.get(socket.id); + + if (guess.toLocaleLowerCase() === this.currentWord.toLocaleLowerCase()) { + // Correct answer! + this.io.to(this.gameId).except(socket.id).emit('chatMessage', 'game', `${player.username} guessed the correct word`); + this.successfulPlayers.push([socket.id, new Date().getTime() - this.startTime]); + + return true; + } else if (levenshteinDistance(guess.toLocaleLowerCase(), this.currentWord.toLocaleLowerCase()) <= 2) { + // close guess + this.io.to(socket.id).emit('chatMessage', 'game', `${guess} is close!`); + } + + // Broadcast incorrect guesses to all players + this.io.to(this.gameId).emit('chatMessage', player.username, guess); + + return false; + } + + checkGameOver() { + if (this.isGameOver()) { + const leaderboard = this.successfulPlayers.map(([id, time]) => { + const p = this.players.get(id); + return { + ...p, + time, + }; + }); + this.io.to(this.gameId).emit('gameOver', { + leaderboard, + drawer: this.players.get(this.currentPlayer).username, + word: this.currentWord, + }); + } + } + + private isGameOver(): boolean { + for (const id of this.players.keys()) { + if (id !== this.currentPlayer && this.successfulPlayers.find(([i, _]) => id === i) === undefined) { + return false; + } + } + return true; + } +} diff --git a/src/server/main.ts b/src/server/main.ts new file mode 100644 index 0000000..72d389a --- /dev/null +++ b/src/server/main.ts @@ -0,0 +1,109 @@ +import { Server } from 'socket.io'; +import type { + ClientToServerEvents, + Player, + ServerToClientEvents, + SocketData, +} from 'src/lib/socket'; +import { Game } from './game.js'; +import randomWords from './words.js'; + +const io = new Server< + ClientToServerEvents, + ServerToClientEvents, + {}, + SocketData +>({ + cors: { + origin: true, + }, +}); + +const games = new Map(); + +io.on('connection', (socket) => { + socket.on('joinGame', (gameId, username, callback) => { + if (gameId.length < 1 || gameId.length > 32) { + callback({ + error: true, + message: 'invalid game id', + }); + return; + } + + if (username.length === 0 || !/^[a-zA-Z0-9]+$/.test(username)) { + callback({ + error: true, + message: 'invalid username', + }); + return; + } + + if (!games.has(gameId)) { + games.set(gameId, new Game(gameId, io)); + } + const room = games.get(gameId); + + const player = room.playerJoin(socket, username); + if (typeof player === 'string') { + return callback({ + error: true, + message: player, + }); + } + + io.to(gameId).emit('playerJoined', username); + + socket.data.gameId = gameId; + socket.rooms.forEach(room => room !== socket.id && socket.leave(room)); + socket.join(gameId); + + const players = Array.from(room.players.values()); + + players.sort((a, b) => a.username.localeCompare(b.username)); + + callback({ + error: false, + data: { + id: gameId, + isHost: player.isHost, + players, + }, + }); + }); + + socket.on('startGame', () => { + if (!socket.data.gameId) return; + const game = games.get(socket.data.gameId); + + game.gameStart(socket); + }); + + socket.on('pickWord', (word) => { + if (!socket.data.gameId) return; + const game = games.get(socket.data.gameId); + + game.pickWord(socket, word); + }); + + socket.on('guessWord', (word, callback) => { + if (!socket.data.gameId) return; + const game = games.get(socket.data.gameId); + + const result = game.guessWord(socket, word); + callback(result); + game.checkGameOver(); + }); + + socket.on('disconnecting', () => { + socket.leave(socket.id); + if (socket.data.gameId) { + if (games.get(socket.data.gameId).playerLeft(socket)) { + games.delete(socket.data.gameId); + } + } + }); +}); + +console.log('listening on port :3000'); +io.listen(3000); diff --git a/src/server/words.ts b/src/server/words.ts new file mode 100644 index 0000000..148bcf5 --- /dev/null +++ b/src/server/words.ts @@ -0,0 +1,14 @@ +import words from '../assets/wordlist.json' assert {type: 'json'}; + +export default function randomWords(count = 3): string[] { + const randomWords: string[] = []; + + while (randomWords.length < count) { + const word = words[Math.floor(Math.random() * words.length)]; + if (!randomWords.includes(word)) { + randomWords.push(word); + } + } + + return randomWords; +} diff --git a/src/vite-env.d.ts b/src/vite-env.d.ts new file mode 100644 index 0000000..4078e74 --- /dev/null +++ b/src/vite-env.d.ts @@ -0,0 +1,2 @@ +/// +/// diff --git a/svelte.config.js b/svelte.config.js new file mode 100644 index 0000000..3630bb3 --- /dev/null +++ b/svelte.config.js @@ -0,0 +1,7 @@ +import sveltePreprocess from 'svelte-preprocess' + +export default { + // Consult https://github.com/sveltejs/svelte-preprocess + // for more information about preprocessors + preprocess: sveltePreprocess() +} diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..d383031 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,21 @@ +{ + "extends": "@tsconfig/svelte/tsconfig.json", + "compilerOptions": { + "target": "ESNext", + "useDefineForClassFields": true, + "module": "ESNext", + "resolveJsonModule": true, + "baseUrl": ".", + /** + * Typecheck JS in `.svelte` and `.js` files by default. + * Disable checkJs if you'd like to use dynamic types in JS. + * Note that setting allowJs false does not prevent the use + * of JS in `.svelte` files. + */ + "allowJs": true, + "checkJs": true, + "isolatedModules": true + }, + "include": ["src/**/*.d.ts", "src/**/*.ts", "src/**/*.js", "src/**/*.svelte"], + "references": [{ "path": "./tsconfig.node.json" }] +} diff --git a/tsconfig.node.json b/tsconfig.node.json new file mode 100644 index 0000000..65dbdb9 --- /dev/null +++ b/tsconfig.node.json @@ -0,0 +1,8 @@ +{ + "compilerOptions": { + "composite": true, + "module": "ESNext", + "moduleResolution": "Node" + }, + "include": ["vite.config.ts"] +} diff --git a/vite.config.ts b/vite.config.ts new file mode 100644 index 0000000..001cd8b --- /dev/null +++ b/vite.config.ts @@ -0,0 +1,30 @@ +import { defineConfig } from 'vite' +import { svelte } from '@sveltejs/vite-plugin-svelte' +import { VitePWA } from 'vite-plugin-pwa'; + +// https://vitejs.dev/config/ +export default defineConfig({ + plugins: [ + svelte(), + VitePWA({ + includeAssets: ['favicon.png', 'apple-touch-icon.png'], + manifest: { + name: 'Doodly', + short_name: 'Doodly', + description: 'Drawing game with friends', + theme_color: '#ffffff', + icons: [ + { + src: 'favicon.png', + sizes: '256x256', + type: 'image/png', + },{ + src: 'favicon-192.png', + sizes: '192x192', + type: 'image/png', + }, + ], + }, + }), + ], +});