diff --git a/.gitignore b/.gitignore
index d9efd1a4aab54037561a102945843e476b7c1e13..7b5ed0cb6f02cb746c0e6537e2c5deb23b32afbb 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,6 +1,6 @@
-.snowpack
-build
-node_modules/
-.pnpm-store
-coverage/
-.vscode/
+/dist
+/node_modules
+/.pnpm-store
+/coverage
+
+/.vscode
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 43f787a207e221728a418bee0cd462a90a143766..e3a9f8442fa604b6312d3d3bd0298c344ea15a94 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -36,7 +36,7 @@ build:
     - npm run build
   artifacts:
     paths:
-      - build
+      - dist
 
 # Deploy main branch to contact.greenhost.net
 deploy-staging:
@@ -54,7 +54,7 @@ deploy-staging:
     DOMAIN_NAME: 'greenhost.net'
     SUBDOMAIN: 'contact'
     SUBFOLDER: '/staging'
-    BUILD_FOLDER: './build'
+    BUILD_FOLDER: './dist'
   before_script:
     - apt-get update
     - apt-get install -y rsync openssh-client
diff --git a/README.md b/README.md
index ef5adcc6bf5fcdd0c497e713c61fad5045658ed9..a2dcefdf7e2e3551c7cfa55aaf5099eb3fd5dc2d 100644
--- a/README.md
+++ b/README.md
@@ -39,7 +39,7 @@ You will also see any lint errors in the console.
 
 ### npm run build
 
-Builds a static copy of your site to the `build/` folder.
+Builds a static copy of your site to the `dist/` folder.
 Your app is ready to be deployed!
 
 ### npm test
diff --git a/babel.config.js b/babel.config.js
new file mode 100644
index 0000000000000000000000000000000000000000..03ab8bf74c7738e19ea8dcc924b6ea52f4eb195f
--- /dev/null
+++ b/babel.config.js
@@ -0,0 +1,7 @@
+module.exports = {
+  presets: [
+    '@babel/preset-env',
+    '@babel/preset-react',
+    '@babel/preset-typescript',
+  ],
+};
diff --git a/jest.config.js b/jest.config.js
index 7e3659738234237b5cdaff14783d201e350a035e..e4bbe374a6618d765c8b215ef12335144114909f 100644
--- a/jest.config.js
+++ b/jest.config.js
@@ -1,7 +1,17 @@
-module.exports = {
-  ...require('@snowpack/app-scripts-react/jest.config.js')(),
-  moduleNameMapper: {
-    '\\.[as]?css$': 'identity-obj-proxy',
-  },
+module.exports = function () {
+  return {
+    moduleNameMapper: {
+      ".+\\.(css|sass|scss)$": `identity-obj-proxy`,
+    },
+    rootDir: '.',
+    setupFilesAfterEnv: ['<rootDir>/jest.setup.js'],
+    testMatch: [
+      '<rootDir>/src/**/__tests__/**/*.{js,jsx,ts,tsx}',
+      '<rootDir>/src/**/*.{spec,test}.{js,jsx,ts,tsx}',
+    ],
+    transform: {
+      '^.+\\.(js|jsx|ts|tsx)$': "babel-jest",
+    },
+    transformIgnorePatterns: ['node_modules'],
+  };
 };
-
diff --git a/package.json b/package.json
index e590c60d597ea514d674a80a4c8d99897edbc689..7a79cd6cb1eb14dd5aa4a091b4ce270e636e7260 100644
--- a/package.json
+++ b/package.json
@@ -4,8 +4,8 @@
   "description": "Webform for helping users check the status of their web services and get help if required.",
   "main": "index.js",
   "scripts": {
-    "start": "snowpack dev",
-    "build": "snowpack build",
+    "start": "webpack serve --open --host 0.0.0.0 --mode=development",
+    "build": "webpack --mode=production",
     "test": "jest --coverage --watchAll",
     "format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,yaml}\"",
     "lint": "prettier --check \"src/**/*.{js,jsx,ts,tsx,yaml}\""
@@ -14,8 +14,11 @@
     "type": "git",
     "url": "https://open.greenhost.net/greenhost/outage-form"
   },
-  "author": "Mark Swillus, Tin Geber, Chris Snijder",
+  "author": "Tin Geber, Arie Peterson, Chris Snijder, Mark Swillus",
   "license": "Apache-2.0",
+  "browserslist": [
+    "defaults"
+  ],
   "dependencies": {
     "i18next": "^19.8.7",
     "js-yaml": "^4.0.0",
@@ -25,12 +28,7 @@
   },
   "devDependencies": {
     "@babel/preset-react": "^7.12.13",
-    "@snowpack/app-scripts-react": "^2.0.0",
-    "@snowpack/plugin-build-script": "^2.1.0",
-    "@snowpack/plugin-dotenv": "^2.0.5",
-    "@snowpack/plugin-react-refresh": "^2.4.0",
-    "@snowpack/plugin-sass": "^1.3.0",
-    "@snowpack/plugin-typescript": "^1.2.0",
+    "@babel/preset-typescript": "^7.13.0",
     "@testing-library/jest-dom": "^5.11.9",
     "@testing-library/react": "^11.0.0",
     "@testing-library/react-hooks": "^5.0.3",
@@ -39,23 +37,33 @@
     "@types/react": "^17.0.0",
     "@types/react-dom": "^17.0.0",
     "@types/react-transition-group": "^4.4.0",
-    "@types/snowpack-env": "^2.3.2",
     "@typescript-eslint/eslint-plugin": "^4.15.0",
     "@typescript-eslint/parser": "^4.15.0",
+    "babel-jest": "^26.6.3",
     "babel-preset-react-app": "^10.0.0",
+    "copy-webpack-plugin": "^8.1.1",
+    "core-js": "^3.11.3",
+    "css-loader": "^5.2.4",
     "eslint": "^7.20.0",
     "eslint-plugin-jest-dom": "^3.6.5",
     "eslint-plugin-react": "^7.22.0",
     "eslint-plugin-testing-library": "^3.10.1",
     "identity-obj-proxy": "^3.0.0",
     "jest-cli": "^26.6.3",
+    "js-yaml-loader": "^1.2.2",
     "markdown-to-jsx": "^7.1.1",
+    "mini-css-extract-plugin": "^1.6.0",
     "prettier": "^2.0.5",
+    "react-test-renderer": "^17.0.2",
     "react-transition-group": "^4.4.1",
     "rxjs": "^6.6.3",
-    "sass": "^1.32.6",
-    "snowpack": "^3.0.11",
+    "sass": "^1.32.13",
+    "sass-loader": "^11.1.1",
+    "ts-loader": "^8.3.0",
     "ts-node": "^9.1.1",
-    "typescript": "^4.0.0"
+    "typescript": "^4.2.4",
+    "webpack": "^5.37.1",
+    "webpack-cli": "^4.7.0",
+    "webpack-dev-server": "^3.11.2"
   }
 }
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index ffc4fb996aa8c705dea7917da6bf211e82a183cc..ccdff58b528fec54186aa87af6abcaaa13791645 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -1,99 +1,82 @@
 dependencies:
-  i18next: 19.8.7
-  js-yaml: 4.0.0
-  react: 17.0.1
-  react-dom: 17.0.1_react@17.0.1
-  react-i18next: 11.8.5_i18next@19.8.7+react@17.0.1
+  i18next: 19.9.2
+  js-yaml: 4.1.0
+  react: 17.0.2
+  react-dom: 17.0.2_react@17.0.2
+  react-i18next: 11.8.15_i18next@19.9.2+react@17.0.2
 devDependencies:
-  '@babel/preset-react': 7.12.13
-  '@snowpack/app-scripts-react': 2.0.0_c39e9db791ea05e3ec4e0e74abb7a6b5
-  '@snowpack/plugin-build-script': 2.1.0
-  '@snowpack/plugin-dotenv': 2.0.5
-  '@snowpack/plugin-react-refresh': 2.4.0_react-dom@17.0.1+react@17.0.1
-  '@snowpack/plugin-sass': 1.3.0
-  '@snowpack/plugin-typescript': 1.2.1_typescript@4.1.3
-  '@testing-library/jest-dom': 5.11.9
-  '@testing-library/react': 11.2.5_react-dom@17.0.1+react@17.0.1
-  '@testing-library/react-hooks': 5.0.3_react-dom@17.0.1+react@17.0.1
-  '@testing-library/user-event': 12.6.3
-  '@types/jest': 26.0.20
-  '@types/react': 17.0.1
-  '@types/react-dom': 17.0.0
-  '@types/react-transition-group': 4.4.0
-  '@types/snowpack-env': 2.3.3
-  '@typescript-eslint/eslint-plugin': 4.15.0_97ae0b5fdeb2dd2a56389613b9d78781
-  '@typescript-eslint/parser': 4.15.0_eslint@7.20.0+typescript@4.1.3
+  '@babel/preset-react': 7.13.13
+  '@babel/preset-typescript': 7.13.0
+  '@testing-library/jest-dom': 5.12.0
+  '@testing-library/react': 11.2.7_react-dom@17.0.2+react@17.0.2
+  '@testing-library/react-hooks': 5.1.3_fc2bb8a5b006d3f25c5f84ea777e678d
+  '@testing-library/user-event': 12.8.3
+  '@types/jest': 26.0.23
+  '@types/react': 17.0.6
+  '@types/react-dom': 17.0.5
+  '@types/react-transition-group': 4.4.1
+  '@typescript-eslint/eslint-plugin': 4.24.0_59c9e933fd1a489015de5df6809ac2f2
+  '@typescript-eslint/parser': 4.24.0_eslint@7.26.0+typescript@4.2.4
+  babel-jest: 26.6.3
   babel-preset-react-app: 10.0.0
-  eslint: 7.20.0
-  eslint-plugin-jest-dom: 3.6.5_eslint@7.20.0
-  eslint-plugin-react: 7.22.0_eslint@7.20.0
-  eslint-plugin-testing-library: 3.10.1_eslint@7.20.0+typescript@4.1.3
+  copy-webpack-plugin: 8.1.1_webpack@5.37.1
+  core-js: 3.12.1
+  css-loader: 5.2.4_webpack@5.37.1
+  eslint: 7.26.0
+  eslint-plugin-jest-dom: 3.9.0_eslint@7.26.0
+  eslint-plugin-react: 7.23.2_eslint@7.26.0
+  eslint-plugin-testing-library: 3.10.2_eslint@7.26.0+typescript@4.2.4
   identity-obj-proxy: 3.0.0
   jest-cli: 26.6.3_ts-node@9.1.1
-  markdown-to-jsx: 7.1.1_react@17.0.1
-  prettier: 2.2.1
-  react-transition-group: 4.4.1_react-dom@17.0.1+react@17.0.1
-  rxjs: 6.6.3
-  sass: 1.32.6
-  snowpack: 3.0.11
-  ts-node: 9.1.1_typescript@4.1.3
-  typescript: 4.1.3
+  js-yaml-loader: 1.2.2
+  markdown-to-jsx: 7.1.2_react@17.0.2
+  mini-css-extract-plugin: 1.6.0_webpack@5.37.1
+  prettier: 2.3.0
+  react-test-renderer: 17.0.2_react@17.0.2
+  react-transition-group: 4.4.1_react-dom@17.0.2+react@17.0.2
+  rxjs: 6.6.7
+  sass: 1.32.13
+  sass-loader: 11.1.1_sass@1.32.13+webpack@5.37.1
+  ts-loader: 8.3.0_typescript@4.2.4+webpack@5.37.1
+  ts-node: 9.1.1_typescript@4.2.4
+  typescript: 4.2.4
+  webpack: 5.37.1_webpack-cli@4.7.0
+  webpack-cli: 4.7.0_73b101d6e7258082846183368a5d0f22
+  webpack-dev-server: 3.11.2_webpack-cli@4.7.0+webpack@5.37.1
 lockfileVersion: 5.2
 packages:
   /@babel/code-frame/7.12.11:
     dependencies:
-      '@babel/highlight': 7.12.13
+      '@babel/highlight': 7.14.0
     dev: true
     resolution:
       integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==
   /@babel/code-frame/7.12.13:
     dependencies:
-      '@babel/highlight': 7.12.13
+      '@babel/highlight': 7.14.0
     dev: true
     resolution:
       integrity: sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g==
-  /@babel/compat-data/7.12.13:
+  /@babel/compat-data/7.14.0:
     dev: true
     resolution:
-      integrity: sha512-U/hshG5R+SIoW7HVWIdmy1cB7s3ki+r3FpyEZiCgpi4tFgPnX/vynY80ZGSASOIrUM6O7VxOgCZgdt7h97bUGg==
-  /@babel/core/7.12.13:
-    dependencies:
-      '@babel/code-frame': 7.12.13
-      '@babel/generator': 7.12.15
-      '@babel/helper-module-transforms': 7.12.13
-      '@babel/helpers': 7.12.13
-      '@babel/parser': 7.12.15
-      '@babel/template': 7.12.13
-      '@babel/traverse': 7.12.13
-      '@babel/types': 7.12.13
-      convert-source-map: 1.7.0
-      debug: 4.3.1
-      gensync: 1.0.0-beta.2
-      json5: 2.2.0
-      lodash: 4.17.20
-      semver: 5.7.1
-      source-map: 0.5.7
-    dev: true
-    engines:
-      node: '>=6.9.0'
-    resolution:
-      integrity: sha512-BQKE9kXkPlXHPeqissfxo0lySWJcYdEP0hdtJOH/iJfDdhOCcgtNCjftCJg3qqauB4h+lz2N6ixM++b9DN1Tcw==
+      integrity: sha512-vu9V3uMM/1o5Hl5OekMUowo3FqXLJSw+s+66nt0fSWVWTtmosdzn45JHOB3cPtZoe6CTBDzvSw0RdOY85Q37+Q==
   /@babel/core/7.12.3:
     dependencies:
       '@babel/code-frame': 7.12.13
-      '@babel/generator': 7.12.15
-      '@babel/helper-module-transforms': 7.12.13
-      '@babel/helpers': 7.12.13
-      '@babel/parser': 7.12.15
+      '@babel/generator': 7.14.3
+      '@babel/helper-module-transforms': 7.14.2
+      '@babel/helpers': 7.14.0
+      '@babel/parser': 7.14.3
       '@babel/template': 7.12.13
-      '@babel/traverse': 7.12.13
-      '@babel/types': 7.12.13
+      '@babel/traverse': 7.14.2
+      '@babel/types': 7.14.2
       convert-source-map: 1.7.0
       debug: 4.3.1
       gensync: 1.0.0-beta.2
       json5: 2.2.0
-      lodash: 4.17.20
-      resolve: 1.19.0
+      lodash: 4.17.21
+      resolve: 1.20.0
       semver: 5.7.1
       source-map: 0.5.7
     dev: true
@@ -101,114 +84,101 @@ packages:
       node: '>=6.9.0'
     resolution:
       integrity: sha512-0qXcZYKZp3/6N2jKYVxZv0aNCsxTSVCiK72DTiTYZAu7sjg73W0/aynWjMbiGd87EQL4WyA8reiJVh92AVla9g==
-  /@babel/core/7.9.0:
+  /@babel/core/7.14.3:
     dependencies:
       '@babel/code-frame': 7.12.13
-      '@babel/generator': 7.12.15
-      '@babel/helper-module-transforms': 7.12.13
-      '@babel/helpers': 7.12.13
-      '@babel/parser': 7.12.15
+      '@babel/generator': 7.14.3
+      '@babel/helper-compilation-targets': 7.13.16_@babel+core@7.14.3
+      '@babel/helper-module-transforms': 7.14.2
+      '@babel/helpers': 7.14.0
+      '@babel/parser': 7.14.3
       '@babel/template': 7.12.13
-      '@babel/traverse': 7.12.13
-      '@babel/types': 7.12.13
+      '@babel/traverse': 7.14.2
+      '@babel/types': 7.14.2
       convert-source-map: 1.7.0
       debug: 4.3.1
       gensync: 1.0.0-beta.2
       json5: 2.2.0
-      lodash: 4.17.20
-      resolve: 1.19.0
-      semver: 5.7.1
+      semver: 6.3.0
       source-map: 0.5.7
     dev: true
     engines:
       node: '>=6.9.0'
     resolution:
-      integrity: sha512-kWc7L0fw1xwvI0zi8OKVBuxRVefwGOrKSQMvrQ3dW+bIIavBY3/NpXmpjMy7bQnLgwgzWQZ8TlM57YHpHNHz4w==
-  /@babel/generator/7.12.15:
+      integrity: sha512-jB5AmTKOCSJIZ72sd78ECEhuPiDMKlQdDI/4QRI6lzYATx5SSogS1oQA2AoPecRCknm30gHi2l+QVvNUu3wZAg==
+  /@babel/generator/7.14.3:
     dependencies:
-      '@babel/types': 7.12.13
+      '@babel/types': 7.14.2
       jsesc: 2.5.2
       source-map: 0.5.7
     dev: true
     resolution:
-      integrity: sha512-6F2xHxBiFXWNSGb7vyCUTBF8RCLY66rS0zEPcP8t/nQyXjha5EuK4z7H5o7fWG8B4M7y6mqVWq1J+1PuwRhecQ==
+      integrity: sha512-bn0S6flG/j0xtQdz3hsjJ624h3W0r3llttBMfyHX3YrZ/KtLYr15bjA0FXkgW7FpvrDuTuElXeVjiKlYRpnOFA==
   /@babel/helper-annotate-as-pure/7.12.13:
     dependencies:
-      '@babel/types': 7.12.13
+      '@babel/types': 7.14.2
     dev: true
     resolution:
       integrity: sha512-7YXfX5wQ5aYM/BOlbSccHDbuXXFPxeoUmfWtz8le2yTkTZc+BxsiEnENFoi2SlmA8ewDkG2LgIMIVzzn2h8kfw==
   /@babel/helper-builder-binary-assignment-operator-visitor/7.12.13:
     dependencies:
-      '@babel/helper-explode-assignable-expression': 7.12.13
-      '@babel/types': 7.12.13
+      '@babel/helper-explode-assignable-expression': 7.13.0
+      '@babel/types': 7.14.2
     dev: true
     resolution:
       integrity: sha512-CZOv9tGphhDRlVjVkAgm8Nhklm9RzSmWpX2my+t7Ua/KT616pEzXsQCjinzvkRvHWJ9itO4f296efroX23XCMA==
-  /@babel/helper-compilation-targets/7.12.13_@babel+core@7.12.3:
+  /@babel/helper-compilation-targets/7.13.16_@babel+core@7.12.3:
     dependencies:
-      '@babel/compat-data': 7.12.13
+      '@babel/compat-data': 7.14.0
       '@babel/core': 7.12.3
-      '@babel/helper-validator-option': 7.12.11
-      browserslist: 4.16.3
-      semver: 5.7.1
+      '@babel/helper-validator-option': 7.12.17
+      browserslist: 4.16.6
+      semver: 6.3.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0
     resolution:
-      integrity: sha512-dXof20y/6wB5HnLOGyLh/gobsMvDNoekcC+8MCV2iaTd5JemhFkPD73QB+tK3iFC9P0xJC73B6MvKkyUfS9cCw==
-  /@babel/helper-compilation-targets/7.12.13_@babel+core@7.9.0:
+      integrity: sha512-3gmkYIrpqsLlieFwjkGgLaSHmhnvlAYzZLlYVjlW+QwI+1zE17kGxuJGmIqDQdYp56XdmGeD+Bswx0UTyG18xA==
+  /@babel/helper-compilation-targets/7.13.16_@babel+core@7.14.3:
     dependencies:
-      '@babel/compat-data': 7.12.13
-      '@babel/core': 7.9.0
-      '@babel/helper-validator-option': 7.12.11
-      browserslist: 4.16.3
-      semver: 5.7.1
+      '@babel/compat-data': 7.14.0
+      '@babel/core': 7.14.3
+      '@babel/helper-validator-option': 7.12.17
+      browserslist: 4.16.6
+      semver: 6.3.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0
     resolution:
-      integrity: sha512-dXof20y/6wB5HnLOGyLh/gobsMvDNoekcC+8MCV2iaTd5JemhFkPD73QB+tK3iFC9P0xJC73B6MvKkyUfS9cCw==
-  /@babel/helper-create-class-features-plugin/7.12.13_@babel+core@7.12.13:
+      integrity: sha512-3gmkYIrpqsLlieFwjkGgLaSHmhnvlAYzZLlYVjlW+QwI+1zE17kGxuJGmIqDQdYp56XdmGeD+Bswx0UTyG18xA==
+  /@babel/helper-create-class-features-plugin/7.14.3:
     dependencies:
-      '@babel/core': 7.12.13
-      '@babel/helper-function-name': 7.12.13
-      '@babel/helper-member-expression-to-functions': 7.12.13
+      '@babel/helper-annotate-as-pure': 7.12.13
+      '@babel/helper-function-name': 7.14.2
+      '@babel/helper-member-expression-to-functions': 7.13.12
       '@babel/helper-optimise-call-expression': 7.12.13
-      '@babel/helper-replace-supers': 7.12.13
+      '@babel/helper-replace-supers': 7.14.3
       '@babel/helper-split-export-declaration': 7.12.13
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0
     resolution:
-      integrity: sha512-Vs/e9wv7rakKYeywsmEBSRC9KtmE7Px+YBlESekLeJOF0zbGUicGfXSNi3o+tfXSNS48U/7K9mIOOCR79Cl3+Q==
-  /@babel/helper-create-class-features-plugin/7.12.13_@babel+core@7.12.3:
+      integrity: sha512-BnEfi5+6J2Lte9LeiL6TxLWdIlEv9Woacc1qXzXBgbikcOzMRM2Oya5XGg/f/ngotv1ej2A/b+3iJH8wbS1+lQ==
+  /@babel/helper-create-class-features-plugin/7.14.3_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-function-name': 7.12.13
-      '@babel/helper-member-expression-to-functions': 7.12.13
-      '@babel/helper-optimise-call-expression': 7.12.13
-      '@babel/helper-replace-supers': 7.12.13
-      '@babel/helper-split-export-declaration': 7.12.13
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0
-    resolution:
-      integrity: sha512-Vs/e9wv7rakKYeywsmEBSRC9KtmE7Px+YBlESekLeJOF0zbGUicGfXSNi3o+tfXSNS48U/7K9mIOOCR79Cl3+Q==
-  /@babel/helper-create-class-features-plugin/7.12.13_@babel+core@7.9.0:
-    dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-function-name': 7.12.13
-      '@babel/helper-member-expression-to-functions': 7.12.13
+      '@babel/helper-annotate-as-pure': 7.12.13
+      '@babel/helper-function-name': 7.14.2
+      '@babel/helper-member-expression-to-functions': 7.13.12
       '@babel/helper-optimise-call-expression': 7.12.13
-      '@babel/helper-replace-supers': 7.12.13
+      '@babel/helper-replace-supers': 7.14.3
       '@babel/helper-split-export-declaration': 7.12.13
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0
     resolution:
-      integrity: sha512-Vs/e9wv7rakKYeywsmEBSRC9KtmE7Px+YBlESekLeJOF0zbGUicGfXSNi3o+tfXSNS48U/7K9mIOOCR79Cl3+Q==
-  /@babel/helper-create-regexp-features-plugin/7.12.13_@babel+core@7.12.3:
+      integrity: sha512-BnEfi5+6J2Lte9LeiL6TxLWdIlEv9Woacc1qXzXBgbikcOzMRM2Oya5XGg/f/ngotv1ej2A/b+3iJH8wbS1+lQ==
+  /@babel/helper-create-regexp-features-plugin/7.14.3_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
       '@babel/helper-annotate-as-pure': 7.12.13
@@ -217,364 +187,263 @@ packages:
     peerDependencies:
       '@babel/core': ^7.0.0
     resolution:
-      integrity: sha512-XC+kiA0J3at6E85dL5UnCYfVOcIZ834QcAY0TIpgUVnz0zDzg+0TtvZTnJ4g9L1dPRGe30Qi03XCIS4tYCLtqw==
-  /@babel/helper-create-regexp-features-plugin/7.12.13_@babel+core@7.9.0:
-    dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-annotate-as-pure': 7.12.13
-      regexpu-core: 4.7.1
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0
-    resolution:
-      integrity: sha512-XC+kiA0J3at6E85dL5UnCYfVOcIZ834QcAY0TIpgUVnz0zDzg+0TtvZTnJ4g9L1dPRGe30Qi03XCIS4tYCLtqw==
-  /@babel/helper-explode-assignable-expression/7.12.13:
+      integrity: sha512-JIB2+XJrb7v3zceV2XzDhGIB902CmKGSpSl4q2C6agU9SNLG/2V1RtFRGPG1Ajh9STj3+q6zJMOC+N/pp2P9DA==
+  /@babel/helper-explode-assignable-expression/7.13.0:
     dependencies:
-      '@babel/types': 7.12.13
+      '@babel/types': 7.14.2
     dev: true
     resolution:
-      integrity: sha512-5loeRNvMo9mx1dA/d6yNi+YiKziJZFylZnCo1nmFF4qPU4yJ14abhWESuSMQSlQxWdxdOFzxXjk/PpfudTtYyw==
-  /@babel/helper-function-name/7.12.13:
+      integrity: sha512-qS0peLTDP8kOisG1blKbaoBg/o9OSa1qoumMjTK5pM+KDTtpxpsiubnCGP34vK8BXGcb2M9eigwgvoJryrzwWA==
+  /@babel/helper-function-name/7.14.2:
     dependencies:
       '@babel/helper-get-function-arity': 7.12.13
       '@babel/template': 7.12.13
-      '@babel/types': 7.12.13
+      '@babel/types': 7.14.2
     dev: true
     resolution:
-      integrity: sha512-TZvmPn0UOqmvi5G4vvw0qZTpVptGkB1GL61R6lKvrSdIxGm5Pky7Q3fpKiIkQCAtRCBUwB0PaThlx9vebCDSwA==
+      integrity: sha512-NYZlkZRydxw+YT56IlhIcS8PAhb+FEUiOzuhFTfqDyPmzAhRge6ua0dQYT/Uh0t/EDHq05/i+e5M2d4XvjgarQ==
   /@babel/helper-get-function-arity/7.12.13:
     dependencies:
-      '@babel/types': 7.12.13
+      '@babel/types': 7.14.2
     dev: true
     resolution:
       integrity: sha512-DjEVzQNz5LICkzN0REdpD5prGoidvbdYk1BVgRUOINaWJP2t6avB27X1guXK1kXNrX0WMfsrm1A/ZBthYuIMQg==
-  /@babel/helper-hoist-variables/7.12.13:
+  /@babel/helper-hoist-variables/7.13.16:
     dependencies:
-      '@babel/types': 7.12.13
+      '@babel/traverse': 7.14.2
+      '@babel/types': 7.14.2
     dev: true
     resolution:
-      integrity: sha512-KSC5XSj5HreRhYQtZ3cnSnQwDzgnbdUDEFsxkN0m6Q3WrCRt72xrnZ8+h+pX7YxM7hr87zIO3a/v5p/H3TrnVw==
-  /@babel/helper-member-expression-to-functions/7.12.13:
+      integrity: sha512-1eMtTrXtrwscjcAeO4BVK+vvkxaLJSPFz1w1KLawz6HLNi9bPFGBNwwDyVfiu1Tv/vRRFYfoGaKhmAQPGPn5Wg==
+  /@babel/helper-member-expression-to-functions/7.13.12:
     dependencies:
-      '@babel/types': 7.12.13
+      '@babel/types': 7.14.2
     dev: true
     resolution:
-      integrity: sha512-B+7nN0gIL8FZ8SvMcF+EPyB21KnCcZHQZFczCxbiNGV/O0rsrSBlWGLzmtBJ3GMjSVMIm4lpFhR+VdVBuIsUcQ==
-  /@babel/helper-module-imports/7.12.13:
+      integrity: sha512-48ql1CLL59aKbU94Y88Xgb2VFy7a95ykGRbJJaaVv+LX5U8wFpLfiGXJJGUozsmA1oEh/o5Bp60Voq7ACyA/Sw==
+  /@babel/helper-module-imports/7.13.12:
     dependencies:
-      '@babel/types': 7.12.13
+      '@babel/types': 7.14.2
     dev: true
     resolution:
-      integrity: sha512-NGmfvRp9Rqxy0uHSSVP+SRIW1q31a7Ji10cLBcqSDUngGentY4FRiHOFZFE1CLU5eiL0oE8reH7Tg1y99TDM/g==
-  /@babel/helper-module-transforms/7.12.13:
+      integrity: sha512-4cVvR2/1B693IuOvSI20xqqa/+bl7lqAMR59R4iu39R9aOX8/JoYY1sFaNvUMyMBGnHdwvJgUrzNLoUZxXypxA==
+  /@babel/helper-module-transforms/7.14.2:
     dependencies:
-      '@babel/helper-module-imports': 7.12.13
-      '@babel/helper-replace-supers': 7.12.13
-      '@babel/helper-simple-access': 7.12.13
+      '@babel/helper-module-imports': 7.13.12
+      '@babel/helper-replace-supers': 7.14.3
+      '@babel/helper-simple-access': 7.13.12
       '@babel/helper-split-export-declaration': 7.12.13
-      '@babel/helper-validator-identifier': 7.12.11
+      '@babel/helper-validator-identifier': 7.14.0
       '@babel/template': 7.12.13
-      '@babel/traverse': 7.12.13
-      '@babel/types': 7.12.13
-      lodash: 4.17.20
+      '@babel/traverse': 7.14.2
+      '@babel/types': 7.14.2
     dev: true
     resolution:
-      integrity: sha512-acKF7EjqOR67ASIlDTupwkKM1eUisNAjaSduo5Cz+793ikfnpe7p4Q7B7EWU2PCoSTPWsQkR7hRUWEIZPiVLGA==
+      integrity: sha512-OznJUda/soKXv0XhpvzGWDnml4Qnwp16GN+D/kZIdLsWoHj05kyu8Rm5kXmMef+rVJZ0+4pSGLkeixdqNUATDA==
   /@babel/helper-optimise-call-expression/7.12.13:
     dependencies:
-      '@babel/types': 7.12.13
+      '@babel/types': 7.14.2
     dev: true
     resolution:
       integrity: sha512-BdWQhoVJkp6nVjB7nkFWcn43dkprYauqtk++Py2eaf/GRDFm5BxRqEIZCiHlZUGAVmtwKcsVL1dC68WmzeFmiA==
-  /@babel/helper-plugin-utils/7.12.13:
+  /@babel/helper-plugin-utils/7.13.0:
     dev: true
     resolution:
-      integrity: sha512-C+10MXCXJLiR6IeG9+Wiejt9jmtFpxUc3MQqCmPY8hfCjyUGl9kT+B2okzEZrtykiwrc4dbCPdDoz0A/HQbDaA==
-  /@babel/helper-remap-async-to-generator/7.12.13:
+      integrity: sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==
+  /@babel/helper-remap-async-to-generator/7.13.0:
     dependencies:
       '@babel/helper-annotate-as-pure': 7.12.13
-      '@babel/helper-wrap-function': 7.12.13
-      '@babel/types': 7.12.13
+      '@babel/helper-wrap-function': 7.13.0
+      '@babel/types': 7.14.2
     dev: true
     resolution:
-      integrity: sha512-Qa6PU9vNcj1NZacZZI1Mvwt+gXDH6CTfgAkSjeRMLE8HxtDK76+YDId6NQR+z7Rgd5arhD2cIbS74r0SxD6PDA==
-  /@babel/helper-replace-supers/7.12.13:
+      integrity: sha512-pUQpFBE9JvC9lrQbpX0TmeNIy5s7GnZjna2lhhcHC7DzgBs6fWn722Y5cfwgrtrqc7NAJwMvOa0mKhq6XaE4jg==
+  /@babel/helper-replace-supers/7.14.3:
     dependencies:
-      '@babel/helper-member-expression-to-functions': 7.12.13
+      '@babel/helper-member-expression-to-functions': 7.13.12
       '@babel/helper-optimise-call-expression': 7.12.13
-      '@babel/traverse': 7.12.13
-      '@babel/types': 7.12.13
+      '@babel/traverse': 7.14.2
+      '@babel/types': 7.14.2
     dev: true
     resolution:
-      integrity: sha512-pctAOIAMVStI2TMLhozPKbf5yTEXc0OJa0eENheb4w09SrgOWEs+P4nTOZYJQCqs8JlErGLDPDJTiGIp3ygbLg==
-  /@babel/helper-simple-access/7.12.13:
+      integrity: sha512-Rlh8qEWZSTfdz+tgNV/N4gz1a0TMNwCUcENhMjHTHKp3LseYH5Jha0NSlyTQWMnjbYcwFt+bqAMqSLHVXkQ6UA==
+  /@babel/helper-simple-access/7.13.12:
     dependencies:
-      '@babel/types': 7.12.13
+      '@babel/types': 7.14.2
     dev: true
     resolution:
-      integrity: sha512-0ski5dyYIHEfwpWGx5GPWhH35j342JaflmCeQmsPWcrOQDtCN6C1zKAVRFVbK53lPW2c9TsuLLSUDf0tIGJ5hA==
+      integrity: sha512-7FEjbrx5SL9cWvXioDbnlYTppcZGuCY6ow3/D5vMggb2Ywgu4dMrpTJX0JdQAIcRRUElOIxF3yEooa9gUb9ZbA==
   /@babel/helper-skip-transparent-expression-wrappers/7.12.1:
     dependencies:
-      '@babel/types': 7.12.13
+      '@babel/types': 7.14.2
     dev: true
     resolution:
       integrity: sha512-Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA==
   /@babel/helper-split-export-declaration/7.12.13:
     dependencies:
-      '@babel/types': 7.12.13
+      '@babel/types': 7.14.2
     dev: true
     resolution:
       integrity: sha512-tCJDltF83htUtXx5NLcaDqRmknv652ZWCHyoTETf1CXYJdPC7nohZohjUgieXhv0hTJdRf2FjDueFehdNucpzg==
-  /@babel/helper-validator-identifier/7.12.11:
+  /@babel/helper-validator-identifier/7.14.0:
     dev: true
     resolution:
-      integrity: sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==
-  /@babel/helper-validator-option/7.12.11:
+      integrity: sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A==
+  /@babel/helper-validator-option/7.12.17:
     dev: true
     resolution:
-      integrity: sha512-TBFCyj939mFSdeX7U7DDj32WtzYY7fDcalgq8v3fBZMNOJQNn7nOYzMaUCiPxPYfCup69mtIpqlKgMZLvQ8Xhw==
-  /@babel/helper-wrap-function/7.12.13:
+      integrity: sha512-TopkMDmLzq8ngChwRlyjR6raKD6gMSae4JdYDB8bByKreQgG0RBTuKe9LRxW3wFtUnjxOPRKBDwEH6Mg5KeDfw==
+  /@babel/helper-wrap-function/7.13.0:
     dependencies:
-      '@babel/helper-function-name': 7.12.13
+      '@babel/helper-function-name': 7.14.2
       '@babel/template': 7.12.13
-      '@babel/traverse': 7.12.13
-      '@babel/types': 7.12.13
+      '@babel/traverse': 7.14.2
+      '@babel/types': 7.14.2
     dev: true
     resolution:
-      integrity: sha512-t0aZFEmBJ1LojdtJnhOaQEVejnzYhyjWHSsNSNo8vOYRbAJNh6r6GQF7pd36SqG7OKGbn+AewVQ/0IfYfIuGdw==
-  /@babel/helpers/7.12.13:
+      integrity: sha512-1UX9F7K3BS42fI6qd2A4BjKzgGjToscyZTdp1DjknHLCIvpgne6918io+aL5LXFcER/8QWiwpoY902pVEqgTXA==
+  /@babel/helpers/7.14.0:
     dependencies:
       '@babel/template': 7.12.13
-      '@babel/traverse': 7.12.13
-      '@babel/types': 7.12.13
+      '@babel/traverse': 7.14.2
+      '@babel/types': 7.14.2
     dev: true
     resolution:
-      integrity: sha512-oohVzLRZ3GQEk4Cjhfs9YkJA4TdIDTObdBEZGrd6F/T0GPSnuV6l22eMcxlvcvzVIPH3VTtxbseudM1zIE+rPQ==
-  /@babel/highlight/7.12.13:
+      integrity: sha512-+ufuXprtQ1D1iZTO/K9+EBRn+qPWMJjZSw/S0KlFrxCw4tkrzv9grgpDHkY9MeQTjTY8i2sp7Jep8DfU6tN9Mg==
+  /@babel/highlight/7.14.0:
     dependencies:
-      '@babel/helper-validator-identifier': 7.12.11
+      '@babel/helper-validator-identifier': 7.14.0
       chalk: 2.4.2
       js-tokens: 4.0.0
     dev: true
     resolution:
-      integrity: sha512-kocDQvIbgMKlWxXe9fof3TQ+gkIPOUSEYhJjqUjvKMez3krV7vbzYCDq39Oj11UAVK7JqPVGQPlgE85dPNlQww==
-  /@babel/parser/7.12.15:
+      integrity: sha512-YSCOwxvTYEIMSGaBQb5kDDsCopDdiUGsqpatp3fOlI4+2HQSkTmEVWnVuySdAC5EWCqSWWTv0ib63RjR7dTBdg==
+  /@babel/parser/7.14.3:
     dev: true
     engines:
       node: '>=6.0.0'
     hasBin: true
     resolution:
-      integrity: sha512-AQBOU2Z9kWwSZMd6lNjCX0GUgFonL1wAM1db8L8PMk9UDaGsRCArBkU4Sc+UCM3AE4hjbXx+h58Lb3QT4oRmrA==
-  /@babel/plugin-proposal-async-generator-functions/7.12.13_@babel+core@7.12.3:
+      integrity: sha512-7MpZDIfI7sUC5zWo2+foJ50CSI5lcqDehZ0lVgIhSi4bFEk94fLAKlF3Q0nzSQQ+ca0lm+O6G9ztKVBeu8PMRQ==
+  /@babel/plugin-proposal-async-generator-functions/7.14.2_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
-      '@babel/helper-remap-async-to-generator': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
+      '@babel/helper-remap-async-to-generator': 7.13.0
       '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.12.3
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-1KH46Hx4WqP77f978+5Ye/VUbuwQld2hph70yaw2hXS2v7ER2f3nlpNMu909HO2rbvP0NKLlMVDPh9KXklVMhA==
-  /@babel/plugin-proposal-async-generator-functions/7.12.13_@babel+core@7.9.0:
-    dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
-      '@babel/helper-remap-async-to-generator': 7.12.13
-      '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.9.0
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-1KH46Hx4WqP77f978+5Ye/VUbuwQld2hph70yaw2hXS2v7ER2f3nlpNMu909HO2rbvP0NKLlMVDPh9KXklVMhA==
+      integrity: sha512-b1AM4F6fwck4N8ItZ/AtC4FP/cqZqmKRQ4FaTDutwSYyjuhtvsGEMLK4N/ztV/ImP40BjIDyMgBQAeAMsQYVFQ==
   /@babel/plugin-proposal-class-properties/7.12.1_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-create-class-features-plugin': 7.12.13_@babel+core@7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-create-class-features-plugin': 7.14.3_@babel+core@7.12.3
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
       integrity: sha512-cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w==
-  /@babel/plugin-proposal-class-properties/7.8.3_@babel+core@7.9.0:
-    dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-create-class-features-plugin': 7.12.13_@babel+core@7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-EqFhbo7IosdgPgZggHaNObkmO1kNUe3slaKu54d5OWvy+p9QIKOzK1GAEpAIsZtWVtPXUHSMcT4smvDrCfY4AA==
   /@babel/plugin-proposal-decorators/7.12.1_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-create-class-features-plugin': 7.12.13_@babel+core@7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-create-class-features-plugin': 7.14.3_@babel+core@7.12.3
+      '@babel/helper-plugin-utils': 7.13.0
       '@babel/plugin-syntax-decorators': 7.12.13_@babel+core@7.12.3
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
       integrity: sha512-knNIuusychgYN8fGJHONL0RbFxLGawhXOJNLBk75TniTsZZeA+wdkDuv6wp4lGwzQEKjZi6/WYtnb3udNPmQmQ==
-  /@babel/plugin-proposal-decorators/7.8.3_@babel+core@7.9.0:
-    dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-create-class-features-plugin': 7.12.13_@babel+core@7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
-      '@babel/plugin-syntax-decorators': 7.12.13_@babel+core@7.9.0
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-e3RvdvS4qPJVTe288DlXjwKflpfy1hr0j5dz5WpIYYeP7vQZg2WfAEIp8k5/Lwis/m5REXEteIz6rrcDtXXG7w==
-  /@babel/plugin-proposal-dynamic-import/7.12.1_@babel+core@7.12.3:
+  /@babel/plugin-proposal-dynamic-import/7.14.2_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
       '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.12.3
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-a4rhUSZFuq5W8/OO8H7BL5zspjnc1FLd9hlOxIK/f7qG4a0qsqk8uvF/ywgBA8/OmjsapjpvaEOYItfGG1qIvQ==
-  /@babel/plugin-proposal-dynamic-import/7.12.1_@babel+core@7.9.0:
-    dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
-      '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.9.0
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-a4rhUSZFuq5W8/OO8H7BL5zspjnc1FLd9hlOxIK/f7qG4a0qsqk8uvF/ywgBA8/OmjsapjpvaEOYItfGG1qIvQ==
-  /@babel/plugin-proposal-export-namespace-from/7.12.13_@babel+core@7.12.3:
+      integrity: sha512-oxVQZIWFh91vuNEMKltqNsKLFWkOIyJc95k2Gv9lWVyDfPUQGSSlbDEgWuJUU1afGE9WwlzpucMZ3yDRHIItkA==
+  /@babel/plugin-proposal-export-namespace-from/7.14.2_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
       '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.12.3
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-INAgtFo4OnLN3Y/j0VwAgw3HDXcDtX+C/erMvWzuV9v71r7urb6iyMXu7eM9IgLr1ElLlOkaHjJ0SbCmdOQ3Iw==
-  /@babel/plugin-proposal-json-strings/7.12.13_@babel+core@7.12.3:
+      integrity: sha512-sRxW3z3Zp3pFfLAgVEvzTFutTXax837oOatUIvSG9o5gRj9mKwm3br1Se5f4QalTQs9x4AzlA/HrCWbQIHASUQ==
+  /@babel/plugin-proposal-json-strings/7.14.2_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
       '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.12.3
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-v9eEi4GiORDg8x+Dmi5r8ibOe0VXoKDeNPYcTTxdGN4eOWikrJfDJCJrr1l5gKGvsNyGJbrfMftC2dTL6oz7pg==
-  /@babel/plugin-proposal-json-strings/7.12.13_@babel+core@7.9.0:
-    dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
-      '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.9.0
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-v9eEi4GiORDg8x+Dmi5r8ibOe0VXoKDeNPYcTTxdGN4eOWikrJfDJCJrr1l5gKGvsNyGJbrfMftC2dTL6oz7pg==
-  /@babel/plugin-proposal-logical-assignment-operators/7.12.13_@babel+core@7.12.3:
+      integrity: sha512-w2DtsfXBBJddJacXMBhElGEYqCZQqN99Se1qeYn8DVLB33owlrlLftIbMzn5nz1OITfDVknXF433tBrLEAOEjA==
+  /@babel/plugin-proposal-logical-assignment-operators/7.14.2_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
       '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.12.3
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-fqmiD3Lz7jVdK6kabeSr1PZlWSUVqSitmHEe3Z00dtGTKieWnX9beafvavc32kjORa5Bai4QNHgFDwWJP+WtSQ==
+      integrity: sha512-1JAZtUrqYyGsS7IDmFeaem+/LJqujfLZ2weLR9ugB0ufUPjzf8cguyVT1g5im7f7RXxuLq1xUxEzvm68uYRtGg==
   /@babel/plugin-proposal-nullish-coalescing-operator/7.12.1_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
       '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.12.3
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
       integrity: sha512-nZY0ESiaQDI1y96+jk6VxMOaL4LPo/QDHBqL+SF3/vl6dHkTwHlOI8L4ZwuRBHgakRBw5zsVylel7QPbbGuYgg==
-  /@babel/plugin-proposal-nullish-coalescing-operator/7.8.3_@babel+core@7.9.0:
-    dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
-      '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.9.0
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-TS9MlfzXpXKt6YYomudb/KU7nQI6/xnapG6in1uZxoxDghuSMZsPb6D2fyUwNYSAp4l1iR7QtFOjkqcRYcUsfw==
   /@babel/plugin-proposal-numeric-separator/7.12.1_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
       '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.12.3
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
       integrity: sha512-MR7Ok+Af3OhNTCxYVjJZHS0t97ydnJZt/DbR4WISO39iDnhiD8XHrY12xuSJ90FFEGjir0Fzyyn7g/zY6hxbxA==
-  /@babel/plugin-proposal-numeric-separator/7.8.3_@babel+core@7.9.0:
-    dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
-      '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.9.0
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-jWioO1s6R/R+wEHizfaScNsAx+xKgwTLNXSh7tTC4Usj3ItsPEhYkEpU4h+lpnBwq7NBVOJXfO6cRFYcX69JUQ==
-  /@babel/plugin-proposal-object-rest-spread/7.12.13_@babel+core@7.12.3:
+  /@babel/plugin-proposal-object-rest-spread/7.14.2_@babel+core@7.12.3:
     dependencies:
+      '@babel/compat-data': 7.14.0
       '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-compilation-targets': 7.13.16_@babel+core@7.12.3
+      '@babel/helper-plugin-utils': 7.13.0
       '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.3
-      '@babel/plugin-transform-parameters': 7.12.13_@babel+core@7.12.3
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-WvA1okB/0OS/N3Ldb3sziSrXg6sRphsBgqiccfcQq7woEn5wQLNX82Oc4PlaFcdwcWHuQXAtb8ftbS8Fbsg/sg==
-  /@babel/plugin-proposal-object-rest-spread/7.12.13_@babel+core@7.9.0:
-    dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
-      '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.9.0
-      '@babel/plugin-transform-parameters': 7.12.13_@babel+core@7.9.0
+      '@babel/plugin-transform-parameters': 7.14.2_@babel+core@7.12.3
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-WvA1okB/0OS/N3Ldb3sziSrXg6sRphsBgqiccfcQq7woEn5wQLNX82Oc4PlaFcdwcWHuQXAtb8ftbS8Fbsg/sg==
-  /@babel/plugin-proposal-optional-catch-binding/7.12.13_@babel+core@7.12.3:
+      integrity: sha512-hBIQFxwZi8GIp934+nj5uV31mqclC1aYDhctDu5khTi9PCCUOczyy0b34W0oE9U/eJXiqQaKyVsmjeagOaSlbw==
+  /@babel/plugin-proposal-optional-catch-binding/7.14.2_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
       '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.12.3
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-9+MIm6msl9sHWg58NvqpNpLtuFbmpFYk37x8kgnGzAHvX35E1FyAwSUt5hIkSoWJFSAH+iwU8bJ4fcD1zKXOzg==
-  /@babel/plugin-proposal-optional-catch-binding/7.12.13_@babel+core@7.9.0:
-    dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
-      '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.9.0
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-9+MIm6msl9sHWg58NvqpNpLtuFbmpFYk37x8kgnGzAHvX35E1FyAwSUt5hIkSoWJFSAH+iwU8bJ4fcD1zKXOzg==
+      integrity: sha512-XtkJsmJtBaUbOxZsNk0Fvrv8eiqgneug0A6aqLFZ4TSkar2L5dSXWcnUKHgmjJt49pyB/6ZHvkr3dPgl9MOWRQ==
   /@babel/plugin-proposal-optional-chaining/7.12.1_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
       '@babel/helper-skip-transparent-expression-wrappers': 7.12.1
       '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.12.3
     dev: true
@@ -582,31 +451,21 @@ packages:
       '@babel/core': ^7.0.0-0
     resolution:
       integrity: sha512-c2uRpY6WzaVDzynVY9liyykS+kVU+WRZPMPYpkelXH8KBt1oXoI89kPbZKKG/jDT5UK92FTW2fZkZaJhdiBabw==
-  /@babel/plugin-proposal-optional-chaining/7.9.0_@babel+core@7.9.0:
-    dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
-      '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.9.0
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-NDn5tu3tcv4W30jNhmc2hyD5c56G6cXx4TesJubhxrJeCvuuMpttxr0OnNCqbZGhFjLrg+NIhxxC+BK5F6yS3w==
-  /@babel/plugin-proposal-private-methods/7.12.13_@babel+core@7.12.3:
+  /@babel/plugin-proposal-private-methods/7.13.0_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-create-class-features-plugin': 7.12.13_@babel+core@7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-create-class-features-plugin': 7.14.3_@babel+core@7.12.3
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-sV0V57uUwpauixvR7s2o75LmwJI6JECwm5oPUY5beZB1nBl2i37hc7CJGqB5G+58fur5Y6ugvl3LRONk5x34rg==
+      integrity: sha512-MXyyKQd9inhx1kDYPkFRVOBXQ20ES8Pto3T7UZ92xj2mY0EVD8oAVzeyYuVfy/mxAdTSIayOvg+aVzcHV2bn6Q==
   /@babel/plugin-proposal-unicode-property-regex/7.12.13_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-create-regexp-features-plugin': 7.12.13_@babel+core@7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-create-regexp-features-plugin': 7.14.3_@babel+core@7.12.3
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     engines:
       node: '>=4'
@@ -614,58 +473,52 @@ packages:
       '@babel/core': ^7.0.0-0
     resolution:
       integrity: sha512-XyJmZidNfofEkqFV5VC/bLabGmO5QzenPO/YOfGuEbgU+2sSwMmio3YLb4WtBgcmmdwZHyVyv8on77IUjQ5Gvg==
-  /@babel/plugin-proposal-unicode-property-regex/7.12.13_@babel+core@7.9.0:
+  /@babel/plugin-syntax-async-generators/7.8.4:
     dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-create-regexp-features-plugin': 7.12.13_@babel+core@7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
-    engines:
-      node: '>=4'
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-XyJmZidNfofEkqFV5VC/bLabGmO5QzenPO/YOfGuEbgU+2sSwMmio3YLb4WtBgcmmdwZHyVyv8on77IUjQ5Gvg==
-  /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.12.13:
+      integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==
+  /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.12.3:
     dependencies:
-      '@babel/core': 7.12.13
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/core': 7.12.3
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
       integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==
-  /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.12.3:
+  /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.14.3:
     dependencies:
-      '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/core': 7.14.3
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
       integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==
-  /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.9.0:
+  /@babel/plugin-syntax-bigint/7.8.3:
     dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==
-  /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.12.13:
+      integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==
+  /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.14.3:
     dependencies:
-      '@babel/core': 7.12.13
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/core': 7.14.3
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
       integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==
-  /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.12.13:
+  /@babel/plugin-syntax-class-properties/7.12.13:
     dependencies:
-      '@babel/core': 7.12.13
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
@@ -674,25 +527,25 @@ packages:
   /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
       integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==
-  /@babel/plugin-syntax-decorators/7.12.13_@babel+core@7.12.3:
+  /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.14.3:
     dependencies:
-      '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/core': 7.14.3
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-Rw6aIXGuqDLr6/LoBBYE57nKOzQpz/aDkKlMqEwH+Vp0MXbG6H/TfRjaY343LKxzAKAMXIHsQ8JzaZKuDZ9MwA==
-  /@babel/plugin-syntax-decorators/7.12.13_@babel+core@7.9.0:
+      integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==
+  /@babel/plugin-syntax-decorators/7.12.13_@babel+core@7.12.3:
     dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/core': 7.12.3
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
@@ -701,16 +554,7 @@ packages:
   /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==
-  /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.9.0:
-    dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
@@ -719,7 +563,7 @@ packages:
   /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
@@ -728,34 +572,32 @@ packages:
   /@babel/plugin-syntax-flow/7.12.13_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
       integrity: sha512-J/RYxnlSLXZLVR7wTRsozxKT8qbsx1mNKJzXEEjQ0Kjx1ZACcyHgbanNWNCFtc36IzuWhYWPpvJFFoexoOWFmA==
-  /@babel/plugin-syntax-flow/7.12.13_@babel+core@7.9.0:
+  /@babel/plugin-syntax-import-meta/7.10.4:
     dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-J/RYxnlSLXZLVR7wTRsozxKT8qbsx1mNKJzXEEjQ0Kjx1ZACcyHgbanNWNCFtc36IzuWhYWPpvJFFoexoOWFmA==
-  /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.12.13:
+      integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==
+  /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.14.3:
     dependencies:
-      '@babel/core': 7.12.13
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/core': 7.14.3
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
       integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==
-  /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.12.13:
+  /@babel/plugin-syntax-json-strings/7.8.3:
     dependencies:
-      '@babel/core': 7.12.13
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
@@ -764,16 +606,16 @@ packages:
   /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
       integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==
-  /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.9.0:
+  /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.14.3:
     dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/core': 7.14.3
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
@@ -781,16 +623,7 @@ packages:
       integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==
   /@babel/plugin-syntax-jsx/7.12.13:
     dependencies:
-      '@babel/helper-plugin-utils': 7.12.13
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-d4HM23Q1K7oq/SLNmG6mRt85l2csmQ0cHRaxRXjKW0YFdEXqlZ5kzFQKH5Uc3rDJECgu+yCRgPkG04Mm98R/1g==
-  /@babel/plugin-syntax-jsx/7.12.13_@babel+core@7.12.13:
-    dependencies:
-      '@babel/core': 7.12.13
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
@@ -799,43 +632,41 @@ packages:
   /@babel/plugin-syntax-jsx/7.12.13_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
       integrity: sha512-d4HM23Q1K7oq/SLNmG6mRt85l2csmQ0cHRaxRXjKW0YFdEXqlZ5kzFQKH5Uc3rDJECgu+yCRgPkG04Mm98R/1g==
-  /@babel/plugin-syntax-jsx/7.12.13_@babel+core@7.9.0:
+  /@babel/plugin-syntax-logical-assignment-operators/7.10.4:
     dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-d4HM23Q1K7oq/SLNmG6mRt85l2csmQ0cHRaxRXjKW0YFdEXqlZ5kzFQKH5Uc3rDJECgu+yCRgPkG04Mm98R/1g==
-  /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.12.13:
+      integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==
+  /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.12.3:
     dependencies:
-      '@babel/core': 7.12.13
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/core': 7.12.3
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
       integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==
-  /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.12.3:
+  /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.14.3:
     dependencies:
-      '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/core': 7.14.3
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
       integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==
-  /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.12.13:
+  /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3:
     dependencies:
-      '@babel/core': 7.12.13
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
@@ -844,25 +675,24 @@ packages:
   /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
       integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==
-  /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.9.0:
+  /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.14.3:
     dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/core': 7.14.3
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
       integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==
-  /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.12.13:
+  /@babel/plugin-syntax-numeric-separator/7.10.4:
     dependencies:
-      '@babel/core': 7.12.13
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
@@ -871,25 +701,24 @@ packages:
   /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
       integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==
-  /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.9.0:
+  /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.14.3:
     dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/core': 7.14.3
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
       integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==
-  /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.12.13:
+  /@babel/plugin-syntax-object-rest-spread/7.8.3:
     dependencies:
-      '@babel/core': 7.12.13
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
@@ -898,25 +727,24 @@ packages:
   /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
       integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==
-  /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.9.0:
+  /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.14.3:
     dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/core': 7.14.3
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
       integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==
-  /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.12.13:
+  /@babel/plugin-syntax-optional-catch-binding/7.8.3:
     dependencies:
-      '@babel/core': 7.12.13
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
@@ -925,25 +753,24 @@ packages:
   /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
       integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==
-  /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.9.0:
+  /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.14.3:
     dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/core': 7.14.3
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
       integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==
-  /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.12.13:
+  /@babel/plugin-syntax-optional-chaining/7.8.3:
     dependencies:
-      '@babel/core': 7.12.13
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
@@ -952,25 +779,24 @@ packages:
   /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
       integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==
-  /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.9.0:
+  /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.14.3:
     dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/core': 7.14.3
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
       integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==
-  /@babel/plugin-syntax-top-level-await/7.12.13_@babel+core@7.12.13:
+  /@babel/plugin-syntax-top-level-await/7.12.13:
     dependencies:
-      '@babel/core': 7.12.13
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
@@ -979,25 +805,24 @@ packages:
   /@babel/plugin-syntax-top-level-await/7.12.13_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
       integrity: sha512-A81F9pDwyS7yM//KwbCSDqy3Uj4NMIurtplxphWxoYtNPov7cJsDkAFNNyVlIZ3jwGycVsurZ+LtOA8gZ376iQ==
-  /@babel/plugin-syntax-top-level-await/7.12.13_@babel+core@7.9.0:
+  /@babel/plugin-syntax-top-level-await/7.12.13_@babel+core@7.14.3:
     dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/core': 7.14.3
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
       integrity: sha512-A81F9pDwyS7yM//KwbCSDqy3Uj4NMIurtplxphWxoYtNPov7cJsDkAFNNyVlIZ3jwGycVsurZ+LtOA8gZ376iQ==
-  /@babel/plugin-syntax-typescript/7.12.13_@babel+core@7.12.13:
+  /@babel/plugin-syntax-typescript/7.12.13:
     dependencies:
-      '@babel/core': 7.12.13
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
@@ -1006,874 +831,448 @@ packages:
   /@babel/plugin-syntax-typescript/7.12.13_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
       integrity: sha512-cHP3u1JiUiG2LFDKbXnwVad81GvfyIOmCD6HIEId6ojrY0Drfy2q1jw7BwN7dE84+kTnBjLkXoL3IEy/3JPu2w==
-  /@babel/plugin-syntax-typescript/7.12.13_@babel+core@7.9.0:
+  /@babel/plugin-transform-arrow-functions/7.13.0_@babel+core@7.12.3:
     dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/core': 7.12.3
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-cHP3u1JiUiG2LFDKbXnwVad81GvfyIOmCD6HIEId6ojrY0Drfy2q1jw7BwN7dE84+kTnBjLkXoL3IEy/3JPu2w==
-  /@babel/plugin-transform-arrow-functions/7.12.13_@babel+core@7.12.3:
+      integrity: sha512-96lgJagobeVmazXFaDrbmCLQxBysKu7U6Do3mLsx27gf5Dk85ezysrs2BZUpXD703U/Su1xTBDxxar2oa4jAGg==
+  /@babel/plugin-transform-async-to-generator/7.13.0_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-module-imports': 7.13.12
+      '@babel/helper-plugin-utils': 7.13.0
+      '@babel/helper-remap-async-to-generator': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-tBtuN6qtCTd+iHzVZVOMNp+L04iIJBpqkdY42tWbmjIT5wvR2kx7gxMBsyhQtFzHwBbyGi9h8J8r9HgnOpQHxg==
-  /@babel/plugin-transform-arrow-functions/7.12.13_@babel+core@7.9.0:
+      integrity: sha512-3j6E004Dx0K3eGmhxVJxwwI89CTJrce7lg3UrtFuDAVQ/2+SJ/h/aSFOeE6/n0WB1GsOffsJp6MnPQNQ8nmwhg==
+  /@babel/plugin-transform-block-scoped-functions/7.12.13_@babel+core@7.12.3:
     dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/core': 7.12.3
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-tBtuN6qtCTd+iHzVZVOMNp+L04iIJBpqkdY42tWbmjIT5wvR2kx7gxMBsyhQtFzHwBbyGi9h8J8r9HgnOpQHxg==
-  /@babel/plugin-transform-async-to-generator/7.12.13_@babel+core@7.12.3:
+      integrity: sha512-zNyFqbc3kI/fVpqwfqkg6RvBgFpC4J18aKKMmv7KdQ/1GgREapSJAykLMVNwfRGO3BtHj3YQZl8kxCXPcVMVeg==
+  /@babel/plugin-transform-block-scoping/7.14.2_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-module-imports': 7.12.13
-      '@babel/helper-plugin-utils': 7.12.13
-      '@babel/helper-remap-async-to-generator': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-psM9QHcHaDr+HZpRuJcE1PXESuGWSCcbiGFFhhwfzdbTxaGDVzuVtdNYliAwcRo3GFg0Bc8MmI+AvIGYIJG04A==
-  /@babel/plugin-transform-async-to-generator/7.12.13_@babel+core@7.9.0:
+      integrity: sha512-neZZcP19NugZZqNwMTH+KoBjx5WyvESPSIOQb4JHpfd+zPfqcH65RMu5xJju5+6q/Y2VzYrleQTr+b6METyyxg==
+  /@babel/plugin-transform-classes/7.14.2_@babel+core@7.12.3:
     dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-module-imports': 7.12.13
-      '@babel/helper-plugin-utils': 7.12.13
-      '@babel/helper-remap-async-to-generator': 7.12.13
+      '@babel/core': 7.12.3
+      '@babel/helper-annotate-as-pure': 7.12.13
+      '@babel/helper-function-name': 7.14.2
+      '@babel/helper-optimise-call-expression': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
+      '@babel/helper-replace-supers': 7.14.3
+      '@babel/helper-split-export-declaration': 7.12.13
+      globals: 11.12.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-psM9QHcHaDr+HZpRuJcE1PXESuGWSCcbiGFFhhwfzdbTxaGDVzuVtdNYliAwcRo3GFg0Bc8MmI+AvIGYIJG04A==
-  /@babel/plugin-transform-block-scoped-functions/7.12.13_@babel+core@7.12.3:
+      integrity: sha512-7oafAVcucHquA/VZCsXv/gmuiHeYd64UJyyTYU+MPfNu0KeNlxw06IeENBO8bJjXVbolu+j1MM5aKQtH1OMCNg==
+  /@babel/plugin-transform-computed-properties/7.13.0_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-zNyFqbc3kI/fVpqwfqkg6RvBgFpC4J18aKKMmv7KdQ/1GgREapSJAykLMVNwfRGO3BtHj3YQZl8kxCXPcVMVeg==
-  /@babel/plugin-transform-block-scoped-functions/7.12.13_@babel+core@7.9.0:
+      integrity: sha512-RRqTYTeZkZAz8WbieLTvKUEUxZlUTdmL5KGMyZj7FnMfLNKV4+r5549aORG/mgojRmFlQMJDUupwAMiF2Q7OUg==
+  /@babel/plugin-transform-destructuring/7.13.17_@babel+core@7.12.3:
     dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/core': 7.12.3
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-zNyFqbc3kI/fVpqwfqkg6RvBgFpC4J18aKKMmv7KdQ/1GgREapSJAykLMVNwfRGO3BtHj3YQZl8kxCXPcVMVeg==
-  /@babel/plugin-transform-block-scoping/7.12.13_@babel+core@7.12.3:
+      integrity: sha512-UAUqiLv+uRLO+xuBKKMEpC+t7YRNVRqBsWWq1yKXbBZBje/t3IXCiSinZhjn/DC3qzBfICeYd2EFGEbHsh5RLA==
+  /@babel/plugin-transform-dotall-regex/7.12.13_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-create-regexp-features-plugin': 7.14.3_@babel+core@7.12.3
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-Pxwe0iqWJX4fOOM2kEZeUuAxHMWb9nK+9oh5d11bsLoB0xMg+mkDpt0eYuDZB7ETrY9bbcVlKUGTOGWy7BHsMQ==
-  /@babel/plugin-transform-block-scoping/7.12.13_@babel+core@7.9.0:
+      integrity: sha512-foDrozE65ZFdUC2OfgeOCrEPTxdB3yjqxpXh8CH+ipd9CHd4s/iq81kcUpyH8ACGNEPdFqbtzfgzbT/ZGlbDeQ==
+  /@babel/plugin-transform-duplicate-keys/7.12.13_@babel+core@7.12.3:
     dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/core': 7.12.3
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-Pxwe0iqWJX4fOOM2kEZeUuAxHMWb9nK+9oh5d11bsLoB0xMg+mkDpt0eYuDZB7ETrY9bbcVlKUGTOGWy7BHsMQ==
-  /@babel/plugin-transform-classes/7.12.13_@babel+core@7.12.3:
+      integrity: sha512-NfADJiiHdhLBW3pulJlJI2NB0t4cci4WTZ8FtdIuNc2+8pslXdPtRRAEWqUY+m9kNOk2eRYbTAOipAxlrOcwwQ==
+  /@babel/plugin-transform-exponentiation-operator/7.12.13_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-annotate-as-pure': 7.12.13
-      '@babel/helper-function-name': 7.12.13
-      '@babel/helper-optimise-call-expression': 7.12.13
-      '@babel/helper-plugin-utils': 7.12.13
-      '@babel/helper-replace-supers': 7.12.13
-      '@babel/helper-split-export-declaration': 7.12.13
-      globals: 11.12.0
+      '@babel/helper-builder-binary-assignment-operator-visitor': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-cqZlMlhCC1rVnxE5ZGMtIb896ijL90xppMiuWXcwcOAuFczynpd3KYemb91XFFPi3wJSe/OcrX9lXoowatkkxA==
-  /@babel/plugin-transform-classes/7.12.13_@babel+core@7.9.0:
+      integrity: sha512-fbUelkM1apvqez/yYx1/oICVnGo2KM5s63mhGylrmXUxK/IAXSIf87QIxVfZldWf4QsOafY6vV3bX8aMHSvNrA==
+  /@babel/plugin-transform-flow-strip-types/7.12.1_@babel+core@7.12.3:
     dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-annotate-as-pure': 7.12.13
-      '@babel/helper-function-name': 7.12.13
-      '@babel/helper-optimise-call-expression': 7.12.13
-      '@babel/helper-plugin-utils': 7.12.13
-      '@babel/helper-replace-supers': 7.12.13
-      '@babel/helper-split-export-declaration': 7.12.13
-      globals: 11.12.0
+      '@babel/core': 7.12.3
+      '@babel/helper-plugin-utils': 7.13.0
+      '@babel/plugin-syntax-flow': 7.12.13_@babel+core@7.12.3
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-cqZlMlhCC1rVnxE5ZGMtIb896ijL90xppMiuWXcwcOAuFczynpd3KYemb91XFFPi3wJSe/OcrX9lXoowatkkxA==
-  /@babel/plugin-transform-computed-properties/7.12.13_@babel+core@7.12.3:
+      integrity: sha512-8hAtkmsQb36yMmEtk2JZ9JnVyDSnDOdlB+0nEGzIDLuK4yR3JcEjfuFPYkdEPSh8Id+rAMeBEn+X0iVEyho6Hg==
+  /@babel/plugin-transform-for-of/7.13.0_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-dDfuROUPGK1mTtLKyDPUavmj2b6kFu82SmgpztBFEO974KMjJT+Ytj3/oWsTUMBmgPcp9J5Pc1SlcAYRpJ2hRA==
-  /@babel/plugin-transform-computed-properties/7.12.13_@babel+core@7.9.0:
+      integrity: sha512-IHKT00mwUVYE0zzbkDgNRP6SRzvfGCYsOxIRz8KsiaaHCcT9BWIkO+H9QRJseHBLOGBZkHUdHiqj6r0POsdytg==
+  /@babel/plugin-transform-function-name/7.12.13_@babel+core@7.12.3:
     dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/core': 7.12.3
+      '@babel/helper-function-name': 7.14.2
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-dDfuROUPGK1mTtLKyDPUavmj2b6kFu82SmgpztBFEO974KMjJT+Ytj3/oWsTUMBmgPcp9J5Pc1SlcAYRpJ2hRA==
-  /@babel/plugin-transform-destructuring/7.12.13_@babel+core@7.12.3:
+      integrity: sha512-6K7gZycG0cmIwwF7uMK/ZqeCikCGVBdyP2J5SKNCXO5EOHcqi+z7Jwf8AmyDNcBgxET8DrEtCt/mPKPyAzXyqQ==
+  /@babel/plugin-transform-literals/7.12.13_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-Dn83KykIFzjhA3FDPA1z4N+yfF3btDGhjnJwxIj0T43tP0flCujnU8fKgEkf0C1biIpSv9NZegPBQ1J6jYkwvQ==
-  /@babel/plugin-transform-destructuring/7.12.13_@babel+core@7.9.0:
+      integrity: sha512-FW+WPjSR7hiUxMcKqyNjP05tQ2kmBCdpEpZHY1ARm96tGQCCBvXKnpjILtDplUnJ/eHZ0lALLM+d2lMFSpYJrQ==
+  /@babel/plugin-transform-member-expression-literals/7.12.13_@babel+core@7.12.3:
     dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/core': 7.12.3
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-Dn83KykIFzjhA3FDPA1z4N+yfF3btDGhjnJwxIj0T43tP0flCujnU8fKgEkf0C1biIpSv9NZegPBQ1J6jYkwvQ==
-  /@babel/plugin-transform-dotall-regex/7.12.13_@babel+core@7.12.3:
+      integrity: sha512-kxLkOsg8yir4YeEPHLuO2tXP9R/gTjpuTOjshqSpELUN3ZAg2jfDnKUvzzJxObun38sw3wm4Uu69sX/zA7iRvg==
+  /@babel/plugin-transform-modules-amd/7.14.2_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-create-regexp-features-plugin': 7.12.13_@babel+core@7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-module-transforms': 7.14.2
+      '@babel/helper-plugin-utils': 7.13.0
+      babel-plugin-dynamic-import-node: 2.3.3
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-foDrozE65ZFdUC2OfgeOCrEPTxdB3yjqxpXh8CH+ipd9CHd4s/iq81kcUpyH8ACGNEPdFqbtzfgzbT/ZGlbDeQ==
-  /@babel/plugin-transform-dotall-regex/7.12.13_@babel+core@7.9.0:
+      integrity: sha512-hPC6XBswt8P3G2D1tSV2HzdKvkqOpmbyoy+g73JG0qlF/qx2y3KaMmXb1fLrpmWGLZYA0ojCvaHdzFWjlmV+Pw==
+  /@babel/plugin-transform-modules-commonjs/7.14.0_@babel+core@7.12.3:
     dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-create-regexp-features-plugin': 7.12.13_@babel+core@7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/core': 7.12.3
+      '@babel/helper-module-transforms': 7.14.2
+      '@babel/helper-plugin-utils': 7.13.0
+      '@babel/helper-simple-access': 7.13.12
+      babel-plugin-dynamic-import-node: 2.3.3
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-foDrozE65ZFdUC2OfgeOCrEPTxdB3yjqxpXh8CH+ipd9CHd4s/iq81kcUpyH8ACGNEPdFqbtzfgzbT/ZGlbDeQ==
-  /@babel/plugin-transform-duplicate-keys/7.12.13_@babel+core@7.12.3:
+      integrity: sha512-EX4QePlsTaRZQmw9BsoPeyh5OCtRGIhwfLquhxGp5e32w+dyL8htOcDwamlitmNFK6xBZYlygjdye9dbd9rUlQ==
+  /@babel/plugin-transform-modules-systemjs/7.13.8_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-hoist-variables': 7.13.16
+      '@babel/helper-module-transforms': 7.14.2
+      '@babel/helper-plugin-utils': 7.13.0
+      '@babel/helper-validator-identifier': 7.14.0
+      babel-plugin-dynamic-import-node: 2.3.3
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-NfADJiiHdhLBW3pulJlJI2NB0t4cci4WTZ8FtdIuNc2+8pslXdPtRRAEWqUY+m9kNOk2eRYbTAOipAxlrOcwwQ==
-  /@babel/plugin-transform-duplicate-keys/7.12.13_@babel+core@7.9.0:
+      integrity: sha512-hwqctPYjhM6cWvVIlOIe27jCIBgHCsdH2xCJVAYQm7V5yTMoilbVMi9f6wKg0rpQAOn6ZG4AOyvCqFF/hUh6+A==
+  /@babel/plugin-transform-modules-umd/7.14.0_@babel+core@7.12.3:
     dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/core': 7.12.3
+      '@babel/helper-module-transforms': 7.14.2
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-NfADJiiHdhLBW3pulJlJI2NB0t4cci4WTZ8FtdIuNc2+8pslXdPtRRAEWqUY+m9kNOk2eRYbTAOipAxlrOcwwQ==
-  /@babel/plugin-transform-exponentiation-operator/7.12.13_@babel+core@7.12.3:
+      integrity: sha512-nPZdnWtXXeY7I87UZr9VlsWme3Y0cfFFE41Wbxz4bbaexAjNMInXPFUpRRUJ8NoMm0Cw+zxbqjdPmLhcjfazMw==
+  /@babel/plugin-transform-named-capturing-groups-regex/7.12.13_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-builder-binary-assignment-operator-visitor': 7.12.13
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-create-regexp-features-plugin': 7.14.3_@babel+core@7.12.3
     dev: true
     peerDependencies:
-      '@babel/core': ^7.0.0-0
+      '@babel/core': ^7.0.0
     resolution:
-      integrity: sha512-fbUelkM1apvqez/yYx1/oICVnGo2KM5s63mhGylrmXUxK/IAXSIf87QIxVfZldWf4QsOafY6vV3bX8aMHSvNrA==
-  /@babel/plugin-transform-exponentiation-operator/7.12.13_@babel+core@7.9.0:
+      integrity: sha512-Xsm8P2hr5hAxyYblrfACXpQKdQbx4m2df9/ZZSQ8MAhsadw06+jW7s9zsSw6he+mJZXRlVMyEnVktJo4zjk1WA==
+  /@babel/plugin-transform-new-target/7.12.13_@babel+core@7.12.3:
     dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-builder-binary-assignment-operator-visitor': 7.12.13
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/core': 7.12.3
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-fbUelkM1apvqez/yYx1/oICVnGo2KM5s63mhGylrmXUxK/IAXSIf87QIxVfZldWf4QsOafY6vV3bX8aMHSvNrA==
-  /@babel/plugin-transform-flow-strip-types/7.12.1_@babel+core@7.12.3:
+      integrity: sha512-/KY2hbLxrG5GTQ9zzZSc3xWiOy379pIETEhbtzwZcw9rvuaVV4Fqy7BYGYOWZnaoXIQYbbJ0ziXLa/sKcGCYEQ==
+  /@babel/plugin-transform-object-super/7.12.13_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
-      '@babel/plugin-syntax-flow': 7.12.13_@babel+core@7.12.3
+      '@babel/helper-plugin-utils': 7.13.0
+      '@babel/helper-replace-supers': 7.14.3
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-8hAtkmsQb36yMmEtk2JZ9JnVyDSnDOdlB+0nEGzIDLuK4yR3JcEjfuFPYkdEPSh8Id+rAMeBEn+X0iVEyho6Hg==
-  /@babel/plugin-transform-flow-strip-types/7.9.0_@babel+core@7.9.0:
+      integrity: sha512-JzYIcj3XtYspZDV8j9ulnoMPZZnF/Cj0LUxPOjR89BdBVx+zYJI9MdMIlUZjbXDX+6YVeS6I3e8op+qQ3BYBoQ==
+  /@babel/plugin-transform-parameters/7.14.2_@babel+core@7.12.3:
     dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
-      '@babel/plugin-syntax-flow': 7.12.13_@babel+core@7.9.0
+      '@babel/core': 7.12.3
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-7Qfg0lKQhEHs93FChxVLAvhBshOPQDtJUTVHr/ZwQNRccCm4O9D79r9tVSoV8iNwjP1YgfD+e/fgHcPkN1qEQg==
-  /@babel/plugin-transform-for-of/7.12.13_@babel+core@7.12.3:
+      integrity: sha512-NxoVmA3APNCC1JdMXkdYXuQS+EMdqy0vIwyDHeKHiJKRxmp1qGSdb0JLEIoPRhkx6H/8Qi3RJ3uqOCYw8giy9A==
+  /@babel/plugin-transform-property-literals/7.12.13_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-xCbdgSzXYmHGyVX3+BsQjcd4hv4vA/FDy7Kc8eOpzKmBBPEOTurt0w5fCRQaGl+GSBORKgJdstQ1rHl4jbNseQ==
-  /@babel/plugin-transform-for-of/7.12.13_@babel+core@7.9.0:
+      integrity: sha512-nqVigwVan+lR+g8Fj8Exl0UQX2kymtjcWfMOYM1vTYEKujeyv2SkMgazf2qNcK7l4SDiKyTA/nHCPqL4e2zo1A==
+  /@babel/plugin-transform-react-display-name/7.12.1_@babel+core@7.12.3:
     dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/core': 7.12.3
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-xCbdgSzXYmHGyVX3+BsQjcd4hv4vA/FDy7Kc8eOpzKmBBPEOTurt0w5fCRQaGl+GSBORKgJdstQ1rHl4jbNseQ==
-  /@babel/plugin-transform-function-name/7.12.13_@babel+core@7.12.3:
+      integrity: sha512-cAzB+UzBIrekfYxyLlFqf/OagTvHLcVBb5vpouzkYkBclRPraiygVnafvAoipErZLI8ANv8Ecn6E/m5qPXD26w==
+  /@babel/plugin-transform-react-display-name/7.14.2:
     dependencies:
-      '@babel/core': 7.12.3
-      '@babel/helper-function-name': 7.12.13
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-6K7gZycG0cmIwwF7uMK/ZqeCikCGVBdyP2J5SKNCXO5EOHcqi+z7Jwf8AmyDNcBgxET8DrEtCt/mPKPyAzXyqQ==
-  /@babel/plugin-transform-function-name/7.12.13_@babel+core@7.9.0:
+      integrity: sha512-zCubvP+jjahpnFJvPaHPiGVfuVUjXHhFvJKQdNnsmSsiU9kR/rCZ41jHc++tERD2zV+p7Hr6is+t5b6iWTCqSw==
+  /@babel/plugin-transform-react-jsx-development/7.12.17:
     dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-function-name': 7.12.13
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/plugin-transform-react-jsx': 7.14.3
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-6K7gZycG0cmIwwF7uMK/ZqeCikCGVBdyP2J5SKNCXO5EOHcqi+z7Jwf8AmyDNcBgxET8DrEtCt/mPKPyAzXyqQ==
-  /@babel/plugin-transform-literals/7.12.13_@babel+core@7.12.3:
+      integrity: sha512-BPjYV86SVuOaudFhsJR1zjgxxOhJDt6JHNoD48DxWEIxUCAMjV1ys6DYw4SDYZh0b1QsS2vfIA9t/ZsQGsDOUQ==
+  /@babel/plugin-transform-react-jsx-development/7.12.17_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/plugin-transform-react-jsx': 7.14.3_@babel+core@7.12.3
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-FW+WPjSR7hiUxMcKqyNjP05tQ2kmBCdpEpZHY1ARm96tGQCCBvXKnpjILtDplUnJ/eHZ0lALLM+d2lMFSpYJrQ==
-  /@babel/plugin-transform-literals/7.12.13_@babel+core@7.9.0:
+      integrity: sha512-BPjYV86SVuOaudFhsJR1zjgxxOhJDt6JHNoD48DxWEIxUCAMjV1ys6DYw4SDYZh0b1QsS2vfIA9t/ZsQGsDOUQ==
+  /@babel/plugin-transform-react-jsx-self/7.12.13_@babel+core@7.12.3:
     dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/core': 7.12.3
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-FW+WPjSR7hiUxMcKqyNjP05tQ2kmBCdpEpZHY1ARm96tGQCCBvXKnpjILtDplUnJ/eHZ0lALLM+d2lMFSpYJrQ==
-  /@babel/plugin-transform-member-expression-literals/7.12.13_@babel+core@7.12.3:
+      integrity: sha512-FXYw98TTJ125GVCCkFLZXlZ1qGcsYqNQhVBQcZjyrwf8FEUtVfKIoidnO8S0q+KBQpDYNTmiGo1gn67Vti04lQ==
+  /@babel/plugin-transform-react-jsx-source/7.14.2_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-kxLkOsg8yir4YeEPHLuO2tXP9R/gTjpuTOjshqSpELUN3ZAg2jfDnKUvzzJxObun38sw3wm4Uu69sX/zA7iRvg==
-  /@babel/plugin-transform-member-expression-literals/7.12.13_@babel+core@7.9.0:
+      integrity: sha512-OMorspVyjxghAjzgeAWc6O7W7vHbJhV69NeTGdl9Mxgz6PaweAuo7ffB9T5A1OQ9dGcw0As4SYMUhyNC4u7mVg==
+  /@babel/plugin-transform-react-jsx/7.14.3:
     dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-annotate-as-pure': 7.12.13
+      '@babel/helper-module-imports': 7.13.12
+      '@babel/helper-plugin-utils': 7.13.0
+      '@babel/plugin-syntax-jsx': 7.12.13
+      '@babel/types': 7.14.2
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-kxLkOsg8yir4YeEPHLuO2tXP9R/gTjpuTOjshqSpELUN3ZAg2jfDnKUvzzJxObun38sw3wm4Uu69sX/zA7iRvg==
-  /@babel/plugin-transform-modules-amd/7.12.13_@babel+core@7.12.3:
+      integrity: sha512-uuxuoUNVhdgYzERiHHFkE4dWoJx+UFVyuAl0aqN8P2/AKFHwqgUC5w2+4/PjpKXJsFgBlYAFXlUmDQ3k3DUkXw==
+  /@babel/plugin-transform-react-jsx/7.14.3_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-module-transforms': 7.12.13
-      '@babel/helper-plugin-utils': 7.12.13
-      babel-plugin-dynamic-import-node: 2.3.3
+      '@babel/helper-annotate-as-pure': 7.12.13
+      '@babel/helper-module-imports': 7.13.12
+      '@babel/helper-plugin-utils': 7.13.0
+      '@babel/plugin-syntax-jsx': 7.12.13_@babel+core@7.12.3
+      '@babel/types': 7.14.2
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-JHLOU0o81m5UqG0Ulz/fPC68/v+UTuGTWaZBUwpEk1fYQ1D9LfKV6MPn4ttJKqRo5Lm460fkzjLTL4EHvCprvA==
-  /@babel/plugin-transform-modules-amd/7.12.13_@babel+core@7.9.0:
+      integrity: sha512-uuxuoUNVhdgYzERiHHFkE4dWoJx+UFVyuAl0aqN8P2/AKFHwqgUC5w2+4/PjpKXJsFgBlYAFXlUmDQ3k3DUkXw==
+  /@babel/plugin-transform-react-pure-annotations/7.12.1:
     dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-module-transforms': 7.12.13
-      '@babel/helper-plugin-utils': 7.12.13
-      babel-plugin-dynamic-import-node: 2.3.3
+      '@babel/helper-annotate-as-pure': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-JHLOU0o81m5UqG0Ulz/fPC68/v+UTuGTWaZBUwpEk1fYQ1D9LfKV6MPn4ttJKqRo5Lm460fkzjLTL4EHvCprvA==
-  /@babel/plugin-transform-modules-commonjs/7.12.13_@babel+core@7.12.3:
+      integrity: sha512-RqeaHiwZtphSIUZ5I85PEH19LOSzxfuEazoY7/pWASCAIBuATQzpSVD+eT6MebeeZT2F4eSL0u4vw6n4Nm0Mjg==
+  /@babel/plugin-transform-react-pure-annotations/7.12.1_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-module-transforms': 7.12.13
-      '@babel/helper-plugin-utils': 7.12.13
-      '@babel/helper-simple-access': 7.12.13
-      babel-plugin-dynamic-import-node: 2.3.3
+      '@babel/helper-annotate-as-pure': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-OGQoeVXVi1259HjuoDnsQMlMkT9UkZT9TpXAsqWplS/M0N1g3TJAn/ByOCeQu7mfjc5WpSsRU+jV1Hd89ts0kQ==
-  /@babel/plugin-transform-modules-commonjs/7.12.13_@babel+core@7.9.0:
+      integrity: sha512-RqeaHiwZtphSIUZ5I85PEH19LOSzxfuEazoY7/pWASCAIBuATQzpSVD+eT6MebeeZT2F4eSL0u4vw6n4Nm0Mjg==
+  /@babel/plugin-transform-regenerator/7.13.15_@babel+core@7.12.3:
     dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-module-transforms': 7.12.13
-      '@babel/helper-plugin-utils': 7.12.13
-      '@babel/helper-simple-access': 7.12.13
-      babel-plugin-dynamic-import-node: 2.3.3
+      '@babel/core': 7.12.3
+      regenerator-transform: 0.14.5
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-OGQoeVXVi1259HjuoDnsQMlMkT9UkZT9TpXAsqWplS/M0N1g3TJAn/ByOCeQu7mfjc5WpSsRU+jV1Hd89ts0kQ==
-  /@babel/plugin-transform-modules-systemjs/7.12.13_@babel+core@7.12.3:
+      integrity: sha512-Bk9cOLSz8DiurcMETZ8E2YtIVJbFCPGW28DJWUakmyVWtQSm6Wsf0p4B4BfEr/eL2Nkhe/CICiUiMOCi1TPhuQ==
+  /@babel/plugin-transform-reserved-words/7.12.13_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-hoist-variables': 7.12.13
-      '@babel/helper-module-transforms': 7.12.13
-      '@babel/helper-plugin-utils': 7.12.13
-      '@babel/helper-validator-identifier': 7.12.11
-      babel-plugin-dynamic-import-node: 2.3.3
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-aHfVjhZ8QekaNF/5aNdStCGzwTbU7SI5hUybBKlMzqIMC7w7Ho8hx5a4R/DkTHfRfLwHGGxSpFt9BfxKCoXKoA==
-  /@babel/plugin-transform-modules-systemjs/7.12.13_@babel+core@7.9.0:
+      integrity: sha512-xhUPzDXxZN1QfiOy/I5tyye+TRz6lA7z6xaT4CLOjPRMVg1ldRf0LHw0TDBpYL4vG78556WuHdyO9oi5UmzZBg==
+  /@babel/plugin-transform-runtime/7.12.1_@babel+core@7.12.3:
     dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-hoist-variables': 7.12.13
-      '@babel/helper-module-transforms': 7.12.13
-      '@babel/helper-plugin-utils': 7.12.13
-      '@babel/helper-validator-identifier': 7.12.11
-      babel-plugin-dynamic-import-node: 2.3.3
+      '@babel/core': 7.12.3
+      '@babel/helper-module-imports': 7.13.12
+      '@babel/helper-plugin-utils': 7.13.0
+      resolve: 1.20.0
+      semver: 5.7.1
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-aHfVjhZ8QekaNF/5aNdStCGzwTbU7SI5hUybBKlMzqIMC7w7Ho8hx5a4R/DkTHfRfLwHGGxSpFt9BfxKCoXKoA==
-  /@babel/plugin-transform-modules-umd/7.12.13_@babel+core@7.12.3:
+      integrity: sha512-Ac/H6G9FEIkS2tXsZjL4RAdS3L3WHxci0usAnz7laPWUmFiGtj7tIASChqKZMHTSQTQY6xDbOq+V1/vIq3QrWg==
+  /@babel/plugin-transform-shorthand-properties/7.12.13_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-module-transforms': 7.12.13
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-BgZndyABRML4z6ibpi7Z98m4EVLFI9tVsZDADC14AElFaNHHBcJIovflJ6wtCqFxwy2YJ1tJhGRsr0yLPKoN+w==
-  /@babel/plugin-transform-modules-umd/7.12.13_@babel+core@7.9.0:
+      integrity: sha512-xpL49pqPnLtf0tVluuqvzWIgLEhuPpZzvs2yabUHSKRNlN7ScYU7aMlmavOeyXJZKgZKQRBlh8rHbKiJDraTSw==
+  /@babel/plugin-transform-spread/7.13.0_@babel+core@7.12.3:
     dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-module-transforms': 7.12.13
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/core': 7.12.3
+      '@babel/helper-plugin-utils': 7.13.0
+      '@babel/helper-skip-transparent-expression-wrappers': 7.12.1
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-BgZndyABRML4z6ibpi7Z98m4EVLFI9tVsZDADC14AElFaNHHBcJIovflJ6wtCqFxwy2YJ1tJhGRsr0yLPKoN+w==
-  /@babel/plugin-transform-named-capturing-groups-regex/7.12.13_@babel+core@7.12.3:
+      integrity: sha512-V6vkiXijjzYeFmQTr3dBxPtZYLPcUfY34DebOU27jIl2M/Y8Egm52Hw82CSjjPqd54GTlJs5x+CR7HeNr24ckg==
+  /@babel/plugin-transform-sticky-regex/7.12.13_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-create-regexp-features-plugin': 7.12.13_@babel+core@7.12.3
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
-      '@babel/core': ^7.0.0
+      '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-Xsm8P2hr5hAxyYblrfACXpQKdQbx4m2df9/ZZSQ8MAhsadw06+jW7s9zsSw6he+mJZXRlVMyEnVktJo4zjk1WA==
-  /@babel/plugin-transform-named-capturing-groups-regex/7.12.13_@babel+core@7.9.0:
+      integrity: sha512-Jc3JSaaWT8+fr7GRvQP02fKDsYk4K/lYwWq38r/UGfaxo89ajud321NH28KRQ7xy1Ybc0VUE5Pz8psjNNDUglg==
+  /@babel/plugin-transform-template-literals/7.13.0_@babel+core@7.12.3:
     dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-create-regexp-features-plugin': 7.12.13_@babel+core@7.9.0
+      '@babel/core': 7.12.3
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
-      '@babel/core': ^7.0.0
+      '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-Xsm8P2hr5hAxyYblrfACXpQKdQbx4m2df9/ZZSQ8MAhsadw06+jW7s9zsSw6he+mJZXRlVMyEnVktJo4zjk1WA==
-  /@babel/plugin-transform-new-target/7.12.13_@babel+core@7.12.3:
+      integrity: sha512-d67umW6nlfmr1iehCcBv69eSUSySk1EsIS8aTDX4Xo9qajAh6mYtcl4kJrBkGXuxZPEgVr7RVfAvNW6YQkd4Mw==
+  /@babel/plugin-transform-typeof-symbol/7.12.13_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-/KY2hbLxrG5GTQ9zzZSc3xWiOy379pIETEhbtzwZcw9rvuaVV4Fqy7BYGYOWZnaoXIQYbbJ0ziXLa/sKcGCYEQ==
-  /@babel/plugin-transform-new-target/7.12.13_@babel+core@7.9.0:
+      integrity: sha512-eKv/LmUJpMnu4npgfvs3LiHhJua5fo/CysENxa45YCQXZwKnGCQKAg87bvoqSW1fFT+HA32l03Qxsm8ouTY3ZQ==
+  /@babel/plugin-transform-typescript/7.14.3:
     dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-create-class-features-plugin': 7.14.3
+      '@babel/helper-plugin-utils': 7.13.0
+      '@babel/plugin-syntax-typescript': 7.12.13
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-/KY2hbLxrG5GTQ9zzZSc3xWiOy379pIETEhbtzwZcw9rvuaVV4Fqy7BYGYOWZnaoXIQYbbJ0ziXLa/sKcGCYEQ==
-  /@babel/plugin-transform-object-super/7.12.13_@babel+core@7.12.3:
+      integrity: sha512-G5Bb5pY6tJRTC4ag1visSgiDoGgJ1u1fMUgmc2ijLkcIdzP83Q1qyZX4ggFQ/SkR+PNOatkaYC+nKcTlpsX4ag==
+  /@babel/plugin-transform-typescript/7.14.3_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
-      '@babel/helper-replace-supers': 7.12.13
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-JzYIcj3XtYspZDV8j9ulnoMPZZnF/Cj0LUxPOjR89BdBVx+zYJI9MdMIlUZjbXDX+6YVeS6I3e8op+qQ3BYBoQ==
-  /@babel/plugin-transform-object-super/7.12.13_@babel+core@7.9.0:
-    dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
-      '@babel/helper-replace-supers': 7.12.13
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-JzYIcj3XtYspZDV8j9ulnoMPZZnF/Cj0LUxPOjR89BdBVx+zYJI9MdMIlUZjbXDX+6YVeS6I3e8op+qQ3BYBoQ==
-  /@babel/plugin-transform-parameters/7.12.13_@babel+core@7.12.3:
-    dependencies:
-      '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-e7QqwZalNiBRHCpJg/P8s/VJeSRYgmtWySs1JwvfwPqhBbiWfOcHDKdeAi6oAyIimoKWBlwc8oTgbZHdhCoVZA==
-  /@babel/plugin-transform-parameters/7.12.13_@babel+core@7.9.0:
-    dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-e7QqwZalNiBRHCpJg/P8s/VJeSRYgmtWySs1JwvfwPqhBbiWfOcHDKdeAi6oAyIimoKWBlwc8oTgbZHdhCoVZA==
-  /@babel/plugin-transform-property-literals/7.12.13_@babel+core@7.12.3:
-    dependencies:
-      '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-nqVigwVan+lR+g8Fj8Exl0UQX2kymtjcWfMOYM1vTYEKujeyv2SkMgazf2qNcK7l4SDiKyTA/nHCPqL4e2zo1A==
-  /@babel/plugin-transform-property-literals/7.12.13_@babel+core@7.9.0:
-    dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-nqVigwVan+lR+g8Fj8Exl0UQX2kymtjcWfMOYM1vTYEKujeyv2SkMgazf2qNcK7l4SDiKyTA/nHCPqL4e2zo1A==
-  /@babel/plugin-transform-react-display-name/7.12.13:
-    dependencies:
-      '@babel/helper-plugin-utils': 7.12.13
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-MprESJzI9O5VnJZrL7gg1MpdqmiFcUv41Jc7SahxYsNP2kDkFqClxxTZq+1Qv4AFCamm+GXMRDQINNn+qrxmiA==
-  /@babel/plugin-transform-react-display-name/7.12.13_@babel+core@7.12.13:
-    dependencies:
-      '@babel/core': 7.12.13
-      '@babel/helper-plugin-utils': 7.12.13
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-MprESJzI9O5VnJZrL7gg1MpdqmiFcUv41Jc7SahxYsNP2kDkFqClxxTZq+1Qv4AFCamm+GXMRDQINNn+qrxmiA==
-  /@babel/plugin-transform-react-display-name/7.12.1_@babel+core@7.12.3:
-    dependencies:
-      '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-cAzB+UzBIrekfYxyLlFqf/OagTvHLcVBb5vpouzkYkBclRPraiygVnafvAoipErZLI8ANv8Ecn6E/m5qPXD26w==
-  /@babel/plugin-transform-react-display-name/7.8.3_@babel+core@7.9.0:
-    dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-3Jy/PCw8Fe6uBKtEgz3M82ljt+lTg+xJaM4og+eyu83qLT87ZUSckn0wy7r31jflURWLO83TW6Ylf7lyXj3m5A==
-  /@babel/plugin-transform-react-jsx-development/7.12.12:
-    dependencies:
-      '@babel/plugin-transform-react-jsx': 7.12.13
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-i1AxnKxHeMxUaWVXQOSIco4tvVvvCxMSfeBMnMM06mpaJt3g+MpxYQQrDfojUQldP1xxraPSJYSMEljoWM/dCg==
-  /@babel/plugin-transform-react-jsx-development/7.12.12_@babel+core@7.12.13:
-    dependencies:
-      '@babel/core': 7.12.13
-      '@babel/plugin-transform-react-jsx': 7.12.13_@babel+core@7.12.13
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-i1AxnKxHeMxUaWVXQOSIco4tvVvvCxMSfeBMnMM06mpaJt3g+MpxYQQrDfojUQldP1xxraPSJYSMEljoWM/dCg==
-  /@babel/plugin-transform-react-jsx-development/7.12.12_@babel+core@7.12.3:
-    dependencies:
-      '@babel/core': 7.12.3
-      '@babel/plugin-transform-react-jsx': 7.12.13_@babel+core@7.12.3
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-i1AxnKxHeMxUaWVXQOSIco4tvVvvCxMSfeBMnMM06mpaJt3g+MpxYQQrDfojUQldP1xxraPSJYSMEljoWM/dCg==
-  /@babel/plugin-transform-react-jsx-development/7.12.12_@babel+core@7.9.0:
-    dependencies:
-      '@babel/core': 7.9.0
-      '@babel/plugin-transform-react-jsx': 7.12.13_@babel+core@7.9.0
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-i1AxnKxHeMxUaWVXQOSIco4tvVvvCxMSfeBMnMM06mpaJt3g+MpxYQQrDfojUQldP1xxraPSJYSMEljoWM/dCg==
-  /@babel/plugin-transform-react-jsx-self/7.12.13_@babel+core@7.12.3:
-    dependencies:
-      '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-FXYw98TTJ125GVCCkFLZXlZ1qGcsYqNQhVBQcZjyrwf8FEUtVfKIoidnO8S0q+KBQpDYNTmiGo1gn67Vti04lQ==
-  /@babel/plugin-transform-react-jsx-self/7.12.13_@babel+core@7.9.0:
-    dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-FXYw98TTJ125GVCCkFLZXlZ1qGcsYqNQhVBQcZjyrwf8FEUtVfKIoidnO8S0q+KBQpDYNTmiGo1gn67Vti04lQ==
-  /@babel/plugin-transform-react-jsx-source/7.12.13_@babel+core@7.12.3:
-    dependencies:
-      '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-O5JJi6fyfih0WfDgIJXksSPhGP/G0fQpfxYy87sDc+1sFmsCS6wr3aAn+whbzkhbjtq4VMqLRaSzR6IsshIC0Q==
-  /@babel/plugin-transform-react-jsx-source/7.12.13_@babel+core@7.9.0:
-    dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-O5JJi6fyfih0WfDgIJXksSPhGP/G0fQpfxYy87sDc+1sFmsCS6wr3aAn+whbzkhbjtq4VMqLRaSzR6IsshIC0Q==
-  /@babel/plugin-transform-react-jsx/7.12.13:
-    dependencies:
-      '@babel/helper-annotate-as-pure': 7.12.13
-      '@babel/helper-module-imports': 7.12.13
-      '@babel/helper-plugin-utils': 7.12.13
-      '@babel/plugin-syntax-jsx': 7.12.13
-      '@babel/types': 7.12.13
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-hhXZMYR8t9RvduN2uW4sjl6MRtUhzNE726JvoJhpjhxKgRUVkZqTsA0xc49ALZxQM7H26pZ/lLvB2Yrea9dllA==
-  /@babel/plugin-transform-react-jsx/7.12.13_@babel+core@7.12.13:
-    dependencies:
-      '@babel/core': 7.12.13
-      '@babel/helper-annotate-as-pure': 7.12.13
-      '@babel/helper-module-imports': 7.12.13
-      '@babel/helper-plugin-utils': 7.12.13
-      '@babel/plugin-syntax-jsx': 7.12.13_@babel+core@7.12.13
-      '@babel/types': 7.12.13
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-hhXZMYR8t9RvduN2uW4sjl6MRtUhzNE726JvoJhpjhxKgRUVkZqTsA0xc49ALZxQM7H26pZ/lLvB2Yrea9dllA==
-  /@babel/plugin-transform-react-jsx/7.12.13_@babel+core@7.12.3:
-    dependencies:
-      '@babel/core': 7.12.3
-      '@babel/helper-annotate-as-pure': 7.12.13
-      '@babel/helper-module-imports': 7.12.13
-      '@babel/helper-plugin-utils': 7.12.13
-      '@babel/plugin-syntax-jsx': 7.12.13_@babel+core@7.12.3
-      '@babel/types': 7.12.13
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-hhXZMYR8t9RvduN2uW4sjl6MRtUhzNE726JvoJhpjhxKgRUVkZqTsA0xc49ALZxQM7H26pZ/lLvB2Yrea9dllA==
-  /@babel/plugin-transform-react-jsx/7.12.13_@babel+core@7.9.0:
-    dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-annotate-as-pure': 7.12.13
-      '@babel/helper-module-imports': 7.12.13
-      '@babel/helper-plugin-utils': 7.12.13
-      '@babel/plugin-syntax-jsx': 7.12.13_@babel+core@7.9.0
-      '@babel/types': 7.12.13
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-hhXZMYR8t9RvduN2uW4sjl6MRtUhzNE726JvoJhpjhxKgRUVkZqTsA0xc49ALZxQM7H26pZ/lLvB2Yrea9dllA==
-  /@babel/plugin-transform-react-pure-annotations/7.12.1:
-    dependencies:
-      '@babel/helper-annotate-as-pure': 7.12.13
-      '@babel/helper-plugin-utils': 7.12.13
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-RqeaHiwZtphSIUZ5I85PEH19LOSzxfuEazoY7/pWASCAIBuATQzpSVD+eT6MebeeZT2F4eSL0u4vw6n4Nm0Mjg==
-  /@babel/plugin-transform-react-pure-annotations/7.12.1_@babel+core@7.12.13:
-    dependencies:
-      '@babel/core': 7.12.13
-      '@babel/helper-annotate-as-pure': 7.12.13
-      '@babel/helper-plugin-utils': 7.12.13
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-RqeaHiwZtphSIUZ5I85PEH19LOSzxfuEazoY7/pWASCAIBuATQzpSVD+eT6MebeeZT2F4eSL0u4vw6n4Nm0Mjg==
-  /@babel/plugin-transform-react-pure-annotations/7.12.1_@babel+core@7.12.3:
-    dependencies:
-      '@babel/core': 7.12.3
-      '@babel/helper-annotate-as-pure': 7.12.13
-      '@babel/helper-plugin-utils': 7.12.13
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-RqeaHiwZtphSIUZ5I85PEH19LOSzxfuEazoY7/pWASCAIBuATQzpSVD+eT6MebeeZT2F4eSL0u4vw6n4Nm0Mjg==
-  /@babel/plugin-transform-regenerator/7.12.13_@babel+core@7.12.3:
-    dependencies:
-      '@babel/core': 7.12.3
-      regenerator-transform: 0.14.5
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-lxb2ZAvSLyJ2PEe47hoGWPmW22v7CtSl9jW8mingV4H2sEX/JOcrAj2nPuGWi56ERUm2bUpjKzONAuT6HCn2EA==
-  /@babel/plugin-transform-regenerator/7.12.13_@babel+core@7.9.0:
-    dependencies:
-      '@babel/core': 7.9.0
-      regenerator-transform: 0.14.5
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-lxb2ZAvSLyJ2PEe47hoGWPmW22v7CtSl9jW8mingV4H2sEX/JOcrAj2nPuGWi56ERUm2bUpjKzONAuT6HCn2EA==
-  /@babel/plugin-transform-reserved-words/7.12.13_@babel+core@7.12.3:
-    dependencies:
-      '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-xhUPzDXxZN1QfiOy/I5tyye+TRz6lA7z6xaT4CLOjPRMVg1ldRf0LHw0TDBpYL4vG78556WuHdyO9oi5UmzZBg==
-  /@babel/plugin-transform-reserved-words/7.12.13_@babel+core@7.9.0:
-    dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-xhUPzDXxZN1QfiOy/I5tyye+TRz6lA7z6xaT4CLOjPRMVg1ldRf0LHw0TDBpYL4vG78556WuHdyO9oi5UmzZBg==
-  /@babel/plugin-transform-runtime/7.12.1_@babel+core@7.12.3:
-    dependencies:
-      '@babel/core': 7.12.3
-      '@babel/helper-module-imports': 7.12.13
-      '@babel/helper-plugin-utils': 7.12.13
-      resolve: 1.19.0
-      semver: 5.7.1
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-Ac/H6G9FEIkS2tXsZjL4RAdS3L3WHxci0usAnz7laPWUmFiGtj7tIASChqKZMHTSQTQY6xDbOq+V1/vIq3QrWg==
-  /@babel/plugin-transform-runtime/7.9.0_@babel+core@7.9.0:
-    dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-module-imports': 7.12.13
-      '@babel/helper-plugin-utils': 7.12.13
-      resolve: 1.19.0
-      semver: 5.7.1
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-pUu9VSf3kI1OqbWINQ7MaugnitRss1z533436waNXp+0N3ur3zfut37sXiQMxkuCF4VUjwZucen/quskCh7NHw==
-  /@babel/plugin-transform-shorthand-properties/7.12.13_@babel+core@7.12.3:
-    dependencies:
-      '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-xpL49pqPnLtf0tVluuqvzWIgLEhuPpZzvs2yabUHSKRNlN7ScYU7aMlmavOeyXJZKgZKQRBlh8rHbKiJDraTSw==
-  /@babel/plugin-transform-shorthand-properties/7.12.13_@babel+core@7.9.0:
-    dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-xpL49pqPnLtf0tVluuqvzWIgLEhuPpZzvs2yabUHSKRNlN7ScYU7aMlmavOeyXJZKgZKQRBlh8rHbKiJDraTSw==
-  /@babel/plugin-transform-spread/7.12.13_@babel+core@7.12.3:
-    dependencies:
-      '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
-      '@babel/helper-skip-transparent-expression-wrappers': 7.12.1
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-dUCrqPIowjqk5pXsx1zPftSq4sT0aCeZVAxhdgs3AMgyaDmoUT0G+5h3Dzja27t76aUEIJWlFgPJqJ/d4dbTtg==
-  /@babel/plugin-transform-spread/7.12.13_@babel+core@7.9.0:
-    dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
-      '@babel/helper-skip-transparent-expression-wrappers': 7.12.1
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-dUCrqPIowjqk5pXsx1zPftSq4sT0aCeZVAxhdgs3AMgyaDmoUT0G+5h3Dzja27t76aUEIJWlFgPJqJ/d4dbTtg==
-  /@babel/plugin-transform-sticky-regex/7.12.13_@babel+core@7.12.3:
-    dependencies:
-      '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-Jc3JSaaWT8+fr7GRvQP02fKDsYk4K/lYwWq38r/UGfaxo89ajud321NH28KRQ7xy1Ybc0VUE5Pz8psjNNDUglg==
-  /@babel/plugin-transform-sticky-regex/7.12.13_@babel+core@7.9.0:
-    dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-Jc3JSaaWT8+fr7GRvQP02fKDsYk4K/lYwWq38r/UGfaxo89ajud321NH28KRQ7xy1Ybc0VUE5Pz8psjNNDUglg==
-  /@babel/plugin-transform-template-literals/7.12.13_@babel+core@7.12.3:
-    dependencies:
-      '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-arIKlWYUgmNsF28EyfmiQHJLJFlAJNYkuQO10jL46ggjBpeb2re1P9K9YGxNJB45BqTbaslVysXDYm/g3sN/Qg==
-  /@babel/plugin-transform-template-literals/7.12.13_@babel+core@7.9.0:
-    dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-arIKlWYUgmNsF28EyfmiQHJLJFlAJNYkuQO10jL46ggjBpeb2re1P9K9YGxNJB45BqTbaslVysXDYm/g3sN/Qg==
-  /@babel/plugin-transform-typeof-symbol/7.12.13_@babel+core@7.12.3:
-    dependencies:
-      '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-eKv/LmUJpMnu4npgfvs3LiHhJua5fo/CysENxa45YCQXZwKnGCQKAg87bvoqSW1fFT+HA32l03Qxsm8ouTY3ZQ==
-  /@babel/plugin-transform-typeof-symbol/7.12.13_@babel+core@7.9.0:
-    dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-eKv/LmUJpMnu4npgfvs3LiHhJua5fo/CysENxa45YCQXZwKnGCQKAg87bvoqSW1fFT+HA32l03Qxsm8ouTY3ZQ==
-  /@babel/plugin-transform-typescript/7.12.13_@babel+core@7.12.13:
-    dependencies:
-      '@babel/core': 7.12.13
-      '@babel/helper-create-class-features-plugin': 7.12.13_@babel+core@7.12.13
-      '@babel/helper-plugin-utils': 7.12.13
-      '@babel/plugin-syntax-typescript': 7.12.13_@babel+core@7.12.13
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-z1VWskPJxK9tfxoYvePWvzSJC+4pxXr8ArmRm5ofqgi+mwpKg6lvtomkIngBYMJVnKhsFYVysCQLDn//v2RHcg==
-  /@babel/plugin-transform-typescript/7.12.13_@babel+core@7.12.3:
-    dependencies:
-      '@babel/core': 7.12.3
-      '@babel/helper-create-class-features-plugin': 7.12.13_@babel+core@7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-create-class-features-plugin': 7.14.3_@babel+core@7.12.3
+      '@babel/helper-plugin-utils': 7.13.0
       '@babel/plugin-syntax-typescript': 7.12.13_@babel+core@7.12.3
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-z1VWskPJxK9tfxoYvePWvzSJC+4pxXr8ArmRm5ofqgi+mwpKg6lvtomkIngBYMJVnKhsFYVysCQLDn//v2RHcg==
-  /@babel/plugin-transform-typescript/7.12.13_@babel+core@7.9.0:
-    dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-create-class-features-plugin': 7.12.13_@babel+core@7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
-      '@babel/plugin-syntax-typescript': 7.12.13_@babel+core@7.9.0
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-z1VWskPJxK9tfxoYvePWvzSJC+4pxXr8ArmRm5ofqgi+mwpKg6lvtomkIngBYMJVnKhsFYVysCQLDn//v2RHcg==
+      integrity: sha512-G5Bb5pY6tJRTC4ag1visSgiDoGgJ1u1fMUgmc2ijLkcIdzP83Q1qyZX4ggFQ/SkR+PNOatkaYC+nKcTlpsX4ag==
   /@babel/plugin-transform-unicode-escapes/7.12.13_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
@@ -1882,18 +1281,8 @@ packages:
   /@babel/plugin-transform-unicode-regex/7.12.13_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-create-regexp-features-plugin': 7.12.13_@babel+core@7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-mDRzSNY7/zopwisPZ5kM9XKCfhchqIYwAKRERtEnhYscZB79VRekuRSoYbN0+KVe3y8+q1h6A4svXtP7N+UoCA==
-  /@babel/plugin-transform-unicode-regex/7.12.13_@babel+core@7.9.0:
-    dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-create-regexp-features-plugin': 7.12.13_@babel+core@7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-create-regexp-features-plugin': 7.14.3_@babel+core@7.12.3
+      '@babel/helper-plugin-utils': 7.13.0
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
@@ -1901,24 +1290,24 @@ packages:
       integrity: sha512-mDRzSNY7/zopwisPZ5kM9XKCfhchqIYwAKRERtEnhYscZB79VRekuRSoYbN0+KVe3y8+q1h6A4svXtP7N+UoCA==
   /@babel/preset-env/7.12.1_@babel+core@7.12.3:
     dependencies:
-      '@babel/compat-data': 7.12.13
+      '@babel/compat-data': 7.14.0
       '@babel/core': 7.12.3
-      '@babel/helper-compilation-targets': 7.12.13_@babel+core@7.12.3
-      '@babel/helper-module-imports': 7.12.13
-      '@babel/helper-plugin-utils': 7.12.13
-      '@babel/helper-validator-option': 7.12.11
-      '@babel/plugin-proposal-async-generator-functions': 7.12.13_@babel+core@7.12.3
+      '@babel/helper-compilation-targets': 7.13.16_@babel+core@7.12.3
+      '@babel/helper-module-imports': 7.13.12
+      '@babel/helper-plugin-utils': 7.13.0
+      '@babel/helper-validator-option': 7.12.17
+      '@babel/plugin-proposal-async-generator-functions': 7.14.2_@babel+core@7.12.3
       '@babel/plugin-proposal-class-properties': 7.12.1_@babel+core@7.12.3
-      '@babel/plugin-proposal-dynamic-import': 7.12.1_@babel+core@7.12.3
-      '@babel/plugin-proposal-export-namespace-from': 7.12.13_@babel+core@7.12.3
-      '@babel/plugin-proposal-json-strings': 7.12.13_@babel+core@7.12.3
-      '@babel/plugin-proposal-logical-assignment-operators': 7.12.13_@babel+core@7.12.3
+      '@babel/plugin-proposal-dynamic-import': 7.14.2_@babel+core@7.12.3
+      '@babel/plugin-proposal-export-namespace-from': 7.14.2_@babel+core@7.12.3
+      '@babel/plugin-proposal-json-strings': 7.14.2_@babel+core@7.12.3
+      '@babel/plugin-proposal-logical-assignment-operators': 7.14.2_@babel+core@7.12.3
       '@babel/plugin-proposal-nullish-coalescing-operator': 7.12.1_@babel+core@7.12.3
       '@babel/plugin-proposal-numeric-separator': 7.12.1_@babel+core@7.12.3
-      '@babel/plugin-proposal-object-rest-spread': 7.12.13_@babel+core@7.12.3
-      '@babel/plugin-proposal-optional-catch-binding': 7.12.13_@babel+core@7.12.3
+      '@babel/plugin-proposal-object-rest-spread': 7.14.2_@babel+core@7.12.3
+      '@babel/plugin-proposal-optional-catch-binding': 7.14.2_@babel+core@7.12.3
       '@babel/plugin-proposal-optional-chaining': 7.12.1_@babel+core@7.12.3
-      '@babel/plugin-proposal-private-methods': 7.12.13_@babel+core@7.12.3
+      '@babel/plugin-proposal-private-methods': 7.13.0_@babel+core@7.12.3
       '@babel/plugin-proposal-unicode-property-regex': 7.12.13_@babel+core@7.12.3
       '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.12.3
       '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.12.3
@@ -1932,287 +1321,161 @@ packages:
       '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.12.3
       '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.12.3
       '@babel/plugin-syntax-top-level-await': 7.12.13_@babel+core@7.12.3
-      '@babel/plugin-transform-arrow-functions': 7.12.13_@babel+core@7.12.3
-      '@babel/plugin-transform-async-to-generator': 7.12.13_@babel+core@7.12.3
+      '@babel/plugin-transform-arrow-functions': 7.13.0_@babel+core@7.12.3
+      '@babel/plugin-transform-async-to-generator': 7.13.0_@babel+core@7.12.3
       '@babel/plugin-transform-block-scoped-functions': 7.12.13_@babel+core@7.12.3
-      '@babel/plugin-transform-block-scoping': 7.12.13_@babel+core@7.12.3
-      '@babel/plugin-transform-classes': 7.12.13_@babel+core@7.12.3
-      '@babel/plugin-transform-computed-properties': 7.12.13_@babel+core@7.12.3
-      '@babel/plugin-transform-destructuring': 7.12.13_@babel+core@7.12.3
+      '@babel/plugin-transform-block-scoping': 7.14.2_@babel+core@7.12.3
+      '@babel/plugin-transform-classes': 7.14.2_@babel+core@7.12.3
+      '@babel/plugin-transform-computed-properties': 7.13.0_@babel+core@7.12.3
+      '@babel/plugin-transform-destructuring': 7.13.17_@babel+core@7.12.3
       '@babel/plugin-transform-dotall-regex': 7.12.13_@babel+core@7.12.3
       '@babel/plugin-transform-duplicate-keys': 7.12.13_@babel+core@7.12.3
       '@babel/plugin-transform-exponentiation-operator': 7.12.13_@babel+core@7.12.3
-      '@babel/plugin-transform-for-of': 7.12.13_@babel+core@7.12.3
+      '@babel/plugin-transform-for-of': 7.13.0_@babel+core@7.12.3
       '@babel/plugin-transform-function-name': 7.12.13_@babel+core@7.12.3
       '@babel/plugin-transform-literals': 7.12.13_@babel+core@7.12.3
       '@babel/plugin-transform-member-expression-literals': 7.12.13_@babel+core@7.12.3
-      '@babel/plugin-transform-modules-amd': 7.12.13_@babel+core@7.12.3
-      '@babel/plugin-transform-modules-commonjs': 7.12.13_@babel+core@7.12.3
-      '@babel/plugin-transform-modules-systemjs': 7.12.13_@babel+core@7.12.3
-      '@babel/plugin-transform-modules-umd': 7.12.13_@babel+core@7.12.3
+      '@babel/plugin-transform-modules-amd': 7.14.2_@babel+core@7.12.3
+      '@babel/plugin-transform-modules-commonjs': 7.14.0_@babel+core@7.12.3
+      '@babel/plugin-transform-modules-systemjs': 7.13.8_@babel+core@7.12.3
+      '@babel/plugin-transform-modules-umd': 7.14.0_@babel+core@7.12.3
       '@babel/plugin-transform-named-capturing-groups-regex': 7.12.13_@babel+core@7.12.3
       '@babel/plugin-transform-new-target': 7.12.13_@babel+core@7.12.3
       '@babel/plugin-transform-object-super': 7.12.13_@babel+core@7.12.3
-      '@babel/plugin-transform-parameters': 7.12.13_@babel+core@7.12.3
+      '@babel/plugin-transform-parameters': 7.14.2_@babel+core@7.12.3
       '@babel/plugin-transform-property-literals': 7.12.13_@babel+core@7.12.3
-      '@babel/plugin-transform-regenerator': 7.12.13_@babel+core@7.12.3
+      '@babel/plugin-transform-regenerator': 7.13.15_@babel+core@7.12.3
       '@babel/plugin-transform-reserved-words': 7.12.13_@babel+core@7.12.3
       '@babel/plugin-transform-shorthand-properties': 7.12.13_@babel+core@7.12.3
-      '@babel/plugin-transform-spread': 7.12.13_@babel+core@7.12.3
+      '@babel/plugin-transform-spread': 7.13.0_@babel+core@7.12.3
       '@babel/plugin-transform-sticky-regex': 7.12.13_@babel+core@7.12.3
-      '@babel/plugin-transform-template-literals': 7.12.13_@babel+core@7.12.3
+      '@babel/plugin-transform-template-literals': 7.13.0_@babel+core@7.12.3
       '@babel/plugin-transform-typeof-symbol': 7.12.13_@babel+core@7.12.3
       '@babel/plugin-transform-unicode-escapes': 7.12.13_@babel+core@7.12.3
       '@babel/plugin-transform-unicode-regex': 7.12.13_@babel+core@7.12.3
       '@babel/preset-modules': 0.1.4_@babel+core@7.12.3
-      '@babel/types': 7.12.13
-      core-js-compat: 3.8.3
+      '@babel/types': 7.14.2
+      core-js-compat: 3.12.1
       semver: 5.7.1
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
       integrity: sha512-H8kxXmtPaAGT7TyBvSSkoSTUK6RHh61So05SyEbpmr0MCZrsNYn7mGMzzeYoOUCdHzww61k8XBft2TaES+xPLg==
-  /@babel/preset-env/7.9.0_@babel+core@7.9.0:
-    dependencies:
-      '@babel/compat-data': 7.12.13
-      '@babel/core': 7.9.0
-      '@babel/helper-compilation-targets': 7.12.13_@babel+core@7.9.0
-      '@babel/helper-module-imports': 7.12.13
-      '@babel/helper-plugin-utils': 7.12.13
-      '@babel/plugin-proposal-async-generator-functions': 7.12.13_@babel+core@7.9.0
-      '@babel/plugin-proposal-dynamic-import': 7.12.1_@babel+core@7.9.0
-      '@babel/plugin-proposal-json-strings': 7.12.13_@babel+core@7.9.0
-      '@babel/plugin-proposal-nullish-coalescing-operator': 7.8.3_@babel+core@7.9.0
-      '@babel/plugin-proposal-numeric-separator': 7.8.3_@babel+core@7.9.0
-      '@babel/plugin-proposal-object-rest-spread': 7.12.13_@babel+core@7.9.0
-      '@babel/plugin-proposal-optional-catch-binding': 7.12.13_@babel+core@7.9.0
-      '@babel/plugin-proposal-optional-chaining': 7.9.0_@babel+core@7.9.0
-      '@babel/plugin-proposal-unicode-property-regex': 7.12.13_@babel+core@7.9.0
-      '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.9.0
-      '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.9.0
-      '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.9.0
-      '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.9.0
-      '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.9.0
-      '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.9.0
-      '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.9.0
-      '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.9.0
-      '@babel/plugin-syntax-top-level-await': 7.12.13_@babel+core@7.9.0
-      '@babel/plugin-transform-arrow-functions': 7.12.13_@babel+core@7.9.0
-      '@babel/plugin-transform-async-to-generator': 7.12.13_@babel+core@7.9.0
-      '@babel/plugin-transform-block-scoped-functions': 7.12.13_@babel+core@7.9.0
-      '@babel/plugin-transform-block-scoping': 7.12.13_@babel+core@7.9.0
-      '@babel/plugin-transform-classes': 7.12.13_@babel+core@7.9.0
-      '@babel/plugin-transform-computed-properties': 7.12.13_@babel+core@7.9.0
-      '@babel/plugin-transform-destructuring': 7.12.13_@babel+core@7.9.0
-      '@babel/plugin-transform-dotall-regex': 7.12.13_@babel+core@7.9.0
-      '@babel/plugin-transform-duplicate-keys': 7.12.13_@babel+core@7.9.0
-      '@babel/plugin-transform-exponentiation-operator': 7.12.13_@babel+core@7.9.0
-      '@babel/plugin-transform-for-of': 7.12.13_@babel+core@7.9.0
-      '@babel/plugin-transform-function-name': 7.12.13_@babel+core@7.9.0
-      '@babel/plugin-transform-literals': 7.12.13_@babel+core@7.9.0
-      '@babel/plugin-transform-member-expression-literals': 7.12.13_@babel+core@7.9.0
-      '@babel/plugin-transform-modules-amd': 7.12.13_@babel+core@7.9.0
-      '@babel/plugin-transform-modules-commonjs': 7.12.13_@babel+core@7.9.0
-      '@babel/plugin-transform-modules-systemjs': 7.12.13_@babel+core@7.9.0
-      '@babel/plugin-transform-modules-umd': 7.12.13_@babel+core@7.9.0
-      '@babel/plugin-transform-named-capturing-groups-regex': 7.12.13_@babel+core@7.9.0
-      '@babel/plugin-transform-new-target': 7.12.13_@babel+core@7.9.0
-      '@babel/plugin-transform-object-super': 7.12.13_@babel+core@7.9.0
-      '@babel/plugin-transform-parameters': 7.12.13_@babel+core@7.9.0
-      '@babel/plugin-transform-property-literals': 7.12.13_@babel+core@7.9.0
-      '@babel/plugin-transform-regenerator': 7.12.13_@babel+core@7.9.0
-      '@babel/plugin-transform-reserved-words': 7.12.13_@babel+core@7.9.0
-      '@babel/plugin-transform-shorthand-properties': 7.12.13_@babel+core@7.9.0
-      '@babel/plugin-transform-spread': 7.12.13_@babel+core@7.9.0
-      '@babel/plugin-transform-sticky-regex': 7.12.13_@babel+core@7.9.0
-      '@babel/plugin-transform-template-literals': 7.12.13_@babel+core@7.9.0
-      '@babel/plugin-transform-typeof-symbol': 7.12.13_@babel+core@7.9.0
-      '@babel/plugin-transform-unicode-regex': 7.12.13_@babel+core@7.9.0
-      '@babel/preset-modules': 0.1.4_@babel+core@7.9.0
-      '@babel/types': 7.12.13
-      browserslist: 4.16.3
-      core-js-compat: 3.8.3
-      invariant: 2.2.4
-      levenary: 1.1.1
-      semver: 5.7.1
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-712DeRXT6dyKAM/FMbQTV/FvRCms2hPCx+3weRjZ8iQVQWZejWWk1wwG6ViWMyqb/ouBbGOl5b6aCk0+j1NmsQ==
   /@babel/preset-modules/0.1.4_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
       '@babel/plugin-proposal-unicode-property-regex': 7.12.13_@babel+core@7.12.3
       '@babel/plugin-transform-dotall-regex': 7.12.13_@babel+core@7.12.3
-      '@babel/types': 7.12.13
+      '@babel/types': 7.14.2
       esutils: 2.0.3
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
       integrity: sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg==
-  /@babel/preset-modules/0.1.4_@babel+core@7.9.0:
-    dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
-      '@babel/plugin-proposal-unicode-property-regex': 7.12.13_@babel+core@7.9.0
-      '@babel/plugin-transform-dotall-regex': 7.12.13_@babel+core@7.9.0
-      '@babel/types': 7.12.13
-      esutils: 2.0.3
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg==
-  /@babel/preset-react/7.12.13:
-    dependencies:
-      '@babel/helper-plugin-utils': 7.12.13
-      '@babel/plugin-transform-react-display-name': 7.12.13
-      '@babel/plugin-transform-react-jsx': 7.12.13
-      '@babel/plugin-transform-react-jsx-development': 7.12.12
-      '@babel/plugin-transform-react-pure-annotations': 7.12.1
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-TYM0V9z6Abb6dj1K7i5NrEhA13oS5ujUYQYDfqIBXYHOc2c2VkFgc+q9kyssIyUfy4/hEwqrgSlJ/Qgv8zJLsA==
-  /@babel/preset-react/7.12.13_@babel+core@7.12.13:
-    dependencies:
-      '@babel/core': 7.12.13
-      '@babel/helper-plugin-utils': 7.12.13
-      '@babel/plugin-transform-react-display-name': 7.12.13_@babel+core@7.12.13
-      '@babel/plugin-transform-react-jsx': 7.12.13_@babel+core@7.12.13
-      '@babel/plugin-transform-react-jsx-development': 7.12.12_@babel+core@7.12.13
-      '@babel/plugin-transform-react-pure-annotations': 7.12.1_@babel+core@7.12.13
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-TYM0V9z6Abb6dj1K7i5NrEhA13oS5ujUYQYDfqIBXYHOc2c2VkFgc+q9kyssIyUfy4/hEwqrgSlJ/Qgv8zJLsA==
   /@babel/preset-react/7.12.1_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
       '@babel/plugin-transform-react-display-name': 7.12.1_@babel+core@7.12.3
-      '@babel/plugin-transform-react-jsx': 7.12.13_@babel+core@7.12.3
-      '@babel/plugin-transform-react-jsx-development': 7.12.12_@babel+core@7.12.3
+      '@babel/plugin-transform-react-jsx': 7.14.3_@babel+core@7.12.3
+      '@babel/plugin-transform-react-jsx-development': 7.12.17_@babel+core@7.12.3
       '@babel/plugin-transform-react-jsx-self': 7.12.13_@babel+core@7.12.3
-      '@babel/plugin-transform-react-jsx-source': 7.12.13_@babel+core@7.12.3
+      '@babel/plugin-transform-react-jsx-source': 7.14.2_@babel+core@7.12.3
       '@babel/plugin-transform-react-pure-annotations': 7.12.1_@babel+core@7.12.3
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
       integrity: sha512-euCExymHCi0qB9u5fKw7rvlw7AZSjw/NaB9h7EkdTt5+yHRrXdiRTh7fkG3uBPpJg82CqLfp1LHLqWGSCrab+g==
-  /@babel/preset-react/7.9.1_@babel+core@7.9.0:
-    dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
-      '@babel/plugin-transform-react-display-name': 7.8.3_@babel+core@7.9.0
-      '@babel/plugin-transform-react-jsx': 7.12.13_@babel+core@7.9.0
-      '@babel/plugin-transform-react-jsx-development': 7.12.12_@babel+core@7.9.0
-      '@babel/plugin-transform-react-jsx-self': 7.12.13_@babel+core@7.9.0
-      '@babel/plugin-transform-react-jsx-source': 7.12.13_@babel+core@7.9.0
-    dev: true
-    peerDependencies:
-      '@babel/core': ^7.0.0-0
-    resolution:
-      integrity: sha512-aJBYF23MPj0RNdp/4bHnAP0NVqqZRr9kl0NAOP4nJCex6OYVio59+dnQzsAWFuogdLyeaKA1hmfUIVZkY5J+TQ==
-  /@babel/preset-typescript/7.12.13_@babel+core@7.12.13:
+  /@babel/preset-react/7.13.13:
     dependencies:
-      '@babel/core': 7.12.13
-      '@babel/helper-plugin-utils': 7.12.13
-      '@babel/helper-validator-option': 7.12.11
-      '@babel/plugin-transform-typescript': 7.12.13_@babel+core@7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
+      '@babel/helper-validator-option': 7.12.17
+      '@babel/plugin-transform-react-display-name': 7.14.2
+      '@babel/plugin-transform-react-jsx': 7.14.3
+      '@babel/plugin-transform-react-jsx-development': 7.12.17
+      '@babel/plugin-transform-react-pure-annotations': 7.12.1
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-gYry7CeXwD2wtw5qHzrtzKaShEhOfTmKb4i0ZxeYBcBosN5VuAudsNbjX7Oj5EAfQ3K4s4HsVMQRRcqGsPvs2A==
+      integrity: sha512-gx+tDLIE06sRjKJkVtpZ/t3mzCDOnPG+ggHZG9lffUbX8+wC739x20YQc9V35Do6ZAxaUc/HhVHIiOzz5MvDmA==
   /@babel/preset-typescript/7.12.1_@babel+core@7.12.3:
     dependencies:
       '@babel/core': 7.12.3
-      '@babel/helper-plugin-utils': 7.12.13
-      '@babel/plugin-transform-typescript': 7.12.13_@babel+core@7.12.3
+      '@babel/helper-plugin-utils': 7.13.0
+      '@babel/plugin-transform-typescript': 7.14.3_@babel+core@7.12.3
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
       integrity: sha512-hNK/DhmoJPsksdHuI/RVrcEws7GN5eamhi28JkO52MqIxU8Z0QpmiSOQxZHWOHV7I3P4UjHV97ay4TcamMA6Kw==
-  /@babel/preset-typescript/7.9.0_@babel+core@7.9.0:
+  /@babel/preset-typescript/7.13.0:
     dependencies:
-      '@babel/core': 7.9.0
-      '@babel/helper-plugin-utils': 7.12.13
-      '@babel/plugin-transform-typescript': 7.12.13_@babel+core@7.9.0
+      '@babel/helper-plugin-utils': 7.13.0
+      '@babel/helper-validator-option': 7.12.17
+      '@babel/plugin-transform-typescript': 7.14.3
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0-0
     resolution:
-      integrity: sha512-S4cueFnGrIbvYJgwsVFKdvOmpiL0XGw9MFW9D0vgRys5g36PBhZRL8NX8Gr2akz8XRtzq6HuDXPD/1nniagNUg==
-  /@babel/runtime-corejs3/7.12.13:
+      integrity: sha512-LXJwxrHy0N3f6gIJlYbLta1D9BDtHpQeqwzM0LIfjDlr6UE/D5Mc7W4iDiQzaE+ks0sTjT26ArcHWnJVt0QiHw==
+  /@babel/runtime-corejs3/7.14.0:
     dependencies:
-      core-js-pure: 3.8.3
+      core-js-pure: 3.12.1
       regenerator-runtime: 0.13.7
     dev: true
     resolution:
-      integrity: sha512-8fSpqYRETHATtNitsCXq8QQbKJP31/KnDl2Wz2Vtui9nKzjss2ysuZtyVsWjBtvkeEFo346gkwjYPab1hvrXkQ==
+      integrity: sha512-0R0HTZWHLk6G8jIk0FtoX+AatCtKnswS98VhXwGImFc759PJRp4Tru0PQYZofyijTFUr+gT8Mu7sgXVJLQ0ceg==
   /@babel/runtime/7.12.1:
     dependencies:
       regenerator-runtime: 0.13.7
     dev: true
     resolution:
       integrity: sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==
-  /@babel/runtime/7.12.13:
+  /@babel/runtime/7.14.0:
     dependencies:
       regenerator-runtime: 0.13.7
     resolution:
-      integrity: sha512-8+3UMPBrjFa/6TtKi/7sehPKqfAm4g6K+YQjyyFOLUTxzOngcRZTlAVY8sc2CORJYqdHQY8gRPHmn+qo15rCBw==
-  /@babel/runtime/7.9.0:
-    dependencies:
-      regenerator-runtime: 0.13.7
-    dev: true
-    resolution:
-      integrity: sha512-cTIudHnzuWLS56ik4DnRnqqNf8MkdUzV4iFFI1h7Jo9xvrpQROYaAnaSd2mHLQAzzZAPfATynX5ord6YlNYNMA==
+      integrity: sha512-JELkvo/DlpNdJ7dlyw/eY7E0suy5i5GQH+Vlxaq1nsNJ+H7f4Vtv3jMeCEgRhZZQFXTjldYfQgv2qmM6M1v5wA==
   /@babel/template/7.12.13:
     dependencies:
       '@babel/code-frame': 7.12.13
-      '@babel/parser': 7.12.15
-      '@babel/types': 7.12.13
+      '@babel/parser': 7.14.3
+      '@babel/types': 7.14.2
     dev: true
     resolution:
       integrity: sha512-/7xxiGA57xMo/P2GVvdEumr8ONhFOhfgq2ihK3h1e6THqzTAkHbkXgB0xI9yeTfIUoH3+oAeHhqm/I43OTbbjA==
-  /@babel/traverse/7.12.13:
+  /@babel/traverse/7.14.2:
     dependencies:
       '@babel/code-frame': 7.12.13
-      '@babel/generator': 7.12.15
-      '@babel/helper-function-name': 7.12.13
+      '@babel/generator': 7.14.3
+      '@babel/helper-function-name': 7.14.2
       '@babel/helper-split-export-declaration': 7.12.13
-      '@babel/parser': 7.12.15
-      '@babel/types': 7.12.13
+      '@babel/parser': 7.14.3
+      '@babel/types': 7.14.2
       debug: 4.3.1
       globals: 11.12.0
-      lodash: 4.17.20
     dev: true
     resolution:
-      integrity: sha512-3Zb4w7eE/OslI0fTp8c7b286/cQps3+vdLW3UcwC8VSJC6GbKn55aeVVu2QJNuCDoeKyptLOFrPq8WqZZBodyA==
-  /@babel/types/7.12.13:
+      integrity: sha512-TsdRgvBFHMyHOOzcP9S6QU0QQtjxlRpEYOy3mcCO5RgmC305ki42aSAmfZEMSSYBla2oZ9BMqYlncBaKmD/7iA==
+  /@babel/types/7.14.2:
     dependencies:
-      '@babel/helper-validator-identifier': 7.12.11
-      lodash: 4.17.20
+      '@babel/helper-validator-identifier': 7.14.0
       to-fast-properties: 2.0.0
     dev: true
     resolution:
-      integrity: sha512-oKrdZTld2im1z8bDwTOQvUbxKwE+854zc16qWZQlcTqMN00pWxHQ4ZeOq0yDMnisOpRykH2/5Qqcrk/OlbAjiQ==
+      integrity: sha512-SdjAG/3DikRHpUOjxZgnkbR11xUlyDMUFJdvnIgZEE16mqmY0BINMmc4//JMJglEmn6i7sq6p+mGrFWyZ98EEw==
   /@bcoe/v8-coverage/0.2.3:
     dev: true
     resolution:
       integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==
   /@cnakazawa/watch/1.0.4:
     dependencies:
-      exec-sh: 0.3.4
+      exec-sh: 0.3.6
       minimist: 1.2.5
     dev: true
     engines:
@@ -2220,7 +1483,13 @@ packages:
     hasBin: true
     resolution:
       integrity: sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==
-  /@eslint/eslintrc/0.3.0:
+  /@discoveryjs/json-ext/0.5.3:
+    dev: true
+    engines:
+      node: '>=10.0.0'
+    resolution:
+      integrity: sha512-Fxt+AfXgjMoin2maPIYzFZnQjAXjAL0PHscM5pRTtatFqB+vZxAM9tLp2Optnuw3QOQC40jTNeGYFOMvyf7v9g==
+  /@eslint/eslintrc/0.4.1:
     dependencies:
       ajv: 6.12.6
       debug: 4.3.1
@@ -2229,14 +1498,13 @@ packages:
       ignore: 4.0.6
       import-fresh: 3.3.0
       js-yaml: 3.14.1
-      lodash: 4.17.20
       minimatch: 3.0.4
       strip-json-comments: 3.1.1
     dev: true
     engines:
       node: ^10.12.0 || >=12.0.0
     resolution:
-      integrity: sha512-1JTKgrOKAHVivSvOYw+sJOunkBjUOvjqWk1DPja7ZFhIS2mX/4EgTT8M7eTK9jrKhL/FvXXEbQwIs3pg1xp3dg==
+      integrity: sha512-5v7TDE9plVhvxQeWLXDTvFvJBdH6pEsdnl2g/dAptmuFEPedQ4Erq5rsDsX+mvAM610IhNaO2W5V1dOOnDKxkQ==
   /@istanbuljs/load-nyc-config/1.1.0:
     dependencies:
       camelcase: 5.3.1
@@ -2249,17 +1517,17 @@ packages:
       node: '>=8'
     resolution:
       integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==
-  /@istanbuljs/schema/0.1.2:
+  /@istanbuljs/schema/0.1.3:
     dev: true
     engines:
       node: '>=8'
     resolution:
-      integrity: sha512-tsAQNx32a8CoFhjhijUIhI4kccIAgmGhy8LZMZgGfmXcpMbPRUqn5LWmgRttILi6yeGmBJd2xsPkFMs0PzgPCw==
+      integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==
   /@jest/console/26.6.2:
     dependencies:
       '@jest/types': 26.6.2
-      '@types/node': 14.14.25
-      chalk: 4.1.0
+      '@types/node': 15.3.0
+      chalk: 4.1.1
       jest-message-util: 26.6.2
       jest-util: 26.6.2
       slash: 3.0.0
@@ -2275,11 +1543,11 @@ packages:
       '@jest/test-result': 26.6.2
       '@jest/transform': 26.6.2
       '@jest/types': 26.6.2
-      '@types/node': 14.14.25
-      ansi-escapes: 4.3.1
-      chalk: 4.1.0
+      '@types/node': 15.3.0
+      ansi-escapes: 4.3.2
+      chalk: 4.1.1
       exit: 0.1.2
-      graceful-fs: 4.2.4
+      graceful-fs: 4.2.6
       jest-changed-files: 26.6.2
       jest-config: 26.6.3_ts-node@9.1.1
       jest-haste-map: 26.6.2
@@ -2293,7 +1561,7 @@ packages:
       jest-util: 26.6.2
       jest-validate: 26.6.2
       jest-watcher: 26.6.2
-      micromatch: 4.0.2
+      micromatch: 4.0.4
       p-each-series: 2.2.0
       rimraf: 3.0.2
       slash: 3.0.0
@@ -2309,7 +1577,7 @@ packages:
     dependencies:
       '@jest/fake-timers': 26.6.2
       '@jest/types': 26.6.2
-      '@types/node': 14.14.25
+      '@types/node': 15.3.0
       jest-mock: 26.6.2
     dev: true
     engines:
@@ -2320,7 +1588,7 @@ packages:
     dependencies:
       '@jest/types': 26.6.2
       '@sinonjs/fake-timers': 6.0.1
-      '@types/node': 14.14.25
+      '@types/node': 15.3.0
       jest-message-util: 26.6.2
       jest-mock: 26.6.2
       jest-util: 26.6.2
@@ -2346,11 +1614,11 @@ packages:
       '@jest/test-result': 26.6.2
       '@jest/transform': 26.6.2
       '@jest/types': 26.6.2
-      chalk: 4.1.0
+      chalk: 4.1.1
       collect-v8-coverage: 1.0.1
       exit: 0.1.2
-      glob: 7.1.6
-      graceful-fs: 4.2.4
+      glob: 7.1.7
+      graceful-fs: 4.2.6
       istanbul-lib-coverage: 3.0.0
       istanbul-lib-instrument: 4.0.3
       istanbul-lib-report: 3.0.0
@@ -2362,20 +1630,20 @@ packages:
       jest-worker: 26.6.2
       slash: 3.0.0
       source-map: 0.6.1
-      string-length: 4.0.1
+      string-length: 4.0.2
       terminal-link: 2.1.1
-      v8-to-istanbul: 7.1.0
+      v8-to-istanbul: 7.1.2
     dev: true
     engines:
       node: '>= 10.14.2'
     optionalDependencies:
-      node-notifier: 8.0.1
+      node-notifier: 8.0.2
     resolution:
       integrity: sha512-h2bW53APG4HvkOnVMo8q3QXa6pcaNt1HkwVsOPMBV6LD/q9oSpxNSYZQYkAnjdMjrJ86UuYeLo+aEZClV6opnw==
   /@jest/source-map/26.6.2:
     dependencies:
       callsites: 3.1.0
-      graceful-fs: 4.2.4
+      graceful-fs: 4.2.6
       source-map: 0.6.1
     dev: true
     engines:
@@ -2393,31 +1661,33 @@ packages:
       node: '>= 10.14.2'
     resolution:
       integrity: sha512-5O7H5c/7YlojphYNrK02LlDIV2GNPYisKwHm2QTKjNZeEzezCbwYs9swJySv2UfPMyZ0VdsmMv7jIlD/IKYQpQ==
-  /@jest/test-sequencer/26.6.3:
+  /@jest/test-sequencer/26.6.3_ts-node@9.1.1:
     dependencies:
       '@jest/test-result': 26.6.2
-      graceful-fs: 4.2.4
+      graceful-fs: 4.2.6
       jest-haste-map: 26.6.2
-      jest-runner: 26.6.3
-      jest-runtime: 26.6.3
+      jest-runner: 26.6.3_ts-node@9.1.1
+      jest-runtime: 26.6.3_ts-node@9.1.1
     dev: true
     engines:
       node: '>= 10.14.2'
+    peerDependencies:
+      ts-node: '*'
     resolution:
       integrity: sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw==
   /@jest/transform/26.6.2:
     dependencies:
-      '@babel/core': 7.12.13
+      '@babel/core': 7.14.3
       '@jest/types': 26.6.2
       babel-plugin-istanbul: 6.0.0
-      chalk: 4.1.0
+      chalk: 4.1.1
       convert-source-map: 1.7.0
       fast-json-stable-stringify: 2.1.0
-      graceful-fs: 4.2.4
+      graceful-fs: 4.2.6
       jest-haste-map: 26.6.2
       jest-regex-util: 26.0.0
       jest-util: 26.6.2
-      micromatch: 4.0.2
+      micromatch: 4.0.4
       pirates: 4.0.1
       slash: 3.0.0
       source-map: 0.6.1
@@ -2431,9 +1701,9 @@ packages:
     dependencies:
       '@types/istanbul-lib-coverage': 2.0.3
       '@types/istanbul-reports': 3.0.0
-      '@types/node': 14.14.25
+      '@types/node': 15.3.0
       '@types/yargs': 15.0.13
-      chalk: 4.1.0
+      chalk: 4.1.1
     dev: true
     engines:
       node: '>= 10.14.2'
@@ -2457,102 +1727,31 @@ packages:
   /@nodelib/fs.walk/1.2.6:
     dependencies:
       '@nodelib/fs.scandir': 2.1.4
-      fastq: 1.10.1
+      fastq: 1.11.0
     dev: true
     engines:
       node: '>= 8'
     resolution:
       integrity: sha512-8Broas6vTtW4GIXTAHDoE32hnN2M5ykgCpWGbuXHQ15vEMqr23pB76e/GZcYsZCHALv50ktd24qhEyKr6wBtow==
-  /@sinonjs/commons/1.8.2:
+  /@sinonjs/commons/1.8.3:
     dependencies:
       type-detect: 4.0.8
     dev: true
     resolution:
-      integrity: sha512-sruwd86RJHdsVf/AtBoijDmUqJp3B6hF/DGC23C+JaegnDHaZyewCjoVGTdg3J0uz3Zs7NnIT05OBOmML72lQw==
+      integrity: sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==
   /@sinonjs/fake-timers/6.0.1:
     dependencies:
-      '@sinonjs/commons': 1.8.2
+      '@sinonjs/commons': 1.8.3
     dev: true
     resolution:
       integrity: sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA==
-  /@snowpack/app-scripts-react/2.0.0_c39e9db791ea05e3ec4e0e74abb7a6b5:
-    dependencies:
-      '@babel/core': 7.12.13
-      '@babel/preset-react': 7.12.13_@babel+core@7.12.13
-      '@babel/preset-typescript': 7.12.13_@babel+core@7.12.13
-      '@snowpack/plugin-babel': 2.1.6
-      '@snowpack/plugin-dotenv': 2.0.5
-      '@snowpack/plugin-react-refresh': 2.4.0_react-dom@17.0.1+react@17.0.1
-      '@snowpack/plugin-typescript': 1.2.1_typescript@4.1.3
-      babel-jest: 26.6.3_@babel+core@7.12.13
-      babel-preset-react-app: 9.1.2
-      react-app-polyfill: 1.0.6
-    dev: true
-    peerDependencies:
-      react: '*'
-      react-dom: '*'
-      typescript: '*'
-    resolution:
-      integrity: sha512-+bAZ/52/3PYIlzQmvFdPwhmYaO2iPMajMX9FH8Zeld5njnPsiHjWVoXIR872fkVpLSODolz8r2k8++xo9YDONA==
-  /@snowpack/plugin-babel/2.1.6:
-    dependencies:
-      '@babel/core': 7.12.13
-      workerpool: 6.1.0
-    dev: true
-    resolution:
-      integrity: sha512-UB5KNQDQ0vnPUSGJ1xscILuuT8eyDK46VCAuImDITYbCy5mf812qwhrvNjbZmGIfnkDmTS2RKopP2cbouDzzSw==
-  /@snowpack/plugin-build-script/2.1.0:
-    dependencies:
-      execa: 5.0.0
-      npm-run-path: 4.0.1
-    dev: true
-    resolution:
-      integrity: sha512-rNuNxI5fM4QieNSOlwhZVD+0iA0nhEAS8MgXStCeH3mr0lC8dVLSYRTt83bS4Q6pxF9zFFfY5z+CTq/JVz8aUw==
-  /@snowpack/plugin-dotenv/2.0.5:
-    dependencies:
-      dotenv: 8.2.0
-      dotenv-expand: 5.1.0
-    dev: true
-    resolution:
-      integrity: sha512-y54lwYRDpTfDTU3uopHLND0DKIjjyWiYxhvOPfZvC4OpOd7UIRwMdSOd5XLZJPEBJ4BD38lDLiXh+ODfNDqhnQ==
-  /@snowpack/plugin-react-refresh/2.4.0_react-dom@17.0.1+react@17.0.1:
-    dependencies:
-      '@babel/core': 7.12.13
-      '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.12.13
-      react: 17.0.1
-      react-dom: 17.0.1_react@17.0.1
-      react-refresh: 0.9.0
-    dev: true
-    peerDependencies:
-      react: '>=16.9.0'
-      react-dom: '>=16.9.0'
-    resolution:
-      integrity: sha512-qz2BzdWa5DPK7teTRrh8/SY81mWt//NZmRUUzrQZS2I9d9St8GfSAbFgeJunpBCpPXW9QaaI7huNaoTx/+1/Ag==
-  /@snowpack/plugin-sass/1.3.0:
-    dependencies:
-      execa: 5.0.0
-      npm-run-path: 4.0.1
-      sass: 1.32.6
-    dev: true
-    resolution:
-      integrity: sha512-MbUFwISnPMKc8CY0E1qbaxIHGTn0DiPhqIbyr+BBlwI3dBYJeEGzB9eEEttmOQ9WsZgoigeQcfO9IMvNkwRNFg==
-  /@snowpack/plugin-typescript/1.2.1_typescript@4.1.3:
-    dependencies:
-      execa: 5.0.0
-      npm-run-path: 4.0.1
-      typescript: 4.1.3
-    dev: true
-    peerDependencies:
-      typescript: '*'
-    resolution:
-      integrity: sha512-wU+JNaMVkqGsqTaUY7TnEMhGt/3URTgA9dpMCtZX6wn/ceA7Gwlmue/sOLynf0OTNLygHPvjiQECQYkEi3LTtg==
-  /@testing-library/dom/7.29.4:
+  /@testing-library/dom/7.31.0:
     dependencies:
       '@babel/code-frame': 7.12.13
-      '@babel/runtime': 7.12.13
+      '@babel/runtime': 7.14.0
       '@types/aria-query': 4.2.1
       aria-query: 4.2.2
-      chalk: 4.1.0
+      chalk: 4.1.1
       dom-accessibility-api: 0.5.4
       lz-string: 1.4.4
       pretty-format: 26.6.2
@@ -2560,16 +1759,16 @@ packages:
     engines:
       node: '>=10'
     resolution:
-      integrity: sha512-CtrJRiSYEfbtNGtEsd78mk1n1v2TUbeABlNIcOCJdDfkN5/JTOwQEbbQpoSRxGqzcWPgStMvJ4mNolSuBRv1NA==
-  /@testing-library/jest-dom/5.11.9:
+      integrity: sha512-0X7ACg4YvTRDFMIuTOEj6B4NpN7i3F/4j5igOcTI5NC5J+N4TribNdErCHOZF1LBWhhcyfwxelVwvoYNMUXTOA==
+  /@testing-library/jest-dom/5.12.0:
     dependencies:
-      '@babel/runtime': 7.12.13
+      '@babel/runtime': 7.14.0
       '@types/testing-library__jest-dom': 5.9.5
       aria-query: 4.2.2
       chalk: 3.0.0
       css: 3.0.0
       css.escape: 1.5.1
-      lodash: 4.17.20
+      lodash: 4.17.21
       redent: 3.0.0
     dev: true
     engines:
@@ -2577,17 +1776,18 @@ packages:
       npm: '>=6'
       yarn: '>=1'
     resolution:
-      integrity: sha512-Mn2gnA9d1wStlAIT2NU8J15LNob0YFBVjs2aEQ3j8rsfRQo+lAs7/ui1i2TGaJjapLmuNPLTsrm+nPjmZDwpcQ==
-  /@testing-library/react-hooks/5.0.3_react-dom@17.0.1+react@17.0.1:
+      integrity: sha512-N9Y82b2Z3j6wzIoAqajlKVF1Zt7sOH0pPee0sUHXHc5cv2Fdn23r+vpWm0MBBoGJtPOly5+Bdx1lnc3CD+A+ow==
+  /@testing-library/react-hooks/5.1.3_fc2bb8a5b006d3f25c5f84ea777e678d:
     dependencies:
-      '@babel/runtime': 7.12.13
-      '@types/react': 17.0.2
-      '@types/react-dom': 17.0.1
+      '@babel/runtime': 7.14.0
+      '@types/react': 17.0.6
+      '@types/react-dom': 17.0.5
       '@types/react-test-renderer': 17.0.1
       filter-console: 0.1.1
-      react: 17.0.1
-      react-dom: 17.0.1_react@17.0.1
-      react-error-boundary: 3.1.0_react@17.0.1
+      react: 17.0.2
+      react-dom: 17.0.2_react@17.0.2
+      react-error-boundary: 3.1.3_react@17.0.2
+      react-test-renderer: 17.0.2_react@17.0.2
     dev: true
     peerDependencies:
       react: '>=16.9.0'
@@ -2599,13 +1799,13 @@ packages:
       react-test-renderer:
         optional: true
     resolution:
-      integrity: sha512-UrnnRc5II7LMH14xsYNm/WRch/67cBafmrSQcyFh0v+UUmSf1uzfB7zn5jQXSettGwOSxJwdQUN7PgkT0w22Lg==
-  /@testing-library/react/11.2.5_react-dom@17.0.1+react@17.0.1:
+      integrity: sha512-UdEUtlQapQ579NEcXDAUE275u+KUsPtxW7NmFrNt0bE6lW8lqNCyxDK0RSuECmNZ/S0/fgP00W9RWRhVKO/hRg==
+  /@testing-library/react/11.2.7_react-dom@17.0.2+react@17.0.2:
     dependencies:
-      '@babel/runtime': 7.12.13
-      '@testing-library/dom': 7.29.4
-      react: 17.0.1
-      react-dom: 17.0.1_react@17.0.1
+      '@babel/runtime': 7.14.0
+      '@testing-library/dom': 7.31.0
+      react: 17.0.2
+      react-dom: 17.0.2_react@17.0.2
     dev: true
     engines:
       node: '>=10'
@@ -2613,10 +1813,10 @@ packages:
       react: '*'
       react-dom: '*'
     resolution:
-      integrity: sha512-yEx7oIa/UWLe2F2dqK0FtMF9sJWNXD+2PPtp39BvE0Kh9MJ9Kl0HrZAgEuhUJR+Lx8Di6Xz+rKwSdEPY2UV8ZQ==
-  /@testing-library/user-event/12.6.3:
+      integrity: sha512-tzRNp7pzd5QmbtXNG/mhdcl7Awfu/Iz1RaVHY75zTdOkmHCuzMhRL83gWHSgOAcjS3CCbyfwUHMZgRJb4kAfpA==
+  /@testing-library/user-event/12.8.3:
     dependencies:
-      '@babel/runtime': 7.12.13
+      '@babel/runtime': 7.14.0
     dev: true
     engines:
       node: '>=10'
@@ -2624,46 +1824,71 @@ packages:
     peerDependencies:
       '@testing-library/dom': '>=7.21.4'
     resolution:
-      integrity: sha512-PCmbUKofE4SXA7l8jphZAbvv5H3c4ix34xPZ/GNe99fASX//msJRgiMbHIBP+GwRfgVG9c7zmkODSPu2X2vNRw==
+      integrity: sha512-IR0iWbFkgd56Bu5ZI/ej8yQwrkCv8Qydx6RzwbKz9faXazR/+5tvYKsZQgyXJiwgpcva127YO6JcWy7YlCfofQ==
   /@types/aria-query/4.2.1:
     dev: true
     resolution:
       integrity: sha512-S6oPal772qJZHoRZLFc/XoZW2gFvwXusYUmXPXkgxJLuEk2vOt7jc4Yo6z/vtI0EBkbPBVrJJ0B+prLIKiWqHg==
-  /@types/babel__core/7.1.12:
+  /@types/babel__core/7.1.14:
     dependencies:
-      '@babel/parser': 7.12.15
-      '@babel/types': 7.12.13
+      '@babel/parser': 7.14.3
+      '@babel/types': 7.14.2
       '@types/babel__generator': 7.6.2
       '@types/babel__template': 7.4.0
-      '@types/babel__traverse': 7.11.0
+      '@types/babel__traverse': 7.11.1
     dev: true
     resolution:
-      integrity: sha512-wMTHiiTiBAAPebqaPiPDLFA4LYPKr6Ph0Xq/6rq1Ur3v66HXyG+clfR9CNETkD7MQS8ZHvpQOtA53DLws5WAEQ==
+      integrity: sha512-zGZJzzBUVDo/eV6KgbE0f0ZI7dInEYvo12Rb70uNQDshC3SkRMb67ja0GgRHZgAX3Za6rhaWlvbDO8rrGyAb1g==
   /@types/babel__generator/7.6.2:
     dependencies:
-      '@babel/types': 7.12.13
+      '@babel/types': 7.14.2
     dev: true
     resolution:
       integrity: sha512-MdSJnBjl+bdwkLskZ3NGFp9YcXGx5ggLpQQPqtgakVhsWK0hTtNYhjpZLlWQTviGTvF8at+Bvli3jV7faPdgeQ==
   /@types/babel__template/7.4.0:
     dependencies:
-      '@babel/parser': 7.12.15
-      '@babel/types': 7.12.13
+      '@babel/parser': 7.14.3
+      '@babel/types': 7.14.2
     dev: true
     resolution:
       integrity: sha512-NTPErx4/FiPCGScH7foPyr+/1Dkzkni+rHiYHHoTjvwou7AQzJkNeD60A9CXRy+ZEN2B1bggmkTMCDb+Mv5k+A==
-  /@types/babel__traverse/7.11.0:
+  /@types/babel__traverse/7.11.1:
     dependencies:
-      '@babel/types': 7.12.13
+      '@babel/types': 7.14.2
     dev: true
     resolution:
-      integrity: sha512-kSjgDMZONiIfSH1Nxcr5JIRMwUetDki63FSQfpTCz8ogF3Ulqm8+mr5f78dUYs6vMiB6gBusQqfQmBvHZj/lwg==
-  /@types/graceful-fs/4.1.4:
+      integrity: sha512-Vs0hm0vPahPMYi9tDjtP66llufgO3ST16WXaSTtDGEl9cewAl3AibmxWw6TINOqHPT9z0uABKAYjT9jNSg4npw==
+  /@types/eslint-scope/3.7.0:
     dependencies:
-      '@types/node': 14.14.25
+      '@types/eslint': 7.2.10
+      '@types/estree': 0.0.47
     dev: true
     resolution:
-      integrity: sha512-mWA/4zFQhfvOA8zWkXobwJvBD7vzcxgrOQ0J5CH1votGqdq9m7+FwtGaqyCZqC3NyyBkc9z4m+iry4LlqcMWJg==
+      integrity: sha512-O/ql2+rrCUe2W2rs7wMR+GqPRcgB6UiqN5RhrR5xruFlY7l9YLMn0ZkDzjoHLeiFkR8MCQZVudUuuvQ2BLC9Qw==
+  /@types/eslint/7.2.10:
+    dependencies:
+      '@types/estree': 0.0.47
+      '@types/json-schema': 7.0.7
+    dev: true
+    resolution:
+      integrity: sha512-kUEPnMKrqbtpCq/KTaGFFKAcz6Ethm2EjCoKIDaCmfRBWLbFuTcOJfTlorwbnboXBzahqWLgUp1BQeKHiJzPUQ==
+  /@types/estree/0.0.47:
+    dev: true
+    resolution:
+      integrity: sha512-c5ciR06jK8u9BstrmJyO97m+klJrrhCf9u3rLu3DEAJBirxRqSCvDQoYKmxuYwQI5SZChAWu+tq9oVlGRuzPAg==
+  /@types/glob/7.1.3:
+    dependencies:
+      '@types/minimatch': 3.0.4
+      '@types/node': 15.3.0
+    dev: true
+    resolution:
+      integrity: sha512-SEYeGAIQIQX8NN6LDKprLjbrd5dARM5EXsd8GI/A5l0apYI1fGMWgPHSe4ZKL4eozlAyI+doUE9XbYS4xCkQ1w==
+  /@types/graceful-fs/4.1.5:
+    dependencies:
+      '@types/node': 15.3.0
+    dev: true
+    resolution:
+      integrity: sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==
   /@types/istanbul-lib-coverage/2.0.3:
     dev: true
     resolution:
@@ -2680,21 +1905,25 @@ packages:
     dev: true
     resolution:
       integrity: sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==
-  /@types/jest/26.0.20:
+  /@types/jest/26.0.23:
     dependencies:
       jest-diff: 26.6.2
       pretty-format: 26.6.2
     dev: true
     resolution:
-      integrity: sha512-9zi2Y+5USJRxd0FsahERhBwlcvFh6D2GLQnY2FH2BzK8J9s9omvNHIbvABwIluXa0fD8XVKMLTO0aOEuUfACAA==
+      integrity: sha512-ZHLmWMJ9jJ9PTiT58juykZpL7KjwJywFN3Rr2pTSkyQfydf/rk22yS7W8p5DaVUMQ2BQC7oYiU3FjbTM/mYrOA==
   /@types/json-schema/7.0.7:
     dev: true
     resolution:
       integrity: sha512-cxWFQVseBm6O9Gbw1IWb8r6OS4OhSt3hPZLkFApLjM8TEXROBuQGLAH2i2gZpcXdLBIrpXuTDhH7Vbm1iXmNGA==
-  /@types/node/14.14.25:
+  /@types/minimatch/3.0.4:
+    dev: true
+    resolution:
+      integrity: sha512-1z8k4wzFnNjVK/tlxvrWuK5WMt6mydWWP7+zvH5eFep4oj+UkrfiJTRtjCeBXNpwaA/FYqqtb4/QS4ianFpIRA==
+  /@types/node/15.3.0:
     dev: true
     resolution:
-      integrity: sha512-EPpXLOVqDvisVxtlbvzfyqSsFeQxltFbluZNRndIb8tr9KiBnYNLzrc1N3pyKUCww2RNrfHDViqDWWE1LCJQtQ==
+      integrity: sha512-8/bnjSZD86ZfpBsDlCIkNXIvm+h6wi9g7IqL+kmFkQ+Wvu3JrasgLElfiPgoo8V8vVfnEi0QVS12gbl94h9YsQ==
   /@types/normalize-package-data/2.4.0:
     dev: true
     resolution:
@@ -2703,63 +1932,51 @@ packages:
     dev: true
     resolution:
       integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==
-  /@types/prettier/2.1.6:
+  /@types/prettier/2.2.3:
     dev: true
     resolution:
-      integrity: sha512-6gOkRe7OIioWAXfnO/2lFiv+SJichKVSys1mSsgyrYHSEjk8Ctv4tSR/Odvnu+HWlH2C8j53dahU03XmQdd5fA==
+      integrity: sha512-PijRCG/K3s3w1We6ynUKdxEc5AcuuH3NBmMDP8uvKVp6X43UY7NQlTzczakXP3DJR0F4dfNQIGjU2cUeRYs2AA==
   /@types/prop-types/15.7.3:
     dev: true
     resolution:
       integrity: sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw==
-  /@types/react-dom/17.0.0:
+  /@types/react-dom/17.0.5:
     dependencies:
-      '@types/react': 17.0.1
+      '@types/react': 17.0.6
     dev: true
     resolution:
-      integrity: sha512-lUqY7OlkF/RbNtD5nIq7ot8NquXrdFrjSOR6+w9a9RFQevGi1oZO1dcJbXMeONAPKtZ2UrZOEJ5UOCVsxbLk/g==
-  /@types/react-dom/17.0.1:
-    dependencies:
-      '@types/react': 17.0.2
-    dev: true
-    resolution:
-      integrity: sha512-yIVyopxQb8IDZ7SOHeTovurFq+fXiPICa+GV3gp0Xedsl+MwQlMLKmvrnEjFbQxjliH5YVAEWFh975eVNmKj7Q==
+      integrity: sha512-ikqukEhH4H9gr4iJCmQVNzTB307kROe3XFfHAOTxOXPOw7lAoEXnM5KWTkzeANGL5Ce6ABfiMl/zJBYNi7ObmQ==
   /@types/react-test-renderer/17.0.1:
     dependencies:
-      '@types/react': 17.0.2
+      '@types/react': 17.0.6
     dev: true
     resolution:
       integrity: sha512-3Fi2O6Zzq/f3QR9dRnlnHso9bMl7weKCviFmfF6B4LS1Uat6Hkm15k0ZAQuDz+UBq6B3+g+NM6IT2nr5QgPzCw==
-  /@types/react-transition-group/4.4.0:
-    dependencies:
-      '@types/react': 17.0.2
-    dev: true
-    resolution:
-      integrity: sha512-/QfLHGpu+2fQOqQaXh8MG9q03bFENooTb/it4jr5kKaZlDQfWvjqWZg48AwzPVMBHlRuTRAY7hRHCEOXz5kV6w==
-  /@types/react/17.0.1:
+  /@types/react-transition-group/4.4.1:
     dependencies:
-      '@types/prop-types': 15.7.3
-      csstype: 3.0.6
+      '@types/react': 17.0.6
     dev: true
     resolution:
-      integrity: sha512-w8t9f53B2ei4jeOqf/gxtc2Sswnc3LBK5s0DyJcg5xd10tMHXts2N31cKjWfH9IC/JvEPa/YF1U4YeP1t4R6HQ==
-  /@types/react/17.0.2:
+      integrity: sha512-vIo69qKKcYoJ8wKCJjwSgCTM+z3chw3g18dkrDfVX665tMH7tmbDxEAnPdey4gTlwZz5QuHGzd+hul0OVZDqqQ==
+  /@types/react/17.0.6:
     dependencies:
       '@types/prop-types': 15.7.3
-      csstype: 3.0.6
+      '@types/scheduler': 0.16.1
+      csstype: 3.0.8
     dev: true
     resolution:
-      integrity: sha512-Xt40xQsrkdvjn1EyWe1Bc0dJLcil/9x2vAuW7ya+PuQip4UYUaXyhzWmAbwRsdMgwOFHpfp7/FFZebDU6Y8VHA==
-  /@types/snowpack-env/2.3.3:
+      integrity: sha512-u/TtPoF/hrvb63LdukET6ncaplYsvCvmkceasx8oG84/ZCsoLxz9Z/raPBP4lTAiWW1Jb889Y9svHmv8R26dWw==
+  /@types/scheduler/0.16.1:
     dev: true
     resolution:
-      integrity: sha512-riJuu2fR3qhBfpWJtqQtNwYJFvquiXfqdprXvZjSNmscnZbIVyHoM49ZVEM1bciKM1mWOCdjXymOYHyGh2WLtg==
+      integrity: sha512-EaCxbanVeyxDRTQBkdLb3Bvl/HK7PBK6UJjsSixB0iHKoWxE5uu2Q/DgtpOhPIojN0Zl1whvOd7PoHs2P0s5eA==
   /@types/stack-utils/2.0.0:
     dev: true
     resolution:
       integrity: sha512-RJJrrySY7A8havqpGObOB4W92QXKJo63/jFLLgpvOtsGUqbQZ9Sbgl35KMm1DjC6j7AvmmU2bIno+3IyEaemaw==
   /@types/testing-library__jest-dom/5.9.5:
     dependencies:
-      '@types/jest': 26.0.20
+      '@types/jest': 26.0.23
     dev: true
     resolution:
       integrity: sha512-ggn3ws+yRbOHog9GxnXiEZ/35Mow6YtPZpd7Z5mKDeZS/o7zx3yAle0ov/wjhVB5QT4N2Dt+GNoGCdqkBGCajQ==
@@ -2773,19 +1990,19 @@ packages:
     dev: true
     resolution:
       integrity: sha512-kQ5JNTrbDv3Rp5X2n/iUu37IJBDU2gsZ5R/g1/KHOOEc5IKfUFjXT6DENPGduh08I/pamwtEq4oul7gUqKTQDQ==
-  /@typescript-eslint/eslint-plugin/4.15.0_97ae0b5fdeb2dd2a56389613b9d78781:
+  /@typescript-eslint/eslint-plugin/4.24.0_59c9e933fd1a489015de5df6809ac2f2:
     dependencies:
-      '@typescript-eslint/experimental-utils': 4.15.0_eslint@7.20.0+typescript@4.1.3
-      '@typescript-eslint/parser': 4.15.0_eslint@7.20.0+typescript@4.1.3
-      '@typescript-eslint/scope-manager': 4.15.0
+      '@typescript-eslint/experimental-utils': 4.24.0_eslint@7.26.0+typescript@4.2.4
+      '@typescript-eslint/parser': 4.24.0_eslint@7.26.0+typescript@4.2.4
+      '@typescript-eslint/scope-manager': 4.24.0
       debug: 4.3.1
-      eslint: 7.20.0
+      eslint: 7.26.0
       functional-red-black-tree: 1.0.1
-      lodash: 4.17.20
+      lodash: 4.17.21
       regexpp: 3.1.0
-      semver: 7.3.4
-      tsutils: 3.20.0_typescript@4.1.3
-      typescript: 4.1.3
+      semver: 7.3.5
+      tsutils: 3.21.0_typescript@4.2.4
+      typescript: 4.2.4
     dev: true
     engines:
       node: ^10.12.0 || >=12.0.0
@@ -2797,13 +2014,13 @@ packages:
       typescript:
         optional: true
     resolution:
-      integrity: sha512-DJgdGZW+8CFUTz5C/dnn4ONcUm2h2T0itWD85Ob5/V27Ndie8hUoX5HKyGssvR8sUMkAIlUc/AMK67Lqa3kBIQ==
-  /@typescript-eslint/experimental-utils/3.10.1_eslint@7.20.0+typescript@4.1.3:
+      integrity: sha512-qbCgkPM7DWTsYQGjx9RTuQGswi+bEt0isqDBeo+CKV0953zqI0Tp7CZ7Fi9ipgFA6mcQqF4NOVNwS/f2r6xShw==
+  /@typescript-eslint/experimental-utils/3.10.1_eslint@7.26.0+typescript@4.2.4:
     dependencies:
       '@types/json-schema': 7.0.7
       '@typescript-eslint/types': 3.10.1
-      '@typescript-eslint/typescript-estree': 3.10.1_typescript@4.1.3
-      eslint: 7.20.0
+      '@typescript-eslint/typescript-estree': 3.10.1_typescript@4.2.4
+      eslint: 7.26.0
       eslint-scope: 5.1.1
       eslint-utils: 2.1.0
     dev: true
@@ -2814,125 +2031,280 @@ packages:
       typescript: '*'
     resolution:
       integrity: sha512-DewqIgscDzmAfd5nOGe4zm6Bl7PKtMG2Ad0KG8CUZAHlXfAKTF9Ol5PXhiMh39yRL2ChRH1cuuUGOcVyyrhQIw==
-  /@typescript-eslint/experimental-utils/4.15.0_eslint@7.20.0+typescript@4.1.3:
+  /@typescript-eslint/experimental-utils/4.24.0_eslint@7.26.0+typescript@4.2.4:
     dependencies:
       '@types/json-schema': 7.0.7
-      '@typescript-eslint/scope-manager': 4.15.0
-      '@typescript-eslint/types': 4.15.0
-      '@typescript-eslint/typescript-estree': 4.15.0_typescript@4.1.3
-      eslint: 7.20.0
+      '@typescript-eslint/scope-manager': 4.24.0
+      '@typescript-eslint/types': 4.24.0
+      '@typescript-eslint/typescript-estree': 4.24.0_typescript@4.2.4
+      eslint: 7.26.0
       eslint-scope: 5.1.1
       eslint-utils: 2.1.0
     dev: true
-    engines:
-      node: ^10.12.0 || >=12.0.0
-    peerDependencies:
-      eslint: '*'
-      typescript: '*'
+    engines:
+      node: ^10.12.0 || >=12.0.0
+    peerDependencies:
+      eslint: '*'
+      typescript: '*'
+    resolution:
+      integrity: sha512-IwTT2VNDKH1h8RZseMH4CcYBz6lTvRoOLDuuqNZZoThvfHEhOiZPQCow+5El3PtyxJ1iDr6UXZwYtE3yZQjhcw==
+  /@typescript-eslint/parser/4.24.0_eslint@7.26.0+typescript@4.2.4:
+    dependencies:
+      '@typescript-eslint/scope-manager': 4.24.0
+      '@typescript-eslint/types': 4.24.0
+      '@typescript-eslint/typescript-estree': 4.24.0_typescript@4.2.4
+      debug: 4.3.1
+      eslint: 7.26.0
+      typescript: 4.2.4
+    dev: true
+    engines:
+      node: ^10.12.0 || >=12.0.0
+    peerDependencies:
+      eslint: ^5.0.0 || ^6.0.0 || ^7.0.0
+      typescript: '*'
+    peerDependenciesMeta:
+      typescript:
+        optional: true
+    resolution:
+      integrity: sha512-dj1ZIh/4QKeECLb2f/QjRwMmDArcwc2WorWPRlB8UNTZlY1KpTVsbX7e3ZZdphfRw29aTFUSNuGB8w9X5sS97w==
+  /@typescript-eslint/scope-manager/4.24.0:
+    dependencies:
+      '@typescript-eslint/types': 4.24.0
+      '@typescript-eslint/visitor-keys': 4.24.0
+    dev: true
+    engines:
+      node: ^8.10.0 || ^10.13.0 || >=11.10.1
+    resolution:
+      integrity: sha512-9+WYJGDnuC9VtYLqBhcSuM7du75fyCS/ypC8c5g7Sdw7pGL4NDTbeH38eJPfzIydCHZDoOgjloxSAA3+4l/zsA==
+  /@typescript-eslint/types/3.10.1:
+    dev: true
+    engines:
+      node: ^8.10.0 || ^10.13.0 || >=11.10.1
+    resolution:
+      integrity: sha512-+3+FCUJIahE9q0lDi1WleYzjCwJs5hIsbugIgnbB+dSCYUxl8L6PwmsyOPFZde2hc1DlTo/xnkOgiTLSyAbHiQ==
+  /@typescript-eslint/types/4.24.0:
+    dev: true
+    engines:
+      node: ^8.10.0 || ^10.13.0 || >=11.10.1
+    resolution:
+      integrity: sha512-tkZUBgDQKdvfs8L47LaqxojKDE+mIUmOzdz7r+u+U54l3GDkTpEbQ1Jp3cNqqAU9vMUCBA1fitsIhm7yN0vx9Q==
+  /@typescript-eslint/typescript-estree/3.10.1_typescript@4.2.4:
+    dependencies:
+      '@typescript-eslint/types': 3.10.1
+      '@typescript-eslint/visitor-keys': 3.10.1
+      debug: 4.3.1
+      glob: 7.1.7
+      is-glob: 4.0.1
+      lodash: 4.17.21
+      semver: 7.3.5
+      tsutils: 3.21.0_typescript@4.2.4
+      typescript: 4.2.4
+    dev: true
+    engines:
+      node: ^10.12.0 || >=12.0.0
+    peerDependencies:
+      typescript: '*'
+    peerDependenciesMeta:
+      typescript:
+        optional: true
+    resolution:
+      integrity: sha512-QbcXOuq6WYvnB3XPsZpIwztBoquEYLXh2MtwVU+kO8jgYCiv4G5xrSP/1wg4tkvrEE+esZVquIPX/dxPlePk1w==
+  /@typescript-eslint/typescript-estree/4.24.0_typescript@4.2.4:
+    dependencies:
+      '@typescript-eslint/types': 4.24.0
+      '@typescript-eslint/visitor-keys': 4.24.0
+      debug: 4.3.1
+      globby: 11.0.3
+      is-glob: 4.0.1
+      semver: 7.3.5
+      tsutils: 3.21.0_typescript@4.2.4
+      typescript: 4.2.4
+    dev: true
+    engines:
+      node: ^10.12.0 || >=12.0.0
+    peerDependencies:
+      typescript: '*'
+    peerDependenciesMeta:
+      typescript:
+        optional: true
+    resolution:
+      integrity: sha512-kBDitL/by/HK7g8CYLT7aKpAwlR8doshfWz8d71j97n5kUa5caHWvY0RvEUEanL/EqBJoANev8Xc/mQ6LLwXGA==
+  /@typescript-eslint/visitor-keys/3.10.1:
+    dependencies:
+      eslint-visitor-keys: 1.3.0
+    dev: true
+    engines:
+      node: ^8.10.0 || ^10.13.0 || >=11.10.1
+    resolution:
+      integrity: sha512-9JgC82AaQeglebjZMgYR5wgmfUdUc+EitGUUMW8u2nDckaeimzW+VsoLV6FoimPv2id3VQzfjwBxEMVz08ameQ==
+  /@typescript-eslint/visitor-keys/4.24.0:
+    dependencies:
+      '@typescript-eslint/types': 4.24.0
+      eslint-visitor-keys: 2.1.0
+    dev: true
+    engines:
+      node: ^8.10.0 || ^10.13.0 || >=11.10.1
+    resolution:
+      integrity: sha512-4ox1sjmGHIxjEDBnMCtWFFhErXtKA1Ec0sBpuz0fqf3P+g3JFGyTxxbF06byw0FRsPnnbq44cKivH7Ks1/0s6g==
+  /@webassemblyjs/ast/1.11.0:
+    dependencies:
+      '@webassemblyjs/helper-numbers': 1.11.0
+      '@webassemblyjs/helper-wasm-bytecode': 1.11.0
+    dev: true
+    resolution:
+      integrity: sha512-kX2W49LWsbthrmIRMbQZuQDhGtjyqXfEmmHyEi4XWnSZtPmxY0+3anPIzsnRb45VH/J55zlOfWvZuY47aJZTJg==
+  /@webassemblyjs/floating-point-hex-parser/1.11.0:
+    dev: true
+    resolution:
+      integrity: sha512-Q/aVYs/VnPDVYvsCBL/gSgwmfjeCb4LW8+TMrO3cSzJImgv8lxxEPM2JA5jMrivE7LSz3V+PFqtMbls3m1exDA==
+  /@webassemblyjs/helper-api-error/1.11.0:
+    dev: true
+    resolution:
+      integrity: sha512-baT/va95eXiXb2QflSx95QGT5ClzWpGaa8L7JnJbgzoYeaA27FCvuBXU758l+KXWRndEmUXjP0Q5fibhavIn8w==
+  /@webassemblyjs/helper-buffer/1.11.0:
+    dev: true
+    resolution:
+      integrity: sha512-u9HPBEl4DS+vA8qLQdEQ6N/eJQ7gT7aNvMIo8AAWvAl/xMrcOSiI2M0MAnMCy3jIFke7bEee/JwdX1nUpCtdyA==
+  /@webassemblyjs/helper-numbers/1.11.0:
+    dependencies:
+      '@webassemblyjs/floating-point-hex-parser': 1.11.0
+      '@webassemblyjs/helper-api-error': 1.11.0
+      '@xtuc/long': 4.2.2
+    dev: true
+    resolution:
+      integrity: sha512-DhRQKelIj01s5IgdsOJMKLppI+4zpmcMQ3XboFPLwCpSNH6Hqo1ritgHgD0nqHeSYqofA6aBN/NmXuGjM1jEfQ==
+  /@webassemblyjs/helper-wasm-bytecode/1.11.0:
+    dev: true
+    resolution:
+      integrity: sha512-MbmhvxXExm542tWREgSFnOVo07fDpsBJg3sIl6fSp9xuu75eGz5lz31q7wTLffwL3Za7XNRCMZy210+tnsUSEA==
+  /@webassemblyjs/helper-wasm-section/1.11.0:
+    dependencies:
+      '@webassemblyjs/ast': 1.11.0
+      '@webassemblyjs/helper-buffer': 1.11.0
+      '@webassemblyjs/helper-wasm-bytecode': 1.11.0
+      '@webassemblyjs/wasm-gen': 1.11.0
+    dev: true
+    resolution:
+      integrity: sha512-3Eb88hcbfY/FCukrg6i3EH8H2UsD7x8Vy47iVJrP967A9JGqgBVL9aH71SETPx1JrGsOUVLo0c7vMCN22ytJew==
+  /@webassemblyjs/ieee754/1.11.0:
+    dependencies:
+      '@xtuc/ieee754': 1.2.0
+    dev: true
+    resolution:
+      integrity: sha512-KXzOqpcYQwAfeQ6WbF6HXo+0udBNmw0iXDmEK5sFlmQdmND+tr773Ti8/5T/M6Tl/413ArSJErATd8In3B+WBA==
+  /@webassemblyjs/leb128/1.11.0:
+    dependencies:
+      '@xtuc/long': 4.2.2
+    dev: true
+    resolution:
+      integrity: sha512-aqbsHa1mSQAbeeNcl38un6qVY++hh8OpCOzxhixSYgbRfNWcxJNJQwe2rezK9XEcssJbbWIkblaJRwGMS9zp+g==
+  /@webassemblyjs/utf8/1.11.0:
+    dev: true
+    resolution:
+      integrity: sha512-A/lclGxH6SpSLSyFowMzO/+aDEPU4hvEiooCMXQPcQFPPJaYcPQNKGOCLUySJsYJ4trbpr+Fs08n4jelkVTGVw==
+  /@webassemblyjs/wasm-edit/1.11.0:
+    dependencies:
+      '@webassemblyjs/ast': 1.11.0
+      '@webassemblyjs/helper-buffer': 1.11.0
+      '@webassemblyjs/helper-wasm-bytecode': 1.11.0
+      '@webassemblyjs/helper-wasm-section': 1.11.0
+      '@webassemblyjs/wasm-gen': 1.11.0
+      '@webassemblyjs/wasm-opt': 1.11.0
+      '@webassemblyjs/wasm-parser': 1.11.0
+      '@webassemblyjs/wast-printer': 1.11.0
+    dev: true
+    resolution:
+      integrity: sha512-JHQ0damXy0G6J9ucyKVXO2j08JVJ2ntkdJlq1UTiUrIgfGMmA7Ik5VdC/L8hBK46kVJgujkBIoMtT8yVr+yVOQ==
+  /@webassemblyjs/wasm-gen/1.11.0:
+    dependencies:
+      '@webassemblyjs/ast': 1.11.0
+      '@webassemblyjs/helper-wasm-bytecode': 1.11.0
+      '@webassemblyjs/ieee754': 1.11.0
+      '@webassemblyjs/leb128': 1.11.0
+      '@webassemblyjs/utf8': 1.11.0
+    dev: true
     resolution:
-      integrity: sha512-V4vaDWvxA2zgesg4KPgEGiomWEBpJXvY4ZX34Y3qxK8LUm5I87L+qGIOTd9tHZOARXNRt9pLbblSKiYBlGMawg==
-  /@typescript-eslint/parser/4.15.0_eslint@7.20.0+typescript@4.1.3:
+      integrity: sha512-BEUv1aj0WptCZ9kIS30th5ILASUnAPEvE3tVMTrItnZRT9tXCLW2LEXT8ezLw59rqPP9klh9LPmpU+WmRQmCPQ==
+  /@webassemblyjs/wasm-opt/1.11.0:
     dependencies:
-      '@typescript-eslint/scope-manager': 4.15.0
-      '@typescript-eslint/types': 4.15.0
-      '@typescript-eslint/typescript-estree': 4.15.0_typescript@4.1.3
-      debug: 4.3.1
-      eslint: 7.20.0
-      typescript: 4.1.3
+      '@webassemblyjs/ast': 1.11.0
+      '@webassemblyjs/helper-buffer': 1.11.0
+      '@webassemblyjs/wasm-gen': 1.11.0
+      '@webassemblyjs/wasm-parser': 1.11.0
     dev: true
-    engines:
-      node: ^10.12.0 || >=12.0.0
-    peerDependencies:
-      eslint: ^5.0.0 || ^6.0.0 || ^7.0.0
-      typescript: '*'
-    peerDependenciesMeta:
-      typescript:
-        optional: true
     resolution:
-      integrity: sha512-L6Dtbq8Bc7g2aZwnIBETpmUa9XDKCMzKVwAArnGp5Mn7PRNFjf3mUzq8UeBjL3K8t311hvevnyqXAMSmxO8Gpg==
-  /@typescript-eslint/scope-manager/4.15.0:
+      integrity: sha512-tHUSP5F4ywyh3hZ0+fDQuWxKx3mJiPeFufg+9gwTpYp324mPCQgnuVKwzLTZVqj0duRDovnPaZqDwoyhIO8kYg==
+  /@webassemblyjs/wasm-parser/1.11.0:
     dependencies:
-      '@typescript-eslint/types': 4.15.0
-      '@typescript-eslint/visitor-keys': 4.15.0
+      '@webassemblyjs/ast': 1.11.0
+      '@webassemblyjs/helper-api-error': 1.11.0
+      '@webassemblyjs/helper-wasm-bytecode': 1.11.0
+      '@webassemblyjs/ieee754': 1.11.0
+      '@webassemblyjs/leb128': 1.11.0
+      '@webassemblyjs/utf8': 1.11.0
     dev: true
-    engines:
-      node: ^8.10.0 || ^10.13.0 || >=11.10.1
     resolution:
-      integrity: sha512-CSNBZnCC2jEA/a+pR9Ljh8Y+5TY5qgbPz7ICEk9WCpSEgT6Pi7H2RIjxfrrbUXvotd6ta+i27sssKEH8Azm75g==
-  /@typescript-eslint/types/3.10.1:
+      integrity: sha512-6L285Sgu9gphrcpDXINvm0M9BskznnzJTE7gYkjDbxET28shDqp27wpruyx3C2S/dvEwiigBwLA1cz7lNUi0kw==
+  /@webassemblyjs/wast-printer/1.11.0:
+    dependencies:
+      '@webassemblyjs/ast': 1.11.0
+      '@xtuc/long': 4.2.2
     dev: true
-    engines:
-      node: ^8.10.0 || ^10.13.0 || >=11.10.1
     resolution:
-      integrity: sha512-+3+FCUJIahE9q0lDi1WleYzjCwJs5hIsbugIgnbB+dSCYUxl8L6PwmsyOPFZde2hc1DlTo/xnkOgiTLSyAbHiQ==
-  /@typescript-eslint/types/4.15.0:
+      integrity: sha512-Fg5OX46pRdTgB7rKIUojkh9vXaVN6sGYCnEiJN1GYkb0RPwShZXp6KTDqmoMdQPKhcroOXh3fEzmkWmCYaKYhQ==
+  /@webpack-cli/configtest/1.0.3_webpack-cli@4.7.0+webpack@5.37.1:
+    dependencies:
+      webpack: 5.37.1_webpack-cli@4.7.0
+      webpack-cli: 4.7.0_73b101d6e7258082846183368a5d0f22
     dev: true
-    engines:
-      node: ^8.10.0 || ^10.13.0 || >=11.10.1
+    peerDependencies:
+      webpack: 4.x.x || 5.x.x
+      webpack-cli: 4.x.x
     resolution:
-      integrity: sha512-su4RHkJhS+iFwyqyXHcS8EGPlUVoC+XREfy5daivjLur9JP8GhvTmDipuRpcujtGC4M+GYhUOJCPDE3rC5NJrg==
-  /@typescript-eslint/typescript-estree/3.10.1_typescript@4.1.3:
+      integrity: sha512-WQs0ep98FXX2XBAfQpRbY0Ma6ADw8JR6xoIkaIiJIzClGOMqVRvPCWqndTxf28DgFopWan0EKtHtg/5W1h0Zkw==
+  /@webpack-cli/info/1.2.4_webpack-cli@4.7.0:
     dependencies:
-      '@typescript-eslint/types': 3.10.1
-      '@typescript-eslint/visitor-keys': 3.10.1
-      debug: 4.3.1
-      glob: 7.1.6
-      is-glob: 4.0.1
-      lodash: 4.17.20
-      semver: 7.3.4
-      tsutils: 3.20.0_typescript@4.1.3
-      typescript: 4.1.3
+      envinfo: 7.8.1
+      webpack-cli: 4.7.0_73b101d6e7258082846183368a5d0f22
     dev: true
-    engines:
-      node: ^10.12.0 || >=12.0.0
     peerDependencies:
-      typescript: '*'
-    peerDependenciesMeta:
-      typescript:
-        optional: true
+      webpack-cli: 4.x.x
     resolution:
-      integrity: sha512-QbcXOuq6WYvnB3XPsZpIwztBoquEYLXh2MtwVU+kO8jgYCiv4G5xrSP/1wg4tkvrEE+esZVquIPX/dxPlePk1w==
-  /@typescript-eslint/typescript-estree/4.15.0_typescript@4.1.3:
+      integrity: sha512-ogE2T4+pLhTTPS/8MM3IjHn0IYplKM4HbVNMCWA9N4NrdPzunwenpCsqKEXyejMfRu6K8mhauIPYf8ZxWG5O6g==
+  /@webpack-cli/serve/1.4.0_7cbb6369db867e7782bcc6ed9d7442a1:
     dependencies:
-      '@typescript-eslint/types': 4.15.0
-      '@typescript-eslint/visitor-keys': 4.15.0
-      debug: 4.3.1
-      globby: 11.0.2
-      is-glob: 4.0.1
-      semver: 7.3.4
-      tsutils: 3.20.0_typescript@4.1.3
-      typescript: 4.1.3
+      webpack-cli: 4.7.0_73b101d6e7258082846183368a5d0f22
+      webpack-dev-server: 3.11.2_webpack-cli@4.7.0+webpack@5.37.1
     dev: true
-    engines:
-      node: ^10.12.0 || >=12.0.0
     peerDependencies:
-      typescript: '*'
+      webpack-cli: 4.x.x
+      webpack-dev-server: '*'
     peerDependenciesMeta:
-      typescript:
+      webpack-dev-server:
         optional: true
     resolution:
-      integrity: sha512-jG6xTmcNbi6xzZq0SdWh7wQ9cMb2pqXaUp6bUZOMsIlu5aOlxGxgE/t6L/gPybybQGvdguajXGkZKSndZJpksA==
-  /@typescript-eslint/visitor-keys/3.10.1:
-    dependencies:
-      eslint-visitor-keys: 1.3.0
+      integrity: sha512-xgT/HqJ+uLWGX+Mzufusl3cgjAcnqYYskaB7o0vRcwOEfuu6hMzSILQpnIzFMGsTaeaX4Nnekl+6fadLbl1/Vg==
+  /@xtuc/ieee754/1.2.0:
     dev: true
-    engines:
-      node: ^8.10.0 || ^10.13.0 || >=11.10.1
     resolution:
-      integrity: sha512-9JgC82AaQeglebjZMgYR5wgmfUdUc+EitGUUMW8u2nDckaeimzW+VsoLV6FoimPv2id3VQzfjwBxEMVz08ameQ==
-  /@typescript-eslint/visitor-keys/4.15.0:
-    dependencies:
-      '@typescript-eslint/types': 4.15.0
-      eslint-visitor-keys: 2.0.0
+      integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==
+  /@xtuc/long/4.2.2:
     dev: true
-    engines:
-      node: ^8.10.0 || ^10.13.0 || >=11.10.1
     resolution:
-      integrity: sha512-RnDtJwOwFucWFAMjG3ghCG/ikImFJFEg20DI7mn4pHEx3vC48lIAoyjhffvfHmErRDboUPC7p9Z2il4CLb7qxA==
+      integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==
   /abab/2.0.5:
     dev: true
     resolution:
       integrity: sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==
+  /accepts/1.3.7:
+    dependencies:
+      mime-types: 2.1.30
+      negotiator: 0.6.2
+    dev: true
+    engines:
+      node: '>= 0.6'
+    resolution:
+      integrity: sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==
   /acorn-globals/6.0.0:
     dependencies:
       acorn: 7.4.1
@@ -2961,6 +2333,29 @@ packages:
     hasBin: true
     resolution:
       integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==
+  /acorn/8.2.4:
+    dev: true
+    engines:
+      node: '>=0.4.0'
+    hasBin: true
+    resolution:
+      integrity: sha512-Ibt84YwBDDA890eDiDCEqcbwvHlBvzzDkU2cGBBDDI1QWT12jTiXIOn2CIw5KK4i6N5Z2HUxwYjzriDyqaqqZg==
+  /ajv-errors/1.0.1_ajv@6.12.6:
+    dependencies:
+      ajv: 6.12.6
+    dev: true
+    peerDependencies:
+      ajv: '>=5.0.0'
+    resolution:
+      integrity: sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==
+  /ajv-keywords/3.5.2_ajv@6.12.6:
+    dependencies:
+      ajv: 6.12.6
+    dev: true
+    peerDependencies:
+      ajv: ^6.9.1
+    resolution:
+      integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==
   /ajv/6.12.6:
     dependencies:
       fast-deep-equal: 3.1.3
@@ -2970,7 +2365,7 @@ packages:
     dev: true
     resolution:
       integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==
-  /ajv/7.1.0:
+  /ajv/8.4.0:
     dependencies:
       fast-deep-equal: 3.1.3
       json-schema-traverse: 1.0.0
@@ -2978,21 +2373,46 @@ packages:
       uri-js: 4.4.1
     dev: true
     resolution:
-      integrity: sha512-svS9uILze/cXbH0z2myCK2Brqprx/+JJYK5pHicT/GQiBfzzhUVAIT6MwqJg8y4xV/zoGsUeuPuwtoiKSGE15g==
+      integrity: sha512-7QD2l6+KBSLwf+7MuYocbWvRPdOu63/trReTLu2KFwkgctnub1auoF+Y1WYcm09CTM7quuscrzqmASaLHC/K4Q==
+  /ansi-colors/3.2.4:
+    dev: true
+    engines:
+      node: '>=6'
+    resolution:
+      integrity: sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==
   /ansi-colors/4.1.1:
     dev: true
     engines:
       node: '>=6'
     resolution:
       integrity: sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==
-  /ansi-escapes/4.3.1:
+  /ansi-escapes/4.3.2:
     dependencies:
-      type-fest: 0.11.0
+      type-fest: 0.21.3
     dev: true
     engines:
       node: '>=8'
     resolution:
-      integrity: sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA==
+      integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==
+  /ansi-html/0.0.7:
+    dev: true
+    engines:
+      '0': node >= 0.8.0
+    hasBin: true
+    resolution:
+      integrity: sha1-gTWEAhliqenm/QOflA0S9WynhZ4=
+  /ansi-regex/2.1.1:
+    dev: true
+    engines:
+      node: '>=0.10.0'
+    resolution:
+      integrity: sha1-w7M6te42DYbg5ijwRorn7yfWVN8=
+  /ansi-regex/4.1.0:
+    dev: true
+    engines:
+      node: '>=6'
+    resolution:
+      integrity: sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==
   /ansi-regex/5.0.0:
     dev: true
     engines:
@@ -3022,15 +2442,15 @@ packages:
     dev: true
     resolution:
       integrity: sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==
-  /anymatch/3.1.1:
+  /anymatch/3.1.2:
     dependencies:
       normalize-path: 3.0.0
-      picomatch: 2.2.2
+      picomatch: 2.2.3
     dev: true
     engines:
       node: '>= 8'
     resolution:
-      integrity: sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==
+      integrity: sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==
   /arg/4.1.3:
     dev: true
     resolution:
@@ -3047,8 +2467,8 @@ packages:
       integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==
   /aria-query/4.2.2:
     dependencies:
-      '@babel/runtime': 7.12.13
-      '@babel/runtime-corejs3': 7.12.13
+      '@babel/runtime': 7.14.0
+      '@babel/runtime-corejs3': 7.14.0
     dev: true
     engines:
       node: '>=6.0'
@@ -3072,24 +2492,46 @@ packages:
       node: '>=0.10.0'
     resolution:
       integrity: sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=
-  /array-includes/3.1.2:
+  /array-flatten/1.1.1:
+    dev: true
+    resolution:
+      integrity: sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=
+  /array-flatten/2.1.2:
+    dev: true
+    resolution:
+      integrity: sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==
+  /array-includes/3.1.3:
     dependencies:
       call-bind: 1.0.2
       define-properties: 1.1.3
-      es-abstract: 1.18.0-next.2
+      es-abstract: 1.18.0
       get-intrinsic: 1.1.1
-      is-string: 1.0.5
+      is-string: 1.0.6
     dev: true
     engines:
       node: '>= 0.4'
     resolution:
-      integrity: sha512-w2GspexNQpx+PutG3QpT437/BenZBj0M/MZGn5mzv/MofYqo0xmRHzn4lFsoDlWJ+THYsGJmFlW68WlDFx7VRw==
+      integrity: sha512-gcem1KlBU7c9rB+Rq8/3PPKsK2kjqeEBa3bD5kkQo4nYlOHQCJqIJFqBXDEfwaRuYTT4E+FxA9xez7Gf/e3Q7A==
+  /array-union/1.0.2:
+    dependencies:
+      array-uniq: 1.0.3
+    dev: true
+    engines:
+      node: '>=0.10.0'
+    resolution:
+      integrity: sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=
   /array-union/2.1.0:
     dev: true
     engines:
       node: '>=8'
     resolution:
       integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==
+  /array-uniq/1.0.3:
+    dev: true
+    engines:
+      node: '>=0.10.0'
+    resolution:
+      integrity: sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=
   /array-unique/0.3.2:
     dev: true
     engines:
@@ -3100,17 +2542,13 @@ packages:
     dependencies:
       call-bind: 1.0.2
       define-properties: 1.1.3
-      es-abstract: 1.18.0-next.2
+      es-abstract: 1.18.0
       function-bind: 1.1.1
     dev: true
     engines:
       node: '>= 0.4'
     resolution:
       integrity: sha512-r9Z0zYoxqHz60vvQbWEdXIEtCwHF0yxaWfno9qzXeNHvfyl3BZqygmGzb84dsubyaXLH4husF+NFgMSdpZhk2Q==
-  /asap/2.0.6:
-    dev: true
-    resolution:
-      integrity: sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=
   /asn1/0.2.4:
     dependencies:
       safer-buffer: 2.1.2
@@ -3135,6 +2573,20 @@ packages:
       node: '>=8'
     resolution:
       integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==
+  /async-each/1.0.3:
+    dev: true
+    resolution:
+      integrity: sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==
+  /async-limiter/1.0.1:
+    dev: true
+    resolution:
+      integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==
+  /async/2.6.3:
+    dependencies:
+      lodash: 4.17.21
+    dev: true
+    resolution:
+      integrity: sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==
   /asynckit/0.4.0:
     dev: true
     resolution:
@@ -3154,16 +2606,33 @@ packages:
     dev: true
     resolution:
       integrity: sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==
-  /babel-jest/26.6.3_@babel+core@7.12.13:
+  /babel-jest/26.6.3:
+    dependencies:
+      '@jest/transform': 26.6.2
+      '@jest/types': 26.6.2
+      '@types/babel__core': 7.1.14
+      babel-plugin-istanbul: 6.0.0
+      babel-preset-jest: 26.6.2
+      chalk: 4.1.1
+      graceful-fs: 4.2.6
+      slash: 3.0.0
+    dev: true
+    engines:
+      node: '>= 10.14.2'
+    peerDependencies:
+      '@babel/core': ^7.0.0
+    resolution:
+      integrity: sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==
+  /babel-jest/26.6.3_@babel+core@7.14.3:
     dependencies:
-      '@babel/core': 7.12.13
+      '@babel/core': 7.14.3
       '@jest/transform': 26.6.2
       '@jest/types': 26.6.2
-      '@types/babel__core': 7.1.12
+      '@types/babel__core': 7.1.14
       babel-plugin-istanbul: 6.0.0
-      babel-preset-jest: 26.6.2_@babel+core@7.12.13
-      chalk: 4.1.0
-      graceful-fs: 4.2.4
+      babel-preset-jest: 26.6.2_@babel+core@7.14.3
+      chalk: 4.1.1
+      graceful-fs: 4.2.6
       slash: 3.0.0
     dev: true
     engines:
@@ -3180,9 +2649,9 @@ packages:
       integrity: sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==
   /babel-plugin-istanbul/6.0.0:
     dependencies:
-      '@babel/helper-plugin-utils': 7.12.13
+      '@babel/helper-plugin-utils': 7.13.0
       '@istanbuljs/load-nyc-config': 1.1.0
-      '@istanbuljs/schema': 0.1.2
+      '@istanbuljs/schema': 0.1.3
       istanbul-lib-instrument: 4.0.3
       test-exclude: 6.0.0
     dev: true
@@ -3193,9 +2662,9 @@ packages:
   /babel-plugin-jest-hoist/26.6.2:
     dependencies:
       '@babel/template': 7.12.13
-      '@babel/types': 7.12.13
-      '@types/babel__core': 7.1.12
-      '@types/babel__traverse': 7.11.0
+      '@babel/types': 7.14.2
+      '@types/babel__core': 7.1.14
+      '@types/babel__traverse': 7.11.1
     dev: true
     engines:
       node: '>= 10.14.2'
@@ -3205,7 +2674,7 @@ packages:
     dependencies:
       '@babel/runtime': 7.12.1
       cosmiconfig: 6.0.0
-      resolve: 1.19.0
+      resolve: 1.20.0
     dev: true
     resolution:
       integrity: sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==
@@ -3213,31 +2682,61 @@ packages:
     dev: true
     resolution:
       integrity: sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==
-  /babel-preset-current-node-syntax/1.0.1_@babel+core@7.12.13:
-    dependencies:
-      '@babel/core': 7.12.13
-      '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.12.13
-      '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.12.13
-      '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.12.13
-      '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.12.13
-      '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.12.13
-      '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.12.13
-      '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.12.13
-      '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.12.13
-      '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.13
-      '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.12.13
-      '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.12.13
-      '@babel/plugin-syntax-top-level-await': 7.12.13_@babel+core@7.12.13
+  /babel-preset-current-node-syntax/1.0.1:
+    dependencies:
+      '@babel/plugin-syntax-async-generators': 7.8.4
+      '@babel/plugin-syntax-bigint': 7.8.3
+      '@babel/plugin-syntax-class-properties': 7.12.13
+      '@babel/plugin-syntax-import-meta': 7.10.4
+      '@babel/plugin-syntax-json-strings': 7.8.3
+      '@babel/plugin-syntax-logical-assignment-operators': 7.10.4
+      '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3
+      '@babel/plugin-syntax-numeric-separator': 7.10.4
+      '@babel/plugin-syntax-object-rest-spread': 7.8.3
+      '@babel/plugin-syntax-optional-catch-binding': 7.8.3
+      '@babel/plugin-syntax-optional-chaining': 7.8.3
+      '@babel/plugin-syntax-top-level-await': 7.12.13
+    dev: true
+    peerDependencies:
+      '@babel/core': ^7.0.0
+    resolution:
+      integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==
+  /babel-preset-current-node-syntax/1.0.1_@babel+core@7.14.3:
+    dependencies:
+      '@babel/core': 7.14.3
+      '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.14.3
+      '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.14.3
+      '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.14.3
+      '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.14.3
+      '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.14.3
+      '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.14.3
+      '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.14.3
+      '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.14.3
+      '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.14.3
+      '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.14.3
+      '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.14.3
+      '@babel/plugin-syntax-top-level-await': 7.12.13_@babel+core@7.14.3
     dev: true
     peerDependencies:
       '@babel/core': ^7.0.0
     resolution:
       integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==
-  /babel-preset-jest/26.6.2_@babel+core@7.12.13:
+  /babel-preset-jest/26.6.2:
     dependencies:
-      '@babel/core': 7.12.13
       babel-plugin-jest-hoist: 26.6.2
-      babel-preset-current-node-syntax: 1.0.1_@babel+core@7.12.13
+      babel-preset-current-node-syntax: 1.0.1
+    dev: true
+    engines:
+      node: '>= 10.14.2'
+    peerDependencies:
+      '@babel/core': ^7.0.0
+    resolution:
+      integrity: sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==
+  /babel-preset-jest/26.6.2_@babel+core@7.14.3:
+    dependencies:
+      '@babel/core': 7.14.3
+      babel-plugin-jest-hoist: 26.6.2
+      babel-preset-current-node-syntax: 1.0.1_@babel+core@7.14.3
     dev: true
     engines:
       node: '>= 10.14.2'
@@ -3265,30 +2764,10 @@ packages:
     dev: true
     resolution:
       integrity: sha512-itL2z8v16khpuKutx5IH8UdCdSTuzrOhRFTEdIhveZ2i1iBKDrVE0ATa4sFVy+02GLucZNVBWtoarXBy0Msdpg==
-  /babel-preset-react-app/9.1.2:
-    dependencies:
-      '@babel/core': 7.9.0
-      '@babel/plugin-proposal-class-properties': 7.8.3_@babel+core@7.9.0
-      '@babel/plugin-proposal-decorators': 7.8.3_@babel+core@7.9.0
-      '@babel/plugin-proposal-nullish-coalescing-operator': 7.8.3_@babel+core@7.9.0
-      '@babel/plugin-proposal-numeric-separator': 7.8.3_@babel+core@7.9.0
-      '@babel/plugin-proposal-optional-chaining': 7.9.0_@babel+core@7.9.0
-      '@babel/plugin-transform-flow-strip-types': 7.9.0_@babel+core@7.9.0
-      '@babel/plugin-transform-react-display-name': 7.8.3_@babel+core@7.9.0
-      '@babel/plugin-transform-runtime': 7.9.0_@babel+core@7.9.0
-      '@babel/preset-env': 7.9.0_@babel+core@7.9.0
-      '@babel/preset-react': 7.9.1_@babel+core@7.9.0
-      '@babel/preset-typescript': 7.9.0_@babel+core@7.9.0
-      '@babel/runtime': 7.9.0
-      babel-plugin-macros: 2.8.0
-      babel-plugin-transform-react-remove-prop-types: 0.4.24
-    dev: true
-    resolution:
-      integrity: sha512-k58RtQOKH21NyKtzptoAvtAODuAJJs3ZhqBMl456/GnXEQ/0La92pNmwgWoMn5pBTrsvk3YYXdY7zpY4e3UIxA==
-  /balanced-match/1.0.0:
+  /balanced-match/1.0.2:
     dev: true
     resolution:
-      integrity: sha1-ibTRmasr7kneFk6gK4nORi1xt2c=
+      integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
   /base/0.11.2:
     dependencies:
       cache-base: 1.0.1
@@ -3303,21 +2782,70 @@ packages:
       node: '>=0.10.0'
     resolution:
       integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==
+  /batch/0.6.1:
+    dev: true
+    resolution:
+      integrity: sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=
   /bcrypt-pbkdf/1.0.2:
     dependencies:
       tweetnacl: 0.14.5
     dev: true
     resolution:
       integrity: sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=
+  /big.js/5.2.2:
+    dev: true
+    resolution:
+      integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==
+  /binary-extensions/1.13.1:
+    dev: true
+    engines:
+      node: '>=0.10.0'
+    resolution:
+      integrity: sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==
   /binary-extensions/2.2.0:
     dev: true
     engines:
       node: '>=8'
     resolution:
       integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==
+  /bindings/1.5.0:
+    dependencies:
+      file-uri-to-path: 1.0.0
+    dev: true
+    optional: true
+    resolution:
+      integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==
+  /body-parser/1.19.0:
+    dependencies:
+      bytes: 3.1.0
+      content-type: 1.0.4
+      debug: 2.6.9
+      depd: 1.1.2
+      http-errors: 1.7.2
+      iconv-lite: 0.4.24
+      on-finished: 2.3.0
+      qs: 6.7.0
+      raw-body: 2.4.0
+      type-is: 1.6.18
+    dev: true
+    engines:
+      node: '>= 0.8'
+    resolution:
+      integrity: sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==
+  /bonjour/3.5.0:
+    dependencies:
+      array-flatten: 2.1.2
+      deep-equal: 1.1.1
+      dns-equal: 1.0.0
+      dns-txt: 2.0.2
+      multicast-dns: 6.2.3
+      multicast-dns-service-types: 1.1.0
+    dev: true
+    resolution:
+      integrity: sha1-jokKGD2O6aI5OzhExpGkK897yfU=
   /brace-expansion/1.1.11:
     dependencies:
-      balanced-match: 1.0.0
+      balanced-match: 1.0.2
       concat-map: 0.0.1
     dev: true
     resolution:
@@ -3329,7 +2857,7 @@ packages:
       extend-shallow: 2.0.1
       fill-range: 4.0.0
       isobject: 3.0.1
-      repeat-element: 1.1.3
+      repeat-element: 1.1.4
       snapdragon: 0.8.2
       snapdragon-node: 2.1.1
       split-string: 3.1.0
@@ -3351,19 +2879,19 @@ packages:
     dev: true
     resolution:
       integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==
-  /browserslist/4.16.3:
+  /browserslist/4.16.6:
     dependencies:
-      caniuse-lite: 1.0.30001183
-      colorette: 1.2.1
-      electron-to-chromium: 1.3.654
+      caniuse-lite: 1.0.30001228
+      colorette: 1.2.2
+      electron-to-chromium: 1.3.732
       escalade: 3.1.1
-      node-releases: 1.1.70
+      node-releases: 1.1.72
     dev: true
     engines:
       node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7
     hasBin: true
     resolution:
-      integrity: sha512-vIyhWmIkULaq04Gt93txdh+j02yX/JzlyhLYbV3YQCn/zvES3JnY7TifHHvvr1w5hTDluNKMkV05cs4vy8Q7sw==
+      integrity: sha512-Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ==
   /bser/2.1.1:
     dependencies:
       node-int64: 0.4.0
@@ -3374,6 +2902,22 @@ packages:
     dev: true
     resolution:
       integrity: sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==
+  /buffer-indexof/1.1.1:
+    dev: true
+    resolution:
+      integrity: sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==
+  /bytes/3.0.0:
+    dev: true
+    engines:
+      node: '>= 0.8'
+    resolution:
+      integrity: sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=
+  /bytes/3.1.0:
+    dev: true
+    engines:
+      node: '>= 0.8'
+    resolution:
+      integrity: sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==
   /cache-base/1.0.1:
     dependencies:
       collection-visit: 1.0.0
@@ -3415,10 +2959,10 @@ packages:
       node: '>=10'
     resolution:
       integrity: sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==
-  /caniuse-lite/1.0.30001183:
+  /caniuse-lite/1.0.30001228:
     dev: true
     resolution:
-      integrity: sha512-7JkwTEE1hlRKETbCFd8HDZeLiQIUcl8rC6JgNjvHCNaxOeNmQ9V4LvQXRUsKIV2CC73qKxljwVhToaA3kLRqTw==
+      integrity: sha512-QQmLOGJ3DEgokHbMSA8cj2a+geXqmnpyOFT0lhQV6P3/YOJvGDEwoedcwxEQ30gJIwIIunHIicunJ2rzK5gB2A==
   /capture-exit/2.0.0:
     dependencies:
       rsvp: 4.8.5
@@ -3450,7 +2994,7 @@ packages:
       node: '>=8'
     resolution:
       integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==
-  /chalk/4.1.0:
+  /chalk/4.1.1:
     dependencies:
       ansi-styles: 4.3.0
       supports-color: 7.2.0
@@ -3458,18 +3002,37 @@ packages:
     engines:
       node: '>=10'
     resolution:
-      integrity: sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==
+      integrity: sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==
   /char-regex/1.0.2:
     dev: true
     engines:
       node: '>=10'
     resolution:
       integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==
+  /chokidar/2.1.8:
+    dependencies:
+      anymatch: 2.0.0
+      async-each: 1.0.3
+      braces: 2.3.2
+      glob-parent: 3.1.0
+      inherits: 2.0.4
+      is-binary-path: 1.0.1
+      is-glob: 4.0.1
+      normalize-path: 3.0.0
+      path-is-absolute: 1.0.1
+      readdirp: 2.2.1
+      upath: 1.2.0
+    deprecated: Chokidar 2 will break on node v14+. Upgrade to chokidar 3 with 15x less dependencies.
+    dev: true
+    optionalDependencies:
+      fsevents: 1.2.13
+    resolution:
+      integrity: sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==
   /chokidar/3.5.1:
     dependencies:
-      anymatch: 3.1.1
+      anymatch: 3.1.2
       braces: 3.0.2
-      glob-parent: 5.1.1
+      glob-parent: 5.1.2
       is-binary-path: 2.1.0
       is-glob: 4.0.1
       normalize-path: 3.0.0
@@ -3478,9 +3041,15 @@ packages:
     engines:
       node: '>= 8.10.0'
     optionalDependencies:
-      fsevents: 2.3.1
+      fsevents: 2.3.2
     resolution:
       integrity: sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw==
+  /chrome-trace-event/1.0.3:
+    dev: true
+    engines:
+      node: '>=6.0'
+    resolution:
+      integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==
   /ci-info/2.0.0:
     dev: true
     resolution:
@@ -3500,14 +3069,32 @@ packages:
       node: '>=0.10.0'
     resolution:
       integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==
+  /cliui/5.0.0:
+    dependencies:
+      string-width: 3.1.0
+      strip-ansi: 5.2.0
+      wrap-ansi: 5.1.0
+    dev: true
+    resolution:
+      integrity: sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==
   /cliui/6.0.0:
     dependencies:
-      string-width: 4.2.0
+      string-width: 4.2.2
       strip-ansi: 6.0.0
       wrap-ansi: 6.2.0
     dev: true
     resolution:
       integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==
+  /clone-deep/4.0.1:
+    dependencies:
+      is-plain-object: 2.0.4
+      kind-of: 6.0.3
+      shallow-clone: 3.0.1
+    dev: true
+    engines:
+      node: '>=6'
+    resolution:
+      integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==
   /co/4.6.0:
     dev: true
     engines:
@@ -3550,10 +3137,10 @@ packages:
     dev: true
     resolution:
       integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
-  /colorette/1.2.1:
+  /colorette/1.2.2:
     dev: true
     resolution:
-      integrity: sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw==
+      integrity: sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==
   /combined-stream/1.0.8:
     dependencies:
       delayed-stream: 1.0.0
@@ -3562,43 +3149,122 @@ packages:
       node: '>= 0.8'
     resolution:
       integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==
+  /commander/2.20.3:
+    dev: true
+    resolution:
+      integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==
+  /commander/7.2.0:
+    dev: true
+    engines:
+      node: '>= 10'
+    resolution:
+      integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==
   /component-emitter/1.3.0:
     dev: true
     resolution:
       integrity: sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==
+  /compressible/2.0.18:
+    dependencies:
+      mime-db: 1.47.0
+    dev: true
+    engines:
+      node: '>= 0.6'
+    resolution:
+      integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==
+  /compression/1.7.4:
+    dependencies:
+      accepts: 1.3.7
+      bytes: 3.0.0
+      compressible: 2.0.18
+      debug: 2.6.9
+      on-headers: 1.0.2
+      safe-buffer: 5.1.2
+      vary: 1.1.2
+    dev: true
+    engines:
+      node: '>= 0.8.0'
+    resolution:
+      integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==
   /concat-map/0.0.1:
     dev: true
     resolution:
       integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=
+  /connect-history-api-fallback/1.6.0:
+    dev: true
+    engines:
+      node: '>=0.8'
+    resolution:
+      integrity: sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==
+  /content-disposition/0.5.3:
+    dependencies:
+      safe-buffer: 5.1.2
+    dev: true
+    engines:
+      node: '>= 0.6'
+    resolution:
+      integrity: sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==
+  /content-type/1.0.4:
+    dev: true
+    engines:
+      node: '>= 0.6'
+    resolution:
+      integrity: sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==
   /convert-source-map/1.7.0:
     dependencies:
       safe-buffer: 5.1.2
     dev: true
     resolution:
       integrity: sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==
+  /cookie-signature/1.0.6:
+    dev: true
+    resolution:
+      integrity: sha1-4wOogrNCzD7oylE6eZmXNNqzriw=
+  /cookie/0.4.0:
+    dev: true
+    engines:
+      node: '>= 0.6'
+    resolution:
+      integrity: sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==
   /copy-descriptor/0.1.1:
     dev: true
     engines:
       node: '>=0.10.0'
     resolution:
       integrity: sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=
-  /core-js-compat/3.8.3:
+  /copy-webpack-plugin/8.1.1_webpack@5.37.1:
+    dependencies:
+      fast-glob: 3.2.5
+      glob-parent: 5.1.2
+      globby: 11.0.3
+      normalize-path: 3.0.0
+      p-limit: 3.1.0
+      schema-utils: 3.0.0
+      serialize-javascript: 5.0.1
+      webpack: 5.37.1_webpack-cli@4.7.0
+    dev: true
+    engines:
+      node: '>= 10.13.0'
+    peerDependencies:
+      webpack: ^5.1.0
+    resolution:
+      integrity: sha512-rYM2uzRxrLRpcyPqGceRBDpxxUV8vcDqIKxAUKfcnFpcrPxT5+XvhTxv7XLjo5AvEJFPdAE3zCogG2JVahqgSQ==
+  /core-js-compat/3.12.1:
     dependencies:
-      browserslist: 4.16.3
+      browserslist: 4.16.6
       semver: 7.0.0
     dev: true
     resolution:
-      integrity: sha512-1sCb0wBXnBIL16pfFG1Gkvei6UzvKyTNYpiC41yrdjEv0UoJoq9E/abTMzyYJ6JpTkAj15dLjbqifIzEBDVvog==
-  /core-js-pure/3.8.3:
+      integrity: sha512-i6h5qODpw6EsHAoIdQhKoZdWn+dGBF3dSS8m5tif36RlWvW3A6+yu2S16QHUo3CrkzrnEskMAt9f8FxmY9fhWQ==
+  /core-js-pure/3.12.1:
     dev: true
     requiresBuild: true
     resolution:
-      integrity: sha512-V5qQZVAr9K0xu7jXg1M7qTEwuxUgqr7dUOezGaNa7i+Xn9oXAU/d1fzqD9ObuwpVQOaorO5s70ckyi1woP9lVA==
-  /core-js/3.8.3:
+      integrity: sha512-1cch+qads4JnDSWsvc7d6nzlKAippwjUlf6vykkTLW53VSV+NkE6muGBToAjEA8pG90cSfcud3JgVmW2ds5TaQ==
+  /core-js/3.12.1:
     dev: true
     requiresBuild: true
     resolution:
-      integrity: sha512-KPYXeVZYemC2TkNEkX/01I+7yd+nX3KddKwZ1Ww7SKWdI2wQprSgLmrTddT8nw92AjEklTsPBoSdQBhbI1bQ6Q==
+      integrity: sha512-Ne9DKPHTObRuB09Dru5AjwKjY4cJHVGu+y5f7coGn1E9Grkc3p2iBwE9AI/nJzsE29mQF7oq+mhYYRqOMFN1Bw==
   /core-util-is/1.0.2:
     dev: true
     resolution:
@@ -3609,7 +3275,7 @@ packages:
       import-fresh: 3.3.0
       parse-json: 5.2.0
       path-type: 4.0.0
-      yaml: 1.10.0
+      yaml: 1.10.2
     dev: true
     engines:
       node: '>=8'
@@ -3641,6 +3307,27 @@ packages:
       node: '>= 8'
     resolution:
       integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
+  /css-loader/5.2.4_webpack@5.37.1:
+    dependencies:
+      camelcase: 6.2.0
+      icss-utils: 5.1.0_postcss@8.2.15
+      loader-utils: 2.0.0
+      postcss: 8.2.15
+      postcss-modules-extract-imports: 3.0.0_postcss@8.2.15
+      postcss-modules-local-by-default: 4.0.0_postcss@8.2.15
+      postcss-modules-scope: 3.0.0_postcss@8.2.15
+      postcss-modules-values: 4.0.0_postcss@8.2.15
+      postcss-value-parser: 4.1.0
+      schema-utils: 3.0.0
+      semver: 7.3.5
+      webpack: 5.37.1_webpack-cli@4.7.0
+    dev: true
+    engines:
+      node: '>= 10.13.0'
+    peerDependencies:
+      webpack: ^4.27.0 || ^5.0.0
+    resolution:
+      integrity: sha512-OFYGyINCKkdQsTrSYxzGSFnGS4gNjcXkKkQgWxK138jgnPt+lepxdjSZNc8sHAl5vP3DhsJUxufWIjOwI8PMMw==
   /css.escape/1.5.1:
     dev: true
     resolution:
@@ -3652,7 +3339,14 @@ packages:
       source-map-resolve: 0.6.0
     dev: true
     resolution:
-      integrity: sha512-DG9pFfwOrzc+hawpmqX/dHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ==
+      integrity: sha512-DG9pFfwOrzc+hawpmqX/dHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ==
+  /cssesc/3.0.0:
+    dev: true
+    engines:
+      node: '>=4'
+    hasBin: true
+    resolution:
+      integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==
   /cssom/0.3.8:
     dev: true
     resolution:
@@ -3669,10 +3363,10 @@ packages:
       node: '>=8'
     resolution:
       integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==
-  /csstype/3.0.6:
+  /csstype/3.0.8:
     dev: true
     resolution:
-      integrity: sha512-+ZAmfyWMT7TiIlzdqJgjMb7S4f1beorDbWbsocyK4RaiqA5RTX3K14bnBWmmA9QEM0gRdsjyyrEmcyga8Zsxmw==
+      integrity: sha512-jXKhWqXPmlUeoQnF/EhTtTl4C9SnrxSH/jZUih3jmO6lBKr99rP3/+FmrMj4EFpOXzMtXHAZkd3x0E6h6Fgflw==
   /dashdash/1.14.1:
     dependencies:
       assert-plus: 1.0.0
@@ -3685,7 +3379,7 @@ packages:
     dependencies:
       abab: 2.0.5
       whatwg-mimetype: 2.3.0
-      whatwg-url: 8.4.0
+      whatwg-url: 8.5.0
     dev: true
     engines:
       node: '>=10'
@@ -3697,6 +3391,12 @@ packages:
     dev: true
     resolution:
       integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
+  /debug/3.2.7:
+    dependencies:
+      ms: 2.1.3
+    dev: true
+    resolution:
+      integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==
   /debug/4.3.1:
     dependencies:
       ms: 2.1.2
@@ -3710,6 +3410,20 @@ packages:
         optional: true
     resolution:
       integrity: sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==
+  /debug/4.3.1_supports-color@6.1.0:
+    dependencies:
+      ms: 2.1.2
+      supports-color: 6.1.0
+    dev: true
+    engines:
+      node: '>=6.0'
+    peerDependencies:
+      supports-color: '*'
+    peerDependenciesMeta:
+      supports-color:
+        optional: true
+    resolution:
+      integrity: sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==
   /decamelize/1.2.0:
     dev: true
     engines:
@@ -3726,6 +3440,17 @@ packages:
       node: '>=0.10'
     resolution:
       integrity: sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=
+  /deep-equal/1.1.1:
+    dependencies:
+      is-arguments: 1.1.0
+      is-date-object: 1.0.4
+      is-regex: 1.1.3
+      object-is: 1.1.5
+      object-keys: 1.1.1
+      regexp.prototype.flags: 1.3.1
+    dev: true
+    resolution:
+      integrity: sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==
   /deep-is/0.1.3:
     dev: true
     resolution:
@@ -3736,6 +3461,15 @@ packages:
       node: '>=0.10.0'
     resolution:
       integrity: sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==
+  /default-gateway/4.2.0:
+    dependencies:
+      execa: 1.0.0
+      ip-regex: 2.1.0
+    dev: true
+    engines:
+      node: '>=6'
+    resolution:
+      integrity: sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==
   /define-properties/1.1.3:
     dependencies:
       object-keys: 1.1.1
@@ -3769,18 +3503,46 @@ packages:
       node: '>=0.10.0'
     resolution:
       integrity: sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==
+  /del/4.1.1:
+    dependencies:
+      '@types/glob': 7.1.3
+      globby: 6.1.0
+      is-path-cwd: 2.2.0
+      is-path-in-cwd: 2.1.0
+      p-map: 2.1.0
+      pify: 4.0.1
+      rimraf: 2.7.1
+    dev: true
+    engines:
+      node: '>=6'
+    resolution:
+      integrity: sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==
   /delayed-stream/1.0.0:
     dev: true
     engines:
       node: '>=0.4.0'
     resolution:
       integrity: sha1-3zrhmayt+31ECqrgsp4icrJOxhk=
+  /depd/1.1.2:
+    dev: true
+    engines:
+      node: '>= 0.6'
+    resolution:
+      integrity: sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=
+  /destroy/1.0.4:
+    dev: true
+    resolution:
+      integrity: sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=
   /detect-newline/3.1.0:
     dev: true
     engines:
       node: '>=8'
     resolution:
       integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==
+  /detect-node/2.1.0:
+    dev: true
+    resolution:
+      integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==
   /diff-sequences/26.6.2:
     dev: true
     engines:
@@ -3801,6 +3563,23 @@ packages:
       node: '>=8'
     resolution:
       integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==
+  /dns-equal/1.0.0:
+    dev: true
+    resolution:
+      integrity: sha1-s55/HabrCnW6nBcySzR1PEfgZU0=
+  /dns-packet/1.3.1:
+    dependencies:
+      ip: 1.1.5
+      safe-buffer: 5.2.1
+    dev: true
+    resolution:
+      integrity: sha512-0UxfQkMhYAUaZI+xrNZOz/as5KgDU0M/fQ9b6SpkyLbk3GEswDi6PADJVaYJradtRVsRIlF1zLyOodbcTCDzUg==
+  /dns-txt/2.0.2:
+    dependencies:
+      buffer-indexof: 1.1.1
+    dev: true
+    resolution:
+      integrity: sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=
   /doctrine/2.1.0:
     dependencies:
       esutils: 2.0.3
@@ -3821,13 +3600,13 @@ packages:
     dev: true
     resolution:
       integrity: sha512-TvrjBckDy2c6v6RLxPv5QXOnU+SmF9nBII5621Ve5fu6Z/BDrENurBEvlC1f44lKEUVqOpK4w9E5Idc5/EgkLQ==
-  /dom-helpers/5.2.0:
+  /dom-helpers/5.2.1:
     dependencies:
-      '@babel/runtime': 7.12.13
-      csstype: 3.0.6
+      '@babel/runtime': 7.14.0
+      csstype: 3.0.8
     dev: true
     resolution:
-      integrity: sha512-Ru5o9+V8CpunKnz5LGgWXkmrH/20cGKwcHwS4m73zIvs54CN9epEmT/HLqFJW3kXpakAFkEdzgy1hzlJe3E4OQ==
+      integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==
   /domexception/2.0.1:
     dependencies:
       webidl-conversions: 5.0.0
@@ -3836,16 +3615,6 @@ packages:
       node: '>=8'
     resolution:
       integrity: sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==
-  /dotenv-expand/5.1.0:
-    dev: true
-    resolution:
-      integrity: sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==
-  /dotenv/8.2.0:
-    dev: true
-    engines:
-      node: '>=8'
-    resolution:
-      integrity: sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==
   /ecc-jsbn/0.1.2:
     dependencies:
       jsbn: 0.1.1
@@ -3853,26 +3622,65 @@ packages:
     dev: true
     resolution:
       integrity: sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=
-  /electron-to-chromium/1.3.654:
+  /ee-first/1.1.1:
     dev: true
     resolution:
-      integrity: sha512-Zy2gc/c8KYFg2GkNr7Ruzh5tPEZpFm7EyXqZTFasm1YRDJtpyBRGaOuM0H3t6SuIP53qX4kNmtO9t0WjhBjE9A==
+      integrity: sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=
+  /electron-to-chromium/1.3.732:
+    dev: true
+    resolution:
+      integrity: sha512-qKD5Pbq+QMk4nea4lMuncUMhpEiQwaJyCW7MrvissnRcBDENhVfDmAqQYRQ3X525oTzhar9Zh1cK0L2d1UKYcw==
   /emittery/0.7.2:
     dev: true
     engines:
       node: '>=10'
     resolution:
       integrity: sha512-A8OG5SR/ij3SsJdWDJdkkSYUjQdCUx6APQXem0SaEePBSRg4eymGYwBkKo1Y6DU+af/Jn2dBQqDBvjnr9Vi8nQ==
+  /emoji-regex/7.0.3:
+    dev: true
+    resolution:
+      integrity: sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==
   /emoji-regex/8.0.0:
     dev: true
     resolution:
       integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
+  /emojis-list/3.0.0:
+    dev: true
+    engines:
+      node: '>= 4'
+    resolution:
+      integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==
+  /encodeurl/1.0.2:
+    dev: true
+    engines:
+      node: '>= 0.8'
+    resolution:
+      integrity: sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=
   /end-of-stream/1.4.4:
     dependencies:
       once: 1.4.0
     dev: true
     resolution:
       integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==
+  /enhanced-resolve/4.5.0:
+    dependencies:
+      graceful-fs: 4.2.6
+      memory-fs: 0.5.0
+      tapable: 1.1.3
+    dev: true
+    engines:
+      node: '>=6.9.0'
+    resolution:
+      integrity: sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==
+  /enhanced-resolve/5.8.2:
+    dependencies:
+      graceful-fs: 4.2.6
+      tapable: 2.2.0
+    dev: true
+    engines:
+      node: '>=10.13.0'
+    resolution:
+      integrity: sha512-F27oB3WuHDzvR2DOGNTaYy0D5o0cnrv8TeI482VM4kYgQd/FT9lUQwuNsJ0oOHtBUq7eiW5ytqzp7nBFknL+GA==
   /enquirer/2.3.6:
     dependencies:
       ansi-colors: 4.1.1
@@ -3881,55 +3689,73 @@ packages:
       node: '>=8.6'
     resolution:
       integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==
+  /envinfo/7.8.1:
+    dev: true
+    engines:
+      node: '>=4'
+    hasBin: true
+    resolution:
+      integrity: sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==
+  /errno/0.1.8:
+    dependencies:
+      prr: 1.0.1
+    dev: true
+    hasBin: true
+    resolution:
+      integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==
   /error-ex/1.3.2:
     dependencies:
       is-arrayish: 0.2.1
     dev: true
     resolution:
       integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==
-  /es-abstract/1.18.0-next.2:
+  /es-abstract/1.18.0:
     dependencies:
       call-bind: 1.0.2
       es-to-primitive: 1.2.1
       function-bind: 1.1.1
       get-intrinsic: 1.1.1
       has: 1.0.3
-      has-symbols: 1.0.1
+      has-symbols: 1.0.2
       is-callable: 1.2.3
       is-negative-zero: 2.0.1
-      is-regex: 1.1.2
-      object-inspect: 1.9.0
+      is-regex: 1.1.3
+      is-string: 1.0.6
+      object-inspect: 1.10.3
       object-keys: 1.1.1
       object.assign: 4.1.2
-      string.prototype.trimend: 1.0.3
-      string.prototype.trimstart: 1.0.3
+      string.prototype.trimend: 1.0.4
+      string.prototype.trimstart: 1.0.4
+      unbox-primitive: 1.0.1
     dev: true
     engines:
       node: '>= 0.4'
     resolution:
-      integrity: sha512-Ih4ZMFHEtZupnUh6497zEL4y2+w8+1ljnCyaTa+adcoafI1GOvMwFlDjBLfWR7y9VLfrjRJe9ocuHY1PSR9jjw==
+      integrity: sha512-LJzK7MrQa8TS0ja2w3YNLzUgJCGPdPOV1yVvezjNnS89D+VR08+Szt2mz3YB2Dck/+w5tfIq/RoUAFqJJGM2yw==
+  /es-module-lexer/0.4.1:
+    dev: true
+    resolution:
+      integrity: sha512-ooYciCUtfw6/d2w56UVeqHPcoCFAiJdz5XOkYpv/Txl1HMUozpXjz/2RIQgqwKdXNDPSF1W7mJCFse3G+HDyAA==
   /es-to-primitive/1.2.1:
     dependencies:
       is-callable: 1.2.3
-      is-date-object: 1.0.2
-      is-symbol: 1.0.3
+      is-date-object: 1.0.4
+      is-symbol: 1.0.4
     dev: true
     engines:
       node: '>= 0.4'
     resolution:
       integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==
-  /esbuild/0.8.41:
-    dev: true
-    hasBin: true
-    requiresBuild: true
-    resolution:
-      integrity: sha512-xejVYquAHrYaHkn/7Itm0aTAALvY1ZJTWMQ14Ww8wEeeg6B/8BN3rjDJ4LMbLoEdVEAFS2b5OZ3jPRYm8Ikm0g==
   /escalade/3.1.1:
     dev: true
     engines:
       node: '>=6'
     resolution:
       integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==
+  /escape-html/1.0.3:
+    dev: true
+    resolution:
+      integrity: sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=
   /escape-string-regexp/1.0.5:
     dev: true
     engines:
@@ -3942,25 +3768,25 @@ packages:
       node: '>=8'
     resolution:
       integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==
-  /escodegen/1.14.3:
+  /escodegen/2.0.0:
     dependencies:
       esprima: 4.0.1
-      estraverse: 4.3.0
+      estraverse: 5.2.0
       esutils: 2.0.3
       optionator: 0.8.3
     dev: true
     engines:
-      node: '>=4.0'
+      node: '>=6.0'
     hasBin: true
     optionalDependencies:
       source-map: 0.6.1
     resolution:
-      integrity: sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==
-  /eslint-plugin-jest-dom/3.6.5_eslint@7.20.0:
+      integrity: sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==
+  /eslint-plugin-jest-dom/3.9.0_eslint@7.26.0:
     dependencies:
-      '@babel/runtime': 7.12.13
-      '@testing-library/dom': 7.29.4
-      eslint: 7.20.0
+      '@babel/runtime': 7.14.0
+      '@testing-library/dom': 7.31.0
+      eslint: 7.26.0
       requireindex: 1.2.0
     dev: true
     engines:
@@ -3970,32 +3796,33 @@ packages:
     peerDependencies:
       eslint: '>=6.8'
     resolution:
-      integrity: sha512-iaJ5aSQghp9u2ciLAseWIVu7X5tW+WwNJwMBDToK4GBfwGXXQJDLt5IBNtm6fHvC3FRzCGwvyNMIG1g5gF+icQ==
-  /eslint-plugin-react/7.22.0_eslint@7.20.0:
+      integrity: sha512-Ou3cuAAY9s6pYZv+KKPa9XquSzUAWW2CgE5al7cQ0yew25w/kp5kNsUJgESb3Pj00Y6pzvznepppL2sk7UOQKg==
+  /eslint-plugin-react/7.23.2_eslint@7.26.0:
     dependencies:
-      array-includes: 3.1.2
+      array-includes: 3.1.3
       array.prototype.flatmap: 1.2.4
       doctrine: 2.1.0
-      eslint: 7.20.0
+      eslint: 7.26.0
       has: 1.0.3
       jsx-ast-utils: 3.2.0
+      minimatch: 3.0.4
       object.entries: 1.1.3
-      object.fromentries: 2.0.3
-      object.values: 1.1.2
+      object.fromentries: 2.0.4
+      object.values: 1.1.3
       prop-types: 15.7.2
-      resolve: 1.20.0
-      string.prototype.matchall: 4.0.3
+      resolve: 2.0.0-next.3
+      string.prototype.matchall: 4.0.4
     dev: true
     engines:
       node: '>=4'
     peerDependencies:
       eslint: ^3 || ^4 || ^5 || ^6 || ^7
     resolution:
-      integrity: sha512-p30tuX3VS+NWv9nQot9xIGAHBXR0+xJVaZriEsHoJrASGCJZDJ8JLNM0YqKqI0AKm6Uxaa1VUHoNEibxRCMQHA==
-  /eslint-plugin-testing-library/3.10.1_eslint@7.20.0+typescript@4.1.3:
+      integrity: sha512-AfjgFQB+nYszudkxRkTFu0UR1zEQig0ArVMPloKhxwlwkzaw/fBiH0QWcBBhZONlXqQC51+nfqFrkn4EzHcGBw==
+  /eslint-plugin-testing-library/3.10.2_eslint@7.26.0+typescript@4.2.4:
     dependencies:
-      '@typescript-eslint/experimental-utils': 3.10.1_eslint@7.20.0+typescript@4.1.3
-      eslint: 7.20.0
+      '@typescript-eslint/experimental-utils': 3.10.1_eslint@7.26.0+typescript@4.2.4
+      eslint: 7.26.0
     dev: true
     engines:
       node: ^10.12.0 || >=12.0.0
@@ -4004,7 +3831,7 @@ packages:
       eslint: ^5 || ^6 || ^7
       typescript: '*'
     resolution:
-      integrity: sha512-nQIFe2muIFv2oR2zIuXE4vTbcFNx8hZKRzgHZqJg8rfopIWwoTwtlbCCNELT/jXzVe1uZF68ALGYoDXjLczKiQ==
+      integrity: sha512-WAmOCt7EbF1XM8XfbCKAEzAPnShkNSwcIsAD2jHdsMUT9mZJPjLCG7pMzbcC8kK366NOuGip8HKLDC+Xk4yIdA==
   /eslint-scope/5.1.1:
     dependencies:
       esrecurse: 4.3.0
@@ -4028,32 +3855,32 @@ packages:
       node: '>=4'
     resolution:
       integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==
-  /eslint-visitor-keys/2.0.0:
+  /eslint-visitor-keys/2.1.0:
     dev: true
     engines:
       node: '>=10'
     resolution:
-      integrity: sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ==
-  /eslint/7.20.0:
+      integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==
+  /eslint/7.26.0:
     dependencies:
       '@babel/code-frame': 7.12.11
-      '@eslint/eslintrc': 0.3.0
+      '@eslint/eslintrc': 0.4.1
       ajv: 6.12.6
-      chalk: 4.1.0
+      chalk: 4.1.1
       cross-spawn: 7.0.3
       debug: 4.3.1
       doctrine: 3.0.0
       enquirer: 2.3.6
       eslint-scope: 5.1.1
       eslint-utils: 2.1.0
-      eslint-visitor-keys: 2.0.0
+      eslint-visitor-keys: 2.1.0
       espree: 7.3.1
       esquery: 1.4.0
       esutils: 2.0.3
-      file-entry-cache: 6.0.0
+      file-entry-cache: 6.0.1
       functional-red-black-tree: 1.0.1
-      glob-parent: 5.1.1
-      globals: 12.4.0
+      glob-parent: 5.1.2
+      globals: 13.8.0
       ignore: 4.0.6
       import-fresh: 3.3.0
       imurmurhash: 0.1.4
@@ -4061,24 +3888,24 @@ packages:
       js-yaml: 3.14.1
       json-stable-stringify-without-jsonify: 1.0.1
       levn: 0.4.1
-      lodash: 4.17.20
+      lodash: 4.17.21
       minimatch: 3.0.4
       natural-compare: 1.4.0
       optionator: 0.9.1
       progress: 2.0.3
       regexpp: 3.1.0
-      semver: 7.3.4
+      semver: 7.3.5
       strip-ansi: 6.0.0
       strip-json-comments: 3.1.1
-      table: 6.0.7
+      table: 6.7.1
       text-table: 0.2.0
-      v8-compile-cache: 2.2.0
+      v8-compile-cache: 2.3.0
     dev: true
     engines:
       node: ^10.12.0 || >=12.0.0
     hasBin: true
     resolution:
-      integrity: sha512-qGi0CTcOGP2OtCQBgWZlQjcTuP0XkIpYFj25XtRTQSHC+umNnp7UMshr2G8SLsRFYDdAPFeHOsiteadmMH02Yw==
+      integrity: sha512-4R1ieRf52/izcZE7AlLy56uIHHDLT74Yzz2Iv2l6kDaYvEu9x+wMB5dZArVL8SYGXSYV2YAg70FcW5Y5nGGNIg==
   /espree/7.3.1:
     dependencies:
       acorn: 7.4.1
@@ -4130,10 +3957,34 @@ packages:
       node: '>=0.10.0'
     resolution:
       integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
-  /exec-sh/0.3.4:
+  /etag/1.8.1:
+    dev: true
+    engines:
+      node: '>= 0.6'
+    resolution:
+      integrity: sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=
+  /eventemitter3/4.0.7:
+    dev: true
+    resolution:
+      integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==
+  /events/3.3.0:
+    dev: true
+    engines:
+      node: '>=0.8.x'
+    resolution:
+      integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==
+  /eventsource/1.1.0:
+    dependencies:
+      original: 1.0.2
+    dev: true
+    engines:
+      node: '>=0.12.0'
+    resolution:
+      integrity: sha512-VSJjT5oCNrFvCS6igjzPAt5hBzQ2qPBFIbJ03zLI9SE0mxwZpMw6BfJrbFHm1a141AavMEB8JHmBhWAd66PfCg==
+  /exec-sh/0.3.6:
     dev: true
     resolution:
-      integrity: sha512-sEFIkc61v75sWeOe72qyrqg2Qg0OuLESziUDk/O/z2qgS15y2gWVFrI6f2Qn/qw/0/NCfCEsmNA4zOjkwEZT1A==
+      integrity: sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w==
   /execa/1.0.0:
     dependencies:
       cross-spawn: 6.0.5
@@ -4167,7 +4018,7 @@ packages:
   /execa/5.0.0:
     dependencies:
       cross-spawn: 7.0.3
-      get-stream: 6.0.0
+      get-stream: 6.0.1
       human-signals: 2.1.0
       is-stream: 2.0.0
       merge-stream: 2.0.0
@@ -4213,6 +4064,43 @@ packages:
       node: '>= 10.14.2'
     resolution:
       integrity: sha512-9/hlOBkQl2l/PLHJx6JjoDF6xPKcJEsUlWKb23rKE7KzeDqUZKXKNMW27KIue5JMdBV9HgmoJPcc8HtO85t9IA==
+  /express/4.17.1:
+    dependencies:
+      accepts: 1.3.7
+      array-flatten: 1.1.1
+      body-parser: 1.19.0
+      content-disposition: 0.5.3
+      content-type: 1.0.4
+      cookie: 0.4.0
+      cookie-signature: 1.0.6
+      debug: 2.6.9
+      depd: 1.1.2
+      encodeurl: 1.0.2
+      escape-html: 1.0.3
+      etag: 1.8.1
+      finalhandler: 1.1.2
+      fresh: 0.5.2
+      merge-descriptors: 1.0.1
+      methods: 1.1.2
+      on-finished: 2.3.0
+      parseurl: 1.3.3
+      path-to-regexp: 0.1.7
+      proxy-addr: 2.0.6
+      qs: 6.7.0
+      range-parser: 1.2.1
+      safe-buffer: 5.1.2
+      send: 0.17.1
+      serve-static: 1.14.1
+      setprototypeof: 1.1.1
+      statuses: 1.5.0
+      type-is: 1.6.18
+      utils-merge: 1.0.1
+      vary: 1.1.2
+    dev: true
+    engines:
+      node: '>= 0.10.0'
+    resolution:
+      integrity: sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==
   /extend-shallow/2.0.1:
     dependencies:
       is-extendable: 0.1.1
@@ -4263,10 +4151,10 @@ packages:
     dependencies:
       '@nodelib/fs.stat': 2.0.4
       '@nodelib/fs.walk': 1.2.6
-      glob-parent: 5.1.1
+      glob-parent: 5.1.2
       merge2: 1.4.1
-      micromatch: 4.0.2
-      picomatch: 2.2.2
+      micromatch: 4.0.4
+      picomatch: 2.2.3
     dev: true
     engines:
       node: '>=8'
@@ -4280,26 +4168,43 @@ packages:
     dev: true
     resolution:
       integrity: sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=
-  /fastq/1.10.1:
+  /fastest-levenshtein/1.0.12:
+    dev: true
+    resolution:
+      integrity: sha512-On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow==
+  /fastq/1.11.0:
     dependencies:
       reusify: 1.0.4
     dev: true
     resolution:
-      integrity: sha512-AWuv6Ery3pM+dY7LYS8YIaCiQvUaos9OB1RyNgaOWnaX+Tik7Onvcsf8x8c+YtDeT0maYLniBip2hox5KtEXXA==
+      integrity: sha512-7Eczs8gIPDrVzT+EksYBcupqMyxSHXXrHOLRRxU2/DicV8789MRBRR8+Hc2uWzUupOs4YS4JzBmBxjjCVBxD/g==
+  /faye-websocket/0.11.3:
+    dependencies:
+      websocket-driver: 0.7.4
+    dev: true
+    engines:
+      node: '>=0.8.0'
+    resolution:
+      integrity: sha512-D2y4bovYpzziGgbHYtGCMjlJM36vAl/y+xUyn1C+FVx8szd1E+86KwVw6XvYSzOP8iMpm1X0I4xJD+QtUb36OA==
   /fb-watchman/2.0.1:
     dependencies:
       bser: 2.1.1
     dev: true
     resolution:
       integrity: sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==
-  /file-entry-cache/6.0.0:
+  /file-entry-cache/6.0.1:
     dependencies:
       flat-cache: 3.0.4
     dev: true
     engines:
       node: ^10.12.0 || >=12.0.0
     resolution:
-      integrity: sha512-fqoO76jZ3ZnYrXLDRxBR1YvOvc0k844kcOg40bgsPrE25LAb/PDqTY+ho64Xh2c8ZXgIKldchCFHczG2UVRcWA==
+      integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==
+  /file-uri-to-path/1.0.0:
+    dev: true
+    optional: true
+    resolution:
+      integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==
   /fill-range/4.0.0:
     dependencies:
       extend-shallow: 2.0.1
@@ -4325,6 +4230,28 @@ packages:
       node: '>=8'
     resolution:
       integrity: sha512-zrXoV1Uaz52DqPs+qEwNJWJFAWZpYJ47UNmpN9q4j+/EYsz85uV0DC9k8tRND5kYmoVzL0W+Y75q4Rg8sRJCdg==
+  /finalhandler/1.1.2:
+    dependencies:
+      debug: 2.6.9
+      encodeurl: 1.0.2
+      escape-html: 1.0.3
+      on-finished: 2.3.0
+      parseurl: 1.3.3
+      statuses: 1.5.0
+      unpipe: 1.0.0
+    dev: true
+    engines:
+      node: '>= 0.8'
+    resolution:
+      integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==
+  /find-up/3.0.0:
+    dependencies:
+      locate-path: 3.0.0
+    dev: true
+    engines:
+      node: '>=6'
+    resolution:
+      integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==
   /find-up/4.1.0:
     dependencies:
       locate-path: 5.0.0
@@ -4347,6 +4274,19 @@ packages:
     dev: true
     resolution:
       integrity: sha512-zAoAQiudy+r5SvnSw3KJy5os/oRJYHzrzja/tBDqrZtNhUw8bt6y8OBzMWcjWr+8liV8Eb6yOhw8WZ7VFZ5ZzA==
+  /follow-redirects/1.14.1_debug@4.3.1:
+    dependencies:
+      debug: 4.3.1_supports-color@6.1.0
+    dev: true
+    engines:
+      node: '>=4.0'
+    peerDependencies:
+      debug: '*'
+    peerDependenciesMeta:
+      debug:
+        optional: true
+    resolution:
+      integrity: sha512-HWqDgT7ZEkqRzBvc2s64vSZ/hfOceEol3ac/7tKwzuvEyWx3/4UegXh5oBOIotkGsObyk3xznnSRVADBgWSQVg==
   /for-in/1.0.2:
     dev: true
     engines:
@@ -4361,12 +4301,18 @@ packages:
     dependencies:
       asynckit: 0.4.0
       combined-stream: 1.0.8
-      mime-types: 2.1.28
+      mime-types: 2.1.30
     dev: true
     engines:
       node: '>= 0.12'
     resolution:
       integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==
+  /forwarded/0.1.2:
+    dev: true
+    engines:
+      node: '>= 0.6'
+    resolution:
+      integrity: sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=
   /fragment-cache/0.2.1:
     dependencies:
       map-cache: 0.2.2
@@ -4375,11 +4321,31 @@ packages:
       node: '>=0.10.0'
     resolution:
       integrity: sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=
+  /fresh/0.5.2:
+    dev: true
+    engines:
+      node: '>= 0.6'
+    resolution:
+      integrity: sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=
   /fs.realpath/1.0.0:
     dev: true
     resolution:
       integrity: sha1-FQStJSMVjKpA20onh8sBQRmU6k8=
-  /fsevents/2.3.1:
+  /fsevents/1.2.13:
+    dependencies:
+      bindings: 1.5.0
+      nan: 2.14.2
+    deprecated: fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to fsevents 2.
+    dev: true
+    engines:
+      node: '>= 4.0'
+    optional: true
+    os:
+      - darwin
+    requiresBuild: true
+    resolution:
+      integrity: sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==
+  /fsevents/2.3.2:
     dev: true
     engines:
       node: ^8.16.0 || ^10.6.0 || >=11.0.0
@@ -4387,7 +4353,7 @@ packages:
     os:
       - darwin
     resolution:
-      integrity: sha512-YR47Eg4hChJGAB1O3yEAOkGO+rlzutoICGqGo9EZ4lKWokzZRSyIW1QmTzqjtw8MJdj9srP869CuWw/hyzSiBw==
+      integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==
   /function-bind/1.1.1:
     dev: true
     resolution:
@@ -4412,7 +4378,7 @@ packages:
     dependencies:
       function-bind: 1.1.1
       has: 1.0.3
-      has-symbols: 1.0.1
+      has-symbols: 1.0.2
     dev: true
     resolution:
       integrity: sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==
@@ -4438,12 +4404,12 @@ packages:
       node: '>=8'
     resolution:
       integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==
-  /get-stream/6.0.0:
+  /get-stream/6.0.1:
     dev: true
     engines:
       node: '>=10'
     resolution:
-      integrity: sha512-A1B3Bh1UmL0bidM/YX2NsCOTnGJePL9rO/M+Mw3m9f2gUpfokS0hi5Eah0WSUEWZdZhIZtMjkIYS7mDfOqNHbg==
+      integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==
   /get-value/2.0.6:
     dev: true
     engines:
@@ -4456,15 +4422,26 @@ packages:
     dev: true
     resolution:
       integrity: sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=
-  /glob-parent/5.1.1:
+  /glob-parent/3.1.0:
+    dependencies:
+      is-glob: 3.1.0
+      path-dirname: 1.0.2
+    dev: true
+    resolution:
+      integrity: sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=
+  /glob-parent/5.1.2:
     dependencies:
       is-glob: 4.0.1
     dev: true
     engines:
       node: '>= 6'
     resolution:
-      integrity: sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==
-  /glob/7.1.6:
+      integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
+  /glob-to-regexp/0.4.1:
+    dev: true
+    resolution:
+      integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==
+  /glob/7.1.7:
     dependencies:
       fs.realpath: 1.0.0
       inflight: 1.0.6
@@ -4474,7 +4451,7 @@ packages:
       path-is-absolute: 1.0.1
     dev: true
     resolution:
-      integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==
+      integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==
   /globals/11.12.0:
     dev: true
     engines:
@@ -4489,7 +4466,15 @@ packages:
       node: '>=8'
     resolution:
       integrity: sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==
-  /globby/11.0.2:
+  /globals/13.8.0:
+    dependencies:
+      type-fest: 0.20.2
+    dev: true
+    engines:
+      node: '>=8'
+    resolution:
+      integrity: sha512-rHtdA6+PDBIjeEvA91rpqzEvk/k3/i7EeNQiryiWuJH0Hw9cpyJMAt2jtbAwUaRdhD+573X4vWw6IcjKPasi9Q==
+  /globby/11.0.3:
     dependencies:
       array-union: 2.1.0
       dir-glob: 3.0.1
@@ -4501,16 +4486,32 @@ packages:
     engines:
       node: '>=10'
     resolution:
-      integrity: sha512-2ZThXDvvV8fYFRVIxnrMQBipZQDr7MxKAmQK1vujaj9/7eF0efG7BPUKJ7jP7G5SLF37xKDXvO4S/KKLj/Z0og==
-  /graceful-fs/4.2.4:
+      integrity: sha512-ffdmosjA807y7+lA1NM0jELARVmYul/715xiILEjo3hBLPTcirgQNnXECn5g3mtR8TOLCVbkfua1Hpen25/Xcg==
+  /globby/6.1.0:
+    dependencies:
+      array-union: 1.0.2
+      glob: 7.1.7
+      object-assign: 4.1.1
+      pify: 2.3.0
+      pinkie-promise: 2.0.1
+    dev: true
+    engines:
+      node: '>=0.10.0'
+    resolution:
+      integrity: sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=
+  /graceful-fs/4.2.6:
     dev: true
     resolution:
-      integrity: sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==
+      integrity: sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==
   /growly/1.3.0:
     dev: true
     optional: true
     resolution:
       integrity: sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=
+  /handle-thing/2.0.1:
+    dev: true
+    resolution:
+      integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==
   /har-schema/2.0.0:
     dev: true
     engines:
@@ -4527,10 +4528,14 @@ packages:
       node: '>=6'
     resolution:
       integrity: sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==
-  /harmony-reflect/1.6.1:
+  /harmony-reflect/1.6.2:
     dev: true
     resolution:
-      integrity: sha512-WJTeyp0JzGtHcuMsi7rw2VwtkvLa+JyfEKJCFyfcS0+CDkjQ5lHPu7zEhFZP+PDSRrEgXa5Ah0l1MbgbE41XjA==
+      integrity: sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==
+  /has-bigints/1.0.1:
+    dev: true
+    resolution:
+      integrity: sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==
   /has-flag/3.0.0:
     dev: true
     engines:
@@ -4543,12 +4548,12 @@ packages:
       node: '>=8'
     resolution:
       integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
-  /has-symbols/1.0.1:
+  /has-symbols/1.0.2:
     dev: true
     engines:
       node: '>= 0.4'
     resolution:
-      integrity: sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==
+      integrity: sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==
   /has-value/0.3.1:
     dependencies:
       get-value: 2.0.6
@@ -4592,10 +4597,19 @@ packages:
       node: '>= 0.4.0'
     resolution:
       integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
-  /hosted-git-info/2.8.8:
+  /hosted-git-info/2.8.9:
+    dev: true
+    resolution:
+      integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==
+  /hpack.js/2.1.6:
+    dependencies:
+      inherits: 2.0.4
+      obuf: 1.1.2
+      readable-stream: 2.3.7
+      wbuf: 1.7.3
     dev: true
     resolution:
-      integrity: sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==
+      integrity: sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=
   /html-encoding-sniffer/2.0.1:
     dependencies:
       whatwg-encoding: 1.0.5
@@ -4604,16 +4618,88 @@ packages:
       node: '>=10'
     resolution:
       integrity: sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==
+  /html-entities/1.4.0:
+    dev: true
+    resolution:
+      integrity: sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==
   /html-escaper/2.0.2:
     dev: true
     resolution:
       integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==
-  /html-parse-stringify2/2.0.1:
+  /html-parse-stringify/3.0.1:
     dependencies:
-      void-elements: 2.0.1
+      void-elements: 3.1.0
     dev: false
     resolution:
-      integrity: sha1-3FZwtyksoVi3vJFsmmc1rIhyg0o=
+      integrity: sha512-KknJ50kTInJ7qIScF3jeaFRpMpE8/lfiTdzf/twXyPBLAGrLRTmkz3AdTnKeh40X8k9L2fdYwEp/42WGXIRGcg==
+  /http-deceiver/1.2.7:
+    dev: true
+    resolution:
+      integrity: sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=
+  /http-errors/1.6.3:
+    dependencies:
+      depd: 1.1.2
+      inherits: 2.0.3
+      setprototypeof: 1.1.0
+      statuses: 1.5.0
+    dev: true
+    engines:
+      node: '>= 0.6'
+    resolution:
+      integrity: sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=
+  /http-errors/1.7.2:
+    dependencies:
+      depd: 1.1.2
+      inherits: 2.0.3
+      setprototypeof: 1.1.1
+      statuses: 1.5.0
+      toidentifier: 1.0.0
+    dev: true
+    engines:
+      node: '>= 0.6'
+    resolution:
+      integrity: sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==
+  /http-errors/1.7.3:
+    dependencies:
+      depd: 1.1.2
+      inherits: 2.0.4
+      setprototypeof: 1.1.1
+      statuses: 1.5.0
+      toidentifier: 1.0.0
+    dev: true
+    engines:
+      node: '>= 0.6'
+    resolution:
+      integrity: sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw==
+  /http-parser-js/0.5.3:
+    dev: true
+    resolution:
+      integrity: sha512-t7hjvef/5HEK7RWTdUzVUhl8zkEu+LlaE0IYzdMuvbSDipxBRpOn4Uhw8ZyECEa808iVT8XCjzo6xmYt4CiLZg==
+  /http-proxy-middleware/0.19.1_debug@4.3.1:
+    dependencies:
+      http-proxy: 1.18.1_debug@4.3.1
+      is-glob: 4.0.1
+      lodash: 4.17.21
+      micromatch: 3.1.10
+    dev: true
+    engines:
+      node: '>=4.0.0'
+    peerDependencies:
+      debug: '*'
+    resolution:
+      integrity: sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==
+  /http-proxy/1.18.1_debug@4.3.1:
+    dependencies:
+      eventemitter3: 4.0.7
+      follow-redirects: 1.14.1_debug@4.3.1
+      requires-port: 1.0.0
+    dev: true
+    engines:
+      node: '>=8.0.0'
+    peerDependencies:
+      debug: '*'
+    resolution:
+      integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==
   /http-signature/1.2.0:
     dependencies:
       assert-plus: 1.0.0
@@ -4637,12 +4723,12 @@ packages:
       node: '>=10.17.0'
     resolution:
       integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==
-  /i18next/19.8.7:
+  /i18next/19.9.2:
     dependencies:
-      '@babel/runtime': 7.12.13
+      '@babel/runtime': 7.14.0
     dev: false
     resolution:
-      integrity: sha512-ezo1gb7QO4OQ5gQCdZMUxopwQSoqpRp6whdEjm1grxMSmkGj1NJ+kYS0UQd4NnpPIVqsgqTQ2L2eqSQYQ+U3Fw==
+      integrity: sha512-0i6cuo6ER6usEOtKajUUDj92zlG+KArFia0857xxiEHAQcUwh/RtOQocui1LPJwunSYT574Pk64aNva1kwtxZg==
   /iconv-lite/0.4.24:
     dependencies:
       safer-buffer: 2.1.2
@@ -4651,9 +4737,19 @@ packages:
       node: '>=0.10.0'
     resolution:
       integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==
+  /icss-utils/5.1.0_postcss@8.2.15:
+    dependencies:
+      postcss: 8.2.15
+    dev: true
+    engines:
+      node: ^10 || ^12 || >= 14
+    peerDependencies:
+      postcss: ^8.1.0
+    resolution:
+      integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==
   /identity-obj-proxy/3.0.0:
     dependencies:
-      harmony-reflect: 1.6.1
+      harmony-reflect: 1.6.2
     dev: true
     engines:
       node: '>=4'
@@ -4680,6 +4776,16 @@ packages:
       node: '>=6'
     resolution:
       integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==
+  /import-local/2.0.0:
+    dependencies:
+      pkg-dir: 3.0.0
+      resolve-cwd: 2.0.0
+    dev: true
+    engines:
+      node: '>=6'
+    hasBin: true
+    resolution:
+      integrity: sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==
   /import-local/3.0.2:
     dependencies:
       pkg-dir: 4.2.0
@@ -4709,10 +4815,23 @@ packages:
     dev: true
     resolution:
       integrity: sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=
+  /inherits/2.0.3:
+    dev: true
+    resolution:
+      integrity: sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=
   /inherits/2.0.4:
     dev: true
     resolution:
       integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
+  /internal-ip/4.3.0:
+    dependencies:
+      default-gateway: 4.2.0
+      ipaddr.js: 1.9.1
+    dev: true
+    engines:
+      node: '>=6'
+    resolution:
+      integrity: sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==
   /internal-slot/1.0.3:
     dependencies:
       get-intrinsic: 1.1.1
@@ -4723,18 +4842,34 @@ packages:
       node: '>= 0.4'
     resolution:
       integrity: sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==
-  /invariant/2.2.4:
-    dependencies:
-      loose-envify: 1.4.0
+  /interpret/2.2.0:
     dev: true
+    engines:
+      node: '>= 0.10'
     resolution:
-      integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==
+      integrity: sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==
   /ip-regex/2.1.0:
     dev: true
     engines:
-      node: '>=4'
+      node: '>=4'
+    resolution:
+      integrity: sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=
+  /ip/1.1.5:
+    dev: true
+    resolution:
+      integrity: sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=
+  /ipaddr.js/1.9.1:
+    dev: true
+    engines:
+      node: '>= 0.10'
+    resolution:
+      integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==
+  /is-absolute-url/3.0.3:
+    dev: true
+    engines:
+      node: '>=8'
     resolution:
-      integrity: sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=
+      integrity: sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==
   /is-accessor-descriptor/0.1.6:
     dependencies:
       kind-of: 3.2.2
@@ -4751,10 +4886,30 @@ packages:
       node: '>=0.10.0'
     resolution:
       integrity: sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==
+  /is-arguments/1.1.0:
+    dependencies:
+      call-bind: 1.0.2
+    dev: true
+    engines:
+      node: '>= 0.4'
+    resolution:
+      integrity: sha512-1Ij4lOMPl/xB5kBDn7I+b2ttPMKa8szhEIrXDuXQD/oe3HJLTLhqhgGspwgyGd6MOywBUqVvYicF72lkgDnIHg==
   /is-arrayish/0.2.1:
     dev: true
     resolution:
       integrity: sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=
+  /is-bigint/1.0.2:
+    dev: true
+    resolution:
+      integrity: sha512-0JV5+SOCQkIdzjBK9buARcV804Ddu7A0Qet6sHi3FimE9ne6m4BGQZfRn+NZiXbBk4F4XmHfDZIipLj9pX8dSA==
+  /is-binary-path/1.0.1:
+    dependencies:
+      binary-extensions: 1.13.1
+    dev: true
+    engines:
+      node: '>=0.10.0'
+    resolution:
+      integrity: sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=
   /is-binary-path/2.1.0:
     dependencies:
       binary-extensions: 2.2.0
@@ -4763,6 +4918,14 @@ packages:
       node: '>=8'
     resolution:
       integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==
+  /is-boolean-object/1.1.1:
+    dependencies:
+      call-bind: 1.0.2
+    dev: true
+    engines:
+      node: '>= 0.4'
+    resolution:
+      integrity: sha512-bXdQWkECBUIAcCkeH1unwJLIpZYaa5VvuygSyS/c2lf719mTKZDU5UdDRlpd01UjADgmW8RfqaP+mRaVPdr/Ng==
   /is-buffer/1.1.6:
     dev: true
     resolution:
@@ -4780,12 +4943,12 @@ packages:
     hasBin: true
     resolution:
       integrity: sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==
-  /is-core-module/2.2.0:
+  /is-core-module/2.4.0:
     dependencies:
       has: 1.0.3
     dev: true
     resolution:
-      integrity: sha512-XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ==
+      integrity: sha512-6A2fkfq1rfeQZjxrZJGerpLCTHRNEBiSgnu0+obeJpEPZRUooHgsizvzv0ZjJwOz3iWIHdJtVWJ/tmPr3D21/A==
   /is-data-descriptor/0.1.4:
     dependencies:
       kind-of: 3.2.2
@@ -4802,12 +4965,12 @@ packages:
       node: '>=0.10.0'
     resolution:
       integrity: sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==
-  /is-date-object/1.0.2:
+  /is-date-object/1.0.4:
     dev: true
     engines:
       node: '>= 0.4'
     resolution:
-      integrity: sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==
+      integrity: sha512-/b4ZVsG7Z5XVtIxs/h9W8nvfLgSAyKYdtGWQLbqy6jA1icmgjf8WCoTKgeS4wy5tYaPePouzFMANbnj94c2Z+A==
   /is-descriptor/0.1.6:
     dependencies:
       is-accessor-descriptor: 0.1.6
@@ -4828,13 +4991,14 @@ packages:
       node: '>=0.10.0'
     resolution:
       integrity: sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==
-  /is-docker/2.1.1:
+  /is-docker/2.2.1:
     dev: true
     engines:
       node: '>=8'
     hasBin: true
+    optional: true
     resolution:
-      integrity: sha512-ZOoqiXfEwtGknTiuDEy8pN2CfE3TxMHprvNer1mXiqwkOT77Rw3YVrUQ52EqAOU3QAWDQ+bQdx7HJzrv7LS2Hw==
+      integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==
   /is-extendable/0.1.1:
     dev: true
     engines:
@@ -4855,6 +5019,12 @@ packages:
       node: '>=0.10.0'
     resolution:
       integrity: sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=
+  /is-fullwidth-code-point/2.0.0:
+    dev: true
+    engines:
+      node: '>=4'
+    resolution:
+      integrity: sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=
   /is-fullwidth-code-point/3.0.0:
     dev: true
     engines:
@@ -4867,6 +5037,14 @@ packages:
       node: '>=6'
     resolution:
       integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==
+  /is-glob/3.1.0:
+    dependencies:
+      is-extglob: 2.1.1
+    dev: true
+    engines:
+      node: '>=0.10.0'
+    resolution:
+      integrity: sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=
   /is-glob/4.0.1:
     dependencies:
       is-extglob: 2.1.1
@@ -4881,6 +5059,12 @@ packages:
       node: '>= 0.4'
     resolution:
       integrity: sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==
+  /is-number-object/1.0.5:
+    dev: true
+    engines:
+      node: '>= 0.4'
+    resolution:
+      integrity: sha512-RU0lI/n95pMoUKu9v1BZP5MBcZuNSVJkMkAG2dJqC4z2GlkGUNeH68SuHuBKBD/XFe+LHZ+f9BKkLET60Niedw==
   /is-number/3.0.0:
     dependencies:
       kind-of: 3.2.2
@@ -4895,6 +5079,28 @@ packages:
       node: '>=0.12.0'
     resolution:
       integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
+  /is-path-cwd/2.2.0:
+    dev: true
+    engines:
+      node: '>=6'
+    resolution:
+      integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==
+  /is-path-in-cwd/2.1.0:
+    dependencies:
+      is-path-inside: 2.1.0
+    dev: true
+    engines:
+      node: '>=6'
+    resolution:
+      integrity: sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==
+  /is-path-inside/2.1.0:
+    dependencies:
+      path-is-inside: 1.0.2
+    dev: true
+    engines:
+      node: '>=6'
+    resolution:
+      integrity: sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==
   /is-plain-object/2.0.4:
     dependencies:
       isobject: 3.0.1
@@ -4903,19 +5109,19 @@ packages:
       node: '>=0.10.0'
     resolution:
       integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==
-  /is-potential-custom-element-name/1.0.0:
+  /is-potential-custom-element-name/1.0.1:
     dev: true
     resolution:
-      integrity: sha1-DFLlS8yjkbssSUsh6GJtczbG45c=
-  /is-regex/1.1.2:
+      integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==
+  /is-regex/1.1.3:
     dependencies:
       call-bind: 1.0.2
-      has-symbols: 1.0.1
+      has-symbols: 1.0.2
     dev: true
     engines:
       node: '>= 0.4'
     resolution:
-      integrity: sha512-axvdhb5pdhEVThqJzYXwMlVuZwC+FF2DpcOhTS+y/8jVq4trxyPgfcwIxIKiyeuLlSQYKkmUaPQJ8ZE4yNKXDg==
+      integrity: sha512-qSVXFz28HM7y+IWX6vLCsexdlvzT1PJNFSBuaQLQ5o0IEw8UDYW6/2+eCMVyIsbM8CNLX2a/QWmSpyxYEHY7CQ==
   /is-stream/1.1.0:
     dev: true
     engines:
@@ -4928,20 +5134,20 @@ packages:
       node: '>=8'
     resolution:
       integrity: sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==
-  /is-string/1.0.5:
+  /is-string/1.0.6:
     dev: true
     engines:
       node: '>= 0.4'
     resolution:
-      integrity: sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==
-  /is-symbol/1.0.3:
+      integrity: sha512-2gdzbKUuqtQ3lYNrUTQYoClPhm7oQu4UdpSZMp1/DGgkHBT8E2Z1l0yMdb6D4zNAxwDiMv8MdulKROJGNl0Q0w==
+  /is-symbol/1.0.4:
     dependencies:
-      has-symbols: 1.0.1
+      has-symbols: 1.0.2
     dev: true
     engines:
       node: '>= 0.4'
     resolution:
-      integrity: sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==
+      integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==
   /is-typedarray/1.0.0:
     dev: true
     resolution:
@@ -4952,12 +5158,19 @@ packages:
       node: '>=0.10.0'
     resolution:
       integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==
+  /is-wsl/1.1.0:
+    dev: true
+    engines:
+      node: '>=4'
+    resolution:
+      integrity: sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=
   /is-wsl/2.2.0:
     dependencies:
-      is-docker: 2.1.1
+      is-docker: 2.2.1
     dev: true
     engines:
       node: '>=8'
+    optional: true
     resolution:
       integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==
   /isarray/1.0.0:
@@ -4994,8 +5207,8 @@ packages:
       integrity: sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg==
   /istanbul-lib-instrument/4.0.3:
     dependencies:
-      '@babel/core': 7.12.13
-      '@istanbuljs/schema': 0.1.2
+      '@babel/core': 7.14.3
+      '@istanbuljs/schema': 0.1.3
       istanbul-lib-coverage: 3.0.0
       semver: 6.3.0
     dev: true
@@ -5047,15 +5260,15 @@ packages:
       '@jest/core': 26.6.3_ts-node@9.1.1
       '@jest/test-result': 26.6.2
       '@jest/types': 26.6.2
-      chalk: 4.1.0
+      chalk: 4.1.1
       exit: 0.1.2
-      graceful-fs: 4.2.4
+      graceful-fs: 4.2.6
       import-local: 3.0.2
       is-ci: 2.0.0
       jest-config: 26.6.3_ts-node@9.1.1
       jest-util: 26.6.2
       jest-validate: 26.6.2
-      prompts: 2.4.0
+      prompts: 2.4.1
       yargs: 15.4.1
     dev: true
     engines:
@@ -5065,57 +5278,27 @@ packages:
       ts-node: '*'
     resolution:
       integrity: sha512-GF9noBSa9t08pSyl3CY4frMrqp+aQXFGFkf5hEPbh/pIUFYWMK6ZLTfbmadxJVcJrdRoChlWQsA2VkJcDFK8hg==
-  /jest-config/26.6.3:
-    dependencies:
-      '@babel/core': 7.12.13
-      '@jest/test-sequencer': 26.6.3
-      '@jest/types': 26.6.2
-      babel-jest: 26.6.3_@babel+core@7.12.13
-      chalk: 4.1.0
-      deepmerge: 4.2.2
-      glob: 7.1.6
-      graceful-fs: 4.2.4
-      jest-environment-jsdom: 26.6.2
-      jest-environment-node: 26.6.2
-      jest-get-type: 26.3.0
-      jest-jasmine2: 26.6.3
-      jest-regex-util: 26.0.0
-      jest-resolve: 26.6.2
-      jest-util: 26.6.2
-      jest-validate: 26.6.2
-      micromatch: 4.0.2
-      pretty-format: 26.6.2
-    dev: true
-    engines:
-      node: '>= 10.14.2'
-    peerDependencies:
-      ts-node: '>=9.0.0'
-    peerDependenciesMeta:
-      ts-node:
-        optional: true
-    resolution:
-      integrity: sha512-t5qdIj/bCj2j7NFVHb2nFB4aUdfucDn3JRKgrZnplb8nieAirAzRSHP8uDEd+qV6ygzg9Pz4YG7UTJf94LPSyg==
   /jest-config/26.6.3_ts-node@9.1.1:
     dependencies:
-      '@babel/core': 7.12.13
-      '@jest/test-sequencer': 26.6.3
+      '@babel/core': 7.14.3
+      '@jest/test-sequencer': 26.6.3_ts-node@9.1.1
       '@jest/types': 26.6.2
-      babel-jest: 26.6.3_@babel+core@7.12.13
-      chalk: 4.1.0
+      babel-jest: 26.6.3_@babel+core@7.14.3
+      chalk: 4.1.1
       deepmerge: 4.2.2
-      glob: 7.1.6
-      graceful-fs: 4.2.4
+      glob: 7.1.7
+      graceful-fs: 4.2.6
       jest-environment-jsdom: 26.6.2
       jest-environment-node: 26.6.2
       jest-get-type: 26.3.0
-      jest-jasmine2: 26.6.3
+      jest-jasmine2: 26.6.3_ts-node@9.1.1
       jest-regex-util: 26.0.0
       jest-resolve: 26.6.2
       jest-util: 26.6.2
       jest-validate: 26.6.2
-      micromatch: 4.0.2
+      micromatch: 4.0.4
       pretty-format: 26.6.2
-      ts-node: 9.1.1_typescript@4.1.3
+      ts-node: 9.1.1_typescript@4.2.4
     dev: true
     engines:
       node: '>= 10.14.2'
@@ -5128,7 +5311,7 @@ packages:
       integrity: sha512-t5qdIj/bCj2j7NFVHb2nFB4aUdfucDn3JRKgrZnplb8nieAirAzRSHP8uDEd+qV6ygzg9Pz4YG7UTJf94LPSyg==
   /jest-diff/26.6.2:
     dependencies:
-      chalk: 4.1.0
+      chalk: 4.1.1
       diff-sequences: 26.6.2
       jest-get-type: 26.3.0
       pretty-format: 26.6.2
@@ -5148,7 +5331,7 @@ packages:
   /jest-each/26.6.2:
     dependencies:
       '@jest/types': 26.6.2
-      chalk: 4.1.0
+      chalk: 4.1.1
       jest-get-type: 26.3.0
       jest-util: 26.6.2
       pretty-format: 26.6.2
@@ -5162,10 +5345,10 @@ packages:
       '@jest/environment': 26.6.2
       '@jest/fake-timers': 26.6.2
       '@jest/types': 26.6.2
-      '@types/node': 14.14.25
+      '@types/node': 15.3.0
       jest-mock: 26.6.2
       jest-util: 26.6.2
-      jsdom: 16.4.0
+      jsdom: 16.5.3
     dev: true
     engines:
       node: '>= 10.14.2'
@@ -5176,7 +5359,7 @@ packages:
       '@jest/environment': 26.6.2
       '@jest/fake-timers': 26.6.2
       '@jest/types': 26.6.2
-      '@types/node': 14.14.25
+      '@types/node': 15.3.0
       jest-mock: 26.6.2
       jest-util: 26.6.2
     dev: true
@@ -5193,41 +5376,41 @@ packages:
   /jest-haste-map/26.6.2:
     dependencies:
       '@jest/types': 26.6.2
-      '@types/graceful-fs': 4.1.4
-      '@types/node': 14.14.25
-      anymatch: 3.1.1
+      '@types/graceful-fs': 4.1.5
+      '@types/node': 15.3.0
+      anymatch: 3.1.2
       fb-watchman: 2.0.1
-      graceful-fs: 4.2.4
+      graceful-fs: 4.2.6
       jest-regex-util: 26.0.0
       jest-serializer: 26.6.2
       jest-util: 26.6.2
       jest-worker: 26.6.2
-      micromatch: 4.0.2
+      micromatch: 4.0.4
       sane: 4.1.0
       walker: 1.0.7
     dev: true
     engines:
       node: '>= 10.14.2'
     optionalDependencies:
-      fsevents: 2.3.1
+      fsevents: 2.3.2
     resolution:
       integrity: sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==
-  /jest-jasmine2/26.6.3:
+  /jest-jasmine2/26.6.3_ts-node@9.1.1:
     dependencies:
-      '@babel/traverse': 7.12.13
+      '@babel/traverse': 7.14.2
       '@jest/environment': 26.6.2
       '@jest/source-map': 26.6.2
       '@jest/test-result': 26.6.2
       '@jest/types': 26.6.2
-      '@types/node': 14.14.25
-      chalk: 4.1.0
+      '@types/node': 15.3.0
+      chalk: 4.1.1
       co: 4.6.0
       expect: 26.6.2
       is-generator-fn: 2.1.0
       jest-each: 26.6.2
       jest-matcher-utils: 26.6.2
       jest-message-util: 26.6.2
-      jest-runtime: 26.6.3
+      jest-runtime: 26.6.3_ts-node@9.1.1
       jest-snapshot: 26.6.2
       jest-util: 26.6.2
       pretty-format: 26.6.2
@@ -5235,6 +5418,8 @@ packages:
     dev: true
     engines:
       node: '>= 10.14.2'
+    peerDependencies:
+      ts-node: '*'
     resolution:
       integrity: sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg==
   /jest-leak-detector/26.6.2:
@@ -5248,7 +5433,7 @@ packages:
       integrity: sha512-i4xlXpsVSMeKvg2cEKdfhh0H39qlJlP5Ex1yQxwF9ubahboQYMgTtz5oML35AVA3B4Eu+YsmwaiKVev9KCvLxg==
   /jest-matcher-utils/26.6.2:
     dependencies:
-      chalk: 4.1.0
+      chalk: 4.1.1
       jest-diff: 26.6.2
       jest-get-type: 26.3.0
       pretty-format: 26.6.2
@@ -5262,9 +5447,9 @@ packages:
       '@babel/code-frame': 7.12.13
       '@jest/types': 26.6.2
       '@types/stack-utils': 2.0.0
-      chalk: 4.1.0
-      graceful-fs: 4.2.4
-      micromatch: 4.0.2
+      chalk: 4.1.1
+      graceful-fs: 4.2.6
+      micromatch: 4.0.4
       pretty-format: 26.6.2
       slash: 3.0.0
       stack-utils: 2.0.3
@@ -5276,7 +5461,7 @@ packages:
   /jest-mock/26.6.2:
     dependencies:
       '@jest/types': 26.6.2
-      '@types/node': 14.14.25
+      '@types/node': 15.3.0
     dev: true
     engines:
       node: '>= 10.14.2'
@@ -5314,56 +5499,29 @@ packages:
   /jest-resolve/26.6.2:
     dependencies:
       '@jest/types': 26.6.2
-      chalk: 4.1.0
-      graceful-fs: 4.2.4
+      chalk: 4.1.1
+      graceful-fs: 4.2.6
       jest-pnp-resolver: 1.2.2_jest-resolve@26.6.2
       jest-util: 26.6.2
       read-pkg-up: 7.0.1
-      resolve: 1.19.0
+      resolve: 1.20.0
       slash: 3.0.0
     dev: true
     engines:
       node: '>= 10.14.2'
     resolution:
       integrity: sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==
-  /jest-runner/26.6.3:
-    dependencies:
-      '@jest/console': 26.6.2
-      '@jest/environment': 26.6.2
-      '@jest/test-result': 26.6.2
-      '@jest/types': 26.6.2
-      '@types/node': 14.14.25
-      chalk: 4.1.0
-      emittery: 0.7.2
-      exit: 0.1.2
-      graceful-fs: 4.2.4
-      jest-config: 26.6.3
-      jest-docblock: 26.0.0
-      jest-haste-map: 26.6.2
-      jest-leak-detector: 26.6.2
-      jest-message-util: 26.6.2
-      jest-resolve: 26.6.2
-      jest-runtime: 26.6.3
-      jest-util: 26.6.2
-      jest-worker: 26.6.2
-      source-map-support: 0.5.19
-      throat: 5.0.0
-    dev: true
-    engines:
-      node: '>= 10.14.2'
-    resolution:
-      integrity: sha512-atgKpRHnaA2OvByG/HpGA4g6CSPS/1LK0jK3gATJAoptC1ojltpmVlYC3TYgdmGp+GLuhzpH30Gvs36szSL2JQ==
   /jest-runner/26.6.3_ts-node@9.1.1:
     dependencies:
       '@jest/console': 26.6.2
       '@jest/environment': 26.6.2
       '@jest/test-result': 26.6.2
       '@jest/types': 26.6.2
-      '@types/node': 14.14.25
-      chalk: 4.1.0
+      '@types/node': 15.3.0
+      chalk: 4.1.1
       emittery: 0.7.2
       exit: 0.1.2
-      graceful-fs: 4.2.4
+      graceful-fs: 4.2.6
       jest-config: 26.6.3_ts-node@9.1.1
       jest-docblock: 26.0.0
       jest-haste-map: 26.6.2
@@ -5382,41 +5540,6 @@ packages:
       ts-node: '*'
     resolution:
       integrity: sha512-atgKpRHnaA2OvByG/HpGA4g6CSPS/1LK0jK3gATJAoptC1ojltpmVlYC3TYgdmGp+GLuhzpH30Gvs36szSL2JQ==
-  /jest-runtime/26.6.3:
-    dependencies:
-      '@jest/console': 26.6.2
-      '@jest/environment': 26.6.2
-      '@jest/fake-timers': 26.6.2
-      '@jest/globals': 26.6.2
-      '@jest/source-map': 26.6.2
-      '@jest/test-result': 26.6.2
-      '@jest/transform': 26.6.2
-      '@jest/types': 26.6.2
-      '@types/yargs': 15.0.13
-      chalk: 4.1.0
-      cjs-module-lexer: 0.6.0
-      collect-v8-coverage: 1.0.1
-      exit: 0.1.2
-      glob: 7.1.6
-      graceful-fs: 4.2.4
-      jest-config: 26.6.3
-      jest-haste-map: 26.6.2
-      jest-message-util: 26.6.2
-      jest-mock: 26.6.2
-      jest-regex-util: 26.0.0
-      jest-resolve: 26.6.2
-      jest-snapshot: 26.6.2
-      jest-util: 26.6.2
-      jest-validate: 26.6.2
-      slash: 3.0.0
-      strip-bom: 4.0.0
-      yargs: 15.4.1
-    dev: true
-    engines:
-      node: '>= 10.14.2'
-    hasBin: true
-    resolution:
-      integrity: sha512-lrzyR3N8sacTAMeonbqpnSka1dHNux2uk0qqDXVkMv2c/A3wYnvQ4EXuI013Y6+gSKSCxdaczvf4HF0mVXHRdw==
   /jest-runtime/26.6.3_ts-node@9.1.1:
     dependencies:
       '@jest/console': 26.6.2
@@ -5428,12 +5551,12 @@ packages:
       '@jest/transform': 26.6.2
       '@jest/types': 26.6.2
       '@types/yargs': 15.0.13
-      chalk: 4.1.0
+      chalk: 4.1.1
       cjs-module-lexer: 0.6.0
       collect-v8-coverage: 1.0.1
       exit: 0.1.2
-      glob: 7.1.6
-      graceful-fs: 4.2.4
+      glob: 7.1.7
+      graceful-fs: 4.2.6
       jest-config: 26.6.3_ts-node@9.1.1
       jest-haste-map: 26.6.2
       jest-message-util: 26.6.2
@@ -5456,8 +5579,8 @@ packages:
       integrity: sha512-lrzyR3N8sacTAMeonbqpnSka1dHNux2uk0qqDXVkMv2c/A3wYnvQ4EXuI013Y6+gSKSCxdaczvf4HF0mVXHRdw==
   /jest-serializer/26.6.2:
     dependencies:
-      '@types/node': 14.14.25
-      graceful-fs: 4.2.4
+      '@types/node': 15.3.0
+      graceful-fs: 4.2.6
     dev: true
     engines:
       node: '>= 10.14.2'
@@ -5465,13 +5588,13 @@ packages:
       integrity: sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==
   /jest-snapshot/26.6.2:
     dependencies:
-      '@babel/types': 7.12.13
+      '@babel/types': 7.14.2
       '@jest/types': 26.6.2
-      '@types/babel__traverse': 7.11.0
-      '@types/prettier': 2.1.6
-      chalk: 4.1.0
+      '@types/babel__traverse': 7.11.1
+      '@types/prettier': 2.2.3
+      chalk: 4.1.1
       expect: 26.6.2
-      graceful-fs: 4.2.4
+      graceful-fs: 4.2.6
       jest-diff: 26.6.2
       jest-get-type: 26.3.0
       jest-haste-map: 26.6.2
@@ -5480,7 +5603,7 @@ packages:
       jest-resolve: 26.6.2
       natural-compare: 1.4.0
       pretty-format: 26.6.2
-      semver: 7.3.4
+      semver: 7.3.5
     dev: true
     engines:
       node: '>= 10.14.2'
@@ -5489,11 +5612,11 @@ packages:
   /jest-util/26.6.2:
     dependencies:
       '@jest/types': 26.6.2
-      '@types/node': 14.14.25
-      chalk: 4.1.0
-      graceful-fs: 4.2.4
+      '@types/node': 15.3.0
+      chalk: 4.1.1
+      graceful-fs: 4.2.6
       is-ci: 2.0.0
-      micromatch: 4.0.2
+      micromatch: 4.0.4
     dev: true
     engines:
       node: '>= 10.14.2'
@@ -5503,7 +5626,7 @@ packages:
     dependencies:
       '@jest/types': 26.6.2
       camelcase: 6.2.0
-      chalk: 4.1.0
+      chalk: 4.1.1
       jest-get-type: 26.3.0
       leven: 3.1.0
       pretty-format: 26.6.2
@@ -5516,11 +5639,11 @@ packages:
     dependencies:
       '@jest/test-result': 26.6.2
       '@jest/types': 26.6.2
-      '@types/node': 14.14.25
-      ansi-escapes: 4.3.1
-      chalk: 4.1.0
+      '@types/node': 15.3.0
+      ansi-escapes: 4.3.2
+      chalk: 4.1.1
       jest-util: 26.6.2
-      string-length: 4.0.1
+      string-length: 4.0.2
     dev: true
     engines:
       node: '>= 10.14.2'
@@ -5528,7 +5651,7 @@ packages:
       integrity: sha512-WKJob0P/Em2csiVthsI68p6aGKTIcsfjH9Gsx1f0A3Italz43e3ho0geSAVsmj09RWOELP1AZ/DXyJgOgDKxXQ==
   /jest-worker/26.6.2:
     dependencies:
-      '@types/node': 14.14.25
+      '@types/node': 15.3.0
       merge-stream: 2.0.0
       supports-color: 7.2.0
     dev: true
@@ -5539,6 +5662,14 @@ packages:
   /js-tokens/4.0.0:
     resolution:
       integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
+  /js-yaml-loader/1.2.2:
+    dependencies:
+      js-yaml: 3.14.1
+      loader-utils: 1.4.0
+      un-eval: 1.2.0
+    dev: true
+    resolution:
+      integrity: sha512-H+NeuNrG6uOs/WMjna2SjkaCw13rMWiT/D7l9+9x5n8aq88BDsh2sRmdfxckWPIHtViYHWRG6XiCKYvS1dfyLg==
   /js-yaml/3.14.1:
     dependencies:
       argparse: 1.0.10
@@ -5547,44 +5678,44 @@ packages:
     hasBin: true
     resolution:
       integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==
-  /js-yaml/4.0.0:
+  /js-yaml/4.1.0:
     dependencies:
       argparse: 2.0.1
     dev: false
     hasBin: true
     resolution:
-      integrity: sha512-pqon0s+4ScYUvX30wxQi3PogGFAlUyH0awepWvwkj4jD4v+ova3RiYw8bmA6x2rDrEaj8i/oWKoRxpVNW+Re8Q==
+      integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==
   /jsbn/0.1.1:
     dev: true
     resolution:
       integrity: sha1-peZUwuWi3rXyAdls77yoDA7y9RM=
-  /jsdom/16.4.0:
+  /jsdom/16.5.3:
     dependencies:
       abab: 2.0.5
-      acorn: 7.4.1
+      acorn: 8.2.4
       acorn-globals: 6.0.0
       cssom: 0.4.4
       cssstyle: 2.3.0
       data-urls: 2.0.0
       decimal.js: 10.2.1
       domexception: 2.0.1
-      escodegen: 1.14.3
+      escodegen: 2.0.0
       html-encoding-sniffer: 2.0.1
-      is-potential-custom-element-name: 1.0.0
+      is-potential-custom-element-name: 1.0.1
       nwsapi: 2.2.0
-      parse5: 5.1.1
+      parse5: 6.0.1
       request: 2.88.2
       request-promise-native: 1.0.9_request@2.88.2
       saxes: 5.0.1
       symbol-tree: 3.2.4
-      tough-cookie: 3.0.1
+      tough-cookie: 4.0.0
       w3c-hr-time: 1.0.2
       w3c-xmlserializer: 2.0.0
       webidl-conversions: 6.1.0
       whatwg-encoding: 1.0.5
       whatwg-mimetype: 2.3.0
-      whatwg-url: 8.4.0
-      ws: 7.4.3
+      whatwg-url: 8.5.0
+      ws: 7.4.5
       xml-name-validator: 3.0.0
     dev: true
     engines:
@@ -5595,7 +5726,7 @@ packages:
       canvas:
         optional: true
     resolution:
-      integrity: sha512-lYMm3wYdgPhrl7pDcRmvzPhhrGVBeVhPIqeHjzeiHN3DFmD1RBpbExbi8vU7BJdH8VAZYovR8DMt0PNNDM7k8w==
+      integrity: sha512-Qj1H+PEvUsOtdPJ056ewXM4UJPCi4hhLA8wpiz9F2YvsRBhuFsXxtrIFAgGBDynQA9isAMGE91PfUYbdMPXuTA==
   /jsesc/0.5.0:
     dev: true
     hasBin: true
@@ -5608,6 +5739,10 @@ packages:
     hasBin: true
     resolution:
       integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==
+  /json-parse-better-errors/1.0.2:
+    dev: true
+    resolution:
+      integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==
   /json-parse-even-better-errors/2.3.1:
     dev: true
     resolution:
@@ -5632,6 +5767,17 @@ packages:
     dev: true
     resolution:
       integrity: sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=
+  /json3/3.3.3:
+    dev: true
+    resolution:
+      integrity: sha512-c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA==
+  /json5/1.0.1:
+    dependencies:
+      minimist: 1.2.5
+    dev: true
+    hasBin: true
+    resolution:
+      integrity: sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==
   /json5/2.2.0:
     dependencies:
       minimist: 1.2.5
@@ -5654,13 +5800,17 @@ packages:
       integrity: sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=
   /jsx-ast-utils/3.2.0:
     dependencies:
-      array-includes: 3.1.2
+      array-includes: 3.1.3
       object.assign: 4.1.2
     dev: true
     engines:
       node: '>=4.0'
     resolution:
       integrity: sha512-EIsmt3O3ljsU6sot/J4E1zDRxfBNrhjyf/OKjlydwgEimQuznlM4Wv7U+ueONJMyEn1WRE0K8dhi3dVAXYT24Q==
+  /killable/1.0.1:
+    dev: true
+    resolution:
+      integrity: sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==
   /kind-of/3.2.2:
     dependencies:
       is-buffer: 1.1.6
@@ -5695,20 +5845,18 @@ packages:
       node: '>=6'
     resolution:
       integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==
-  /leven/3.1.0:
+  /klona/2.0.4:
     dev: true
     engines:
-      node: '>=6'
+      node: '>= 8'
     resolution:
-      integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==
-  /levenary/1.1.1:
-    dependencies:
-      leven: 3.1.0
+      integrity: sha512-ZRbnvdg/NxqzC7L9Uyqzf4psi1OM4Cuc+sJAkQPjO6XkQIJTNbfK2Rsmbw8fx1p2mkZdp2FZYo2+LwXYY/uwIA==
+  /leven/3.1.0:
     dev: true
     engines:
-      node: '>= 6'
+      node: '>=6'
     resolution:
-      integrity: sha512-mkAdOIt79FD6irqjYSs4rdbnlT5vRonMEvBVPVb3XmevfS8kgRXwfes0dhPdEtzTWD/1eNE/Bm/G1iRt6DcnQQ==
+      integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==
   /levn/0.3.0:
     dependencies:
       prelude-ls: 1.1.2
@@ -5731,6 +5879,41 @@ packages:
     dev: true
     resolution:
       integrity: sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=
+  /loader-runner/4.2.0:
+    dev: true
+    engines:
+      node: '>=6.11.5'
+    resolution:
+      integrity: sha512-92+huvxMvYlMzMt0iIOukcwYBFpkYJdpl2xsZ7LrlayO7E8SOv+JJUEK17B/dJIHAOLMfh2dZZ/Y18WgmGtYNw==
+  /loader-utils/1.4.0:
+    dependencies:
+      big.js: 5.2.2
+      emojis-list: 3.0.0
+      json5: 1.0.1
+    dev: true
+    engines:
+      node: '>=4.0.0'
+    resolution:
+      integrity: sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==
+  /loader-utils/2.0.0:
+    dependencies:
+      big.js: 5.2.2
+      emojis-list: 3.0.0
+      json5: 2.2.0
+    dev: true
+    engines:
+      node: '>=8.9.0'
+    resolution:
+      integrity: sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==
+  /locate-path/3.0.0:
+    dependencies:
+      p-locate: 3.0.0
+      path-exists: 3.0.0
+    dev: true
+    engines:
+      node: '>=6'
+    resolution:
+      integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==
   /locate-path/5.0.0:
     dependencies:
       p-locate: 4.1.0
@@ -5739,14 +5922,24 @@ packages:
       node: '>=8'
     resolution:
       integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==
-  /lodash.sortby/4.7.0:
+  /lodash.clonedeep/4.5.0:
     dev: true
     resolution:
-      integrity: sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=
-  /lodash/4.17.20:
+      integrity: sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=
+  /lodash.truncate/4.4.2:
     dev: true
     resolution:
-      integrity: sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==
+      integrity: sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM=
+  /lodash/4.17.21:
+    dev: true
+    resolution:
+      integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
+  /loglevel/1.7.1:
+    dev: true
+    engines:
+      node: '>= 0.6.0'
+    resolution:
+      integrity: sha512-Hesni4s5UkWkwCGJMQGAh71PaLUmKFM60dHvq0zi/vDhhrzuk+4GgNbTXJ12YYQJn6ZKBDNIjYcuQGKudvqrIw==
   /loose-envify/1.4.0:
     dependencies:
       js-tokens: 4.0.0
@@ -5798,16 +5991,42 @@ packages:
       node: '>=0.10.0'
     resolution:
       integrity: sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=
-  /markdown-to-jsx/7.1.1_react@17.0.1:
+  /markdown-to-jsx/7.1.2_react@17.0.2:
     dependencies:
-      react: 17.0.1
+      react: 17.0.2
     dev: true
     engines:
       node: '>= 4'
     peerDependencies:
       react: '>= 0.14.0'
     resolution:
-      integrity: sha512-PJgNmvdKM7f7dFDgr4N2ZQv5OuJ2dwwBZvKel61BO7JLh2QQLDs880uQO+OjsEKNmhCZ0ZOIKkCXFEuY9G0yEA==
+      integrity: sha512-O8DMCl32V34RrD+ZHxcAPc2+kYytuDIoQYjY36RVdsLK7uHjgNVvFec4yv0X6LgB4YEZgSvK5QtFi5YVqEpoMA==
+  /media-typer/0.3.0:
+    dev: true
+    engines:
+      node: '>= 0.6'
+    resolution:
+      integrity: sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=
+  /memory-fs/0.4.1:
+    dependencies:
+      errno: 0.1.8
+      readable-stream: 2.3.7
+    dev: true
+    resolution:
+      integrity: sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=
+  /memory-fs/0.5.0:
+    dependencies:
+      errno: 0.1.8
+      readable-stream: 2.3.7
+    dev: true
+    engines:
+      node: '>=4.3.0 <5.0.0 || >=5.10'
+    resolution:
+      integrity: sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==
+  /merge-descriptors/1.0.1:
+    dev: true
+    resolution:
+      integrity: sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=
   /merge-stream/2.0.0:
     dev: true
     resolution:
@@ -5818,6 +6037,12 @@ packages:
       node: '>= 8'
     resolution:
       integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
+  /methods/1.1.2:
+    dev: true
+    engines:
+      node: '>= 0.6'
+    resolution:
+      integrity: sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=
   /micromatch/3.1.10:
     dependencies:
       arr-diff: 4.0.0
@@ -5838,29 +6063,43 @@ packages:
       node: '>=0.10.0'
     resolution:
       integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==
-  /micromatch/4.0.2:
+  /micromatch/4.0.4:
     dependencies:
       braces: 3.0.2
-      picomatch: 2.2.2
+      picomatch: 2.2.3
     dev: true
     engines:
-      node: '>=8'
+      node: '>=8.6'
     resolution:
-      integrity: sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==
-  /mime-db/1.45.0:
+      integrity: sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==
+  /mime-db/1.47.0:
     dev: true
     engines:
       node: '>= 0.6'
     resolution:
-      integrity: sha512-CkqLUxUk15hofLoLyljJSrukZi8mAtgd+yE5uO4tqRZsdsAJKv0O+rFMhVDRJgozy+yG6md5KwuXhD4ocIoP+w==
-  /mime-types/2.1.28:
+      integrity: sha512-QBmA/G2y+IfeS4oktet3qRZ+P5kPhCKRXxXnQEudYqUaEioAU1/Lq2us3D/t1Jfo4hE9REQPrbB7K5sOczJVIw==
+  /mime-types/2.1.30:
     dependencies:
-      mime-db: 1.45.0
+      mime-db: 1.47.0
     dev: true
     engines:
       node: '>= 0.6'
     resolution:
-      integrity: sha512-0TO2yJ5YHYr7M2zzT7gDU1tbwHxEUWBCLt0lscSNpcdAfFyJOVEpRYNS7EXVcTLNj/25QO8gulHC5JtTzSE2UQ==
+      integrity: sha512-crmjA4bLtR8m9qLpHvgxSChT+XoSlZi8J4n/aIdn3z92e/U47Z0V/yl+Wh9W046GgFVAmoNR/fmdbZYcSSIUeg==
+  /mime/1.6.0:
+    dev: true
+    engines:
+      node: '>=4'
+    hasBin: true
+    resolution:
+      integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==
+  /mime/2.5.2:
+    dev: true
+    engines:
+      node: '>=4.0.0'
+    hasBin: true
+    resolution:
+      integrity: sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg==
   /mimic-fn/2.1.0:
     dev: true
     engines:
@@ -5873,6 +6112,23 @@ packages:
       node: '>=4'
     resolution:
       integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==
+  /mini-css-extract-plugin/1.6.0_webpack@5.37.1:
+    dependencies:
+      loader-utils: 2.0.0
+      schema-utils: 3.0.0
+      webpack: 5.37.1_webpack-cli@4.7.0
+      webpack-sources: 1.4.3
+    dev: true
+    engines:
+      node: '>= 10.13.0'
+    peerDependencies:
+      webpack: ^4.4.0 || ^5.0.0
+    resolution:
+      integrity: sha512-nPFKI7NSy6uONUo9yn2hIfb9vyYvkFu95qki0e21DQ9uaqNKDP15DGpK0KnV6wDroWxPHtExrdEwx/yDQ8nVRw==
+  /minimalistic-assert/1.0.1:
+    dev: true
+    resolution:
+      integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==
   /minimatch/3.0.4:
     dependencies:
       brace-expansion: 1.1.11
@@ -5892,14 +6148,53 @@ packages:
       node: '>=0.10.0'
     resolution:
       integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==
+  /mkdirp/0.5.5:
+    dependencies:
+      minimist: 1.2.5
+    dev: true
+    hasBin: true
+    resolution:
+      integrity: sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==
   /ms/2.0.0:
     dev: true
     resolution:
       integrity: sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=
+  /ms/2.1.1:
+    dev: true
+    resolution:
+      integrity: sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==
   /ms/2.1.2:
     dev: true
     resolution:
       integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
+  /ms/2.1.3:
+    dev: true
+    resolution:
+      integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
+  /multicast-dns-service-types/1.1.0:
+    dev: true
+    resolution:
+      integrity: sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=
+  /multicast-dns/6.2.3:
+    dependencies:
+      dns-packet: 1.3.1
+      thunky: 1.1.0
+    dev: true
+    hasBin: true
+    resolution:
+      integrity: sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==
+  /nan/2.14.2:
+    dev: true
+    optional: true
+    resolution:
+      integrity: sha512-M2ufzIiINKCuDfBSAUr1vWQ+vuVcA9kqx8JJUsbQi6yf1uGRyb7HfpdfUr5qLXf3B/t8dPvcjhKMmlfnP47EzQ==
+  /nanoid/3.1.23:
+    dev: true
+    engines:
+      node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1
+    hasBin: true
+    resolution:
+      integrity: sha512-FiB0kzdP0FFVGDKlRLEQ1BgDzU87dy5NnzjeW9YZNt+/c3+q82EQDUwniSAUxp/F0gFNI1ZhKU1FqYsMuqZVnw==
   /nanomatch/1.2.13:
     dependencies:
       arr-diff: 4.0.0
@@ -5922,10 +6217,26 @@ packages:
     dev: true
     resolution:
       integrity: sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=
+  /negotiator/0.6.2:
+    dev: true
+    engines:
+      node: '>= 0.6'
+    resolution:
+      integrity: sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==
+  /neo-async/2.6.2:
+    dev: true
+    resolution:
+      integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==
   /nice-try/1.0.5:
     dev: true
     resolution:
       integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==
+  /node-forge/0.10.0:
+    dev: true
+    engines:
+      node: '>= 6.0.0'
+    resolution:
+      integrity: sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==
   /node-int64/0.4.0:
     dev: true
     resolution:
@@ -5936,26 +6247,26 @@ packages:
       node: '>=0.10.0'
     resolution:
       integrity: sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=
-  /node-notifier/8.0.1:
+  /node-notifier/8.0.2:
     dependencies:
       growly: 1.3.0
       is-wsl: 2.2.0
-      semver: 7.3.4
+      semver: 7.3.5
       shellwords: 0.1.1
       uuid: 8.3.2
       which: 2.0.2
     dev: true
     optional: true
     resolution:
-      integrity: sha512-BvEXF+UmsnAfYfoapKM9nGxnP+Wn7P91YfXmrKnfcYCx6VBeoN5Ez5Ogck6I8Bi5k4RlpqRYaw75pAwzX9OphA==
-  /node-releases/1.1.70:
+      integrity: sha512-oJP/9NAdd9+x2Q+rfphB2RJCHjod70RcRLjosiPMMu5gjIfwVnOUGq2nbTjTUbmy0DJ/tFIVT30+Qe3nzl4TJg==
+  /node-releases/1.1.72:
     dev: true
     resolution:
-      integrity: sha512-Slf2s69+2/uAD79pVVQo8uSiC34+g8GWY8UH2Qtqv34ZfhYrxpYpfzs9Js9d6O0mbDmALuxaTlplnBTnSELcrw==
+      integrity: sha512-LLUo+PpH3dU6XizX3iVoubUNheF/owjXCZZ5yACDxNnPtgFuludV1ZL3ayK1kVep42Rmm0+R9/Y60NQbZ2bifw==
   /normalize-package-data/2.5.0:
     dependencies:
-      hosted-git-info: 2.8.8
-      resolve: 1.19.0
+      hosted-git-info: 2.8.9
+      resolve: 1.20.0
       semver: 5.7.1
       validate-npm-package-license: 3.0.4
     dev: true
@@ -6014,10 +6325,19 @@ packages:
       node: '>=0.10.0'
     resolution:
       integrity: sha1-fn2Fi3gb18mRpBupde04EnVOmYw=
-  /object-inspect/1.9.0:
+  /object-inspect/1.10.3:
+    dev: true
+    resolution:
+      integrity: sha512-e5mCJlSH7poANfC8z8S9s9S2IN5/4Zb3aZ33f5s8YqoazCFzNLloLU8r5VCG+G7WoqLvAAZoVMcy3tp/3X0Plw==
+  /object-is/1.1.5:
+    dependencies:
+      call-bind: 1.0.2
+      define-properties: 1.1.3
     dev: true
+    engines:
+      node: '>= 0.4'
     resolution:
-      integrity: sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw==
+      integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==
   /object-keys/1.1.1:
     dev: true
     engines:
@@ -6036,7 +6356,7 @@ packages:
     dependencies:
       call-bind: 1.0.2
       define-properties: 1.1.3
-      has-symbols: 1.0.1
+      has-symbols: 1.0.2
       object-keys: 1.1.1
     dev: true
     engines:
@@ -6047,24 +6367,24 @@ packages:
     dependencies:
       call-bind: 1.0.2
       define-properties: 1.1.3
-      es-abstract: 1.18.0-next.2
+      es-abstract: 1.18.0
       has: 1.0.3
     dev: true
     engines:
       node: '>= 0.4'
     resolution:
       integrity: sha512-ym7h7OZebNS96hn5IJeyUmaWhaSM4SVtAPPfNLQEI2MYWCO2egsITb9nab2+i/Pwibx+R0mtn+ltKJXRSeTMGg==
-  /object.fromentries/2.0.3:
+  /object.fromentries/2.0.4:
     dependencies:
       call-bind: 1.0.2
       define-properties: 1.1.3
-      es-abstract: 1.18.0-next.2
+      es-abstract: 1.18.0
       has: 1.0.3
     dev: true
     engines:
       node: '>= 0.4'
     resolution:
-      integrity: sha512-IDUSMXs6LOSJBWE++L0lzIbSqHl9KDCfff2x/JSEIDtEUavUnyMYC2ZGay/04Zq4UT8lvd4xNhU4/YHKibAOlw==
+      integrity: sha512-EsFBshs5RUUpQEY1D4q/m59kMfz4YJvxuNCJcv/jWwOJr34EaVnG11ZrZa0UHB3wnzV1wx8m58T4hQL8IuNXlQ==
   /object.pick/1.3.0:
     dependencies:
       isobject: 3.0.1
@@ -6073,17 +6393,35 @@ packages:
       node: '>=0.10.0'
     resolution:
       integrity: sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=
-  /object.values/1.1.2:
+  /object.values/1.1.3:
     dependencies:
       call-bind: 1.0.2
       define-properties: 1.1.3
-      es-abstract: 1.18.0-next.2
+      es-abstract: 1.18.0
       has: 1.0.3
     dev: true
     engines:
       node: '>= 0.4'
     resolution:
-      integrity: sha512-MYC0jvJopr8EK6dPBiO8Nb9mvjdypOachO5REGk6MXzujbBrAisKo3HmdEI6kZDL6fC31Mwee/5YbtMebixeag==
+      integrity: sha512-nkF6PfDB9alkOUxpf1HNm/QlkeW3SReqL5WXeBLpEJJnlPSvRaDQpW3gQTksTN3fgJX4hL42RzKyOin6ff3tyw==
+  /obuf/1.1.2:
+    dev: true
+    resolution:
+      integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==
+  /on-finished/2.3.0:
+    dependencies:
+      ee-first: 1.1.1
+    dev: true
+    engines:
+      node: '>= 0.8'
+    resolution:
+      integrity: sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=
+  /on-headers/1.0.2:
+    dev: true
+    engines:
+      node: '>= 0.8'
+    resolution:
+      integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==
   /once/1.4.0:
     dependencies:
       wrappy: 1.0.2
@@ -6098,15 +6436,14 @@ packages:
       node: '>=6'
     resolution:
       integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==
-  /open/7.4.0:
+  /opn/5.5.0:
     dependencies:
-      is-docker: 2.1.1
-      is-wsl: 2.2.0
+      is-wsl: 1.1.0
     dev: true
     engines:
-      node: '>=8'
+      node: '>=4'
     resolution:
-      integrity: sha512-PGoBCX/lclIWlpS/R2PQuIR4NJoXh6X5AwVzE7WXnWRGvHg7+4TBCgsujUgiPpm0K1y4qvQeWnCWVTpTKZBtvA==
+      integrity: sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==
   /optionator/0.8.3:
     dependencies:
       deep-is: 0.1.3
@@ -6133,6 +6470,12 @@ packages:
       node: '>= 0.8.0'
     resolution:
       integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==
+  /original/1.0.2:
+    dependencies:
+      url-parse: 1.5.1
+    dev: true
+    resolution:
+      integrity: sha512-hyBVl6iqqUOJ8FqRe+l/gS8H+kKYjrEndd5Pm1MfBtsEKA038HkkdbAl/72EAXGyonD/PFsvmVG+EvcIpliMBg==
   /p-each-series/2.2.0:
     dev: true
     engines:
@@ -6153,6 +6496,22 @@ packages:
       node: '>=6'
     resolution:
       integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==
+  /p-limit/3.1.0:
+    dependencies:
+      yocto-queue: 0.1.0
+    dev: true
+    engines:
+      node: '>=10'
+    resolution:
+      integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==
+  /p-locate/3.0.0:
+    dependencies:
+      p-limit: 2.3.0
+    dev: true
+    engines:
+      node: '>=6'
+    resolution:
+      integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==
   /p-locate/4.1.0:
     dependencies:
       p-limit: 2.3.0
@@ -6161,6 +6520,20 @@ packages:
       node: '>=8'
     resolution:
       integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==
+  /p-map/2.1.0:
+    dev: true
+    engines:
+      node: '>=6'
+    resolution:
+      integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==
+  /p-retry/3.0.1:
+    dependencies:
+      retry: 0.12.0
+    dev: true
+    engines:
+      node: '>=6'
+    resolution:
+      integrity: sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==
   /p-try/2.2.0:
     dev: true
     engines:
@@ -6186,16 +6559,32 @@ packages:
       node: '>=8'
     resolution:
       integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==
-  /parse5/5.1.1:
+  /parse5/6.0.1:
+    dev: true
+    resolution:
+      integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==
+  /parseurl/1.3.3:
     dev: true
+    engines:
+      node: '>= 0.8'
     resolution:
-      integrity: sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==
+      integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==
   /pascalcase/0.1.1:
     dev: true
     engines:
       node: '>=0.10.0'
     resolution:
       integrity: sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=
+  /path-dirname/1.0.2:
+    dev: true
+    resolution:
+      integrity: sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=
+  /path-exists/3.0.0:
+    dev: true
+    engines:
+      node: '>=4'
+    resolution:
+      integrity: sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=
   /path-exists/4.0.0:
     dev: true
     engines:
@@ -6208,6 +6597,10 @@ packages:
       node: '>=0.10.0'
     resolution:
       integrity: sha1-F0uSaHNVNP+8es5r9TpanhtcX18=
+  /path-is-inside/1.0.2:
+    dev: true
+    resolution:
+      integrity: sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=
   /path-key/2.0.1:
     dev: true
     engines:
@@ -6224,6 +6617,10 @@ packages:
     dev: true
     resolution:
       integrity: sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==
+  /path-to-regexp/0.1.7:
+    dev: true
+    resolution:
+      integrity: sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=
   /path-type/4.0.0:
     dev: true
     engines:
@@ -6234,12 +6631,38 @@ packages:
     dev: true
     resolution:
       integrity: sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=
-  /picomatch/2.2.2:
+  /picomatch/2.2.3:
     dev: true
     engines:
       node: '>=8.6'
     resolution:
-      integrity: sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==
+      integrity: sha512-KpELjfwcCDUb9PeigTs2mBJzXUPzAuP2oPcA989He8Rte0+YUAjw1JVedDhuTKPkHjSYzMN3npC9luThGYEKdg==
+  /pify/2.3.0:
+    dev: true
+    engines:
+      node: '>=0.10.0'
+    resolution:
+      integrity: sha1-7RQaasBDqEnqWISY59yosVMw6Qw=
+  /pify/4.0.1:
+    dev: true
+    engines:
+      node: '>=6'
+    resolution:
+      integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==
+  /pinkie-promise/2.0.1:
+    dependencies:
+      pinkie: 2.0.4
+    dev: true
+    engines:
+      node: '>=0.10.0'
+    resolution:
+      integrity: sha1-ITXW36ejWMBprJsXh3YogihFD/o=
+  /pinkie/2.0.4:
+    dev: true
+    engines:
+      node: '>=0.10.0'
+    resolution:
+      integrity: sha1-clVrgM+g1IqXToDnckjoDtT3+HA=
   /pirates/4.0.1:
     dependencies:
       node-modules-regexp: 1.0.0
@@ -6248,6 +6671,14 @@ packages:
       node: '>= 6'
     resolution:
       integrity: sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==
+  /pkg-dir/3.0.0:
+    dependencies:
+      find-up: 3.0.0
+    dev: true
+    engines:
+      node: '>=6'
+    resolution:
+      integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==
   /pkg-dir/4.2.0:
     dependencies:
       find-up: 4.1.0
@@ -6256,12 +6687,90 @@ packages:
       node: '>=8'
     resolution:
       integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==
+  /portfinder/1.0.28:
+    dependencies:
+      async: 2.6.3
+      debug: 3.2.7
+      mkdirp: 0.5.5
+    dev: true
+    engines:
+      node: '>= 0.12.0'
+    resolution:
+      integrity: sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==
   /posix-character-classes/0.1.1:
     dev: true
     engines:
       node: '>=0.10.0'
     resolution:
       integrity: sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=
+  /postcss-modules-extract-imports/3.0.0_postcss@8.2.15:
+    dependencies:
+      postcss: 8.2.15
+    dev: true
+    engines:
+      node: ^10 || ^12 || >= 14
+    peerDependencies:
+      postcss: ^8.1.0
+    resolution:
+      integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==
+  /postcss-modules-local-by-default/4.0.0_postcss@8.2.15:
+    dependencies:
+      icss-utils: 5.1.0_postcss@8.2.15
+      postcss: 8.2.15
+      postcss-selector-parser: 6.0.6
+      postcss-value-parser: 4.1.0
+    dev: true
+    engines:
+      node: ^10 || ^12 || >= 14
+    peerDependencies:
+      postcss: ^8.1.0
+    resolution:
+      integrity: sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==
+  /postcss-modules-scope/3.0.0_postcss@8.2.15:
+    dependencies:
+      postcss: 8.2.15
+      postcss-selector-parser: 6.0.6
+    dev: true
+    engines:
+      node: ^10 || ^12 || >= 14
+    peerDependencies:
+      postcss: ^8.1.0
+    resolution:
+      integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==
+  /postcss-modules-values/4.0.0_postcss@8.2.15:
+    dependencies:
+      icss-utils: 5.1.0_postcss@8.2.15
+      postcss: 8.2.15
+    dev: true
+    engines:
+      node: ^10 || ^12 || >= 14
+    peerDependencies:
+      postcss: ^8.1.0
+    resolution:
+      integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==
+  /postcss-selector-parser/6.0.6:
+    dependencies:
+      cssesc: 3.0.0
+      util-deprecate: 1.0.2
+    dev: true
+    engines:
+      node: '>=4'
+    resolution:
+      integrity: sha512-9LXrvaaX3+mcv5xkg5kFwqSzSH1JIObIx51PrndZwlmznwXRfxMddDvo9gve3gVR8ZTKgoFDdWkbRFmEhT4PMg==
+  /postcss-value-parser/4.1.0:
+    dev: true
+    resolution:
+      integrity: sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==
+  /postcss/8.2.15:
+    dependencies:
+      colorette: 1.2.2
+      nanoid: 3.1.23
+      source-map: 0.6.1
+    dev: true
+    engines:
+      node: ^10 || ^12 || >=14
+    resolution:
+      integrity: sha512-2zO3b26eJD/8rb106Qu2o7Qgg52ND5HPjcyQiK2B98O388h43A448LCslC0dI2P97wCAQRJsFvwTRcXxTKds+Q==
   /prelude-ls/1.1.2:
     dev: true
     engines:
@@ -6274,37 +6783,35 @@ packages:
       node: '>= 0.8.0'
     resolution:
       integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==
-  /prettier/2.2.1:
+  /prettier/2.3.0:
     dev: true
     engines:
       node: '>=10.13.0'
     hasBin: true
     resolution:
-      integrity: sha512-PqyhM2yCjg/oKkFPtTGUojv7gnZAoG80ttl45O6x2Ug/rMJw4wcc9k6aaf2hibP7BGVCCM33gZoGjyvt9mm16Q==
+      integrity: sha512-kXtO4s0Lz/DW/IJ9QdWhAf7/NmPWQXkFr/r/WkR3vyI+0v8amTDxiaQSLzs8NBlytfLWX/7uQUMIW677yLKl4w==
   /pretty-format/26.6.2:
     dependencies:
       '@jest/types': 26.6.2
       ansi-regex: 5.0.0
       ansi-styles: 4.3.0
-      react-is: 17.0.1
+      react-is: 17.0.2
     dev: true
     engines:
       node: '>= 10'
     resolution:
       integrity: sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==
+  /process-nextick-args/2.0.1:
+    dev: true
+    resolution:
+      integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==
   /progress/2.0.3:
     dev: true
     engines:
       node: '>=0.4.0'
     resolution:
       integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==
-  /promise/8.1.0:
-    dependencies:
-      asap: 2.0.6
-    dev: true
-    resolution:
-      integrity: sha512-W04AqnILOL/sPRXziNicCjSNRruLAuIHEOVBazepu0545DDNGYHz7ar9ZgZ1fMU8/MA4mVxp5rkBWRi6OXIy3Q==
-  /prompts/2.4.0:
+  /prompts/2.4.1:
     dependencies:
       kleur: 3.0.3
       sisteransi: 1.0.5
@@ -6312,7 +6819,7 @@ packages:
     engines:
       node: '>= 6'
     resolution:
-      integrity: sha512-awZAKrk3vN6CroQukBL+R9051a4R3zCZBlJm/HBfrSZ8iTpYix3VX1vU4mveiLpiwmOJT4wokTF9m6HUk4KqWQ==
+      integrity: sha512-EQyfIuO2hPDsX1L/blblV+H7I0knhgAd82cVneCwcdND9B8AuCDuRcBH6yIcG4dFzlOUqbazQqwGjx5xmsNLuQ==
   /prop-types/15.7.2:
     dependencies:
       loose-envify: 1.4.0
@@ -6321,6 +6828,19 @@ packages:
     dev: true
     resolution:
       integrity: sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==
+  /proxy-addr/2.0.6:
+    dependencies:
+      forwarded: 0.1.2
+      ipaddr.js: 1.9.1
+    dev: true
+    engines:
+      node: '>= 0.10'
+    resolution:
+      integrity: sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw==
+  /prr/1.0.1:
+    dev: true
+    resolution:
+      integrity: sha1-0/wRS6BplaRexok/SEzrHXj19HY=
   /psl/1.8.0:
     dev: true
     resolution:
@@ -6332,6 +6852,10 @@ packages:
     dev: true
     resolution:
       integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==
+  /punycode/1.3.2:
+    dev: true
+    resolution:
+      integrity: sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=
   /punycode/2.1.1:
     dev: true
     engines:
@@ -6344,44 +6868,64 @@ packages:
       node: '>=0.6'
     resolution:
       integrity: sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==
-  /queue-microtask/1.2.2:
+  /qs/6.7.0:
+    dev: true
+    engines:
+      node: '>=0.6'
+    resolution:
+      integrity: sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==
+  /querystring/0.2.0:
+    dev: true
+    engines:
+      node: '>=0.4.x'
+    resolution:
+      integrity: sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=
+  /querystringify/2.2.0:
+    dev: true
+    resolution:
+      integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==
+  /queue-microtask/1.2.3:
     dev: true
     resolution:
-      integrity: sha512-dB15eXv3p2jDlbOiNLyMabYg1/sXvppd8DP2J3EOCQ0AkuSXCW2tP7mnVouVLJKgUMY6yP0kcQDVpLCN13h4Xg==
-  /raf/3.4.1:
+      integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==
+  /randombytes/2.1.0:
     dependencies:
-      performance-now: 2.1.0
+      safe-buffer: 5.2.1
+    dev: true
+    resolution:
+      integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==
+  /range-parser/1.2.1:
     dev: true
+    engines:
+      node: '>= 0.6'
     resolution:
-      integrity: sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==
-  /react-app-polyfill/1.0.6:
+      integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==
+  /raw-body/2.4.0:
     dependencies:
-      core-js: 3.8.3
-      object-assign: 4.1.1
-      promise: 8.1.0
-      raf: 3.4.1
-      regenerator-runtime: 0.13.7
-      whatwg-fetch: 3.5.0
+      bytes: 3.1.0
+      http-errors: 1.7.2
+      iconv-lite: 0.4.24
+      unpipe: 1.0.0
     dev: true
     engines:
-      node: '>=6'
+      node: '>= 0.8'
     resolution:
-      integrity: sha512-OfBnObtnGgLGfweORmdZbyEz+3dgVePQBb3zipiaDsMHV1NpWm0rDFYIVXFV/AK+x4VIIfWHhrdMIeoTLyRr2g==
-  /react-dom/17.0.1_react@17.0.1:
+      integrity: sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==
+  /react-dom/17.0.2_react@17.0.2:
     dependencies:
       loose-envify: 1.4.0
       object-assign: 4.1.1
-      react: 17.0.1
-      scheduler: 0.20.1
+      react: 17.0.2
+      scheduler: 0.20.2
     dev: false
     peerDependencies:
-      react: 17.0.1
+      react: 17.0.2
     resolution:
-      integrity: sha512-6eV150oJZ9U2t9svnsspTMrWNyHc6chX0KzDeAOXftRa8bNeOKTTfCJ7KorIwenkHd2xqVTBTCZd79yk/lx/Ug==
-  /react-error-boundary/3.1.0_react@17.0.1:
+      integrity: sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==
+  /react-error-boundary/3.1.3_react@17.0.2:
     dependencies:
-      '@babel/runtime': 7.12.13
-      react: 17.0.1
+      '@babel/runtime': 7.14.0
+      react: 17.0.2
     dev: true
     engines:
       node: '>=10'
@@ -6389,48 +6933,64 @@ packages:
     peerDependencies:
       react: '>=16.13.1'
     resolution:
-      integrity: sha512-lmPrdi5SLRJR+AeJkqdkGlW/CRkAUvZnETahK58J4xb5wpbfDngasEGu+w0T1iXEhVrYBJZeW+c4V1hILCnMWQ==
-  /react-i18next/11.8.5_i18next@19.8.7+react@17.0.1:
+      integrity: sha512-A+F9HHy9fvt9t8SNDlonq01prnU8AmkjvGKV4kk8seB9kU3xMEO8J/PQlLVmoOIDODl5U2kufSBs4vrWIqhsAA==
+  /react-i18next/11.8.15_i18next@19.9.2+react@17.0.2:
     dependencies:
-      '@babel/runtime': 7.12.13
-      html-parse-stringify2: 2.0.1
-      i18next: 19.8.7
-      react: 17.0.1
+      '@babel/runtime': 7.14.0
+      html-parse-stringify: 3.0.1
+      i18next: 19.9.2
+      react: 17.0.2
     dev: false
     peerDependencies:
       i18next: '>= 19.0.0'
       react: '>= 16.8.0'
     resolution:
-      integrity: sha512-2jY/8NkhNv2KWBnZuhHxTn13aMxAbvhiDUNskm+1xVVnrPId78l8fA7fCyVeO3XU1kptM0t4MtvxV1Nu08cjLw==
+      integrity: sha512-ZbKcbYYKukgDL0MiUWKJTEsEftjSTNVZv67/V+SjPqTRwuF/aL4NbUtuEcb4WjHk0HyZ1M+2wGd07Fp0RUNHKA==
   /react-is/16.13.1:
     dev: true
     resolution:
       integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==
-  /react-is/17.0.1:
+  /react-is/17.0.2:
+    dev: true
+    resolution:
+      integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==
+  /react-shallow-renderer/16.14.1_react@17.0.2:
+    dependencies:
+      object-assign: 4.1.1
+      react: 17.0.2
+      react-is: 17.0.2
     dev: true
+    peerDependencies:
+      react: ^16.0.0 || ^17.0.0
     resolution:
-      integrity: sha512-NAnt2iGDXohE5LI7uBnLnqvLQMtzhkiAOLXTmv+qnF9Ky7xAPcX8Up/xWIhxvLVGJvuLiNc4xQLtuqDRzb4fSA==
-  /react-refresh/0.9.0:
+      integrity: sha512-rkIMcQi01/+kxiTE9D3fdS959U1g7gs+/rborw++42m1O9FAQiNI/UNRZExVUoAOprn4umcXf+pFRou8i4zuBg==
+  /react-test-renderer/17.0.2_react@17.0.2:
+    dependencies:
+      object-assign: 4.1.1
+      react: 17.0.2
+      react-is: 17.0.2
+      react-shallow-renderer: 16.14.1_react@17.0.2
+      scheduler: 0.20.2
     dev: true
-    engines:
-      node: '>=0.10.0'
+    peerDependencies:
+      react: 17.0.2
     resolution:
-      integrity: sha512-Gvzk7OZpiqKSkxsQvO/mbTN1poglhmAV7gR/DdIrRrSMXraRQQlfikRJOr3Nb9GTMPC5kof948Zy6jJZIFtDvQ==
-  /react-transition-group/4.4.1_react-dom@17.0.1+react@17.0.1:
+      integrity: sha512-yaQ9cB89c17PUb0x6UfWRs7kQCorVdHlutU1boVPEsB8IDZH6n9tHxMacc3y0JoXOJUsZb/t/Mb8FUWMKaM7iQ==
+  /react-transition-group/4.4.1_react-dom@17.0.2+react@17.0.2:
     dependencies:
-      '@babel/runtime': 7.12.13
-      dom-helpers: 5.2.0
+      '@babel/runtime': 7.14.0
+      dom-helpers: 5.2.1
       loose-envify: 1.4.0
       prop-types: 15.7.2
-      react: 17.0.1
-      react-dom: 17.0.1_react@17.0.1
+      react: 17.0.2
+      react-dom: 17.0.2_react@17.0.2
     dev: true
     peerDependencies:
       react: '>=16.6.0'
       react-dom: '>=16.6.0'
     resolution:
       integrity: sha512-Djqr7OQ2aPUiYurhPalTrVy9ddmFCCzwhqQmtN+J3+3DzLO209Fdr70QrN8Z3DsglWql6iY1lDWAfpFiBtuKGw==
-  /react/17.0.1:
+  /react/17.0.2:
     dependencies:
       loose-envify: 1.4.0
       object-assign: 4.1.1
@@ -6438,7 +6998,7 @@ packages:
     engines:
       node: '>=0.10.0'
     resolution:
-      integrity: sha512-lG9c9UuMHdcAexXtigOZLX8exLWkW0Ku29qPRU8uhF2R9BN96dLCt0psvzPLlHc5OWkgymP3qwTRgbnw5BKx3w==
+      integrity: sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==
   /read-pkg-up/7.0.1:
     dependencies:
       find-up: 4.1.0
@@ -6460,14 +7020,54 @@ packages:
       node: '>=8'
     resolution:
       integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==
+  /readable-stream/2.3.7:
+    dependencies:
+      core-util-is: 1.0.2
+      inherits: 2.0.4
+      isarray: 1.0.0
+      process-nextick-args: 2.0.1
+      safe-buffer: 5.1.2
+      string_decoder: 1.1.1
+      util-deprecate: 1.0.2
+    dev: true
+    resolution:
+      integrity: sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==
+  /readable-stream/3.6.0:
+    dependencies:
+      inherits: 2.0.4
+      string_decoder: 1.3.0
+      util-deprecate: 1.0.2
+    dev: true
+    engines:
+      node: '>= 6'
+    resolution:
+      integrity: sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==
+  /readdirp/2.2.1:
+    dependencies:
+      graceful-fs: 4.2.6
+      micromatch: 3.1.10
+      readable-stream: 2.3.7
+    dev: true
+    engines:
+      node: '>=0.10'
+    resolution:
+      integrity: sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==
   /readdirp/3.5.0:
     dependencies:
-      picomatch: 2.2.2
+      picomatch: 2.2.3
     dev: true
     engines:
       node: '>=8.10.0'
     resolution:
       integrity: sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==
+  /rechoir/0.7.0:
+    dependencies:
+      resolve: 1.20.0
+    dev: true
+    engines:
+      node: '>= 0.10'
+    resolution:
+      integrity: sha512-ADsDEH2bvbjltXEP+hTIAmeFekTFK0V2BTxMkok6qILyAJEXV0AFfoWcAq4yfll5VdIMd/RVXq0lR+wQi5ZU3Q==
   /redent/3.0.0:
     dependencies:
       indent-string: 4.0.0
@@ -6527,7 +7127,7 @@ packages:
       regenerate: 1.4.2
       regenerate-unicode-properties: 8.2.0
       regjsgen: 0.5.2
-      regjsparser: 0.6.7
+      regjsparser: 0.6.9
       unicode-match-property-ecmascript: 1.0.4
       unicode-match-property-value-ecmascript: 1.2.0
     dev: true
@@ -6539,23 +7139,23 @@ packages:
     dev: true
     resolution:
       integrity: sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==
-  /regjsparser/0.6.7:
+  /regjsparser/0.6.9:
     dependencies:
       jsesc: 0.5.0
     dev: true
     hasBin: true
     resolution:
-      integrity: sha512-ib77G0uxsA2ovgiYbCVGx4Pv3PSttAx2vIwidqQzbL2U5S4Q+j00HdSAneSBuyVcMvEnTXMjiGgB+DlXozVhpQ==
+      integrity: sha512-ZqbNRz1SNjLAiYuwY0zoXW8Ne675IX5q+YHioAGbCw4X96Mjl2+dcX9B2ciaeyYjViDAfvIjFpQjJgLttTEERQ==
   /remove-trailing-separator/1.1.0:
     dev: true
     resolution:
       integrity: sha1-wkvOKig62tW8P1jg1IJJuSN52O8=
-  /repeat-element/1.1.3:
+  /repeat-element/1.1.4:
     dev: true
     engines:
       node: '>=0.10.0'
     resolution:
-      integrity: sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==
+      integrity: sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==
   /repeat-string/1.6.1:
     dev: true
     engines:
@@ -6564,7 +7164,7 @@ packages:
       integrity: sha1-jcrkcOHIirwtYA//Sndihtp15jc=
   /request-promise-core/1.1.4_request@2.88.2:
     dependencies:
-      lodash: 4.17.20
+      lodash: 4.17.21
       request: 2.88.2
     dev: true
     engines:
@@ -6601,7 +7201,7 @@ packages:
       is-typedarray: 1.0.0
       isstream: 0.1.2
       json-stringify-safe: 5.0.1
-      mime-types: 2.1.28
+      mime-types: 2.1.30
       oauth-sign: 0.9.0
       performance-now: 2.1.0
       qs: 6.5.2
@@ -6637,6 +7237,18 @@ packages:
       node: '>=0.10.5'
     resolution:
       integrity: sha512-L9jEkOi3ASd9PYit2cwRfyppc9NoABujTP8/5gFcbERmo5jUoAKovIC3fsF17pkTnGsrByysqX+Kxd2OTNI1ww==
+  /requires-port/1.0.0:
+    dev: true
+    resolution:
+      integrity: sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=
+  /resolve-cwd/2.0.0:
+    dependencies:
+      resolve-from: 3.0.0
+    dev: true
+    engines:
+      node: '>=4'
+    resolution:
+      integrity: sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=
   /resolve-cwd/3.0.0:
     dependencies:
       resolve-from: 5.0.0
@@ -6645,6 +7257,12 @@ packages:
       node: '>=8'
     resolution:
       integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==
+  /resolve-from/3.0.0:
+    dev: true
+    engines:
+      node: '>=4'
+    resolution:
+      integrity: sha1-six699nWiBvItuZTM17rywoYh0g=
   /resolve-from/4.0.0:
     dev: true
     engines:
@@ -6662,26 +7280,32 @@ packages:
     dev: true
     resolution:
       integrity: sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=
-  /resolve/1.19.0:
+  /resolve/1.20.0:
     dependencies:
-      is-core-module: 2.2.0
+      is-core-module: 2.4.0
       path-parse: 1.0.6
     dev: true
     resolution:
-      integrity: sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==
-  /resolve/1.20.0:
+      integrity: sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==
+  /resolve/2.0.0-next.3:
     dependencies:
-      is-core-module: 2.2.0
+      is-core-module: 2.4.0
       path-parse: 1.0.6
     dev: true
     resolution:
-      integrity: sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==
+      integrity: sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==
   /ret/0.1.15:
     dev: true
     engines:
       node: '>=0.12'
     resolution:
       integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==
+  /retry/0.12.0:
+    dev: true
+    engines:
+      node: '>= 4'
+    resolution:
+      integrity: sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=
   /reusify/1.0.4:
     dev: true
     engines:
@@ -6689,22 +7313,20 @@ packages:
       node: '>=0.10.0'
     resolution:
       integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==
-  /rimraf/3.0.2:
+  /rimraf/2.7.1:
     dependencies:
-      glob: 7.1.6
+      glob: 7.1.7
     dev: true
     hasBin: true
     resolution:
-      integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==
-  /rollup/2.38.4:
+      integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==
+  /rimraf/3.0.2:
+    dependencies:
+      glob: 7.1.7
     dev: true
-    engines:
-      node: '>=10.0.0'
     hasBin: true
-    optionalDependencies:
-      fsevents: 2.3.1
     resolution:
-      integrity: sha512-B0LcJhjiwKkTl79aGVF/u5KdzsH8IylVfV56Ut6c9ouWLJcUK17T83aZBetNYSnZtXf2OHD4+2PbmRW+Fp5ulg==
+      integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==
   /rsvp/4.8.5:
     dev: true
     engines:
@@ -6713,18 +7335,18 @@ packages:
       integrity: sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==
   /run-parallel/1.2.0:
     dependencies:
-      queue-microtask: 1.2.2
+      queue-microtask: 1.2.3
     dev: true
     resolution:
       integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==
-  /rxjs/6.6.3:
+  /rxjs/6.6.7:
     dependencies:
       tslib: 1.14.1
     dev: true
     engines:
       npm: '>=2.0.0'
     resolution:
-      integrity: sha512-trsQc+xYYXZ3urjOiJOuCOa5N3jAZ3eiSpQB5hIT8zGlL2QfnHLJ2r7GMkBGuIausdJN1OneaI6gQlsqNHHmZQ==
+      integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==
   /safe-buffer/5.1.2:
     dev: true
     resolution:
@@ -6748,7 +7370,7 @@ packages:
       '@cnakazawa/watch': 1.0.4
       anymatch: 2.0.0
       capture-exit: 2.0.0
-      exec-sh: 0.3.4
+      exec-sh: 0.3.6
       execa: 1.0.0
       fb-watchman: 2.0.1
       micromatch: 3.1.10
@@ -6760,7 +7382,30 @@ packages:
     hasBin: true
     resolution:
       integrity: sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==
-  /sass/1.32.6:
+  /sass-loader/11.1.1_sass@1.32.13+webpack@5.37.1:
+    dependencies:
+      klona: 2.0.4
+      neo-async: 2.6.2
+      sass: 1.32.13
+      webpack: 5.37.1_webpack-cli@4.7.0
+    dev: true
+    engines:
+      node: '>= 10.13.0'
+    peerDependencies:
+      fibers: '>= 3.1.0'
+      node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0
+      sass: ^1.3.0
+      webpack: ^5.0.0
+    peerDependenciesMeta:
+      fibers:
+        optional: true
+      node-sass:
+        optional: true
+      sass:
+        optional: true
+    resolution:
+      integrity: sha512-fOCp/zLmj1V1WHDZbUbPgrZhA7HKXHEqkslzB+05U5K9SbSbcmH91C7QLW31AsXikxUMaxXRhhcqWZAxUMLDyA==
+  /sass/1.32.13:
     dependencies:
       chokidar: 3.5.1
     dev: true
@@ -6768,7 +7413,7 @@ packages:
       node: '>=8.9.0'
     hasBin: true
     resolution:
-      integrity: sha512-1bcDHDcSqeFtMr0JXI3xc/CXX6c4p0wHHivJdru8W7waM7a1WjKMm4m/Z5sY7CbVw4Whi2Chpcw6DFfSWwGLzQ==
+      integrity: sha512-dEgI9nShraqP7cXQH+lEXVf73WOPCse0QlFzSD8k+1TcOxCMwVXfQlr0jtoluZysQOyJGnfr21dLvYKDJq8HkA==
   /saxes/5.0.1:
     dependencies:
       xmlchars: 2.2.0
@@ -6777,13 +7422,42 @@ packages:
       node: '>=10'
     resolution:
       integrity: sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==
-  /scheduler/0.20.1:
+  /scheduler/0.20.2:
     dependencies:
       loose-envify: 1.4.0
       object-assign: 4.1.1
-    dev: false
     resolution:
-      integrity: sha512-LKTe+2xNJBNxu/QhHvDR14wUXHRQbVY5ZOYpOGWRzhydZUqrLb2JBvLPY7cAqFmqrWuDED0Mjk7013SZiOz6Bw==
+      integrity: sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==
+  /schema-utils/1.0.0:
+    dependencies:
+      ajv: 6.12.6
+      ajv-errors: 1.0.1_ajv@6.12.6
+      ajv-keywords: 3.5.2_ajv@6.12.6
+    dev: true
+    engines:
+      node: '>= 4'
+    resolution:
+      integrity: sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==
+  /schema-utils/3.0.0:
+    dependencies:
+      '@types/json-schema': 7.0.7
+      ajv: 6.12.6
+      ajv-keywords: 3.5.2_ajv@6.12.6
+    dev: true
+    engines:
+      node: '>= 10.13.0'
+    resolution:
+      integrity: sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==
+  /select-hose/2.0.0:
+    dev: true
+    resolution:
+      integrity: sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=
+  /selfsigned/1.10.11:
+    dependencies:
+      node-forge: 0.10.0
+    dev: true
+    resolution:
+      integrity: sha512-aVmbPOfViZqOZPgRBT0+3u4yZFHpmnIghLMlAcb5/xhp5ZtB/RVnKhz5vl2M32CLXAqR4kha9zfhNg0Lf/sxKA==
   /semver/5.7.1:
     dev: true
     hasBin: true
@@ -6798,16 +7472,67 @@ packages:
     dev: true
     hasBin: true
     resolution:
-      integrity: sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==
-  /semver/7.3.4:
+      integrity: sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==
+  /semver/7.3.5:
+    dependencies:
+      lru-cache: 6.0.0
+    dev: true
+    engines:
+      node: '>=10'
+    hasBin: true
+    resolution:
+      integrity: sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==
+  /send/0.17.1:
+    dependencies:
+      debug: 2.6.9
+      depd: 1.1.2
+      destroy: 1.0.4
+      encodeurl: 1.0.2
+      escape-html: 1.0.3
+      etag: 1.8.1
+      fresh: 0.5.2
+      http-errors: 1.7.3
+      mime: 1.6.0
+      ms: 2.1.1
+      on-finished: 2.3.0
+      range-parser: 1.2.1
+      statuses: 1.5.0
+    dev: true
+    engines:
+      node: '>= 0.8.0'
+    resolution:
+      integrity: sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==
+  /serialize-javascript/5.0.1:
+    dependencies:
+      randombytes: 2.1.0
+    dev: true
+    resolution:
+      integrity: sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==
+  /serve-index/1.9.1:
+    dependencies:
+      accepts: 1.3.7
+      batch: 0.6.1
+      debug: 2.6.9
+      escape-html: 1.0.3
+      http-errors: 1.6.3
+      mime-types: 2.1.30
+      parseurl: 1.3.3
+    dev: true
+    engines:
+      node: '>= 0.8.0'
+    resolution:
+      integrity: sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=
+  /serve-static/1.14.1:
     dependencies:
-      lru-cache: 6.0.0
+      encodeurl: 1.0.2
+      escape-html: 1.0.3
+      parseurl: 1.3.3
+      send: 0.17.1
     dev: true
     engines:
-      node: '>=10'
-    hasBin: true
+      node: '>= 0.8.0'
     resolution:
-      integrity: sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==
+      integrity: sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==
   /set-blocking/2.0.0:
     dev: true
     resolution:
@@ -6823,6 +7548,22 @@ packages:
       node: '>=0.10.0'
     resolution:
       integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==
+  /setprototypeof/1.1.0:
+    dev: true
+    resolution:
+      integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==
+  /setprototypeof/1.1.1:
+    dev: true
+    resolution:
+      integrity: sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==
+  /shallow-clone/3.0.1:
+    dependencies:
+      kind-of: 6.0.3
+    dev: true
+    engines:
+      node: '>=8'
+    resolution:
+      integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==
   /shebang-command/1.2.0:
     dependencies:
       shebang-regex: 1.0.0
@@ -6860,7 +7601,7 @@ packages:
     dependencies:
       call-bind: 1.0.2
       get-intrinsic: 1.1.1
-      object-inspect: 1.9.0
+      object-inspect: 1.10.3
     dev: true
     resolution:
       integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==
@@ -6921,19 +7662,29 @@ packages:
       node: '>=0.10.0'
     resolution:
       integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==
-  /snowpack/3.0.11:
+  /sockjs-client/1.5.1:
+    dependencies:
+      debug: 3.2.7
+      eventsource: 1.1.0
+      faye-websocket: 0.11.3
+      inherits: 2.0.4
+      json3: 3.3.3
+      url-parse: 1.5.1
+    dev: true
+    resolution:
+      integrity: sha512-VnVAb663fosipI/m6pqRXakEOw7nvd7TUgdr3PlR/8V2I95QIdwT8L4nMxhyU8SmDBHYXU1TOElaKOmKLfYzeQ==
+  /sockjs/0.3.21:
     dependencies:
-      esbuild: 0.8.41
-      open: 7.4.0
-      rollup: 2.38.4
+      faye-websocket: 0.11.3
+      uuid: 3.4.0
+      websocket-driver: 0.7.4
+    dev: true
+    resolution:
+      integrity: sha512-DhbPFGpxjc6Z3I+uX07Id5ZO2XwYsWOrYjaSeieES78cq+JaJvVe5q/m1uvjIQhXinhIeCFRH6JgXe+mvVMyXw==
+  /source-list-map/2.0.1:
     dev: true
-    engines:
-      node: '>=10.19.0'
-    hasBin: true
-    optionalDependencies:
-      fsevents: 2.3.1
     resolution:
-      integrity: sha512-lBxgkvWTgdg0szE31JUt01wQkA9Lnmm+6lxqeV9rxDfflpx7ASnldVHFvu7Se70QJmPTQB0UJjfKI+xmYGwiiQ==
+      integrity: sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==
   /source-map-resolve/0.5.3:
     dependencies:
       atob: 2.1.2
@@ -6983,7 +7734,7 @@ packages:
   /spdx-correct/3.1.1:
     dependencies:
       spdx-expression-parse: 3.0.1
-      spdx-license-ids: 3.0.7
+      spdx-license-ids: 3.0.8
     dev: true
     resolution:
       integrity: sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==
@@ -6994,14 +7745,41 @@ packages:
   /spdx-expression-parse/3.0.1:
     dependencies:
       spdx-exceptions: 2.3.0
-      spdx-license-ids: 3.0.7
+      spdx-license-ids: 3.0.8
     dev: true
     resolution:
       integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==
-  /spdx-license-ids/3.0.7:
+  /spdx-license-ids/3.0.8:
+    dev: true
+    resolution:
+      integrity: sha512-NDgA96EnaLSvtbM7trJj+t1LUR3pirkDCcz9nOUlPb5DMBGsH7oES6C3hs3j7R9oHEa1EMvReS/BUAIT5Tcr0g==
+  /spdy-transport/3.0.0_supports-color@6.1.0:
+    dependencies:
+      debug: 4.3.1_supports-color@6.1.0
+      detect-node: 2.1.0
+      hpack.js: 2.1.6
+      obuf: 1.1.2
+      readable-stream: 3.6.0
+      wbuf: 1.7.3
+    dev: true
+    peerDependencies:
+      supports-color: '*'
+    resolution:
+      integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==
+  /spdy/4.0.2_supports-color@6.1.0:
+    dependencies:
+      debug: 4.3.1_supports-color@6.1.0
+      handle-thing: 2.0.1
+      http-deceiver: 1.2.7
+      select-hose: 2.0.0
+      spdy-transport: 3.0.0_supports-color@6.1.0
     dev: true
+    engines:
+      node: '>=6.0.0'
+    peerDependencies:
+      supports-color: '*'
     resolution:
-      integrity: sha512-U+MTEOO0AiDzxwFvoa4JVnMV6mZlJKk2sBLt90s7G0Gd0Mlknc7kxEn3nuDPNZRta7O2uy8oLcZLVT+4sqNZHQ==
+      integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==
   /split-string/3.1.0:
     dependencies:
       extend-shallow: 3.0.2
@@ -7048,13 +7826,19 @@ packages:
       node: '>=0.10.0'
     resolution:
       integrity: sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=
+  /statuses/1.5.0:
+    dev: true
+    engines:
+      node: '>= 0.6'
+    resolution:
+      integrity: sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=
   /stealthy-require/1.1.1:
     dev: true
     engines:
       node: '>=0.10.0'
     resolution:
       integrity: sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=
-  /string-length/4.0.1:
+  /string-length/4.0.2:
     dependencies:
       char-regex: 1.0.2
       strip-ansi: 6.0.0
@@ -7062,8 +7846,18 @@ packages:
     engines:
       node: '>=10'
     resolution:
-      integrity: sha512-PKyXUd0LK0ePjSOnWn34V2uD6acUWev9uy0Ft05k0E8xRW+SKcA0F7eMr7h5xlzfn+4O3N+55rduYyet3Jk+jw==
-  /string-width/4.2.0:
+      integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==
+  /string-width/3.1.0:
+    dependencies:
+      emoji-regex: 7.0.3
+      is-fullwidth-code-point: 2.0.0
+      strip-ansi: 5.2.0
+    dev: true
+    engines:
+      node: '>=6'
+    resolution:
+      integrity: sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==
+  /string-width/4.2.2:
     dependencies:
       emoji-regex: 8.0.0
       is-fullwidth-code-point: 3.0.0
@@ -7072,33 +7866,61 @@ packages:
     engines:
       node: '>=8'
     resolution:
-      integrity: sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==
-  /string.prototype.matchall/4.0.3:
+      integrity: sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==
+  /string.prototype.matchall/4.0.4:
     dependencies:
       call-bind: 1.0.2
       define-properties: 1.1.3
-      es-abstract: 1.18.0-next.2
-      has-symbols: 1.0.1
+      es-abstract: 1.18.0
+      has-symbols: 1.0.2
       internal-slot: 1.0.3
       regexp.prototype.flags: 1.3.1
       side-channel: 1.0.4
     dev: true
     resolution:
-      integrity: sha512-OBxYDA2ifZQ2e13cP82dWFMaCV9CGF8GzmN4fljBVw5O5wep0lu4gacm1OL6MjROoUnB8VbkWRThqkV2YFLNxw==
-  /string.prototype.trimend/1.0.3:
+      integrity: sha512-pknFIWVachNcyqRfaQSeu/FUfpvJTe4uskUSZ9Wc1RijsPuzbZ8TyYT8WCNnntCjUEqQ3vUHMAfVj2+wLAisPQ==
+  /string.prototype.trimend/1.0.4:
     dependencies:
       call-bind: 1.0.2
       define-properties: 1.1.3
     dev: true
     resolution:
-      integrity: sha512-ayH0pB+uf0U28CtjlLvL7NaohvR1amUvVZk+y3DYb0Ey2PUV5zPkkKy9+U1ndVEIXO8hNg18eIv9Jntbii+dKw==
-  /string.prototype.trimstart/1.0.3:
+      integrity: sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==
+  /string.prototype.trimstart/1.0.4:
     dependencies:
       call-bind: 1.0.2
       define-properties: 1.1.3
     dev: true
     resolution:
-      integrity: sha512-oBIBUy5lea5tt0ovtOFiEQaBkoBBkyJhZXzJYrSmDo5IUUqbOPvVezuRs/agBIdZ2p2Eo1FD6bD9USyBLfl3xg==
+      integrity: sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==
+  /string_decoder/1.1.1:
+    dependencies:
+      safe-buffer: 5.1.2
+    dev: true
+    resolution:
+      integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==
+  /string_decoder/1.3.0:
+    dependencies:
+      safe-buffer: 5.2.1
+    dev: true
+    resolution:
+      integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==
+  /strip-ansi/3.0.1:
+    dependencies:
+      ansi-regex: 2.1.1
+    dev: true
+    engines:
+      node: '>=0.10.0'
+    resolution:
+      integrity: sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=
+  /strip-ansi/5.2.0:
+    dependencies:
+      ansi-regex: 4.1.0
+    dev: true
+    engines:
+      node: '>=6'
+    resolution:
+      integrity: sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==
   /strip-ansi/6.0.0:
     dependencies:
       ansi-regex: 5.0.0
@@ -7147,6 +7969,14 @@ packages:
       node: '>=4'
     resolution:
       integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
+  /supports-color/6.1.0:
+    dependencies:
+      has-flag: 3.0.0
+    dev: true
+    engines:
+      node: '>=6'
+    resolution:
+      integrity: sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==
   /supports-color/7.2.0:
     dependencies:
       has-flag: 4.0.0
@@ -7155,7 +7985,7 @@ packages:
       node: '>=8'
     resolution:
       integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
-  /supports-hyperlinks/2.1.0:
+  /supports-hyperlinks/2.2.0:
     dependencies:
       has-flag: 4.0.0
       supports-color: 7.2.0
@@ -7163,35 +7993,76 @@ packages:
     engines:
       node: '>=8'
     resolution:
-      integrity: sha512-zoE5/e+dnEijk6ASB6/qrK+oYdm2do1hjoLWrqUC/8WEIW1gbxFcKuBof7sW8ArN6e+AYvsE8HBGiVRWL/F5CA==
+      integrity: sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==
   /symbol-tree/3.2.4:
     dev: true
     resolution:
       integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==
-  /table/6.0.7:
+  /table/6.7.1:
     dependencies:
-      ajv: 7.1.0
-      lodash: 4.17.20
+      ajv: 8.4.0
+      lodash.clonedeep: 4.5.0
+      lodash.truncate: 4.4.2
       slice-ansi: 4.0.0
-      string-width: 4.2.0
+      string-width: 4.2.2
+      strip-ansi: 6.0.0
     dev: true
     engines:
       node: '>=10.0.0'
     resolution:
-      integrity: sha512-rxZevLGTUzWna/qBLObOe16kB2RTnnbhciwgPbMMlazz1yZGVEgnZK762xyVdVznhqxrfCeBMmMkgOOaPwjH7g==
+      integrity: sha512-ZGum47Yi6KOOFDE8m223td53ath2enHcYLgOCjGr5ngu8bdIARQk6mN/wRMv4yMRcHnCSnHbCEha4sobQx5yWg==
+  /tapable/1.1.3:
+    dev: true
+    engines:
+      node: '>=6'
+    resolution:
+      integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==
+  /tapable/2.2.0:
+    dev: true
+    engines:
+      node: '>=6'
+    resolution:
+      integrity: sha512-FBk4IesMV1rBxX2tfiK8RAmogtWn53puLOQlvO8XuwlgxcYbP4mVPS9Ph4aeamSyyVjOl24aYWAuc8U5kCVwMw==
   /terminal-link/2.1.1:
     dependencies:
-      ansi-escapes: 4.3.1
-      supports-hyperlinks: 2.1.0
+      ansi-escapes: 4.3.2
+      supports-hyperlinks: 2.2.0
     dev: true
     engines:
       node: '>=8'
     resolution:
       integrity: sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==
+  /terser-webpack-plugin/5.1.2_webpack@5.37.1:
+    dependencies:
+      jest-worker: 26.6.2
+      p-limit: 3.1.0
+      schema-utils: 3.0.0
+      serialize-javascript: 5.0.1
+      source-map: 0.6.1
+      terser: 5.7.0
+      webpack: 5.37.1_webpack-cli@4.7.0
+    dev: true
+    engines:
+      node: '>= 10.13.0'
+    peerDependencies:
+      webpack: ^5.1.0
+    resolution:
+      integrity: sha512-6QhDaAiVHIQr5Ab3XUWZyDmrIPCHMiqJVljMF91YKyqwKkL5QHnYMkrMBy96v9Z7ev1hGhSEw1HQZc2p/s5Z8Q==
+  /terser/5.7.0:
+    dependencies:
+      commander: 2.20.3
+      source-map: 0.7.3
+      source-map-support: 0.5.19
+    dev: true
+    engines:
+      node: '>=10'
+    hasBin: true
+    resolution:
+      integrity: sha512-HP5/9hp2UaZt5fYkuhNBR8YyRcT8juw8+uFbAme53iN9hblvKnLUTKkmwJG6ocWpIKf8UK4DoeWG4ty0J6S6/g==
   /test-exclude/6.0.0:
     dependencies:
-      '@istanbuljs/schema': 0.1.2
-      glob: 7.1.6
+      '@istanbuljs/schema': 0.1.3
+      glob: 7.1.7
       minimatch: 3.0.4
     dev: true
     engines:
@@ -7206,6 +8077,10 @@ packages:
     dev: true
     resolution:
       integrity: sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==
+  /thunky/1.1.0:
+    dev: true
+    resolution:
+      integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==
   /tmpl/1.0.4:
     dev: true
     resolution:
@@ -7252,6 +8127,12 @@ packages:
       node: '>=0.10.0'
     resolution:
       integrity: sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==
+  /toidentifier/1.0.0:
+    dev: true
+    engines:
+      node: '>=0.6'
+    resolution:
+      integrity: sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==
   /tough-cookie/2.5.0:
     dependencies:
       psl: 1.8.0
@@ -7261,16 +8142,16 @@ packages:
       node: '>=0.8'
     resolution:
       integrity: sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==
-  /tough-cookie/3.0.1:
+  /tough-cookie/4.0.0:
     dependencies:
-      ip-regex: 2.1.0
       psl: 1.8.0
       punycode: 2.1.1
+      universalify: 0.1.2
     dev: true
     engines:
       node: '>=6'
     resolution:
-      integrity: sha512-yQyJ0u4pZsv9D4clxO69OEjLWYw+jbgspjTue4lTQZLfV0c5l1VmK2y1JK8E9ahdpltPOaAThPcp5nKPUgSnsg==
+      integrity: sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==
   /tr46/2.0.2:
     dependencies:
       punycode: 2.1.1
@@ -7279,14 +8160,31 @@ packages:
       node: '>=8'
     resolution:
       integrity: sha512-3n1qG+/5kg+jrbTzwAykB5yRYtQCTqOGKq5U5PE3b0a1/mzo6snDhjGS0zJVJunO0NrT3Dg1MLy5TjWP/UJppg==
-  /ts-node/9.1.1_typescript@4.1.3:
+  /ts-loader/8.3.0_typescript@4.2.4+webpack@5.37.1:
+    dependencies:
+      chalk: 4.1.1
+      enhanced-resolve: 4.5.0
+      loader-utils: 2.0.0
+      micromatch: 4.0.4
+      semver: 7.3.5
+      typescript: 4.2.4
+      webpack: 5.37.1_webpack-cli@4.7.0
+    dev: true
+    engines:
+      node: '>=10.0.0'
+    peerDependencies:
+      typescript: '*'
+      webpack: '*'
+    resolution:
+      integrity: sha512-MgGly4I6cStsJy27ViE32UoqxPTN9Xly4anxxVyaIWR+9BGxboV4EyJBGfR3RePV7Ksjj3rHmPZJeIt+7o4Vag==
+  /ts-node/9.1.1_typescript@4.2.4:
     dependencies:
       arg: 4.1.3
       create-require: 1.1.1
       diff: 4.0.2
       make-error: 1.3.6
       source-map-support: 0.5.19
-      typescript: 4.1.3
+      typescript: 4.2.4
       yn: 3.1.1
     dev: true
     engines:
@@ -7300,17 +8198,17 @@ packages:
     dev: true
     resolution:
       integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
-  /tsutils/3.20.0_typescript@4.1.3:
+  /tsutils/3.21.0_typescript@4.2.4:
     dependencies:
       tslib: 1.14.1
-      typescript: 4.1.3
+      typescript: 4.2.4
     dev: true
     engines:
       node: '>= 6'
     peerDependencies:
       typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
     resolution:
-      integrity: sha512-RYbuQuvkhuqVeXweWT3tJLKOEJ/UUw9GjNEZGWdrLLlM+611o1gwLHBpxoFJKKl25fLprp2eVthtKs5JOrNeXg==
+      integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==
   /tunnel-agent/0.6.0:
     dependencies:
       safe-buffer: 5.2.1
@@ -7343,12 +8241,18 @@ packages:
       node: '>=4'
     resolution:
       integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==
-  /type-fest/0.11.0:
+  /type-fest/0.20.2:
     dev: true
     engines:
-      node: '>=8'
+      node: '>=10'
+    resolution:
+      integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==
+  /type-fest/0.21.3:
+    dev: true
+    engines:
+      node: '>=10'
     resolution:
-      integrity: sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==
+      integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==
   /type-fest/0.6.0:
     dev: true
     engines:
@@ -7361,19 +8265,41 @@ packages:
       node: '>=8'
     resolution:
       integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==
+  /type-is/1.6.18:
+    dependencies:
+      media-typer: 0.3.0
+      mime-types: 2.1.30
+    dev: true
+    engines:
+      node: '>= 0.6'
+    resolution:
+      integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==
   /typedarray-to-buffer/3.1.5:
     dependencies:
       is-typedarray: 1.0.0
     dev: true
     resolution:
       integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==
-  /typescript/4.1.3:
+  /typescript/4.2.4:
     dev: true
     engines:
       node: '>=4.2.0'
     hasBin: true
     resolution:
-      integrity: sha512-B3ZIOf1IKeH2ixgHhj6la6xdwR9QrLC5d1VKeCSY4tvkqhF2eqd9O7txNlS0PO3GrBAFIdr3L1ndNwteUbZLYg==
+      integrity: sha512-V+evlYHZnQkaz8TRBuxTA92yZBPotr5H+WhQ7bD3hZUndx5tGOa1fuCgeSjxAzM1RiN5IzvadIXTVefuuwZCRg==
+  /un-eval/1.2.0:
+    dev: true
+    resolution:
+      integrity: sha512-Wlj/pum6dQtGTPD/lclDtoVPkSfpjPfy1dwnnKw/sZP5DpBH9fLhBgQfsqNhe5/gS1D+vkZUuB771NRMUPA5CA==
+  /unbox-primitive/1.0.1:
+    dependencies:
+      function-bind: 1.1.1
+      has-bigints: 1.0.1
+      has-symbols: 1.0.2
+      which-boxed-primitive: 1.0.2
+    dev: true
+    resolution:
+      integrity: sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==
   /unicode-canonical-property-names-ecmascript/1.0.4:
     dev: true
     engines:
@@ -7412,6 +8338,18 @@ packages:
       node: '>=0.10.0'
     resolution:
       integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==
+  /universalify/0.1.2:
+    dev: true
+    engines:
+      node: '>= 4.0.0'
+    resolution:
+      integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==
+  /unpipe/1.0.0:
+    dev: true
+    engines:
+      node: '>= 0.8'
+    resolution:
+      integrity: sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=
   /unset-value/1.0.0:
     dependencies:
       has-value: 0.3.1
@@ -7421,6 +8359,12 @@ packages:
       node: '>=0.10.0'
     resolution:
       integrity: sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=
+  /upath/1.2.0:
+    dev: true
+    engines:
+      node: '>=4'
+    resolution:
+      integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==
   /uri-js/4.4.1:
     dependencies:
       punycode: 2.1.1
@@ -7432,12 +8376,36 @@ packages:
     dev: true
     resolution:
       integrity: sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=
+  /url-parse/1.5.1:
+    dependencies:
+      querystringify: 2.2.0
+      requires-port: 1.0.0
+    dev: true
+    resolution:
+      integrity: sha512-HOfCOUJt7iSYzEx/UqgtwKRMC6EU91NFhsCHMv9oM03VJcVo2Qrp8T8kI9D7amFf1cu+/3CEhgb3rF9zL7k85Q==
+  /url/0.11.0:
+    dependencies:
+      punycode: 1.3.2
+      querystring: 0.2.0
+    dev: true
+    resolution:
+      integrity: sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=
   /use/3.1.1:
     dev: true
     engines:
       node: '>=0.10.0'
     resolution:
       integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==
+  /util-deprecate/1.0.2:
+    dev: true
+    resolution:
+      integrity: sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=
+  /utils-merge/1.0.1:
+    dev: true
+    engines:
+      node: '>= 0.4.0'
+    resolution:
+      integrity: sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=
   /uuid/3.4.0:
     dev: true
     hasBin: true
@@ -7449,11 +8417,11 @@ packages:
     optional: true
     resolution:
       integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==
-  /v8-compile-cache/2.2.0:
+  /v8-compile-cache/2.3.0:
     dev: true
     resolution:
-      integrity: sha512-gTpR5XQNKFwOd4clxfnhaqvfqMpqEwr4tOtCyz4MtYZX2JYhfr1JvBFKdS+7K/9rfpZR3VLX+YWBbKoxCgS43Q==
-  /v8-to-istanbul/7.1.0:
+      integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==
+  /v8-to-istanbul/7.1.2:
     dependencies:
       '@types/istanbul-lib-coverage': 2.0.3
       convert-source-map: 1.7.0
@@ -7462,7 +8430,7 @@ packages:
     engines:
       node: '>=10.10.0'
     resolution:
-      integrity: sha512-uXUVqNUCLa0AH1vuVxzi+MI4RfxEOKt9pBgKwHbgH7st8Kv2P1m+jvWNnektzBh5QShF3ODgKmUFCf38LnVz1g==
+      integrity: sha512-TxNb7YEUwkLXCQYeudi6lgQ/SZrzNO4kMdlqVxaZPUIUjCv6iSSypUQX70kNBSERpQ8fk48+d61FXk+tgqcWow==
   /validate-npm-package-license/3.0.4:
     dependencies:
       spdx-correct: 3.1.1
@@ -7470,6 +8438,12 @@ packages:
     dev: true
     resolution:
       integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==
+  /vary/1.1.2:
+    dev: true
+    engines:
+      node: '>= 0.8'
+    resolution:
+      integrity: sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=
   /verror/1.10.0:
     dependencies:
       assert-plus: 1.0.0
@@ -7480,12 +8454,12 @@ packages:
       '0': node >=0.6.0
     resolution:
       integrity: sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=
-  /void-elements/2.0.1:
+  /void-elements/3.1.0:
     dev: false
     engines:
       node: '>=0.10.0'
     resolution:
-      integrity: sha1-wGavtYK7HLQSjWDqkjkulNXp2+w=
+      integrity: sha1-YU9/v42AHwu18GYfWy9XhXUOTwk=
   /w3c-hr-time/1.0.2:
     dependencies:
       browser-process-hrtime: 1.0.0
@@ -7506,6 +8480,21 @@ packages:
     dev: true
     resolution:
       integrity: sha1-L3+bj9ENZ3JisYqITijRlhjgKPs=
+  /watchpack/2.1.1:
+    dependencies:
+      glob-to-regexp: 0.4.1
+      graceful-fs: 4.2.6
+    dev: true
+    engines:
+      node: '>=10.13.0'
+    resolution:
+      integrity: sha512-Oo7LXCmc1eE1AjyuSBmtC3+Wy4HcV8PxWh2kP6fOl8yTlNS7r0K9l1ao2lrrUza7V39Y3D/BbJgY8VeSlc5JKw==
+  /wbuf/1.7.3:
+    dependencies:
+      minimalistic-assert: 1.0.1
+    dev: true
+    resolution:
+      integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==
   /webidl-conversions/5.0.0:
     dev: true
     engines:
@@ -7518,30 +8507,225 @@ packages:
       node: '>=10.4'
     resolution:
       integrity: sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==
+  /webpack-cli/4.7.0_73b101d6e7258082846183368a5d0f22:
+    dependencies:
+      '@discoveryjs/json-ext': 0.5.3
+      '@webpack-cli/configtest': 1.0.3_webpack-cli@4.7.0+webpack@5.37.1
+      '@webpack-cli/info': 1.2.4_webpack-cli@4.7.0
+      '@webpack-cli/serve': 1.4.0_7cbb6369db867e7782bcc6ed9d7442a1
+      colorette: 1.2.2
+      commander: 7.2.0
+      execa: 5.0.0
+      fastest-levenshtein: 1.0.12
+      import-local: 3.0.2
+      interpret: 2.2.0
+      rechoir: 0.7.0
+      v8-compile-cache: 2.3.0
+      webpack: 5.37.1_webpack-cli@4.7.0
+      webpack-dev-server: 3.11.2_webpack-cli@4.7.0+webpack@5.37.1
+      webpack-merge: 5.7.3
+    dev: true
+    engines:
+      node: '>=10.13.0'
+    hasBin: true
+    peerDependencies:
+      '@webpack-cli/generators': '*'
+      '@webpack-cli/migrate': '*'
+      webpack: 4.x.x || 5.x.x
+      webpack-bundle-analyzer: '*'
+      webpack-dev-server: '*'
+    peerDependenciesMeta:
+      '@webpack-cli/generators':
+        optional: true
+      '@webpack-cli/migrate':
+        optional: true
+      webpack-bundle-analyzer:
+        optional: true
+      webpack-dev-server:
+        optional: true
+    resolution:
+      integrity: sha512-7bKr9182/sGfjFm+xdZSwgQuFjgEcy0iCTIBxRUeteJ2Kr8/Wz0qNJX+jw60LU36jApt4nmMkep6+W5AKhok6g==
+  /webpack-dev-middleware/3.7.3_webpack@5.37.1:
+    dependencies:
+      memory-fs: 0.4.1
+      mime: 2.5.2
+      mkdirp: 0.5.5
+      range-parser: 1.2.1
+      webpack: 5.37.1_webpack-cli@4.7.0
+      webpack-log: 2.0.0
+    dev: true
+    engines:
+      node: '>= 6'
+    peerDependencies:
+      webpack: ^4.0.0 || ^5.0.0
+    resolution:
+      integrity: sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==
+  /webpack-dev-server/3.11.2_webpack-cli@4.7.0+webpack@5.37.1:
+    dependencies:
+      ansi-html: 0.0.7
+      bonjour: 3.5.0
+      chokidar: 2.1.8
+      compression: 1.7.4
+      connect-history-api-fallback: 1.6.0
+      debug: 4.3.1_supports-color@6.1.0
+      del: 4.1.1
+      express: 4.17.1
+      html-entities: 1.4.0
+      http-proxy-middleware: 0.19.1_debug@4.3.1
+      import-local: 2.0.0
+      internal-ip: 4.3.0
+      ip: 1.1.5
+      is-absolute-url: 3.0.3
+      killable: 1.0.1
+      loglevel: 1.7.1
+      opn: 5.5.0
+      p-retry: 3.0.1
+      portfinder: 1.0.28
+      schema-utils: 1.0.0
+      selfsigned: 1.10.11
+      semver: 6.3.0
+      serve-index: 1.9.1
+      sockjs: 0.3.21
+      sockjs-client: 1.5.1
+      spdy: 4.0.2_supports-color@6.1.0
+      strip-ansi: 3.0.1
+      supports-color: 6.1.0
+      url: 0.11.0
+      webpack: 5.37.1_webpack-cli@4.7.0
+      webpack-cli: 4.7.0_73b101d6e7258082846183368a5d0f22
+      webpack-dev-middleware: 3.7.3_webpack@5.37.1
+      webpack-log: 2.0.0
+      ws: 6.2.1
+      yargs: 13.3.2
+    dev: true
+    engines:
+      node: '>= 6.11.5'
+    hasBin: true
+    peerDependencies:
+      webpack: ^4.0.0 || ^5.0.0
+      webpack-cli: '*'
+    peerDependenciesMeta:
+      webpack-cli:
+        optional: true
+    resolution:
+      integrity: sha512-A80BkuHRQfCiNtGBS1EMf2ChTUs0x+B3wGDFmOeT4rmJOHhHTCH2naNxIHhmkr0/UillP4U3yeIyv1pNp+QDLQ==
+  /webpack-log/2.0.0:
+    dependencies:
+      ansi-colors: 3.2.4
+      uuid: 3.4.0
+    dev: true
+    engines:
+      node: '>= 6'
+    resolution:
+      integrity: sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==
+  /webpack-merge/5.7.3:
+    dependencies:
+      clone-deep: 4.0.1
+      wildcard: 2.0.0
+    dev: true
+    engines:
+      node: '>=10.0.0'
+    resolution:
+      integrity: sha512-6/JUQv0ELQ1igjGDzHkXbVDRxkfA57Zw7PfiupdLFJYrgFqY5ZP8xxbpp2lU3EPwYx89ht5Z/aDkD40hFCm5AA==
+  /webpack-sources/1.4.3:
+    dependencies:
+      source-list-map: 2.0.1
+      source-map: 0.6.1
+    dev: true
+    resolution:
+      integrity: sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==
+  /webpack-sources/2.2.0:
+    dependencies:
+      source-list-map: 2.0.1
+      source-map: 0.6.1
+    dev: true
+    engines:
+      node: '>=10.13.0'
+    resolution:
+      integrity: sha512-bQsA24JLwcnWGArOKUxYKhX3Mz/nK1Xf6hxullKERyktjNMC4x8koOeaDNTA2fEJ09BdWLbM/iTW0ithREUP0w==
+  /webpack/5.37.1_webpack-cli@4.7.0:
+    dependencies:
+      '@types/eslint-scope': 3.7.0
+      '@types/estree': 0.0.47
+      '@webassemblyjs/ast': 1.11.0
+      '@webassemblyjs/wasm-edit': 1.11.0
+      '@webassemblyjs/wasm-parser': 1.11.0
+      acorn: 8.2.4
+      browserslist: 4.16.6
+      chrome-trace-event: 1.0.3
+      enhanced-resolve: 5.8.2
+      es-module-lexer: 0.4.1
+      eslint-scope: 5.1.1
+      events: 3.3.0
+      glob-to-regexp: 0.4.1
+      graceful-fs: 4.2.6
+      json-parse-better-errors: 1.0.2
+      loader-runner: 4.2.0
+      mime-types: 2.1.30
+      neo-async: 2.6.2
+      schema-utils: 3.0.0
+      tapable: 2.2.0
+      terser-webpack-plugin: 5.1.2_webpack@5.37.1
+      watchpack: 2.1.1
+      webpack-cli: 4.7.0_73b101d6e7258082846183368a5d0f22
+      webpack-sources: 2.2.0
+    dev: true
+    engines:
+      node: '>=10.13.0'
+    hasBin: true
+    peerDependencies:
+      webpack-cli: '*'
+    peerDependenciesMeta:
+      webpack-cli:
+        optional: true
+    resolution:
+      integrity: sha512-btZjGy/hSjCAAVHw+cKG+L0M+rstlyxbO2C+BOTaQ5/XAnxkDrP5sVbqWhXgo4pL3X2dcOib6rqCP20Zr9PLow==
+  /websocket-driver/0.7.4:
+    dependencies:
+      http-parser-js: 0.5.3
+      safe-buffer: 5.2.1
+      websocket-extensions: 0.1.4
+    dev: true
+    engines:
+      node: '>=0.8.0'
+    resolution:
+      integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==
+  /websocket-extensions/0.1.4:
+    dev: true
+    engines:
+      node: '>=0.8.0'
+    resolution:
+      integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==
   /whatwg-encoding/1.0.5:
     dependencies:
       iconv-lite: 0.4.24
     dev: true
     resolution:
       integrity: sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==
-  /whatwg-fetch/3.5.0:
-    dev: true
-    resolution:
-      integrity: sha512-jXkLtsR42xhXg7akoDKvKWE40eJeI+2KZqcp2h3NsOrRnDvtWX36KcKl30dy+hxECivdk2BVUHVNrPtoMBUx6A==
   /whatwg-mimetype/2.3.0:
     dev: true
     resolution:
       integrity: sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==
-  /whatwg-url/8.4.0:
+  /whatwg-url/8.5.0:
     dependencies:
-      lodash.sortby: 4.7.0
+      lodash: 4.17.21
       tr46: 2.0.2
       webidl-conversions: 6.1.0
     dev: true
     engines:
       node: '>=10'
     resolution:
-      integrity: sha512-vwTUFf6V4zhcPkWp/4CQPr1TW9Ml6SF4lVyaIMBdJw5i6qUUJ1QWM4Z6YYVkfka0OUIzVo/0aNtGVGk256IKWw==
+      integrity: sha512-fy+R77xWv0AiqfLl4nuGUlQ3/6b5uNfQ4WAbGQVMYshCTCCPK9psC1nWh3XHuxGVCtlcDDQPQW1csmmIQo+fwg==
+  /which-boxed-primitive/1.0.2:
+    dependencies:
+      is-bigint: 1.0.2
+      is-boolean-object: 1.1.1
+      is-number-object: 1.0.5
+      is-string: 1.0.6
+      is-symbol: 1.0.4
+    dev: true
+    resolution:
+      integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==
   /which-module/2.0.0:
     dev: true
     resolution:
@@ -7562,20 +8746,30 @@ packages:
     hasBin: true
     resolution:
       integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==
+  /wildcard/2.0.0:
+    dev: true
+    resolution:
+      integrity: sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==
   /word-wrap/1.2.3:
     dev: true
     engines:
       node: '>=0.10.0'
     resolution:
       integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==
-  /workerpool/6.1.0:
+  /wrap-ansi/5.1.0:
+    dependencies:
+      ansi-styles: 3.2.1
+      string-width: 3.1.0
+      strip-ansi: 5.2.0
     dev: true
+    engines:
+      node: '>=6'
     resolution:
-      integrity: sha512-toV7q9rWNYha963Pl/qyeZ6wG+3nnsyvolaNUS8+R5Wtw6qJPTxIlOP1ZSvcGhEJw+l3HMMmtiNo9Gl61G4GVg==
+      integrity: sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==
   /wrap-ansi/6.2.0:
     dependencies:
       ansi-styles: 4.3.0
-      string-width: 4.2.0
+      string-width: 4.2.2
       strip-ansi: 6.0.0
     dev: true
     engines:
@@ -7595,7 +8789,13 @@ packages:
     dev: true
     resolution:
       integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==
-  /ws/7.4.3:
+  /ws/6.2.1:
+    dependencies:
+      async-limiter: 1.0.1
+    dev: true
+    resolution:
+      integrity: sha512-GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA==
+  /ws/7.4.5:
     dev: true
     engines:
       node: '>=8.3.0'
@@ -7608,7 +8808,7 @@ packages:
       utf-8-validate:
         optional: true
     resolution:
-      integrity: sha512-hr6vCR76GsossIRsr8OLR9acVVm1jyfEWvhbNjtgPOrfvAlKzvyeg/P6r8RuDjRyrcQoPQT7K0DGEPc7Ae6jzA==
+      integrity: sha512-xzyu3hFvomRfXKH8vOFMU3OguG6oOvhXMo3xsGy3xWExqaM2dxBbVxuD99O7m3ZUFMvvscsZDqxfgMaRr/Nr1g==
   /xml-name-validator/3.0.0:
     dev: true
     resolution:
@@ -7617,20 +8817,27 @@ packages:
     dev: true
     resolution:
       integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==
-  /y18n/4.0.1:
+  /y18n/4.0.3:
     dev: true
     resolution:
-      integrity: sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==
+      integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==
   /yallist/4.0.0:
     dev: true
     resolution:
       integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==
-  /yaml/1.10.0:
+  /yaml/1.10.2:
     dev: true
     engines:
       node: '>= 6'
     resolution:
-      integrity: sha512-yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg==
+      integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==
+  /yargs-parser/13.1.2:
+    dependencies:
+      camelcase: 5.3.1
+      decamelize: 1.2.0
+    dev: true
+    resolution:
+      integrity: sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==
   /yargs-parser/18.1.3:
     dependencies:
       camelcase: 5.3.1
@@ -7640,6 +8847,21 @@ packages:
       node: '>=6'
     resolution:
       integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==
+  /yargs/13.3.2:
+    dependencies:
+      cliui: 5.0.0
+      find-up: 3.0.0
+      get-caller-file: 2.0.5
+      require-directory: 2.1.1
+      require-main-filename: 2.0.0
+      set-blocking: 2.0.0
+      string-width: 3.1.0
+      which-module: 2.0.0
+      y18n: 4.0.3
+      yargs-parser: 13.1.2
+    dev: true
+    resolution:
+      integrity: sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==
   /yargs/15.4.1:
     dependencies:
       cliui: 6.0.0
@@ -7649,9 +8871,9 @@ packages:
       require-directory: 2.1.1
       require-main-filename: 2.0.0
       set-blocking: 2.0.0
-      string-width: 4.2.0
+      string-width: 4.2.2
       which-module: 2.0.0
-      y18n: 4.0.1
+      y18n: 4.0.3
       yargs-parser: 18.1.3
     dev: true
     engines:
@@ -7664,14 +8886,15 @@ packages:
       node: '>=6'
     resolution:
       integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==
+  /yocto-queue/0.1.0:
+    dev: true
+    engines:
+      node: '>=10'
+    resolution:
+      integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==
 specifiers:
   '@babel/preset-react': ^7.12.13
-  '@snowpack/app-scripts-react': ^2.0.0
-  '@snowpack/plugin-build-script': ^2.1.0
-  '@snowpack/plugin-dotenv': ^2.0.5
-  '@snowpack/plugin-react-refresh': ^2.4.0
-  '@snowpack/plugin-sass': ^1.3.0
-  '@snowpack/plugin-typescript': ^1.2.0
+  '@babel/preset-typescript': ^7.13.0
   '@testing-library/jest-dom': ^5.11.9
   '@testing-library/react': ^11.0.0
   '@testing-library/react-hooks': ^5.0.3
@@ -7680,10 +8903,13 @@ specifiers:
   '@types/react': ^17.0.0
   '@types/react-dom': ^17.0.0
   '@types/react-transition-group': ^4.4.0
-  '@types/snowpack-env': ^2.3.2
   '@typescript-eslint/eslint-plugin': ^4.15.0
   '@typescript-eslint/parser': ^4.15.0
+  babel-jest: ^26.6.3
   babel-preset-react-app: ^10.0.0
+  copy-webpack-plugin: ^8.1.1
+  core-js: ^3.11.3
+  css-loader: ^5.2.4
   eslint: ^7.20.0
   eslint-plugin-jest-dom: ^3.6.5
   eslint-plugin-react: ^7.22.0
@@ -7692,14 +8918,21 @@ specifiers:
   identity-obj-proxy: ^3.0.0
   jest-cli: ^26.6.3
   js-yaml: ^4.0.0
+  js-yaml-loader: ^1.2.2
   markdown-to-jsx: ^7.1.1
+  mini-css-extract-plugin: ^1.6.0
   prettier: ^2.0.5
   react: ^17.0.0
   react-dom: ^17.0.0
   react-i18next: ^11.8.5
+  react-test-renderer: ^17.0.2
   react-transition-group: ^4.4.1
   rxjs: ^6.6.3
-  sass: ^1.32.6
-  snowpack: ^3.0.11
+  sass: ^1.32.13
+  sass-loader: ^11.1.1
+  ts-loader: ^8.3.0
   ts-node: ^9.1.1
-  typescript: ^4.0.0
+  typescript: ^4.2.4
+  webpack: ^5.37.1
+  webpack-cli: ^4.7.0
+  webpack-dev-server: ^3.11.2
diff --git a/public/style-copied-from-website.css b/public/style-copied-from-website.css
index 5f2a265e2dd13d391766a7a205ae64e30d289be9..d8eb4687035286684dc555f1f90f32d86893be93 100644
--- a/public/style-copied-from-website.css
+++ b/public/style-copied-from-website.css
@@ -1,2440 +1,3 @@
-@charset "UTF-8";
-[class*=" icon-"].small:before, [class^="icon-"].small:before {
-  width: 1.5rem;
-  height: 1.5rem; }
-
-[class*=" icon-"].large:before, [class^="icon-"].large:before {
-  width: 2rem;
-  height: 2rem; }
-
-[class*=" icon-"].huge:before, [class^="icon-"].huge:before {
-  width: 6rem;
-  height: 6rem; }
-
-[class*=" icon-"]:before, [class^="icon-"]:before {
-  vertical-align: bottom;
-  display: inline-block;
-  background-repeat: no-repeat;
-  background-size: cover;
-  content: ' ';
-  width: 1.5rem;
-  height: 1.5rem;
-  margin-right: 1rem; }
-
-button[class*=" icon-"]:before, button[class^="icon-"]:before {
-  margin-right: .5rem; }
-
-ul li[class^='icon-'], ul li[class*=' icon-'] {
-  list-style: none;
-  list-style-position: outside; }
-
-/* !!!! AUTOGENERATED FILE, DON'T EDIT !!!! */
-.icon-logo:before {
-  background-image: url("/static/images/sprites.svg#icon-logo"); }
-
-.icon-cogs-configure:before {
-  background-image: url("/static/images/sprites.svg#icon-cogs-configure"); }
-
-.icon-cogs-configure-medium:before {
-  background-image: url("/static/images/sprites.svg#icon-cogs-configure-medium"); }
-
-.icon-cogs-configure-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-cogs-configure-dark"); }
-
-.icon-cpu-die:before {
-  background-image: url("/static/images/sprites.svg#icon-cpu-die"); }
-
-.icon-cpu-die-medium:before {
-  background-image: url("/static/images/sprites.svg#icon-cpu-die-medium"); }
-
-.icon-cpu-die-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-cpu-die-dark"); }
-
-.icon-cpu-socket:before {
-  background-image: url("/static/images/sprites.svg#icon-cpu-socket"); }
-
-.icon-cpu-socket-medium:before {
-  background-image: url("/static/images/sprites.svg#icon-cpu-socket-medium"); }
-
-.icon-cpu-socket-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-cpu-socket-dark"); }
-
-.icon-data-privacy:before {
-  background-image: url("/static/images/sprites.svg#icon-data-privacy"); }
-
-.icon-data-privacy-medium:before {
-  background-image: url("/static/images/sprites.svg#icon-data-privacy-medium"); }
-
-.icon-data-privacy-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-data-privacy-dark"); }
-
-.icon-dns:before {
-  background-image: url("/static/images/sprites.svg#icon-dns"); }
-
-.icon-dns-medium:before {
-  background-image: url("/static/images/sprites.svg#icon-dns-medium"); }
-
-.icon-dns-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-dns-dark"); }
-
-.icon-email-bomb:before {
-  background-image: url("/static/images/sprites.svg#icon-email-bomb"); }
-
-.icon-email-bomb-medium:before {
-  background-image: url("/static/images/sprites.svg#icon-email-bomb-medium"); }
-
-.icon-email-bomb-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-email-bomb-dark"); }
-
-.icon-email-envelope:before {
-  background-image: url("/static/images/sprites.svg#icon-email-envelope"); }
-
-.icon-email-envelope-medium:before {
-  background-image: url("/static/images/sprites.svg#icon-email-envelope-medium"); }
-
-.icon-email-envelope-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-email-envelope-dark"); }
-
-.icon-fast-cpu-duo:before {
-  background-image: url("/static/images/sprites.svg#icon-fast-cpu-duo"); }
-
-.icon-fast-cpu-duo-medium:before {
-  background-image: url("/static/images/sprites.svg#icon-fast-cpu-duo-medium"); }
-
-.icon-fast-cpu-duo-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-fast-cpu-duo-dark"); }
-
-.icon-fast-ssd-duo:before {
-  background-image: url("/static/images/sprites.svg#icon-fast-ssd-duo"); }
-
-.icon-fast-ssd-duo-medium:before {
-  background-image: url("/static/images/sprites.svg#icon-fast-ssd-duo-medium"); }
-
-.icon-fast-ssd-duo-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-fast-ssd-duo-dark"); }
-
-.icon-fast-switches:before {
-  background-image: url("/static/images/sprites.svg#icon-fast-switches"); }
-
-.icon-fast-switches-medium:before {
-  background-image: url("/static/images/sprites.svg#icon-fast-switches-medium"); }
-
-.icon-fast-switches-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-fast-switches-dark"); }
-
-.icon-footprint:before {
-  background-image: url("/static/images/sprites.svg#icon-footprint"); }
-
-.icon-footprint-medium:before {
-  background-image: url("/static/images/sprites.svg#icon-footprint-medium"); }
-
-.icon-footprint-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-footprint-dark"); }
-
-.icon-free-speech:before {
-  background-image: url("/static/images/sprites.svg#icon-free-speech"); }
-
-.icon-free-speech-medium:before {
-  background-image: url("/static/images/sprites.svg#icon-free-speech-medium"); }
-
-.icon-free-speech-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-free-speech-dark"); }
-
-.icon-infrastructure:before {
-  background-image: url("/static/images/sprites.svg#icon-infrastructure"); }
-
-.icon-infrastructure-medium:before {
-  background-image: url("/static/images/sprites.svg#icon-infrastructure-medium"); }
-
-.icon-infrastructure-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-infrastructure-dark"); }
-
-.icon-newspaper:before {
-  background-image: url("/static/images/sprites.svg#icon-newspaper"); }
-
-.icon-newspaper-medium:before {
-  background-image: url("/static/images/sprites.svg#icon-newspaper-medium"); }
-
-.icon-newspaper-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-newspaper-dark"); }
-
-.icon-notice-takedown:before {
-  background-image: url("/static/images/sprites.svg#icon-notice-takedown"); }
-
-.icon-notice-takedown-medium:before {
-  background-image: url("/static/images/sprites.svg#icon-notice-takedown-medium"); }
-
-.icon-notice-takedown-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-notice-takedown-dark"); }
-
-.icon-phishing-mail:before {
-  background-image: url("/static/images/sprites.svg#icon-phishing-mail"); }
-
-.icon-phishing-mail-medium:before {
-  background-image: url("/static/images/sprites.svg#icon-phishing-mail-medium"); }
-
-.icon-phishing-mail-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-phishing-mail-dark"); }
-
-.icon-privacy-policy:before {
-  background-image: url("/static/images/sprites.svg#icon-privacy-policy"); }
-
-.icon-privacy-policy-medium:before {
-  background-image: url("/static/images/sprites.svg#icon-privacy-policy-medium"); }
-
-.icon-privacy-policy-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-privacy-policy-dark"); }
-
-.icon-redundancy:before {
-  background-image: url("/static/images/sprites.svg#icon-redundancy"); }
-
-.icon-redundancy-medium:before {
-  background-image: url("/static/images/sprites.svg#icon-redundancy-medium"); }
-
-.icon-redundancy-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-redundancy-dark"); }
-
-.icon-sustainable-business:before {
-  background-image: url("/static/images/sprites.svg#icon-sustainable-business"); }
-
-.icon-sustainable-business-medium:before {
-  background-image: url("/static/images/sprites.svg#icon-sustainable-business-medium"); }
-
-.icon-sustainable-business-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-sustainable-business-dark"); }
-
-.icon-sustainable-office:before {
-  background-image: url("/static/images/sprites.svg#icon-sustainable-office"); }
-
-.icon-sustainable-office-medium:before {
-  background-image: url("/static/images/sprites.svg#icon-sustainable-office-medium"); }
-
-.icon-sustainable-office-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-sustainable-office-dark"); }
-
-.icon-tos:before {
-  background-image: url("/static/images/sprites.svg#icon-tos"); }
-
-.icon-tos-medium:before {
-  background-image: url("/static/images/sprites.svg#icon-tos-medium"); }
-
-.icon-tos-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-tos-dark"); }
-
-.icon-turbine-duo:before {
-  background-image: url("/static/images/sprites.svg#icon-turbine-duo"); }
-
-.icon-turbine-duo-medium:before {
-  background-image: url("/static/images/sprites.svg#icon-turbine-duo-medium"); }
-
-.icon-turbine-duo-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-turbine-duo-dark"); }
-
-.icon-vps-duo:before {
-  background-image: url("/static/images/sprites.svg#icon-vps-duo"); }
-
-.icon-vps-duo-medium:before {
-  background-image: url("/static/images/sprites.svg#icon-vps-duo-medium"); }
-
-.icon-vps-duo-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-vps-duo-dark"); }
-
-.icon-website:before {
-  background-image: url("/static/images/sprites.svg#icon-website"); }
-
-.icon-website-medium:before {
-  background-image: url("/static/images/sprites.svg#icon-website-medium"); }
-
-.icon-website-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-website-dark"); }
-
-.icon-www-protect:before {
-  background-image: url("/static/images/sprites.svg#icon-www-protect"); }
-
-.icon-www-protect-medium:before {
-  background-image: url("/static/images/sprites.svg#icon-www-protect-medium"); }
-
-.icon-www-protect-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-www-protect-dark"); }
-
-.icon-www:before {
-  background-image: url("/static/images/sprites.svg#icon-www"); }
-
-.icon-www-medium:before {
-  background-image: url("/static/images/sprites.svg#icon-www-medium"); }
-
-.icon-www-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-www-dark"); }
-
-.icon-1-star:before {
-  background-image: url("/static/images/sprites.svg#icon-1-star"); }
-
-.icon-1-star-white:before {
-  background-image: url("/static/images/sprites.svg#icon-1-star-white"); }
-
-.icon-1-star-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-1-star-dark"); }
-
-.icon-2-stars:before {
-  background-image: url("/static/images/sprites.svg#icon-2-stars"); }
-
-.icon-2-stars-white:before {
-  background-image: url("/static/images/sprites.svg#icon-2-stars-white"); }
-
-.icon-2-stars-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-2-stars-dark"); }
-
-.icon-3-stars:before {
-  background-image: url("/static/images/sprites.svg#icon-3-stars"); }
-
-.icon-3-stars-white:before {
-  background-image: url("/static/images/sprites.svg#icon-3-stars-white"); }
-
-.icon-3-stars-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-3-stars-dark"); }
-
-.icon-4-stars:before {
-  background-image: url("/static/images/sprites.svg#icon-4-stars"); }
-
-.icon-4-stars-white:before {
-  background-image: url("/static/images/sprites.svg#icon-4-stars-white"); }
-
-.icon-4-stars-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-4-stars-dark"); }
-
-.icon-5-stars:before {
-  background-image: url("/static/images/sprites.svg#icon-5-stars"); }
-
-.icon-5-stars-white:before {
-  background-image: url("/static/images/sprites.svg#icon-5-stars-white"); }
-
-.icon-5-stars-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-5-stars-dark"); }
-
-.icon-app-window:before {
-  background-image: url("/static/images/sprites.svg#icon-app-window"); }
-
-.icon-app-window-white:before {
-  background-image: url("/static/images/sprites.svg#icon-app-window-white"); }
-
-.icon-app-window-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-app-window-dark"); }
-
-.icon-basket-add:before {
-  background-image: url("/static/images/sprites.svg#icon-basket-add"); }
-
-.icon-basket-add-white:before {
-  background-image: url("/static/images/sprites.svg#icon-basket-add-white"); }
-
-.icon-basket-add-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-basket-add-dark"); }
-
-.icon-basket-light:before {
-  background-image: url("/static/images/sprites.svg#icon-basket-light"); }
-
-.icon-basket-light-white:before {
-  background-image: url("/static/images/sprites.svg#icon-basket-light-white"); }
-
-.icon-basket-light-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-basket-light-dark"); }
-
-.icon-basket:before {
-  background-image: url("/static/images/sprites.svg#icon-basket"); }
-
-.icon-basket-white:before {
-  background-image: url("/static/images/sprites.svg#icon-basket-white"); }
-
-.icon-basket-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-basket-dark"); }
-
-.icon-book-library-1:before {
-  background-image: url("/static/images/sprites.svg#icon-book-library-1"); }
-
-.icon-book-library-1-white:before {
-  background-image: url("/static/images/sprites.svg#icon-book-library-1-white"); }
-
-.icon-book-library-1-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-book-library-1-dark"); }
-
-.icon-check-circle-1:before {
-  background-image: url("/static/images/sprites.svg#icon-check-circle-1"); }
-
-.icon-check-circle-1-white:before {
-  background-image: url("/static/images/sprites.svg#icon-check-circle-1-white"); }
-
-.icon-check-circle-1-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-check-circle-1-dark"); }
-
-.icon-coffee-read:before {
-  background-image: url("/static/images/sprites.svg#icon-coffee-read"); }
-
-.icon-coffee-read-white:before {
-  background-image: url("/static/images/sprites.svg#icon-coffee-read-white"); }
-
-.icon-coffee-read-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-coffee-read-dark"); }
-
-.icon-farmer-s-market-kiosk-1:before {
-  background-image: url("/static/images/sprites.svg#icon-farmer-s-market-kiosk-1"); }
-
-.icon-farmer-s-market-kiosk-1-white:before {
-  background-image: url("/static/images/sprites.svg#icon-farmer-s-market-kiosk-1-white"); }
-
-.icon-farmer-s-market-kiosk-1-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-farmer-s-market-kiosk-1-dark"); }
-
-.icon-farming-barn-silo:before {
-  background-image: url("/static/images/sprites.svg#icon-farming-barn-silo"); }
-
-.icon-farming-barn-silo-white:before {
-  background-image: url("/static/images/sprites.svg#icon-farming-barn-silo-white"); }
-
-.icon-farming-barn-silo-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-farming-barn-silo-dark"); }
-
-.icon-firewall:before {
-  background-image: url("/static/images/sprites.svg#icon-firewall"); }
-
-.icon-firewall-white:before {
-  background-image: url("/static/images/sprites.svg#icon-firewall-white"); }
-
-.icon-firewall-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-firewall-dark"); }
-
-.icon-flash-1:before {
-  background-image: url("/static/images/sprites.svg#icon-flash-1"); }
-
-.icon-flash-1-white:before {
-  background-image: url("/static/images/sprites.svg#icon-flash-1-white"); }
-
-.icon-flash-1-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-flash-1-dark"); }
-
-.icon-move-up:before {
-  background-image: url("/static/images/sprites.svg#icon-move-up"); }
-
-.icon-move-up-white:before {
-  background-image: url("/static/images/sprites.svg#icon-move-up-white"); }
-
-.icon-move-up-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-move-up-dark"); }
-
-.icon-office-desk-1:before {
-  background-image: url("/static/images/sprites.svg#icon-office-desk-1"); }
-
-.icon-office-desk-1-white:before {
-  background-image: url("/static/images/sprites.svg#icon-office-desk-1-white"); }
-
-.icon-office-desk-1-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-office-desk-1-dark"); }
-
-.icon-phonebook-1:before {
-  background-image: url("/static/images/sprites.svg#icon-phonebook-1"); }
-
-.icon-phonebook-1-white:before {
-  background-image: url("/static/images/sprites.svg#icon-phonebook-1-white"); }
-
-.icon-phonebook-1-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-phonebook-1-dark"); }
-
-.icon-php:before {
-  background-image: url("/static/images/sprites.svg#icon-php"); }
-
-.icon-php-white:before {
-  background-image: url("/static/images/sprites.svg#icon-php-white"); }
-
-.icon-php-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-php-dark"); }
-
-.icon-plant-pot-1:before {
-  background-image: url("/static/images/sprites.svg#icon-plant-pot-1"); }
-
-.icon-plant-pot-1-white:before {
-  background-image: url("/static/images/sprites.svg#icon-plant-pot-1-white"); }
-
-.icon-plant-pot-1-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-plant-pot-1-dark"); }
-
-.icon-pollution-co2:before {
-  background-image: url("/static/images/sprites.svg#icon-pollution-co2"); }
-
-.icon-pollution-co2-white:before {
-  background-image: url("/static/images/sprites.svg#icon-pollution-co2-white"); }
-
-.icon-pollution-co2-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-pollution-co2-dark"); }
-
-.icon-pure-energie-logo:before {
-  background-image: url("/static/images/sprites.svg#icon-pure-energie-logo"); }
-
-.icon-pure-energie-logo-white:before {
-  background-image: url("/static/images/sprites.svg#icon-pure-energie-logo-white"); }
-
-.icon-pure-energie-logo-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-pure-energie-logo-dark"); }
-
-.icon-question-circle:before {
-  background-image: url("/static/images/sprites.svg#icon-question-circle"); }
-
-.icon-question-circle-white:before {
-  background-image: url("/static/images/sprites.svg#icon-question-circle-white"); }
-
-.icon-question-circle-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-question-circle-dark"); }
-
-.icon-rating-star-1-full:before {
-  background-image: url("/static/images/sprites.svg#icon-rating-star-1-full"); }
-
-.icon-rating-star-1-full-white:before {
-  background-image: url("/static/images/sprites.svg#icon-rating-star-1-full-white"); }
-
-.icon-rating-star-1-full-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-rating-star-1-full-dark"); }
-
-.icon-recycling-refresh:before {
-  background-image: url("/static/images/sprites.svg#icon-recycling-refresh"); }
-
-.icon-recycling-refresh-white:before {
-  background-image: url("/static/images/sprites.svg#icon-recycling-refresh-white"); }
-
-.icon-recycling-refresh-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-recycling-refresh-dark"); }
-
-.icon-recycling-sign:before {
-  background-image: url("/static/images/sprites.svg#icon-recycling-sign"); }
-
-.icon-recycling-sign-white:before {
-  background-image: url("/static/images/sprites.svg#icon-recycling-sign-white"); }
-
-.icon-recycling-sign-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-recycling-sign-dark"); }
-
-.icon-renewable-energy-solar-panel:before {
-  background-image: url("/static/images/sprites.svg#icon-renewable-energy-solar-panel"); }
-
-.icon-renewable-energy-solar-panel-white:before {
-  background-image: url("/static/images/sprites.svg#icon-renewable-energy-solar-panel-white"); }
-
-.icon-renewable-energy-solar-panel-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-renewable-energy-solar-panel-dark"); }
-
-.icon-road-sign-warning:before {
-  background-image: url("/static/images/sprites.svg#icon-road-sign-warning"); }
-
-.icon-road-sign-warning-white:before {
-  background-image: url("/static/images/sprites.svg#icon-road-sign-warning-white"); }
-
-.icon-road-sign-warning-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-road-sign-warning-dark"); }
-
-.icon-road-woods:before {
-  background-image: url("/static/images/sprites.svg#icon-road-woods"); }
-
-.icon-road-woods-white:before {
-  background-image: url("/static/images/sprites.svg#icon-road-woods-white"); }
-
-.icon-road-woods-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-road-woods-dark"); }
-
-.icon-seat-regular:before {
-  background-image: url("/static/images/sprites.svg#icon-seat-regular"); }
-
-.icon-seat-regular-white:before {
-  background-image: url("/static/images/sprites.svg#icon-seat-regular-white"); }
-
-.icon-seat-regular-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-seat-regular-dark"); }
-
-.icon-security-unlock:before {
-  background-image: url("/static/images/sprites.svg#icon-security-unlock"); }
-
-.icon-security-unlock-white:before {
-  background-image: url("/static/images/sprites.svg#icon-security-unlock-white"); }
-
-.icon-security-unlock-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-security-unlock-dark"); }
-
-.icon-trees:before {
-  background-image: url("/static/images/sprites.svg#icon-trees"); }
-
-.icon-trees-white:before {
-  background-image: url("/static/images/sprites.svg#icon-trees-white"); }
-
-.icon-trees-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-trees-dark"); }
-
-.icon-vegetables-broccoli-1:before {
-  background-image: url("/static/images/sprites.svg#icon-vegetables-broccoli-1"); }
-
-.icon-vegetables-broccoli-1-white:before {
-  background-image: url("/static/images/sprites.svg#icon-vegetables-broccoli-1-white"); }
-
-.icon-vegetables-broccoli-1-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-vegetables-broccoli-1-dark"); }
-
-.icon-vegetables-plate:before {
-  background-image: url("/static/images/sprites.svg#icon-vegetables-plate"); }
-
-.icon-vegetables-plate-white:before {
-  background-image: url("/static/images/sprites.svg#icon-vegetables-plate-white"); }
-
-.icon-vegetables-plate-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-vegetables-plate-dark"); }
-
-.icon-bits-of-freedom:before {
-  background-image: url("/static/images/sprites.svg#icon-bits-of-freedom"); }
-
-.icon-evoswitch:before {
-  background-image: url("/static/images/sprites.svg#icon-evoswitch"); }
-
-.icon-free-press-unlimited:before {
-  background-image: url("/static/images/sprites.svg#icon-free-press-unlimited"); }
-
-.icon-haicu-webdesign:before {
-  background-image: url("/static/images/sprites.svg#icon-haicu-webdesign"); }
-
-.icon-fast-cpu:before {
-  background-image: url("/static/images/sprites.svg#icon-fast-cpu"); }
-
-.icon-fast-cpu-info:before {
-  background-image: url("/static/images/sprites.svg#icon-fast-cpu-info"); }
-
-.icon-fast-cpu-warn:before {
-  background-image: url("/static/images/sprites.svg#icon-fast-cpu-warn"); }
-
-.icon-fast-cpu-good:before {
-  background-image: url("/static/images/sprites.svg#icon-fast-cpu-good"); }
-
-.icon-fast-cpu-bad:before {
-  background-image: url("/static/images/sprites.svg#icon-fast-cpu-bad"); }
-
-.icon-fast-cpu-white:before {
-  background-image: url("/static/images/sprites.svg#icon-fast-cpu-white"); }
-
-.icon-fast-cpu-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-fast-cpu-dark"); }
-
-.icon-network-status:before {
-  background-image: url("/static/images/sprites.svg#icon-network-status"); }
-
-.icon-network-status-info:before {
-  background-image: url("/static/images/sprites.svg#icon-network-status-info"); }
-
-.icon-network-status-warn:before {
-  background-image: url("/static/images/sprites.svg#icon-network-status-warn"); }
-
-.icon-network-status-good:before {
-  background-image: url("/static/images/sprites.svg#icon-network-status-good"); }
-
-.icon-network-status-bad:before {
-  background-image: url("/static/images/sprites.svg#icon-network-status-bad"); }
-
-.icon-network-status-white:before {
-  background-image: url("/static/images/sprites.svg#icon-network-status-white"); }
-
-.icon-network-status-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-network-status-dark"); }
-
-.icon-old:before {
-  background-image: url("/static/images/sprites.svg#icon-old"); }
-
-.icon-old-info:before {
-  background-image: url("/static/images/sprites.svg#icon-old-info"); }
-
-.icon-old-warn:before {
-  background-image: url("/static/images/sprites.svg#icon-old-warn"); }
-
-.icon-old-good:before {
-  background-image: url("/static/images/sprites.svg#icon-old-good"); }
-
-.icon-old-bad:before {
-  background-image: url("/static/images/sprites.svg#icon-old-bad"); }
-
-.icon-old-white:before {
-  background-image: url("/static/images/sprites.svg#icon-old-white"); }
-
-.icon-old-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-old-dark"); }
-
-.icon-arrow-down:before {
-  background-image: url("/static/images/sprites.svg#icon-arrow-down"); }
-
-.icon-arrow-down-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-arrow-down-dark"); }
-
-.icon-arrow-down-dark-link:before {
-  background-image: url("/static/images/sprites.svg#icon-arrow-down-dark-link"); }
-
-.icon-arrow-down-dark-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-arrow-down-dark-link-active"); }
-
-.icon-arrow-down-link:before {
-  background-image: url("/static/images/sprites.svg#icon-arrow-down-link"); }
-
-.icon-arrow-down-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-arrow-down-link-active"); }
-
-.icon-arrow-down-white:before {
-  background-image: url("/static/images/sprites.svg#icon-arrow-down-white"); }
-
-.icon-arrow-down-link-nav:before {
-  background-image: url("/static/images/sprites.svg#icon-arrow-down-link-nav"); }
-
-.icon-author:before {
-  background-image: url("/static/images/sprites.svg#icon-author"); }
-
-.icon-author-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-author-dark"); }
-
-.icon-author-dark-link:before {
-  background-image: url("/static/images/sprites.svg#icon-author-dark-link"); }
-
-.icon-author-dark-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-author-dark-link-active"); }
-
-.icon-author-link:before {
-  background-image: url("/static/images/sprites.svg#icon-author-link"); }
-
-.icon-author-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-author-link-active"); }
-
-.icon-author-white:before {
-  background-image: url("/static/images/sprites.svg#icon-author-white"); }
-
-.icon-author-link-nav:before {
-  background-image: url("/static/images/sprites.svg#icon-author-link-nav"); }
-
-.icon-backup:before {
-  background-image: url("/static/images/sprites.svg#icon-backup"); }
-
-.icon-backup-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-backup-dark"); }
-
-.icon-backup-dark-link:before {
-  background-image: url("/static/images/sprites.svg#icon-backup-dark-link"); }
-
-.icon-backup-dark-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-backup-dark-link-active"); }
-
-.icon-backup-link:before {
-  background-image: url("/static/images/sprites.svg#icon-backup-link"); }
-
-.icon-backup-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-backup-link-active"); }
-
-.icon-backup-white:before {
-  background-image: url("/static/images/sprites.svg#icon-backup-white"); }
-
-.icon-backup-link-nav:before {
-  background-image: url("/static/images/sprites.svg#icon-backup-link-nav"); }
-
-.icon-calendar:before {
-  background-image: url("/static/images/sprites.svg#icon-calendar"); }
-
-.icon-calendar-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-calendar-dark"); }
-
-.icon-calendar-dark-link:before {
-  background-image: url("/static/images/sprites.svg#icon-calendar-dark-link"); }
-
-.icon-calendar-dark-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-calendar-dark-link-active"); }
-
-.icon-calendar-link:before {
-  background-image: url("/static/images/sprites.svg#icon-calendar-link"); }
-
-.icon-calendar-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-calendar-link-active"); }
-
-.icon-calendar-white:before {
-  background-image: url("/static/images/sprites.svg#icon-calendar-white"); }
-
-.icon-calendar-link-nav:before {
-  background-image: url("/static/images/sprites.svg#icon-calendar-link-nav"); }
-
-.icon-checkout:before {
-  background-image: url("/static/images/sprites.svg#icon-checkout"); }
-
-.icon-checkout-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-checkout-dark"); }
-
-.icon-checkout-dark-link:before {
-  background-image: url("/static/images/sprites.svg#icon-checkout-dark-link"); }
-
-.icon-checkout-dark-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-checkout-dark-link-active"); }
-
-.icon-checkout-link:before {
-  background-image: url("/static/images/sprites.svg#icon-checkout-link"); }
-
-.icon-checkout-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-checkout-link-active"); }
-
-.icon-checkout-white:before {
-  background-image: url("/static/images/sprites.svg#icon-checkout-white"); }
-
-.icon-checkout-link-nav:before {
-  background-image: url("/static/images/sprites.svg#icon-checkout-link-nav"); }
-
-.icon-close-quote:before {
-  background-image: url("/static/images/sprites.svg#icon-close-quote"); }
-
-.icon-close-quote-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-close-quote-dark"); }
-
-.icon-close-quote-dark-link:before {
-  background-image: url("/static/images/sprites.svg#icon-close-quote-dark-link"); }
-
-.icon-close-quote-dark-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-close-quote-dark-link-active"); }
-
-.icon-close-quote-link:before {
-  background-image: url("/static/images/sprites.svg#icon-close-quote-link"); }
-
-.icon-close-quote-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-close-quote-link-active"); }
-
-.icon-close-quote-white:before {
-  background-image: url("/static/images/sprites.svg#icon-close-quote-white"); }
-
-.icon-close-quote-link-nav:before {
-  background-image: url("/static/images/sprites.svg#icon-close-quote-link-nav"); }
-
-.icon-close:before {
-  background-image: url("/static/images/sprites.svg#icon-close"); }
-
-.icon-close-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-close-dark"); }
-
-.icon-close-dark-link:before {
-  background-image: url("/static/images/sprites.svg#icon-close-dark-link"); }
-
-.icon-close-dark-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-close-dark-link-active"); }
-
-.icon-close-link:before {
-  background-image: url("/static/images/sprites.svg#icon-close-link"); }
-
-.icon-close-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-close-link-active"); }
-
-.icon-close-white:before {
-  background-image: url("/static/images/sprites.svg#icon-close-white"); }
-
-.icon-close-link-nav:before {
-  background-image: url("/static/images/sprites.svg#icon-close-link-nav"); }
-
-.icon-configure:before {
-  background-image: url("/static/images/sprites.svg#icon-configure"); }
-
-.icon-configure-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-configure-dark"); }
-
-.icon-configure-dark-link:before {
-  background-image: url("/static/images/sprites.svg#icon-configure-dark-link"); }
-
-.icon-configure-dark-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-configure-dark-link-active"); }
-
-.icon-configure-link:before {
-  background-image: url("/static/images/sprites.svg#icon-configure-link"); }
-
-.icon-configure-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-configure-link-active"); }
-
-.icon-configure-white:before {
-  background-image: url("/static/images/sprites.svg#icon-configure-white"); }
-
-.icon-configure-link-nav:before {
-  background-image: url("/static/images/sprites.svg#icon-configure-link-nav"); }
-
-.icon-cores:before {
-  background-image: url("/static/images/sprites.svg#icon-cores"); }
-
-.icon-cores-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-cores-dark"); }
-
-.icon-cores-dark-link:before {
-  background-image: url("/static/images/sprites.svg#icon-cores-dark-link"); }
-
-.icon-cores-dark-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-cores-dark-link-active"); }
-
-.icon-cores-link:before {
-  background-image: url("/static/images/sprites.svg#icon-cores-link"); }
-
-.icon-cores-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-cores-link-active"); }
-
-.icon-cores-white:before {
-  background-image: url("/static/images/sprites.svg#icon-cores-white"); }
-
-.icon-cores-link-nav:before {
-  background-image: url("/static/images/sprites.svg#icon-cores-link-nav"); }
-
-.icon-delete:before {
-  background-image: url("/static/images/sprites.svg#icon-delete"); }
-
-.icon-delete-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-delete-dark"); }
-
-.icon-delete-dark-link:before {
-  background-image: url("/static/images/sprites.svg#icon-delete-dark-link"); }
-
-.icon-delete-dark-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-delete-dark-link-active"); }
-
-.icon-delete-link:before {
-  background-image: url("/static/images/sprites.svg#icon-delete-link"); }
-
-.icon-delete-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-delete-link-active"); }
-
-.icon-delete-white:before {
-  background-image: url("/static/images/sprites.svg#icon-delete-white"); }
-
-.icon-delete-link-nav:before {
-  background-image: url("/static/images/sprites.svg#icon-delete-link-nav"); }
-
-.icon-disc:before {
-  background-image: url("/static/images/sprites.svg#icon-disc"); }
-
-.icon-disc-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-disc-dark"); }
-
-.icon-disc-dark-link:before {
-  background-image: url("/static/images/sprites.svg#icon-disc-dark-link"); }
-
-.icon-disc-dark-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-disc-dark-link-active"); }
-
-.icon-disc-link:before {
-  background-image: url("/static/images/sprites.svg#icon-disc-link"); }
-
-.icon-disc-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-disc-link-active"); }
-
-.icon-disc-white:before {
-  background-image: url("/static/images/sprites.svg#icon-disc-white"); }
-
-.icon-disc-link-nav:before {
-  background-image: url("/static/images/sprites.svg#icon-disc-link-nav"); }
-
-.icon-email-unlimited:before {
-  background-image: url("/static/images/sprites.svg#icon-email-unlimited"); }
-
-.icon-email-unlimited-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-email-unlimited-dark"); }
-
-.icon-email-unlimited-dark-link:before {
-  background-image: url("/static/images/sprites.svg#icon-email-unlimited-dark-link"); }
-
-.icon-email-unlimited-dark-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-email-unlimited-dark-link-active"); }
-
-.icon-email-unlimited-link:before {
-  background-image: url("/static/images/sprites.svg#icon-email-unlimited-link"); }
-
-.icon-email-unlimited-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-email-unlimited-link-active"); }
-
-.icon-email-unlimited-white:before {
-  background-image: url("/static/images/sprites.svg#icon-email-unlimited-white"); }
-
-.icon-email-unlimited-link-nav:before {
-  background-image: url("/static/images/sprites.svg#icon-email-unlimited-link-nav"); }
-
-.icon-expand:before {
-  background-image: url("/static/images/sprites.svg#icon-expand"); }
-
-.icon-expand-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-expand-dark"); }
-
-.icon-expand-dark-link:before {
-  background-image: url("/static/images/sprites.svg#icon-expand-dark-link"); }
-
-.icon-expand-dark-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-expand-dark-link-active"); }
-
-.icon-expand-link:before {
-  background-image: url("/static/images/sprites.svg#icon-expand-link"); }
-
-.icon-expand-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-expand-link-active"); }
-
-.icon-expand-white:before {
-  background-image: url("/static/images/sprites.svg#icon-expand-white"); }
-
-.icon-expand-link-nav:before {
-  background-image: url("/static/images/sprites.svg#icon-expand-link-nav"); }
-
-.icon-fde:before {
-  background-image: url("/static/images/sprites.svg#icon-fde"); }
-
-.icon-fde-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-fde-dark"); }
-
-.icon-fde-dark-link:before {
-  background-image: url("/static/images/sprites.svg#icon-fde-dark-link"); }
-
-.icon-fde-dark-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-fde-dark-link-active"); }
-
-.icon-fde-link:before {
-  background-image: url("/static/images/sprites.svg#icon-fde-link"); }
-
-.icon-fde-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-fde-link-active"); }
-
-.icon-fde-white:before {
-  background-image: url("/static/images/sprites.svg#icon-fde-white"); }
-
-.icon-fde-link-nav:before {
-  background-image: url("/static/images/sprites.svg#icon-fde-link-nav"); }
-
-.icon-home:before {
-  background-image: url("/static/images/sprites.svg#icon-home"); }
-
-.icon-home-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-home-dark"); }
-
-.icon-home-dark-link:before {
-  background-image: url("/static/images/sprites.svg#icon-home-dark-link"); }
-
-.icon-home-dark-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-home-dark-link-active"); }
-
-.icon-home-link:before {
-  background-image: url("/static/images/sprites.svg#icon-home-link"); }
-
-.icon-home-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-home-link-active"); }
-
-.icon-home-white:before {
-  background-image: url("/static/images/sprites.svg#icon-home-white"); }
-
-.icon-home-link-nav:before {
-  background-image: url("/static/images/sprites.svg#icon-home-link-nav"); }
-
-.icon-info:before {
-  background-image: url("/static/images/sprites.svg#icon-info"); }
-
-.icon-info-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-info-dark"); }
-
-.icon-info-dark-link:before {
-  background-image: url("/static/images/sprites.svg#icon-info-dark-link"); }
-
-.icon-info-dark-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-info-dark-link-active"); }
-
-.icon-info-link:before {
-  background-image: url("/static/images/sprites.svg#icon-info-link"); }
-
-.icon-info-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-info-link-active"); }
-
-.icon-info-white:before {
-  background-image: url("/static/images/sprites.svg#icon-info-white"); }
-
-.icon-info-link-nav:before {
-  background-image: url("/static/images/sprites.svg#icon-info-link-nav"); }
-
-.icon-memory:before {
-  background-image: url("/static/images/sprites.svg#icon-memory"); }
-
-.icon-memory-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-memory-dark"); }
-
-.icon-memory-dark-link:before {
-  background-image: url("/static/images/sprites.svg#icon-memory-dark-link"); }
-
-.icon-memory-dark-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-memory-dark-link-active"); }
-
-.icon-memory-link:before {
-  background-image: url("/static/images/sprites.svg#icon-memory-link"); }
-
-.icon-memory-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-memory-link-active"); }
-
-.icon-memory-white:before {
-  background-image: url("/static/images/sprites.svg#icon-memory-white"); }
-
-.icon-memory-link-nav:before {
-  background-image: url("/static/images/sprites.svg#icon-memory-link-nav"); }
-
-.icon-netherlands:before {
-  background-image: url("/static/images/sprites.svg#icon-netherlands"); }
-
-.icon-netherlands-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-netherlands-dark"); }
-
-.icon-netherlands-dark-link:before {
-  background-image: url("/static/images/sprites.svg#icon-netherlands-dark-link"); }
-
-.icon-netherlands-dark-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-netherlands-dark-link-active"); }
-
-.icon-netherlands-link:before {
-  background-image: url("/static/images/sprites.svg#icon-netherlands-link"); }
-
-.icon-netherlands-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-netherlands-link-active"); }
-
-.icon-netherlands-white:before {
-  background-image: url("/static/images/sprites.svg#icon-netherlands-white"); }
-
-.icon-netherlands-link-nav:before {
-  background-image: url("/static/images/sprites.svg#icon-netherlands-link-nav"); }
-
-.icon-new-tab:before {
-  background-image: url("/static/images/sprites.svg#icon-new-tab"); }
-
-.icon-new-tab-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-new-tab-dark"); }
-
-.icon-new-tab-dark-link:before {
-  background-image: url("/static/images/sprites.svg#icon-new-tab-dark-link"); }
-
-.icon-new-tab-dark-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-new-tab-dark-link-active"); }
-
-.icon-new-tab-link:before {
-  background-image: url("/static/images/sprites.svg#icon-new-tab-link"); }
-
-.icon-new-tab-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-new-tab-link-active"); }
-
-.icon-new-tab-white:before {
-  background-image: url("/static/images/sprites.svg#icon-new-tab-white"); }
-
-.icon-new-tab-link-nav:before {
-  background-image: url("/static/images/sprites.svg#icon-new-tab-link-nav"); }
-
-.icon-open-quote:before {
-  background-image: url("/static/images/sprites.svg#icon-open-quote"); }
-
-.icon-open-quote-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-open-quote-dark"); }
-
-.icon-open-quote-dark-link:before {
-  background-image: url("/static/images/sprites.svg#icon-open-quote-dark-link"); }
-
-.icon-open-quote-dark-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-open-quote-dark-link-active"); }
-
-.icon-open-quote-link:before {
-  background-image: url("/static/images/sprites.svg#icon-open-quote-link"); }
-
-.icon-open-quote-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-open-quote-link-active"); }
-
-.icon-open-quote-white:before {
-  background-image: url("/static/images/sprites.svg#icon-open-quote-white"); }
-
-.icon-open-quote-link-nav:before {
-  background-image: url("/static/images/sprites.svg#icon-open-quote-link-nav"); }
-
-.icon-pay-per-sec:before {
-  background-image: url("/static/images/sprites.svg#icon-pay-per-sec"); }
-
-.icon-pay-per-sec-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-pay-per-sec-dark"); }
-
-.icon-pay-per-sec-dark-link:before {
-  background-image: url("/static/images/sprites.svg#icon-pay-per-sec-dark-link"); }
-
-.icon-pay-per-sec-dark-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-pay-per-sec-dark-link-active"); }
-
-.icon-pay-per-sec-link:before {
-  background-image: url("/static/images/sprites.svg#icon-pay-per-sec-link"); }
-
-.icon-pay-per-sec-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-pay-per-sec-link-active"); }
-
-.icon-pay-per-sec-white:before {
-  background-image: url("/static/images/sprites.svg#icon-pay-per-sec-white"); }
-
-.icon-pay-per-sec-link-nav:before {
-  background-image: url("/static/images/sprites.svg#icon-pay-per-sec-link-nav"); }
-
-.icon-search-list:before {
-  background-image: url("/static/images/sprites.svg#icon-search-list"); }
-
-.icon-search-list-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-search-list-dark"); }
-
-.icon-search-list-dark-link:before {
-  background-image: url("/static/images/sprites.svg#icon-search-list-dark-link"); }
-
-.icon-search-list-dark-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-search-list-dark-link-active"); }
-
-.icon-search-list-link:before {
-  background-image: url("/static/images/sprites.svg#icon-search-list-link"); }
-
-.icon-search-list-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-search-list-link-active"); }
-
-.icon-search-list-white:before {
-  background-image: url("/static/images/sprites.svg#icon-search-list-white"); }
-
-.icon-search-list-link-nav:before {
-  background-image: url("/static/images/sprites.svg#icon-search-list-link-nav"); }
-
-.icon-search:before {
-  background-image: url("/static/images/sprites.svg#icon-search"); }
-
-.icon-search-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-search-dark"); }
-
-.icon-search-dark-link:before {
-  background-image: url("/static/images/sprites.svg#icon-search-dark-link"); }
-
-.icon-search-dark-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-search-dark-link-active"); }
-
-.icon-search-link:before {
-  background-image: url("/static/images/sprites.svg#icon-search-link"); }
-
-.icon-search-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-search-link-active"); }
-
-.icon-search-white:before {
-  background-image: url("/static/images/sprites.svg#icon-search-white"); }
-
-.icon-search-link-nav:before {
-  background-image: url("/static/images/sprites.svg#icon-search-link-nav"); }
-
-.icon-service-centre:before {
-  background-image: url("/static/images/sprites.svg#icon-service-centre"); }
-
-.icon-service-centre-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-service-centre-dark"); }
-
-.icon-service-centre-dark-link:before {
-  background-image: url("/static/images/sprites.svg#icon-service-centre-dark-link"); }
-
-.icon-service-centre-dark-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-service-centre-dark-link-active"); }
-
-.icon-service-centre-link:before {
-  background-image: url("/static/images/sprites.svg#icon-service-centre-link"); }
-
-.icon-service-centre-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-service-centre-link-active"); }
-
-.icon-service-centre-white:before {
-  background-image: url("/static/images/sprites.svg#icon-service-centre-white"); }
-
-.icon-service-centre-link-nav:before {
-  background-image: url("/static/images/sprites.svg#icon-service-centre-link-nav"); }
-
-.icon-shell:before {
-  background-image: url("/static/images/sprites.svg#icon-shell"); }
-
-.icon-shell-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-shell-dark"); }
-
-.icon-shell-dark-link:before {
-  background-image: url("/static/images/sprites.svg#icon-shell-dark-link"); }
-
-.icon-shell-dark-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-shell-dark-link-active"); }
-
-.icon-shell-link:before {
-  background-image: url("/static/images/sprites.svg#icon-shell-link"); }
-
-.icon-shell-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-shell-link-active"); }
-
-.icon-shell-white:before {
-  background-image: url("/static/images/sprites.svg#icon-shell-white"); }
-
-.icon-shell-link-nav:before {
-  background-image: url("/static/images/sprites.svg#icon-shell-link-nav"); }
-
-.icon-storage:before {
-  background-image: url("/static/images/sprites.svg#icon-storage"); }
-
-.icon-storage-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-storage-dark"); }
-
-.icon-storage-dark-link:before {
-  background-image: url("/static/images/sprites.svg#icon-storage-dark-link"); }
-
-.icon-storage-dark-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-storage-dark-link-active"); }
-
-.icon-storage-link:before {
-  background-image: url("/static/images/sprites.svg#icon-storage-link"); }
-
-.icon-storage-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-storage-link-active"); }
-
-.icon-storage-white:before {
-  background-image: url("/static/images/sprites.svg#icon-storage-white"); }
-
-.icon-storage-link-nav:before {
-  background-image: url("/static/images/sprites.svg#icon-storage-link-nav"); }
-
-.icon-tag:before {
-  background-image: url("/static/images/sprites.svg#icon-tag"); }
-
-.icon-tag-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-tag-dark"); }
-
-.icon-tag-dark-link:before {
-  background-image: url("/static/images/sprites.svg#icon-tag-dark-link"); }
-
-.icon-tag-dark-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-tag-dark-link-active"); }
-
-.icon-tag-link:before {
-  background-image: url("/static/images/sprites.svg#icon-tag-link"); }
-
-.icon-tag-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-tag-link-active"); }
-
-.icon-tag-white:before {
-  background-image: url("/static/images/sprites.svg#icon-tag-white"); }
-
-.icon-tag-link-nav:before {
-  background-image: url("/static/images/sprites.svg#icon-tag-link-nav"); }
-
-.icon-tls:before {
-  background-image: url("/static/images/sprites.svg#icon-tls"); }
-
-.icon-tls-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-tls-dark"); }
-
-.icon-tls-dark-link:before {
-  background-image: url("/static/images/sprites.svg#icon-tls-dark-link"); }
-
-.icon-tls-dark-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-tls-dark-link-active"); }
-
-.icon-tls-link:before {
-  background-image: url("/static/images/sprites.svg#icon-tls-link"); }
-
-.icon-tls-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-tls-link-active"); }
-
-.icon-tls-white:before {
-  background-image: url("/static/images/sprites.svg#icon-tls-white"); }
-
-.icon-tls-link-nav:before {
-  background-image: url("/static/images/sprites.svg#icon-tls-link-nav"); }
-
-.icon-traffic:before {
-  background-image: url("/static/images/sprites.svg#icon-traffic"); }
-
-.icon-traffic-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-traffic-dark"); }
-
-.icon-traffic-dark-link:before {
-  background-image: url("/static/images/sprites.svg#icon-traffic-dark-link"); }
-
-.icon-traffic-dark-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-traffic-dark-link-active"); }
-
-.icon-traffic-link:before {
-  background-image: url("/static/images/sprites.svg#icon-traffic-link"); }
-
-.icon-traffic-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-traffic-link-active"); }
-
-.icon-traffic-white:before {
-  background-image: url("/static/images/sprites.svg#icon-traffic-white"); }
-
-.icon-traffic-link-nav:before {
-  background-image: url("/static/images/sprites.svg#icon-traffic-link-nav"); }
-
-.icon-transfer:before {
-  background-image: url("/static/images/sprites.svg#icon-transfer"); }
-
-.icon-transfer-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-transfer-dark"); }
-
-.icon-transfer-dark-link:before {
-  background-image: url("/static/images/sprites.svg#icon-transfer-dark-link"); }
-
-.icon-transfer-dark-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-transfer-dark-link-active"); }
-
-.icon-transfer-link:before {
-  background-image: url("/static/images/sprites.svg#icon-transfer-link"); }
-
-.icon-transfer-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-transfer-link-active"); }
-
-.icon-transfer-white:before {
-  background-image: url("/static/images/sprites.svg#icon-transfer-white"); }
-
-.icon-transfer-link-nav:before {
-  background-image: url("/static/images/sprites.svg#icon-transfer-link-nav"); }
-
-.icon-trash:before {
-  background-image: url("/static/images/sprites.svg#icon-trash"); }
-
-.icon-trash-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-trash-dark"); }
-
-.icon-trash-dark-link:before {
-  background-image: url("/static/images/sprites.svg#icon-trash-dark-link"); }
-
-.icon-trash-dark-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-trash-dark-link-active"); }
-
-.icon-trash-link:before {
-  background-image: url("/static/images/sprites.svg#icon-trash-link"); }
-
-.icon-trash-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-trash-link-active"); }
-
-.icon-trash-white:before {
-  background-image: url("/static/images/sprites.svg#icon-trash-white"); }
-
-.icon-trash-link-nav:before {
-  background-image: url("/static/images/sprites.svg#icon-trash-link-nav"); }
-
-.icon-turbine:before {
-  background-image: url("/static/images/sprites.svg#icon-turbine"); }
-
-.icon-turbine-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-turbine-dark"); }
-
-.icon-turbine-dark-link:before {
-  background-image: url("/static/images/sprites.svg#icon-turbine-dark-link"); }
-
-.icon-turbine-dark-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-turbine-dark-link-active"); }
-
-.icon-turbine-link:before {
-  background-image: url("/static/images/sprites.svg#icon-turbine-link"); }
-
-.icon-turbine-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-turbine-link-active"); }
-
-.icon-turbine-white:before {
-  background-image: url("/static/images/sprites.svg#icon-turbine-white"); }
-
-.icon-turbine-link-nav:before {
-  background-image: url("/static/images/sprites.svg#icon-turbine-link-nav"); }
-
-.icon-virtual-machine:before {
-  background-image: url("/static/images/sprites.svg#icon-virtual-machine"); }
-
-.icon-virtual-machine-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-virtual-machine-dark"); }
-
-.icon-virtual-machine-dark-link:before {
-  background-image: url("/static/images/sprites.svg#icon-virtual-machine-dark-link"); }
-
-.icon-virtual-machine-dark-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-virtual-machine-dark-link-active"); }
-
-.icon-virtual-machine-link:before {
-  background-image: url("/static/images/sprites.svg#icon-virtual-machine-link"); }
-
-.icon-virtual-machine-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-virtual-machine-link-active"); }
-
-.icon-virtual-machine-white:before {
-  background-image: url("/static/images/sprites.svg#icon-virtual-machine-white"); }
-
-.icon-virtual-machine-link-nav:before {
-  background-image: url("/static/images/sprites.svg#icon-virtual-machine-link-nav"); }
-
-.icon-vps:before {
-  background-image: url("/static/images/sprites.svg#icon-vps"); }
-
-.icon-vps-dark:before {
-  background-image: url("/static/images/sprites.svg#icon-vps-dark"); }
-
-.icon-vps-dark-link:before {
-  background-image: url("/static/images/sprites.svg#icon-vps-dark-link"); }
-
-.icon-vps-dark-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-vps-dark-link-active"); }
-
-.icon-vps-link:before {
-  background-image: url("/static/images/sprites.svg#icon-vps-link"); }
-
-.icon-vps-link-active:before {
-  background-image: url("/static/images/sprites.svg#icon-vps-link-active"); }
-
-.icon-vps-white:before {
-  background-image: url("/static/images/sprites.svg#icon-vps-white"); }
-
-.icon-vps-link-nav:before {
-  background-image: url("/static/images/sprites.svg#icon-vps-link-nav"); }
-
-section article aside {
-  display: block;
-  background: #bceaee;
-  color: #00535a;
-  border-width: 5px 0;
-  border-style: solid;
-  border-color: #00828d;
-  margin: 0 1rem;
-  padding: 2rem 1rem;
-  margin: 1rem;
-  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8); }
-  section article aside header {
-    display: block;
-    font-weight: bold; }
-  section article aside header ~ p {
-    margin-left: 3rem; }
-  section article aside.bad {
-    background-color: #e3bfc2;
-    border-color: #8d000d;
-    color: #5a0008; }
-    section article aside.bad a, section article aside.bad a:visited, section article aside.bad a:active {
-      color: #5a0008; }
-    section article aside.bad a:hover {
-      color: #8d000d; }
-  section article aside.warn {
-    background-color: #e6d3c7;
-    border-color: #c04900;
-    color: #5a2200; }
-    section article aside.warn a, section article aside.warn a:visited, section article aside.warn a:active {
-      color: #5a2200; }
-    section article aside.warn a:hover {
-      color: #c04900; }
-  section article aside.good {
-    background-color: #cbddb3;
-    border-color: #538d00;
-    color: #355a00; }
-    section article aside.good a, section article aside.good a:visited, section article aside.good a:active {
-      color: #355a00; }
-    section article aside.good a:hover {
-      color: #538d00; }
-  section article aside.info {
-    background-color: #bceaee;
-    border-color: #00828d;
-    color: #00535a; }
-    section article aside.info a, section article aside.info a:visited, section article aside.info a:active {
-      color: #00535a; }
-    section article aside.info a:hover {
-      color: #00828d; }
-
-.alert {
-  display: grid;
-  grid: "header" auto "main" auto / 100%;
-  line-height: 1;
-  padding: 2rem 1.5rem;
-  margin: 1rem 0;
-  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
-  font-size: 1.1rem;
-  line-height: 1.4; }
-  .alert header {
-    font-weight: bold;
-    grid-area: header; }
-  .alert main {
-    grid-area: main; }
-  .alert > * {
-    grid-area: main; }
-  .alert.bad {
-    background-color: #e3bfc2;
-    border-color: #8d000d;
-    color: #5a0008;
-    border-color: #8d000d; }
-    .alert.bad a, .alert.bad a:visited, .alert.bad a:active {
-      color: #5a0008; }
-    .alert.bad a:hover {
-      color: #8d000d; }
-  .alert.warn {
-    background-color: #e6d3c7;
-    border-color: #c04900;
-    color: #5a2200;
-    border-color: #c04900; }
-    .alert.warn a, .alert.warn a:visited, .alert.warn a:active {
-      color: #5a2200; }
-    .alert.warn a:hover {
-      color: #c04900; }
-  .alert.good {
-    background-color: #cbddb3;
-    border-color: #538d00;
-    color: #355a00;
-    border-color: #538d00; }
-    .alert.good a, .alert.good a:visited, .alert.good a:active {
-      color: #355a00; }
-    .alert.good a:hover {
-      color: #538d00; }
-  .alert.info {
-    background-color: #bceaee;
-    border-color: #00828d;
-    color: #00535a;
-    border-color: #00828d; }
-    .alert.info a, .alert.info a:visited, .alert.info a:active {
-      color: #00535a; }
-    .alert.info a:hover {
-      color: #00828d; }
-  .alert[class*=' icon-'], .alert[class^='icon-'] {
-    grid: "icon header" auto "icon main" auto / 4rem 1fr;
-    gap: 0 1rem; }
-    .alert[class*=' icon-']:before, .alert[class^='icon-']:before {
-      grid-area: icon;
-      width: 4rem;
-      height: 4rem; }
-    @media screen and (max-width: 512px) {
-      .alert[class*=' icon-'], .alert[class^='icon-'] {
-        grid: "icon header" auto "main main" auto / 2rem 1fr; }
-        .alert[class*=' icon-']:before, .alert[class^='icon-']:before {
-          width: 2rem;
-          height: 2rem;
-          margin-top: .5rem; } }
-
-body {
-  display: flex;
-  min-height: 100vh;
-  flex-direction: column; }
-  body > nav {
-    flex: 0 0 5rem; }
-  body > main {
-    flex: 1; }
-
-.section-wrapper {
-  display: flex;
-  flex-flow: row wrap;
-  justify-content: center;
-  align-items: flex-start;
-  align-content: flex-start;
-  width: 100%;
-  background: #fff; }
-  .section-wrapper > section {
-    max-width: 100%;
-    flex: 0 1 80rem;
-    margin: 4rem 2rem 1.5rem 2rem;
-    padding: 2rem 2rem; }
-    .section-wrapper > section.reading {
-      max-width: 100%;
-      flex: 0 1 55rem;
-      margin: 4rem 4rem 1.5rem 4rem;
-      overflow-wrap: break-word;
-      word-wrap: break-word;
-      word-break: break-word;
-      hyphens: auto; }
-      .section-wrapper > section.reading h2 {
-        margin-top: 2rem; }
-      .section-wrapper > section.reading h3 {
-        margin-top: 1.5rem; }
-      .section-wrapper > section.reading ul, .section-wrapper > section.reading ol {
-        margin: 2rem 0; }
-      .section-wrapper > section.reading ul ol, .section-wrapper > section.reading ul ul, .section-wrapper > section.reading ol ol, .section-wrapper > section.reading ol ul {
-        margin: 0 0; }
-      .section-wrapper > section.reading img {
-        max-height: 100vh;
-        max-width: 100%;
-        margin: auto; }
-    .section-wrapper > section.extra-wide {
-      flex: 0 1 110rem;
-      margin: 2.5rem 1.5rem; }
-    .section-wrapper > section.short {
-      margin-top: 0rem;
-      margin-bottom: 0rem;
-      padding-top: 1rem;
-      padding-bottom: 1rem; }
-  @media only screen and (max-width: 768px) {
-    .section-wrapper > section, .section-wrapper > section.reading, .section-wrapper > section.extra-wide {
-      margin: 0.5rem 1rem;
-      padding: 0.5rem; } }
-
-.section-wrapper-dark {
-  display: flex;
-  flex-flow: row wrap;
-  justify-content: center;
-  align-items: flex-start;
-  align-content: flex-start;
-  width: 100%;
-  background: #00828d;
-  color: #ebebeb; }
-  .section-wrapper-dark > section {
-    max-width: 100%;
-    flex: 0 1 80rem;
-    margin: 4rem 2rem 1.5rem 2rem;
-    padding: 2rem 2rem; }
-    .section-wrapper-dark > section.reading {
-      max-width: 100%;
-      flex: 0 1 55rem;
-      margin: 4rem 4rem 1.5rem 4rem;
-      overflow-wrap: break-word;
-      word-wrap: break-word;
-      word-break: break-word;
-      hyphens: auto; }
-      .section-wrapper-dark > section.reading h2 {
-        margin-top: 2rem; }
-      .section-wrapper-dark > section.reading h3 {
-        margin-top: 1.5rem; }
-      .section-wrapper-dark > section.reading ul, .section-wrapper-dark > section.reading ol {
-        margin: 2rem 0; }
-      .section-wrapper-dark > section.reading ul ol, .section-wrapper-dark > section.reading ul ul, .section-wrapper-dark > section.reading ol ol, .section-wrapper-dark > section.reading ol ul {
-        margin: 0 0; }
-      .section-wrapper-dark > section.reading img {
-        max-height: 100vh;
-        max-width: 100%;
-        margin: auto; }
-    .section-wrapper-dark > section.extra-wide {
-      flex: 0 1 110rem;
-      margin: 2.5rem 1.5rem; }
-    .section-wrapper-dark > section.short {
-      margin-top: 0rem;
-      margin-bottom: 0rem;
-      padding-top: 1rem;
-      padding-bottom: 1rem; }
-  @media only screen and (max-width: 768px) {
-    .section-wrapper-dark > section, .section-wrapper-dark > section.reading, .section-wrapper-dark > section.extra-wide {
-      margin: 0.5rem 1rem;
-      padding: 0.5rem; } }
-  .section-wrapper-dark section h1, .section-wrapper-dark h2, .section-wrapper-dark h3, .section-wrapper-dark h4, .section-wrapper-dark h5, .section-wrapper-dark h6 {
-    color: #ebebeb; }
-  .section-wrapper-dark h1 a:hover, .section-wrapper-dark a {
-    color: #ebebeb; }
-
-footer {
-  color: #fff; }
-  footer a {
-    color: rgba(255, 255, 255, 0.85); }
-    footer a:hover {
-      color: #fff; }
-  footer ul {
-    list-style: none;
-    padding: 0; }
-  footer .footer-row:first-of-type {
-    background: #2b585d;
-    padding-bottom: 2rem; }
-    footer .footer-row:first-of-type .columns {
-      display: flex;
-      flex-direction: row;
-      flex-wrap: wrap;
-      justify-content: space-between;
-      align-items: stretch; }
-      footer .footer-row:first-of-type .columns > ul {
-        margin: 2rem 2rem 0 2rem;
-        width: 12rem;
-        flex: 0 0 12rem;
-        display: inline-block; }
-        footer .footer-row:first-of-type .columns > ul li {
-          font-weight: bold;
-          line-height: 2.4; }
-          footer .footer-row:first-of-type .columns > ul li a {
-            text-decoration: none; }
-            footer .footer-row:first-of-type .columns > ul li a:hover {
-              text-decoration: underline; }
-          footer .footer-row:first-of-type .columns > ul li ul li {
-            font-weight: normal;
-            line-height: 1.8; }
-  footer .footer-row:last-of-type {
-    background: #132729;
-    padding: 1rem; }
-    footer .footer-row:last-of-type ul.columns {
-      margin: 0;
-      display: flex;
-      flex-direction: row;
-      flex-wrap: wrap;
-      justify-content: space-around;
-      align-items: center;
-      font-weight: normal; }
-      footer .footer-row:last-of-type ul.columns a {
-        text-decoration: none; }
-        footer .footer-row:last-of-type ul.columns a:hover {
-          text-decoration: underline; }
-      footer .footer-row:last-of-type ul.columns li {
-        flex: 1 0 12rem;
-        display: inline-block;
-        margin: 0.5rem 2rem;
-        text-align: center; }
-
-.hidden {
-  display: none !important; }
-
-.sr-only {
-  text-indent: -5000px; }
-
-@font-face {
-  font-family: "RobotoRegular";
-  src: url(/static/fonts/Roboto/RobotoRegular.eot) format("embedded-opentype"), url(/static/fonts/Roboto/RobotoRegular.woff2) format("woff2"), url(/static/fonts/Roboto/RobotoRegular.woff) format("woff"), url(/static/fonts/Roboto/RobotoRegular.ttf) format("truetype");
-  font-style: normal;
-  font-weight: 400; }
-
-@font-face {
-  font-family: "RobotoLight";
-  src: url(/static/fonts/Roboto/RobotoLight.eot) format("embedded-opentype"), url(/static/fonts/Roboto/RobotoLight.woff2) format("woff2"), url(/static/fonts/Roboto/RobotoLight.woff) format("woff"), url(/static/fonts/Roboto/RobotoLight.ttf) format("truetype");
-  font-style: normal;
-  font-weight: 300; }
-
-@font-face {
-  font-family: "RobotoSlabRegular";
-  src: url(/static/fonts/RobotoSlab/RobotoSlabRegular.eot) format("embedded-opentype"), url(/static/fonts/RobotoSlab/RobotoSlabRegular.woff2) format("woff2"), url(/static/fonts/RobotoSlab/RobotoSlabRegular.woff) format("woff"), url(/static/fonts/RobotoSlab/RobotoSlabRegular.ttf) format("truetype");
-  font-style: normal;
-  font-weight: 400; }
-
-@font-face {
-  font-family: "RobotoSlabLight";
-  src: url(/static/fonts/RobotoSlab/RobotoSlabLight.eot) format("embedded-opentype"), url(/static/fonts/RobotoSlab/RobotoSlabLight.woff2) format("woff2"), url(/static/fonts/RobotoSlab/RobotoSlabLight.woff) format("woff"), url(/static/fonts/RobotoSlab/RobotoSlabLight.ttf) format("truetype");
-  font-style: normal;
-  font-weight: 300; }
-
-@font-face {
-  font-family: "SourceCodePro";
-  src: url(/static/fonts/SourceCodePro/SourceCodeProMedium.eot) format("embedded-opentype"), url(/static/fonts/SourceCodePro/SourceCodeProMedium.woff2) format("woff2"), url(/static/fonts/SourceCodePro/SourceCodeProMedium.woff) format("woff"), url(/static/fonts/SourceCodePro/SourceCodeProMedium.ttf) format("truetype");
-  font-style: normal;
-  font-weight: 500;
-  font-stretch: normal; }
-
-html {
-  color: #4d4d4d;
-  font-family: "RobotoRegular", sans-serif;
-  font-size: 100%;
-  line-height: 1.5; }
-
-h1, h2, h3, h4, h5, h6 {
-  column-span: all; }
-  h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
-    text-decoration: none; }
-    h1 a[id]:hover:before, h2 a[id]:hover:before, h3 a[id]:hover:before, h4 a[id]:hover:before, h5 a[id]:hover:before, h6 a[id]:hover:before {
-      content: "¶";
-      color: #ddd;
-      float: left;
-      display: inline-block;
-      margin: 0 0 0 -1.8rem;
-      font-family: Arial sans-serif; }
-
-h1 {
-  font-family: "RobotoSlabRegular", sans-serif;
-  font-size: 2.02729rem;
-  margin: 0 0 1.5rem;
-  line-height: 1.5;
-  color: #2b585d; }
-  h1 a, h1 a:hover {
-    color: #2b585d; }
-
-h2, h3, h4, h5, h6 {
-  font-family: "RobotoSlabLight", sans-serif;
-  margin: 0 0 0.75rem;
-  line-height: 1.5; }
-
-h2 {
-  font-size: 1.80203rem;
-  color: #2b585d; }
-
-h3 {
-  font-size: 1.60181rem;
-  color: #4d4d4d; }
-
-h4 {
-  font-size: 1.42383rem;
-  color: #2b585d; }
-
-h5 {
-  font-size: 1.26562rem;
-  color: #2b585d; }
-
-h6 {
-  font-size: 90%;
-  color: #626063; }
-
-p {
-  margin: 0 0 0.75rem; }
-
-p.minor {
-  color: gray; }
-
-header {
-  font-family: "RobotoSlabRegular", sans-serif; }
-  header p {
-    margin: 1.5rem 0;
-    font-family: "RobotoRegular", sans-serif;
-    font-size: 1.125rem; }
-
-a {
-  color: #00828d;
-  text-decoration-skip: ink; }
-  a[target="_blank"]:after {
-    background-image: url("/static/images/sprites.svg#icon-new-tab-link");
-    vertical-align: bottom;
-    display: inline-block;
-    background-repeat: no-repeat;
-    background-size: cover;
-    content: ' ';
-    width: 1.5rem;
-    height: 1.5rem;
-    margin-left: .2rem;
-    width: 1.2rem;
-    height: 1.2rem;
-    vertical-align: top; }
-  a:hover {
-    color: #204246; }
-  a[target="_blank"]:hover:after {
-    background-image: url("/static/images/sprites.svg#icon-new-tab-link-active");
-    vertical-align: bottom;
-    display: inline-block;
-    background-repeat: no-repeat;
-    background-size: cover;
-    content: ' ';
-    width: 1.5rem;
-    height: 1.5rem;
-    margin-left: .2rem;
-    width: 1.2rem;
-    height: 1.2rem;
-    vertical-align: top; }
-  a:focus {
-    outline: 1px solid #938d85; }
-
-.section-wrapper-dark section a, footer a {
-  color: #ddd; }
-  .section-wrapper-dark section a:hover, footer a:hover {
-    color: #eee; }
-  .section-wrapper-dark section a[target="_blank"]:after, footer a[target="_blank"]:after {
-    background-image: url("/static/images/sprites.svg#icon-new-tab-dark-link");
-    vertical-align: bottom;
-    display: inline-block;
-    background-repeat: no-repeat;
-    background-size: cover;
-    content: ' ';
-    width: 1.5rem;
-    height: 1.5rem;
-    margin-left: .2rem;
-    width: 1.2rem;
-    height: 1.2rem;
-    vertical-align: top; }
-  .section-wrapper-dark section a[target="_blank"]:hover:after, footer a[target="_blank"]:hover:after {
-    background-image: url("/static/images/sprites.svg#icon-new-tab-dark-link-active");
-    vertical-align: bottom;
-    display: inline-block;
-    background-repeat: no-repeat;
-    background-size: cover;
-    content: ' ';
-    width: 1.5rem;
-    height: 1.5rem;
-    margin-left: .2rem;
-    width: 1.2rem;
-    height: 1.2rem;
-    vertical-align: top; }
-
-hr {
-  border-bottom: 1px solid #2b585d;
-  border-left: 0;
-  border-right: 0;
-  border-top: 0;
-  margin: 1.5rem 0; }
-
-.columns-max-2 {
-  columns: 20rem 2;
-  column-gap: 3rem; }
-
-.columns-max-3 {
-  columns: 25rem 3;
-  column-gap: 3rem; }
-
-address {
-  font-style: normal; }
-
-cite {
-  text-decoration: none;
-  font-style: normal; }
-
-span[title] {
-  text-decoration: underline; }
-  span[title]:after {
-    background-image: url("/static/images/sprites.svg#icon-info");
-    vertical-align: bottom;
-    display: inline-block;
-    background-repeat: no-repeat;
-    background-size: cover;
-    content: ' ';
-    width: 1.5rem;
-    height: 1.5rem;
-    margin-left: .1rem;
-    width: .9rem;
-    height: .9rem;
-    vertical-align: top; }
-
-.no-wrap {
-  display: inline-block; }
-
-.slide-buttons {
-  font-family: "RobotoSlabRegular", sans-serif; }
-
-main ul li, main ol li, section ul li, section ol li {
-  list-style-position: outside;
-  line-height: 1.60181rem;
-  padding: 0 0 0 0.8rem;
-  clear: both; }
-  main ul li ul, main ul li ol, main ol li ul, main ol li ol, section ul li ul, section ul li ol, section ol li ul, section ol li ol {
-    padding: 0 0 0 0.8rem; }
-
-main ul, section ul {
-  list-style-type: disc; }
-  main ul li ul, section ul li ul {
-    list-style-type: square; }
-    main ul li ul li ul, section ul li ul li ul {
-      list-style-type: circle; }
-
-main ol, section ol {
-  list-style-type: decimal; }
-  main ol li ol, section ol li ol {
-    list-style-type: lower-latin; }
-    main ol li ol li ol, section ol li ol li ol {
-      list-style-type: decimal; }
-      main ol li ol li ol li ol, section ol li ol li ol li ol {
-        list-style-type: upper-roman; }
-
-p > blockquote, article main blockquote, .testimonial blockquote {
-  display: block;
-  position: relative; }
-  p > blockquote:before, article main blockquote:before, .testimonial blockquote:before {
-    background-image: url("/static/images/sprites.svg#icon-open-quote-link-nav");
-    vertical-align: bottom;
-    display: inline-block;
-    background-repeat: no-repeat;
-    background-size: cover;
-    content: ' ';
-    width: 1.5rem;
-    height: 1.5rem;
-    position: relative;
-    float: left;
-    margin: -1.8rem 0 0 -.6rem; }
-    @media only screen and (min-width: 768px) {
-      p > blockquote:before, article main blockquote:before, .testimonial blockquote:before {
-        margin: -.4rem 0 0 -2.2rem; } }
-  p > blockquote:after, article main blockquote:after, .testimonial blockquote:after {
-    background-image: url("/static/images/sprites.svg#icon-close-quote-link-nav");
-    vertical-align: bottom;
-    display: inline-block;
-    background-repeat: no-repeat;
-    background-size: cover;
-    content: ' ';
-    width: 1.5rem;
-    height: 1.5rem;
-    position: relative;
-    float: right;
-    bottom: 0;
-    margin: 0 -.4rem 0 0; }
-    @media only screen and (min-width: 768px) {
-      p > blockquote:after, article main blockquote:after, .testimonial blockquote:after {
-        margin: -1rem -2.4rem 0 0; } }
-  p > blockquote p:last-of-type, article main blockquote p:last-of-type, .testimonial blockquote p:last-of-type {
-    margin-bottom: 0; }
-  p > blockquote cite, article main blockquote cite, .testimonial blockquote cite {
-    padding-top: 1rem;
-    bottom: 0;
-    margin-bottom: .5rem;
-    display: block;
-    position: relative;
-    text-align: right; }
-    @media only screen and (min-width: 768px) {
-      p > blockquote cite, article main blockquote cite, .testimonial blockquote cite {
-        margin-bottom: 0;
-        right: 2.5rem; } }
-    p > blockquote cite:before, article main blockquote cite:before, .testimonial blockquote cite:before {
-      content: "―";
-      margin: 0 1rem 0 0; }
-
-blockquote.song p {
-  text-align: center; }
-
-p > blockquote, article > blockquote {
-  color: #737373;
-  background: #f8f7f7;
-  border-left: 10px solid #aeadaf;
-  margin: 0 1rem;
-  padding: 2.4rem 1rem; }
-  @media only screen and (min-width: 768px) {
-    p > blockquote, article > blockquote {
-      padding: 1rem 3.2rem; } }
-
-.highlight .hll {
-  background-color: #49483e; }
-
-.highlight {
-  background: #272822;
-  color: #f8f8f2; }
-
-.highlight .c {
-  color: #75715e; }
-
-.highlight .err {
-  color: #960050;
-  background-color: #1e0010; }
-
-.highlight .k {
-  color: #66d9ef; }
-
-.highlight .l {
-  color: #ae81ff; }
-
-.highlight .n {
-  color: #f8f8f2; }
-
-.highlight .o {
-  color: #f92672; }
-
-.highlight .p {
-  color: #f8f8f2; }
-
-.highlight .ch {
-  color: #75715e; }
-
-.highlight .cm {
-  color: #75715e; }
-
-.highlight .cp {
-  color: #75715e; }
-
-.highlight .cpf {
-  color: #75715e; }
-
-.highlight .c1 {
-  color: #75715e; }
-
-.highlight .cs {
-  color: #75715e; }
-
-.highlight .gd {
-  color: #f92672; }
-
-.highlight .ge {
-  font-style: italic; }
-
-.highlight .gi {
-  color: #a6e22e; }
-
-.highlight .gs {
-  font-weight: bold; }
-
-.highlight .gu {
-  color: #75715e; }
-
-.highlight .kc {
-  color: #66d9ef; }
-
-.highlight .kd {
-  color: #66d9ef; }
-
-.highlight .kn {
-  color: #f92672; }
-
-.highlight .kp {
-  color: #66d9ef; }
-
-.highlight .kr {
-  color: #66d9ef; }
-
-.highlight .kt {
-  color: #66d9ef; }
-
-.highlight .ld {
-  color: #e6db74; }
-
-.highlight .m {
-  color: #ae81ff; }
-
-.highlight .s {
-  color: #e6db74; }
-
-.highlight .na {
-  color: #a6e22e; }
-
-.highlight .nb {
-  color: #f8f8f2; }
-
-.highlight .nc {
-  color: #a6e22e; }
-
-.highlight .no {
-  color: #66d9ef; }
-
-.highlight .nd {
-  color: #a6e22e; }
-
-.highlight .ni {
-  color: #f8f8f2; }
-
-.highlight .ne {
-  color: #a6e22e; }
-
-.highlight .nf {
-  color: #a6e22e; }
-
-.highlight .nl {
-  color: #f8f8f2; }
-
-.highlight .nn {
-  color: #f8f8f2; }
-
-.highlight .nx {
-  color: #a6e22e; }
-
-.highlight .py {
-  color: #f8f8f2; }
-
-.highlight .nt {
-  color: #f92672; }
-
-.highlight .nv {
-  color: #f8f8f2; }
-
-.highlight .ow {
-  color: #f92672; }
-
-.highlight .w {
-  color: #f8f8f2; }
-
-.highlight .mb {
-  color: #ae81ff; }
-
-.highlight .mf {
-  color: #ae81ff; }
-
-.highlight .mh {
-  color: #ae81ff; }
-
-.highlight .mi {
-  color: #ae81ff; }
-
-.highlight .mo {
-  color: #ae81ff; }
-
-.highlight .sa {
-  color: #e6db74; }
-
-.highlight .sb {
-  color: #e6db74; }
-
-.highlight .sc {
-  color: #e6db74; }
-
-.highlight .dl {
-  color: #e6db74; }
-
-.highlight .sd {
-  color: #e6db74; }
-
-.highlight .s2 {
-  color: #e6db74; }
-
-.highlight .se {
-  color: #ae81ff; }
-
-.highlight .sh {
-  color: #e6db74; }
-
-.highlight .si {
-  color: #e6db74; }
-
-.highlight .sx {
-  color: #e6db74; }
-
-.highlight .sr {
-  color: #e6db74; }
-
-.highlight .s1 {
-  color: #e6db74; }
-
-.highlight .ss {
-  color: #e6db74; }
-
-.highlight .bp {
-  color: #f8f8f2; }
-
-.highlight .fm {
-  color: #a6e22e; }
-
-.highlight .vc {
-  color: #f8f8f2; }
-
-.highlight .vg {
-  color: #f8f8f2; }
-
-.highlight .vi {
-  color: #f8f8f2; }
-
-.highlight .vm {
-  color: #f8f8f2; }
-
-.highlight .il {
-  color: #ae81ff; }
-
-div.highlight {
-  max-width: 100%;
-  display: block;
-  width: 100%;
-  margin: 0 0 1rem 0; }
-  div.highlight pre, div.highlight code, div.highlight table, div.highlight tbody, div.highlight tr {
-    max-width: 100%;
-    display: block;
-    width: 100%; }
-  div.highlight pre.highlight {
-    overflow: auto;
-    font-family: "SourceCodePro", monospace; }
-    div.highlight pre.highlight code table {
-      border-spacing: 0; }
-      div.highlight pre.highlight code table tbody tr td.rouge-gutter {
-        user-select: none;
-        background: #424439;
-        padding: .5rem; }
-        div.highlight pre.highlight code table tbody tr td.rouge-gutter pre {
-          user-select: none;
-          text-align: right; }
-      div.highlight pre.highlight code table tbody tr td.rouge-code pre {
-        padding: .5rem;
-        margin: 0 0 0 .5rem; }
-
-p > code, li > code {
-  font-size: 1rem;
-  font-family: "SourceCodePro", monospace;
-  background: #f8f7f7;
-  color: #00828d;
-  border: 1px #00828d solid;
-  padding: 1px 4px 1px 4px; }
-
-p.code-title {
-  background: #424439;
-  background: linear-gradient(to bottom, #424439, #272822);
-  padding: .3rem 1rem .2rem 1rem;
-  margin: 0;
-  font-size: 0.88889rem;
-  color: #fff;
-  font-weight: bold;
-  display: block;
-  border-bottom: 1px #34362e solid; }
-  p.code-title + div.highlight pre.highlight {
-    margin: 0 0 1rem 0; }
-
-button, [type='button'], [type='reset'], [type='submit'], .button {
-  appearance: none;
-  background-color: #3b7980;
-  border: 1px #2b585d solid;
-  color: #fff;
-  cursor: pointer;
-  display: inline-block;
-  font-family: "RobotoRegular", sans-serif;
-  font-size: 1rem;
-  -webkit-font-smoothing: antialiased;
-  font-weight: 600;
-  padding: 0.75rem 1.5rem;
-  text-align: center;
-  text-decoration: none;
-  user-select: none;
-  vertical-align: middle;
-  white-space: nowrap; }
-  button:hover, [type='button']:hover, [type='reset']:hover, [type='submit']:hover, .button:hover {
-    color: #fff;
-    background-color: #2b585d; }
-  button:focus, [type='button']:focus, [type='reset']:focus, [type='submit']:focus, .button:focus {
-    outline: 3px solid #00828d;
-    outline-offset: 2px; }
-  button:disabled, [type='button']:disabled, [type='reset']:disabled, [type='submit']:disabled, .button:disabled {
-    cursor: not-allowed;
-    opacity: 0.5; }
-    button:disabled:hover, [type='button']:disabled:hover, [type='reset']:disabled:hover, [type='submit']:disabled:hover, .button:disabled:hover {
-      background-color: #3b7980; }
-  button.bad, [type='button'].bad, [type='reset'].bad, [type='submit'].bad, .button.bad {
-    background-color: #8d000d;
-    color: #fff;
-    font-weight: bold;
-    border: 1px #5a0008 solid; }
-    button.bad:hover, [type='button'].bad:hover, [type='reset'].bad:hover, [type='submit'].bad:hover, .button.bad:hover {
-      background-color: #5a0008; }
-  button.warn, [type='button'].warn, [type='reset'].warn, [type='submit'].warn, .button.warn {
-    background-color: #c04900;
-    color: #fff;
-    font-weight: bold;
-    border: 1px #5a2200 solid; }
-    button.warn:hover, [type='button'].warn:hover, [type='reset'].warn:hover, [type='submit'].warn:hover, .button.warn:hover {
-      background-color: #8d3500; }
-  button.good, [type='button'].good, [type='reset'].good, [type='submit'].good, .button.good {
-    background-color: #538d00;
-    color: #fff;
-    font-weight: bold;
-    border: 1px #355a00 solid; }
-    button.good:hover, [type='button'].good:hover, [type='reset'].good:hover, [type='submit'].good:hover, .button.good:hover {
-      background-color: #355a00; }
-  button.info, [type='button'].info, [type='reset'].info, [type='submit'].info, .button.info {
-    background-color: #00828d;
-    color: #fff;
-    font-weight: bold;
-    border: 1px #00535a solid; }
-    button.info:hover, [type='button'].info:hover, [type='reset'].info:hover, [type='submit'].info:hover, .button.info:hover {
-      background-color: #00535a; }
-  button.close, button.expand, button.delete, [type='button'].close, [type='button'].expand, [type='button'].delete, [type='reset'].close, [type='reset'].expand, [type='reset'].delete, [type='submit'].close, [type='submit'].expand, [type='submit'].delete, .button.close, .button.expand, .button.delete {
-    background: transparent;
-    color: #aeadaf;
-    border: 0;
-    padding: 0; }
-
-header button.close, header button.expand, header button.delete, header [type='button'].close, header [type='button'].expand, header [type='button'].delete, header [type='reset'].close, header [type='reset'].expand, header [type='reset'].delete, header [type='submit'].close, header [type='submit'].expand, header [type='submit'].delete, header .button.close, header .button.expand, header .button.delete {
-  float: right;
-  position: absolute;
-  top: 2.2rem;
-  right: 2rem; }
-
-button.more, button.block {
-  display: block;
-  position: relative;
-  width: 100%;
-  margin: 2rem 0; }
-
-a.badge {
-  text-decoration: none; }
-
-.badge {
-  display: inline-block;
-  font-size: 0.75em;
-  line-height: 1;
-  padding: .5em .7em;
-  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); }
-  .badge:hover {
-    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4); }
-  .badge a {
-    text-decoration: none; }
-    .badge a:hover, .badge a:active {
-      text-decoration: underline; }
-  .badge.bad {
-    background-color: #e3bfc2;
-    border-color: #8d000d;
-    color: #5a0008;
-    font-weight: bold;
-    border: 1px solid #ddb3b6; }
-    .badge.bad a, .badge.bad a:visited, .badge.bad a:active {
-      color: #5a0008; }
-    .badge.bad a:hover {
-      color: #8d000d; }
-  .badge.warn {
-    background-color: #e6d3c7;
-    border-color: #c04900;
-    color: #5a2200;
-    font-weight: bold;
-    border: 1px solid #ecc8b3; }
-    .badge.warn a, .badge.warn a:visited, .badge.warn a:active {
-      color: #5a2200; }
-    .badge.warn a:hover {
-      color: #c04900; }
-  .badge.good {
-    background-color: #cbddb3;
-    border-color: #538d00;
-    color: #355a00;
-    font-weight: bold;
-    border: 1px solid #cbddb3; }
-    .badge.good a, .badge.good a:visited, .badge.good a:active {
-      color: #355a00; }
-    .badge.good a:hover {
-      color: #538d00; }
-  .badge.info {
-    background-color: #bceaee;
-    border-color: #00828d;
-    color: #00535a;
-    font-weight: bold;
-    border: 1px solid #b3dadd; }
-    .badge.info a, .badge.info a:visited, .badge.info a:active {
-      color: #00535a; }
-    .badge.info a:hover {
-      color: #00828d; }
-
 input[type="checkbox"]:not(old).switch {
   opacity: 0;
   position: absolute; }
@@ -2475,98 +38,6 @@ input[type="checkbox"]:not(old).switch {
   input[type="checkbox"]:not(old).switch:checked + label:after {
     left: 22px; }
 
-fieldset {
-  background-color: transparent;
-  border: 2px #2b585d solid;
-  margin: 2rem 1rem;
-  padding: 1rem 1rem; }
-  fieldset legend {
-    font-family: "RobotoSlabLight", sans-serif;
-    font-size: 1.26562rem;
-    padding: 0 .5rem; }
-
-.field {
-  display: block;
-  margin: 1rem 0; }
-  .field label {
-    display: block;
-    margin-bottom: 0.46875rem; }
-  .field.mandatory > label:first-of-type:after {
-    content: "*";
-    color: #8d000d;
-    margin-left: .5rem; }
-  .field input,
-  .field select,
-  .field textarea {
-    display: block;
-    font-family: "RobotoRegular", sans-serif;
-    font-size: 1rem; }
-    .field input:focus, .field input:focus,
-    .field select:focus,
-    .field select:focus,
-    .field textarea:focus,
-    .field textarea:focus {
-      outline: none; }
-  .field [type='color'], .field [type='date'], .field [type='datetime'], .field [type='datetime-local'], .field [type='email'], .field [type='month'], .field [type='number'], .field [type='password'], .field [type='search'], .field [type='tel'], .field [type='text'], .field [type='time'], .field [type='url'], .field [type='week'], .field input:not([type]), .field textarea {
-    appearance: none;
-    background-color: #d8eff0;
-    border: 0;
-    box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.1);
-    margin-bottom: 1.5rem;
-    padding: 0.75rem;
-    transition: border-color 150ms ease;
-    width: 100%; }
-    .field [type='color']:hover, .field [type='date']:hover, .field [type='datetime']:hover, .field [type='datetime-local']:hover, .field [type='email']:hover, .field [type='month']:hover, .field [type='number']:hover, .field [type='password']:hover, .field [type='search']:hover, .field [type='tel']:hover, .field [type='text']:hover, .field [type='time']:hover, .field [type='url']:hover, .field [type='week']:hover, .field input:not([type]):hover, .field textarea:hover {
-      box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.1), 0px 2px 1px #bceaee; }
-    .field [type='color']:focus, .field [type='date']:focus, .field [type='datetime']:focus, .field [type='datetime-local']:focus, .field [type='email']:focus, .field [type='month']:focus, .field [type='number']:focus, .field [type='password']:focus, .field [type='search']:focus, .field [type='tel']:focus, .field [type='text']:focus, .field [type='time']:focus, .field [type='url']:focus, .field [type='week']:focus, .field input:not([type]):focus, .field textarea:focus {
-      box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.1), 0px 2px 1px #00828d;
-      outline: none; }
-    .field [type='color']:disabled, .field [type='date']:disabled, .field [type='datetime']:disabled, .field [type='datetime-local']:disabled, .field [type='email']:disabled, .field [type='month']:disabled, .field [type='number']:disabled, .field [type='password']:disabled, .field [type='search']:disabled, .field [type='tel']:disabled, .field [type='text']:disabled, .field [type='time']:disabled, .field [type='url']:disabled, .field [type='week']:disabled, .field input:not([type]):disabled, .field textarea:disabled {
-      background-color: #cde3e4;
-      cursor: not-allowed; }
-    .field [type='color']::placeholder, .field [type='date']::placeholder, .field [type='datetime']::placeholder, .field [type='datetime-local']::placeholder, .field [type='email']::placeholder, .field [type='month']::placeholder, .field [type='number']::placeholder, .field [type='password']::placeholder, .field [type='search']::placeholder, .field [type='tel']::placeholder, .field [type='text']::placeholder, .field [type='time']::placeholder, .field [type='url']::placeholder, .field [type='week']::placeholder, .field input:not([type])::placeholder, .field textarea::placeholder {
-      color: #949494; }
-  .field .form-wrapper {
-    width: 100%;
-    display: block; }
-    @media only screen and (min-width: 834px) {
-      .field .form-wrapper {
-        max-width: calc(100% - 2rem * 2);
-        margin: 0 2rem; } }
-  .field textarea {
-    resize: vertical;
-    height: 10rem; }
-    @media only screen and (min-width: 768px) {
-      .field textarea {
-        height: 15rem; } }
-    @media only screen and (min-width: 834px) {
-      .field textarea {
-        height: 20rem; } }
-    @media only screen and (min-width: 1200px) {
-      .field textarea {
-        height: 25rem; } }
-  .field [type="checkbox"],
-  .field [type="radio"] {
-    display: inline;
-    margin-right: 0.375rem; }
-  .field [type="file"] {
-    margin-bottom: 0.75rem;
-    width: 100%; }
-  .field select {
-    margin-bottom: 0.75rem;
-    width: 100%;
-    height: 3rem;
-    background-color: #d8eff0;
-    appearance: none;
-    -moz-appearance: none;
-    -webkit-appearance: none;
-    box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.1);
-    border: 0;
-    padding: 0.75rem;
-    background: right 1rem top 50%/1.2rem 1.2rem no-repeat #d8eff0 url("/static/images/sprites.svg#icon-arrow-down-link"); }
-  .field select::-ms-expand {
-    display: none; }
-
 .field:not(old) {
   display: block; }
   .field:not(old) input[type=checkbox]:not(.switch),
@@ -2606,2097 +77,3 @@ fieldset {
   .field:not(old) input[type="checkbox"]:active + label,
   .field:not(old) input[type="checkbox"]:focus + label {
     text-decoration: underline; }
-
-.field.bad [type='color'], .field.bad [type='date'], .field.bad [type='datetime'], .field.bad [type='datetime-local'], .field.bad [type='email'], .field.bad [type='month'], .field.bad [type='number'], .field.bad [type='password'], .field.bad [type='search'], .field.bad [type='tel'], .field.bad [type='text'], .field.bad [type='time'], .field.bad [type='url'], .field.bad [type='week'], .field.bad input:not([type]), .field.bad textarea {
-  margin-bottom: 0.75rem;
-  box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.1), 0px 2px 1px #8d000d; }
-
-.field.bad .msg {
-  margin: 1.5rem 0 1.5rem 0.75rem;
-  color: #8d000d;
-  display: block; }
-
-.field.good [type='color'], .field.good [type='date'], .field.good [type='datetime'], .field.good [type='datetime-local'], .field.good [type='email'], .field.good [type='month'], .field.good [type='number'], .field.good [type='password'], .field.good [type='search'], .field.good [type='tel'], .field.good [type='text'], .field.good [type='time'], .field.good [type='url'], .field.good [type='week'], .field.good input:not([type]), .field.good textarea {
-  margin-bottom: 0.75rem;
-  box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.1), 0px 2px 1px #538d00; }
-
-.field.good .msg {
-  margin: 1.5rem 0 1.5rem 0.75rem;
-  color: #538d00;
-  display: block; }
-
-.field.warn [type='color'], .field.warn [type='date'], .field.warn [type='datetime'], .field.warn [type='datetime-local'], .field.warn [type='email'], .field.warn [type='month'], .field.warn [type='number'], .field.warn [type='password'], .field.warn [type='search'], .field.warn [type='tel'], .field.warn [type='text'], .field.warn [type='time'], .field.warn [type='url'], .field.warn [type='week'], .field.warn input:not([type]), .field.warn textarea {
-  margin-bottom: 0.75rem;
-  box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.1), 0px 2px 1px #c04900; }
-
-.field.warn .msg {
-  margin: 1.5rem 0 1.5rem 0.75rem;
-  color: #c04900;
-  display: block; }
-
-html {
-  background-color: #fff;
-  box-sizing: border-box; }
-
-*,
-*::before,
-*::after {
-  box-sizing: inherit; }
-
-html,
-body {
-  height: 100%; }
-
-body {
-  margin: 0; }
-
-article figure {
-  display: table;
-  clear: both;
-  margin: auto; }
-  article figure img, article figure picture {
-    padding: 0;
-    margin: 0; }
-  article figure figcaption {
-    font-size: 0.8rem;
-    color: #aeadaf;
-    text-align: center;
-    display: table-caption;
-    caption-side: bottom;
-    padding: .5rem 0; }
-    article figure figcaption a {
-      color: #aeadaf; }
-      article figure figcaption a[target="_blank"]:after {
-        background-image: url("/static/images/sprites.svg#icon-new-tab-dark-link");
-        vertical-align: bottom;
-        display: inline-block;
-        background-repeat: no-repeat;
-        background-size: cover;
-        content: ' ';
-        width: 1.5rem;
-        height: 1.5rem;
-        width: 1rem;
-        height: 1rem;
-        vertical-align: top; }
-      article figure figcaption a[target="_blank"]:hover:after {
-        background-image: url("/static/images/sprites.svg#icon-new-tab-link-active");
-        vertical-align: bottom;
-        display: inline-block;
-        background-repeat: no-repeat;
-        background-size: cover;
-        content: ' ';
-        width: 1.5rem;
-        height: 1.5rem;
-        width: 1rem;
-        height: 1rem;
-        vertical-align: top; }
-
-article img, article picture {
-  display: block;
-  max-width: 100%;
-  padding: 5px;
-  margin: 1rem; }
-
-article img.inline {
-  display: inline-block;
-  margin: 0;
-  padding: 0;
-  vertical-align: middle;
-  max-height: 2rem; }
-
-article .blog-overview-image {
-  float: left; }
-
-table:not(.rouge-table) {
-  border-collapse: collapse;
-  margin-top: 1.5rem;
-  text-align: left;
-  background: #fff;
-  color: #4d4d4d; }
-  @media only screen and (min-width: 1200px) {
-    table:not(.rouge-table) {
-      margin-top: 1.5rem; } }
-  table:not(.rouge-table) tbody {
-    vertical-align: top; }
-  table:not(.rouge-table) thead {
-    line-height: 1.5;
-    vertical-align: bottom; }
-  table:not(.rouge-table) tr td, table:not(.rouge-table) tr th {
-    padding: .5rem; }
-    table:not(.rouge-table) tr td.center, table:not(.rouge-table) tr th.center {
-      text-align: center; }
-    table:not(.rouge-table) tr td.right, table:not(.rouge-table) tr th.right {
-      text-align: right; }
-    table:not(.rouge-table) tr td.middle, table:not(.rouge-table) tr th.middle {
-      vertical-align: middle; }
-    table:not(.rouge-table) tr td.bottom, table:not(.rouge-table) tr th.bottom {
-      vertical-align: bottom; }
-    table:not(.rouge-table) tr td.top, table:not(.rouge-table) tr th.top {
-      vertical-align: top; }
-  table:not(.rouge-table).wide {
-    width: 100%; }
-  table:not(.rouge-table).fixed {
-    table-layout: fixed;
-    width: 90%;
-    min-width: calc(100% - 2rem/2.5); }
-    @media only screen and (min-width: 1200px) {
-      table:not(.rouge-table).fixed {
-        min-width: calc(100% - 2rem*2); } }
-  table:not(.rouge-table) tr th {
-    background: #b7b3ad; }
-  table:not(.rouge-table).colorful tr th {
-    background: #00828d;
-    color: #fff; }
-  table:not(.rouge-table).colorful thead tr th {
-    color: #fff;
-    background: #2b585d; }
-  table:not(.rouge-table).colorful tbody tr:nth-child(odd) {
-    background: white; }
-  table:not(.rouge-table).colorful tbody tr:nth-child(even) {
-    background: #f7fcfc; }
-  table:not(.rouge-table) tr {
-    border-bottom: 1px solid #2b585d; }
-  table:not(.rouge-table) th {
-    font-weight: 600; }
-  table:not(.rouge-table) th,
-  table:not(.rouge-table) td {
-    padding: 0.75rem 0.75rem 0.75rem 0; }
-
-.spinner.loading {
-  border: 0.21875rem solid #b7b3ad;
-  border-top: 0.21875rem solid #2b585d;
-  width: 1.75rem;
-  height: 1.75rem;
-  border-radius: 50%;
-  animation: spin .7s linear infinite; }
-  .spinner.loading.big {
-    border: 0.375rem solid #b7b3ad;
-    border-top: 0.375rem solid #2b585d;
-    width: 3rem;
-    height: 3rem; }
-
-@keyframes spin {
-  0% {
-    transform: rotate(0deg); }
-  100% {
-    transform: rotate(360deg); } }
-
-nav.main {
-  position: relative;
-  height: 5rem;
-  width: 100%;
-  max-width: 100vw;
-  display: flex;
-  flex-flow: row nowrap;
-  align-items: center;
-  padding: .5rem 2rem 0 2rem;
-  z-index: 700;
-  overflow: visible;
-  background: #fff;
-  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3);
-  border-bottom: 1px #ccc solid; }
-  @media only screen and (max-width: 992px) {
-    nav.main {
-      padding: .5rem 1rem 0 1rem; } }
-  nav.main .logo {
-    flex: 0 0 16rem;
-    position: absolute;
-    order: 0;
-    height: 100%; }
-    nav.main .logo a {
-      display: block;
-      position: absolute;
-      z-index: 800;
-      height: calc(100% - .5rem);
-      width: 16rem;
-      background: #fff;
-      padding: 0 .5rem; }
-      nav.main .logo a img {
-        position: absolute;
-        top: 0;
-        bottom: 0;
-        margin: auto 0;
-        width: 14rem; }
-    @media only screen and (min-width: 992px) {
-      nav.main .logo:after {
-        position: absolute;
-        right: -20rem;
-        width: 4rem;
-        height: calc(100% - .5rem);
-        content: "";
-        background: linear-gradient(to right, #fff, transparent); } }
-    @media only screen and (max-width: 992px) {
-      nav.main .logo {
-        flex: 0 0 13rem; }
-        nav.main .logo a {
-          width: 14rem; }
-          nav.main .logo a img {
-            width: 13rem; } }
-  nav.main .menu {
-    flex: 1;
-    order: 1; }
-    nav.main .menu ul {
-      margin: 0;
-      padding: 0; }
-      nav.main .menu ul li {
-        list-style: none;
-        white-space: nowrap; }
-        nav.main .menu ul li a {
-          text-decoration: none; }
-    nav.main .menu > ul > li > a {
-      font-family: "RobotoSlabRegular", sans-serif;
-      font-size: 1.125rem;
-      color: #938d85; }
-  nav.main:not(.active) .menu > ul {
-    display: flex;
-    flex-flow: row nowrap;
-    justify-content: flex-end; }
-    nav.main:not(.active) .menu > ul > li {
-      flex: 0;
-      position: relative; }
-      nav.main:not(.active) .menu > ul > li a {
-        padding: 1rem 2rem; }
-      nav.main:not(.active) .menu > ul > li:not(.dropdown) > a:hover {
-        border-bottom: 2px #00828d solid; }
-      nav.main:not(.active) .menu > ul > li.dropdown > a:after {
-        background-image: url("/static/images/sprites.svg#icon-arrow-down-link-nav");
-        vertical-align: bottom;
-        display: inline-block;
-        background-repeat: no-repeat;
-        background-size: cover;
-        content: ' ';
-        width: 1.5rem;
-        height: 1.5rem;
-        position: absolute;
-        margin: .5rem;
-        width: .7rem;
-        height: .7rem; }
-      nav.main:not(.active) .menu > ul > li.dropdown > ul {
-        position: absolute;
-        opacity: 0;
-        visibility: hidden;
-        top: 7rem;
-        margin-top: -7px;
-        background: #fff;
-        padding: 1.5rem;
-        z-index: 700;
-        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.4);
-        transition: top .1s ease-in-out, opacity .2s ease-in-out; }
-        nav.main:not(.active) .menu > ul > li.dropdown > ul:before {
-          height: 0;
-          width: 0;
-          content: "";
-          display: block;
-          position: absolute;
-          border-left: 0.7rem solid transparent;
-          border-right: 0.7rem solid transparent;
-          border-bottom: 0.7rem solid #fff;
-          left: 2rem;
-          top: -.7rem; }
-        nav.main:not(.active) .menu > ul > li.dropdown > ul li a {
-          display: block;
-          width: 100%;
-          padding: .5rem 1rem; }
-      nav.main:not(.active) .menu > ul > li.dropdown a:focus + ul,
-      nav.main:not(.active) .menu > ul > li.dropdown:hover > ul,
-      nav.main:not(.active) .menu > ul > li.dropdown.focus > ul {
-        visibility: visible;
-        top: 3rem;
-        opacity: 1; }
-  @media only screen and (max-width: 992px) {
-    nav.main .menu > ul {
-      display: block;
-      position: absolute;
-      top: -100%;
-      left: 0;
-      opacity: 0;
-      width: 100vw;
-      visibility: hidden;
-      background: #fff;
-      transition: top .2s ease-in-out, opacity .4s ease-in-out;
-      z-index: 700;
-      box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.4);
-      padding: 1rem 2rem; }
-      nav.main .menu > ul li a {
-        display: block;
-        width: 100%;
-        padding: .3rem 0; }
-      nav.main .menu > ul > li > a {
-        text-decoration: underline; }
-      nav.main .menu > ul > li > ul > li {
-        padding-left: .5rem; }
-    nav.main.active .menu > ul {
-      visibility: visible;
-      opacity: 1;
-      top: 5rem; } }
-  nav.main .search {
-    position: relative;
-    flex: 0;
-    order: 2;
-    height: 3rem;
-    margin: -.5rem 0 0 1rem; }
-    nav.main .search input#search {
-      position: relative;
-      width: 3rem;
-      opacity: 0;
-      height: 3rem;
-      cursor: pointer;
-      opacity: 0;
-      border: 1px #aeadaf solid;
-      z-index: 700;
-      padding: 0 1rem 0 1rem;
-      background: transparent; }
-      @media only screen and (min-width: 992px) {
-        nav.main .search input#search {
-          transition: width .5s ease-in-out, opacity .5s ease-in-out; } }
-      nav.main .search input#search:focus, nav.main .search input#search.focus {
-        cursor: text;
-        width: 12rem;
-        opacity: 1;
-        padding: 0 1rem 0 3rem;
-        outline: 0; }
-    nav.main .search ul.search-results {
-      list-style: none;
-      white-space: nowrap; }
-      @media screen and (min-width: 992px) {
-        nav.main .search ul.search-results {
-          position: absolute;
-          opacity: 0;
-          visibility: hidden;
-          top: 7rem;
-          margin-top: -7px;
-          background: #fff;
-          padding: 1.5rem;
-          z-index: 700;
-          box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.4);
-          transition: top .1s ease-in-out, opacity .2s ease-in-out;
-          right: 1rem;
-          text-align: right; }
-          nav.main .search ul.search-results:before {
-            height: 0;
-            width: 0;
-            content: "";
-            display: block;
-            position: absolute;
-            border-left: 0.7rem solid transparent;
-            border-right: 0.7rem solid transparent;
-            border-bottom: 0.7rem solid #fff;
-            left: 2rem;
-            top: -.7rem; }
-          nav.main .search ul.search-results li a {
-            display: block;
-            width: 100%;
-            padding: .5rem 1rem; }
-          nav.main .search ul.search-results:before {
-            left: initial;
-            right: 1rem; } }
-      nav.main .search ul.search-results.focus {
-        visibility: visible;
-        top: 4rem;
-        opacity: 1; }
-    nav.main .search .spinner {
-      display: block;
-      position: absolute;
-      z-index: 600;
-      top: .7rem;
-      left: .8rem; }
-      nav.main .search .spinner.loading {
-        margin: -.1rem 0 0 -.3rem; }
-    nav.main .search .spinner:not(.loading) {
-      cursor: pointer; }
-      nav.main .search .spinner:not(.loading):after {
-        background-image: url("/static/images/sprites.svg#icon-search-link-nav");
-        vertical-align: bottom;
-        display: inline-block;
-        background-repeat: no-repeat;
-        background-size: cover;
-        content: ' ';
-        width: 1.5rem;
-        height: 1.5rem;
-        margin: -.1rem 0 0 -.1rem;
-        width: 1.75rem;
-        height: 1.75rem; }
-  @media only screen and (max-width: 992px) {
-    nav.main .search {
-      top: 0;
-      background: transparent; }
-      nav.main .search input#search {
-        transition: none; }
-    nav.main.search-mode .search {
-      width: 100vw;
-      display: block;
-      position: absolute;
-      top: 5rem;
-      background: #fff;
-      box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.4);
-      padding: 1rem 2rem;
-      margin: 0;
-      left: 0;
-      height: auto;
-      transition: top .05s ease-in-out, background .1s ease-in-out; }
-      nav.main.search-mode .search input#search {
-        width: 100%;
-        transition: width .2s ease-in-out; }
-      nav.main.search-mode .search .spinner {
-        margin: 1rem 0 0 2rem; }
-      nav.main.search-mode .search ul.search-results {
-        display: block;
-        position: absolute;
-        top: -100%;
-        left: 0;
-        opacity: 0;
-        width: 100vw;
-        visibility: hidden;
-        background: #fff;
-        transition: top .2s ease-in-out, opacity .4s ease-in-out;
-        z-index: 700;
-        box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.4);
-        padding: 1rem 2rem; }
-        nav.main.search-mode .search ul.search-results li a {
-          display: block;
-          width: 100%;
-          padding: .3rem 0; }
-        nav.main.search-mode .search ul.search-results > li > a {
-          text-decoration: underline; }
-        nav.main.search-mode .search ul.search-results > li > ul > li {
-          padding-left: .5rem; }
-        nav.main.search-mode .search ul.search-results.focus {
-          visibility: visible;
-          top: 4rem;
-          opacity: 1; } }
-
-nav a.vegan-burger {
-  width: 32px;
-  display: none;
-  position: relative;
-  padding: 0;
-  order: 3;
-  flex: 0 0 32px;
-  height: 32px;
-  transition: .25s ease-in-out;
-  margin-left: .5rem;
-  overflow: hidden; }
-  @media only screen and (max-width: 992px) {
-    nav a.vegan-burger {
-      display: block; } }
-  nav a.vegan-burger span {
-    display: block;
-    position: absolute;
-    height: 4px;
-    width: 100%;
-    background: #aeadaf;
-    opacity: 1;
-    left: 0;
-    transform: rotate(0deg);
-    transition: .25s ease-in-out; }
-  nav a.vegan-burger span:nth-child(1) {
-    top: 0; }
-  nav a.vegan-burger span:nth-child(2) {
-    top: 10px;
-    transition: .3s ease-in-out; }
-  nav a.vegan-burger span:nth-child(3) {
-    top: 20px; }
-
-nav.active a.vegan-burger span:nth-child(1) {
-  transform: rotate(135deg);
-  top: 10px; }
-
-nav.active a.vegan-burger span:nth-child(2) {
-  top: 32px;
-  opacity: 0; }
-
-nav.active a.vegan-burger span:nth-child(3) {
-  transform: rotate(-135deg);
-  top: 10px; }
-
-.skip-to-content {
-  display: inline-block;
-  position: fixed;
-  top: -5rem;
-  left: 0;
-  transition: top .2s ease-in-out;
-  height: 5rem;
-  line-height: 5rem;
-  font-size: 150%;
-  width: 15rem;
-  text-align: center;
-  z-index: 800;
-  background: #fff; }
-  .skip-to-content:active, .skip-to-content:focus {
-    top: 0;
-    border: #aeadaf 3px dashed; }
-
-.back-to-top {
-  display: block;
-  position: fixed;
-  z-index: 800;
-  width: 2.5rem;
-  height: 2.5rem;
-  border: 1px #fff solid;
-  margin: 0 1rem 1rem 0;
-  cursor: pointer;
-  padding: .25rem;
-  text-decoration: none;
-  background-color: #2b585d;
-  text-align: center;
-  opacity: .65;
-  transform: opacity ease-in-out 100ms;
-  display: none;
-  right: 0;
-  bottom: 0;
-  opacity: 0; }
-  .back-to-top img {
-    width: 100%;
-    height: 100%; }
-  @media only screen and (min-width: 834px) {
-    .back-to-top {
-      padding: 1rem;
-      width: 4rem;
-      height: 4rem;
-      margin: 0 2rem 2rem 0;
-      border: 2px #fff solid; } }
-  @media only screen and (min-width: 1200px) {
-    .back-to-top {
-      margin: 0 3rem 3rem 0; } }
-  .back-to-top:hover, .back-to-top:focus, .back-to-top:active {
-    outline: none; }
-  .back-to-top:hover {
-    opacity: 1; }
-  .back-to-top.fadein {
-    opacity: .65;
-    display: block; }
-    .back-to-top.fadein:hover {
-      opacity: 1; }
-
-/*
- * Create a modal window.
- * Requires a modal wrapper to be a parent element.
- * @param $target-width unit Try to make the modal this wide, smaller when less
- *        space available.
- */
-body.modal-active > *:not(.modal-wrapper) {
-  filter: blur(3px) grayscale(90%); }
-
-.modal-wrapper {
-  position: fixed;
-  width: 100%;
-  height: 100vh;
-  top: 0;
-  bottom: 0;
-  right: 0;
-  left: 0;
-  display: flex;
-  justify-content: center;
-  flex-flow: row nowrap;
-  align-content: center;
-  align-items: center;
-  z-index: 700; }
-  .modal-wrapper.curtain {
-    background: rgba(255, 255, 255, 0.4); }
-  .modal-wrapper .modal {
-    display: block;
-    position: relative;
-    max-height: calc(100vh - 2rem);
-    overflow: hidden;
-    flex: 0 1 70vw;
-    max-width: 55rem;
-    background: #fff;
-    margin: 1rem;
-    border: 2px #2b585d solid;
-    z-index: 700; }
-    @media only screen and (max-width: 768px) {
-      .modal-wrapper .modal {
-        max-width: calc(100vw - 2rem);
-        flex: 1 0 100vw; } }
-    .modal-wrapper .modal header {
-      display: block;
-      position: relative;
-      background: #2b585d;
-      padding: 2rem 2rem 1rem 2rem;
-      overflow-y: auto;
-      z-index: 800; }
-      .modal-wrapper .modal header h5 {
-        max-width: calc(100% - 3rem);
-        color: #fff; }
-      @media only screen and (max-height: 512px) {
-        .modal-wrapper .modal header {
-          padding: 1rem 1rem 0rem 1rem; }
-          .modal-wrapper .modal header button.close {
-            top: 1.1rem;
-            right: .75rem; }
-          .modal-wrapper .modal header h5 {
-            max-width: calc(100% - 2rem); } }
-    .modal-wrapper .modal .overflow-indicator-top, .modal-wrapper .modal .overflow-indicator-bottom {
-      position: absolute;
-      display: block;
-      background: transparent;
-      z-index: 700;
-      width: 100%;
-      height: 5.6rem;
-      top: 0;
-      box-shadow: 0 1.2rem 2rem #fff; }
-      @media only screen and (max-height: 512px) {
-        .modal-wrapper .modal .overflow-indicator-top, .modal-wrapper .modal .overflow-indicator-bottom {
-          height: 2.6rem; } }
-    .modal-wrapper .modal .overflow-indicator-bottom {
-      position: absolute;
-      top: -1px;
-      box-shadow: 0 -1.2rem 2rem #fff; }
-    .modal-wrapper .modal main {
-      display: block;
-      position: relative;
-      max-height: calc(100vh - 20rem);
-      overflow-y: auto;
-      width: 100%;
-      padding: 2rem 2rem 2.5rem 2rem;
-      font-size: 1.125rem;
-      z-index: 600;
-      margin-bottom: -1rem; }
-      @media only screen and (max-height: 512px) {
-        .modal-wrapper .modal main {
-          max-height: calc(100vh - 10rem);
-          padding: 1rem 1rem 1.5rem 1rem; } }
-    .modal-wrapper .modal footer {
-      width: calc(100% - 4rem);
-      margin: 1rem 2rem 0 2rem;
-      padding: 1rem 0;
-      display: flex;
-      position: relative;
-      justify-content: flex-end;
-      flex-flow: row nowrap;
-      z-index: 600;
-      align-content: center;
-      align-items: flex-end;
-      border-top: 1px #b7b3ad solid;
-      background: #fff; }
-      .modal-wrapper .modal footer * {
-        z-index: 800; }
-      @media only screen and (max-width: 512px) {
-        .modal-wrapper .modal footer {
-          flex-flow: row wrap; } }
-      @media only screen and (max-height: 512px) {
-        .modal-wrapper .modal footer {
-          margin: 1rem 1rem 0 1rem;
-          width: calc(100% - 2rem); } }
-      .modal-wrapper .modal footer button {
-        flex: 0 0 auto;
-        margin-left: 1rem;
-        padding: .5rem 2rem; }
-        @media only screen and (max-width: 768px) {
-          .modal-wrapper .modal footer button {
-            margin-left: .5rem;
-            padding: .5rem 1rem; } }
-        @media only screen and (max-width: 512px) {
-          .modal-wrapper .modal footer button {
-            flex: 0 0 100%;
-            margin-left: 0;
-            margin-bottom: .5rem; } }
-
-.section-wrapper section.shopping {
-  width: 100%;
-  display: flex;
-  flex-flow: row wrap;
-  justify-content: center;
-  align-items: stretch;
-  align-content: flex-start; }
-  .section-wrapper section.shopping main.product-track, .section-wrapper section.shopping aside.cart-track {
-    flex: 0 0 100%; }
-  .section-wrapper section.shopping aside.cart-track.cart-empty {
-    visibility: hidden; }
-  .section-wrapper section.shopping main.product-track > section > header {
-    margin: 2.5rem 0; }
-  @media screen and (min-width: 79rem) {
-    .section-wrapper section.shopping main.product-track {
-      flex: 1 1 20rem; }
-    .section-wrapper section.shopping aside.cart-track {
-      flex: 0 0 26rem;
-      margin-left: 3rem; } }
-
-.tiles {
-  display: grid;
-  grid-gap: 0 1rem;
-  grid-auto-rows: 0;
-  overflow: hidden;
-  justify-items: stretch;
-  grid-template: repeat(3, 1fr)/1fr;
-  justify-content: space-around; }
-  @media screen and (min-width: 50rem) {
-    .tiles {
-      grid-template: repeat(2, 1fr)/repeat(2, minmax(21rem, 24rem)); } }
-  @media screen and (min-width: 79rem) {
-    .tiles .tile {
-      max-width: 24rem; } }
-  @media screen and (min-width: 101rem) {
-    .tiles {
-      grid-template: auto/repeat(3, minmax(21rem, 24rem)); } }
-  .tiles .tile {
-    width: 100%;
-    margin-bottom: 1.5rem;
-    position: relative;
-    background: #fff;
-    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.4);
-    cursor: pointer;
-    border: 3px #00828d solid;
-    text-align: center; }
-    .tiles .tile header {
-      padding: 1.5rem 0 1rem 0;
-      background: #00828d; }
-      .tiles .tile header h4 {
-        color: #fff; }
-    .tiles .tile table {
-      margin: 1rem;
-      width: calc(100% - 2rem);
-      background: #fff; }
-      .tiles .tile table tr td:nth-child(1) {
-        font-weight: bold; }
-      .tiles .tile table tr td.price {
-        padding: 1rem;
-        text-align: center;
-        font-size: 1.26562rem; }
-      .tiles .tile table ul li {
-        margin: .75rem 0 .75rem 0; }
-    .tiles .tile img.splash {
-      max-width: 50%;
-      height: 125px;
-      margin: 1rem 0 0 0; }
-    .tiles .tile.selected {
-      background: #fcfff2;
-      border: 3px #2b585d solid; }
-      .tiles .tile.selected header {
-        background: #2b585d; }
-      .tiles .tile.selected table {
-        background: #fcfff2; }
-    .tiles .tile .icon-info {
-      margin-left: .5rem; }
-    .tiles .tile > button, .tiles .tile > a.button {
-      display: block;
-      position: relative;
-      margin: 1rem;
-      width: calc(100% - 2rem); }
-  .tiles.more {
-    grid-auto-rows: auto;
-    grid-gap: 1rem; }
-  .tiles .ribbon-wrapper {
-    right: -2px;
-    top: -3px; }
-
-section.shopping aside.cart-track {
-  position: relative; }
-  section.shopping aside.cart-track .shopping-cart {
-    display: flex;
-    max-height: calc(100vh - 80px);
-    position: relative;
-    flex-flow: column;
-    justify-content: flex-start;
-    align-content: flex-start;
-    align-items: flex-start;
-    background: #fff;
-    padding: 2rem 1rem 0.5rem 1rem; }
-    @media screen and (min-width: 79rem) {
-      section.shopping aside.cart-track .shopping-cart {
-        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
-        width: 26rem; } }
-    @media screen and (min-width: 768px) {
-      section.shopping aside.cart-track .shopping-cart {
-        padding: 2rem 2rem 0.5rem 2rem; } }
-    section.shopping aside.cart-track .shopping-cart .contents, section.shopping aside.cart-track .shopping-cart .totals {
-      width: 100%;
-      margin: 0;
-      padding: 0; }
-      section.shopping aside.cart-track .shopping-cart .contents .category, section.shopping aside.cart-track .shopping-cart .totals .category {
-        width: 100%; }
-        section.shopping aside.cart-track .shopping-cart .contents .category .title, section.shopping aside.cart-track .shopping-cart .totals .category .title {
-          font-weight: bold;
-          color: #00828d;
-          font-size: 1.125rem;
-          margin-bottom: .5rem; }
-        section.shopping aside.cart-track .shopping-cart .contents .category .product, section.shopping aside.cart-track .shopping-cart .contents .category .product .aspects .aspect, section.shopping aside.cart-track .shopping-cart .totals .category .product, section.shopping aside.cart-track .shopping-cart .totals .category .product .aspects .aspect {
-          width: 100%;
-          display: flex;
-          flex-flow: row wrap;
-          justify-content: flex-start;
-          align-content: flex-start;
-          align-items: flex-start;
-          margin: .6rem 0; }
-          section.shopping aside.cart-track .shopping-cart .contents .category .product .name, section.shopping aside.cart-track .shopping-cart .contents .category .product .aspects .aspect .name, section.shopping aside.cart-track .shopping-cart .totals .category .product .name, section.shopping aside.cart-track .shopping-cart .totals .category .product .aspects .aspect .name {
-            flex: 1 0 calc(100% - 10rem);
-            overflow-wrap: break-word;
-            word-wrap: break-word;
-            word-break: break-word;
-            hyphens: auto;
-            hyphens: none; }
-          section.shopping aside.cart-track .shopping-cart .contents .category .product .price, section.shopping aside.cart-track .shopping-cart .contents .category .product .aspects .aspect .price, section.shopping aside.cart-track .shopping-cart .totals .category .product .price, section.shopping aside.cart-track .shopping-cart .totals .category .product .aspects .aspect .price {
-            flex: 0 0 7rem;
-            text-align: right;
-            white-space: nowrap; }
-            section.shopping aside.cart-track .shopping-cart .contents .category .product .price:last-child, section.shopping aside.cart-track .shopping-cart .contents .category .product .aspects .aspect .price:last-child, section.shopping aside.cart-track .shopping-cart .totals .category .product .price:last-child, section.shopping aside.cart-track .shopping-cart .totals .category .product .aspects .aspect .price:last-child {
-              margin-right: 3rem; }
-          section.shopping aside.cart-track .shopping-cart .contents .category .product button.delete, section.shopping aside.cart-track .shopping-cart .contents .category .product .aspects .aspect button.delete, section.shopping aside.cart-track .shopping-cart .totals .category .product button.delete, section.shopping aside.cart-track .shopping-cart .totals .category .product .aspects .aspect button.delete {
-            flex: 0 0 3rem; }
-            section.shopping aside.cart-track .shopping-cart .contents .category .product button.delete:before, section.shopping aside.cart-track .shopping-cart .contents .category .product .aspects .aspect button.delete:before, section.shopping aside.cart-track .shopping-cart .totals .category .product button.delete:before, section.shopping aside.cart-track .shopping-cart .totals .category .product .aspects .aspect button.delete:before {
-              background-image: url("/static/images/sprites.svg#icon-delete-link-nav");
-              vertical-align: bottom;
-              display: inline-block;
-              background-repeat: no-repeat;
-              background-size: cover;
-              content: ' ';
-              width: 1.5rem;
-              height: 1.5rem;
-              margin-right: .5rem;
-              width: 1rem;
-              height: 1rem; }
-        section.shopping aside.cart-track .shopping-cart .contents .category .product .aspects, section.shopping aside.cart-track .shopping-cart .totals .category .product .aspects {
-          width: 100%;
-          margin-top: .4rem; }
-          section.shopping aside.cart-track .shopping-cart .contents .category .product .aspects .aspect, section.shopping aside.cart-track .shopping-cart .totals .category .product .aspects .aspect {
-            padding-left: .4rem; }
-            section.shopping aside.cart-track .shopping-cart .contents .category .product .aspects .aspect .name, section.shopping aside.cart-track .shopping-cart .totals .category .product .aspects .aspect .name {
-              flex: 1 0 calc(100% - 10rem); }
-      section.shopping aside.cart-track .shopping-cart .contents .category, section.shopping aside.cart-track .shopping-cart .contents .total, section.shopping aside.cart-track .shopping-cart .contents .sub-total, section.shopping aside.cart-track .shopping-cart .totals .category, section.shopping aside.cart-track .shopping-cart .totals .total, section.shopping aside.cart-track .shopping-cart .totals .sub-total {
-        margin-bottom: .75rem;
-        padding-top: .5rem; }
-        section.shopping aside.cart-track .shopping-cart .contents .category:not(:first-child), section.shopping aside.cart-track .shopping-cart .contents .total:not(:first-child), section.shopping aside.cart-track .shopping-cart .contents .sub-total:not(:first-child), section.shopping aside.cart-track .shopping-cart .totals .category:not(:first-child), section.shopping aside.cart-track .shopping-cart .totals .total:not(:first-child), section.shopping aside.cart-track .shopping-cart .totals .sub-total:not(:first-child) {
-          border-top: 2px #2b585d solid; }
-      section.shopping aside.cart-track .shopping-cart .contents .total, section.shopping aside.cart-track .shopping-cart .contents .sub-total, section.shopping aside.cart-track .shopping-cart .totals .total, section.shopping aside.cart-track .shopping-cart .totals .sub-total {
-        display: flex;
-        flex-flow: row wrap;
-        justify-content: flex-start;
-        align-content: flex-start;
-        align-items: flex-start;
-        font-weight: bold; }
-      section.shopping aside.cart-track .shopping-cart .contents .sub-total div:first-of-type, section.shopping aside.cart-track .shopping-cart .totals .sub-total div:first-of-type {
-        flex: 1 0 calc(100% - 10rem); }
-      section.shopping aside.cart-track .shopping-cart .contents .sub-total div:last-of-type, section.shopping aside.cart-track .shopping-cart .totals .sub-total div:last-of-type {
-        flex: 0 0 7rem;
-        margin-right: 3rem;
-        text-align: right; }
-      section.shopping aside.cart-track .shopping-cart .contents .total, section.shopping aside.cart-track .shopping-cart .totals .total {
-        font-size: 1.26562rem; }
-        section.shopping aside.cart-track .shopping-cart .contents .total .responsive, section.shopping aside.cart-track .shopping-cart .totals .total .responsive {
-          display: none; }
-        section.shopping aside.cart-track .shopping-cart .contents .total div:first-of-type, section.shopping aside.cart-track .shopping-cart .totals .total div:first-of-type {
-          flex: 1 0 calc(100% - 10rem); }
-        section.shopping aside.cart-track .shopping-cart .contents .total .normal, section.shopping aside.cart-track .shopping-cart .totals .total .normal {
-          flex: 0 1 7rem;
-          text-align: right;
-          margin-right: 3rem; }
-        section.shopping aside.cart-track .shopping-cart .contents .total:not(:first-child), section.shopping aside.cart-track .shopping-cart .totals .total:not(:first-child) {
-          border: 0; }
-          section.shopping aside.cart-track .shopping-cart .contents .total:not(:first-child):before, section.shopping aside.cart-track .shopping-cart .totals .total:not(:first-child):before {
-            content: "+";
-            margin-right: .5rem; }
-    section.shopping aside.cart-track .shopping-cart .contents {
-      max-height: calc(100vh - 22rem);
-      overflow-y: auto; }
-    section.shopping aside.cart-track .shopping-cart .overflow-indicator-bottom, section.shopping aside.cart-track .shopping-cart .overflow-indicator-top {
-      position: relative;
-      width: 0;
-      height: 0;
-      border-left: 1rem solid transparent;
-      border-right: 1rem solid transparent;
-      opacity: .3;
-      margin: -3px auto; }
-    section.shopping aside.cart-track .shopping-cart .overflow-indicator-bottom {
-      top: -8px;
-      border-top: 8px solid #000; }
-    section.shopping aside.cart-track .shopping-cart .overflow-indicator-top {
-      top: 8px;
-      border-bottom: 8px solid #000; }
-    section.shopping aside.cart-track .shopping-cart button.close {
-      display: none; }
-    section.shopping aside.cart-track .shopping-cart .conditions {
-      font-size: .8rem;
-      padding: .5rem 0; }
-    section.shopping aside.cart-track .shopping-cart > button, section.shopping aside.cart-track .shopping-cart > a.button {
-      display: block;
-      position: relative;
-      margin: 0rem;
-      width: calc(100% - 0rem); }
-    @media screen and (min-width: 1200px) {
-      section.shopping aside.cart-track .shopping-cart.push-start {
-        top: 40px;
-        position: fixed; }
-      section.shopping aside.cart-track .shopping-cart.push-stop {
-        position: absolute;
-        bottom: 0; } }
-
-section.shopping .shopping-badge {
-  display: block;
-  position: fixed;
-  z-index: 800;
-  width: 2.5rem;
-  height: 2.5rem;
-  border: 1px #fff solid;
-  margin: 0 1rem 1rem 0;
-  cursor: pointer;
-  padding: .25rem;
-  text-decoration: none;
-  background-color: #2b585d;
-  text-align: center;
-  opacity: .65;
-  transform: opacity ease-in-out 100ms;
-  display: none;
-  right: 0;
-  bottom: 0; }
-  section.shopping .shopping-badge img {
-    width: 100%;
-    height: 100%; }
-  @media only screen and (min-width: 834px) {
-    section.shopping .shopping-badge {
-      padding: 1rem;
-      width: 4rem;
-      height: 4rem;
-      margin: 0 2rem 2rem 0;
-      border: 2px #fff solid; } }
-  @media only screen and (min-width: 1200px) {
-    section.shopping .shopping-badge {
-      margin: 0 3rem 3rem 0; } }
-  section.shopping .shopping-badge:hover, section.shopping .shopping-badge:focus, section.shopping .shopping-badge:active {
-    outline: none; }
-  section.shopping .shopping-badge:hover {
-    opacity: 1; }
-  @media only screen and (max-width: 834px) {
-    @keyframes pulse {
-      50% {
-        width: 3.5rem;
-        height: 3.5rem;
-        background: #538d00; } } }
-  @media only screen and (min-width: 834px) {
-    @keyframes pulse {
-      50% {
-        width: 5.5rem;
-        height: 5.5rem;
-        background: #538d00; } } }
-
-@media screen and (max-width: 79rem) {
-  section.shopping aside.cart-track:not(.empty-cart) .shopping-badge {
-    display: block;
-    animation: pulse .5s ease-in-out 2 normal 2s; }
-    section.shopping aside.cart-track:not(.empty-cart) .shopping-badge .count {
-      width: 1.5rem;
-      height: 1.5rem;
-      border-radius: 1.5rem;
-      background: #538d00;
-      color: #ebebeb;
-      text-align: center;
-      position: absolute;
-      left: -0.75rem;
-      top: -0.75rem;
-      line-height: 1.5rem;
-      box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); }
-  section.shopping aside.cart-track .shopping-cart {
-    display: none; }
-  body.responsive-cart-active > nav.main, body.responsive-cart-active > footer {
-    filter: blur(3px) grayscale(90%); }
-  body.responsive-cart-active main > .section-wrapper > *:not(.shopping), body.responsive-cart-active main > .section-wrapper-dark > *:not(.shopping) {
-    filter: blur(3px) grayscale(90%); }
-  body.responsive-cart-active section.shopping > *:not(.cart-track) {
-    filter: blur(3px) grayscale(90%); }
-  body.responsive-cart-active section.shopping aside.cart-track:not(.empty-cart) {
-    position: fixed;
-    width: 100%;
-    height: 100vh;
-    top: 0;
-    bottom: 0;
-    right: 0;
-    left: 0;
-    display: flex;
-    justify-content: center;
-    flex-flow: row nowrap;
-    align-content: center;
-    align-items: center;
-    z-index: 700; }
-    body.responsive-cart-active section.shopping aside.cart-track:not(.empty-cart) .shopping-cart {
-      display: block; }
-      body.responsive-cart-active section.shopping aside.cart-track:not(.empty-cart) .shopping-cart header button.close {
-        display: inline-block;
-        right: 1rem; }
-      body.responsive-cart-active section.shopping aside.cart-track:not(.empty-cart) .shopping-cart header button.delete {
-        right: 3.5rem; }
-    body.responsive-cart-active section.shopping aside.cart-track:not(.empty-cart) .shopping-badge {
-      display: none; }
-    body.responsive-cart-active section.shopping aside.cart-track:not(.empty-cart).curtain {
-      background: rgba(255, 255, 255, 0.4); }
-    body.responsive-cart-active section.shopping aside.cart-track:not(.empty-cart) .shopping-cart {
-      display: block;
-      position: relative;
-      max-height: calc(100vh - 2rem);
-      overflow: hidden;
-      flex: 0 1 70vw;
-      max-width: 55rem;
-      background: #fff;
-      margin: 1rem;
-      border: 2px #2b585d solid;
-      z-index: 700; } }
-    @media only screen and (max-width: 79rem) and (max-width: 768px) {
-      body.responsive-cart-active section.shopping aside.cart-track:not(.empty-cart) .shopping-cart {
-        max-width: calc(100vw - 2rem);
-        flex: 1 0 100vw; } }
-
-.checkout-view {
-  display: flex; }
-  .checkout-view .buttons {
-    margin: 2rem 0 1rem 0; }
-    .checkout-view .buttons button.right {
-      float: right; }
-    .checkout-view .buttons hr {
-      border-color: #ccc; }
-    @media only screen and (max-width: 768px) {
-      .checkout-view .buttons button {
-        width: 100%;
-        margin: .5rem 0; } }
-  .checkout-view table#confirm-table {
-    margin: 2rem 0; }
-    .checkout-view table#confirm-table tr {
-      border-color: #ccc; }
-    .checkout-view table#confirm-table ul {
-      margin: 1rem 0; }
-    .checkout-view table#confirm-table tbody tr:last-of-type {
-      border-bottom: 2px #aaa solid; }
-    .checkout-view table#confirm-table tfoot {
-      font-weight: bold; }
-      .checkout-view table#confirm-table tfoot tr td {
-        height: 3rem; }
-      .checkout-view table#confirm-table tfoot tr:last-of-type {
-        border: 0; }
-  .checkout-view form[name=mfa] .field {
-    width: 16rem;
-    margin-left: calc(50% - 8rem); }
-    .checkout-view form[name=mfa] .field input[type=text] {
-      font-family: monospace;
-      font-size: 1.35rem;
-      padding: .7rem 0;
-      letter-spacing: .8rem;
-      text-align: center; }
-
-.section-wrapper .error-msg {
-  flex: 0 0 100%; }
-
-.loading-div .spinner, .loading-div .message {
-  position: fixed;
-  z-index: 800; }
-
-.loading-div .spinner {
-  left: 50%;
-  top: 50%;
-  margin: -1.5rem -1.5rem 0; }
-
-.loading-div .message {
-  display: block;
-  text-align: center;
-  top: calc(50% + 5rem);
-  width: 100%;
-  font-weight: bold; }
-
-.curtain {
-  background: rgba(255, 255, 255, 0.4);
-  position: fixed;
-  width: 100%;
-  height: 100%; }
-
-section.shopping.blur, .checkout-view.blur {
-  filter: blur(3px) grayscale(90%); }
-
-.field[data-show-with] {
-  display: none; }
-
-.ribbon-wrapper {
-  width: 5.5rem;
-  height: 5.5rem;
-  overflow: hidden;
-  position: absolute;
-  right: -1px;
-  top: -1px; }
-  .ribbon-wrapper .ribbon {
-    background-color: #538d00;
-    box-shadow: 0 0 4px rgba(0, 0, 0, 0.8);
-    color: #fff;
-    font-size: 1rem;
-    left: -5px;
-    line-height: 2rem;
-    padding: 2px 7px;
-    position: relative;
-    text-align: center;
-    top: 15px;
-    transform: rotate(45deg);
-    width: 7.975rem; }
-
-.slider-label {
-  display: block; }
-
-.slider-wrapper {
-  display: block;
-  width: 100%;
-  display: flex;
-  flex-flow: row nowrap;
-  align-items: flex-start;
-  justify-items: flex-start;
-  align-content: stretch; }
-  .slider-wrapper .slider-tip {
-    width: 7rem;
-    max-width: 9rem;
-    height: 2rem;
-    padding: .1rem 1rem;
-    text-align: center;
-    color: #4d4d4d;
-    background: #fff;
-    border: 1px #4d4d4d solid;
-    box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.7);
-    margin: 16px 0 16px 1rem;
-    user-select: none; }
-  .slider-wrapper input[type=range] {
-    position: relative;
-    width: calc(100% - 7rem);
-    max-width: 40rem;
-    display: inline-block;
-    -webkit-appearance: none;
-    margin: 16px 0;
-    height: 2rem;
-    background: rgba(255, 255, 255, 0); }
-    .slider-wrapper input[type=range]:focus {
-      outline: none; }
-    .slider-wrapper input[type=range]::-webkit-slider-runnable-track {
-      width: 100%;
-      height: 10px;
-      cursor: pointer;
-      animate: 0.2s;
-      box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8), 0px 0px 2px rgba(13, 13, 13, 0.8);
-      background: #2b585d;
-      border: 1px solid #2b585d; }
-    .slider-wrapper input[type=range]::-webkit-slider-thumb {
-      box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8), 0px 0px 1px rgba(13, 13, 13, 0.8);
-      border: 1px solid #2b585d;
-      height: 32px;
-      width: 16px;
-      background: #00828d;
-      cursor: pointer;
-      -webkit-appearance: none;
-      margin-top: -12px; }
-    .slider-wrapper input[type=range]:focus::-webkit-slider-runnable-track {
-      background: #33696e; }
-    .slider-wrapper input[type=range]::-moz-range-track {
-      width: 100%;
-      height: 10px;
-      cursor: pointer;
-      animate: 0.2s;
-      box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8), 0px 0px 2px rgba(13, 13, 13, 0.8);
-      background: #2b585d;
-      border: 1px solid #2b585d; }
-    .slider-wrapper input[type=range]::-moz-range-thumb {
-      box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8), 0px 0px 1px rgba(13, 13, 13, 0.8);
-      border: 1px solid #2b585d;
-      height: 32px;
-      width: 16px;
-      background: #00828d;
-      cursor: pointer; }
-    .slider-wrapper input[type=range]::-ms-track {
-      width: 100%;
-      height: 10px;
-      cursor: pointer;
-      animate: 0.2s;
-      background: transparent;
-      border-color: transparent;
-      border-width: 16px 0;
-      color: transparent; }
-    .slider-wrapper input[type=range]::-ms-fill-lower {
-      background: #23484c;
-      border: 1px solid #2b585d;
-      box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8), 0px 0px 2px rgba(13, 13, 13, 0.8); }
-    .slider-wrapper input[type=range]::-ms-fill-upper {
-      background: #2b585d;
-      border: 1px solid #2b585d;
-      box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8), 0px 0px 2px rgba(13, 13, 13, 0.8); }
-    .slider-wrapper input[type=range]::-ms-thumb {
-      box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8), 0px 0px 1px rgba(13, 13, 13, 0.8);
-      border: 1px solid #2b585d;
-      height: 32px;
-      width: 16px;
-      background: #00828d;
-      cursor: pointer; }
-    .slider-wrapper input[type=range]:focus::-ms-fill-lower {
-      background: #2b585d; }
-    .slider-wrapper input[type=range]:focus::-ms-fill-upper {
-      background: #33696e; }
-
-#domaincheck form .field {
-  display: flex;
-  flex-flow: row wrap;
-  align-items: flex-start; }
-  #domaincheck form .field label {
-    width: 100%; }
-  #domaincheck form .field input[type="text"] {
-    flex: 1 1;
-    margin-bottom: 0;
-    font-size: 1.4rem;
-    padding: 1.2rem; }
-  #domaincheck form .field button {
-    flex: 0 1 12.5rem;
-    margin: 0 0 0 1rem;
-    height: 4.1rem; }
-  #domaincheck form .field .msg {
-    flex: 0 0 100%; }
-  @media screen and (max-width: 512px) {
-    #domaincheck form .field button {
-      flex: 0 1 50rem;
-      margin: 1rem 0 2rem 0; } }
-
-#domaincheck .results-common:nth-of-type(1), #domaincheck .results-uncommon:nth-of-type(1) {
-  margin-top: 3rem; }
-
-#domaincheck .results-common .row, #domaincheck .results-uncommon .row {
-  display: grid;
-  grid-template-areas: "domain status price order";
-  grid-template-rows: 4rem;
-  grid-template-columns: 1fr 6rem 6rem 12.5rem;
-  gap: 2rem 2rem;
-  align-items: center;
-  border-bottom: 2px solid #ccc; }
-  #domaincheck .results-common .row .cell, #domaincheck .results-uncommon .row .cell {
-    font-size: 1rem; }
-    #domaincheck .results-common .row .cell.domain, #domaincheck .results-common .row .cell.status, #domaincheck .results-common .row .cell.price, #domaincheck .results-uncommon .row .cell.domain, #domaincheck .results-uncommon .row .cell.status, #domaincheck .results-uncommon .row .cell.price {
-      white-space: nowrap;
-      overflow: hidden; }
-    #domaincheck .results-common .row .cell.domain, #domaincheck .results-common .row .cell.status, #domaincheck .results-uncommon .row .cell.domain, #domaincheck .results-uncommon .row .cell.status {
-      text-overflow: ellipsis; }
-    #domaincheck .results-common .row .cell.domain, #domaincheck .results-uncommon .row .cell.domain {
-      grid-area: domain;
-      font-weight: bold;
-      direction: rtl;
-      text-align: left; }
-    #domaincheck .results-common .row .cell.status, #domaincheck .results-uncommon .row .cell.status {
-      grid-area: status;
-      font-weight: bold; }
-    #domaincheck .results-common .row .cell.price, #domaincheck .results-uncommon .row .cell.price {
-      grid-area: price; }
-    #domaincheck .results-common .row .cell.order, #domaincheck .results-uncommon .row .cell.order {
-      grid-area: order; }
-      #domaincheck .results-common .row .cell.order button, #domaincheck .results-uncommon .row .cell.order button {
-        width: 100%; }
-      #domaincheck .results-common .row .cell.order .spinner, #domaincheck .results-uncommon .row .cell.order .spinner {
-        position: relative;
-        left: calc(50% - 1rem);
-        top: calc(50% - 1rem); }
-  #domaincheck .results-common .row.status-transfer .cell.status, #domaincheck .results-uncommon .row.status-transfer .cell.status {
-    color: #aeadaf; }
-  #domaincheck .results-common .row.status-transfer .cell.order, #domaincheck .results-uncommon .row.status-transfer .cell.order {
-    color: #355a00;
-    font-weight: bold; }
-    #domaincheck .results-common .row.status-transfer .cell.order button:before, #domaincheck .results-uncommon .row.status-transfer .cell.order button:before {
-      background-image: url("/static/images/sprites.svg#icon-transfer-dark");
-      vertical-align: bottom;
-      display: inline-block;
-      background-repeat: no-repeat;
-      background-size: cover;
-      content: ' ';
-      width: 1.5rem;
-      height: 1.5rem;
-      margin-right: .5rem; }
-  #domaincheck .results-common .row.status-order .cell.status, #domaincheck .results-uncommon .row.status-order .cell.status {
-    color: #355a00; }
-  #domaincheck .results-common .row.status-order .cell.order button:before, #domaincheck .results-uncommon .row.status-order .cell.order button:before {
-    background-image: url("/static/images/sprites.svg#icon-basket-add-dark");
-    vertical-align: bottom;
-    display: inline-block;
-    background-repeat: no-repeat;
-    background-size: cover;
-    content: ' ';
-    width: 1.5rem;
-    height: 1.5rem;
-    margin-right: .5rem; }
-  #domaincheck .results-common .row.status-timeout .cell.order, #domaincheck .results-uncommon .row.status-timeout .cell.order {
-    text-align: center;
-    font-weight: bold;
-    color: #aeadaf; }
-  @media screen and (max-width: 768px) {
-    #domaincheck .results-common .row, #domaincheck .results-uncommon .row {
-      grid-template-areas: "domain status order" "domain price order";
-      grid-template-rows: 2rem 2rem;
-      grid-template-columns: 1fr 6rem 4rem;
-      gap: 0 1rem;
-      padding: .5rem 0; }
-      #domaincheck .results-common .row .cell.order button, #domaincheck .results-uncommon .row .cell.order button {
-        height: 4rem;
-        padding: 0 1.2rem; }
-        #domaincheck .results-common .row .cell.order button .btn-text, #domaincheck .results-uncommon .row .cell.order button .btn-text {
-          display: none; }
-      #domaincheck .results-common .row .cell.status, #domaincheck .results-uncommon .row .cell.status {
-        text-transform: uppercase;
-        font-size: 80%; }
-      #domaincheck .results-common .row .cell.status, #domaincheck .results-common .row .cell.price, #domaincheck .results-uncommon .row .cell.status, #domaincheck .results-uncommon .row .cell.price {
-        text-align: center; } }
-
-#domaincheck-section {
-  /* On wide screens, the next section has a bigger margin. This leads to the
-   * domain checker not being in the middle of its section. We hack this by
-   * giving it a negative bottom margin
-   */
-  margin-top: 2rem; }
-  @media screen and (min-width: 768px) {
-    #domaincheck-section {
-      margin-bottom: -1rem; } }
-
-.features {
-  display: flex;
-  width: 100%;
-  flex-wrap: wrap;
-  justify-content: space-between; }
-  .features .feature-tile {
-    margin: 2rem 0 2rem 0;
-    display: block;
-    flex: 1 1 36rem;
-    justify-content: space-between; }
-    @media only screen and (min-width: 834px) {
-      .features .feature-tile {
-        display: flex;
-        justify-content: space-between;
-        align-items: flex-start;
-        align-content: flex-start; } }
-    .features .feature-tile img {
-      margin: 2rem;
-      position: relative; }
-      @media only screen and (max-width: 512px) {
-        .features .feature-tile img {
-          display: block;
-          margin: 2rem auto;
-          max-width: calc(100% - 4rem); } }
-      @media only screen and (min-width: 512px) and (max-width: 834px) {
-        .features .feature-tile img {
-          float: left;
-          width: 7rem;
-          height: 7rem; } }
-      @media only screen and (min-width: 834px) {
-        .features .feature-tile img {
-          flex: 0 0 9rem;
-          height: 9rem;
-          width: 9rem; } }
-    .features .feature-tile main header h1, .features .feature-tile main header h2, .features .feature-tile main header h3, .features .feature-tile main header h4, .features .feature-tile main header h5, .features .feature-tile main header h6 {
-      clear: none; }
-    @media only screen and (max-width: 512px) {
-      .features .feature-tile main {
-        display: block; } }
-    @media only screen and (min-width: 834px) {
-      .features .feature-tile main {
-        flex: 1 1 30rem; } }
-    .features .feature-tile main ul, .features .feature-tile main ol {
-      display: block; }
-
-.testimonial {
-  margin: 2rem -1rem 1rem -1rem; }
-  @media only screen and (min-width: 834px) {
-    .testimonial {
-      display: flex;
-      margin: 3rem 0 2rem 0; } }
-  .testimonial img {
-    width: 150px;
-    height: 150px;
-    border-radius: 80px;
-    border: 4px #fff solid; }
-    @media only screen and (max-width: 834px) {
-      .testimonial img {
-        position: relative;
-        margin: 2rem 0 1rem -75px;
-        left: 50%;
-        z-index: 800; } }
-    @media only screen and (min-width: 834px) {
-      .testimonial img {
-        flex: 0 0 150px; } }
-  .testimonial main {
-    order: 0;
-    background: #fff;
-    color: #4d4d4d;
-    position: relative;
-    padding: 2rem .5rem; }
-    @media only screen and (max-width: 834px) {
-      .testimonial main {
-        margin: -90px 0 0 0;
-        padding-top: 75px;
-        z-index: 700; } }
-    @media only screen and (min-width: 834px) {
-      .testimonial main {
-        flex: 1 1 20rem; } }
-    @media only screen and (min-width: 768px) {
-      .testimonial main {
-        padding: 2rem; } }
-    @media only screen and (min-width: 834px) {
-      .testimonial main:before {
-        position: absolute;
-        display: block;
-        height: 3rem;
-        width: 3rem;
-        color: #fff;
-        font-size: 3rem; } }
-  @media only screen and (min-width: 834px) {
-    .testimonial:nth-of-type(odd) img {
-      margin-right: 2rem; }
-    .testimonial:nth-of-type(odd) main:before {
-      height: 0;
-      width: 0;
-      content: "";
-      display: block;
-      position: absolute;
-      border-top: 1rem solid transparent;
-      border-right: 1rem solid #fff;
-      border-bottom: 1rem solid transparent;
-      top: 2rem;
-      left: -1rem; }
-    .testimonial:nth-of-type(even) img {
-      order: 1;
-      margin-left: 2rem; }
-    .testimonial:nth-of-type(even) main:before {
-      height: 0;
-      width: 0;
-      content: "";
-      display: block;
-      position: absolute;
-      border-top: 1rem solid transparent;
-      border-left: 1rem solid #fff;
-      border-bottom: 1rem solid transparent;
-      top: 2rem;
-      right: -1rem; } }
-
-section .testimonial a {
-  color: #00828d; }
-  section .testimonial a:hover {
-    color: #204246; }
-  section .testimonial a[target="_blank"]:after {
-    background-image: url("/static/images/sprites.svg#icon-new-tab-link");
-    vertical-align: bottom;
-    display: inline-block;
-    background-repeat: no-repeat;
-    background-size: cover;
-    content: ' ';
-    width: 1.5rem;
-    height: 1.5rem;
-    margin-left: .2rem;
-    width: 1.2rem;
-    height: 1.2rem;
-    vertical-align: top; }
-  section .testimonial a[target="_blank"]:hover:after {
-    background-image: url("/static/images/sprites.svg#icon-new-tab-link-active");
-    vertical-align: bottom;
-    display: inline-block;
-    background-repeat: no-repeat;
-    background-size: cover;
-    content: ' ';
-    width: 1.5rem;
-    height: 1.5rem;
-    margin-left: .2rem;
-    width: 1.2rem;
-    height: 1.2rem;
-    vertical-align: top; }
-
-.section-wrapper-dark section.topic, .section-wrapper section.topic {
-  display: grid;
-  justify-items: stretch;
-  justify-content: center;
-  grid-auto-flow: row; }
-  .section-wrapper-dark section.topic > *, .section-wrapper section.topic > * {
-    grid-column: 1 / -1; }
-  .section-wrapper-dark section.topic main, .section-wrapper section.topic main {
-    grid-area: main; }
-  .section-wrapper-dark section.topic header, .section-wrapper section.topic header {
-    grid-area: header; }
-  .section-wrapper-dark section.topic aside, .section-wrapper section.topic aside {
-    grid-area: aside; }
-  @media screen and (max-width: 992px) {
-    .section-wrapper-dark section.topic, .section-wrapper section.topic {
-      grid-template-columns: auto;
-      grid-template-rows: auto;
-      grid-template-areas: "header" "aside" "main"; }
-      .section-wrapper-dark section.topic aside, .section-wrapper section.topic aside {
-        width: auto;
-        grid-row-gap: 1.5rem; } }
-  @media screen and (min-width: 992px) {
-    .section-wrapper-dark section.topic, .section-wrapper section.topic {
-      grid-column-gap: 2rem;
-      grid-template-columns: auto 33%;
-      grid-template-areas: "header aside" "main aside";
-      grid-template-rows: auto auto auto; } }
-  @media screen and (min-width: 992px) and (-ms-high-contrast: active), screen and (min-width: 992px) and (-ms-high-contrast: none) {
-    .section-wrapper-dark section.topic header, .section-wrapper-dark section.topic main, .section-wrapper section.topic header, .section-wrapper section.topic main {
-      max-width: 55rem;
-      margin-right: 33%; }
-    .section-wrapper-dark section.topic aside, .section-wrapper section.topic aside {
-      width: 33%;
-      float: right; } }
-  @media screen and (max-width: 992px) {
-    .section-wrapper-dark section.topic aside, .section-wrapper section.topic aside {
-      width: auto;
-      margin: 1rem 0 1.5rem 0; } }
-  .section-wrapper-dark section.topic aside, .section-wrapper section.topic aside {
-    display: flex;
-    flex-flow: row nowrap;
-    justify-content: center; }
-    .section-wrapper-dark section.topic aside img, .section-wrapper section.topic aside img {
-      flex: 0 1 16rem; }
-
-.blog-intro, .document, .blog-post, .icon-heading {
-  display: grid;
-  grid-gap: 0 3rem;
-  align-content: start; }
-  .blog-intro header, .document header, .blog-post header, .icon-heading header {
-    grid-area: header;
-    margin-bottom: 1.5rem; }
-  .blog-intro aside, .document aside, .blog-post aside, .icon-heading aside {
-    grid-area: aside-left; }
-    .blog-intro aside img, .document aside img, .blog-post aside img, .icon-heading aside img {
-      width: 9rem; }
-    .blog-intro aside .meta, .document aside .meta, .blog-post aside .meta, .icon-heading aside .meta {
-      margin: 2rem 0 0 0; }
-      .blog-intro aside .meta strong, .document aside .meta strong, .blog-post aside .meta strong, .icon-heading aside .meta strong {
-        display: block; }
-  .blog-intro article, .blog-intro main, .document article, .document main, .blog-post article, .blog-post main, .icon-heading article, .icon-heading main {
-    grid-area: main;
-    overflow: hidden; }
-
-section.blog-post, section.blog-intro {
-  flex: 0 1 46rem;
-  grid-template-areas: "header" "aside-left" "main" "tags";
-  grid-template-columns: 1fr;
-  grid-template-rows: auto; }
-  section.blog-post div.tags, section.blog-intro div.tags {
-    grid-area: tags;
-    align-self: end;
-    margin-top: 1.5rem; }
-    section.blog-post div.tags ul, section.blog-intro div.tags ul {
-      margin: 0;
-      padding: 0;
-      display: inline;
-      list-style: none; }
-      section.blog-post div.tags ul li, section.blog-intro div.tags ul li {
-        margin: 0 .25rem 0 .1rem;
-        padding: 0;
-        display: inline-block; }
-  section.blog-post article figure, section.blog-intro article figure {
-    margin: 1rem auto; }
-  section.blog-post article > img, section.blog-post article p > img, section.blog-intro article > img, section.blog-intro article p > img {
-    margin: 1rem auto;
-    max-height: 100vh; }
-
-@media screen and (min-width: 768px) {
-  section.blog-post, section.blog-intro {
-    flex: 0 1 55rem;
-    grid-template-areas: "aside-left header" "aside-left main" "aside-left tags";
-    grid-template-columns: 9rem 1fr;
-    grid-template-rows: auto 1fr auto; } }
-
-.document, .icon-heading {
-  flex: 0 1 46rem;
-  grid-template-areas: "header" "aside-left" "main";
-  grid-template-columns: auto;
-  grid-template-rows: auto; }
-
-@media screen and (min-width: 768px) {
-  .document, .icon-heading {
-    flex: 0 1 55rem;
-    grid-template-areas: "aside-left header" "aside-left main";
-    grid-template-columns: 9rem 1fr;
-    grid-template-rows: auto 1fr; } }
-
-#incidents {
-  width: 100%;
-  margin: 0px;
-  padding: 0px; }
-
-.incident.status {
-  width: 100%;
-  display: flex;
-  justify-content: space-around;
-  align-items: center;
-  align-content: flex-start;
-  flex-flow: row nowrap;
-  padding: 1rem; }
-  .incident.status.bad {
-    background-color: #e3bfc2;
-    border-color: #8d000d;
-    color: #5a0008; }
-    .incident.status.bad aside {
-      color: #60393d; }
-    .incident.status.bad a, .incident.status.bad a:visited, .incident.status.bad a:active {
-      color: #5a0008; }
-    .incident.status.bad a:hover {
-      color: #8d000d; }
-  .incident.status.warn {
-    background-color: #e6d3c7;
-    border-color: #c04900;
-    color: #5a2200; }
-    .incident.status.warn aside {
-      color: #604839; }
-    .incident.status.warn a, .incident.status.warn a:visited, .incident.status.warn a:active {
-      color: #5a2200; }
-    .incident.status.warn a:hover {
-      color: #c04900; }
-  .incident.status.good {
-    background-color: #cbddb3;
-    border-color: #538d00;
-    color: #355a00; }
-    .incident.status.good aside {
-      color: #506039; }
-    .incident.status.good a, .incident.status.good a:visited, .incident.status.good a:active {
-      color: #355a00; }
-    .incident.status.good a:hover {
-      color: #538d00; }
-  .incident.status.info {
-    background-color: #bceaee;
-    border-color: #00828d;
-    color: #00535a; }
-    .incident.status.info aside {
-      color: #395d60; }
-    .incident.status.info a, .incident.status.info a:visited, .incident.status.info a:active {
-      color: #00535a; }
-    .incident.status.info a:hover {
-      color: #00828d; }
-  .incident.status section {
-    margin: 0;
-    display: block;
-    flex: 0 1 80rem; }
-    @media only screen and (min-width: 834px) {
-      .incident.status section {
-        display: flex;
-        justify-content: flex-start;
-        align-items: flex-start;
-        align-content: flex-start;
-        flex-flow: row nowrap;
-        padding: 2rem 2rem; } }
-    @media only screen and (max-width: 834px) {
-      .incident.status section img {
-        float: left;
-        position: relative;
-        margin: 0 1rem 1rem 0;
-        width: 4rem;
-        height: 4rem; } }
-    @media only screen and (min-width: 834px) {
-      .incident.status section img {
-        flex: 0 0 6rem;
-        height: 6rem;
-        width: 6rem;
-        margin-right: 2rem; } }
-    .incident.status section main {
-      display: flex;
-      justify-content: space-between;
-      flex-flow: row wrap;
-      align-items: flex-start;
-      align-content: flex-start; }
-      @media only screen and (min-width: 834px) {
-        .incident.status section main {
-          flex: 1 1 100%; } }
-      .incident.status section main header {
-        flex: 1 1 100%;
-        font-weight: bold; }
-        @media only screen and (min-width: 992px) {
-          .incident.status section main header {
-            flex: 1 0 20rem; } }
-      .incident.status section main aside {
-        flex: 1 1 100%; }
-        @media only screen and (min-width: 992px) {
-          .incident.status section main aside {
-            flex: 0 1 18rem;
-            align-item: right;
-            text-align: right; } }
-      .incident.status section main p {
-        flex: 1 0 100%;
-        margin-top: 1.5rem; }
-
-.tooltip {
-  position: relative;
-  display: inline-block; }
-  .tooltip .tooltip-text {
-    position: absolute;
-    opacity: 0;
-    transition: opacity .3s;
-    z-index: 800;
-    width: 20rem;
-    visibility: hidden;
-    background-color: #fff;
-    color: #4d4d4d;
-    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.8); }
-    .tooltip .tooltip-text main, .tooltip .tooltip-text header {
-      padding: 1rem; }
-    .tooltip .tooltip-text header {
-      text-align: center;
-      height: 4rem !important;
-      padding: 1rem !important;
-      font-family: "RobotoSlabLight", sans-serif;
-      font-size: 1.2rem;
-      background: #2b585d !important;
-      color: #ebebeb; }
-    .tooltip .tooltip-text main {
-      font-weight: normal; }
-    .tooltip .tooltip-text:after {
-      content: " ";
-      position: absolute;
-      border-width: 10px;
-      border-style: solid; }
-  .tooltip:not(.click):hover .tooltip-text {
-    visibility: visible;
-    opacity: 1; }
-  .tooltip:focus {
-    outline: none; }
-    .tooltip:focus .tooltip-text {
-      visibility: visible;
-      opacity: 1; }
-  .tooltip.right .tooltip-text, .tooltip.left .tooltip-text {
-    transform: translate(0, -50%);
-    margin-top: -2rem; }
-    .tooltip.right .tooltip-text:after, .tooltip.left .tooltip-text:after {
-      top: 50%; }
-  .tooltip.right .tooltip-text {
-    left: calc(100% + 10px); }
-    .tooltip.right .tooltip-text:after {
-      left: -20px;
-      border-color: transparent #fff transparent transparent; }
-  .tooltip.left .tooltip-text {
-    right: calc(100% + 10px); }
-    .tooltip.left .tooltip-text:after {
-      right: -20px;
-      border-color: transparent transparent transparent #fff; }
-  .tooltip.top .tooltip-text, .tooltip.bottom .tooltip-text {
-    left: calc(50% + 4px);
-    margin-left: -11rem; }
-    .tooltip.top .tooltip-text:after, .tooltip.bottom .tooltip-text:after {
-      margin-left: -10px;
-      left: 50%; }
-  .tooltip.bottom .tooltip-text {
-    top: calc(100% + 7px); }
-    .tooltip.bottom .tooltip-text:after {
-      border-color: transparent transparent #2b585d transparent;
-      bottom: 100%; }
-  .tooltip.top .tooltip-text {
-    bottom: calc(100% + 7px); }
-    .tooltip.top .tooltip-text:after {
-      border-color: #fff transparent transparent transparent;
-      top: 100%; }
-
-a.tooltip, a.tooltip:hover, a.tooltip:focus, a.tooltip:active {
-  text-decoration: none; }
-
-ul.breadcrumbs {
-  display: inline-block;
-  padding: 0;
-  margin-bottom: 1rem;
-  z-index: 200;
-  overflow-x: auto;
-  overflow-y: hidden;
-  max-width: 100%;
-  white-space: nowrap;
-  box-shadow: 0 0 2px rgba(0, 0, 0, 0.4); }
-  ul.breadcrumbs * {
-    white-space: nowrap; }
-  ul.breadcrumbs li {
-    display: inline-block;
-    position: relative;
-    list-style: none;
-    padding: 0;
-    max-height: 3rem;
-    transition: background 0.3s; }
-    ul.breadcrumbs li:before {
-      position: absolute;
-      content: "";
-      width: 100%;
-      height: 100%;
-      top: 0;
-      left: 0;
-      transition: background 0.3s;
-      transform: skewX(-16deg);
-      background-color: #fff;
-      z-index: 300; }
-    ul.breadcrumbs li:first-of-type:before {
-      left: 2rem;
-      width: calc(100% - 2rem); }
-    ul.breadcrumbs li:first-of-type:hover {
-      background: #f8f7f7; }
-    ul.breadcrumbs li:last-of-type {
-      background: #00828d;
-      margin-left: 1rem; }
-      ul.breadcrumbs li:last-of-type a {
-        margin-left: -1rem;
-        color: #ebebeb; }
-      ul.breadcrumbs li:last-of-type:before {
-        background: #00828d;
-        left: -1rem; }
-    ul.breadcrumbs li:not(:last-of-type) {
-      margin-right: 1px; }
-      ul.breadcrumbs li:not(:last-of-type):before {
-        border-right: 1px #ccc solid; }
-      ul.breadcrumbs li:not(:last-of-type):hover:before {
-        background: #f8f7f7; }
-    ul.breadcrumbs li a {
-      display: inline-block;
-      position: relative;
-      z-index: 400;
-      line-height: 2rem;
-      padding: .5rem 1rem;
-      text-decoration: none; }
-      ul.breadcrumbs li a:focus, ul.breadcrumbs li a:active {
-        outline: none; }
-      ul.breadcrumbs li a img {
-        width: 1.8rem;
-        height: 1.8rem;
-        vertical-align: top; }
-
-#cpu {
-  background-image: url("/static/images/sprites.svg#icon-cpu-socket");
-  background-repeat: repeat-x;
-  background-size: 2rem 2rem;
-  height: 2rem;
-  width: 16rem; }
-  @media screen and (min-width: 33rem) {
-    #cpu {
-      width: 32rem;
-      height: 4rem;
-      background-size: 4rem 4rem; } }
-  #cpu .die {
-    position: relative;
-    top: -1rem;
-    opacity: 0;
-    display: block;
-    float: left;
-    height: 2rem;
-    width: 2rem;
-    background-image: url("/static/images/sprites.svg#icon-cpu-die");
-    transition: top 0.5s ease-in-out, opacity 0.3s ease-in; }
-    @media screen and (min-width: 33rem) {
-      #cpu .die {
-        width: 4rem;
-        height: 4rem; } }
-  #cpu[data-value="1"] .die:nth-child(1) {
-    top: 0;
-    opacity: 1; }
-  #cpu[data-value="2"] .die:nth-child(1) {
-    top: 0;
-    opacity: 1; }
-  #cpu[data-value="2"] .die:nth-child(2) {
-    top: 0;
-    opacity: 1; }
-  #cpu[data-value="3"] .die:nth-child(1) {
-    top: 0;
-    opacity: 1; }
-  #cpu[data-value="3"] .die:nth-child(2) {
-    top: 0;
-    opacity: 1; }
-  #cpu[data-value="3"] .die:nth-child(3) {
-    top: 0;
-    opacity: 1; }
-  #cpu[data-value="4"] .die:nth-child(1) {
-    top: 0;
-    opacity: 1; }
-  #cpu[data-value="4"] .die:nth-child(2) {
-    top: 0;
-    opacity: 1; }
-  #cpu[data-value="4"] .die:nth-child(3) {
-    top: 0;
-    opacity: 1; }
-  #cpu[data-value="4"] .die:nth-child(4) {
-    top: 0;
-    opacity: 1; }
-  #cpu[data-value="5"] .die:nth-child(1) {
-    top: 0;
-    opacity: 1; }
-  #cpu[data-value="5"] .die:nth-child(2) {
-    top: 0;
-    opacity: 1; }
-  #cpu[data-value="5"] .die:nth-child(3) {
-    top: 0;
-    opacity: 1; }
-  #cpu[data-value="5"] .die:nth-child(4) {
-    top: 0;
-    opacity: 1; }
-  #cpu[data-value="5"] .die:nth-child(5) {
-    top: 0;
-    opacity: 1; }
-  #cpu[data-value="6"] .die:nth-child(1) {
-    top: 0;
-    opacity: 1; }
-  #cpu[data-value="6"] .die:nth-child(2) {
-    top: 0;
-    opacity: 1; }
-  #cpu[data-value="6"] .die:nth-child(3) {
-    top: 0;
-    opacity: 1; }
-  #cpu[data-value="6"] .die:nth-child(4) {
-    top: 0;
-    opacity: 1; }
-  #cpu[data-value="6"] .die:nth-child(5) {
-    top: 0;
-    opacity: 1; }
-  #cpu[data-value="6"] .die:nth-child(6) {
-    top: 0;
-    opacity: 1; }
-  #cpu[data-value="7"] .die:nth-child(1) {
-    top: 0;
-    opacity: 1; }
-  #cpu[data-value="7"] .die:nth-child(2) {
-    top: 0;
-    opacity: 1; }
-  #cpu[data-value="7"] .die:nth-child(3) {
-    top: 0;
-    opacity: 1; }
-  #cpu[data-value="7"] .die:nth-child(4) {
-    top: 0;
-    opacity: 1; }
-  #cpu[data-value="7"] .die:nth-child(5) {
-    top: 0;
-    opacity: 1; }
-  #cpu[data-value="7"] .die:nth-child(6) {
-    top: 0;
-    opacity: 1; }
-  #cpu[data-value="7"] .die:nth-child(7) {
-    top: 0;
-    opacity: 1; }
-  #cpu[data-value="8"] .die:nth-child(1) {
-    top: 0;
-    opacity: 1; }
-  #cpu[data-value="8"] .die:nth-child(2) {
-    top: 0;
-    opacity: 1; }
-  #cpu[data-value="8"] .die:nth-child(3) {
-    top: 0;
-    opacity: 1; }
-  #cpu[data-value="8"] .die:nth-child(4) {
-    top: 0;
-    opacity: 1; }
-  #cpu[data-value="8"] .die:nth-child(5) {
-    top: 0;
-    opacity: 1; }
-  #cpu[data-value="8"] .die:nth-child(6) {
-    top: 0;
-    opacity: 1; }
-  #cpu[data-value="8"] .die:nth-child(7) {
-    top: 0;
-    opacity: 1; }
-  #cpu[data-value="8"] .die:nth-child(8) {
-    top: 0;
-    opacity: 1; }
-
-.section-wrapper-dark section .columns, .section-wrapper section .columns {
-  display: block;
-  width: 100%;
-  margin: 2rem 0;
-  padding: 1.5rem 0 0 0;
-  border-top: 1px #00828d solid; }
-  @media only screen and (min-width: 834px) {
-    .section-wrapper-dark section .columns, .section-wrapper section .columns {
-      columns: 2;
-      column-gap: 5rem;
-      column-rule: 1px #00828d solid;
-      column-fill: balance; }
-      .section-wrapper-dark section .columns ul.feature-list li, .section-wrapper section .columns ul.feature-list li {
-        break-inside: avoid;
-        page-break-inside: avoid; }
-        .section-wrapper-dark section .columns ul.feature-list li:last-of-type:nth-of-type(odd), .section-wrapper section .columns ul.feature-list li:last-of-type:nth-of-type(odd) {
-          margin-bottom: 3rem; } }
-  .section-wrapper-dark section .columns ul.feature-list, .section-wrapper section .columns ul.feature-list {
-    padding: 0;
-    margin: 0;
-    font-size: 1.125rem; }
-    .section-wrapper-dark section .columns ul.feature-list li, .section-wrapper section .columns ul.feature-list li {
-      margin: 0 0 1rem 3.5rem;
-      padding: 0; }
-      .section-wrapper-dark section .columns ul.feature-list li:before, .section-wrapper section .columns ul.feature-list li:before {
-        margin: 0 0 0 -3.5rem;
-        position: absolute; }
-
-.section-wrapper-dark section .columns {
-  border-top: 1px #fff solid; }
-  @media only screen and (min-width: 834px) {
-    .section-wrapper-dark section .columns {
-      column-rule: 1px #fff solid; } }
-
-ul.progress {
-  display: block;
-  padding: 0;
-  margin: 1rem 0 3rem 0 !important;
-  overflow-x: auto;
-  overflow-y: hidden;
-  white-space: nowrap; }
-  @media only screen and (max-width: 512px) {
-    ul.progress {
-      display: none; } }
-  @media only screen and (max-width: 768px) {
-    ul.progress {
-      margin: 1rem 0 1rem 0 !important; } }
-  ul.progress * {
-    white-space: nowrap; }
-  ul.progress li {
-    background: #ecebe9;
-    display: inline-block;
-    position: relative;
-    list-style: none;
-    padding: 1rem;
-    transition: background border 0.3s; }
-    @media only screen and (max-width: 768px) {
-      ul.progress li {
-        padding: .5rem;
-        font-size: 90%; } }
-    ul.progress li a {
-      outline: none;
-      cursor: default;
-      color: #00828d;
-      padding: 50% 0 50% 45px;
-      text-decoration: none; }
-      ul.progress li a:after, ul.progress li a:before {
-        content: " ";
-        display: block;
-        width: 0;
-        height: 0;
-        top: 50%;
-        margin-top: -50px;
-        left: 100%;
-        border-top: 50px solid transparent;
-        border-bottom: 50px solid transparent; }
-      ul.progress li a:after {
-        border-left: 30px solid #ecebe9;
-        position: absolute;
-        z-index: 2; }
-      ul.progress li a:before {
-        border-left: 30px solid #b7b3ad;
-        position: absolute;
-        margin-left: 1px;
-        z-index: 1; }
-    ul.progress li:first-of-type a {
-      padding-left: 20px; }
-    ul.progress li:last-of-type a:before {
-      border: 0; }
-    ul.progress li.active {
-      background: #00828d; }
-      ul.progress li.active a {
-        color: #f8f7f7; }
-      ul.progress li.active a:after {
-        border-left: 30px solid #00828d; }
-    ul.progress li.done {
-      background: #2b585d; }
-      ul.progress li.done a {
-        color: #ecebe9; }
-      ul.progress li.done a:after {
-        border-left: 30px solid #2b585d; }
-    ul.progress li.fail {
-      background: #8d000d; }
-      ul.progress li.fail a {
-        color: #ecebe9; }
-      ul.progress li.fail a:after {
-        border-left: 30px solid #8d000d; }
-  ul.progress:not([class*=nolink]) li.done:hover {
-    background: #00828d; }
-    ul.progress:not([class*=nolink]) li.done:hover a:after {
-      border-left: 30px solid #00828d; }
-  ul.progress:not([class*=nolink]) li.done a[data-set-state] {
-    cursor: pointer; }
-
-input[type="checkbox"].readmore {
-  display: none; }
-  input[type="checkbox"].readmore ~ label {
-    display: block;
-    text-decoration: underline;
-    cursor: pointer; }
-  input[type="checkbox"].readmore ~ label ~ .more {
-    padding: 0;
-    height: 0;
-    padding: 0 0.5rem;
-    overflow: hidden;
-    transition: all 0.5s ease-in-out;
-    font-size: 90%; }
-  input[type="checkbox"].readmore:checked ~ label ~ .more {
-    height: 6rem;
-    margin-top: 1.5rem;
-    overflow-y: auto; }
-
diff --git a/snowpack.config.js b/snowpack.config.js
deleted file mode 100644
index 44ed0b87a39e3466512a011edd9a5fbedbdf835d..0000000000000000000000000000000000000000
--- a/snowpack.config.js
+++ /dev/null
@@ -1,32 +0,0 @@
-/** @type {import("snowpack").SnowpackUserConfig } */
-module.exports = {
-  mount: {
-    public: { url: '/', static: true },
-    src: { url: '/dist' },
-  },
-  plugins: [
-    '@snowpack/plugin-react-refresh',
-    '@snowpack/plugin-dotenv',
-    '@snowpack/plugin-typescript',
-    "@snowpack/plugin-sass",
-    ["@snowpack/plugin-build-script", { "cmd": "js-yaml", "input": [".yaml", ".yml"], "output": [".json"]}]
-  ],
-  routes: [
-    /* Enable an SPA Fallback in development: */
-    // {"match": "routes", "src": ".*", "dest": "/index.html"},
-  ],
-  optimize: {
-    bundle: true,
-    minify: true,
-    target: 'es2017'
-  },
-  packageOptions: {
-    /* ... */
-  },
-  devOptions: {
-    /* ... */
-  },
-  buildOptions: {
-    /* ... */
-  },
-};
diff --git a/src/components/contact-form/ContactForm.tsx b/src/components/contact-form/ContactForm.tsx
index 3f8dc081945ade47761c4542e65097c3d20a2598..c1697891b58bf3f78faa2a6e8dc17ad0292192f5 100644
--- a/src/components/contact-form/ContactForm.tsx
+++ b/src/components/contact-form/ContactForm.tsx
@@ -48,8 +48,12 @@ export const ContactForm: React.FC<ContactFormProps> = ({
     setModalContent(JSON.stringify(formData));
   };
 
+  // For use in the CSSTransition, see
+  // https://github.com/reactjs/react-transition-group/issues/668#issuecomment-695162879
+  const submitRef = React.useRef<any>(null);
+
   return (
-    <form onSubmit={submit} className={`${styles.ContactForm}`} aria-label={t("Contact form")}>
+    <form onSubmit={submit} name="HelpfulContactForm" className={`${styles.ContactForm} cosmosForm`} aria-label={t("Contact form")}>
       <Fieldset legend={t('contact.details')}>
         <Input
           label={t('contact.name')}
@@ -106,27 +110,29 @@ export const ContactForm: React.FC<ContactFormProps> = ({
             key={urgentIntent ? 'urgent' : 'normal'}
             in={urgentIntent}
             classNames={{ ...panelTransition }}
+            nodeRef={submitRef}
             unmountOnExit={true}
             mountOnEnter={true}
-            addEndListener={(node: HTMLElement, done: EventListener) => {
+            addEndListener={(done: () => void) => {
               // use the css transitionend event to mark the finish of a transition
-              // istanbul ignore next
-              node.addEventListener('transitionend', done, false);
+              submitRef.current?.addEventListener('transitionend', done, false);
             }}
           >
-            {urgentIntent ? (
-              <UrgentRequest sendUrgent={() => sendRequest(true)} />
-            ) : (
-              <button
-                className="good"
-                onClick={(event) => {
-                  event.preventDefault();
-                  sendRequest();
-                }}
-              >
-                {t('submit')}
-              </button>
-            )}
+            <div ref={submitRef}>
+              {urgentIntent ? (
+                <UrgentRequest sendUrgent={() => sendRequest(true)} />
+              ) : (
+                <button
+                  className="good"
+                  onClick={(event) => {
+                    event.preventDefault();
+                    sendRequest();
+                  }}
+                >
+                  {t('submit')}
+                </button>
+              )}
+            </div>
           </CSSTransition>
         </SwitchTransition>
       </div>
diff --git a/src/components/locale-switcher/LocaleSwitcher.tsx b/src/components/locale-switcher/LocaleSwitcher.tsx
index fbf8762277c48712dc20dc18e6cbd572a7b4e10f..c61bced780cf068aa93de05bd1ff4710f0356c11 100644
--- a/src/components/locale-switcher/LocaleSwitcher.tsx
+++ b/src/components/locale-switcher/LocaleSwitcher.tsx
@@ -2,7 +2,7 @@ import React from 'react';
 import { useTranslation } from 'react-i18next';
 
 export const LocaleSwitcher: React.FC = () => {
-  if (import.meta.env.MODE === 'production') {
+  if (process.env.NODE_ENV === 'production') {
     return null;
   }
   const { t, i18n } = useTranslation();
diff --git a/src/index.tsx b/src/index.tsx
index a494036cbd667ca3d235369c382781586298660a..a0ecb88bb1436ef9901ea369e950cebc7ccf9dac 100644
--- a/src/index.tsx
+++ b/src/index.tsx
@@ -39,9 +39,3 @@ ReactDOM.render(
   </React.StrictMode>,
   root,
 );
-
-// Hot Module Replacement (HMR) - Remove this snippet to remove HMR.
-// Learn more: https://snowpack.dev/concepts/hot-module-replacement
-if (import.meta.hot) {
-  import.meta.hot.accept();
-}
diff --git a/tsconfig.json b/tsconfig.json
index e69ea930fdae23d0abf0ee44bc7d7dc733b1b30e..550049b162a1b52cdb0dcda7a163ded82de03aac 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -4,17 +4,8 @@
     "module": "esnext",
     "target": "esnext",
     "moduleResolution": "node",
-    "jsx": "preserve",
+    "jsx": "react",
     "baseUrl": "./",
-    /* paths - import rewriting/resolving */
-    "paths": {
-      // If you configured any Snowpack aliases, add them here.
-      // Add this line to get types for streaming imports (packageOptions.source="remote"):
-      //     "*": [".snowpack/types/*"]
-      // More info: https://www.snowpack.dev/guides/streaming-imports
-    },
-    /* noEmit - Snowpack builds (emits) files, not tsc. */
-    "noEmit": true,
     /* Additional Options */
     "strict": true,
     "skipLibCheck": true,
diff --git a/webpack.config.js b/webpack.config.js
new file mode 100644
index 0000000000000000000000000000000000000000..9ec38eef9a6f3c764cb8195b1a026da1a9361a53
--- /dev/null
+++ b/webpack.config.js
@@ -0,0 +1,50 @@
+const CopyPlugin = require("copy-webpack-plugin");
+const MiniCssExtractPlugin = require('mini-css-extract-plugin');
+const path = require('path');
+
+module.exports = {
+  entry: './src/index.tsx',
+  plugins: [
+    new MiniCssExtractPlugin({
+      filename: '[name].css',
+      chunkFilename: '[id].css',
+      ignoreOrder: false, // Enable to remove warnings about conflicting order
+    }),
+    new CopyPlugin({
+      patterns: [
+        { from: "public/style-copied-from-website.css" },
+      ],
+      options: {
+        concurrency: 100,
+      },
+    }),
+  ],
+  module: {
+    rules: [
+      {
+        test: /\.tsx?$/,
+        use: 'ts-loader',
+        exclude: /node_modules/,
+      },
+      {
+        test: /\.(sa|sc|c)ss$/,
+        use: [
+          MiniCssExtractPlugin.loader,
+          'css-loader',
+          'sass-loader',
+        ],
+      },
+      {
+        test: /\.ya?ml$/,
+        use: 'js-yaml-loader',
+      },
+    ],
+  },
+  resolve: {
+    extensions: ['.tsx', '.ts', '.js'],
+  },
+  output: {
+    filename: 'bundle.js',
+    path: path.resolve(__dirname, 'dist'),
+  },
+};