diff --git a/gulpfile.js b/gulpfile.js index 7185fa6..124a584 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -11,7 +11,8 @@ var gulp = require('gulp'), replace = require('gulp-replace'), del = require('del'), rename = require('gulp-rename'), - browserSync = require('browser-sync').create(); + browserSync = require('browser-sync').create(), + gulpDocumentation = require('gulp-documentation'); //Get the environment from the gulp command line, options (dev, prod) const optimizeBuild = ((process.env.BUILD_OPTIMIZE || '').trim().toLowerCase() === 'true'); //Default is false. @@ -99,6 +100,14 @@ function jsTask() { } } +function jsDocumentTask() { + return gulp.src([ + 'src/**/*.js', + 'src/*.js']) + .pipe(gulpDocumentation('html')) + .pipe(gulp.dest(`${outputDirectory}/docs/`)); +} + function fontsTask() { return gulp.src([ 'src/*.ttf', @@ -134,6 +143,7 @@ function watchTask() { exports.htmlTask = htmlTask; exports.scssTask = scssTask; exports.jsTask = jsTask; +exports.jsDocumentTask = jsDocumentTask; exports.fontsTask = fontsTask; exports.cleanOutputTask = cleanOutputTask; exports.watchTask = watchTask; @@ -145,6 +155,7 @@ var build = gulp.series( htmlTask, scssTask, jsTask, + jsDocumentTask, fontsTask ) ]); diff --git a/package-lock.json b/package-lock.json index 6917f84..4ffb3ab 100644 --- a/package-lock.json +++ b/package-lock.json @@ -4,6 +4,1266 @@ "lockfileVersion": 1, "requires": true, "dependencies": { + "@babel/code-frame": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", + "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", + "requires": { + "@babel/highlight": "^7.10.4" + } + }, + "@babel/compat-data": { + "version": "7.11.0", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.11.0.tgz", + "integrity": "sha512-TPSvJfv73ng0pfnEOh17bYMPQbI95+nGWc71Ss4vZdRBHTDqmM9Z8ZV4rYz8Ks7sfzc95n30k6ODIq5UGnXcYQ==", + "requires": { + "browserslist": "^4.12.0", + "invariant": "^2.2.4", + "semver": "^5.5.0" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + } + } + }, + "@babel/core": { + "version": "7.11.4", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.11.4.tgz", + "integrity": "sha512-5deljj5HlqRXN+5oJTY7Zs37iH3z3b++KjiKtIsJy1NrjOOVSEaJHEetLBhyu0aQOSNNZ/0IuEAan9GzRuDXHg==", + "requires": { + "@babel/code-frame": "^7.10.4", + "@babel/generator": "^7.11.4", + "@babel/helper-module-transforms": "^7.11.0", + "@babel/helpers": "^7.10.4", + "@babel/parser": "^7.11.4", + "@babel/template": "^7.10.4", + "@babel/traverse": "^7.11.0", + "@babel/types": "^7.11.0", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.1", + "json5": "^2.1.2", + "lodash": "^4.17.19", + "resolve": "^1.3.2", + "semver": "^5.4.1", + "source-map": "^0.5.0" + }, + "dependencies": { + "@babel/parser": { + "version": "7.11.4", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.11.4.tgz", + "integrity": "sha512-MggwidiH+E9j5Sh8pbrX5sJvMcsqS5o+7iB42M9/k0CD63MjYbdP4nhSh7uB5wnv2/RVzTZFTxzF/kIa5mrCqA==" + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + } + } + }, + "@babel/generator": { + "version": "7.11.4", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.11.4.tgz", + "integrity": "sha512-Rn26vueFx0eOoz7iifCN2UHT6rGtnkSGWSoDRIy8jZN3B91PzeSULbswfLoOWuTuAcNwpG/mxy+uCTDnZ9Mp1g==", + "requires": { + "@babel/types": "^7.11.0", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + }, + "dependencies": { + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + } + } + }, + "@babel/helper-annotate-as-pure": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.4.tgz", + "integrity": "sha512-XQlqKQP4vXFB7BN8fEEerrmYvHp3fK/rBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z/OnId1jpJdNAZ3BFQjWG68rcA==", + "requires": { + "@babel/types": "^7.10.4" + } + }, + "@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.10.4.tgz", + "integrity": "sha512-L0zGlFrGWZK4PbT8AszSfLTM5sDU1+Az/En9VrdT8/LmEiJt4zXt+Jve9DCAnQcbqDhCI+29y/L93mrDzddCcg==", + "requires": { + "@babel/helper-explode-assignable-expression": "^7.10.4", + "@babel/types": "^7.10.4" + } + }, + "@babel/helper-builder-react-jsx": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.10.4.tgz", + "integrity": "sha512-5nPcIZ7+KKDxT1427oBivl9V9YTal7qk0diccnh7RrcgrT/pGFOjgGw1dgryyx1GvHEpXVfoDF6Ak3rTiWh8Rg==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.10.4", + "@babel/types": "^7.10.4" + } + }, + "@babel/helper-builder-react-jsx-experimental": { + "version": "7.10.5", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-react-jsx-experimental/-/helper-builder-react-jsx-experimental-7.10.5.tgz", + "integrity": "sha512-Buewnx6M4ttG+NLkKyt7baQn7ScC/Td+e99G914fRU8fGIUivDDgVIQeDHFa5e4CRSJQt58WpNHhsAZgtzVhsg==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.10.4", + "@babel/helper-module-imports": "^7.10.4", + "@babel/types": "^7.10.5" + } + }, + "@babel/helper-compilation-targets": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.10.4.tgz", + "integrity": "sha512-a3rYhlsGV0UHNDvrtOXBg8/OpfV0OKTkxKPzIplS1zpx7CygDcWWxckxZeDd3gzPzC4kUT0A4nVFDK0wGMh4MQ==", + "requires": { + "@babel/compat-data": "^7.10.4", + "browserslist": "^4.12.0", + "invariant": "^2.2.4", + "levenary": "^1.1.1", + "semver": "^5.5.0" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + } + } + }, + "@babel/helper-create-class-features-plugin": { + "version": "7.10.5", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.10.5.tgz", + "integrity": "sha512-0nkdeijB7VlZoLT3r/mY3bUkw3T8WG/hNw+FATs/6+pG2039IJWjTYL0VTISqsNHMUTEnwbVnc89WIJX9Qed0A==", + "requires": { + "@babel/helper-function-name": "^7.10.4", + "@babel/helper-member-expression-to-functions": "^7.10.5", + "@babel/helper-optimise-call-expression": "^7.10.4", + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/helper-replace-supers": "^7.10.4", + "@babel/helper-split-export-declaration": "^7.10.4" + } + }, + "@babel/helper-create-regexp-features-plugin": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.10.4.tgz", + "integrity": "sha512-2/hu58IEPKeoLF45DBwx3XFqsbCXmkdAay4spVr2x0jYgRxrSNp+ePwvSsy9g6YSaNDcKIQVPXk1Ov8S2edk2g==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.10.4", + "@babel/helper-regex": "^7.10.4", + "regexpu-core": "^4.7.0" + } + }, + "@babel/helper-define-map": { + "version": "7.10.5", + "resolved": "https://registry.npmjs.org/@babel/helper-define-map/-/helper-define-map-7.10.5.tgz", + "integrity": "sha512-fMw4kgFB720aQFXSVaXr79pjjcW5puTCM16+rECJ/plGS+zByelE8l9nCpV1GibxTnFVmUuYG9U8wYfQHdzOEQ==", + "requires": { + "@babel/helper-function-name": "^7.10.4", + "@babel/types": "^7.10.5", + "lodash": "^4.17.19" + } + }, + "@babel/helper-explode-assignable-expression": { + "version": "7.11.4", + "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.11.4.tgz", + "integrity": "sha512-ux9hm3zR4WV1Y3xXxXkdG/0gxF9nvI0YVmKVhvK9AfMoaQkemL3sJpXw+Xbz65azo8qJiEz2XVDUpK3KYhH3ZQ==", + "requires": { + "@babel/types": "^7.10.4" + } + }, + "@babel/helper-function-name": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz", + "integrity": "sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==", + "requires": { + "@babel/helper-get-function-arity": "^7.10.4", + "@babel/template": "^7.10.4", + "@babel/types": "^7.10.4" + } + }, + "@babel/helper-get-function-arity": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz", + "integrity": "sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==", + "requires": { + "@babel/types": "^7.10.4" + } + }, + "@babel/helper-hoist-variables": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.10.4.tgz", + "integrity": "sha512-wljroF5PgCk2juF69kanHVs6vrLwIPNp6DLD+Lrl3hoQ3PpPPikaDRNFA+0t81NOoMt2DL6WW/mdU8k4k6ZzuA==", + "requires": { + "@babel/types": "^7.10.4" + } + }, + "@babel/helper-member-expression-to-functions": { + "version": "7.11.0", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.11.0.tgz", + "integrity": "sha512-JbFlKHFntRV5qKw3YC0CvQnDZ4XMwgzzBbld7Ly4Mj4cbFy3KywcR8NtNctRToMWJOVvLINJv525Gd6wwVEx/Q==", + "requires": { + "@babel/types": "^7.11.0" + } + }, + "@babel/helper-module-imports": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.10.4.tgz", + "integrity": "sha512-nEQJHqYavI217oD9+s5MUBzk6x1IlvoS9WTPfgG43CbMEeStE0v+r+TucWdx8KFGowPGvyOkDT9+7DHedIDnVw==", + "requires": { + "@babel/types": "^7.10.4" + } + }, + "@babel/helper-module-transforms": { + "version": "7.11.0", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.11.0.tgz", + "integrity": "sha512-02EVu8COMuTRO1TAzdMtpBPbe6aQ1w/8fePD2YgQmxZU4gpNWaL9gK3Jp7dxlkUlUCJOTaSeA+Hrm1BRQwqIhg==", + "requires": { + "@babel/helper-module-imports": "^7.10.4", + "@babel/helper-replace-supers": "^7.10.4", + "@babel/helper-simple-access": "^7.10.4", + "@babel/helper-split-export-declaration": "^7.11.0", + "@babel/template": "^7.10.4", + "@babel/types": "^7.11.0", + "lodash": "^4.17.19" + } + }, + "@babel/helper-optimise-call-expression": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.4.tgz", + "integrity": "sha512-n3UGKY4VXwXThEiKrgRAoVPBMqeoPgHVqiHZOanAJCG9nQUL2pLRQirUzl0ioKclHGpGqRgIOkgcIJaIWLpygg==", + "requires": { + "@babel/types": "^7.10.4" + } + }, + "@babel/helper-plugin-utils": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz", + "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==" + }, + "@babel/helper-regex": { + "version": "7.10.5", + "resolved": "https://registry.npmjs.org/@babel/helper-regex/-/helper-regex-7.10.5.tgz", + "integrity": "sha512-68kdUAzDrljqBrio7DYAEgCoJHxppJOERHOgOrDN7WjOzP0ZQ1LsSDRXcemzVZaLvjaJsJEESb6qt+znNuENDg==", + "requires": { + "lodash": "^4.17.19" + } + }, + "@babel/helper-remap-async-to-generator": { + "version": "7.11.4", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.11.4.tgz", + "integrity": "sha512-tR5vJ/vBa9wFy3m5LLv2faapJLnDFxNWff2SAYkSE4rLUdbp7CdObYFgI7wK4T/Mj4UzpjPwzR8Pzmr5m7MHGA==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.10.4", + "@babel/helper-wrap-function": "^7.10.4", + "@babel/template": "^7.10.4", + "@babel/types": "^7.10.4" + } + }, + "@babel/helper-replace-supers": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.10.4.tgz", + "integrity": "sha512-sPxZfFXocEymYTdVK1UNmFPBN+Hv5mJkLPsYWwGBxZAxaWfFu+xqp7b6qWD0yjNuNL2VKc6L5M18tOXUP7NU0A==", + "requires": { + "@babel/helper-member-expression-to-functions": "^7.10.4", + "@babel/helper-optimise-call-expression": "^7.10.4", + "@babel/traverse": "^7.10.4", + "@babel/types": "^7.10.4" + } + }, + "@babel/helper-simple-access": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.10.4.tgz", + "integrity": "sha512-0fMy72ej/VEvF8ULmX6yb5MtHG4uH4Dbd6I/aHDb/JVg0bbivwt9Wg+h3uMvX+QSFtwr5MeItvazbrc4jtRAXw==", + "requires": { + "@babel/template": "^7.10.4", + "@babel/types": "^7.10.4" + } + }, + "@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.11.0", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.11.0.tgz", + "integrity": "sha512-0XIdiQln4Elglgjbwo9wuJpL/K7AGCY26kmEt0+pRP0TAj4jjyNq1MjoRvikrTVqKcx4Gysxt4cXvVFXP/JO2Q==", + "requires": { + "@babel/types": "^7.11.0" + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.11.0", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz", + "integrity": "sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg==", + "requires": { + "@babel/types": "^7.11.0" + } + }, + "@babel/helper-validator-identifier": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", + "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==" + }, + "@babel/helper-wrap-function": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.10.4.tgz", + "integrity": "sha512-6py45WvEF0MhiLrdxtRjKjufwLL1/ob2qDJgg5JgNdojBAZSAKnAjkyOCNug6n+OBl4VW76XjvgSFTdaMcW0Ug==", + "requires": { + "@babel/helper-function-name": "^7.10.4", + "@babel/template": "^7.10.4", + "@babel/traverse": "^7.10.4", + "@babel/types": "^7.10.4" + } + }, + "@babel/helpers": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.10.4.tgz", + "integrity": "sha512-L2gX/XeUONeEbI78dXSrJzGdz4GQ+ZTA/aazfUsFaWjSe95kiCuOZ5HsXvkiw3iwF+mFHSRUfJU8t6YavocdXA==", + "requires": { + "@babel/template": "^7.10.4", + "@babel/traverse": "^7.10.4", + "@babel/types": "^7.10.4" + } + }, + "@babel/highlight": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz", + "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==", + "requires": { + "@babel/helper-validator-identifier": "^7.10.4", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "@babel/parser": { + "version": "7.10.2", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.10.2.tgz", + "integrity": "sha512-PApSXlNMJyB4JiGVhCOlzKIif+TKFTvu0aQAhnTvfP/z3vVSN6ZypH5bfUNwFXXjRQtUEBNFd2PtmCmG2Py3qQ==" + }, + "@babel/plugin-proposal-async-generator-functions": { + "version": "7.10.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.10.5.tgz", + "integrity": "sha512-cNMCVezQbrRGvXJwm9fu/1sJj9bHdGAgKodZdLqOQIpfoH3raqmRPBM17+lh7CzhiKRRBrGtZL9WcjxSoGYUSg==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/helper-remap-async-to-generator": "^7.10.4", + "@babel/plugin-syntax-async-generators": "^7.8.0" + } + }, + "@babel/plugin-proposal-class-properties": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.10.4.tgz", + "integrity": "sha512-vhwkEROxzcHGNu2mzUC0OFFNXdZ4M23ib8aRRcJSsW8BZK9pQMD7QB7csl97NBbgGZO7ZyHUyKDnxzOaP4IrCg==", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.10.4", + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-proposal-decorators": { + "version": "7.10.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.10.5.tgz", + "integrity": "sha512-Sc5TAQSZuLzgY0664mMDn24Vw2P8g/VhyLyGPaWiHahhgLqeZvcGeyBZOrJW0oSKIK2mvQ22a1ENXBIQLhrEiQ==", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.10.5", + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-decorators": "^7.10.4" + } + }, + "@babel/plugin-proposal-do-expressions": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-do-expressions/-/plugin-proposal-do-expressions-7.10.4.tgz", + "integrity": "sha512-Gcc2wLVeMceRdP6m9tdDygP01lbUVmaQGBRoIRJZxzPfB5VTiUgmn1jGfORgqbEVgUpG0IQm/z4q5Y/qzG+8JQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-do-expressions": "^7.10.4" + } + }, + "@babel/plugin-proposal-dynamic-import": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.10.4.tgz", + "integrity": "sha512-up6oID1LeidOOASNXgv/CFbgBqTuKJ0cJjz6An5tWD+NVBNlp3VNSBxv2ZdU7SYl3NxJC7agAQDApZusV6uFwQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-dynamic-import": "^7.8.0" + } + }, + "@babel/plugin-proposal-export-default-from": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.10.4.tgz", + "integrity": "sha512-G1l00VvDZ7Yk2yRlC5D8Ybvu3gmeHS3rCHoUYdjrqGYUtdeOBoRypnvDZ5KQqxyaiiGHWnVDeSEzA5F9ozItig==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-export-default-from": "^7.10.4" + } + }, + "@babel/plugin-proposal-export-namespace-from": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.10.4.tgz", + "integrity": "sha512-aNdf0LY6/3WXkhh0Fdb6Zk9j1NMD8ovj3F6r0+3j837Pn1S1PdNtcwJ5EG9WkVPNHPxyJDaxMaAOVq4eki0qbg==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + } + }, + "@babel/plugin-proposal-function-bind": { + "version": "7.10.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-function-bind/-/plugin-proposal-function-bind-7.10.5.tgz", + "integrity": "sha512-1lYbE2ynV9yN0LCEYCdEBD5pR6GaNkRfjn1z1tWDdWMJgunTFcJBZDJUgiMPcTMqAc3D6Vrm8v2khxjjx6FrCg==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-function-bind": "^7.10.4" + } + }, + "@babel/plugin-proposal-function-sent": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-function-sent/-/plugin-proposal-function-sent-7.10.4.tgz", + "integrity": "sha512-aBtve/DhQsVPAGnSDcgt33gF36rO0TK+KtHp9Hwtj3KwH+o1Cii9vfVVYeB9c6Jo1SXOgTRwRD7ljpTS0qbN8w==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/helper-wrap-function": "^7.10.4", + "@babel/plugin-syntax-function-sent": "^7.10.4" + } + }, + "@babel/plugin-proposal-json-strings": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.10.4.tgz", + "integrity": "sha512-fCL7QF0Jo83uy1K0P2YXrfX11tj3lkpN7l4dMv9Y9VkowkhkQDwFHFd8IiwyK5MZjE8UpbgokkgtcReH88Abaw==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-json-strings": "^7.8.0" + } + }, + "@babel/plugin-proposal-logical-assignment-operators": { + "version": "7.11.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.11.0.tgz", + "integrity": "sha512-/f8p4z+Auz0Uaf+i8Ekf1iM7wUNLcViFUGiPxKeXvxTSl63B875YPiVdUDdem7hREcI0E0kSpEhS8tF5RphK7Q==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + } + }, + "@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.10.4.tgz", + "integrity": "sha512-wq5n1M3ZUlHl9sqT2ok1T2/MTt6AXE0e1Lz4WzWBr95LsAZ5qDXe4KnFuauYyEyLiohvXFMdbsOTMyLZs91Zlw==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0" + } + }, + "@babel/plugin-proposal-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.10.4.tgz", + "integrity": "sha512-73/G7QoRoeNkLZFxsoCCvlg4ezE4eM+57PnOqgaPOozd5myfj7p0muD1mRVJvbUWbOzD+q3No2bWbaKy+DJ8DA==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + } + }, + "@babel/plugin-proposal-object-rest-spread": { + "version": "7.11.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.11.0.tgz", + "integrity": "sha512-wzch41N4yztwoRw0ak+37wxwJM2oiIiy6huGCoqkvSTA9acYWcPfn9Y4aJqmFFJ70KTJUu29f3DQ43uJ9HXzEA==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.0", + "@babel/plugin-transform-parameters": "^7.10.4" + } + }, + "@babel/plugin-proposal-optional-catch-binding": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.10.4.tgz", + "integrity": "sha512-LflT6nPh+GK2MnFiKDyLiqSqVHkQnVf7hdoAvyTnnKj9xB3docGRsdPuxp6qqqW19ifK3xgc9U5/FwrSaCNX5g==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.0" + } + }, + "@babel/plugin-proposal-optional-chaining": { + "version": "7.11.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.11.0.tgz", + "integrity": "sha512-v9fZIu3Y8562RRwhm1BbMRxtqZNFmFA2EG+pT2diuU8PT3H6T/KXoZ54KgYisfOFZHV6PfvAiBIZ9Rcz+/JCxA==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/helper-skip-transparent-expression-wrappers": "^7.11.0", + "@babel/plugin-syntax-optional-chaining": "^7.8.0" + } + }, + "@babel/plugin-proposal-pipeline-operator": { + "version": "7.10.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-pipeline-operator/-/plugin-proposal-pipeline-operator-7.10.5.tgz", + "integrity": "sha512-tCpZ46KUAHgFoXsH593k9sX/ZKsNb4NlTGNif8PdlmkGbtYdbTQi6zNv8yibpRf+3sQFElOBLyNo3I5ZwVu90g==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-pipeline-operator": "^7.10.4" + } + }, + "@babel/plugin-proposal-private-methods": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.10.4.tgz", + "integrity": "sha512-wh5GJleuI8k3emgTg5KkJK6kHNsGEr0uBTDBuQUBJwckk9xs1ez79ioheEVVxMLyPscB0LfkbVHslQqIzWV6Bw==", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.10.4", + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-proposal-throw-expressions": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-throw-expressions/-/plugin-proposal-throw-expressions-7.10.4.tgz", + "integrity": "sha512-m7K9duXeH/rko36i9G9seLOg2AVdeVTn65k8nnTxgozex0hkDSUr6cktJxTO7jElGEpmMz410pTs0Jn8+empxw==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-throw-expressions": "^7.10.4" + } + }, + "@babel/plugin-proposal-unicode-property-regex": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.10.4.tgz", + "integrity": "sha512-H+3fOgPnEXFL9zGYtKQe4IDOPKYlZdF1kqFDQRRb8PK4B8af1vAGK04tF5iQAAsui+mHNBQSAtd2/ndEDe9wuA==", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.10.4", + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-class-properties": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.10.4.tgz", + "integrity": "sha512-GCSBF7iUle6rNugfURwNmCGG3Z/2+opxAMLs1nND4bhEG5PuxTIggDBoeYYSujAlLtsupzOHYJQgPS3pivwXIA==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-decorators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.10.4.tgz", + "integrity": "sha512-2NaoC6fAk2VMdhY1eerkfHV+lVYC1u8b+jmRJISqANCJlTxYy19HGdIkkQtix2UtkcPuPu+IlDgrVseZnU03bw==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-do-expressions": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-do-expressions/-/plugin-syntax-do-expressions-7.10.4.tgz", + "integrity": "sha512-HyvaTg1aiwGo2I+Pu0nyurRMjIP7J89GpuZ2mcQ0fhO6Jt3BnyhEPbNJFG1hRE99NAPNfPYh93/7HO+GPVkTKg==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-export-default-from": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.10.4.tgz", + "integrity": "sha512-79V6r6Pgudz0RnuMGp5xidu6Z+bPFugh8/Q9eDHonmLp4wKFAZDwygJwYgCzuDu8lFA/sYyT+mc5y2wkd7bTXA==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.3" + } + }, + "@babel/plugin-syntax-flow": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.10.4.tgz", + "integrity": "sha512-yxQsX1dJixF4qEEdzVbst3SZQ58Nrooz8NV9Z9GL4byTE25BvJgl5lf0RECUf0fh28rZBb/RYTWn/eeKwCMrZQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-function-bind": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-function-bind/-/plugin-syntax-function-bind-7.10.4.tgz", + "integrity": "sha512-vF/K9yS0dpPNlT7mXSGhbdpb2f4DaLa/AYYbUqlxOggAug/oseIR1+LgAzwci4iJNlqWNmJ7aQ+llUMYjn9uhw==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-function-sent": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-function-sent/-/plugin-syntax-function-sent-7.10.4.tgz", + "integrity": "sha512-dwElaRoDQhlVevbgKOlEUTe08QNJo4ZjWw3rqnMbEvH8NRJM+iPN2tTQtzyfNloXD8f3Jdiyf5Pn400B1U3SVA==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-jsx": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.10.4.tgz", + "integrity": "sha512-KCg9mio9jwiARCB7WAcQ7Y1q+qicILjoK8LP/VkPkEKaf5dkaZZK1EcTe91a3JJlZ3qy6L5s9X52boEYi8DM9g==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-pipeline-operator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-pipeline-operator/-/plugin-syntax-pipeline-operator-7.10.4.tgz", + "integrity": "sha512-QOmXevisZebt9pBkMdDdXWg+fndB8dT/puwSKKu/1K3P4oBwmydN/4dX1hdrNvPHbw4xE+ocIoEus7c4eh7Igg==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-throw-expressions": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-throw-expressions/-/plugin-syntax-throw-expressions-7.10.4.tgz", + "integrity": "sha512-Yac/4W71+JdAiOV3aLbnUUe2R0NZzNvdy5EqdauFnBQTxIXT58M89lOplIFVELTSus6PxFMjmbi2vXaJDiV/PQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-top-level-await": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.10.4.tgz", + "integrity": "sha512-ni1brg4lXEmWyafKr0ccFWkJG0CeMt4WV1oyeBW6EFObF4oOHclbkj5cARxAPQyAQ2UTuplJyK4nfkXIMMFvsQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-arrow-functions": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.10.4.tgz", + "integrity": "sha512-9J/oD1jV0ZCBcgnoFWFq1vJd4msoKb/TCpGNFyyLt0zABdcvgK3aYikZ8HjzB14c26bc7E3Q1yugpwGy2aTPNA==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-async-to-generator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.10.4.tgz", + "integrity": "sha512-F6nREOan7J5UXTLsDsZG3DXmZSVofr2tGNwfdrVwkDWHfQckbQXnXSPfD7iO+c/2HGqycwyLST3DnZ16n+cBJQ==", + "requires": { + "@babel/helper-module-imports": "^7.10.4", + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/helper-remap-async-to-generator": "^7.10.4" + } + }, + "@babel/plugin-transform-block-scoped-functions": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.10.4.tgz", + "integrity": "sha512-WzXDarQXYYfjaV1szJvN3AD7rZgZzC1JtjJZ8dMHUyiK8mxPRahynp14zzNjU3VkPqPsO38CzxiWO1c9ARZ8JA==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-block-scoping": { + "version": "7.11.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.11.1.tgz", + "integrity": "sha512-00dYeDE0EVEHuuM+26+0w/SCL0BH2Qy7LwHuI4Hi4MH5gkC8/AqMN5uWFJIsoXZrAphiMm1iXzBw6L2T+eA0ew==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-classes": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.10.4.tgz", + "integrity": "sha512-2oZ9qLjt161dn1ZE0Ms66xBncQH4In8Sqw1YWgBUZuGVJJS5c0OFZXL6dP2MRHrkU/eKhWg8CzFJhRQl50rQxA==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.10.4", + "@babel/helper-define-map": "^7.10.4", + "@babel/helper-function-name": "^7.10.4", + "@babel/helper-optimise-call-expression": "^7.10.4", + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/helper-replace-supers": "^7.10.4", + "@babel/helper-split-export-declaration": "^7.10.4", + "globals": "^11.1.0" + } + }, + "@babel/plugin-transform-computed-properties": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.10.4.tgz", + "integrity": "sha512-JFwVDXcP/hM/TbyzGq3l/XWGut7p46Z3QvqFMXTfk6/09m7xZHJUN9xHfsv7vqqD4YnfI5ueYdSJtXqqBLyjBw==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-destructuring": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.10.4.tgz", + "integrity": "sha512-+WmfvyfsyF603iPa6825mq6Qrb7uLjTOsa3XOFzlYcYDHSS4QmpOWOL0NNBY5qMbvrcf3tq0Cw+v4lxswOBpgA==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-dotall-regex": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.10.4.tgz", + "integrity": "sha512-ZEAVvUTCMlMFAbASYSVQoxIbHm2OkG2MseW6bV2JjIygOjdVv8tuxrCTzj1+Rynh7ODb8GivUy7dzEXzEhuPaA==", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.10.4", + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-duplicate-keys": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.10.4.tgz", + "integrity": "sha512-GL0/fJnmgMclHiBTTWXNlYjYsA7rDrtsazHG6mglaGSTh0KsrW04qml+Bbz9FL0LcJIRwBWL5ZqlNHKTkU3xAA==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-exponentiation-operator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.10.4.tgz", + "integrity": "sha512-S5HgLVgkBcRdyQAHbKj+7KyuWx8C6t5oETmUuwz1pt3WTWJhsUV0WIIXuVvfXMxl/QQyHKlSCNNtaIamG8fysw==", + "requires": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.10.4", + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-flow-strip-types": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.10.4.tgz", + "integrity": "sha512-XTadyuqNst88UWBTdLjM+wEY7BFnY2sYtPyAidfC7M/QaZnSuIZpMvLxqGT7phAcnGyWh/XQFLKcGf04CnvxSQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-flow": "^7.10.4" + } + }, + "@babel/plugin-transform-for-of": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.10.4.tgz", + "integrity": "sha512-ItdQfAzu9AlEqmusA/65TqJ79eRcgGmpPPFvBnGILXZH975G0LNjP1yjHvGgfuCxqrPPueXOPe+FsvxmxKiHHQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-function-name": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.10.4.tgz", + "integrity": "sha512-OcDCq2y5+E0dVD5MagT5X+yTRbcvFjDI2ZVAottGH6tzqjx/LKpgkUepu3hp/u4tZBzxxpNGwLsAvGBvQ2mJzg==", + "requires": { + "@babel/helper-function-name": "^7.10.4", + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-literals": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.10.4.tgz", + "integrity": "sha512-Xd/dFSTEVuUWnyZiMu76/InZxLTYilOSr1UlHV+p115Z/Le2Fi1KXkJUYz0b42DfndostYlPub3m8ZTQlMaiqQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-member-expression-literals": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.10.4.tgz", + "integrity": "sha512-0bFOvPyAoTBhtcJLr9VcwZqKmSjFml1iVxvPL0ReomGU53CX53HsM4h2SzckNdkQcHox1bpAqzxBI1Y09LlBSw==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-modules-amd": { + "version": "7.10.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.10.5.tgz", + "integrity": "sha512-elm5uruNio7CTLFItVC/rIzKLfQ17+fX7EVz5W0TMgIHFo1zY0Ozzx+lgwhL4plzl8OzVn6Qasx5DeEFyoNiRw==", + "requires": { + "@babel/helper-module-transforms": "^7.10.5", + "@babel/helper-plugin-utils": "^7.10.4", + "babel-plugin-dynamic-import-node": "^2.3.3" + } + }, + "@babel/plugin-transform-modules-commonjs": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.10.4.tgz", + "integrity": "sha512-Xj7Uq5o80HDLlW64rVfDBhao6OX89HKUmb+9vWYaLXBZOma4gA6tw4Ni1O5qVDoZWUV0fxMYA0aYzOawz0l+1w==", + "requires": { + "@babel/helper-module-transforms": "^7.10.4", + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/helper-simple-access": "^7.10.4", + "babel-plugin-dynamic-import-node": "^2.3.3" + } + }, + "@babel/plugin-transform-modules-systemjs": { + "version": "7.10.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.10.5.tgz", + "integrity": "sha512-f4RLO/OL14/FP1AEbcsWMzpbUz6tssRaeQg11RH1BP/XnPpRoVwgeYViMFacnkaw4k4wjRSjn3ip1Uw9TaXuMw==", + "requires": { + "@babel/helper-hoist-variables": "^7.10.4", + "@babel/helper-module-transforms": "^7.10.5", + "@babel/helper-plugin-utils": "^7.10.4", + "babel-plugin-dynamic-import-node": "^2.3.3" + } + }, + "@babel/plugin-transform-modules-umd": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.10.4.tgz", + "integrity": "sha512-mohW5q3uAEt8T45YT7Qc5ws6mWgJAaL/8BfWD9Dodo1A3RKWli8wTS+WiQ/knF+tXlPirW/1/MqzzGfCExKECA==", + "requires": { + "@babel/helper-module-transforms": "^7.10.4", + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.10.4.tgz", + "integrity": "sha512-V6LuOnD31kTkxQPhKiVYzYC/Jgdq53irJC/xBSmqcNcqFGV+PER4l6rU5SH2Vl7bH9mLDHcc0+l9HUOe4RNGKA==", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.10.4" + } + }, + "@babel/plugin-transform-new-target": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.10.4.tgz", + "integrity": "sha512-YXwWUDAH/J6dlfwqlWsztI2Puz1NtUAubXhOPLQ5gjR/qmQ5U96DY4FQO8At33JN4XPBhrjB8I4eMmLROjjLjw==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-object-super": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.10.4.tgz", + "integrity": "sha512-5iTw0JkdRdJvr7sY0vHqTpnruUpTea32JHmq/atIWqsnNussbRzjEDyWep8UNztt1B5IusBYg8Irb0bLbiEBCQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/helper-replace-supers": "^7.10.4" + } + }, + "@babel/plugin-transform-parameters": { + "version": "7.10.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.10.5.tgz", + "integrity": "sha512-xPHwUj5RdFV8l1wuYiu5S9fqWGM2DrYc24TMvUiRrPVm+SM3XeqU9BcokQX/kEUe+p2RBwy+yoiR1w/Blq6ubw==", + "requires": { + "@babel/helper-get-function-arity": "^7.10.4", + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-property-literals": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.10.4.tgz", + "integrity": "sha512-ofsAcKiUxQ8TY4sScgsGeR2vJIsfrzqvFb9GvJ5UdXDzl+MyYCaBj/FGzXuv7qE0aJcjWMILny1epqelnFlz8g==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-react-display-name": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.10.4.tgz", + "integrity": "sha512-Zd4X54Mu9SBfPGnEcaGcOrVAYOtjT2on8QZkLKEq1S/tHexG39d9XXGZv19VfRrDjPJzFmPfTAqOQS1pfFOujw==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-react-jsx": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.10.4.tgz", + "integrity": "sha512-L+MfRhWjX0eI7Js093MM6MacKU4M6dnCRa/QPDwYMxjljzSCzzlzKzj9Pk4P3OtrPcxr2N3znR419nr3Xw+65A==", + "requires": { + "@babel/helper-builder-react-jsx": "^7.10.4", + "@babel/helper-builder-react-jsx-experimental": "^7.10.4", + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-jsx": "^7.10.4" + } + }, + "@babel/plugin-transform-react-jsx-development": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.10.4.tgz", + "integrity": "sha512-RM3ZAd1sU1iQ7rI2dhrZRZGv0aqzNQMbkIUCS1txYpi9wHQ2ZHNjo5TwX+UD6pvFW4AbWqLVYvKy5qJSAyRGjQ==", + "requires": { + "@babel/helper-builder-react-jsx-experimental": "^7.10.4", + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-jsx": "^7.10.4" + } + }, + "@babel/plugin-transform-react-jsx-self": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.10.4.tgz", + "integrity": "sha512-yOvxY2pDiVJi0axdTWHSMi5T0DILN+H+SaeJeACHKjQLezEzhLx9nEF9xgpBLPtkZsks9cnb5P9iBEi21En3gg==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-jsx": "^7.10.4" + } + }, + "@babel/plugin-transform-react-jsx-source": { + "version": "7.10.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.10.5.tgz", + "integrity": "sha512-wTeqHVkN1lfPLubRiZH3o73f4rfon42HpgxUSs86Nc+8QIcm/B9s8NNVXu/gwGcOyd7yDib9ikxoDLxJP0UiDA==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-jsx": "^7.10.4" + } + }, + "@babel/plugin-transform-react-pure-annotations": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.10.4.tgz", + "integrity": "sha512-+njZkqcOuS8RaPakrnR9KvxjoG1ASJWpoIv/doyWngId88JoFlPlISenGXjrVacZUIALGUr6eodRs1vmPnF23A==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.10.4", + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-regenerator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.10.4.tgz", + "integrity": "sha512-3thAHwtor39A7C04XucbMg17RcZ3Qppfxr22wYzZNcVIkPHfpM9J0SO8zuCV6SZa265kxBJSrfKTvDCYqBFXGw==", + "requires": { + "regenerator-transform": "^0.14.2" + } + }, + "@babel/plugin-transform-reserved-words": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.10.4.tgz", + "integrity": "sha512-hGsw1O6Rew1fkFbDImZIEqA8GoidwTAilwCyWqLBM9f+e/u/sQMQu7uX6dyokfOayRuuVfKOW4O7HvaBWM+JlQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-shorthand-properties": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.10.4.tgz", + "integrity": "sha512-AC2K/t7o07KeTIxMoHneyX90v3zkm5cjHJEokrPEAGEy3UCp8sLKfnfOIGdZ194fyN4wfX/zZUWT9trJZ0qc+Q==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-spread": { + "version": "7.11.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.11.0.tgz", + "integrity": "sha512-UwQYGOqIdQJe4aWNyS7noqAnN2VbaczPLiEtln+zPowRNlD+79w3oi2TWfYe0eZgd+gjZCbsydN7lzWysDt+gw==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/helper-skip-transparent-expression-wrappers": "^7.11.0" + } + }, + "@babel/plugin-transform-sticky-regex": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.10.4.tgz", + "integrity": "sha512-Ddy3QZfIbEV0VYcVtFDCjeE4xwVTJWTmUtorAJkn6u/92Z/nWJNV+mILyqHKrUxXYKA2EoCilgoPePymKL4DvQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/helper-regex": "^7.10.4" + } + }, + "@babel/plugin-transform-template-literals": { + "version": "7.10.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.10.5.tgz", + "integrity": "sha512-V/lnPGIb+KT12OQikDvgSuesRX14ck5FfJXt6+tXhdkJ+Vsd0lDCVtF6jcB4rNClYFzaB2jusZ+lNISDk2mMMw==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.10.4", + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-typeof-symbol": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.10.4.tgz", + "integrity": "sha512-QqNgYwuuW0y0H+kUE/GWSR45t/ccRhe14Fs/4ZRouNNQsyd4o3PG4OtHiIrepbM2WKUBDAXKCAK/Lk4VhzTaGA==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-unicode-escapes": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.10.4.tgz", + "integrity": "sha512-y5XJ9waMti2J+e7ij20e+aH+fho7Wb7W8rNuu72aKRwCHFqQdhkdU2lo3uZ9tQuboEJcUFayXdARhcxLQ3+6Fg==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-unicode-regex": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.10.4.tgz", + "integrity": "sha512-wNfsc4s8N2qnIwpO/WP2ZiSyjfpTamT2C9V9FDH/Ljub9zw6P3SjkXcFmc0RQUt96k2fmIvtla2MMjgTwIAC+A==", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.10.4", + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/preset-env": { + "version": "7.11.0", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.11.0.tgz", + "integrity": "sha512-2u1/k7rG/gTh02dylX2kL3S0IJNF+J6bfDSp4DI2Ma8QN6Y9x9pmAax59fsCk6QUQG0yqH47yJWA+u1I1LccAg==", + "requires": { + "@babel/compat-data": "^7.11.0", + "@babel/helper-compilation-targets": "^7.10.4", + "@babel/helper-module-imports": "^7.10.4", + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-proposal-async-generator-functions": "^7.10.4", + "@babel/plugin-proposal-class-properties": "^7.10.4", + "@babel/plugin-proposal-dynamic-import": "^7.10.4", + "@babel/plugin-proposal-export-namespace-from": "^7.10.4", + "@babel/plugin-proposal-json-strings": "^7.10.4", + "@babel/plugin-proposal-logical-assignment-operators": "^7.11.0", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4", + "@babel/plugin-proposal-numeric-separator": "^7.10.4", + "@babel/plugin-proposal-object-rest-spread": "^7.11.0", + "@babel/plugin-proposal-optional-catch-binding": "^7.10.4", + "@babel/plugin-proposal-optional-chaining": "^7.11.0", + "@babel/plugin-proposal-private-methods": "^7.10.4", + "@babel/plugin-proposal-unicode-property-regex": "^7.10.4", + "@babel/plugin-syntax-async-generators": "^7.8.0", + "@babel/plugin-syntax-class-properties": "^7.10.4", + "@babel/plugin-syntax-dynamic-import": "^7.8.0", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.0", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.0", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.0", + "@babel/plugin-syntax-optional-chaining": "^7.8.0", + "@babel/plugin-syntax-top-level-await": "^7.10.4", + "@babel/plugin-transform-arrow-functions": "^7.10.4", + "@babel/plugin-transform-async-to-generator": "^7.10.4", + "@babel/plugin-transform-block-scoped-functions": "^7.10.4", + "@babel/plugin-transform-block-scoping": "^7.10.4", + "@babel/plugin-transform-classes": "^7.10.4", + "@babel/plugin-transform-computed-properties": "^7.10.4", + "@babel/plugin-transform-destructuring": "^7.10.4", + "@babel/plugin-transform-dotall-regex": "^7.10.4", + "@babel/plugin-transform-duplicate-keys": "^7.10.4", + "@babel/plugin-transform-exponentiation-operator": "^7.10.4", + "@babel/plugin-transform-for-of": "^7.10.4", + "@babel/plugin-transform-function-name": "^7.10.4", + "@babel/plugin-transform-literals": "^7.10.4", + "@babel/plugin-transform-member-expression-literals": "^7.10.4", + "@babel/plugin-transform-modules-amd": "^7.10.4", + "@babel/plugin-transform-modules-commonjs": "^7.10.4", + "@babel/plugin-transform-modules-systemjs": "^7.10.4", + "@babel/plugin-transform-modules-umd": "^7.10.4", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.10.4", + "@babel/plugin-transform-new-target": "^7.10.4", + "@babel/plugin-transform-object-super": "^7.10.4", + "@babel/plugin-transform-parameters": "^7.10.4", + "@babel/plugin-transform-property-literals": "^7.10.4", + "@babel/plugin-transform-regenerator": "^7.10.4", + "@babel/plugin-transform-reserved-words": "^7.10.4", + "@babel/plugin-transform-shorthand-properties": "^7.10.4", + "@babel/plugin-transform-spread": "^7.11.0", + "@babel/plugin-transform-sticky-regex": "^7.10.4", + "@babel/plugin-transform-template-literals": "^7.10.4", + "@babel/plugin-transform-typeof-symbol": "^7.10.4", + "@babel/plugin-transform-unicode-escapes": "^7.10.4", + "@babel/plugin-transform-unicode-regex": "^7.10.4", + "@babel/preset-modules": "^0.1.3", + "@babel/types": "^7.11.0", + "browserslist": "^4.12.0", + "core-js-compat": "^3.6.2", + "invariant": "^2.2.2", + "levenary": "^1.1.1", + "semver": "^5.5.0" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + } + } + }, + "@babel/preset-flow": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/preset-flow/-/preset-flow-7.10.4.tgz", + "integrity": "sha512-XI6l1CptQCOBv+ZKYwynyswhtOKwpZZp5n0LG1QKCo8erRhqjoQV6nvx61Eg30JHpysWQSBwA2AWRU3pBbSY5g==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-transform-flow-strip-types": "^7.10.4" + } + }, + "@babel/preset-modules": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.4.tgz", + "integrity": "sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", + "@babel/plugin-transform-dotall-regex": "^7.4.4", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + } + }, + "@babel/preset-react": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.10.4.tgz", + "integrity": "sha512-BrHp4TgOIy4M19JAfO1LhycVXOPWdDbTRep7eVyatf174Hff+6Uk53sDyajqZPu8W1qXRBiYOfIamek6jA7YVw==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-transform-react-display-name": "^7.10.4", + "@babel/plugin-transform-react-jsx": "^7.10.4", + "@babel/plugin-transform-react-jsx-development": "^7.10.4", + "@babel/plugin-transform-react-jsx-self": "^7.10.4", + "@babel/plugin-transform-react-jsx-source": "^7.10.4", + "@babel/plugin-transform-react-pure-annotations": "^7.10.4" + } + }, + "@babel/preset-stage-0": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/preset-stage-0/-/preset-stage-0-7.8.3.tgz", + "integrity": "sha512-+l6FlG1j73t4wh78W41StbcCz0/9a1/y+vxfnjtHl060kSmcgMfGzK9MEkLvrCOXfhp9RCX+d88sm6rOqxEIEQ==" + }, + "@babel/runtime": { + "version": "7.11.2", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.11.2.tgz", + "integrity": "sha512-TeWkU52so0mPtDcaCTxNBI/IHiz0pZgr8VEFqXFtZWpYD08ZB6FaSwVAS8MKRQAP3bYKiVjwysOJgMFY28o6Tw==", + "requires": { + "regenerator-runtime": "^0.13.4" + } + }, + "@babel/template": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.10.4.tgz", + "integrity": "sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA==", + "requires": { + "@babel/code-frame": "^7.10.4", + "@babel/parser": "^7.10.4", + "@babel/types": "^7.10.4" + }, + "dependencies": { + "@babel/parser": { + "version": "7.11.4", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.11.4.tgz", + "integrity": "sha512-MggwidiH+E9j5Sh8pbrX5sJvMcsqS5o+7iB42M9/k0CD63MjYbdP4nhSh7uB5wnv2/RVzTZFTxzF/kIa5mrCqA==" + } + } + }, + "@babel/traverse": { + "version": "7.11.0", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.11.0.tgz", + "integrity": "sha512-ZB2V+LskoWKNpMq6E5UUCrjtDUh5IOTAyIl0dTjIEoXum/iKWkoIEKIRDnUucO6f+2FzNkE0oD4RLKoPIufDtg==", + "requires": { + "@babel/code-frame": "^7.10.4", + "@babel/generator": "^7.11.0", + "@babel/helper-function-name": "^7.10.4", + "@babel/helper-split-export-declaration": "^7.11.0", + "@babel/parser": "^7.11.0", + "@babel/types": "^7.11.0", + "debug": "^4.1.0", + "globals": "^11.1.0", + "lodash": "^4.17.19" + }, + "dependencies": { + "@babel/parser": { + "version": "7.11.4", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.11.4.tgz", + "integrity": "sha512-MggwidiH+E9j5Sh8pbrX5sJvMcsqS5o+7iB42M9/k0CD63MjYbdP4nhSh7uB5wnv2/RVzTZFTxzF/kIa5mrCqA==" + } + } + }, + "@babel/types": { + "version": "7.11.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.11.0.tgz", + "integrity": "sha512-O53yME4ZZI0jO1EVGtF1ePGl0LHirG4P1ibcD80XyzZcKhcMFeCXmh4Xb1ifGBIV233Qg12x4rBfQgA+tmOukA==", + "requires": { + "@babel/helper-validator-identifier": "^7.10.4", + "lodash": "^4.17.19", + "to-fast-properties": "^2.0.0" + } + }, "@gulp-sourcemaps/identity-map": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/@gulp-sourcemaps/identity-map/-/identity-map-1.0.2.tgz", @@ -176,6 +1436,20 @@ "integrity": "sha512-1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug==", "optional": true }, + "@types/unist": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.3.tgz", + "integrity": "sha512-FvUupuM3rlRsRtCN+fDudtmytGO6iHJuuRKS1Ss0pG5z8oX0diNEw94UEL7hgDbpN94rgaK5R7sWm6RrSkZuAQ==" + }, + "JSONStream": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz", + "integrity": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==", + "requires": { + "jsonparse": "^1.2.0", + "through": ">=2.2.7 <3" + } + }, "abbrev": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", @@ -249,6 +1523,11 @@ "ansi-wrap": "0.1.0" } }, + "ansi-html": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.7.tgz", + "integrity": "sha1-gTWEAhliqenm/QOflA0S9WynhZ4=" + }, "ansi-red": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/ansi-red/-/ansi-red-0.1.1.tgz", @@ -364,7 +1643,6 @@ "version": "1.0.10", "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "optional": true, "requires": { "sprintf-js": "~1.0.2" } @@ -611,6 +1889,19 @@ } } }, + "babel-plugin-dynamic-import-node": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", + "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==", + "requires": { + "object.assign": "^4.1.0" + } + }, + "babelify": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/babelify/-/babelify-10.0.0.tgz", + "integrity": "sha512-X40FaxyH7t3X+JFAKvb1H9wooWKLRCi8pg3m8poqtdZaIng+bjzp9RvKQCvRjF9isHiPkXspbbXT/zwXLtwgwg==" + }, "bach": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/bach/-/bach-1.2.0.tgz", @@ -632,6 +1923,11 @@ "resolved": "https://registry.npmjs.org/backo2/-/backo2-1.0.2.tgz", "integrity": "sha1-MasayLEpNjRj41s+u2n038+6eUc=" }, + "bail": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/bail/-/bail-1.0.5.tgz", + "integrity": "sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==" + }, "balanced-match": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", @@ -1065,6 +2361,38 @@ "inherits": "~2.0.0" } }, + "body": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/body/-/body-5.1.0.tgz", + "integrity": "sha1-5LoM5BCkaTYyM2dgnstOZVMSUGk=", + "requires": { + "continuable-cache": "^0.3.1", + "error": "^7.0.0", + "raw-body": "~1.1.0", + "safe-json-parse": "~1.0.1" + }, + "dependencies": { + "bytes": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-1.0.0.tgz", + "integrity": "sha1-NWnt6Lo0MV+rmcPpLLBMciDeH6g=" + }, + "raw-body": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-1.1.7.tgz", + "integrity": "sha1-HQJ8K/oRasxmI7yo8AAWVyqH1CU=", + "requires": { + "bytes": "1", + "string_decoder": "0.10" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" + } + } + }, "boolbase": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", @@ -1087,6 +2415,21 @@ "fill-range": "^7.0.1" } }, + "browser-resolve": { + "version": "1.11.3", + "resolved": "https://registry.npmjs.org/browser-resolve/-/browser-resolve-1.11.3.tgz", + "integrity": "sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ==", + "requires": { + "resolve": "1.1.7" + }, + "dependencies": { + "resolve": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz", + "integrity": "sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=" + } + } + }, "browser-sync": { "version": "2.26.12", "resolved": "https://registry.npmjs.org/browser-sync/-/browser-sync-2.26.12.tgz", @@ -1217,6 +2560,11 @@ "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==" }, + "buffer-shims": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/buffer-shims/-/buffer-shims-1.0.0.tgz", + "integrity": "sha1-mXjOMXOIxkmth5MCjDR37wRKi1E=" + }, "bytes": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", @@ -1267,6 +2615,11 @@ } } }, + "cached-path-relative": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/cached-path-relative/-/cached-path-relative-1.0.2.tgz", + "integrity": "sha512-5r2GqsoEb4qMTTN9J+WzXfjov+hjxT+j3u5K+kIVNIwAd99DLCJE9pBIMP1qVeybV6JiijL385Oz0DcYxfbOIg==" + }, "callsite": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/callsite/-/callsite-1.0.0.tgz", @@ -1324,6 +2677,11 @@ "url-to-options": "^1.0.1" } }, + "ccount": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/ccount/-/ccount-1.0.5.tgz", + "integrity": "sha512-MOli1W+nfbPLlKEhInaxhRdp7KVLFxLN5ykwzHgLsLI3H3gs5jjFAK4Eoj3OzzcxCtumDaI8onoVDeQyWaNTkw==" + }, "chalk": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", @@ -1336,6 +2694,26 @@ "supports-color": "^2.0.0" } }, + "character-entities": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-1.2.4.tgz", + "integrity": "sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==" + }, + "character-entities-html4": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-1.1.4.tgz", + "integrity": "sha512-HRcDxZuZqMx3/a+qrzxdBKBPUpxWEq9xw2OPZ3a/174ihfrQKVsFhqtthBInFy1zZ9GgZyFXOatNujm8M+El3g==" + }, + "character-entities-legacy": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz", + "integrity": "sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==" + }, + "character-reference-invalid": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz", + "integrity": "sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==" + }, "cheerio": { "version": "0.22.0", "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-0.22.0.tgz", @@ -1589,6 +2967,11 @@ "resolved": "https://registry.npmjs.org/coffeescript/-/coffeescript-2.5.1.tgz", "integrity": "sha512-J2jRPX0eeFh5VKyVnoLrfVFgLZtnnmp96WQSLAS8OrLm2wtQLcnikYKe1gViJKDH7vucjuhHvBKKBP3rKcD1tQ==" }, + "collapse-white-space": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/collapse-white-space/-/collapse-white-space-1.0.6.tgz", + "integrity": "sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==" + }, "collection-map": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/collection-map/-/collection-map-1.0.0.tgz", @@ -1639,6 +3022,11 @@ "delayed-stream": "~1.0.0" } }, + "comma-separated-tokens": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-1.0.8.tgz", + "integrity": "sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==" + }, "commander": { "version": "2.20.3", "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", @@ -1765,6 +3153,11 @@ "safe-buffer": "5.1.2" } }, + "continuable-cache": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/continuable-cache/-/continuable-cache-0.3.1.tgz", + "integrity": "sha1-vXJ6f67XfnH/OYWskzUakSczrQ8=" + }, "convert-source-map": { "version": "1.7.0", "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz", @@ -1792,6 +3185,22 @@ "is-plain-object": "^2.0.1" } }, + "core-js-compat": { + "version": "3.6.5", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.6.5.tgz", + "integrity": "sha512-7ItTKOhOZbznhXAQ2g/slGg1PJV5zDO/WdkTwi7UEOJmkvsE32PWvx6mKtDjiMpjnR2CNf6BAD6sSxIlv7ptng==", + "requires": { + "browserslist": "^4.8.5", + "semver": "7.0.0" + }, + "dependencies": { + "semver": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", + "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==" + } + } + }, "core-util-is": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", @@ -1915,6 +3324,11 @@ "assert-plus": "^1.0.0" } }, + "de-indent": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/de-indent/-/de-indent-1.0.2.tgz", + "integrity": "sha1-sgOOhG3DO6pXlhKNCAS0VbjB4h0=" + }, "debug": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", @@ -2156,6 +3570,11 @@ } } }, + "defined": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz", + "integrity": "sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=" + }, "del": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/del/-/del-5.1.0.tgz", @@ -2191,6 +3610,14 @@ "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" }, + "detab": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/detab/-/detab-2.0.3.tgz", + "integrity": "sha512-Up8P0clUVwq0FnFjDclzZsy9PadzRn5FFxrr47tQQvMHqyiFYVbpH8oXDzWtF0Q7pYy3l+RPmtBl+BsFF6wH0A==", + "requires": { + "repeat-string": "^1.5.4" + } + }, "detect-file": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz", @@ -2201,11 +3628,25 @@ "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-2.1.0.tgz", "integrity": "sha1-9B8cEL5LAOh7XxPaaAdZ8sW/0+I=" }, + "detective": { + "version": "4.7.1", + "resolved": "https://registry.npmjs.org/detective/-/detective-4.7.1.tgz", + "integrity": "sha512-H6PmeeUcZloWtdt4DAkFyzFL94arpHr3NOwwmVILFiy+9Qd4JTxxXrzfyGk/lmct2qVGBwTSwSXagqu2BxmWig==", + "requires": { + "acorn": "^5.2.1", + "defined": "^1.0.0" + } + }, "dev-ip": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/dev-ip/-/dev-ip-1.0.1.tgz", "integrity": "sha1-p2o+0YVb56ASu4rBbLgPPADcKPA=" }, + "diff": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==" + }, "dir-glob": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", @@ -2214,6 +3655,301 @@ "path-type": "^4.0.0" } }, + "doctrine-temporary-fork": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine-temporary-fork/-/doctrine-temporary-fork-2.1.0.tgz", + "integrity": "sha512-nliqOv5NkE4zMON4UA6AMJE6As35afs8aYXATpU4pTUdIKiARZwrJVEP1boA3Rx1ZXHVkwxkhcq4VkqvsuRLsA==", + "requires": { + "esutils": "^2.0.2" + } + }, + "documentation": { + "version": "13.0.2", + "resolved": "https://registry.npmjs.org/documentation/-/documentation-13.0.2.tgz", + "integrity": "sha512-pupdwmk51DZyRFxhnadYfN8CxjH5g7L20sIyWkm0u+Zk3J2NByy4CmygVfhv22rm4gHrm69qiHI7SqQ6HuNbeQ==", + "requires": { + "@babel/core": "^7.9.0", + "@babel/generator": "^7.9.4", + "@babel/parser": "7.10.2", + "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-proposal-decorators": "^7.8.3", + "@babel/plugin-proposal-do-expressions": "^7.8.3", + "@babel/plugin-proposal-export-default-from": "^7.8.3", + "@babel/plugin-proposal-export-namespace-from": "^7.8.3", + "@babel/plugin-proposal-function-bind": "^7.8.3", + "@babel/plugin-proposal-function-sent": "^7.8.3", + "@babel/plugin-proposal-json-strings": "^7.8.3", + "@babel/plugin-proposal-logical-assignment-operators": "^7.8.3", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-proposal-numeric-separator": "^7.8.3", + "@babel/plugin-proposal-optional-chaining": "^7.9.0", + "@babel/plugin-proposal-pipeline-operator": "^7.8.3", + "@babel/plugin-proposal-private-methods": "^7.8.3", + "@babel/plugin-proposal-throw-expressions": "^7.8.3", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/preset-env": "^7.9.0", + "@babel/preset-flow": "^7.9.0", + "@babel/preset-react": "^7.9.4", + "@babel/preset-stage-0": "^7.8.3", + "@babel/traverse": "^7.9.0", + "@babel/types": "^7.9.0", + "ansi-html": "^0.0.7", + "babelify": "^10.0.0", + "chalk": "^2.3.0", + "chokidar": "^3.4.0", + "concat-stream": "^1.6.0", + "diff": "^4.0.1", + "doctrine-temporary-fork": "2.1.0", + "get-port": "^5.0.0", + "git-url-parse": "^11.1.2", + "github-slugger": "1.2.0", + "glob": "^7.1.2", + "globals-docs": "^2.4.0", + "highlight.js": "^9.15.5", + "ini": "^1.3.5", + "js-yaml": "^3.10.0", + "lodash": "^4.17.10", + "mdast-util-inject": "^1.1.0", + "micromatch": "^3.1.5", + "mime": "^2.2.0", + "module-deps-sortable": "5.0.0", + "parse-filepath": "^1.0.2", + "pify": "^5.0.0", + "read-pkg-up": "^4.0.0", + "remark": "^9.0.0", + "remark-html": "^8.0.0", + "remark-reference-links": "^4.0.1", + "remark-toc": "^5.0.0", + "resolve": "^1.8.1", + "stream-array": "^1.1.2", + "strip-json-comments": "^2.0.1", + "tiny-lr": "^1.1.0", + "unist-builder": "^1.0.2", + "unist-util-visit": "^1.3.0", + "vfile": "^4.0.0", + "vfile-reporter": "^6.0.0", + "vfile-sort": "^2.1.0", + "vinyl": "^2.1.0", + "vinyl-fs": "^3.0.2", + "vue-template-compiler": "^2.5.16", + "yargs": "^15.3.1" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=" + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" + }, + "load-json-file": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", + "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=", + "requires": { + "graceful-fs": "^4.1.2", + "parse-json": "^4.0.0", + "pify": "^3.0.0", + "strip-bom": "^3.0.0" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=" + } + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "mime": { + "version": "2.4.6", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.4.6.tgz", + "integrity": "sha512-RZKhC3EmpBchfTGBVb8fb+RL2cWyw/32lshnsETttkBAyAUXSGHxbEJWWRXc751DrIxG1q04b8QwMbAwkRPpUA==" + }, + "parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "requires": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + } + }, + "path-type": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "requires": { + "pify": "^3.0.0" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=" + } + } + }, + "pify": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-5.0.0.tgz", + "integrity": "sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==" + }, + "read-pkg": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", + "integrity": "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=", + "requires": { + "load-json-file": "^4.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^3.0.0" + } + }, + "read-pkg-up": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-4.0.0.tgz", + "integrity": "sha512-6etQSH7nJGsK0RbG/2TeDzZFa8shjQ1um+SwQQ5cwKy0dhSXdOncEhb1CPpvQG4h7FyOV6EB6YlV0yJvZQNAkA==", + "requires": { + "find-up": "^3.0.0", + "read-pkg": "^3.0.0" + } + }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, "dom-serializer": { "version": "0.2.2", "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", @@ -2300,6 +4036,43 @@ } } }, + "duplexer2": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz", + "integrity": "sha1-ixLauHjA1p4+eJEFFmKjL8a93ME=", + "requires": { + "readable-stream": "^2.0.2" + }, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, "duplexer3": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", @@ -2505,6 +4278,14 @@ "resolved": "https://registry.npmjs.org/entities/-/entities-2.0.3.tgz", "integrity": "sha512-MyoZ0jgnLvB2X3Lg5HqpFmn1kybDiIfEQmKzTb5apr51Rb+T3KdmMiqa70T+bhGnyv7bQ6WMj2QMHpGMmlrUYQ==" }, + "error": { + "version": "7.2.1", + "resolved": "https://registry.npmjs.org/error/-/error-7.2.1.tgz", + "integrity": "sha512-fo9HBvWnx3NGUKMvMwB/CBCMMrfEJgbDTVDEkPygA3Bdd3lM1OyCd+rbQ8BwnpF6GdVeOLDNmyL4N5Bg80ZvdA==", + "requires": { + "string-template": "~0.2.1" + } + }, "error-ex": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", @@ -2606,8 +4387,12 @@ "esprima": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", - "optional": true + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" }, "etag": { "version": "1.8.1", @@ -2936,6 +4721,14 @@ "reusify": "^1.0.4" } }, + "faye-websocket": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.10.0.tgz", + "integrity": "sha1-TkkvjQTftviQA1B/btvy1QHnxvQ=", + "requires": { + "websocket-driver": ">=0.5.1" + } + }, "fd-slicer": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", @@ -3440,11 +5233,21 @@ "globule": "^1.0.0" } }, + "gensync": { + "version": "1.0.0-beta.1", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.1.tgz", + "integrity": "sha512-r8EC6NO1sngH/zdD9fiRDLdcgnbayXah+mLgManTaIZJqEC1MZstmnox8KpnI2/fxQwrp5OpCOYWLp4rBl4Jcg==" + }, "get-caller-file": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" }, + "get-port": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/get-port/-/get-port-5.1.1.tgz", + "integrity": "sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==" + }, "get-proxy": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/get-proxy/-/get-proxy-2.1.0.tgz", @@ -3577,6 +5380,38 @@ } } }, + "git-up": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/git-up/-/git-up-4.0.2.tgz", + "integrity": "sha512-kbuvus1dWQB2sSW4cbfTeGpCMd8ge9jx9RKnhXhuJ7tnvT+NIrTVfYZxjtflZddQYcmdOTlkAcjmx7bor+15AQ==", + "requires": { + "is-ssh": "^1.3.0", + "parse-url": "^5.0.0" + } + }, + "git-url-parse": { + "version": "11.1.3", + "resolved": "https://registry.npmjs.org/git-url-parse/-/git-url-parse-11.1.3.tgz", + "integrity": "sha512-GPsfwticcu52WQ+eHp0IYkAyaOASgYdtsQDIt4rUp6GbiNt1P9ddrh3O0kQB0eD4UJZszVqNT3+9Zwcg40fywA==", + "requires": { + "git-up": "^4.0.0" + } + }, + "github-slugger": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/github-slugger/-/github-slugger-1.2.0.tgz", + "integrity": "sha512-wIaa75k1vZhyPm9yWrD08A5Xnx/V+RmzGrpjQuLemGKSb77Qukiaei58Bogrl/LZSADDfPzKJX8jhLs4CRTl7Q==", + "requires": { + "emoji-regex": ">=6.0.0 <=6.1.1" + }, + "dependencies": { + "emoji-regex": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-6.1.1.tgz", + "integrity": "sha1-xs0OwbBkLio8Z6ETfvxeeW2k+I4=" + } + } + }, "glob": { "version": "7.1.6", "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", @@ -3925,6 +5760,16 @@ "which": "^1.2.14" } }, + "globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" + }, + "globals-docs": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/globals-docs/-/globals-docs-2.4.1.tgz", + "integrity": "sha512-qpPnUKkWnz8NESjrCvnlGklsgiQzlq+rcCxoG5uNQ+dNA7cFMCmn231slLAwS2N/PlkzZ3COL8CcS10jXmLHqg==" + }, "globby": { "version": "10.0.2", "resolved": "https://registry.npmjs.org/globby/-/globby-10.0.2.tgz", @@ -4162,6 +6007,53 @@ } } }, + "gulp-documentation": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/gulp-documentation/-/gulp-documentation-3.2.1.tgz", + "integrity": "sha1-r1JKv9cuI+cVXwCyoYoHo2QqjdU=", + "requires": { + "through2": "^2.0.3", + "vinyl": "^2.1.0" + }, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "requires": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + } + } + }, "gulp-htmlmin": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/gulp-htmlmin/-/gulp-htmlmin-5.0.1.tgz", @@ -4745,11 +6637,58 @@ } } }, + "hast-util-is-element": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/hast-util-is-element/-/hast-util-is-element-1.1.0.tgz", + "integrity": "sha512-oUmNua0bFbdrD/ELDSSEadRVtWZOf3iF6Lbv81naqsIV99RnSCieTbWuWCY8BAeEfKJTKl0gRdokv+dELutHGQ==" + }, + "hast-util-sanitize": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/hast-util-sanitize/-/hast-util-sanitize-1.3.1.tgz", + "integrity": "sha512-AIeKHuHx0Wk45nSkGVa2/ujQYTksnDl8gmmKo/mwQi7ag7IBZ8cM3nJ2G86SajbjGP/HRpud6kMkPtcM2i0Tlw==", + "requires": { + "xtend": "^4.0.1" + } + }, + "hast-util-to-html": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-4.0.1.tgz", + "integrity": "sha512-2emzwyf0xEsc4TBIPmDJmBttIw8R4SXAJiJZoiRR/s47ODYWgOqNoDbf2SJAbMbfNdFWMiCSOrI3OVnX6Qq2Mg==", + "requires": { + "ccount": "^1.0.0", + "comma-separated-tokens": "^1.0.1", + "hast-util-is-element": "^1.0.0", + "hast-util-whitespace": "^1.0.0", + "html-void-elements": "^1.0.0", + "property-information": "^4.0.0", + "space-separated-tokens": "^1.0.0", + "stringify-entities": "^1.0.1", + "unist-util-is": "^2.0.0", + "xtend": "^4.0.1" + }, + "dependencies": { + "unist-util-is": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-2.1.3.tgz", + "integrity": "sha512-4WbQX2iwfr/+PfM4U3zd2VNXY+dWtZsN1fLnWEi2QQXA4qyDYAZcDMfXUX0Cu6XZUHHAO9q4nyxxLT4Awk1qUA==" + } + } + }, + "hast-util-whitespace": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-1.0.4.tgz", + "integrity": "sha512-I5GTdSfhYfAPNztx2xJRQpG8cuDSNt599/7YUn7Gx/WxNMsG+a835k97TDkFgk123cwjfwINaZknkKkphx/f2A==" + }, "he": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" }, + "highlight.js": { + "version": "9.18.3", + "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-9.18.3.tgz", + "integrity": "sha512-zBZAmhSupHIl5sITeMqIJnYCDfAEc3Gdkqj65wC1lpI468MMQeeQkhcIAvk+RylAkxrCcI9xy9piHiXeQ1BdzQ==" + }, "homedir-polyfill": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", @@ -4790,6 +6729,11 @@ } } }, + "html-void-elements": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/html-void-elements/-/html-void-elements-1.0.5.tgz", + "integrity": "sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w==" + }, "htmlparser2": { "version": "3.10.1", "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz", @@ -4835,6 +6779,11 @@ } } }, + "http-parser-js": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.2.tgz", + "integrity": "sha512-opCO9ASqg5Wy2FNo7A0sxy71yGbbkJJXLdgMK04Tcypw9jr2MgWbyubb0+WdmDmGnFflO7fRbqbaihh/ENDlRQ==" + }, "http-proxy": { "version": "1.18.1", "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", @@ -4997,6 +6946,14 @@ "p-is-promise": "^1.1.0" } }, + "invariant": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", + "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", + "requires": { + "loose-envify": "^1.0.0" + } + }, "invert-kv": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", @@ -5039,6 +6996,25 @@ } } }, + "is-alphabetical": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.4.tgz", + "integrity": "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==" + }, + "is-alphanumeric": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-alphanumeric/-/is-alphanumeric-1.0.0.tgz", + "integrity": "sha1-Spzvcdr0wAHB2B1j0UDPU/1oifQ=" + }, + "is-alphanumerical": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz", + "integrity": "sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==", + "requires": { + "is-alphabetical": "^1.0.0", + "is-decimal": "^1.0.0" + } + }, "is-arrayish": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", @@ -5090,6 +7066,11 @@ "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz", "integrity": "sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==" }, + "is-decimal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.4.tgz", + "integrity": "sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==" + }, "is-descriptor": { "version": "0.1.6", "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", @@ -5155,6 +7136,11 @@ "is-extglob": "^2.1.1" } }, + "is-hexadecimal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz", + "integrity": "sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==" + }, "is-jpg": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/is-jpg/-/is-jpg-2.0.0.tgz", @@ -5204,8 +7190,7 @@ "is-plain-obj": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", - "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=", - "optional": true + "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=" }, "is-plain-object": { "version": "2.0.4", @@ -5248,6 +7233,14 @@ "integrity": "sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==", "optional": true }, + "is-ssh": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/is-ssh/-/is-ssh-1.3.2.tgz", + "integrity": "sha512-elEw0/0c2UscLrNG+OAorbP539E3rhliKPg+hDMWN9VwrDXfYK+4PBEykDPfxlYYtQvl84TascnQyobfQLHEhQ==", + "requires": { + "protocols": "^1.1.0" + } + }, "is-stream": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", @@ -5294,11 +7287,21 @@ "resolved": "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-1.0.0.tgz", "integrity": "sha1-Kb8+/3Ab4tTTFdusw5vDn+j2Aao=" }, + "is-whitespace-character": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-whitespace-character/-/is-whitespace-character-1.0.4.tgz", + "integrity": "sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w==" + }, "is-windows": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==" }, + "is-word-character": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-word-character/-/is-word-character-1.0.4.tgz", + "integrity": "sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA==" + }, "is-wsl": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", @@ -5349,11 +7352,15 @@ "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.6.3.tgz", "integrity": "sha512-fiUvdfCaAXoQTHdKMgTvg6IkecXDcVz6V5rlftUTclF9IKBjMizvSdQaCl/z/6TApDeby5NL+axYou3i0mu1Pg==" }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, "js-yaml": { "version": "3.14.0", "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.0.tgz", "integrity": "sha512-/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A==", - "optional": true, "requires": { "argparse": "^1.0.7", "esprima": "^4.0.0" @@ -5364,12 +7371,22 @@ "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=" }, + "jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" + }, "json-buffer": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", "integrity": "sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=", "optional": true }, + "json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==" + }, "json-schema": { "version": "0.2.3", "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", @@ -5390,6 +7407,14 @@ "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" }, + "json5": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz", + "integrity": "sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==", + "requires": { + "minimist": "^1.2.5" + } + }, "jsonfile": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-3.0.1.tgz", @@ -5398,6 +7423,11 @@ "graceful-fs": "^4.1.6" } }, + "jsonparse": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", + "integrity": "sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA=" + }, "jsprim": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", @@ -5495,6 +7525,19 @@ "flush-write-stream": "^1.0.2" } }, + "leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==" + }, + "levenary": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/levenary/-/levenary-1.1.1.tgz", + "integrity": "sha512-mkAdOIt79FD6irqjYSs4rdbnlT5vRonMEvBVPVb3XmevfS8kgRXwfes0dhPdEtzTWD/1eNE/Bm/G1iRt6DcnQQ==", + "requires": { + "leven": "^3.1.0" + } + }, "liftoff": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/liftoff/-/liftoff-3.1.0.tgz", @@ -5523,6 +7566,11 @@ "coffeescript": "^2.0.3" } }, + "livereload-js": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/livereload-js/-/livereload-js-2.4.0.tgz", + "integrity": "sha512-XPQH8Z2GDP/Hwz2PCDrh2mth4yFejwA1OZ/81Ti3LgKyhDcEjsSsqFWZojHG0va/duGd+WyosY7eXLDoOyqcPw==" + }, "load-json-file": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", @@ -5660,6 +7708,19 @@ "integrity": "sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc=", "optional": true }, + "longest-streak": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-2.0.4.tgz", + "integrity": "sha512-vM6rUVCVUJJt33bnmHiZEvr7wPT78ztX7rojL+LW51bHtLh6HTjx84LA5W4+oa6aKEJA7jJu5LR6vQRBpA5DVg==" + }, + "loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "requires": { + "js-tokens": "^3.0.0 || ^4.0.0" + } + }, "loud-rejection": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz", @@ -5761,6 +7822,16 @@ "object-visit": "^1.0.0" } }, + "markdown-escapes": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/markdown-escapes/-/markdown-escapes-1.0.4.tgz", + "integrity": "sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg==" + }, + "markdown-table": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-1.1.3.tgz", + "integrity": "sha512-1RUZVgQlpJSPWYbFSpmudq5nHY1doEIv89gBtF0s4gW1GF2XorxcA/70M5vq7rLv0a6mhOUccRsqkwhwLCIQ2Q==" + }, "matchdep": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/matchdep/-/matchdep-2.0.0.tgz", @@ -5903,12 +7974,95 @@ } } }, + "mdast-util-compact": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mdast-util-compact/-/mdast-util-compact-1.0.4.tgz", + "integrity": "sha512-3YDMQHI5vRiS2uygEFYaqckibpJtKq5Sj2c8JioeOQBU6INpKbdWzfyLqFFnDwEcEnRFIdMsguzs5pC1Jp4Isg==", + "requires": { + "unist-util-visit": "^1.1.0" + } + }, + "mdast-util-definitions": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-1.2.5.tgz", + "integrity": "sha512-CJXEdoLfiISCDc2JB6QLb79pYfI6+GcIH+W2ox9nMc7od0Pz+bovcHsiq29xAQY6ayqe/9CsK2VzkSJdg1pFYA==", + "requires": { + "unist-util-visit": "^1.0.0" + } + }, + "mdast-util-inject": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-inject/-/mdast-util-inject-1.1.0.tgz", + "integrity": "sha1-2wa4tYW+lZotzS+H9HK6m3VvNnU=", + "requires": { + "mdast-util-to-string": "^1.0.0" + } + }, + "mdast-util-to-hast": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-3.0.4.tgz", + "integrity": "sha512-/eIbly2YmyVgpJNo+bFLLMCI1XgolO/Ffowhf+pHDq3X4/V6FntC9sGQCDLM147eTS+uSXv5dRzJyFn+o0tazA==", + "requires": { + "collapse-white-space": "^1.0.0", + "detab": "^2.0.0", + "mdast-util-definitions": "^1.2.0", + "mdurl": "^1.0.1", + "trim": "0.0.1", + "trim-lines": "^1.0.0", + "unist-builder": "^1.0.1", + "unist-util-generated": "^1.1.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^1.1.0", + "xtend": "^4.0.1" + } + }, + "mdast-util-to-string": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-1.1.0.tgz", + "integrity": "sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==" + }, + "mdast-util-toc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-toc/-/mdast-util-toc-3.1.0.tgz", + "integrity": "sha512-Za0hqL1PqWrvxGtA/3NH9D5nhGAUS9grMM4obEAz5+zsk1RIw/vWUchkaoDLNdrwk05A0CSC5eEXng36/1qE5w==", + "requires": { + "github-slugger": "^1.2.1", + "mdast-util-to-string": "^1.0.5", + "unist-util-is": "^2.1.2", + "unist-util-visit": "^1.1.0" + }, + "dependencies": { + "emoji-regex": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-6.1.1.tgz", + "integrity": "sha1-xs0OwbBkLio8Z6ETfvxeeW2k+I4=" + }, + "github-slugger": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/github-slugger/-/github-slugger-1.3.0.tgz", + "integrity": "sha512-gwJScWVNhFYSRDvURk/8yhcFBee6aFjye2a7Lhb2bUyRulpIoek9p0I9Kt7PT67d/nUlZbFu8L9RLiA0woQN8Q==", + "requires": { + "emoji-regex": ">=6.0.0 <=6.1.1" + } + }, + "unist-util-is": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-2.1.3.tgz", + "integrity": "sha512-4WbQX2iwfr/+PfM4U3zd2VNXY+dWtZsN1fLnWEi2QQXA4qyDYAZcDMfXUX0Cu6XZUHHAO9q4nyxxLT4Awk1qUA==" + } + } + }, "mdn-data": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==", "optional": true }, + "mdurl": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz", + "integrity": "sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4=" + }, "memoizee": { "version": "0.4.14", "resolved": "https://registry.npmjs.org/memoizee/-/memoizee-0.4.14.tgz", @@ -6026,6 +8180,107 @@ "minimist": "^1.2.5" } }, + "module-deps-sortable": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/module-deps-sortable/-/module-deps-sortable-5.0.0.tgz", + "integrity": "sha512-bnGGeghQmz/t/6771/KC4FmxpVm126iR6AAzzq4N6hVZQVl4+ZZBv+VF3PJmDyxXtVtgcgTSSP7NL+jq1QAHrg==", + "requires": { + "JSONStream": "^1.0.3", + "browser-resolve": "^1.7.0", + "cached-path-relative": "^1.0.0", + "concat-stream": "~1.5.0", + "defined": "^1.0.0", + "detective": "^4.0.0", + "duplexer2": "^0.1.2", + "inherits": "^2.0.1", + "readable-stream": "^2.0.2", + "resolve": "^1.1.3", + "stream-combiner2": "^1.1.1", + "subarg": "^1.0.0", + "through2": "^2.0.0", + "xtend": "^4.0.0" + }, + "dependencies": { + "concat-stream": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.5.2.tgz", + "integrity": "sha1-cIl4Yk2FavQaWnQd790mHadSwmY=", + "requires": { + "inherits": "~2.0.1", + "readable-stream": "~2.0.0", + "typedarray": "~0.0.5" + }, + "dependencies": { + "readable-stream": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz", + "integrity": "sha1-j5A0HmilPMySh4jaz80Rs265t44=", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "~1.0.0", + "process-nextick-args": "~1.0.6", + "string_decoder": "~0.10.x", + "util-deprecate": "~1.0.1" + } + } + } + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "process-nextick-args": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=" + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": { + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" + }, + "through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "requires": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + } + } + }, "mozjpeg": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/mozjpeg/-/mozjpeg-6.0.1.tgz", @@ -6666,6 +8921,19 @@ "no-case": "^2.2.0" } }, + "parse-entities": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-1.2.2.tgz", + "integrity": "sha512-NzfpbxW/NPrzZ/yYSoQxyqUZMZXIdCfE0OIN4ESsnptHJECoUk3FZktxNuzQf4tjt5UEopnxpYJbvYuxIFDdsg==", + "requires": { + "character-entities": "^1.0.0", + "character-entities-legacy": "^1.0.0", + "character-reference-invalid": "^1.0.0", + "is-alphanumerical": "^1.0.0", + "is-decimal": "^1.0.0", + "is-hexadecimal": "^1.0.0" + } + }, "parse-filepath": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz", @@ -6694,6 +8962,33 @@ "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", "integrity": "sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=" }, + "parse-path": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/parse-path/-/parse-path-4.0.2.tgz", + "integrity": "sha512-HSqVz6iuXSiL8C1ku5Gl1Z5cwDd9Wo0q8CoffdAghP6bz8pJa1tcMC+m4N+z6VAS8QdksnIGq1TB6EgR4vPR6w==", + "requires": { + "is-ssh": "^1.3.0", + "protocols": "^1.4.0" + } + }, + "parse-url": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/parse-url/-/parse-url-5.0.2.tgz", + "integrity": "sha512-Czj+GIit4cdWtxo3ISZCvLiUjErSo0iI3wJ+q9Oi3QuMYTI6OZu+7cewMWZ+C1YAnKhYTk6/TLuhIgCypLthPA==", + "requires": { + "is-ssh": "^1.3.0", + "normalize-url": "^3.3.0", + "parse-path": "^4.0.0", + "protocols": "^1.4.0" + }, + "dependencies": { + "normalize-url": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-3.3.0.tgz", + "integrity": "sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==" + } + } + }, "parseqs": { "version": "0.0.5", "resolved": "https://registry.npmjs.org/parseqs/-/parseqs-0.0.5.tgz", @@ -6905,12 +9200,25 @@ "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" }, + "property-information": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/property-information/-/property-information-4.2.0.tgz", + "integrity": "sha512-TlgDPagHh+eBKOnH2VYvk8qbwsCG/TAJdmTL7f1PROUcSO8qt/KSmShEQ/OKvock8X9tFjtqjCScyOkkkvIKVQ==", + "requires": { + "xtend": "^4.0.1" + } + }, "proto-list": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", "integrity": "sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk=", "optional": true }, + "protocols": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/protocols/-/protocols-1.4.8.tgz", + "integrity": "sha512-IgjKyaUSjsROSO8/D49Ab7hP8mJgTYcqApOqdPhLoPxAplXmkp+zRvsrSQjFn5by0rhm4VH0GAUELIPpx7B1yg==" + }, "pseudomap": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", @@ -7090,6 +9398,32 @@ } } }, + "regenerate": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.1.tgz", + "integrity": "sha512-j2+C8+NtXQgEKWk49MMP5P/u2GhnahTtVkRIHr5R5lVRlbKvmQ+oS+A5aLKWp2ma5VkT8sh6v+v4hbH0YHR66A==" + }, + "regenerate-unicode-properties": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz", + "integrity": "sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA==", + "requires": { + "regenerate": "^1.4.0" + } + }, + "regenerator-runtime": { + "version": "0.13.7", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", + "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==" + }, + "regenerator-transform": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.5.tgz", + "integrity": "sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==", + "requires": { + "@babel/runtime": "^7.8.4" + } + }, "regex-not": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", @@ -7099,11 +9433,135 @@ "safe-regex": "^1.1.0" } }, + "regexpu-core": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.0.tgz", + "integrity": "sha512-TQ4KXRnIn6tz6tjnrXEkD/sshygKH/j5KzK86X8MkeHyZ8qst/LZ89j3X4/8HEIfHANTFIP/AbXakeRhWIl5YQ==", + "requires": { + "regenerate": "^1.4.0", + "regenerate-unicode-properties": "^8.2.0", + "regjsgen": "^0.5.1", + "regjsparser": "^0.6.4", + "unicode-match-property-ecmascript": "^1.0.4", + "unicode-match-property-value-ecmascript": "^1.2.0" + } + }, + "regjsgen": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.2.tgz", + "integrity": "sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==" + }, + "regjsparser": { + "version": "0.6.4", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.4.tgz", + "integrity": "sha512-64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw==", + "requires": { + "jsesc": "~0.5.0" + }, + "dependencies": { + "jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=" + } + } + }, "relateurl": { "version": "0.2.7", "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", "integrity": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=" }, + "remark": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/remark/-/remark-9.0.0.tgz", + "integrity": "sha512-amw8rGdD5lHbMEakiEsllmkdBP+/KpjW/PRK6NSGPZKCQowh0BT4IWXDAkRMyG3SB9dKPXWMviFjNusXzXNn3A==", + "requires": { + "remark-parse": "^5.0.0", + "remark-stringify": "^5.0.0", + "unified": "^6.0.0" + } + }, + "remark-html": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/remark-html/-/remark-html-8.0.0.tgz", + "integrity": "sha512-3V2391GL3hxKhrkzYOyfPpxJ6taIKLCfuLVqumeWQOk3H9nTtSQ8St8kMYkBVIEAquXN1chT83qJ/2lAW+dpEg==", + "requires": { + "hast-util-sanitize": "^1.0.0", + "hast-util-to-html": "^4.0.0", + "mdast-util-to-hast": "^3.0.0", + "xtend": "^4.0.1" + } + }, + "remark-parse": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-5.0.0.tgz", + "integrity": "sha512-b3iXszZLH1TLoyUzrATcTQUZrwNl1rE70rVdSruJFlDaJ9z5aMkhrG43Pp68OgfHndL/ADz6V69Zow8cTQu+JA==", + "requires": { + "collapse-white-space": "^1.0.2", + "is-alphabetical": "^1.0.0", + "is-decimal": "^1.0.0", + "is-whitespace-character": "^1.0.0", + "is-word-character": "^1.0.0", + "markdown-escapes": "^1.0.0", + "parse-entities": "^1.1.0", + "repeat-string": "^1.5.4", + "state-toggle": "^1.0.0", + "trim": "0.0.1", + "trim-trailing-lines": "^1.0.0", + "unherit": "^1.0.4", + "unist-util-remove-position": "^1.0.0", + "vfile-location": "^2.0.0", + "xtend": "^4.0.1" + } + }, + "remark-reference-links": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/remark-reference-links/-/remark-reference-links-4.0.4.tgz", + "integrity": "sha512-+2X8hwSQqxG4tvjYZNrTcEC+bXp8shQvwRGG6J/rnFTvBoU4G0BBviZoqKGZizLh/DG+0gSYhiDDWCqyxXW1iQ==", + "requires": { + "unist-util-visit": "^1.0.0" + } + }, + "remark-slug": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/remark-slug/-/remark-slug-5.1.2.tgz", + "integrity": "sha512-DWX+Kd9iKycqyD+/B+gEFO3jjnt7Yg1O05lygYSNTe5i5PIxxxPjp5qPBDxPIzp5wreF7+1ROCwRgjEcqmzr3A==", + "requires": { + "github-slugger": "^1.0.0", + "mdast-util-to-string": "^1.0.0", + "unist-util-visit": "^1.0.0" + } + }, + "remark-stringify": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/remark-stringify/-/remark-stringify-5.0.0.tgz", + "integrity": "sha512-Ws5MdA69ftqQ/yhRF9XhVV29mhxbfGhbz0Rx5bQH+oJcNhhSM6nCu1EpLod+DjrFGrU0BMPs+czVmJZU7xiS7w==", + "requires": { + "ccount": "^1.0.0", + "is-alphanumeric": "^1.0.0", + "is-decimal": "^1.0.0", + "is-whitespace-character": "^1.0.0", + "longest-streak": "^2.0.1", + "markdown-escapes": "^1.0.0", + "markdown-table": "^1.1.0", + "mdast-util-compact": "^1.0.0", + "parse-entities": "^1.0.2", + "repeat-string": "^1.5.4", + "state-toggle": "^1.0.0", + "stringify-entities": "^1.0.1", + "unherit": "^1.0.4", + "xtend": "^4.0.1" + } + }, + "remark-toc": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/remark-toc/-/remark-toc-5.1.1.tgz", + "integrity": "sha512-vCPW4YOsm2CfyuScdktM9KDnJXVHJsd/ZeRtst+dnBU3B3KKvt8bc+bs5syJjyptAHfqo7H+5Uhz+2blWBfwow==", + "requires": { + "mdast-util-toc": "^3.0.0", + "remark-slug": "^5.0.0" + } + }, "remove-bom-buffer": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/remove-bom-buffer/-/remove-bom-buffer-3.0.0.tgz", @@ -7398,6 +9856,11 @@ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" }, + "safe-json-parse": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/safe-json-parse/-/safe-json-parse-1.0.1.tgz", + "integrity": "sha1-PnZyPjjf3aE8mx0poeB//uSzC1c=" + }, "safe-regex": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", @@ -8044,6 +10507,11 @@ "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz", "integrity": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=" }, + "space-separated-tokens": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz", + "integrity": "sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==" + }, "sparkles": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/sparkles/-/sparkles-1.0.1.tgz", @@ -8088,8 +10556,7 @@ "sprintf-js": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", - "optional": true + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" }, "squeak": { "version": "1.3.0", @@ -8129,6 +10596,11 @@ "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", "integrity": "sha1-VHxws0fo0ytOEI6hoqFZ5f3eGcA=" }, + "state-toggle": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/state-toggle/-/state-toggle-1.0.3.tgz", + "integrity": "sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==" + }, "static-extend": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", @@ -8190,6 +10662,83 @@ } } }, + "stream-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/stream-array/-/stream-array-1.1.2.tgz", + "integrity": "sha1-nl9zRfITfDDuO0mLkRToC1K7frU=", + "requires": { + "readable-stream": "~2.1.0" + }, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "process-nextick-args": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=" + }, + "readable-stream": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.1.5.tgz", + "integrity": "sha1-ZvqLcg4UOLNkaB8q0aY8YYRIydA=", + "requires": { + "buffer-shims": "^1.0.0", + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "~1.0.0", + "process-nextick-args": "~1.0.6", + "string_decoder": "~0.10.x", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" + } + } + }, + "stream-combiner2": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/stream-combiner2/-/stream-combiner2-1.1.1.tgz", + "integrity": "sha1-+02KFCDqNidk4hrUeAOXvry0HL4=", + "requires": { + "duplexer2": "~0.1.0", + "readable-stream": "^2.0.2" + }, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, "stream-exhaust": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/stream-exhaust/-/stream-exhaust-1.0.2.tgz", @@ -8215,6 +10764,11 @@ "integrity": "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=", "optional": true }, + "string-template": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/string-template/-/string-template-0.2.1.tgz", + "integrity": "sha1-QpMuWYo1LQH8IuwzZ9nYTuxsmt0=" + }, "string-width": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", @@ -8273,6 +10827,17 @@ } } }, + "stringify-entities": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-1.3.2.tgz", + "integrity": "sha512-nrBAQClJAPN2p+uGCVJRPIPakKeKWZ9GtBCmormE7pWOSlHat7+x5A8gx85M7HM5Dt0BP3pP5RhVW77WdbJJ3A==", + "requires": { + "character-entities-html4": "^1.0.0", + "character-entities-legacy": "^1.0.0", + "is-alphanumerical": "^1.0.0", + "is-hexadecimal": "^1.0.0" + } + }, "strip-ansi": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", @@ -8323,6 +10888,11 @@ "get-stdin": "^4.0.1" } }, + "strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=" + }, "strip-outer": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz", @@ -8332,6 +10902,14 @@ "escape-string-regexp": "^1.0.2" } }, + "subarg": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/subarg/-/subarg-1.0.0.tgz", + "integrity": "sha1-9izxdYHplrSPyWVpn1TAauJouNI=", + "requires": { + "minimist": "^1.1.0" + } + }, "supports-color": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", @@ -8503,8 +11081,7 @@ "through": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", - "optional": true + "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=" }, "through2": { "version": "3.0.2", @@ -8628,6 +11205,34 @@ "next-tick": "1" } }, + "tiny-lr": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/tiny-lr/-/tiny-lr-1.1.1.tgz", + "integrity": "sha512-44yhA3tsaRoMOjQQ+5v5mVdqef+kH6Qze9jTpqtVufgYjYt08zyZAwNwwVBj3i1rJMnR52IxOW0LK0vBzgAkuA==", + "requires": { + "body": "^5.1.0", + "debug": "^3.1.0", + "faye-websocket": "~0.10.0", + "livereload-js": "^2.3.0", + "object-assign": "^4.1.0", + "qs": "^6.4.0" + }, + "dependencies": { + "debug": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", + "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", + "requires": { + "ms": "^2.1.1" + } + }, + "qs": { + "version": "6.9.4", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.9.4.tgz", + "integrity": "sha512-A1kFqHekCTM7cz0udomYUoYNWjBebHm/5wzU/XqrBRBNWectVH0QIiN+NEcZ0Dte5hvzHwbr8+XQmguPhJ6WdQ==" + } + } + }, "to-absolute-glob": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/to-absolute-glob/-/to-absolute-glob-2.0.2.tgz", @@ -8648,6 +11253,11 @@ "integrity": "sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg==", "optional": true }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=" + }, "to-object-path": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", @@ -8750,6 +11360,16 @@ "punycode": "^2.1.1" } }, + "trim": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/trim/-/trim-0.0.1.tgz", + "integrity": "sha1-WFhUf2spB1fulczMZm+1AITEYN0=" + }, + "trim-lines": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-1.1.3.tgz", + "integrity": "sha512-E0ZosSWYK2mkSu+KEtQ9/KqarVjA9HztOSX+9FDdNacRAq29RRV6ZQNgob3iuW8Htar9vAfEa6yyt5qBAHZDBA==" + }, "trim-newlines": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz", @@ -8764,6 +11384,16 @@ "escape-string-regexp": "^1.0.2" } }, + "trim-trailing-lines": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/trim-trailing-lines/-/trim-trailing-lines-1.1.3.tgz", + "integrity": "sha512-4ku0mmjXifQcTVfYDfR5lpgV7zVqPg6zV9rdZmwOPqq0+Zq19xDqEgagqVbc4pOOShbncuAOIs59R3+3gcF3ZA==" + }, + "trough": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/trough/-/trough-1.0.5.tgz", + "integrity": "sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==" + }, "true-case-path": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/true-case-path/-/true-case-path-1.0.3.tgz", @@ -8857,6 +11487,75 @@ "resolved": "https://registry.npmjs.org/undertaker-registry/-/undertaker-registry-1.0.1.tgz", "integrity": "sha1-XkvaMI5KiirlhPm5pDWaSZglzFA=" }, + "unherit": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/unherit/-/unherit-1.1.3.tgz", + "integrity": "sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==", + "requires": { + "inherits": "^2.0.0", + "xtend": "^4.0.0" + } + }, + "unicode-canonical-property-names-ecmascript": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz", + "integrity": "sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==" + }, + "unicode-match-property-ecmascript": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz", + "integrity": "sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg==", + "requires": { + "unicode-canonical-property-names-ecmascript": "^1.0.4", + "unicode-property-aliases-ecmascript": "^1.0.4" + } + }, + "unicode-match-property-value-ecmascript": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz", + "integrity": "sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ==" + }, + "unicode-property-aliases-ecmascript": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz", + "integrity": "sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg==" + }, + "unified": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/unified/-/unified-6.2.0.tgz", + "integrity": "sha512-1k+KPhlVtqmG99RaTbAv/usu85fcSRu3wY8X+vnsEhIxNP5VbVIDiXnLqyKIG+UMdyTg0ZX9EI6k2AfjJkHPtA==", + "requires": { + "bail": "^1.0.0", + "extend": "^3.0.0", + "is-plain-obj": "^1.1.0", + "trough": "^1.0.0", + "vfile": "^2.0.0", + "x-is-string": "^0.1.0" + }, + "dependencies": { + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" + }, + "replace-ext": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.0.tgz", + "integrity": "sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs=" + }, + "vfile": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-2.3.0.tgz", + "integrity": "sha512-ASt4mBUHcTpMKD/l5Q+WJXNtshlWxOogYyGYYrg4lt/vuRjC1EFQtlAofL5VmtVNIZJzWYFJjzGWZ0Gw8pzW1w==", + "requires": { + "is-buffer": "^1.1.4", + "replace-ext": "1.0.0", + "unist-util-stringify-position": "^1.0.0", + "vfile-message": "^1.0.0" + } + } + } + }, "union-value": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", @@ -8884,6 +11583,58 @@ "through2-filter": "^3.0.0" } }, + "unist-builder": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/unist-builder/-/unist-builder-1.0.4.tgz", + "integrity": "sha512-v6xbUPP7ILrT15fHGrNyHc1Xda8H3xVhP7/HAIotHOhVPjH5dCXA097C3Rry1Q2O+HbOLCao4hfPB+EYEjHgVg==", + "requires": { + "object-assign": "^4.1.0" + } + }, + "unist-util-generated": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/unist-util-generated/-/unist-util-generated-1.1.5.tgz", + "integrity": "sha512-1TC+NxQa4N9pNdayCYA1EGUOCAO0Le3fVp7Jzns6lnua/mYgwHo0tz5WUAfrdpNch1RZLHc61VZ1SDgrtNXLSw==" + }, + "unist-util-is": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-3.0.0.tgz", + "integrity": "sha512-sVZZX3+kspVNmLWBPAB6r+7D9ZgAFPNWm66f7YNb420RlQSbn+n8rG8dGZSkrER7ZIXGQYNm5pqC3v3HopH24A==" + }, + "unist-util-position": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-3.1.0.tgz", + "integrity": "sha512-w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA==" + }, + "unist-util-remove-position": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-1.1.4.tgz", + "integrity": "sha512-tLqd653ArxJIPnKII6LMZwH+mb5q+n/GtXQZo6S6csPRs5zB0u79Yw8ouR3wTw8wxvdJFhpP6Y7jorWdCgLO0A==", + "requires": { + "unist-util-visit": "^1.1.0" + } + }, + "unist-util-stringify-position": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-1.1.2.tgz", + "integrity": "sha512-pNCVrk64LZv1kElr0N1wPiHEUoXNVFERp+mlTg/s9R5Lwg87f9bM/3sQB99w+N9D/qnM9ar3+AKDBwo/gm/iQQ==" + }, + "unist-util-visit": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-1.4.1.tgz", + "integrity": "sha512-AvGNk7Bb//EmJZyhtRUnNMEpId/AZ5Ph/KUpTI09WHQuDZHKovQ1oEv3mfmKpWKtoMzyMC4GLBm1Zy5k12fjIw==", + "requires": { + "unist-util-visit-parents": "^2.0.0" + } + }, + "unist-util-visit-parents": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-2.1.2.tgz", + "integrity": "sha512-DyN5vD4NE3aSeB+PXYNKxzGsfocxp6asDc2XXE3b0ekO2BaRUpBicbbUygfSvYfUz1IkmjFR1YF7dPklraMZ2g==", + "requires": { + "unist-util-is": "^3.0.0" + } + }, "universalify": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", @@ -9043,6 +11794,129 @@ "extsprintf": "^1.2.0" } }, + "vfile": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-4.2.0.tgz", + "integrity": "sha512-a/alcwCvtuc8OX92rqqo7PflxiCgXRFjdyoGVuYV+qbgCb0GgZJRvIgCD4+U/Kl1yhaRsaTwksF88xbPyGsgpw==", + "requires": { + "@types/unist": "^2.0.0", + "is-buffer": "^2.0.0", + "replace-ext": "1.0.0", + "unist-util-stringify-position": "^2.0.0", + "vfile-message": "^2.0.0" + }, + "dependencies": { + "replace-ext": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.0.tgz", + "integrity": "sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs=" + }, + "unist-util-stringify-position": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz", + "integrity": "sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==", + "requires": { + "@types/unist": "^2.0.2" + } + }, + "vfile-message": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-2.0.4.tgz", + "integrity": "sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==", + "requires": { + "@types/unist": "^2.0.0", + "unist-util-stringify-position": "^2.0.0" + } + } + } + }, + "vfile-location": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-2.0.6.tgz", + "integrity": "sha512-sSFdyCP3G6Ka0CEmN83A2YCMKIieHx0EDaj5IDP4g1pa5ZJ4FJDvpO0WODLxo4LUX4oe52gmSCK7Jw4SBghqxA==" + }, + "vfile-message": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-1.1.1.tgz", + "integrity": "sha512-1WmsopSGhWt5laNir+633LszXvZ+Z/lxveBf6yhGsqnQIhlhzooZae7zV6YVM1Sdkw68dtAW3ow0pOdPANugvA==", + "requires": { + "unist-util-stringify-position": "^1.1.1" + } + }, + "vfile-reporter": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/vfile-reporter/-/vfile-reporter-6.0.1.tgz", + "integrity": "sha512-0OppK9mo8G2XUpv+hIKLVSDsoxJrXnOy73+vIm0jQUOUFYRduqpFHX+QqAQfvRHyX9B0UFiRuNJnBOjQCIsw1g==", + "requires": { + "repeat-string": "^1.5.0", + "string-width": "^4.0.0", + "supports-color": "^6.0.0", + "unist-util-stringify-position": "^2.0.0", + "vfile-sort": "^2.1.2", + "vfile-statistics": "^1.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", + "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==" + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" + }, + "string-width": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz", + "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==", + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + } + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", + "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "requires": { + "ansi-regex": "^5.0.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "requires": { + "has-flag": "^3.0.0" + } + }, + "unist-util-stringify-position": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz", + "integrity": "sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==", + "requires": { + "@types/unist": "^2.0.2" + } + } + } + }, + "vfile-sort": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/vfile-sort/-/vfile-sort-2.2.2.tgz", + "integrity": "sha512-tAyUqD2R1l/7Rn7ixdGkhXLD3zsg+XLAeUDUhXearjfIcpL1Hcsj5hHpCoy/gvfK/Ws61+e972fm0F7up7hfYA==" + }, + "vfile-statistics": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/vfile-statistics/-/vfile-statistics-1.1.4.tgz", + "integrity": "sha512-lXhElVO0Rq3frgPvFBwahmed3X03vjPF8OcjKMy8+F1xU/3Q3QU3tKEDp743SFtb74PdF0UWpxPvtOP0GCLheA==" + }, "vinyl": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.0.tgz", @@ -9157,6 +12031,30 @@ } } }, + "vue-template-compiler": { + "version": "2.6.12", + "resolved": "https://registry.npmjs.org/vue-template-compiler/-/vue-template-compiler-2.6.12.tgz", + "integrity": "sha512-OzzZ52zS41YUbkCBfdXShQTe69j1gQDZ9HIX8miuC9C3rBCk9wIRjLiZZLrmX9V+Ftq/YEyv1JaVr5Y/hNtByg==", + "requires": { + "de-indent": "^1.0.2", + "he": "^1.1.0" + } + }, + "websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "requires": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + } + }, + "websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==" + }, "which": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", @@ -9248,6 +12146,11 @@ "async-limiter": "~1.0.0" } }, + "x-is-string": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/x-is-string/-/x-is-string-0.1.0.tgz", + "integrity": "sha1-R0tQhlrzpJqcRlfwWs0UVFj3fYI=" + }, "xmlhttprequest-ssl": { "version": "1.5.5", "resolved": "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.5.tgz", diff --git a/package.json b/package.json index 9b5943c..ba59ddd 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "ignite-html", "version": "1.0.0", - "description": "Bigger and better than lit html.", + "description": "Adding more fire to the web.", "main": "gulpfile.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" @@ -15,9 +15,11 @@ "dependencies": { "browser-sync": "^2.26.12", "del": "^5.1.0", + "documentation": "^13.0.2", "gulp": "^4.0.2", "gulp-autoprefixer": "^7.0.1", "gulp-clean-css": "^4.3.0", + "gulp-documentation": "^3.2.1", "gulp-htmlmin": "^5.0.1", "gulp-imagemin": "^7.1.0", "gulp-line-ending-corrector": "^1.0.3", @@ -28,4 +30,4 @@ "gulp-sass": "^4.1.0", "gulp-sourcemaps": "^2.6.5" } -} +} \ No newline at end of file diff --git a/src/ignite-element.js b/src/ignite-element.js index 5abb61e..ada87cb 100644 --- a/src/ignite-element.js +++ b/src/ignite-element.js @@ -2,8 +2,49 @@ import { IgniteProperty } from './ignite-html.js'; import { IgniteTemplate } from './ignite-template.js'; /** - * The outline of a ignite element that extends the html element - * and can be used to create custom components. + * The outline of a Ignite Element that extends the html element + * and can be used to create custom components. Ignite Element's use an Ignite Template + * for the render function. + * + * @example + * + * class MainApp extends IgniteElement { + * constructor() { + * super(); + * } + * + * get properties() { + * return { + * }; + * } + * + * render() { + * return this.template + * .child( + * new h1(` Ignite HTML`), + * new h4(`Adding more fire to the web.`) + * ); + * } + * } + * + * customElements.define("main-app", MainApp); + * + * @example + * //If you want to easily use an Ignite Element with templates see the following which can be added + * //to any component file + * class MainAppTemplate extends IgniteTemplate { + * constructor(...children) { + * super("main-app", children); + * } + * } + * + * export { + * MainAppTemplate as MainApp + * } + * + * @example + * //If a template was created for a Ignite Element (like the previous example) it can be used just like any other template: + * new MainApp() */ class IgniteElement extends HTMLElement { constructor() { @@ -16,14 +57,46 @@ class IgniteElement extends HTMLElement { } /** - * Returns the properties for this ignite element. + * Returns an object with all the properties for this ignite element. If null or empty + * then no properties will be created. To change a property and read it's current value see below. + * + * @returns An object with properties that will be assigned to this ignite element. + * + * @example + * get properties() { + * return { + * show: false, + * title: "This is a title", + * items: [1, 2, 3] + * }; + * } + * + * @example + * //To change a property access it via this.PROP_NAME + * this.show = false; + * + * //To get a properties value access if via this.PROP_NAME + * console.log(this.title); */ get properties() { return {}; } /** - * Returns any CSS styling code for this ignite element. + * Returns any CSS styling code for this ignite element. If this returns a non null + * value the CSS will auto be injected into the current HTML page once and reused for the life + * of the ignite element. + * + * @returns A string containing CSS code to be used with this ignite element. + * + * @example + * get styles() { + * return ` + * h1 { + * color: black; + * } + * `; + * } */ get styles() { return null; @@ -32,6 +105,7 @@ class IgniteElement extends HTMLElement { /** * Creates the getters/setters for properties in this * ignite element and initializes everything. + * @ignore */ createProperties() { var props = this.properties; @@ -79,6 +153,7 @@ class IgniteElement extends HTMLElement { /** * Setups this ignite element and constructs it's template when * this function is called by the DOM upon this element being created somewhere. + * @ignore */ connectedCallback() { //See if a styling sheet has been created for this element if it's needed. @@ -127,6 +202,7 @@ class IgniteElement extends HTMLElement { /** * Cleanups this element and deconstructs everything when this element is removed from * the DOM. + * @ignore */ disconnectedCallback() { //If we still have a reference to our template, deconstruct it. @@ -143,6 +219,19 @@ class IgniteElement extends HTMLElement { /** * Returns the template to be rendered for this element. + * + * @returns An ignite template to be used to construct this ignite element. + * + * @see this.template is automatically created for each IgniteElement and must be used in the render() function. + * + * @example + * render() { + * return this.template + * .child( + * new h1(` Ignite HTML`), + * new h4(`Adding more fire to the web.`) + * ); + * } */ render() { return null; diff --git a/src/ignite-html.js b/src/ignite-html.js index 855f29f..02a0199 100644 --- a/src/ignite-html.js +++ b/src/ignite-html.js @@ -1,6 +1,7 @@ /** * The outline of a ignite property which is a managed property that * can be used to invoke call back functions when the value of the property changes. + * @ignore */ class IgniteProperty { constructor(val) { @@ -159,6 +160,7 @@ IgniteProperty.prototype.toString = function () { /** * The outline of a ignite callback that can be invoked and disconnected * to help maintain and cleanup callbacks. + * @ignore */ class IgniteCallback { constructor(callback, detach) { @@ -186,6 +188,7 @@ class IgniteCallback { * know if we are currently rendering anything ignite related. This works * because Javascript is single threaded, if events could break the current execution * this would fail. But it's safe since events cannot do that. + * @ignore */ class IgniteRenderingContext { static enter() { diff --git a/src/ignite-template.js b/src/ignite-template.js index 4884092..1843622 100644 --- a/src/ignite-template.js +++ b/src/ignite-template.js @@ -1,13 +1,33 @@ import { IgniteProperty } from './ignite-html.js'; import { IgniteElement } from './ignite-element.js'; +/** + * The outline of a ignite template. Templates are a blueprint that specify's + * how to construct an element and then can be used to construct the element. Everything + * starts with a template. + * + * @example + * //You can easily create a template to construct any html element. See the following: + * class div extends IgniteTemplate { + * constructor(...items) { + * super("div", items); + * } + * } + */ class IgniteTemplate { - constructor(items) { + + /** + * Creates a new IgniteTemplate with the tag name of the element that will be constructed and an + * array of child elements. + * @param {String} tagName The tag name of the element this template will construct. + * @param {String|Number|IgniteProperty|IgniteTemplate} children An array of child elements to be added to this template. + */ + constructor(tagName = null, children = null) { this.siblings = []; this.children = []; this.attributes = {}; this.classes = []; - this.tagName = null; + this.tagName = tagName; this.element = null; this.properties = {}; this.refs = []; @@ -15,6 +35,99 @@ class IgniteTemplate { this.events = {}; this.styles = {}; + if (children) { + for (var i = 0; i < children.length; i++) { + if (children[i] instanceof IgniteProperty) { + this.children.push(new html(children[i])); + } else if (children[i] instanceof String || typeof children[i] === 'string') { + this.children.push(new html(children[i])); + } else if (children[i] instanceof Number || typeof children[i] === 'number') { + this.children.push(new html(children[i])); + } else if (children[i] instanceof IgniteTemplate || children[i].prototype instanceof IgniteTemplate) { + this.children.push(children[i]); + } else { + throw `Attempted to add a child for template: ${this.tagName} which is not supported. Child: ${children[i]}`; + } + } + } + } + + /** + * Adds a CSS class to this template + * to be added once this template is constructed. + * @param {String|IgniteProperty} name Name of the CSS class to add. + * @param {Function} converter Optional function that can convert the class name into a different one. + * @returns This ignite template so function calls can be chained. + */ + class(name, converter = null) { + if (name instanceof IgniteProperty) { + this.callbacks.push(name.attachOnChange((oldValue, newValue) => this.onClassChanged(oldValue, newValue, converter))); + this.classes.push(converter != null ? converter(name.value) : name.value); + } else { + this.classes.push(converter != null ? converter(name) : name); + } + + return this; + } + + /** + * Adds a html element attribute to this template to be added once this template is constructed. + * @param {String} name The name of the attribute to add + * @param {String|IgniteProperty} value The value of the attribute to set, can be anything. If Property is passed it will auto update. + * @param {Function} converter Optional function that can convert the value if needed. + * @returns This ignite template so function calls can be chained. + */ + attribute(name, value, converter = null) { + if (value instanceof IgniteProperty) { + this.callbacks.push(value.attachOnChange((oldValue, newValue) => this.onAttributeChanged(oldValue, newValue, name, converter))); + this.attributes[name] = converter != null ? converter(value.value) : value.value; + } else { + this.attributes[name] = converter != null ? converter(value) : value; + } + + return this; + } + + /** + * Adds a property to this template to be added once this template is constructed. + * @param {String} name Name of the property to set. + * @param {Any|IgniteProperty} value Value of the property to use. If a Property is passed the value will auto update. + * @param {Boolean} reflect If true whenever this property is changed it's value will be passed back to the Property that was passed as value if one was passed. + * @param {Function} converter Optional function that can be used to convert the value if needed. + * @returns This ignite template so function calls can be chained. + */ + property(name, value, reflect = false, converter = null) { + if (this.properties[name]) { + throw `Attempted to set a property twice on a IgniteTemplate: ${this.tagName}. This is not allowed and should be avoided.`; + } + + if (reflect && converter != null) { + throw `Cannot add a property to an IgniteTemplate: ${this.tagName} with reflect and a converter used at the same time.`; + } + + if (value instanceof IgniteProperty) { + this.callbacks.push(value.attachOnChange((oldValue, newValue) => this.onPropertyChanged(oldValue, newValue, name, converter))); + this.properties[name] = { + value: (converter != null ? converter(value.value) : value.value), + reflect: (reflect == true ? value : null) + }; + } else { + this.properties[name] = { + value: (converter != null ? converter(value) : value), + reflect: null + }; + } + + return this; + } + + /** + * Adds a single or series of children to be added once this template + * is constructed. Numbers, Strings, and Properties passed will be added as HTML child elements. + * @param {...Number|String|IgniteProperty|IgniteTemplate} items A series of children to be added to this template. + * @returns This ignite template so function calls can be chained. + */ + child(...items) { if (items) { for (var i = 0; i < items.length; i++) { if (items[i] instanceof IgniteProperty) { @@ -30,141 +143,75 @@ class IgniteTemplate { } } } + + return this; } /** - * Adds a single or series of classes to this template - * to be added once this template is constructed. - * @param {...any} items + * Adds a reference callback function to be invoked once this template is constructed. The function will be invoked + * with the constructed HTMLElement. If an IgniteProperty is passed it's value will be set to the constructed HTMLElement once + * the template is constructed. + * @param {Function|IgniteProperty} refCallback The callback to be invoked with the HTMLElement of the element this template constructed. + * @returns This ignite template so function calls can be chained. */ - class(name, converter = null) { - if (name instanceof IgniteProperty) { - this.callbacks.push(name.attachOnChange((oldValue, newValue) => this.onClassChanged(oldValue, newValue, converter))); - this.classes.push(converter != null ? converter(name.value) : name.value); + ref(refCallback) { + if (refCallback instanceof IgniteProperty) { + this.callbacks.push(refCallback.attachOnChange((oldValue, newValue) => this.onRefChanged(oldValue, newValue, refCallback))); + this.refs.push((element) => refCallback.value = element); } else { - this.classes.push(converter != null ? converter(name) : name); + this.refs.push(refCallback); } return this; } /** - * Adds a attribute to this template to be added once this template is constructed. - * @param {string} name - * @param {any} value + * Adds an event by its name and the function to invoke once the event fires. Properties may be used + * for the function, but their value must be a valid function in order to get a proper event callback. + * @param {String} eventName The name of the event to add. + * @param {Function|IgniteProperty} eventCallback The callback function to be invoked by the event once it fires. + * @returns This ignite template so function calls can be chained. */ - attribute(name, value, converter = null) { - if (value instanceof IgniteProperty) { - this.callbacks.push(value.attachOnChange((oldValue, newValue) => this.onAttributeChanged(oldValue, newValue, name, converter))); - this.attributes[name] = converter != null ? converter(value.value) : value.value; - } else { - this.attributes[name] = converter != null ? converter(value) : value; - } - - return this; - } - - /** - * Adds a property to this template to be added once this template is constructed. - * @param {string} name - * @param {any} value - */ - property(name, value, reflect = false) { - if (this.properties[name]) { - throw `Attempted to set a property twice on a IgniteTemplate: ${this.tagName}. This is not allowed and should be avoided.`; - } - - if (value instanceof IgniteProperty) { - this.callbacks.push(value.attachOnChange((oldValue, newValue) => this.onPropertyChanged(oldValue, newValue, name))); - this.properties[name] = { value: value.value, reflect: (reflect == true ? value : null) }; - } else { - this.properties[name] = { value: value, reflect: null }; - } - - return this; - } - - /** - * Adds a single or series of children to be added once this template - * is constructed. - * @param {...any} items - */ - child(...items) { - for (var i = 0; i < items.length; i++) { - if (items[i] instanceof IgniteProperty) { - this.children.push(new html(items[i])); - } else if (items[i] instanceof String || typeof items[i] === 'string') { - this.children.push(new html(items[i])); - } else if (items[i] instanceof Number || typeof items[i] === 'number') { - this.children.push(new html(items[i])); - } else if (items[i] instanceof IgniteTemplate || items[i].prototype instanceof IgniteTemplate) { - this.children.push(items[i]); - } else { - throw `Attempted to add a child for template: ${this.tagName} which is not supported. Child: ${items[i]}`; - } - } - - return this; - } - - /** - * Adds a ref callback function to be invoked once this template is constructed. - * @param {function} item - */ - ref(item) { - if (item instanceof IgniteProperty) { - this.callbacks.push(item.attachOnChange((oldValue, newValue) => this.onRefChanged(oldValue, newValue, item))); - this.refs.push((element) => item.value = element); - } else { - this.refs.push(item); - } - - return this; - } - - /** - * Adds a event by its name and the func to invoke once the event fires. - * @param {String} eventName - * @param {Any} func - */ - on(eventName, func) { + on(eventName, eventCallback) { if (!this.events[eventName]) { this.events[eventName] = []; } - if (func instanceof IgniteProperty) { - this.callbacks.push(func.attachOnChange((oldValue, newValue) => this.onEventChanged(oldValue, newValue, eventName))); - this.events[eventName].push(func.value); + if (eventCallback instanceof IgniteProperty) { + this.callbacks.push(eventCallback.attachOnChange((oldValue, newValue) => this.onEventChanged(oldValue, newValue, eventName))); + this.events[eventName].push(eventCallback.value); } else { - this.events[eventName].push(func); + this.events[eventName].push(eventCallback); } return this; } /** - * Adds a on click event handler to this template. - * @param {Any} func + * Adds an onclick event handler to this template. + * @param {Function|IgniteProperty} eventCallback The callback function to be invoked by the event once it fires. + * @returns This ignite template so function calls can be chained. */ - onClick(func) { - this.on("click", func); + onClick(eventCallback) { + this.on("click", eventCallback); return this; } /** * Adds a on enter key press event handler to this template. - * @param {Any} func + * @param {Function|IgniteProperty} eventCallback The callback function to be invoked by the event once it fires. + * @returns This ignite template so function calls can be chained. */ - onEnter(func) { + onEnter(eventCallback) { var eventName = "keydown"; if (!this.events[eventName]) { this.events[eventName] = []; } - if (func instanceof IgniteProperty) { - this.callbacks.push(func.attachOnChange((oldValue, newValue) => { + if (eventCallback instanceof IgniteProperty) { + this.callbacks.push(eventCallback.attachOnChange((oldValue, newValue) => { //Create a new wrapped function to check for the enter key being pressed. var wrapped = (e) => { if (e.key === 'Enter') { @@ -174,14 +221,14 @@ class IgniteTemplate { //Store the wrapped function so that it's the old value next time around //and the old event can be removed in the future - func._value = wrapped; + eventCallback._value = wrapped; //Invoke the on event changed with the old value and our wrapped value. this.onEventChanged(oldValue, wrapped, eventName) })); //Create the initial wrapper - var target = func._value; + var target = eventCallback._value; var wrapped = (e) => { if (e.key === 'Enter') { target(e); @@ -189,13 +236,13 @@ class IgniteTemplate { }; //Store the wrapped so that it's the old value next time around. - func._value = wrapped; + eventCallback._value = wrapped; this.events[eventName].push(wrapped); } else { this.on(eventName, (e) => { if (e.key === 'Enter') { - func(e); + eventCallback(e); } }); } @@ -204,11 +251,12 @@ class IgniteTemplate { } /** - * Sets a css style on this template and adds it to the element - * once it's constructed. - * @param {String} name - * @param {String} value - * @param {Boolean} priority + * Adds a CSS property to this template with a value and priority. + * @param {String} name The name of the CSS property to set. + * @param {String|IgniteProperty} value The value to set for the property. If an IgniteProperty is used it will auto update this style. + * @param {String} priority If set to "important" then the style will be marked with !important. + * @param {Function} converter Optional function to convert the value if needed. + * @returns This ignite template so function calls can be chained. */ style(name, value, priority = null, converter = null) { if (value instanceof IgniteProperty) { @@ -224,8 +272,8 @@ class IgniteTemplate { /** * Constructs this template and adds it to the DOM if this template * has not already been constructed. - * @param {HTMLElement} parent - * @param {HTMLElement} sibling + * @param {HTMLElement} parent Parent element that will contain the constructed element. + * @param {HTMLElement} sibling Optional sibling element that can be used to add the element adjacantly. */ construct(parent, sibling) { //Don't construct if we have no parent, no sibling and no element. @@ -357,6 +405,7 @@ class IgniteTemplate { * on the template's element. * @param {any} oldValue * @param {any} newValue + * @ignore */ onClassChanged(oldValue, newValue, converter) { if (converter !== null) { @@ -389,6 +438,7 @@ class IgniteTemplate { * @param {any} oldValue * @param {any} newValue * @param {string} attributeName + * @ignore */ onAttributeChanged(oldValue, newValue, attributeName, converter) { if (converter !== null) { @@ -412,8 +462,13 @@ class IgniteTemplate { * @param {any} oldValue * @param {any} newValue * @param {string} propertyName + * @ignore */ - onPropertyChanged(oldValue, newValue, propertyName) { + onPropertyChanged(oldValue, newValue, propertyName, converter) { + if (converter !== null) { + newValue = converter(newValue); + } + if (this.element) { //Use the set value function and don't reflect the change because it came from above which //would be the reflected property, this reduces some functions being called twice that don't need to be. @@ -429,6 +484,7 @@ class IgniteTemplate { * @param {any} oldValue * @param {any} newValue * @param {any} ref + * @ignore */ onRefChanged(oldValue, newValue, ref) { //Only set the reference value to ourself if it's not our element. @@ -443,6 +499,7 @@ class IgniteTemplate { * @param {any} oldValue * @param {any} newValue * @param {any} eventName + * @ignore */ onEventChanged(oldValue, newValue, eventName) { if (this.element) { @@ -468,7 +525,8 @@ class IgniteTemplate { * Called when a css value was changed and we need to update the styling. * @param {any} oldValue * @param {any} newValue - * @param {any} style + * @param {any} style + * @ignore */ onCssValueChanged(oldValue, newValue, name, converter) { if (this.element) { @@ -479,97 +537,187 @@ class IgniteTemplate { } } +/** + * An ignite template that can be used to construct a div element. + */ class div extends IgniteTemplate { - constructor(...items) { - super(items); - - this.tagName = "div"; + /** + * @param {...String|Number|IgniteProperty|IgniteTemplate} children A series of children to be added to this template. + */ + constructor(...children) { + super("div", children); } } +/** + * An ignite template that can be used to construct a hyperlink element. + */ class a extends IgniteTemplate { - constructor(...items) { - super(items); - - this.tagName = "a"; + /** + * @param {...String|Number|IgniteProperty|IgniteTemplate} children A series of children to be added to this template. + */ + constructor(...children) { + super("a", children); } } +/** + * An ignite template that can be used to construct a input element. + */ class input extends IgniteTemplate { - constructor(...items) { - super(items); - - this.tagName = "input"; + /** + * @param {...String|Number|IgniteProperty|IgniteTemplate} children A series of children to be added to this template. + */ + constructor(...children) { + super("input", children); } } +/** + * An ignite template that can be used to construct a button element. + */ +class button extends IgniteTemplate { + /** + * @param {...String|Number|IgniteProperty|IgniteTemplate} children A series of children to be added to this template. + */ + constructor(...children) { + super("button", children); + } +} + +/** + * An ignite template that can be used to construct a h1 element. + */ class h1 extends IgniteTemplate { - constructor(...items) { - super(items); - - this.tagName = "h1"; + /** + * @param {...String|Number|IgniteProperty|IgniteTemplate} children A series of children to be added to this template. + */ + constructor(...children) { + super("h1", children); } } +/** + * An ignite template that can be used to construct a h2 element. + */ class h2 extends IgniteTemplate { - constructor(...items) { - super(items); - - this.tagName = "h2"; + /** + * @param {...String|Number|IgniteProperty|IgniteTemplate} children A series of children to be added to this template. + */ + constructor(...children) { + super("h2", children); } } +/** + * An ignite template that can be used to construct a h3 element. + */ class h3 extends IgniteTemplate { - constructor(...items) { - super(items); - - this.tagName = "h3"; + /** + * @param {...String|Number|IgniteProperty|IgniteTemplate} children A series of children to be added to this template. + */ + constructor(...children) { + super("h3", children); } } +/** + * An ignite template that can be used to construct a h4 element. + */ class h4 extends IgniteTemplate { - constructor(...items) { - super(items); - - this.tagName = "h4"; + /** + * @param {...String|Number|IgniteProperty|IgniteTemplate} children A series of children to be added to this template. + */ + constructor(...children) { + super("h4", children); } } +/** + * An ignite template that can be used to construct a h5 element. + */ class h5 extends IgniteTemplate { - constructor(...items) { - super(items); - - this.tagName = "h5"; + /** + * @param {...String|Number|IgniteProperty|IgniteTemplate} children A series of children to be added to this template. + */ + constructor(...children) { + super("h5", children); } } +/** + * An ignite template that can be used to construct a p element. + */ class p extends IgniteTemplate { - constructor(...items) { - super(items); - - this.tagName = "p"; + /** + * @param {...String|Number|IgniteProperty|IgniteTemplate} children A series of children to be added to this template. + */ + constructor(...children) { + super("p", children); } } +/** + * An ignite template that can be used to construct a span element. + */ class span extends IgniteTemplate { - constructor(...items) { - super(items); - - this.tagName = "span"; + /** + * @param {...String|Number|IgniteProperty|IgniteTemplate} children A series of children to be added to this template. + */ + constructor(...children) { + super("span", children); } } +/** + * An ignite template that can be used to construct an i element. + */ class i extends IgniteTemplate { - constructor(...items) { - super(items); - - this.tagName = "i"; + /** + * @param {...String|Number|IgniteProperty|IgniteTemplate} children A series of children to be added to this template. + */ + constructor(...children) { + super("i", children); } } +/** + * An ignite template that can be used to construct a br element. + */ +class br extends IgniteTemplate { + /** + * @param {...String|Number|IgniteProperty|IgniteTemplate} children A series of children to be added to this template. + */ + constructor(...children) { + super("br", children); + } +} + +/** + * An ignite template that can be used to construct a img element. + */ +class img extends IgniteTemplate { + /** + * @param {...String|Number|IgniteProperty|IgniteTemplate} children A series of children to be added to this template. + */ + constructor(...children) { + super("img", children); + } +} + +/** + * Html is a special template that can construct raw html or properties into the dom and automatically + * update the dom if the property changes. + * + * @example + * new html(`

Hello world!

`) + */ class html extends IgniteTemplate { + /** + * @param {String|IgniteProperty} code HTML code to be constructed within this template. If an IgniteProperty is passed it's value will be used. + */ constructor(code) { - super([]); + super(); if (code instanceof IgniteProperty) { this.callbacks.push(code.attachOnChange((oldValue, newValue) => this.onPropertyChanged(oldValue, newValue))); @@ -625,10 +773,22 @@ class html extends IgniteTemplate { } } +/** + * A special ignite template that constructs a list of items using a template + * that is dynamically created for each item. + * + * @example + * new list(["1", "2", "3"], (item) => { + * return new h1(item); + * }) + */ class list extends IgniteTemplate { + /** + * @param {Array|IgniteProperty} list The list of items to construct within this template. + * @param {Function} forEach A function that construct a template for an item from the list that is passed to it. + */ constructor(list, forEach) { - super([]); - this.tagName = "shadow list"; + super(); if (list instanceof IgniteProperty) { this.callbacks.push(list.attachOnChange((oldValue, newValue) => this.onListChanged(oldValue, newValue))); @@ -642,6 +802,7 @@ class list extends IgniteTemplate { this.forEach = forEach; this.elements = []; + this.tagName = "shadow list"; } construct(parent, sibling) { @@ -731,9 +892,20 @@ class list extends IgniteTemplate { } } +/** + * A slot template that mimicks the functionality of a slot element in Web Components. This can + * be used to place children of a IgniteElement anywhere in the DOM. Slots don't actually construct an element, + * they simply just place children in place where the slot was used. + * + * @example + * new slot(this) + */ class slot extends IgniteTemplate { + /** + * @param {IgniteElement} element The parent IgniteElement that this slot is for. + */ constructor(element) { - super(null); + super(); this.parent = element; } @@ -766,6 +938,7 @@ export { list, a, input, + button, h1, h2, h3, @@ -774,5 +947,7 @@ export { p, span, i, + br, + img, slot }; \ No newline at end of file diff --git a/src/sheet.js b/src/sheet.js index e12e500..8fd08e7 100644 --- a/src/sheet.js +++ b/src/sheet.js @@ -67,9 +67,7 @@ class Sheet extends IgniteElement { class SheetTemplate extends IgniteTemplate { constructor(...items) { - super(items); - - this.tagName = "md-sheet"; + super("md-sheet", items); } } diff --git a/src/web-components-polyfill.js b/src/web-components-polyfill.js index a9f58c7..381d353 100644 --- a/src/web-components-polyfill.js +++ b/src/web-components-polyfill.js @@ -1,13 +1,4 @@ -/** -@license @nocompile -Copyright (c) 2018 The Polymer Project Authors. All rights reserved. -This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt -The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt -The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt -Code distributed by Google as part of the polymer project is also -subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt -*/ -(function(){/* +(function () {/* Copyright (c) 2016 The Polymer Project Authors. All rights reserved. This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt @@ -16,31 +7,75 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN Code distributed by Google as part of the polymer project is also subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt */ -'use strict';var q,aa="undefined"!=typeof window&&window===this?this:"undefined"!=typeof global&&null!=global?global:this,ba="function"==typeof Object.defineProperties?Object.defineProperty:function(a,b,c){a!=Array.prototype&&a!=Object.prototype&&(a[b]=c.value)};function ca(){ca=function(){};aa.Symbol||(aa.Symbol=da)}var da=function(){var a=0;return function(b){return"jscomp_symbol_"+(b||"")+a++}}(); -function ea(){ca();var a=aa.Symbol.iterator;a||(a=aa.Symbol.iterator=aa.Symbol("iterator"));"function"!=typeof Array.prototype[a]&&ba(Array.prototype,a,{configurable:!0,writable:!0,value:function(){return fa(this)}});ea=function(){}}function fa(a){var b=0;return ha(function(){return b"+this.innerHTML+""},set:function(a){if(this.parentNode){U.body.innerHTML=a;for(a=this.ownerDocument.createDocumentFragment();U.body.firstChild;)m.call(a,U.body.firstChild); -n.call(this.parentNode,a,this)}else throw Error("Failed to set the 'outerHTML' property on 'Element': This element has no parent node.");},configurable:!0})};p(a.prototype);Fc(a.prototype);a.b=function(c){c=b(c,"template");for(var d=0,e=c.length,f;d]/g, -l=function(a){switch(a){case "&":return"&";case "<":return"<";case ">":return">";case '"':return""";case "\u00a0":return" "}};xa=function(a){for(var b={},c=0;c";break a;case Node.TEXT_NODE:h=h.data;h=k&&of[k.localName]?h:h.replace(kb,l);break a;case Node.COMMENT_NODE:h="\x3c!--"+h.data+"--\x3e";break a;default:throw window.console.error(h),Error("not implemented");}}c+=h}return c}}if(c||v){a.a=function(a,b){var c=f.call(a,!1); -this.R&&this.R(c);b&&(m.call(c.content,f.call(a.content,!0)),lb(c.content,a.content));return c};var lb=function(c,d){if(d.querySelectorAll&&(d=b(d,"template"),0!==d.length)){c=b(c,"template");for(var e=0,f=c.length,g,h;e" + this.innerHTML + "" }, set: function (a) { + if (this.parentNode) { + U.body.innerHTML = a; for (a = this.ownerDocument.createDocumentFragment(); U.body.firstChild;)m.call(a, U.body.firstChild); + n.call(this.parentNode, a, this) + } else throw Error("Failed to set the 'outerHTML' property on 'Element': This element has no parent node."); + }, configurable: !0 + }) + }; p(a.prototype); Fc(a.prototype); a.b = function (c) { c = b(c, "template"); for (var d = 0, e = c.length, f; d < e && (f = c[d]); d++)a.R(f) }; document.addEventListener("DOMContentLoaded", function () { a.b(document) }); Document.prototype.createElement = function () { var b = g.apply(this, arguments); "template" === b.localName && a.R(b); return b }; var nf = /[&\u00A0"]/g, kb = /[&\u00A0<>]/g, + l = function (a) { switch (a) { case "&": return "&"; case "<": return "<"; case ">": return ">"; case '"': return """; case "\u00a0": return " " } }; xa = function (a) { for (var b = {}, c = 0; c < a.length; c++)b[a[c]] = !0; return b }; var F = xa("area base br col command embed hr img input keygen link meta param source track wbr".split(" ")), of = xa("style script xmp iframe noembed noframes plaintext noscript".split(" ")), Gc = function (a, b) { + "template" === a.localName && (a = a.content); for (var c = "", d = b ? b(a) : a.childNodes, e = 0, f = d.length, + g; e < f && (g = d[e]); e++) { a: { var h = g; var k = a; var m = b; switch (h.nodeType) { case Node.ELEMENT_NODE: for (var n = h.localName, v = "<" + n, r = h.attributes, p = 0; k = r[p]; p++)v += " " + k.name + '="' + k.value.replace(nf, l) + '"'; v += ">"; h = F[n] ? v : v + Gc(h, m) + ""; break a; case Node.TEXT_NODE: h = h.data; h = k && of[k.localName] ? h : h.replace(kb, l); break a; case Node.COMMENT_NODE: h = "\x3c!--" + h.data + "--\x3e"; break a; default: throw window.console.error(h), Error("not implemented"); } } c += h } return c + } + } if (c || v) { + a.a = function (a, b) { + var c = f.call(a, !1); + this.R && this.R(c); b && (m.call(c.content, f.call(a.content, !0)), lb(c.content, a.content)); return c + }; var lb = function (c, d) { if (d.querySelectorAll && (d = b(d, "template"), 0 !== d.length)) { c = b(c, "template"); for (var e = 0, f = c.length, g, h; e < f; e++)h = d[e], g = c[e], a && a.R && a.R(h), n.call(g.parentNode, pf.call(h, !0), g) } }, pf = Node.prototype.cloneNode = function (b) { + if (!e && d && this instanceof DocumentFragment) if (b) var c = qf.call(this.ownerDocument, this, !0); else return this.ownerDocument.createDocumentFragment(); else this.nodeType === + Node.ELEMENT_NODE && "template" === this.localName && this.namespaceURI == document.documentElement.namespaceURI ? c = a.a(this, b) : c = f.call(this, b); b && lb(c, this); return c + }, qf = Document.prototype.importNode = function (c, d) { + d = d || !1; if ("template" === c.localName) return a.a(c, d); var e = h.call(this, c, d); if (d) { + lb(e, c); c = b(e, 'script:not([type]),script[type="application/javascript"],script[type="text/javascript"]'); for (var f, k = 0; k < c.length; k++) { + f = c[k]; d = g.call(document, "script"); d.textContent = f.textContent; for (var m = f.attributes, + l = 0, v; l < m.length; l++)v = m[l], d.setAttribute(v.name, v.value); n.call(f.parentNode, d, f) + } + } return e + } + } c && (window.HTMLTemplateElement = a) + })(); var ka; Array.isArray ? ka = Array.isArray : ka = function (a) { return "[object Array]" === Object.prototype.toString.call(a) }; var la = ka; var ma = 0, na, oa = "undefined" !== typeof window ? window : void 0, pa = oa || {}, qa = pa.MutationObserver || pa.WebKitMutationObserver, ra = "undefined" === typeof self && "undefined" !== typeof process && "[object process]" === {}.toString.call(process), sa = "undefined" !== typeof Uint8ClampedArray && "undefined" !== typeof importScripts && "undefined" !== typeof MessageChannel; function ta() { return "undefined" !== typeof na ? function () { na(ua) } : va() } + function wa() { var a = 0, b = new qa(ua), c = document.createTextNode(""); b.observe(c, { characterData: !0 }); return function () { c.data = a = ++a % 2 } } function ya() { var a = new MessageChannel; a.port1.onmessage = ua; return function () { return a.port2.postMessage(0) } } function va() { var a = setTimeout; return function () { return a(ua, 1) } } var za = Array(1E3); function ua() { for (var a = 0; a < ma; a += 2)(0, za[a])(za[a + 1]), za[a] = void 0, za[a + 1] = void 0; ma = 0 } var Aa, Ba; + if (ra) Ba = function () { return process.xb(ua) }; else { var Ca; if (qa) Ca = wa(); else { var Da; if (sa) Da = ya(); else { var Ea; if (void 0 === oa && "function" === typeof require) try { var Fa = require("vertx"); na = Fa.zb || Fa.yb; Ea = ta() } catch (a) { Ea = va() } else Ea = va(); Da = Ea } Ca = Da } Ba = Ca } Aa = Ba; function Ga(a, b) { za[ma] = a; za[ma + 1] = b; ma += 2; 2 === ma && Aa() }; function Ha(a, b) { var c = this, d = new this.constructor(Ia); void 0 === d[Ja] && Ka(d); var e = c.o; if (e) { var f = arguments[e - 1]; Ga(function () { return La(e, d, f, c.l) }) } else Ma(c, d, a, b); return d }; function Na(a) { if (a && "object" === typeof a && a.constructor === this) return a; var b = new this(Ia); Oa(b, a); return b }; var Ja = Math.random().toString(36).substring(16); function Ia() { } var Qa = new Pa; function Ra(a) { try { return a.then } catch (b) { return Qa.error = b, Qa } } function Sa(a, b, c, d) { try { a.call(b, c, d) } catch (e) { return e } } function Ta(a, b, c) { Ga(function (a) { var d = !1, f = Sa(c, b, function (c) { d || (d = !0, b !== c ? Oa(a, c) : t(a, c)) }, function (b) { d || (d = !0, u(a, b)) }); !d && f && (d = !0, u(a, f)) }, a) } function Ua(a, b) { 1 === b.o ? t(a, b.l) : 2 === b.o ? u(a, b.l) : Ma(b, void 0, function (b) { return Oa(a, b) }, function (b) { return u(a, b) }) } + function Va(a, b, c) { b.constructor === a.constructor && c === Ha && b.constructor.resolve === Na ? Ua(a, b) : c === Qa ? (u(a, Qa.error), Qa.error = null) : void 0 === c ? t(a, b) : "function" === typeof c ? Ta(a, b, c) : t(a, b) } function Oa(a, b) { if (a === b) u(a, new TypeError("You cannot resolve a promise with itself")); else { var c = typeof b; null === b || "object" !== c && "function" !== c ? t(a, b) : Va(a, b, Ra(b)) } } function Wa(a) { a.xa && a.xa(a.l); Xa(a) } function t(a, b) { void 0 === a.o && (a.l = b, a.o = 1, 0 !== a.U.length && Ga(Xa, a)) } + function u(a, b) { void 0 === a.o && (a.o = 2, a.l = b, Ga(Wa, a)) } function Ma(a, b, c, d) { var e = a.U, f = e.length; a.xa = null; e[f] = b; e[f + 1] = c; e[f + 2] = d; 0 === f && a.o && Ga(Xa, a) } function Xa(a) { var b = a.U, c = a.o; if (0 !== b.length) { for (var d, e, f = a.l, g = 0; g < b.length; g += 3)d = b[g], e = b[g + c], d ? La(c, d, e, f) : e(f); a.U.length = 0 } } function Pa() { this.error = null } var Ya = new Pa; + function La(a, b, c, d) { var e = "function" === typeof c; if (e) { try { var f = c(d) } catch (m) { Ya.error = m, f = Ya } if (f === Ya) { var g = !0; var h = f.error; f.error = null } else var k = !0; if (b === f) { u(b, new TypeError("A promises callback cannot return that same promise.")); return } } else f = d, k = !0; void 0 === b.o && (e && k ? Oa(b, f) : g ? u(b, h) : 1 === a ? t(b, f) : 2 === a && u(b, f)) } function Za(a, b) { try { b(function (b) { Oa(a, b) }, function (b) { u(a, b) }) } catch (c) { u(a, c) } } var $a = 0; function Ka(a) { a[Ja] = $a++; a.o = void 0; a.l = void 0; a.U = [] }; function ab(a, b) { this.Na = a; this.N = new a(Ia); this.N[Ja] || Ka(this.N); if (la(b)) if (this.$ = this.length = b.length, this.l = Array(this.length), 0 === this.length) t(this.N, this.l); else { this.length = this.length || 0; for (a = 0; void 0 === this.o && a < b.length; a++)bb(this, b[a], a); 0 === this.$ && t(this.N, this.l) } else u(this.N, Error("Array Methods must be provided an Array")) } + function bb(a, b, c) { var d = a.Na, e = d.resolve; e === Na ? (e = Ra(b), e === Ha && void 0 !== b.o ? cb(a, b.o, c, b.l) : "function" !== typeof e ? (a.$--, a.l[c] = b) : d === w ? (d = new d(Ia), Va(d, b, e), db(a, d, c)) : db(a, new d(function (a) { return a(b) }), c)) : db(a, e(b), c) } function cb(a, b, c, d) { var e = a.N; void 0 === e.o && (a.$--, 2 === b ? u(e, d) : a.l[c] = d); 0 === a.$ && t(e, a.l) } function db(a, b, c) { Ma(b, void 0, function (b) { return cb(a, 1, c, b) }, function (b) { return cb(a, 2, c, b) }) }; function eb(a) { return (new ab(this, a)).N }; function fb(a) { var b = this; return la(a) ? new b(function (c, d) { for (var e = a.length, f = 0; f < e; f++)b.resolve(a[f]).then(c, d) }) : new b(function (a, b) { return b(new TypeError("You must pass an array to race.")) }) }; function gb(a) { var b = new this(Ia); u(b, a); return b }; function w(a) { this[Ja] = $a++; this.l = this.o = void 0; this.U = []; if (Ia !== a) { if ("function" !== typeof a) throw new TypeError("You must pass a resolver function as the first argument to the promise constructor"); if (this instanceof w) Za(this, a); else throw new TypeError("Failed to construct 'Promise': Please use the 'new' operator, this object constructor cannot be called as a function."); } } w.prototype = { constructor: w, then: Ha, a: function (a) { return this.then(null, a) } };/* Copyright (c) 2017 The Polymer Project Authors. All rights reserved. This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt @@ -49,7 +84,7 @@ The complete set of contributors may be found at http://polymer.github.io/CONTRI Code distributed by Google as part of the polymer project is also subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt */ -window.Promise||(window.Promise=w,w.prototype["catch"]=w.prototype.a,w.prototype.then=w.prototype.then,w.all=eb,w.race=fb,w.resolve=Na,w.reject=gb);/* + window.Promise || (window.Promise = w, w.prototype["catch"] = w.prototype.a, w.prototype.then = w.prototype.then, w.all = eb, w.race = fb, w.resolve = Na, w.reject = gb);/* Copyright (c) 2014 The Polymer Project Authors. All rights reserved. This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt @@ -58,8 +93,8 @@ window.Promise||(window.Promise=w,w.prototype["catch"]=w.prototype.a,w.prototype Code distributed by Google as part of the polymer project is also subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt */ -window.WebComponents=window.WebComponents||{flags:{}};var hb=document.querySelector('script[src*="webcomponents-bundle"]'),ib=/wc-(.+)/,y={};if(!y.noOpts){location.search.slice(1).split("&").forEach(function(a){a=a.split("=");var b;a[0]&&(b=a[0].match(ib))&&(y[b[1]]=a[1]||!0)});if(hb)for(var jb=0,mb;mb=hb.attributes[jb];jb++)"src"!==mb.name&&(y[mb.name]=mb.value||!0);if(y.log&&y.log.split){var nb=y.log.split(",");y.log={};nb.forEach(function(a){y.log[a]=!0})}else y.log={}} -window.WebComponents.flags=y;var ob=y.shadydom;ob&&(window.ShadyDOM=window.ShadyDOM||{},window.ShadyDOM.force=ob);var pb=y.register||y.ce;pb&&window.customElements&&(window.customElements.forcePolyfill=pb);/* + window.WebComponents = window.WebComponents || { flags: {} }; var hb = document.querySelector('script[src*="webcomponents-bundle"]'), ib = /wc-(.+)/, y = {}; if (!y.noOpts) { location.search.slice(1).split("&").forEach(function (a) { a = a.split("="); var b; a[0] && (b = a[0].match(ib)) && (y[b[1]] = a[1] || !0) }); if (hb) for (var jb = 0, mb; mb = hb.attributes[jb]; jb++)"src" !== mb.name && (y[mb.name] = mb.value || !0); if (y.log && y.log.split) { var nb = y.log.split(","); y.log = {}; nb.forEach(function (a) { y.log[a] = !0 }) } else y.log = {} } + window.WebComponents.flags = y; var ob = y.shadydom; ob && (window.ShadyDOM = window.ShadyDOM || {}, window.ShadyDOM.force = ob); var pb = y.register || y.ce; pb && window.customElements && (window.customElements.forcePolyfill = pb);/* Copyright (c) 2016 The Polymer Project Authors. All rights reserved. This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt @@ -68,155 +103,371 @@ The complete set of contributors may be found at http://polymer.github.io/CONTRI Code distributed by Google as part of the polymer project is also subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt */ -function qb(){this.Da=this.root=null;this.da=!1;this.L=this.Z=this.pa=this.assignedSlot=this.assignedNodes=this.S=null;this.childNodes=this.nextSibling=this.previousSibling=this.lastChild=this.firstChild=this.parentNode=this.V=void 0;this.Ia=this.va=!1}qb.prototype.toJSON=function(){return{}};function z(a){a.ka||(a.ka=new qb);return a.ka}function A(a){return a&&a.ka};var B=window.ShadyDOM||{};B.Ua=!(!Element.prototype.attachShadow||!Node.prototype.getRootNode);var rb=Object.getOwnPropertyDescriptor(Node.prototype,"firstChild");B.I=!!(rb&&rb.configurable&&rb.get);B.Ba=B.force||!B.Ua;var sb=navigator.userAgent.match("Trident"),tb=navigator.userAgent.match("Edge");void 0===B.Fa&&(B.Fa=B.I&&(sb||tb));function ub(a){return(a=A(a))&&void 0!==a.firstChild}function C(a){return"ShadyRoot"===a.Oa}function vb(a){a=a.getRootNode();if(C(a))return a} -var wb=Element.prototype,xb=wb.matches||wb.matchesSelector||wb.mozMatchesSelector||wb.msMatchesSelector||wb.oMatchesSelector||wb.webkitMatchesSelector;function yb(a,b){if(a&&b)for(var c=Object.getOwnPropertyNames(b),d=0,e;d]/g;function mc(a){switch(a){case "&":return"&";case "<":return"<";case ">":return">";case '"':return""";case "\u00a0":return" "}}function nc(a){for(var b={},c=0;c";break a;case Node.TEXT_NODE:h=h.data;h=k&&pc[k.localName]?h:h.replace(lc,mc);break a;case Node.COMMENT_NODE:h="\x3c!--"+h.data+"--\x3e";break a;default:throw window.console.error(h), -Error("not implemented");}}c+=h}return c};var E={},H=document.createTreeWalker(document,NodeFilter.SHOW_ALL,null,!1),I=document.createTreeWalker(document,NodeFilter.SHOW_ELEMENT,null,!1);function rc(a){var b=[];H.currentNode=a;for(a=H.firstChild();a;)b.push(a),a=H.nextSibling();return b}E.parentNode=function(a){H.currentNode=a;return H.parentNode()};E.firstChild=function(a){H.currentNode=a;return H.firstChild()};E.lastChild=function(a){H.currentNode=a;return H.lastChild()};E.previousSibling=function(a){H.currentNode=a;return H.previousSibling()}; -E.nextSibling=function(a){H.currentNode=a;return H.nextSibling()};E.childNodes=rc;E.parentElement=function(a){I.currentNode=a;return I.parentNode()};E.firstElementChild=function(a){I.currentNode=a;return I.firstChild()};E.lastElementChild=function(a){I.currentNode=a;return I.lastChild()};E.previousElementSibling=function(a){I.currentNode=a;return I.previousSibling()};E.nextElementSibling=function(a){I.currentNode=a;return I.nextSibling()}; -E.children=function(a){var b=[];I.currentNode=a;for(a=I.firstChild();a;)b.push(a),a=I.nextSibling();return b};E.innerHTML=function(a){return qc(a,function(a){return rc(a)})};E.textContent=function(a){switch(a.nodeType){case Node.ELEMENT_NODE:case Node.DOCUMENT_FRAGMENT_NODE:a=document.createTreeWalker(a,NodeFilter.SHOW_TEXT,null,!1);for(var b="",c;c=a.nextNode();)b+=c.nodeValue;return b;default:return a.nodeValue}};var J={},sc=B.I,tc=[Node.prototype,Element.prototype,HTMLElement.prototype];function K(a){var b;a:{for(b=0;bd.assignedNodes.length&&(d.da=!0)}d.da&&(d.da=!1,Nd(this,b))}a=this.m;b=[];for(d=0;db.indexOf(c))||b.push(c);for(a=0;a "+b}))}a=a.replace(og,function(a,b,c){return'[dir="'+c+'"] '+b+", "+b+'[dir="'+c+'"]'});return{value:a,Sa:b,stop:f}}function mg(a,b){a=a.split(pg);a[0]+=b;return a.join(pg)} -function lg(a,b){var c=a.match(qg);return(c=c&&c[2].trim()||"")?c[0].match(rg)?a.replace(qg,function(a,c,f){return b+f}):c.split(rg)[0]===b?c:sg:a.replace(hg,b)}function tg(a){a.selector===ug&&(a.selector="html")}Tf.prototype.c=function(a){return a.match(kg)?this.b(a,vg):mg(a.trim(),vg)};aa.Object.defineProperties(Tf.prototype,{a:{configurable:!0,enumerable:!0,get:function(){return"style-scope"}}}); -var fg=/:(nth[-\w]+)\(([^)]+)\)/,vg=":not(.style-scope)",dg=",",ig=/(^|[\s>+~]+)((?:\[.+?\]|[^\s>+~=[])+)/g,rg=/[[.:#*]/,hg=":host",ug=":root",kg="::slotted",gg=new RegExp("^("+kg+")"),qg=/(:host)(?:\(((?:\([^)(]*\)|[^)(]*)+?)\))/,ng=/(?:::slotted)(?:\(((?:\([^)(]*\)|[^)(]*)+?)\))/,og=/(.*):dir\((?:(ltr|rtl))\)/,bg=".",pg=":",Yf="class",sg="should_not_match",Vf=new Tf;function wg(a,b,c,d){this.K=a||null;this.b=b||null;this.sa=c||[];this.T=null;this.X=d||"";this.a=this.H=this.O=null}function xg(a){return a?a.__styleInfo:null}function yg(a,b){return a.__styleInfo=b}wg.prototype.c=function(){return this.K};wg.prototype._getStyleRules=wg.prototype.c;function zg(a){var b=this.matches||this.matchesSelector||this.mozMatchesSelector||this.msMatchesSelector||this.oMatchesSelector||this.webkitMatchesSelector;return b&&b.call(this,a)}var Ag=navigator.userAgent.match("Trident");function Bg(){}function Cg(a){var b={},c=[],d=0;Kf(a,function(a){Dg(a);a.index=d++;a=a.B.cssText;for(var c;c=Ef.exec(a);){var e=c[1];":"!==c[2]&&(b[e]=!0)}},function(a){c.push(a)});a.b=c;a=[];for(var e in b)a.push(e);return a} -function Dg(a){if(!a.B){var b={},c={};Eg(a,c)&&(b.J=c,a.rules=null);b.cssText=a.parsedCssText.replace(Hf,"").replace(Cf,"");a.B=b}}function Eg(a,b){var c=a.B;if(c){if(c.J)return Object.assign(b,c.J),!0}else{c=a.parsedCssText;for(var d;a=Cf.exec(c);){d=(a[2]||a[3]).trim();if("inherit"!==d||"unset"!==d)b[a[1].trim()]=d;d=!0}return d}} -function Fg(a,b,c){b&&(b=0<=b.indexOf(";")?Gg(a,b,c):Qf(b,function(b,e,f,g){if(!e)return b+g;(e=Fg(a,c[e],c))&&"initial"!==e?"apply-shim-inherit"===e&&(e="inherit"):e=Fg(a,c[f]||f,c)||f;return b+(e||"")+g}));return b&&b.trim()||""} -function Gg(a,b,c){b=b.split(";");for(var d=0,e,f;d *"===f||"html"===f,h=0===f.indexOf(":host")&&!g;"shady"===c&&(g=f===e+" > *."+e||-1!==f.indexOf("html"),h=!g&&0===f.indexOf(e));"shadow"===c&&(g=":host > *"===f||"html"===f,h=h&&!g);if(g||h)c=e,h&&(b.G||(b.G=cg(Vf,b,Vf.b,a?bg+a:"",e)),c=b.G||e),d({Za:c,Wa:h,wb:g})}} -function Jg(a,b){var c={},d={},e=b&&b.__cssBuild;Kf(b,function(b){Ig(a,b,e,function(e){zg.call(a.kb||a,e.Za)&&(e.Wa?Eg(b,c):Eg(b,d))})},null,!0);return{Ya:d,Va:c}} -function Kg(a,b,c,d){var e=Sf(b),f=ag(e.is,e.X),g=new RegExp("(?:^|[^.#[:])"+(b.extends?"\\"+f.slice(0,-1)+"\\]":f)+"($|[.:[\\s>+~])");e=xg(b).K;var h=Lg(e,d);return Zf(b,e,function(b){var e="";b.B||Dg(b);b.B.cssText&&(e=Gg(a,b.B.cssText,c));b.cssText=e;if(!T&&!Mf(b)&&b.cssText){var k=e=b.cssText;null==b.za&&(b.za=Ff.test(e));if(b.za)if(null==b.ea){b.ea=[];for(var r in h)k=h[r],k=k(e),e!==k&&(e=k,b.ea.push(r))}else{for(r=0;r=m._useCount&&m.parentNode&&m.parentNode.removeChild(m));T?f.a?(f.a.textContent=e,d=f.a):e&&(d=Nf(e,h,a.shadowRoot,f.b)):d?d.parentNode|| -(Ag&&-1b&&-1==[34,35,60,62,63,96].indexOf(b)?a:encodeURIComponent(a)}function d(a){var b=a.charCodeAt(0);return 32b&&-1==[34,35,60,62,96].indexOf(b)?a:encodeURIComponent(a)}function e(a,e,g){function h(a){kb.push(a)}var k=e||"scheme start",v=0,p="",x=!1,U=!1,kb=[];a:for(;(void 0!=a[v-1]||0==v)&&!this.h;){var l=a[v];switch(k){case "scheme start":if(l&&r.test(l))p+= -l.toLowerCase(),k="scheme";else if(e){h("Invalid scheme.");break a}else{p="";k="no scheme";continue}break;case "scheme":if(l&&G.test(l))p+=l.toLowerCase();else if(":"==l){this.g=p;p="";if(e)break a;void 0!==m[this.g]&&(this.D=!0);k="file"==this.g?"relative":this.D&&g&&g.g==this.g?"relative or authority":this.D?"authority first slash":"scheme data"}else if(e){void 0!=l&&h("Code point not allowed in scheme: "+l);break a}else{p="";v=0;k="no scheme";continue}break;case "scheme data":"?"==l?(this.u="?", -k="query"):"#"==l?(this.C="#",k="fragment"):void 0!=l&&"\t"!=l&&"\n"!=l&&"\r"!=l&&(this.qa+=c(l));break;case "no scheme":if(g&&void 0!==m[g.g]){k="relative";continue}else h("Missing scheme."),f.call(this),this.h=!0;break;case "relative or authority":if("/"==l&&"/"==a[v+1])k="authority ignore slashes";else{h("Expected /, got: "+l);k="relative";continue}break;case "relative":this.D=!0;"file"!=this.g&&(this.g=g.g);if(void 0==l){this.i=g.i;this.s=g.s;this.j=g.j.slice();this.u=g.u;this.v=g.v;this.f=g.f; -break a}else if("/"==l||"\\"==l)"\\"==l&&h("\\ is an invalid code point."),k="relative slash";else if("?"==l)this.i=g.i,this.s=g.s,this.j=g.j.slice(),this.u="?",this.v=g.v,this.f=g.f,k="query";else if("#"==l)this.i=g.i,this.s=g.s,this.j=g.j.slice(),this.u=g.u,this.C="#",this.v=g.v,this.f=g.f,k="fragment";else{k=a[v+1];var F=a[v+2];if("file"!=this.g||!r.test(l)||":"!=k&&"|"!=k||void 0!=F&&"/"!=F&&"\\"!=F&&"?"!=F&&"#"!=F)this.i=g.i,this.s=g.s,this.v=g.v,this.f=g.f,this.j=g.j.slice(),this.j.pop();k= -"relative path";continue}break;case "relative slash":if("/"==l||"\\"==l)"\\"==l&&h("\\ is an invalid code point."),k="file"==this.g?"file host":"authority ignore slashes";else{"file"!=this.g&&(this.i=g.i,this.s=g.s,this.v=g.v,this.f=g.f);k="relative path";continue}break;case "authority first slash":if("/"==l)k="authority second slash";else{h("Expected '/', got: "+l);k="authority ignore slashes";continue}break;case "authority second slash":k="authority ignore slashes";if("/"!=l){h("Expected '/', got: "+ -l);continue}break;case "authority ignore slashes":if("/"!=l&&"\\"!=l){k="authority";continue}else h("Expected authority, got: "+l);break;case "authority":if("@"==l){x&&(h("@ already seen."),p+="%40");x=!0;for(l=0;l]/g; function mc(a) { switch (a) { case "&": return "&"; case "<": return "<"; case ">": return ">"; case '"': return """; case "\u00a0": return " " } } function nc(a) { for (var b = {}, c = 0; c < a.length; c++)b[a[c]] = !0; return b } var oc = nc("area base br col command embed hr img input keygen link meta param source track wbr".split(" ")), pc = nc("style script xmp iframe noembed noframes plaintext noscript".split(" ")); + function qc(a, b) { + "template" === a.localName && (a = a.content); for (var c = "", d = b ? b(a) : a.childNodes, e = 0, f = d.length, g; e < f && (g = d[e]); e++) { + a: { + var h = g; var k = a; var m = b; switch (h.nodeType) { + case Node.ELEMENT_NODE: for (var n = h.localName, r = "<" + n, G = h.attributes, x = 0; k = G[x]; x++)r += " " + k.name + '="' + k.value.replace(kc, mc) + '"'; r += ">"; h = oc[n] ? r : r + qc(h, m) + ""; break a; case Node.TEXT_NODE: h = h.data; h = k && pc[k.localName] ? h : h.replace(lc, mc); break a; case Node.COMMENT_NODE: h = "\x3c!--" + h.data + "--\x3e"; break a; default: throw window.console.error(h), + Error("not implemented"); + } + } c += h + } return c + }; var E = {}, H = document.createTreeWalker(document, NodeFilter.SHOW_ALL, null, !1), I = document.createTreeWalker(document, NodeFilter.SHOW_ELEMENT, null, !1); function rc(a) { var b = []; H.currentNode = a; for (a = H.firstChild(); a;)b.push(a), a = H.nextSibling(); return b } E.parentNode = function (a) { H.currentNode = a; return H.parentNode() }; E.firstChild = function (a) { H.currentNode = a; return H.firstChild() }; E.lastChild = function (a) { H.currentNode = a; return H.lastChild() }; E.previousSibling = function (a) { H.currentNode = a; return H.previousSibling() }; + E.nextSibling = function (a) { H.currentNode = a; return H.nextSibling() }; E.childNodes = rc; E.parentElement = function (a) { I.currentNode = a; return I.parentNode() }; E.firstElementChild = function (a) { I.currentNode = a; return I.firstChild() }; E.lastElementChild = function (a) { I.currentNode = a; return I.lastChild() }; E.previousElementSibling = function (a) { I.currentNode = a; return I.previousSibling() }; E.nextElementSibling = function (a) { I.currentNode = a; return I.nextSibling() }; + E.children = function (a) { var b = []; I.currentNode = a; for (a = I.firstChild(); a;)b.push(a), a = I.nextSibling(); return b }; E.innerHTML = function (a) { return qc(a, function (a) { return rc(a) }) }; E.textContent = function (a) { switch (a.nodeType) { case Node.ELEMENT_NODE: case Node.DOCUMENT_FRAGMENT_NODE: a = document.createTreeWalker(a, NodeFilter.SHOW_TEXT, null, !1); for (var b = "", c; c = a.nextNode();)b += c.nodeValue; return b; default: return a.nodeValue } }; var J = {}, sc = B.I, tc = [Node.prototype, Element.prototype, HTMLElement.prototype]; function K(a) { var b; a: { for (b = 0; b < tc.length; b++) { var c = tc[b]; if (c.hasOwnProperty(a)) { b = c; break a } } b = void 0 } if (!b) throw Error("Could not find descriptor for " + a); return Object.getOwnPropertyDescriptor(b, a) } + var L = sc ? { parentNode: K("parentNode"), firstChild: K("firstChild"), lastChild: K("lastChild"), previousSibling: K("previousSibling"), nextSibling: K("nextSibling"), childNodes: K("childNodes"), parentElement: K("parentElement"), previousElementSibling: K("previousElementSibling"), nextElementSibling: K("nextElementSibling"), innerHTML: K("innerHTML"), textContent: K("textContent"), firstElementChild: K("firstElementChild"), lastElementChild: K("lastElementChild"), children: K("children") } : {}, uc = sc ? { + firstElementChild: Object.getOwnPropertyDescriptor(DocumentFragment.prototype, + "firstElementChild"), lastElementChild: Object.getOwnPropertyDescriptor(DocumentFragment.prototype, "lastElementChild"), children: Object.getOwnPropertyDescriptor(DocumentFragment.prototype, "children") + } : {}, vc = sc ? { firstElementChild: Object.getOwnPropertyDescriptor(Document.prototype, "firstElementChild"), lastElementChild: Object.getOwnPropertyDescriptor(Document.prototype, "lastElementChild"), children: Object.getOwnPropertyDescriptor(Document.prototype, "children") } : {}; J.Ca = L; J.rb = uc; J.lb = vc; J.parentNode = function (a) { return L.parentNode.get.call(a) }; + J.firstChild = function (a) { return L.firstChild.get.call(a) }; J.lastChild = function (a) { return L.lastChild.get.call(a) }; J.previousSibling = function (a) { return L.previousSibling.get.call(a) }; J.nextSibling = function (a) { return L.nextSibling.get.call(a) }; J.childNodes = function (a) { return Array.prototype.slice.call(L.childNodes.get.call(a)) }; J.parentElement = function (a) { return L.parentElement.get.call(a) }; J.previousElementSibling = function (a) { return L.previousElementSibling.get.call(a) }; J.nextElementSibling = function (a) { return L.nextElementSibling.get.call(a) }; + J.innerHTML = function (a) { return L.innerHTML.get.call(a) }; J.textContent = function (a) { return L.textContent.get.call(a) }; J.children = function (a) { switch (a.nodeType) { case Node.DOCUMENT_FRAGMENT_NODE: a = uc.children.get.call(a); break; case Node.DOCUMENT_NODE: a = vc.children.get.call(a); break; default: a = L.children.get.call(a) }return Array.prototype.slice.call(a) }; + J.firstElementChild = function (a) { switch (a.nodeType) { case Node.DOCUMENT_FRAGMENT_NODE: return uc.firstElementChild.get.call(a); case Node.DOCUMENT_NODE: return vc.firstElementChild.get.call(a); default: return L.firstElementChild.get.call(a) } }; J.lastElementChild = function (a) { switch (a.nodeType) { case Node.DOCUMENT_FRAGMENT_NODE: return uc.lastElementChild.get.call(a); case Node.DOCUMENT_NODE: return vc.lastElementChild.get.call(a); default: return L.lastElementChild.get.call(a) } }; var M = B.Fa ? J : E; function wc(a) { for (; a.firstChild;)a.removeChild(a.firstChild) } + var xc = B.I, yc = document.implementation.createHTMLDocument("inert"), zc = Object.getOwnPropertyDescriptor(Node.prototype, "isConnected"), Ac = zc && zc.get, Bc = Object.getOwnPropertyDescriptor(Document.prototype, "activeElement"), Cc = { + parentElement: { get: function () { var a = A(this); (a = a && a.parentNode) && a.nodeType !== Node.ELEMENT_NODE && (a = null); return void 0 !== a ? a : M.parentElement(this) }, configurable: !0 }, parentNode: { get: function () { var a = A(this); a = a && a.parentNode; return void 0 !== a ? a : M.parentNode(this) }, configurable: !0 }, + nextSibling: { get: function () { var a = A(this); a = a && a.nextSibling; return void 0 !== a ? a : M.nextSibling(this) }, configurable: !0 }, previousSibling: { get: function () { var a = A(this); a = a && a.previousSibling; return void 0 !== a ? a : M.previousSibling(this) }, configurable: !0 }, nextElementSibling: { get: function () { var a = A(this); if (a && void 0 !== a.nextSibling) { for (a = this.nextSibling; a && a.nodeType !== Node.ELEMENT_NODE;)a = a.nextSibling; return a } return M.nextElementSibling(this) }, configurable: !0 }, previousElementSibling: { + get: function () { + var a = + A(this); if (a && void 0 !== a.previousSibling) { for (a = this.previousSibling; a && a.nodeType !== Node.ELEMENT_NODE;)a = a.previousSibling; return a } return M.previousElementSibling(this) + }, configurable: !0 + } + }, Hc = { className: { get: function () { return this.getAttribute("class") || "" }, set: function (a) { this.setAttribute("class", a) }, configurable: !0 } }, Ic = { + childNodes: { + get: function () { + if (ub(this)) { var a = A(this); if (!a.childNodes) { a.childNodes = []; for (var b = this.firstChild; b; b = b.nextSibling)a.childNodes.push(b) } var c = a.childNodes } else c = + M.childNodes(this); c.item = function (a) { return c[a] }; return c + }, configurable: !0 + }, childElementCount: { get: function () { return this.children.length }, configurable: !0 }, firstChild: { get: function () { var a = A(this); a = a && a.firstChild; return void 0 !== a ? a : M.firstChild(this) }, configurable: !0 }, lastChild: { get: function () { var a = A(this); a = a && a.lastChild; return void 0 !== a ? a : M.lastChild(this) }, configurable: !0 }, textContent: { + get: function () { + if (ub(this)) { + for (var a = [], b = 0, c = this.childNodes, d; d = c[b]; b++)d.nodeType !== Node.COMMENT_NODE && + a.push(d.textContent); return a.join("") + } return M.textContent(this) + }, set: function (a) { if ("undefined" === typeof a || null === a) a = ""; switch (this.nodeType) { case Node.ELEMENT_NODE: case Node.DOCUMENT_FRAGMENT_NODE: if (!ub(this) && xc) { var b = this.firstChild; (b != this.lastChild || b && b.nodeType != Node.TEXT_NODE) && wc(this); J.Ca.textContent.set.call(this, a) } else wc(this), (0 < a.length || this.nodeType === Node.ELEMENT_NODE) && this.appendChild(document.createTextNode(a)); break; default: this.nodeValue = a } }, configurable: !0 + }, firstElementChild: { + get: function () { + var a = + A(this); if (a && void 0 !== a.firstChild) { for (a = this.firstChild; a && a.nodeType !== Node.ELEMENT_NODE;)a = a.nextSibling; return a } return M.firstElementChild(this) + }, configurable: !0 + }, lastElementChild: { get: function () { var a = A(this); if (a && void 0 !== a.lastChild) { for (a = this.lastChild; a && a.nodeType !== Node.ELEMENT_NODE;)a = a.previousSibling; return a } return M.lastElementChild(this) }, configurable: !0 }, children: { + get: function () { + var a; ub(this) ? a = Array.prototype.filter.call(this.childNodes, function (a) { return a.nodeType === Node.ELEMENT_NODE }) : + a = M.children(this); a.item = function (b) { return a[b] }; return a + }, configurable: !0 + }, innerHTML: { get: function () { return ub(this) ? qc("template" === this.localName ? this.content : this) : M.innerHTML(this) }, set: function (a) { var b = "template" === this.localName ? this.content : this; wc(b); var c = this.localName; c && "template" !== c || (c = "div"); c = yc.createElement(c); for (xc ? J.Ca.innerHTML.set.call(c, a) : c.innerHTML = a; c.firstChild;)b.appendChild(c.firstChild) }, configurable: !0 } + }, Jc = { + shadowRoot: { + get: function () { + var a = A(this); return a && + a.Da || null + }, configurable: !0 + } + }, Kc = { activeElement: { get: function () { var a = Bc && Bc.get ? Bc.get.call(document) : B.I ? void 0 : document.activeElement; if (a && a.nodeType) { var b = !!C(this); if (this === document || b && this.host !== a && D.contains.call(this.host, a)) { for (b = vb(a); b && b !== this;)a = b.host, b = vb(a); a = this === document ? b ? null : a : b === this ? a : null } else a = null } else a = null; return a }, set: function () { }, configurable: !0 } }; + function N(a, b, c) { for (var d in b) { var e = Object.getOwnPropertyDescriptor(a, d); e && e.configurable || !e && c ? Object.defineProperty(a, d, b[d]) : c && console.warn("Could not define", d, "on", a) } } function Lc(a) { N(a, Cc); N(a, Hc); N(a, Ic); N(a, Kc) } + function Mc() { + var a = Nc.prototype; a.__proto__ = DocumentFragment.prototype; N(a, Cc, !0); N(a, Ic, !0); N(a, Kc, !0); Object.defineProperties(a, { nodeType: { value: Node.DOCUMENT_FRAGMENT_NODE, configurable: !0 }, nodeName: { value: "#document-fragment", configurable: !0 }, nodeValue: { value: null, configurable: !0 } });["localName", "namespaceURI", "prefix"].forEach(function (b) { Object.defineProperty(a, b, { value: void 0, configurable: !0 }) });["ownerDocument", "baseURI", "isConnected"].forEach(function (b) { + Object.defineProperty(a, b, { + get: function () { return this.host[b] }, + configurable: !0 + }) + }) + } var Oc = B.I ? function () { } : function (a) { var b = z(a); b.va || (b.va = !0, N(a, Cc, !0), N(a, Hc, !0)) }, Pc = B.I ? function () { } : function (a) { z(a).Ia || (N(a, Ic, !0), N(a, Jc, !0)) }; var Qc = M.childNodes; function Rc(a, b, c) { Oc(a); c = c || null; var d = z(a), e = z(b), f = c ? z(c) : null; d.previousSibling = c ? f.previousSibling : b.lastChild; if (f = A(d.previousSibling)) f.nextSibling = a; if (f = A(d.nextSibling = c)) f.previousSibling = a; d.parentNode = b; c ? c === e.firstChild && (e.firstChild = a) : (e.lastChild = a, e.firstChild || (e.firstChild = a)); e.childNodes = null } + function Sc(a, b) { var c = z(a); if (void 0 === c.firstChild) for (b = b || Qc(a), c.firstChild = b[0] || null, c.lastChild = b[b.length - 1] || null, Pc(a), c = 0; c < b.length; c++) { var d = b[c], e = z(d); e.parentNode = a; e.nextSibling = b[c + 1] || null; e.previousSibling = b[c - 1] || null; Oc(d) } }; var Tc = M.parentNode; + function Uc(a, b, c) { + if (b === a) throw Error("Failed to execute 'appendChild' on 'Node': The new child element contains the parent."); if (c) { var d = A(c); d = d && d.parentNode; if (void 0 !== d && d !== a || void 0 === d && Tc(c) !== a) throw Error("Failed to execute 'insertBefore' on 'Node': The node before which the new node is to be inserted is not a child of this node."); } if (c === b) return b; b.parentNode && Vc(b.parentNode, b); var e, f; if (!b.__noInsertionPoint) { + if (f = e = vb(a)) { + var g; "slot" === b.localName ? g = [b] : b.querySelectorAll && + (g = b.querySelectorAll("slot")); f = g && g.length ? g : void 0 + } f && (g = e, d = f, g.a = g.a || [], g.m = g.m || [], g.w = g.w || {}, g.a.push.apply(g.a, [].concat(d instanceof Array ? d : ja(ia(d))))) + } ("slot" === a.localName || f) && (e = e || vb(a)) && Wc(e); if (ub(a)) { + e = c; Pc(a); f = z(a); void 0 !== f.firstChild && (f.childNodes = null); if (b.nodeType === Node.DOCUMENT_FRAGMENT_NODE) { f = b.childNodes; for (g = 0; g < f.length; g++)Rc(f[g], a, e); e = z(b); f = void 0 !== e.firstChild ? null : void 0; e.firstChild = e.lastChild = f; e.childNodes = f } else Rc(b, a, e); e = A(a); if (Xc(a)) { + Wc(e.root); + var h = !0 + } else e.root && (h = !0) + } h || (h = C(a) ? a.host : a, c ? (c = Yc(c), D.insertBefore.call(h, b, c)) : D.appendChild.call(h, b)); Zc(a, b); return b + } + function Vc(a, b) { + if (b.parentNode !== a) throw Error("The node to be removed is not a child of this node: " + b); var c = vb(b), d = A(a); if (ub(a)) { var e = z(b), f = z(a); b === f.firstChild && (f.firstChild = e.nextSibling); b === f.lastChild && (f.lastChild = e.previousSibling); var g = e.previousSibling, h = e.nextSibling; g && (z(g).nextSibling = h); h && (z(h).previousSibling = g); e.parentNode = e.previousSibling = e.nextSibling = void 0; void 0 !== f.childNodes && (f.childNodes = null); if (Xc(a)) { Wc(d.root); var k = !0 } } $c(b); if (c) { + (e = a && "slot" === a.localName) && + (k = !0); if (c.m) { ad(c); f = c.w; for (v in f) for (g = f[v], h = 0; h < g.length; h++) { var m = g[h]; if (Gb(b, m)) { g.splice(h, 1); var n = c.m.indexOf(m); 0 <= n && c.m.splice(n, 1); h--; n = A(m); if (m = n.L) for (var r = 0; r < m.length; r++) { var G = m[r], x = bd(G); x && D.removeChild.call(x, G) } n.L = []; n.assignedNodes = []; n = !0 } } var v = n } else v = void 0; (v || e) && Wc(c) + } k || (k = C(a) ? a.host : a, (!d.root && "slot" !== b.localName || k === Tc(b)) && D.removeChild.call(k, b)); Zc(a, null, b); return b + } + function $c(a) { var b = A(a); if (b && void 0 !== b.V) { b = a.childNodes; for (var c = 0, d = b.length, e; c < d && (e = b[c]); c++)$c(e) } if (a = A(a)) a.V = void 0 } function Yc(a) { var b = a; a && "slot" === a.localName && (b = (b = (b = A(a)) && b.L) && b.length ? b[0] : Yc(a.nextSibling)); return b } function Xc(a) { return (a = (a = A(a)) && a.root) && cd(a) } + function dd(a, b) { if ("slot" === b) a = a.parentNode, Xc(a) && Wc(A(a).root); else if ("slot" === a.localName && "name" === b && (b = vb(a))) { if (b.m) { var c = a.Ja, d = ed(a); if (d !== c) { c = b.w[c]; var e = c.indexOf(a); 0 <= e && c.splice(e, 1); c = b.w[d] || (b.w[d] = []); c.push(a); 1 < c.length && (b.w[d] = fd(c)) } } Wc(b) } } function Zc(a, b, c) { if (a = (a = A(a)) && a.S) b && a.addedNodes.push(b), c && a.removedNodes.push(c), Mb(a) } + function gd(a) { if (a && a.nodeType) { var b = z(a), c = b.V; void 0 === c && (C(a) ? (c = a, b.V = c) : (c = (c = a.parentNode) ? gd(c) : a, D.contains.call(document.documentElement, a) && (b.V = c))); return c } } function hd(a, b, c) { var d = []; id(a.childNodes, b, c, d); return d } function id(a, b, c, d) { for (var e = 0, f = a.length, g; e < f && (g = a[e]); e++) { var h; if (h = g.nodeType === Node.ELEMENT_NODE) { h = g; var k = b, m = c, n = d, r = k(h); r && n.push(h); m && m(r) ? h = r : (id(h.childNodes, k, m, n), h = void 0) } if (h) break } } var jd = null; + function kd(a, b, c) { jd || (jd = window.ShadyCSS && window.ShadyCSS.ScopingShim); jd && "class" === b ? jd.setElementClass(a, c) : (D.setAttribute.call(a, b, c), dd(a, b)) } function ld(a, b) { if (a.ownerDocument !== document) return D.importNode.call(document, a, b); var c = D.importNode.call(document, a, !1); if (b) { a = a.childNodes; b = 0; for (var d; b < a.length; b++)d = ld(a[b], !0), c.appendChild(d) } return c }; var md = "__eventWrappers" + Date.now(), nd = { + blur: !0, focus: !0, focusin: !0, focusout: !0, click: !0, dblclick: !0, mousedown: !0, mouseenter: !0, mouseleave: !0, mousemove: !0, mouseout: !0, mouseover: !0, mouseup: !0, wheel: !0, beforeinput: !0, input: !0, keydown: !0, keyup: !0, compositionstart: !0, compositionupdate: !0, compositionend: !0, touchstart: !0, touchend: !0, touchmove: !0, touchcancel: !0, pointerover: !0, pointerenter: !0, pointerdown: !0, pointermove: !0, pointerup: !0, pointercancel: !0, pointerout: !0, pointerleave: !0, gotpointercapture: !0, lostpointercapture: !0, + dragstart: !0, drag: !0, dragenter: !0, dragleave: !0, dragover: !0, drop: !0, dragend: !0, DOMActivate: !0, DOMFocusIn: !0, DOMFocusOut: !0, keypress: !0 + }; function od(a, b) { var c = [], d = a; for (a = a === window ? window : a.getRootNode(); d;)c.push(d), d = d.assignedSlot ? d.assignedSlot : d.nodeType === Node.DOCUMENT_FRAGMENT_NODE && d.host && (b || d !== a) ? d.host : d.parentNode; c[c.length - 1] === document && c.push(window); return c } + function pd(a, b) { if (!C) return a; a = od(a, !0); for (var c = 0, d, e, f, g; c < b.length; c++)if (d = b[c], f = d === window ? window : d.getRootNode(), f !== e && (g = a.indexOf(f), e = f), !C(f) || -1 < g) return d } + var qd = { + get composed() { !1 !== this.isTrusted && void 0 === this.ha && (this.ha = nd[this.type]); return this.ha || !1 }, composedPath: function () { this.ta || (this.ta = od(this.__target, this.composed)); return this.ta }, get target() { return pd(this.currentTarget, this.composedPath()) }, get relatedTarget() { if (!this.ja) return null; this.wa || (this.wa = od(this.ja, !0)); return pd(this.currentTarget, this.wa) }, stopPropagation: function () { Event.prototype.stopPropagation.call(this); this.ia = !0 }, stopImmediatePropagation: function () { + Event.prototype.stopImmediatePropagation.call(this); + this.ia = this.Ha = !0 + } + }; function rd(a) { function b(b, d) { b = new a(b, d); b.ha = d && !!d.composed; return b } Ab(b, a); b.prototype = a.prototype; return b } var sd = { focus: !0, blur: !0 }; function td(a) { return a.__target !== a.target || a.ja !== a.relatedTarget } function ud(a, b, c) { if (c = b.__handlers && b.__handlers[a.type] && b.__handlers[a.type][c]) for (var d = 0, e; (e = c[d]) && (!td(a) || a.target !== a.relatedTarget) && (e.call(b, a), !a.Ha); d++); } + function vd(a) { var b = a.composedPath(); Object.defineProperty(a, "currentTarget", { get: function () { return d }, configurable: !0 }); for (var c = b.length - 1; 0 <= c; c--) { var d = b[c]; ud(a, d, "capture"); if (a.ia) return } Object.defineProperty(a, "eventPhase", { get: function () { return Event.AT_TARGET } }); var e; for (c = 0; c < b.length; c++) { d = b[c]; var f = A(d); f = f && f.root; if (0 === c || f && f === e) if (ud(a, d, "bubble"), d !== window && (e = d.getRootNode()), a.ia) break } } + function wd(a, b, c, d, e, f) { for (var g = 0; g < a.length; g++) { var h = a[g], k = h.type, m = h.capture, n = h.once, r = h.passive; if (b === h.node && c === k && d === m && e === n && f === r) return g } return -1 } + function xd(a, b, c) { + if (b) { + var d = typeof b; if ("function" === d || "object" === d) if ("object" !== d || b.handleEvent && "function" === typeof b.handleEvent) { + if (c && "object" === typeof c) { var e = !!c.capture; var f = !!c.once; var g = !!c.passive } else e = !!c, g = f = !1; var h = c && c.la || this, k = b[md]; if (k) { if (-1 < wd(k, h, a, e, f, g)) return } else b[md] = []; k = function (e) { + f && this.removeEventListener(a, b, c); e.__target || yd(e); if (h !== this) { + var g = Object.getOwnPropertyDescriptor(e, "currentTarget"); Object.defineProperty(e, "currentTarget", { + get: function () { return h }, + configurable: !0 + }) + } if (e.composed || -1 < e.composedPath().indexOf(h)) if (td(e) && e.target === e.relatedTarget) e.eventPhase === Event.BUBBLING_PHASE && e.stopImmediatePropagation(); else if (e.eventPhase === Event.CAPTURING_PHASE || e.bubbles || e.target === h || h instanceof Window) { var k = "function" === d ? b.call(h, e) : b.handleEvent && b.handleEvent(e); h !== this && (g ? (Object.defineProperty(e, "currentTarget", g), g = null) : delete e.currentTarget); return k } + }; b[md].push({ node: h, type: a, capture: e, once: f, passive: g, gb: k }); sd[a] ? (this.__handlers = + this.__handlers || {}, this.__handlers[a] = this.__handlers[a] || { capture: [], bubble: [] }, this.__handlers[a][e ? "capture" : "bubble"].push(k)) : (this instanceof Window ? D.eb : D.addEventListener).call(this, a, k, c) + } + } + } + function zd(a, b, c) { if (b) { if (c && "object" === typeof c) { var d = !!c.capture; var e = !!c.once; var f = !!c.passive } else d = !!c, f = e = !1; var g = c && c.la || this, h = void 0; var k = null; try { k = b[md] } catch (m) { } k && (e = wd(k, g, a, d, e, f), -1 < e && (h = k.splice(e, 1)[0].gb, k.length || (b[md] = void 0))); (this instanceof Window ? D.fb : D.removeEventListener).call(this, a, h || b, c); h && sd[a] && this.__handlers && this.__handlers[a] && (a = this.__handlers[a][d ? "capture" : "bubble"], h = a.indexOf(h), -1 < h && a.splice(h, 1)) } } + function Ad() { for (var a in sd) window.addEventListener(a, function (a) { a.__target || (yd(a), vd(a)) }, !0) } function yd(a) { a.__target = a.target; a.ja = a.relatedTarget; if (B.I) { var b = Object.getPrototypeOf(a); if (!b.hasOwnProperty("__patchProto")) { var c = Object.create(b); c.ib = b; yb(c, qd); b.__patchProto = c } a.__proto__ = b.__patchProto } else yb(a, qd) } var Bd = rd(window.Event), Cd = rd(window.CustomEvent), Dd = rd(window.MouseEvent); function Ed(a, b) { return { index: a, W: [], ba: b } } + function Fd(a, b, c, d) { + var e = 0, f = 0, g = 0, h = 0, k = Math.min(b - e, d - f); if (0 == e && 0 == f) a: { for (g = 0; g < k; g++)if (a[g] !== c[g]) break a; g = k } if (b == a.length && d == c.length) { h = a.length; for (var m = c.length, n = 0; n < k - g && Gd(a[--h], c[--m]);)n++; h = n } e += g; f += g; b -= h; d -= h; if (0 == b - e && 0 == d - f) return []; if (e == b) { for (b = Ed(e, 0); f < d;)b.W.push(c[f++]); return [b] } if (f == d) return [Ed(e, b - e)]; k = e; g = f; d = d - g + 1; h = b - k + 1; b = Array(d); for (m = 0; m < d; m++)b[m] = Array(h), b[m][0] = m; for (m = 0; m < h; m++)b[0][m] = m; for (m = 1; m < d; m++)for (n = 1; n < h; n++)if (a[k + n - 1] === c[g + m - 1]) b[m][n] = + b[m - 1][n - 1]; else { var r = b[m - 1][n] + 1, G = b[m][n - 1] + 1; b[m][n] = r < G ? r : G } k = b.length - 1; g = b[0].length - 1; d = b[k][g]; for (a = []; 0 < k || 0 < g;)0 == k ? (a.push(2), g--) : 0 == g ? (a.push(3), k--) : (h = b[k - 1][g - 1], m = b[k - 1][g], n = b[k][g - 1], r = m < n ? m < h ? m : h : n < h ? n : h, r == h ? (h == d ? a.push(0) : (a.push(1), d = h), k--, g--) : r == m ? (a.push(3), k--, d = m) : (a.push(2), g--, d = n)); a.reverse(); b = void 0; k = []; for (g = 0; g < a.length; g++)switch (a[g]) { + case 0: b && (k.push(b), b = void 0); e++; f++; break; case 1: b || (b = Ed(e, 0)); b.ba++; e++; b.W.push(c[f]); f++; break; case 2: b || (b = Ed(e, + 0)); b.ba++; e++; break; case 3: b || (b = Ed(e, 0)), b.W.push(c[f]), f++ + }b && k.push(b); return k + } function Gd(a, b) { return a === b }; var bd = M.parentNode, Hd = M.childNodes, Id = {}; function Jd(a) { var b = []; do b.unshift(a); while (a = a.parentNode); return b } function Nc(a, b, c) { if (a !== Id) throw new TypeError("Illegal constructor"); this.Oa = "ShadyRoot"; a = Hd(b); this.host = b; this.b = c && c.mode; Sc(b, a); c = A(b); c.root = this; c.Da = "closed" !== this.b ? this : null; c = z(this); c.firstChild = c.lastChild = c.parentNode = c.nextSibling = c.previousSibling = null; c.childNodes = []; this.aa = !1; this.a = this.w = this.m = null; c = 0; for (var d = a.length; c < d; c++)D.removeChild.call(b, a[c]) } + function Wc(a) { a.aa || (a.aa = !0, Jb(function () { return Kd(a) })) } function Kd(a) { for (var b; a;) { a.aa && (b = a); a: { var c = a; a = c.host.getRootNode(); if (C(a)) for (var d = c.host.childNodes, e = 0; e < d.length; e++)if (c = d[e], "slot" == c.localName) break a; a = void 0 } } b && b._renderRoot() } + Nc.prototype._renderRoot = function () { + this.aa = !1; if (this.m) { + ad(this); for (var a = 0, b; a < this.m.length; a++) { b = this.m[a]; var c = A(b), d = c.assignedNodes; c.assignedNodes = []; c.L = []; if (c.pa = d) for (c = 0; c < d.length; c++) { var e = A(d[c]); e.Z = e.assignedSlot; e.assignedSlot === b && (e.assignedSlot = null) } } for (b = this.host.firstChild; b; b = b.nextSibling)Ld(this, b); for (a = 0; a < this.m.length; a++) { + b = this.m[a]; d = A(b); if (!d.assignedNodes.length) for (c = b.firstChild; c; c = c.nextSibling)Ld(this, c, b); (c = (c = A(b.parentNode)) && c.root) && cd(c) && c._renderRoot(); + Md(this, d.L, d.assignedNodes); if (c = d.pa) { for (e = 0; e < c.length; e++)A(c[e]).Z = null; d.pa = null; c.length > d.assignedNodes.length && (d.da = !0) } d.da && (d.da = !1, Nd(this, b)) + } a = this.m; b = []; for (d = 0; d < a.length; d++)c = a[d].parentNode, (e = A(c)) && e.root || !(0 > b.indexOf(c)) || b.push(c); for (a = 0; a < b.length; a++) { + d = b[a]; c = d === this ? this.host : d; e = []; d = d.childNodes; for (var f = 0; f < d.length; f++) { var g = d[f]; if ("slot" == g.localName) { g = A(g).L; for (var h = 0; h < g.length; h++)e.push(g[h]) } else e.push(g) } d = void 0; f = Hd(c); g = Fd(e, e.length, f, f.length); + for (var k = h = 0; h < g.length && (d = g[h]); h++) { for (var m = 0, n; m < d.W.length && (n = d.W[m]); m++)bd(n) === c && D.removeChild.call(c, n), f.splice(d.index + k, 1); k -= d.ba } for (k = 0; k < g.length && (d = g[k]); k++)for (h = f[d.index], m = d.index; m < d.index + d.ba; m++)n = e[m], D.insertBefore.call(c, n, h), f.splice(m, 0, n) + } + } + }; function Ld(a, b, c) { var d = z(b), e = d.Z; d.Z = null; c || (c = (a = a.w[b.slot || "__catchall"]) && a[0]); c ? (z(c).assignedNodes.push(b), d.assignedSlot = c) : d.assignedSlot = void 0; e !== d.assignedSlot && d.assignedSlot && (z(d.assignedSlot).da = !0) } + function Md(a, b, c) { for (var d = 0, e; d < c.length && (e = c[d]); d++)if ("slot" == e.localName) { var f = A(e).assignedNodes; f && f.length && Md(a, b, f) } else b.push(c[d]) } function Nd(a, b) { D.dispatchEvent.call(b, new Event("slotchange")); b = A(b); b.assignedSlot && Nd(a, b.assignedSlot) } function ad(a) { if (a.a && a.a.length) { for (var b = a.a, c, d = 0; d < b.length; d++) { var e = b[d]; Sc(e); Sc(e.parentNode); var f = ed(e); a.w[f] ? (c = c || {}, c[f] = !0, a.w[f].push(e)) : a.w[f] = [e]; a.m.push(e) } if (c) for (var g in c) a.w[g] = fd(a.w[g]); a.a = [] } } + function ed(a) { var b = a.name || a.getAttribute("name") || "__catchall"; return a.Ja = b } function fd(a) { return a.sort(function (a, c) { a = Jd(a); for (var b = Jd(c), e = 0; e < a.length; e++) { c = a[e]; var f = b[e]; if (c !== f) return a = Array.from(c.parentNode.childNodes), a.indexOf(c) - a.indexOf(f) } }) } function cd(a) { ad(a); return !(!a.m || !a.m.length) }; function Od(a) { var b = a.getRootNode(); C(b) && Kd(b); return (a = A(a)) && a.assignedSlot || null } + var Pd = { addEventListener: xd.bind(window), removeEventListener: zd.bind(window) }, Qd = { + addEventListener: xd, removeEventListener: zd, appendChild: function (a) { return Uc(this, a) }, insertBefore: function (a, b) { return Uc(this, a, b) }, removeChild: function (a) { return Vc(this, a) }, replaceChild: function (a, b) { Uc(this, a, b); Vc(this, b); return a }, cloneNode: function (a) { + if ("template" == this.localName) var b = D.cloneNode.call(this, a); else if (b = D.cloneNode.call(this, !1), a) { + a = this.childNodes; for (var c = 0, d; c < a.length; c++)d = a[c].cloneNode(!0), + b.appendChild(d) + } return b + }, getRootNode: function () { return gd(this) }, contains: function (a) { return Gb(this, a) }, dispatchEvent: function (a) { Kb(); return D.dispatchEvent.call(this, a) } + }; + Object.defineProperties(Qd, { isConnected: { get: function () { if (Ac && Ac.call(this)) return !0; if (this.nodeType == Node.DOCUMENT_FRAGMENT_NODE) return !1; var a = this.ownerDocument; if (Fb) { if (D.contains.call(a, this)) return !0 } else if (a.documentElement && D.contains.call(a.documentElement, this)) return !0; for (a = this; a && !(a instanceof Document);)a = a.parentNode || (C(a) ? a.host : void 0); return !!(a && a instanceof Document) }, configurable: !0 } }); + var Rd = { get assignedSlot() { return Od(this) } }, Sd = { querySelector: function (a) { return hd(this, function (b) { return xb.call(b, a) }, function (a) { return !!a })[0] || null }, querySelectorAll: function (a, b) { if (b) { b = Array.prototype.slice.call(D.querySelectorAll(this, a)); var c = this.getRootNode(); return b.filter(function (a) { return a.getRootNode() == c }) } return hd(this, function (b) { return xb.call(b, a) }) } }, Td = { + assignedNodes: function (a) { + if ("slot" === this.localName) { + var b = this.getRootNode(); C(b) && Kd(b); return (b = A(this)) ? (a && a.flatten ? + b.L : b.assignedNodes) || [] : [] + } + } + }, Ud = zb({ setAttribute: function (a, b) { kd(this, a, b) }, removeAttribute: function (a) { D.removeAttribute.call(this, a); dd(this, a) }, attachShadow: function (a) { if (!this) throw "Must provide a host."; if (!a) throw "Not enough arguments."; return new Nc(Id, this, a) }, get slot() { return this.getAttribute("slot") }, set slot(a) { kd(this, "slot", a) }, get assignedSlot() { return Od(this) } }, Sd, Td); Object.defineProperties(Ud, Jc); + var Vd = zb({ importNode: function (a, b) { return ld(a, b) }, getElementById: function (a) { return hd(this, function (b) { return b.id == a }, function (a) { return !!a })[0] || null } }, Sd); Object.defineProperties(Vd, { _activeElement: Kc.activeElement }); + var Wd = HTMLElement.prototype.blur, Xd = zb({ blur: function () { var a = A(this); (a = (a = a && a.root) && a.activeElement) ? a.blur() : Wd.call(this) } }), Yd = { addEventListener: function (a, b, c) { "object" !== typeof c && (c = { capture: !!c }); c.la = this; this.host.addEventListener(a, b, c) }, removeEventListener: function (a, b, c) { "object" !== typeof c && (c = { capture: !!c }); c.la = this; this.host.removeEventListener(a, b, c) }, getElementById: function (a) { return hd(this, function (b) { return b.id == a }, function (a) { return !!a })[0] || null } }; + function Zd(a, b) { for (var c = Object.getOwnPropertyNames(b), d = 0; d < c.length; d++) { var e = c[d], f = Object.getOwnPropertyDescriptor(b, e); f.value ? a[e] = f.value : Object.defineProperty(a, e, f) } }; if (B.Ba) { + var ShadyDOM = { inUse: B.Ba, patch: function (a) { Pc(a); Oc(a); return a }, isShadyRoot: C, enqueue: Jb, flush: Kb, settings: B, filterMutations: Qb, observeChildren: Ob, unobserveChildren: Pb, nativeMethods: D, nativeTree: M }; window.ShadyDOM = ShadyDOM; window.Event = Bd; window.CustomEvent = Cd; window.MouseEvent = Dd; Ad(); var $d = window.customElements && window.customElements.nativeHTMLElement || HTMLElement; Zd(Nc.prototype, Yd); Zd(window.Node.prototype, Qd); Zd(window.Window.prototype, Pd); Zd(window.Text.prototype, Rd); Zd(window.DocumentFragment.prototype, + Sd); Zd(window.Element.prototype, Ud); Zd(window.Document.prototype, Vd); window.HTMLSlotElement && Zd(window.HTMLSlotElement.prototype, Td); Zd($d.prototype, Xd); B.I && (Lc(window.Node.prototype), Lc(window.Text.prototype), Lc(window.DocumentFragment.prototype), Lc(window.Element.prototype), Lc($d.prototype), Lc(window.Document.prototype), window.HTMLSlotElement && Lc(window.HTMLSlotElement.prototype)); Mc(); window.ShadowRoot = Nc + }; var ae = new Set("annotation-xml color-profile font-face font-face-src font-face-uri font-face-format font-face-name missing-glyph".split(" ")); function be(a) { var b = ae.has(a); a = /^[a-z][.0-9_a-z]*-[\-.0-9_a-z]*$/.test(a); return !b && a } function O(a) { var b = a.isConnected; if (void 0 !== b) return b; for (; a && !(a.__CE_isImportDocument || a instanceof Document);)a = a.parentNode || (window.ShadowRoot && a instanceof ShadowRoot ? a.host : void 0); return !(!a || !(a.__CE_isImportDocument || a instanceof Document)) } + function ce(a, b) { for (; b && b !== a && !b.nextSibling;)b = b.parentNode; return b && b !== a ? b.nextSibling : null } + function de(a, b, c) { c = void 0 === c ? new Set : c; for (var d = a; d;) { if (d.nodeType === Node.ELEMENT_NODE) { var e = d; b(e); var f = e.localName; if ("link" === f && "import" === e.getAttribute("rel")) { d = e.import; if (d instanceof Node && !c.has(d)) for (c.add(d), d = d.firstChild; d; d = d.nextSibling)de(d, b, c); d = ce(a, e); continue } else if ("template" === f) { d = ce(a, e); continue } if (e = e.__CE_shadowRoot) for (e = e.firstChild; e; e = e.nextSibling)de(e, b, c) } d = d.firstChild ? d.firstChild : ce(a, d) } } function P(a, b, c) { a[b] = c }; function ee() { this.a = new Map; this.M = new Map; this.F = []; this.c = !1 } function fe(a, b, c) { a.a.set(b, c); a.M.set(c.constructor, c) } function ge(a, b) { a.c = !0; a.F.push(b) } function he(a, b) { a.c && de(b, function (b) { return a.b(b) }) } ee.prototype.b = function (a) { if (this.c && !a.__CE_patched) { a.__CE_patched = !0; for (var b = 0; b < this.F.length; b++)this.F[b](a) } }; function Q(a, b) { var c = []; de(b, function (a) { return c.push(a) }); for (b = 0; b < c.length; b++) { var d = c[b]; 1 === d.__CE_state ? a.connectedCallback(d) : ie(a, d) } } + function R(a, b) { var c = []; de(b, function (a) { return c.push(a) }); for (b = 0; b < c.length; b++) { var d = c[b]; 1 === d.__CE_state && a.disconnectedCallback(d) } } + function je(a, b, c) { + c = void 0 === c ? {} : c; var d = c.bb || new Set, e = c.ga || function (b) { return ie(a, b) }, f = []; de(b, function (b) { if ("link" === b.localName && "import" === b.getAttribute("rel")) { var c = b.import; c instanceof Node && (c.__CE_isImportDocument = !0, c.__CE_hasRegistry = !0); c && "complete" === c.readyState ? c.__CE_documentLoadHandled = !0 : b.addEventListener("load", function () { var c = b.import; if (!c.__CE_documentLoadHandled) { c.__CE_documentLoadHandled = !0; var f = new Set(d); f.delete(c); je(a, c, { bb: f, ga: e }) } }) } else f.push(b) }, d); + if (a.c) for (b = 0; b < f.length; b++)a.b(f[b]); for (b = 0; b < f.length; b++)e(f[b]) + } + function ie(a, b) { + if (void 0 === b.__CE_state) { + var c = b.ownerDocument; if (c.defaultView || c.__CE_isImportDocument && c.__CE_hasRegistry) if (c = a.a.get(b.localName)) { + c.constructionStack.push(b); var d = c.constructor; try { try { if (new d !== b) throw Error("The custom element constructor did not produce the element being upgraded."); } finally { c.constructionStack.pop() } } catch (g) { throw b.__CE_state = 2, g; } b.__CE_state = 1; b.__CE_definition = c; if (c.attributeChangedCallback) for (c = c.observedAttributes, d = 0; d < c.length; d++) { + var e = c[d], + f = b.getAttribute(e); null !== f && a.attributeChangedCallback(b, e, null, f, null) + } O(b) && a.connectedCallback(b) + } + } + } ee.prototype.connectedCallback = function (a) { var b = a.__CE_definition; b.connectedCallback && b.connectedCallback.call(a) }; ee.prototype.disconnectedCallback = function (a) { var b = a.__CE_definition; b.disconnectedCallback && b.disconnectedCallback.call(a) }; + ee.prototype.attributeChangedCallback = function (a, b, c, d, e) { var f = a.__CE_definition; f.attributeChangedCallback && -1 < f.observedAttributes.indexOf(b) && f.attributeChangedCallback.call(a, b, c, d, e) }; function ke(a) { var b = document; this.A = a; this.a = b; this.P = void 0; je(this.A, this.a); "loading" === this.a.readyState && (this.P = new MutationObserver(this.b.bind(this)), this.P.observe(this.a, { childList: !0, subtree: !0 })) } function le(a) { a.P && a.P.disconnect() } ke.prototype.b = function (a) { var b = this.a.readyState; "interactive" !== b && "complete" !== b || le(this); for (b = 0; b < a.length; b++)for (var c = a[b].addedNodes, d = 0; d < c.length; d++)je(this.A, c[d]) }; function me() { var a = this; this.b = this.a = void 0; this.c = new Promise(function (b) { a.b = b; a.a && b(a.a) }) } me.prototype.resolve = function (a) { if (this.a) throw Error("Already resolved."); this.a = a; this.b && this.b(a) }; function S(a) { this.ma = !1; this.A = a; this.ra = new Map; this.na = function (a) { return a() }; this.Y = !1; this.oa = []; this.Ma = new ke(a) } q = S.prototype; + q.define = function (a, b) { + var c = this; if (!(b instanceof Function)) throw new TypeError("Custom element constructors must be functions."); if (!be(a)) throw new SyntaxError("The element name '" + a + "' is not valid."); if (this.A.a.get(a)) throw Error("A custom element with name '" + a + "' has already been defined."); if (this.ma) throw Error("A custom element is already being defined."); this.ma = !0; try { + var d = function (a) { + var b = e[a]; if (void 0 !== b && !(b instanceof Function)) throw Error("The '" + a + "' callback must be a function."); + return b + }, e = b.prototype; if (!(e instanceof Object)) throw new TypeError("The custom element constructor's prototype is not an object."); var f = d("connectedCallback"); var g = d("disconnectedCallback"); var h = d("adoptedCallback"); var k = d("attributeChangedCallback"); var m = b.observedAttributes || [] + } catch (n) { return } finally { this.ma = !1 } b = { localName: a, constructor: b, connectedCallback: f, disconnectedCallback: g, adoptedCallback: h, attributeChangedCallback: k, observedAttributes: m, constructionStack: [] }; fe(this.A, a, b); this.oa.push(b); + this.Y || (this.Y = !0, this.na(function () { return ne(c) })) + }; q.ga = function (a) { je(this.A, a) }; + function ne(a) { if (!1 !== a.Y) { a.Y = !1; for (var b = a.oa, c = [], d = new Map, e = 0; e < b.length; e++)d.set(b[e].localName, []); je(a.A, document, { ga: function (b) { if (void 0 === b.__CE_state) { var e = b.localName, f = d.get(e); f ? f.push(b) : a.A.a.get(e) && c.push(b) } } }); for (e = 0; e < c.length; e++)ie(a.A, c[e]); for (; 0 < b.length;) { var f = b.shift(); e = f.localName; f = d.get(f.localName); for (var g = 0; g < f.length; g++)ie(a.A, f[g]); (e = a.ra.get(e)) && e.resolve(void 0) } } } q.get = function (a) { if (a = this.A.a.get(a)) return a.constructor }; + q.whenDefined = function (a) { if (!be(a)) return Promise.reject(new SyntaxError("'" + a + "' is not a valid custom element name.")); var b = this.ra.get(a); if (b) return b.c; b = new me; this.ra.set(a, b); this.A.a.get(a) && !this.oa.some(function (b) { return b.localName === a }) && b.resolve(void 0); return b.c }; q.Xa = function (a) { le(this.Ma); var b = this.na; this.na = function (c) { return a(function () { return b(c) }) } }; window.CustomElementRegistry = S; S.prototype.define = S.prototype.define; S.prototype.upgrade = S.prototype.ga; + S.prototype.get = S.prototype.get; S.prototype.whenDefined = S.prototype.whenDefined; S.prototype.polyfillWrapFlushCallback = S.prototype.Xa; var oe = window.Document.prototype.createElement, pe = window.Document.prototype.createElementNS, qe = window.Document.prototype.importNode, re = window.Document.prototype.prepend, se = window.Document.prototype.append, te = window.DocumentFragment.prototype.prepend, ue = window.DocumentFragment.prototype.append, ve = window.Node.prototype.cloneNode, we = window.Node.prototype.appendChild, xe = window.Node.prototype.insertBefore, ye = window.Node.prototype.removeChild, ze = window.Node.prototype.replaceChild, Ae = Object.getOwnPropertyDescriptor(window.Node.prototype, + "textContent"), Be = window.Element.prototype.attachShadow, Ce = Object.getOwnPropertyDescriptor(window.Element.prototype, "innerHTML"), De = window.Element.prototype.getAttribute, Ee = window.Element.prototype.setAttribute, Fe = window.Element.prototype.removeAttribute, Ge = window.Element.prototype.getAttributeNS, He = window.Element.prototype.setAttributeNS, Ie = window.Element.prototype.removeAttributeNS, Je = window.Element.prototype.insertAdjacentElement, Ke = window.Element.prototype.insertAdjacentHTML, Le = window.Element.prototype.prepend, + Me = window.Element.prototype.append, Ne = window.Element.prototype.before, Oe = window.Element.prototype.after, Pe = window.Element.prototype.replaceWith, Qe = window.Element.prototype.remove, Re = window.HTMLElement, Se = Object.getOwnPropertyDescriptor(window.HTMLElement.prototype, "innerHTML"), Te = window.HTMLElement.prototype.insertAdjacentElement, Ue = window.HTMLElement.prototype.insertAdjacentHTML; var Ve = new function () { }; function We() { + var a = Xe; window.HTMLElement = function () { + function b() { + var b = this.constructor, d = a.M.get(b); if (!d) throw Error("The custom element being constructed was not registered with `customElements`."); var e = d.constructionStack; if (0 === e.length) return e = oe.call(document, d.localName), Object.setPrototypeOf(e, b.prototype), e.__CE_state = 1, e.__CE_definition = d, a.b(e), e; d = e.length - 1; var f = e[d]; if (f === Ve) throw Error("The HTMLElement constructor was either called reentrantly for this constructor or called multiple times."); + e[d] = Ve; Object.setPrototypeOf(f, b.prototype); a.b(f); return f + } b.prototype = Re.prototype; return b + }() + }; function Ye(a, b, c) { function d(b) { return function (c) { for (var d = [], e = 0; e < arguments.length; ++e)d[e - 0] = arguments[e]; e = []; for (var f = [], m = 0; m < d.length; m++) { var n = d[m]; n instanceof Element && O(n) && f.push(n); if (n instanceof DocumentFragment) for (n = n.firstChild; n; n = n.nextSibling)e.push(n); else e.push(n) } b.apply(this, d); for (d = 0; d < f.length; d++)R(a, f[d]); if (O(this)) for (d = 0; d < e.length; d++)f = e[d], f instanceof Element && Q(a, f) } } void 0 !== c.fa && (b.prepend = d(c.fa)); void 0 !== c.append && (b.append = d(c.append)) }; function Ze() { + var a = Xe; P(Document.prototype, "createElement", function (b) { if (this.__CE_hasRegistry) { var c = a.a.get(b); if (c) return new c.constructor } b = oe.call(this, b); a.b(b); return b }); P(Document.prototype, "importNode", function (b, c) { b = qe.call(this, b, c); this.__CE_hasRegistry ? je(a, b) : he(a, b); return b }); P(Document.prototype, "createElementNS", function (b, c) { if (this.__CE_hasRegistry && (null === b || "http://www.w3.org/1999/xhtml" === b)) { var d = a.a.get(c); if (d) return new d.constructor } b = pe.call(this, b, c); a.b(b); return b }); + Ye(a, Document.prototype, { fa: re, append: se }) + }; function $e() { + var a = Xe; function b(b, d) { Object.defineProperty(b, "textContent", { enumerable: d.enumerable, configurable: !0, get: d.get, set: function (b) { if (this.nodeType === Node.TEXT_NODE) d.set.call(this, b); else { var c = void 0; if (this.firstChild) { var e = this.childNodes, h = e.length; if (0 < h && O(this)) { c = Array(h); for (var k = 0; k < h; k++)c[k] = e[k] } } d.set.call(this, b); if (c) for (b = 0; b < c.length; b++)R(a, c[b]) } } }) } P(Node.prototype, "insertBefore", function (b, d) { + if (b instanceof DocumentFragment) { + var c = Array.prototype.slice.apply(b.childNodes); + b = xe.call(this, b, d); if (O(this)) for (d = 0; d < c.length; d++)Q(a, c[d]); return b + } c = O(b); d = xe.call(this, b, d); c && R(a, b); O(this) && Q(a, b); return d + }); P(Node.prototype, "appendChild", function (b) { if (b instanceof DocumentFragment) { var c = Array.prototype.slice.apply(b.childNodes); b = we.call(this, b); if (O(this)) for (var e = 0; e < c.length; e++)Q(a, c[e]); return b } c = O(b); e = we.call(this, b); c && R(a, b); O(this) && Q(a, b); return e }); P(Node.prototype, "cloneNode", function (b) { + b = ve.call(this, b); this.ownerDocument.__CE_hasRegistry ? je(a, b) : + he(a, b); return b + }); P(Node.prototype, "removeChild", function (b) { var c = O(b), e = ye.call(this, b); c && R(a, b); return e }); P(Node.prototype, "replaceChild", function (b, d) { if (b instanceof DocumentFragment) { var c = Array.prototype.slice.apply(b.childNodes); b = ze.call(this, b, d); if (O(this)) for (R(a, d), d = 0; d < c.length; d++)Q(a, c[d]); return b } c = O(b); var f = ze.call(this, b, d), g = O(this); g && R(a, d); c && R(a, b); g && Q(a, b); return f }); Ae && Ae.get ? b(Node.prototype, Ae) : ge(a, function (a) { + b(a, { + enumerable: !0, configurable: !0, get: function () { + for (var a = + [], b = 0; b < this.childNodes.length; b++)a.push(this.childNodes[b].textContent); return a.join("") + }, set: function (a) { for (; this.firstChild;)ye.call(this, this.firstChild); we.call(this, document.createTextNode(a)) } + }) + }) + }; function af(a) { + var b = Element.prototype; function c(b) { return function (c) { for (var d = [], e = 0; e < arguments.length; ++e)d[e - 0] = arguments[e]; e = []; for (var h = [], k = 0; k < d.length; k++) { var m = d[k]; m instanceof Element && O(m) && h.push(m); if (m instanceof DocumentFragment) for (m = m.firstChild; m; m = m.nextSibling)e.push(m); else e.push(m) } b.apply(this, d); for (d = 0; d < h.length; d++)R(a, h[d]); if (O(this)) for (d = 0; d < e.length; d++)h = e[d], h instanceof Element && Q(a, h) } } void 0 !== Ne && (b.before = c(Ne)); void 0 !== Ne && (b.after = c(Oe)); void 0 !== + Pe && P(b, "replaceWith", function (b) { for (var c = [], d = 0; d < arguments.length; ++d)c[d - 0] = arguments[d]; d = []; for (var g = [], h = 0; h < c.length; h++) { var k = c[h]; k instanceof Element && O(k) && g.push(k); if (k instanceof DocumentFragment) for (k = k.firstChild; k; k = k.nextSibling)d.push(k); else d.push(k) } h = O(this); Pe.apply(this, c); for (c = 0; c < g.length; c++)R(a, g[c]); if (h) for (R(a, this), c = 0; c < d.length; c++)g = d[c], g instanceof Element && Q(a, g) }); void 0 !== Qe && P(b, "remove", function () { var b = O(this); Qe.call(this); b && R(a, this) }) + }; function bf() { + var a = Xe; function b(b, c) { Object.defineProperty(b, "innerHTML", { enumerable: c.enumerable, configurable: !0, get: c.get, set: function (b) { var d = this, e = void 0; O(this) && (e = [], de(this, function (a) { a !== d && e.push(a) })); c.set.call(this, b); if (e) for (var f = 0; f < e.length; f++) { var g = e[f]; 1 === g.__CE_state && a.disconnectedCallback(g) } this.ownerDocument.__CE_hasRegistry ? je(a, this) : he(a, this); return b } }) } function c(b, c) { + P(b, "insertAdjacentElement", function (b, d) { + var e = O(d); b = c.call(this, b, d); e && R(a, d); O(b) && Q(a, + d); return b + }) + } function d(b, c) { + function d(b, c) { for (var d = []; b !== c; b = b.nextSibling)d.push(b); for (c = 0; c < d.length; c++)je(a, d[c]) } P(b, "insertAdjacentHTML", function (a, b) { + a = a.toLowerCase(); if ("beforebegin" === a) { var e = this.previousSibling; c.call(this, a, b); d(e || this.parentNode.firstChild, this) } else if ("afterbegin" === a) e = this.firstChild, c.call(this, a, b), d(this.firstChild, e); else if ("beforeend" === a) e = this.lastChild, c.call(this, a, b), d(e || this.firstChild, null); else if ("afterend" === a) e = this.nextSibling, c.call(this, + a, b), d(this.nextSibling, e); else throw new SyntaxError("The value provided (" + String(a) + ") is not one of 'beforebegin', 'afterbegin', 'beforeend', or 'afterend'."); + }) + } Be && P(Element.prototype, "attachShadow", function (a) { return this.__CE_shadowRoot = a = Be.call(this, a) }); Ce && Ce.get ? b(Element.prototype, Ce) : Se && Se.get ? b(HTMLElement.prototype, Se) : ge(a, function (a) { + b(a, { + enumerable: !0, configurable: !0, get: function () { return ve.call(this, !0).innerHTML }, set: function (a) { + var b = "template" === this.localName, c = b ? this.content : + this, d = oe.call(document, this.localName); for (d.innerHTML = a; 0 < c.childNodes.length;)ye.call(c, c.childNodes[0]); for (a = b ? d.content : d; 0 < a.childNodes.length;)we.call(c, a.childNodes[0]) + } + }) + }); P(Element.prototype, "setAttribute", function (b, c) { if (1 !== this.__CE_state) return Ee.call(this, b, c); var d = De.call(this, b); Ee.call(this, b, c); c = De.call(this, b); a.attributeChangedCallback(this, b, d, c, null) }); P(Element.prototype, "setAttributeNS", function (b, c, d) { + if (1 !== this.__CE_state) return He.call(this, b, c, d); var e = Ge.call(this, + b, c); He.call(this, b, c, d); d = Ge.call(this, b, c); a.attributeChangedCallback(this, c, e, d, b) + }); P(Element.prototype, "removeAttribute", function (b) { if (1 !== this.__CE_state) return Fe.call(this, b); var c = De.call(this, b); Fe.call(this, b); null !== c && a.attributeChangedCallback(this, b, c, null, null) }); P(Element.prototype, "removeAttributeNS", function (b, c) { if (1 !== this.__CE_state) return Ie.call(this, b, c); var d = Ge.call(this, b, c); Ie.call(this, b, c); var e = Ge.call(this, b, c); d !== e && a.attributeChangedCallback(this, c, d, e, b) }); Te ? + c(HTMLElement.prototype, Te) : Je ? c(Element.prototype, Je) : console.warn("Custom Elements: `Element#insertAdjacentElement` was not patched."); Ue ? d(HTMLElement.prototype, Ue) : Ke ? d(Element.prototype, Ke) : console.warn("Custom Elements: `Element#insertAdjacentHTML` was not patched."); Ye(a, Element.prototype, { fa: Le, append: Me }); af(a) + }; var cf = window.customElements; if (!cf || cf.forcePolyfill || "function" != typeof cf.define || "function" != typeof cf.get) { var Xe = new ee; We(); Ze(); Ye(Xe, DocumentFragment.prototype, { fa: te, append: ue }); $e(); bf(); document.__CE_hasRegistry = !0; var customElements = new S(Xe); Object.defineProperty(window, "customElements", { configurable: !0, enumerable: !0, value: customElements }) }; function df() { this.end = this.start = 0; this.rules = this.parent = this.previous = null; this.cssText = this.parsedCssText = ""; this.atRule = !1; this.type = 0; this.parsedSelector = this.selector = this.keyframesName = "" } + function ef(a) { a = a.replace(ff, "").replace(gf, ""); var b = hf, c = a, d = new df; d.start = 0; d.end = c.length; for (var e = d, f = 0, g = c.length; f < g; f++)if ("{" === c[f]) { e.rules || (e.rules = []); var h = e, k = h.rules[h.rules.length - 1] || null; e = new df; e.start = f + 1; e.parent = h; e.previous = k; h.rules.push(e) } else "}" === c[f] && (e.end = f + 1, e = e.parent || d); return b(d, a) } + function hf(a, b) { + var c = b.substring(a.start, a.end - 1); a.parsedCssText = a.cssText = c.trim(); a.parent && (c = b.substring(a.previous ? a.previous.end : a.parent.start, a.start - 1), c = jf(c), c = c.replace(kf, " "), c = c.substring(c.lastIndexOf(";") + 1), c = a.parsedSelector = a.selector = c.trim(), a.atRule = 0 === c.indexOf("@"), a.atRule ? 0 === c.indexOf("@media") ? a.type = lf : c.match(rf) && (a.type = sf, a.keyframesName = a.selector.split(kf).pop()) : a.type = 0 === c.indexOf("--") ? tf : uf); if (c = a.rules) for (var d = 0, e = c.length, f; d < e && (f = c[d]); d++)hf(f, + b); return a + } function jf(a) { return a.replace(/\\([0-9a-f]{1,6})\s/gi, function (a, c) { a = c; for (c = 6 - a.length; c--;)a = "0" + a; return "\\" + a }) } + function vf(a, b, c) { c = void 0 === c ? "" : c; var d = ""; if (a.cssText || a.rules) { var e = a.rules, f; if (f = e) f = e[0], f = !(f && f.selector && 0 === f.selector.indexOf("--")); if (f) { f = 0; for (var g = e.length, h; f < g && (h = e[f]); f++)d = vf(h, b, d) } else b ? b = a.cssText : (b = a.cssText, b = b.replace(wf, "").replace(xf, ""), b = b.replace(yf, "").replace(zf, "")), (d = b.trim()) && (d = " " + d + "\n") } d && (a.selector && (c += a.selector + " {\n"), c += d, a.selector && (c += "}\n\n")); return c } + var uf = 1, sf = 7, lf = 4, tf = 1E3, ff = /\/\*[^*]*\*+([^/*][^*]*\*+)*\//gim, gf = /@import[^;]*;/gim, wf = /(?:^[^;\-\s}]+)?--[^;{}]*?:[^{};]*?(?:[;\n]|$)/gim, xf = /(?:^[^;\-\s}]+)?--[^;{}]*?:[^{};]*?{[^}]*?}(?:[;\n]|$)?/gim, yf = /@apply\s*\(?[^);]*\)?\s*(?:[;\n]|$)?/gim, zf = /[^;:]*?:[^;]*?var\([^;]*\)(?:[;\n]|$)?/gim, rf = /^@[^\s]*keyframes/, kf = /\s+/g; var T = !(window.ShadyDOM && window.ShadyDOM.inUse), Af; function Bf(a) { Af = a && a.shimcssproperties ? !1 : T || !(navigator.userAgent.match(/AppleWebKit\/601|Edge\/15/) || !window.CSS || !CSS.supports || !CSS.supports("box-shadow", "0 0 0 var(--foo)")) } window.ShadyCSS && void 0 !== window.ShadyCSS.nativeCss ? Af = window.ShadyCSS.nativeCss : window.ShadyCSS ? (Bf(window.ShadyCSS), window.ShadyCSS = void 0) : Bf(window.WebComponents && window.WebComponents.flags); var V = Af; var Cf = /(?:^|[;\s{]\s*)(--[\w-]*?)\s*:\s*(?:((?:'(?:\\'|.)*?'|"(?:\\"|.)*?"|\([^)]*?\)|[^};{])+)|\{([^}]*)\}(?:(?=[;\s}])|$))/gi, Df = /(?:^|\W+)@apply\s*\(?([^);\n]*)\)?/gi, Ef = /(--[\w-]+)\s*([:,;)]|$)/gi, Ff = /(animation\s*:)|(animation-name\s*:)/, Gf = /@media\s(.*)/, Hf = /\{[^}]*\}/g; var If = new Set; function Jf(a, b) { if (!a) return ""; "string" === typeof a && (a = ef(a)); b && Kf(a, b); return vf(a, V) } function Lf(a) { !a.__cssRules && a.textContent && (a.__cssRules = ef(a.textContent)); return a.__cssRules || null } function Mf(a) { return !!a.parent && a.parent.type === sf } function Kf(a, b, c, d) { if (a) { var e = !1, f = a.type; if (d && f === lf) { var g = a.selector.match(Gf); g && (window.matchMedia(g[1]).matches || (e = !0)) } f === uf ? b(a) : c && f === sf ? c(a) : f === tf && (e = !0); if ((a = a.rules) && !e) { e = 0; f = a.length; for (var h; e < f && (h = a[e]); e++)Kf(h, b, c, d) } } } + function Nf(a, b, c, d) { var e = document.createElement("style"); b && e.setAttribute("scope", b); e.textContent = a; Of(e, c, d); return e } var Pf = null; function Of(a, b, c) { b = b || document.head; b.insertBefore(a, c && c.nextSibling || b.firstChild); Pf ? a.compareDocumentPosition(Pf) === Node.DOCUMENT_POSITION_PRECEDING && (Pf = a) : Pf = a } + function Qf(a, b) { var c = a.indexOf("var("); if (-1 === c) return b(a, "", "", ""); a: { var d = 0; var e = c + 3; for (var f = a.length; e < f; e++)if ("(" === a[e]) d++; else if (")" === a[e] && 0 === --d) break a; e = -1 } d = a.substring(c + 4, e); c = a.substring(0, c); a = Qf(a.substring(e + 1), b); e = d.indexOf(","); return -1 === e ? b(c, d.trim(), "", a) : b(c, d.substring(0, e).trim(), d.substring(e + 1).trim(), a) } function Rf(a, b) { T ? a.setAttribute("class", b) : window.ShadyDOM.nativeMethods.setAttribute.call(a, "class", b) } + function Sf(a) { var b = a.localName, c = ""; b ? -1 < b.indexOf("-") || (c = b, b = a.getAttribute && a.getAttribute("is") || "") : (b = a.is, c = a.extends); return { is: b, X: c } }; function Tf() { } function Uf(a, b, c) { var d = Vf; a.__styleScoped ? a.__styleScoped = null : Wf(d, a, b || "", c) } function Wf(a, b, c, d) { b.nodeType === Node.ELEMENT_NODE && Xf(b, c, d); if (b = "template" === b.localName ? (b.content || b.jb).childNodes : b.children || b.childNodes) for (var e = 0; e < b.length; e++)Wf(a, b[e], c, d) } + function Xf(a, b, c) { if (b) if (a.classList) c ? (a.classList.remove("style-scope"), a.classList.remove(b)) : (a.classList.add("style-scope"), a.classList.add(b)); else if (a.getAttribute) { var d = a.getAttribute(Yf); c ? d && (b = d.replace("style-scope", "").replace(b, ""), Rf(a, b)) : Rf(a, (d ? d + " " : "") + "style-scope " + b) } } function Zf(a, b, c) { var d = Vf, e = a.__cssBuild; T || "shady" === e ? b = Jf(b, c) : (a = Sf(a), b = $f(d, b, a.is, a.X, c) + "\n\n"); return b.trim() } + function $f(a, b, c, d, e) { var f = ag(c, d); c = c ? bg + c : ""; return Jf(b, function (b) { b.c || (b.selector = b.G = cg(a, b, a.b, c, f), b.c = !0); e && e(b, c, f) }) } function ag(a, b) { return b ? "[is=" + a + "]" : a } function cg(a, b, c, d, e) { var f = b.selector.split(dg); if (!Mf(b)) { b = 0; for (var g = f.length, h; b < g && (h = f[b]); b++)f[b] = c.call(a, h, d, e) } return f.join(dg) } function eg(a) { return a.replace(fg, function (a, c, d) { -1 < d.indexOf("+") ? d = d.replace(/\+/g, "___") : -1 < d.indexOf("___") && (d = d.replace(/___/g, "+")); return ":" + c + "(" + d + ")" }) } + Tf.prototype.b = function (a, b, c) { var d = !1; a = a.trim(); var e = fg.test(a); e && (a = a.replace(fg, function (a, b, c) { return ":" + b + "(" + c.replace(/\s/g, "") + ")" }), a = eg(a)); a = a.replace(gg, hg + " $1"); a = a.replace(ig, function (a, e, h) { d || (a = jg(h, e, b, c), d = d || a.stop, e = a.Sa, h = a.value); return e + h }); e && (a = eg(a)); return a }; + function jg(a, b, c, d) { var e = a.indexOf(kg); 0 <= a.indexOf(hg) ? a = lg(a, d) : 0 !== e && (a = c ? mg(a, c) : a); c = !1; 0 <= e && (b = "", c = !0); if (c) { var f = !0; c && (a = a.replace(ng, function (a, b) { return " > " + b })) } a = a.replace(og, function (a, b, c) { return '[dir="' + c + '"] ' + b + ", " + b + '[dir="' + c + '"]' }); return { value: a, Sa: b, stop: f } } function mg(a, b) { a = a.split(pg); a[0] += b; return a.join(pg) } + function lg(a, b) { var c = a.match(qg); return (c = c && c[2].trim() || "") ? c[0].match(rg) ? a.replace(qg, function (a, c, f) { return b + f }) : c.split(rg)[0] === b ? c : sg : a.replace(hg, b) } function tg(a) { a.selector === ug && (a.selector = "html") } Tf.prototype.c = function (a) { return a.match(kg) ? this.b(a, vg) : mg(a.trim(), vg) }; aa.Object.defineProperties(Tf.prototype, { a: { configurable: !0, enumerable: !0, get: function () { return "style-scope" } } }); + var fg = /:(nth[-\w]+)\(([^)]+)\)/, vg = ":not(.style-scope)", dg = ",", ig = /(^|[\s>+~]+)((?:\[.+?\]|[^\s>+~=[])+)/g, rg = /[[.:#*]/, hg = ":host", ug = ":root", kg = "::slotted", gg = new RegExp("^(" + kg + ")"), qg = /(:host)(?:\(((?:\([^)(]*\)|[^)(]*)+?)\))/, ng = /(?:::slotted)(?:\(((?:\([^)(]*\)|[^)(]*)+?)\))/, og = /(.*):dir\((?:(ltr|rtl))\)/, bg = ".", pg = ":", Yf = "class", sg = "should_not_match", Vf = new Tf; function wg(a, b, c, d) { this.K = a || null; this.b = b || null; this.sa = c || []; this.T = null; this.X = d || ""; this.a = this.H = this.O = null } function xg(a) { return a ? a.__styleInfo : null } function yg(a, b) { return a.__styleInfo = b } wg.prototype.c = function () { return this.K }; wg.prototype._getStyleRules = wg.prototype.c; function zg(a) { var b = this.matches || this.matchesSelector || this.mozMatchesSelector || this.msMatchesSelector || this.oMatchesSelector || this.webkitMatchesSelector; return b && b.call(this, a) } var Ag = navigator.userAgent.match("Trident"); function Bg() { } function Cg(a) { var b = {}, c = [], d = 0; Kf(a, function (a) { Dg(a); a.index = d++; a = a.B.cssText; for (var c; c = Ef.exec(a);) { var e = c[1]; ":" !== c[2] && (b[e] = !0) } }, function (a) { c.push(a) }); a.b = c; a = []; for (var e in b) a.push(e); return a } + function Dg(a) { if (!a.B) { var b = {}, c = {}; Eg(a, c) && (b.J = c, a.rules = null); b.cssText = a.parsedCssText.replace(Hf, "").replace(Cf, ""); a.B = b } } function Eg(a, b) { var c = a.B; if (c) { if (c.J) return Object.assign(b, c.J), !0 } else { c = a.parsedCssText; for (var d; a = Cf.exec(c);) { d = (a[2] || a[3]).trim(); if ("inherit" !== d || "unset" !== d) b[a[1].trim()] = d; d = !0 } return d } } + function Fg(a, b, c) { b && (b = 0 <= b.indexOf(";") ? Gg(a, b, c) : Qf(b, function (b, e, f, g) { if (!e) return b + g; (e = Fg(a, c[e], c)) && "initial" !== e ? "apply-shim-inherit" === e && (e = "inherit") : e = Fg(a, c[f] || f, c) || f; return b + (e || "") + g })); return b && b.trim() || "" } + function Gg(a, b, c) { b = b.split(";"); for (var d = 0, e, f; d < b.length; d++)if (e = b[d]) { Df.lastIndex = 0; if (f = Df.exec(e)) e = Fg(a, c[f[1]], c); else if (f = e.indexOf(":"), -1 !== f) { var g = e.substring(f); g = g.trim(); g = Fg(a, g, c) || g; e = e.substring(0, f) + g } b[d] = e && e.lastIndexOf(";") === e.length - 1 ? e.slice(0, -1) : e || "" } return b.join(";") } + function Hg(a, b) { var c = {}, d = []; Kf(a, function (a) { a.B || Dg(a); var e = a.G || a.parsedSelector; b && a.B.J && e && zg.call(b, e) && (Eg(a, c), a = a.index, e = parseInt(a / 32, 10), d[e] = (d[e] || 0) | 1 << a % 32) }, null, !0); return { J: c, key: d } } + function Ig(a, b, c, d) { b.B || Dg(b); if (b.B.J) { var e = Sf(a); a = e.is; e = e.X; e = a ? ag(a, e) : "html"; var f = b.parsedSelector, g = ":host > *" === f || "html" === f, h = 0 === f.indexOf(":host") && !g; "shady" === c && (g = f === e + " > *." + e || -1 !== f.indexOf("html"), h = !g && 0 === f.indexOf(e)); "shadow" === c && (g = ":host > *" === f || "html" === f, h = h && !g); if (g || h) c = e, h && (b.G || (b.G = cg(Vf, b, Vf.b, a ? bg + a : "", e)), c = b.G || e), d({ Za: c, Wa: h, wb: g }) } } + function Jg(a, b) { var c = {}, d = {}, e = b && b.__cssBuild; Kf(b, function (b) { Ig(a, b, e, function (e) { zg.call(a.kb || a, e.Za) && (e.Wa ? Eg(b, c) : Eg(b, d)) }) }, null, !0); return { Ya: d, Va: c } } + function Kg(a, b, c, d) { + var e = Sf(b), f = ag(e.is, e.X), g = new RegExp("(?:^|[^.#[:])" + (b.extends ? "\\" + f.slice(0, -1) + "\\]" : f) + "($|[.:[\\s>+~])"); e = xg(b).K; var h = Lg(e, d); return Zf(b, e, function (b) { + var e = ""; b.B || Dg(b); b.B.cssText && (e = Gg(a, b.B.cssText, c)); b.cssText = e; if (!T && !Mf(b) && b.cssText) { + var k = e = b.cssText; null == b.za && (b.za = Ff.test(e)); if (b.za) if (null == b.ea) { b.ea = []; for (var r in h) k = h[r], k = k(e), e !== k && (e = k, b.ea.push(r)) } else { for (r = 0; r < b.ea.length; ++r)k = h[b.ea[r]], e = k(e); k = e } b.cssText = k; b.G = b.G || b.selector; + e = "." + d; r = b.G.split(","); k = 0; for (var G = r.length, x; k < G && (x = r[k]); k++)r[k] = x.match(g) ? x.replace(f, e) : e + " " + x; b.selector = r.join(",") + } + }) + } function Lg(a, b) { a = a.b; var c = {}; if (!T && a) for (var d = 0, e = a[d]; d < a.length; e = a[++d]) { var f = e, g = b; f.F = new RegExp("\\b" + f.keyframesName + "(?!\\B|-)", "g"); f.a = f.keyframesName + "-" + g; f.G = f.G || f.selector; f.selector = f.G.replace(f.keyframesName, f.a); c[e.keyframesName] = Mg(e) } return c } function Mg(a) { return function (b) { return b.replace(a.F, a.a) } } + function Ng(a, b) { var c = Og, d = Lf(a); a.textContent = Jf(d, function (a) { var d = a.cssText = a.parsedCssText; a.B && a.B.cssText && (d = d.replace(wf, "").replace(xf, ""), a.cssText = Gg(c, d, b)) }) } aa.Object.defineProperties(Bg.prototype, { a: { configurable: !0, enumerable: !0, get: function () { return "x-scope" } } }); var Og = new Bg; var Pg = {}, Qg = window.customElements; if (Qg && !T) { var Rg = Qg.define; Qg.define = function (a, b, c) { var d = document.createComment(" Shady DOM styles for " + a + " "), e = document.head; e.insertBefore(d, (Pf ? Pf.nextSibling : null) || e.firstChild); Pf = d; Pg[a] = d; Rg.call(Qg, a, b, c) } }; function Sg() { this.cache = {} } Sg.prototype.store = function (a, b, c, d) { var e = this.cache[a] || []; e.push({ J: b, styleElement: c, H: d }); 100 < e.length && e.shift(); this.cache[a] = e }; Sg.prototype.fetch = function (a, b, c) { if (a = this.cache[a]) for (var d = a.length - 1; 0 <= d; d--) { var e = a[d], f; a: { for (f = 0; f < c.length; f++) { var g = c[f]; if (e.J[g] !== b[g]) { f = !1; break a } } f = !0 } if (f) return e } }; function Tg() { } + function Ug(a) { + for (var b = 0; b < a.length; b++) { + var c = a[b]; if (c.target !== document.documentElement && c.target !== document.head) for (var d = 0; d < c.addedNodes.length; d++) { + var e = c.addedNodes[d]; if (e.nodeType === Node.ELEMENT_NODE) { + var f = e.getRootNode(); var g = e; var h = []; g.classList ? h = Array.from(g.classList) : g instanceof window.SVGElement && g.hasAttribute("class") && (h = g.getAttribute("class").split(/\s+/)); g = h; h = g.indexOf(Vf.a); if ((g = -1 < h ? g[h + 1] : "") && f === e.ownerDocument) Uf(e, g, !0); else if (f.nodeType === Node.DOCUMENT_FRAGMENT_NODE && + (f = f.host)) if (f = Sf(f).is, g === f) for (e = window.ShadyDOM.nativeMethods.querySelectorAll.call(e, ":not(." + Vf.a + ")"), f = 0; f < e.length; f++)Xf(e[f], g); else g && Uf(e, g, !0), Uf(e, f) + } + } + } + } + if (!T) { var Vg = new MutationObserver(Ug), Wg = function (a) { Vg.observe(a, { childList: !0, subtree: !0 }) }; if (window.customElements && !window.customElements.polyfillWrapFlushCallback) Wg(document); else { var Xg = function () { Wg(document.body) }; window.HTMLImports ? window.HTMLImports.whenReady(Xg) : requestAnimationFrame(function () { if ("loading" === document.readyState) { var a = function () { Xg(); document.removeEventListener("readystatechange", a) }; document.addEventListener("readystatechange", a) } else Xg() }) } Tg = function () { Ug(Vg.takeRecords()) } } + var Yg = Tg; var Zg = {}; var $g = Promise.resolve(); function ah(a) { if (a = Zg[a]) a._applyShimCurrentVersion = a._applyShimCurrentVersion || 0, a._applyShimValidatingVersion = a._applyShimValidatingVersion || 0, a._applyShimNextVersion = (a._applyShimNextVersion || 0) + 1 } function bh(a) { return a._applyShimCurrentVersion === a._applyShimNextVersion } function ch(a) { a._applyShimValidatingVersion = a._applyShimNextVersion; a.b || (a.b = !0, $g.then(function () { a._applyShimCurrentVersion = a._applyShimNextVersion; a.b = !1 })) }; var dh = new Sg; function W() { this.Aa = {}; this.c = document.documentElement; var a = new df; a.rules = []; this.F = yg(this.c, new wg(a)); this.M = !1; this.b = this.a = null } q = W.prototype; q.Ga = function () { Yg() }; q.Ta = function (a) { return Lf(a) }; q.ab = function (a) { return Jf(a) }; + q.prepareTemplate = function (a, b, c) { + if (!a.F) { + a.F = !0; a.name = b; a.extends = c; Zg[b] = a; var d = (d = a.content.querySelector("style")) ? d.getAttribute("css-build") || "" : ""; var e = []; for (var f = a.content.querySelectorAll("style"), g = 0; g < f.length; g++) { var h = f[g]; if (h.hasAttribute("shady-unscoped")) { if (!T) { var k = h.textContent; If.has(k) || (If.add(k), k = h.cloneNode(!0), document.head.appendChild(k)); h.parentNode.removeChild(h) } } else e.push(h.textContent), h.parentNode.removeChild(h) } e = e.join("").trim(); c = { is: b, extends: c, hb: d }; + T || Uf(a.content, b); eh(this); f = Df.test(e) || Cf.test(e); Df.lastIndex = 0; Cf.lastIndex = 0; e = ef(e); f && V && this.a && this.a.transformRules(e, b); a._styleAst = e; a.M = d; d = []; V || (d = Cg(a._styleAst)); if (!d.length || V) e = T ? a.content : null, b = Pg[b], f = Zf(c, a._styleAst), b = f.length ? Nf(f, c.is, e, b) : void 0, a.a = b; a.c = d + } + }; + function fh(a) { !a.b && window.ShadyCSS && window.ShadyCSS.CustomStyleInterface && (a.b = window.ShadyCSS.CustomStyleInterface, a.b.transformCallback = function (b) { a.Ea(b) }, a.b.validateCallback = function () { requestAnimationFrame(function () { (a.b.enqueued || a.M) && a.flushCustomStyles() }) }) } function eh(a) { !a.a && window.ShadyCSS && window.ShadyCSS.ApplyShim && (a.a = window.ShadyCSS.ApplyShim, a.a.invalidCallback = ah); fh(a) } + q.flushCustomStyles = function () { eh(this); if (this.b) { var a = this.b.processStyles(); if (this.b.enqueued) { if (V) for (var b = 0; b < a.length; b++) { var c = this.b.getStyleForCustomStyle(a[b]); if (c && V && this.a) { var d = Lf(c); eh(this); this.a.transformRules(d); c.textContent = Jf(d) } } else for (gh(this, this.c, this.F), b = 0; b < a.length; b++)(c = this.b.getStyleForCustomStyle(a[b])) && Ng(c, this.F.O); this.b.enqueued = !1; this.M && !V && this.styleDocument() } } }; + q.styleElement = function (a, b) { + var c = Sf(a).is, d = xg(a); if (!d) { var e = Sf(a); d = e.is; e = e.X; var f = Pg[d]; d = Zg[d]; if (d) { var g = d._styleAst; var h = d.c } d = yg(a, new wg(g, f, h, e)) } a !== this.c && (this.M = !0); b && (d.T = d.T || {}, Object.assign(d.T, b)); if (V) { + if (d.T) { b = d.T; for (var k in b) null === k ? a.style.removeProperty(k) : a.style.setProperty(k, b[k]) } if (((k = Zg[c]) || a === this.c) && k && k.a && !bh(k)) { + if (bh(k) || k._applyShimValidatingVersion !== k._applyShimNextVersion) eh(this), this.a && this.a.transformRules(k._styleAst, c), k.a.textContent = + Zf(a, d.K), ch(k); T && (c = a.shadowRoot) && (c.querySelector("style").textContent = Zf(a, d.K)); d.K = k._styleAst + } + } else if (gh(this, a, d), d.sa && d.sa.length) { + c = d; k = Sf(a).is; d = (b = dh.fetch(k, c.O, c.sa)) ? b.styleElement : null; g = c.H; (h = b && b.H) || (h = this.Aa[k] = (this.Aa[k] || 0) + 1, h = k + "-" + h); c.H = h; h = c.H; e = Og; e = d ? d.textContent || "" : Kg(e, a, c.O, h); f = xg(a); var m = f.a; m && !T && m !== d && (m._useCount--, 0 >= m._useCount && m.parentNode && m.parentNode.removeChild(m)); T ? f.a ? (f.a.textContent = e, d = f.a) : e && (d = Nf(e, h, a.shadowRoot, f.b)) : d ? d.parentNode || + (Ag && -1 < e.indexOf("@media") && (d.textContent = e), Of(d, null, f.b)) : e && (d = Nf(e, h, null, f.b)); d && (d._useCount = d._useCount || 0, f.a != d && d._useCount++, f.a = d); h = d; T || (d = c.H, f = e = a.getAttribute("class") || "", g && (f = e.replace(new RegExp("\\s*x-scope\\s*" + g + "\\s*", "g"), " ")), f += (f ? " " : "") + "x-scope " + d, e !== f && Rf(a, f)); b || dh.store(k, c.O, h, c.H) + } + }; function hh(a, b) { return (b = b.getRootNode().host) ? xg(b) ? b : hh(a, b) : a.c } + function gh(a, b, c) { a = hh(a, b); var d = xg(a); a = Object.create(d.O || null); var e = Jg(b, c.K); b = Hg(d.K, b).J; Object.assign(a, e.Va, b, e.Ya); b = c.T; for (var f in b) if ((e = b[f]) || 0 === e) a[f] = e; f = Og; b = Object.getOwnPropertyNames(a); for (e = 0; e < b.length; e++)d = b[e], a[d] = Fg(f, a[d], a); c.O = a } q.styleDocument = function (a) { this.styleSubtree(this.c, a) }; + q.styleSubtree = function (a, b) { var c = a.shadowRoot; (c || a === this.c) && this.styleElement(a, b); if (b = c && (c.children || c.childNodes)) for (a = 0; a < b.length; a++)this.styleSubtree(b[a]); else if (a = a.children || a.childNodes) for (b = 0; b < a.length; b++)this.styleSubtree(a[b]) }; q.Ea = function (a) { var b = this, c = Lf(a); Kf(c, function (a) { if (T) tg(a); else { var c = Vf; a.selector = a.parsedSelector; tg(a); a.selector = a.G = cg(c, a, c.c, void 0, void 0) } V && (eh(b), b.a && b.a.transformRule(a)) }); V ? a.textContent = Jf(c) : this.F.K.rules.push(c) }; + q.getComputedStyleValue = function (a, b) { var c; V || (c = (xg(a) || xg(hh(this, a))).O[b]); return (c = c || window.getComputedStyle(a).getPropertyValue(b)) ? c.trim() : "" }; q.$a = function (a, b) { var c = a.getRootNode(); b = b ? b.split(/\s/) : []; c = c.host && c.host.localName; if (!c) { var d = a.getAttribute("class"); if (d) { d = d.split(/\s/); for (var e = 0; e < d.length; e++)if (d[e] === Vf.a) { c = d[e + 1]; break } } } c && b.push(Vf.a, c); V || (c = xg(a)) && c.H && b.push(Og.a, c.H); Rf(a, b.join(" ")) }; q.Qa = function (a) { return xg(a) }; W.prototype.flush = W.prototype.Ga; + W.prototype.prepareTemplate = W.prototype.prepareTemplate; W.prototype.styleElement = W.prototype.styleElement; W.prototype.styleDocument = W.prototype.styleDocument; W.prototype.styleSubtree = W.prototype.styleSubtree; W.prototype.getComputedStyleValue = W.prototype.getComputedStyleValue; W.prototype.setElementClass = W.prototype.$a; W.prototype._styleInfoForNode = W.prototype.Qa; W.prototype.transformCustomStyleForDocument = W.prototype.Ea; W.prototype.getStyleAst = W.prototype.Ta; W.prototype.styleAstToString = W.prototype.ab; + W.prototype.flushCustomStyles = W.prototype.flushCustomStyles; Object.defineProperties(W.prototype, { nativeShadow: { get: function () { return T } }, nativeCss: { get: function () { return V } } }); var X = new W, ih, jh; window.ShadyCSS && (ih = window.ShadyCSS.ApplyShim, jh = window.ShadyCSS.CustomStyleInterface); + window.ShadyCSS = { ScopingShim: X, prepareTemplate: function (a, b, c) { X.flushCustomStyles(); X.prepareTemplate(a, b, c) }, styleSubtree: function (a, b) { X.flushCustomStyles(); X.styleSubtree(a, b) }, styleElement: function (a) { X.flushCustomStyles(); X.styleElement(a) }, styleDocument: function (a) { X.flushCustomStyles(); X.styleDocument(a) }, flushCustomStyles: function () { X.flushCustomStyles() }, getComputedStyleValue: function (a, b) { return X.getComputedStyleValue(a, b) }, nativeCss: V, nativeShadow: T }; ih && (window.ShadyCSS.ApplyShim = ih); + jh && (window.ShadyCSS.CustomStyleInterface = jh); (function (a) { + function b(a) { "" == a && (f.call(this), this.h = !0); return a.toLowerCase() } function c(a) { var b = a.charCodeAt(0); return 32 < b && 127 > b && -1 == [34, 35, 60, 62, 63, 96].indexOf(b) ? a : encodeURIComponent(a) } function d(a) { var b = a.charCodeAt(0); return 32 < b && 127 > b && -1 == [34, 35, 60, 62, 96].indexOf(b) ? a : encodeURIComponent(a) } function e(a, e, g) { + function h(a) { kb.push(a) } var k = e || "scheme start", v = 0, p = "", x = !1, U = !1, kb = []; a: for (; (void 0 != a[v - 1] || 0 == v) && !this.h;) { + var l = a[v]; switch (k) { + case "scheme start": if (l && r.test(l)) p += + l.toLowerCase(), k = "scheme"; else if (e) { h("Invalid scheme."); break a } else { p = ""; k = "no scheme"; continue } break; case "scheme": if (l && G.test(l)) p += l.toLowerCase(); else if (":" == l) { this.g = p; p = ""; if (e) break a; void 0 !== m[this.g] && (this.D = !0); k = "file" == this.g ? "relative" : this.D && g && g.g == this.g ? "relative or authority" : this.D ? "authority first slash" : "scheme data" } else if (e) { void 0 != l && h("Code point not allowed in scheme: " + l); break a } else { p = ""; v = 0; k = "no scheme"; continue } break; case "scheme data": "?" == l ? (this.u = "?", + k = "query") : "#" == l ? (this.C = "#", k = "fragment") : void 0 != l && "\t" != l && "\n" != l && "\r" != l && (this.qa += c(l)); break; case "no scheme": if (g && void 0 !== m[g.g]) { k = "relative"; continue } else h("Missing scheme."), f.call(this), this.h = !0; break; case "relative or authority": if ("/" == l && "/" == a[v + 1]) k = "authority ignore slashes"; else { h("Expected /, got: " + l); k = "relative"; continue } break; case "relative": this.D = !0; "file" != this.g && (this.g = g.g); if (void 0 == l) { + this.i = g.i; this.s = g.s; this.j = g.j.slice(); this.u = g.u; this.v = g.v; this.f = g.f; + break a + } else if ("/" == l || "\\" == l) "\\" == l && h("\\ is an invalid code point."), k = "relative slash"; else if ("?" == l) this.i = g.i, this.s = g.s, this.j = g.j.slice(), this.u = "?", this.v = g.v, this.f = g.f, k = "query"; else if ("#" == l) this.i = g.i, this.s = g.s, this.j = g.j.slice(), this.u = g.u, this.C = "#", this.v = g.v, this.f = g.f, k = "fragment"; else { + k = a[v + 1]; var F = a[v + 2]; if ("file" != this.g || !r.test(l) || ":" != k && "|" != k || void 0 != F && "/" != F && "\\" != F && "?" != F && "#" != F) this.i = g.i, this.s = g.s, this.v = g.v, this.f = g.f, this.j = g.j.slice(), this.j.pop(); k = + "relative path"; continue + } break; case "relative slash": if ("/" == l || "\\" == l) "\\" == l && h("\\ is an invalid code point."), k = "file" == this.g ? "file host" : "authority ignore slashes"; else { "file" != this.g && (this.i = g.i, this.s = g.s, this.v = g.v, this.f = g.f); k = "relative path"; continue } break; case "authority first slash": if ("/" == l) k = "authority second slash"; else { h("Expected '/', got: " + l); k = "authority ignore slashes"; continue } break; case "authority second slash": k = "authority ignore slashes"; if ("/" != l) { + h("Expected '/', got: " + + l); continue + } break; case "authority ignore slashes": if ("/" != l && "\\" != l) { k = "authority"; continue } else h("Expected authority, got: " + l); break; case "authority": if ("@" == l) { x && (h("@ already seen."), p += "%40"); x = !0; for (l = 0; l < p.length; l++)F = p[l], "\t" == F || "\n" == F || "\r" == F ? h("Invalid whitespace in authority.") : ":" == F && null === this.f ? this.f = "" : (F = c(F), null !== this.f ? this.f += F : this.v += F); p = "" } else if (void 0 == l || "/" == l || "\\" == l || "?" == l || "#" == l) { v -= p.length; p = ""; k = "host"; continue } else p += l; break; case "file host": if (void 0 == + l || "/" == l || "\\" == l || "?" == l || "#" == l) { 2 != p.length || !r.test(p[0]) || ":" != p[1] && "|" != p[1] ? (0 != p.length && (this.i = b.call(this, p), p = ""), k = "relative path start") : k = "relative path"; continue } else "\t" == l || "\n" == l || "\r" == l ? h("Invalid whitespace in file host.") : p += l; break; case "host": case "hostname": if (":" != l || U) if (void 0 == l || "/" == l || "\\" == l || "?" == l || "#" == l) { this.i = b.call(this, p); p = ""; k = "relative path start"; if (e) break a; continue } else "\t" != l && "\n" != l && "\r" != l ? ("[" == l ? U = !0 : "]" == l && (U = !1), p += l) : h("Invalid code point in host/hostname: " + + l); else if (this.i = b.call(this, p), p = "", k = "port", "hostname" == e) break a; break; case "port": if (/[0-9]/.test(l)) p += l; else if (void 0 == l || "/" == l || "\\" == l || "?" == l || "#" == l || e) { "" != p && (p = parseInt(p, 10), p != m[this.g] && (this.s = p + ""), p = ""); if (e) break a; k = "relative path start"; continue } else "\t" == l || "\n" == l || "\r" == l ? h("Invalid code point in port: " + l) : (f.call(this), this.h = !0); break; case "relative path start": "\\" == l && h("'\\' not allowed in path."); k = "relative path"; if ("/" != l && "\\" != l) continue; break; case "relative path": if (void 0 != + l && "/" != l && "\\" != l && (e || "?" != l && "#" != l)) "\t" != l && "\n" != l && "\r" != l && (p += c(l)); else { "\\" == l && h("\\ not allowed in relative path."); if (F = n[p.toLowerCase()]) p = F; ".." == p ? (this.j.pop(), "/" != l && "\\" != l && this.j.push("")) : "." == p && "/" != l && "\\" != l ? this.j.push("") : "." != p && ("file" == this.g && 0 == this.j.length && 2 == p.length && r.test(p[0]) && "|" == p[1] && (p = p[0] + ":"), this.j.push(p)); p = ""; "?" == l ? (this.u = "?", k = "query") : "#" == l && (this.C = "#", k = "fragment") } break; case "query": e || "#" != l ? void 0 != l && "\t" != l && "\n" != l && "\r" != l && (this.u += + d(l)) : (this.C = "#", k = "fragment"); break; case "fragment": void 0 != l && "\t" != l && "\n" != l && "\r" != l && (this.C += l) + }v++ + } + } function f() { this.v = this.qa = this.g = ""; this.f = null; this.s = this.i = ""; this.j = []; this.C = this.u = ""; this.D = this.h = !1 } function g(a, b) { void 0 === b || b instanceof g || (b = new g(String(b))); this.Ra = a; f.call(this); a = a.replace(/^[ \t\r\n\f]+|[ \t\r\n\f]+$/g, ""); e.call(this, a, null, b) } var h = !1; if (!a.qb) try { var k = new URL("b", "http://a"); k.pathname = "c%20d"; h = "http://a/c%20d" === k.href } catch (v) { } if (!h) { + var m = Object.create(null); + m.ftp = 21; m.file = 0; m.gopher = 70; m.http = 80; m.https = 443; m.ws = 80; m.wss = 443; var n = Object.create(null); n["%2e"] = "."; n[".%2e"] = ".."; n["%2e."] = ".."; n["%2e%2e"] = ".."; var r = /[a-zA-Z]/, G = /[a-zA-Z0-9\+\-\.]/; g.prototype = { + toString: function () { return this.href }, get href() { if (this.h) return this.Ra; var a = ""; if ("" != this.v || null != this.f) a = this.v + (null != this.f ? ":" + this.f : "") + "@"; return this.protocol + (this.D ? "//" + a + this.host : "") + this.pathname + this.u + this.C }, set href(a) { f.call(this); e.call(this, a) }, get protocol() { + return this.g + + ":" + }, set protocol(a) { this.h || e.call(this, a + ":", "scheme start") }, get host() { return this.h ? "" : this.s ? this.i + ":" + this.s : this.i }, set host(a) { !this.h && this.D && e.call(this, a, "host") }, get hostname() { return this.i }, set hostname(a) { !this.h && this.D && e.call(this, a, "hostname") }, get port() { return this.s }, set port(a) { !this.h && this.D && e.call(this, a, "port") }, get pathname() { return this.h ? "" : this.D ? "/" + this.j.join("/") : this.qa }, set pathname(a) { !this.h && this.D && (this.j = [], e.call(this, a, "relative path start")) }, get search() { + return this.h || + !this.u || "?" == this.u ? "" : this.u + }, set search(a) { !this.h && this.D && (this.u = "?", "?" == a[0] && (a = a.slice(1)), e.call(this, a, "query")) }, get hash() { return this.h || !this.C || "#" == this.C ? "" : this.C }, set hash(a) { this.h || (this.C = "#", "#" == a[0] && (a = a.slice(1)), e.call(this, a, "fragment")) }, get origin() { var a; if (this.h || !this.g) return ""; switch (this.g) { case "data": case "file": case "javascript": case "mailto": return "null" }return (a = this.host) ? this.g + "://" + a : "" } + }; var x = a.URL; x && (g.createObjectURL = function (a) { + return x.createObjectURL.apply(x, + arguments) + }, g.revokeObjectURL = function (a) { x.revokeObjectURL(a) }); a.URL = g + } + })(window); var kh = {}, lh = Object.create, mh = Object.defineProperties, nh = Object.defineProperty; function Y(a, b) { b = void 0 === b ? {} : b; return { value: a, configurable: !!b.ya, writable: !!b.cb, enumerable: !!b.e } } var oh = void 0; try { oh = 1 === nh({}, "y", { get: function () { return 1 } }).y } catch (a) { oh = !1 } var ph = {}; function qh(a) { a = String(a); for (var b = "", c = 0; ph[a + b];)b = c += 1; ph[a + b] = 1; var d = "Symbol(" + a + "" + b + ")"; oh && nh(Object.prototype, d, { get: void 0, set: function (a) { nh(this, d, Y(a, { ya: !0, cb: !0 })) }, configurable: !0, enumerable: !1 }); return d } + var rh = lh(null); function Z(a) { if (this instanceof Z) throw new TypeError("Symbol is not a constructor"); a = void 0 === a ? "" : String(a); var b = qh(a); return oh ? lh(rh, { ua: Y(a), Ka: Y(b) }) : b } mh(Z, { "for": Y(function (a) { a = String(a); if (kh[a]) return kh[a]; var b = Z(a); return kh[a] = b }), keyFor: Y(function (a) { if (oh && (!a || "Symbol" !== a[Z.toStringTag])) throw new TypeError("" + a + " is not a symbol"); for (var b in kh) if (kh[b] === a) return oh ? kh[b].ua : kh[b].substr(7, kh[b].length - 8) }) }); + mh(Z, { ub: Y(Z("hasInstance")), vb: Y(Z("isConcatSpreadable")), iterator: Y(Z("iterator")), match: Y(Z("match")), replace: Y(Z("replace")), search: Y(Z("search")), Ab: Y(Z("species")), split: Y(Z("split")), Bb: Y(Z("toPrimitive")), toStringTag: Y(Z("toStringTag")), unscopables: Y(Z("unscopables")) }); mh(rh, { constructor: Y(Z), toString: Y(function () { return this.Ka }), valueOf: Y(function () { return "Symbol(" + this.ua + ")" }) }); oh && nh(rh, Z.toStringTag, Y("Symbol", { ya: !0 })); var sh = "function" === typeof Symbol ? Symbol : Z;/* Copyright (c) 2018 The Polymer Project Authors. All rights reserved. This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt @@ -225,11 +476,20 @@ The complete set of contributors may be found at http://polymer.github.io/CONTRI Code distributed by Google as part of the polymer project is also subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt */ -window.Symbol||(window.Symbol=sh,Array.prototype[sh.iterator]=function(){function a(a,e,h){for(;;)switch(b){case 0:c=0;case 1:if(!(c