From be3157f9c4c76cb9680d924411bc7b02d84954da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BD=95=E7=AB=A5=E5=B4=87?= <792998983@qq.com> Date: Wed, 28 Dec 2022 15:33:19 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E9=A1=B9=E7=9B=AE=E5=8A=A0?= =?UTF-8?q?=E8=BD=BD=E6=96=87=E4=BB=B6=EF=BC=8C=E5=90=88=E5=B9=B6css?= =?UTF-8?q?=E6=96=87=E4=BB=B6=EF=BC=8Creact=E8=B0=83=E7=94=A8cdn=E8=B5=84?= =?UTF-8?q?=E6=BA=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .babelrc | 2 +- config/env.js | 3 +- config/webpack.config.dev.js | 3 +- config/webpack.config.prod.js | 22 +- package-lock.json | 2254 ++++++++++++------------- package.json | 58 +- public/css/edu-purge.css | 2 +- public/css/gitlink.min.css | 1 + public/index.html | 18 +- public/js/react-dom.production.min.js | 239 +++ public/js/react.production.min.js | 32 + src/forge/Main/Detail.js | 5 +- 12 files changed, 1471 insertions(+), 1168 deletions(-) create mode 100644 public/css/gitlink.min.css create mode 100644 public/js/react-dom.production.min.js create mode 100644 public/js/react.production.min.js diff --git a/.babelrc b/.babelrc index 2062bfa3..09f1f3e1 100644 --- a/.babelrc +++ b/.babelrc @@ -1,6 +1,6 @@ { "presets": [ - "es2015", + "env", "react", "stage-2" ], diff --git a/config/env.js b/config/env.js index 8e68efe0..08942f23 100644 --- a/config/env.js +++ b/config/env.js @@ -60,7 +60,7 @@ process.env.NODE_PATH = (process.env.NODE_PATH || '') // injected into the application via DefinePlugin in Webpack configuration. const REACT_APP = /^REACT_APP_/i; -function getClientEnvironment(publicUrl) { +function getClientEnvironment(publicUrl,reactUrl) { const raw = Object.keys(process.env) .filter(key => REACT_APP.test(key)) .reduce( @@ -77,6 +77,7 @@ function getClientEnvironment(publicUrl) { // This should only be used as an escape hatch. Normally you would put // images into the `src` and `import` them in code to get their paths. PUBLIC_URL: publicUrl, + REACT_URL: reactUrl, } ); // Stringify all values so we can feed into Webpack DefinePlugin diff --git a/config/webpack.config.dev.js b/config/webpack.config.dev.js index 140a6e14..e95cffd1 100644 --- a/config/webpack.config.dev.js +++ b/config/webpack.config.dev.js @@ -15,7 +15,7 @@ const getClientEnvironment = require("./env"); const paths = require("./paths"); const publicPath = "/"; -const env = getClientEnvironment("/"); +const env = getClientEnvironment("/","development"); module.exports = { optimization: { @@ -270,6 +270,7 @@ module.exports = { new HtmlWebpackPlugin({ inject: false, template: paths.appHtml, + reactPath:'react.production.min.js', }), new InterpolateHtmlPlugin(HtmlWebpackPlugin, env.raw), diff --git a/config/webpack.config.prod.js b/config/webpack.config.prod.js index e7374751..e441901b 100644 --- a/config/webpack.config.prod.js +++ b/config/webpack.config.prod.js @@ -10,10 +10,9 @@ const SWPrecacheWebpackPlugin = require("sw-precache-webpack-plugin"); const eslintFormatter = require("react-dev-utils/eslintFormatter"); const ModuleScopePlugin = require("react-dev-utils/ModuleScopePlugin"); const MonacoWebpackPlugin = require("monaco-editor-webpack-plugin"); - const TerserJSPlugin = require("terser-webpack-plugin"); const OptimizeCSSAssetsPlugin = require("optimize-css-assets-webpack-plugin"); - +const TerserWebpackPlugin = require('terser-webpack-plugin'); const paths = require("./paths"); const getClientEnvironment = require("./env"); @@ -21,15 +20,27 @@ let publicPath = "/react/build/"; const publicUrl = publicPath.slice(0, -1); // const shouldUseSourceMap = process.env.GENERATE_SOURCEMAP !== "false"; const shouldUseSourceMap = process.env.NODE_ENV !== "production"; -const env = getClientEnvironment(publicPath); +const env = getClientEnvironment(publicPath,'production.min'); +const terserPlugin = new TerserWebpackPlugin({ + parallel: 4, + extractComments: true, + terserOptions: { + compress: { + warnings: false, + drop_console: true, + drop_debugger: true, + pure_funcs: ['console.log'] //移除console + } + } +}); // This is the production configuration. // It compiles slowly and is focused on producing a fast and minimal bundle. // The development configuration is different and lives in a separate file. // 上线用的 module.exports = { optimization: { - minimizer: [new TerserJSPlugin({}), new OptimizeCSSAssetsPlugin({})], + minimizer: [new TerserJSPlugin({}), new OptimizeCSSAssetsPlugin({}),terserPlugin], splitChunks: { chunks: "async", // 大于30KB才单独分离成chunk @@ -105,6 +116,7 @@ module.exports = { // please link the files into your node_modules/ and let module-resolution kick in. // Make sure your source files are compiled, as they will not be processed in any way. new ModuleScopePlugin(paths.appSrc, [paths.appPackageJson]), + // ["transform-remove-console"] ], }, module: { @@ -326,7 +338,7 @@ module.exports = { // Ignores URLs starting from /__ (useful for Firebase): // https://github.com/facebookincubator/create-react-app/issues/2237#issuecomment-302693219 navigateFallbackWhitelist: [/^(?!\/__).*/], - // Don't precache sourcemaps (they're large) and build asset manifest: + // Don't precache sourcemaps (they're large) and build asset manifest:f staticFileGlobsIgnorePatterns: [/\.map$/, /asset-manifest\.json$/], }), // Moment.js is an extremely popular library that bundles large locale files diff --git a/package-lock.json b/package-lock.json index df329d79..2fe52b99 100644 --- a/package-lock.json +++ b/package-lock.json @@ -6,7 +6,7 @@ "dependencies": { "@ahooksjs/use-request": { "version": "2.8.15", - "resolved": "http://173.15.15.82:8081/repository/npm-all/@ahooksjs/use-request/-/use-request-2.8.15.tgz", + "resolved": "https://registry.npmmirror.com/@ahooksjs/use-request/-/use-request-2.8.15.tgz", "integrity": "sha512-xhVaM4fyIiAMdVFuuU5i3CFUdFa/IblF+fvITVMFaUEO3w/V5tVCAF6WIA3T03n1/RPuzRkA7Ao1PFtSGtGelw==", "requires": { "lodash.debounce": "^4.0.8", @@ -15,7 +15,7 @@ }, "@ant-design/colors": { "version": "3.2.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/@ant-design/colors/-/colors-3.2.2.tgz", + "resolved": "https://registry.npmmirror.com/@ant-design/colors/-/colors-3.2.2.tgz", "integrity": "sha512-YKgNbG2dlzqMhA9NtI3/pbY16m3Yl/EeWBRa+lB1X1YaYxHrxNexiQYCLTWO/uDvAjLFMEDU+zR901waBtMtjQ==", "requires": { "tinycolor2": "^1.4.1" @@ -32,17 +32,17 @@ }, "@ant-design/css-animation": { "version": "1.7.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/@ant-design/css-animation/-/css-animation-1.7.3.tgz", + "resolved": "https://registry.npmmirror.com/@ant-design/css-animation/-/css-animation-1.7.3.tgz", "integrity": "sha512-LrX0OGZtW+W6iLnTAqnTaoIsRelYeuLZWsrmBJFUXDALQphPsN8cE5DCsmoSlL0QYb94BQxINiuS70Ar/8BNgA==" }, "@ant-design/icons": { "version": "2.1.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/@ant-design/icons/-/icons-2.1.1.tgz", + "resolved": "https://registry.npmmirror.com/@ant-design/icons/-/icons-2.1.1.tgz", "integrity": "sha512-jCH+k2Vjlno4YWl6g535nHR09PwCEmTBKAG6VqF+rhkrSPRLfgpU2maagwbZPLjaHuU5Jd1DFQ2KJpQuI6uG8w==" }, "@ant-design/icons-react": { "version": "2.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/@ant-design/icons-react/-/icons-react-2.0.1.tgz", + "resolved": "https://registry.npmmirror.com/@ant-design/icons-react/-/icons-react-2.0.1.tgz", "integrity": "sha512-r1QfoltMuruJZqdiKcbPim3d8LNsVPB733U0gZEUSxBLuqilwsW28K2rCTWSMTjmFX7Mfpf+v/wdiFe/XCqThw==", "requires": { "@ant-design/colors": "^3.1.0", @@ -51,7 +51,7 @@ }, "@antv/adjust": { "version": "0.1.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/@antv/adjust/-/adjust-0.1.1.tgz", + "resolved": "https://registry.npmmirror.com/@antv/adjust/-/adjust-0.1.1.tgz", "integrity": "sha512-9FaMOyBlM4AgoRL0b5o0VhEKAYkexBNUrxV8XmpHU/9NBPJONBOB/NZUlQDqxtLItrt91tCfbAuMQmF529UX2Q==", "requires": { "@antv/util": "~1.3.1" @@ -59,7 +59,7 @@ }, "@antv/attr": { "version": "0.1.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/@antv/attr/-/attr-0.1.2.tgz", + "resolved": "https://registry.npmmirror.com/@antv/attr/-/attr-0.1.2.tgz", "integrity": "sha512-QXjP+T2I+pJQcwZx1oCA4tipG43vgeCeKcGGKahlcxb71OBAzjJZm1QbF4frKXcnOqRkxVXtCr70X9TRair3Ew==", "requires": { "@antv/util": "~1.3.1" @@ -78,7 +78,7 @@ }, "@antv/coord": { "version": "0.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/@antv/coord/-/coord-0.1.0.tgz", + "resolved": "https://registry.npmmirror.com/@antv/coord/-/coord-0.1.0.tgz", "integrity": "sha512-W1R8h3Jfb3AfMBVfCreFPMVetgEYuwHBIGn0+d3EgYXe2ckOF8XWjkpGF1fZhOMHREMr+Gt27NGiQh8yBdLUgg==", "requires": { "@antv/util": "~1.3.1" @@ -115,12 +115,12 @@ }, "@antv/gl-matrix": { "version": "2.7.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/@antv/gl-matrix/-/gl-matrix-2.7.1.tgz", + "resolved": "https://registry.npmmirror.com/@antv/gl-matrix/-/gl-matrix-2.7.1.tgz", "integrity": "sha512-oOWcVNlpELIKi9x+Mm1Vwbz8pXfkbJKykoCIOJ/dNK79hSIANbpXJ5d3Rra9/wZqK6MC961B7sybFhPlLraT3Q==" }, "@antv/scale": { "version": "0.1.5", - "resolved": "http://173.15.15.82:8081/repository/npm-all/@antv/scale/-/scale-0.1.5.tgz", + "resolved": "https://registry.npmmirror.com/@antv/scale/-/scale-0.1.5.tgz", "integrity": "sha512-7RAu4iH5+Hk21h6+aBMiDTfmLf4IibK2SWjx/+E4f4AXRpqucO+8u7IbZdFkakAWxvqhJtN3oePJuTKqOMcmlg==", "requires": { "@antv/util": "~1.3.1", @@ -129,7 +129,7 @@ }, "@antv/util": { "version": "1.3.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/@antv/util/-/util-1.3.1.tgz", + "resolved": "https://registry.npmmirror.com/@antv/util/-/util-1.3.1.tgz", "integrity": "sha512-cbUta0hIJrKEaW3eKoGarz3Ita+9qUPF2YzTj8A6wds/nNiy20G26ztIWHU+5ThLc13B1n5Ik52LbaCaeg9enA==", "requires": { "@antv/gl-matrix": "^2.7.1" @@ -137,7 +137,7 @@ }, "@babel/code-frame": { "version": "7.5.5", - "resolved": "http://173.15.15.82:8081/repository/npm-all/@babel/code-frame/-/code-frame-7.5.5.tgz", + "resolved": "https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.5.5.tgz", "integrity": "sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw==", "requires": { "@babel/highlight": "^7.0.0" @@ -155,7 +155,7 @@ "dependencies": { "jsesc": { "version": "2.5.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/jsesc/-/jsesc-2.5.2.tgz", + "resolved": "https://registry.npmmirror.com/jsesc/-/jsesc-2.5.2.tgz", "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" }, "source-map": { @@ -232,7 +232,7 @@ "dependencies": { "chalk": { "version": "2.4.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/chalk/-/chalk-2.4.2.tgz", + "resolved": "https://registry.npmmirror.com/chalk/-/chalk-2.4.2.tgz", "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "requires": { "ansi-styles": "^3.2.1", @@ -327,12 +327,12 @@ }, "globals": { "version": "11.12.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/globals/-/globals-11.12.0.tgz", + "resolved": "https://registry.npmmirror.com/globals/-/globals-11.12.0.tgz", "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" }, "ms": { "version": "2.1.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/ms/-/ms-2.1.2.tgz", + "resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" } } @@ -355,7 +355,7 @@ }, "@emotion/is-prop-valid": { "version": "0.8.8", - "resolved": "http://173.15.15.82:8081/repository/npm-all/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz", + "resolved": "https://registry.npmmirror.com/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz", "integrity": "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==", "requires": { "@emotion/memoize": "0.7.4" @@ -363,17 +363,17 @@ }, "@emotion/memoize": { "version": "0.7.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/@emotion/memoize/-/memoize-0.7.4.tgz", + "resolved": "https://registry.npmmirror.com/@emotion/memoize/-/memoize-0.7.4.tgz", "integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==" }, "@emotion/unitless": { "version": "0.7.5", - "resolved": "http://173.15.15.82:8081/repository/npm-all/@emotion/unitless/-/unitless-0.7.5.tgz", + "resolved": "https://registry.npmmirror.com/@emotion/unitless/-/unitless-0.7.5.tgz", "integrity": "sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==" }, "@hypnosphi/create-react-context": { "version": "0.3.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/@hypnosphi/create-react-context/-/create-react-context-0.3.1.tgz", + "resolved": "https://registry.npmmirror.com/@hypnosphi/create-react-context/-/create-react-context-0.3.1.tgz", "integrity": "sha512-V1klUed202XahrWJLLOT3EXNeCpFHCcJntdFGI15ntCwau+jfT386w7OFTMaCqOgXUH1fa0w/I1oZs+i/Rfr0A==", "requires": { "gud": "^1.0.0", @@ -382,17 +382,17 @@ }, "@icons/material": { "version": "0.2.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/@icons/material/-/material-0.2.4.tgz", + "resolved": "https://registry.npmmirror.com/@icons/material/-/material-0.2.4.tgz", "integrity": "sha512-QPcGmICAPbGLGb6F/yNf/KzKqvFx8z5qx3D1yFqVAjoFmXK35EgyW+cJ57Te3CNsmzblwtzakLGFqHPqrfb4Tw==" }, "@monaco-editor/react": { "version": "2.6.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/@monaco-editor/react/-/react-2.6.1.tgz", + "resolved": "https://registry.npmmirror.com/@monaco-editor/react/-/react-2.6.1.tgz", "integrity": "sha512-nppV3QtwKh2c+J8Mdw/YZhHkdNTGmhwnkG824wSq3QiyOyfPKbThIWxkuRa2L8gcmWy0RLlIzJfQzLFeXyf1/w==" }, "@mrmlnc/readdir-enhanced": { "version": "2.2.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz", + "resolved": "https://registry.npmmirror.com/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz", "integrity": "sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==", "requires": { "call-me-maybe": "^1.0.1", @@ -401,7 +401,7 @@ }, "@nodelib/fs.stat": { "version": "1.1.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz", + "resolved": "https://registry.npmmirror.com/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz", "integrity": "sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==" }, "@novnc/novnc": { @@ -411,7 +411,7 @@ }, "@tootallnate/once": { "version": "1.1.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/@tootallnate/once/-/once-1.1.2.tgz", + "resolved": "https://registry.npmmirror.com/@tootallnate/once/-/once-1.1.2.tgz", "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==" }, "@types/glob": { @@ -426,13 +426,13 @@ }, "@types/html-minifier-terser": { "version": "5.1.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/@types/html-minifier-terser/-/html-minifier-terser-5.1.2.tgz", + "resolved": "https://registry.npmmirror.com/@types/html-minifier-terser/-/html-minifier-terser-5.1.2.tgz", "integrity": "sha512-h4lTMgMJctJybDp8CQrxTUiiYmedihHWkjnF/8Pxseu2S6Nlfcy8kwboQ8yejh456rP2yWoEVm1sS/FVsfM48w==", "dev": true }, "@types/js-cookie": { "version": "2.2.7", - "resolved": "http://173.15.15.82:8081/repository/npm-all/@types/js-cookie/-/js-cookie-2.2.7.tgz", + "resolved": "https://registry.npmmirror.com/@types/js-cookie/-/js-cookie-2.2.7.tgz", "integrity": "sha512-aLkWa0C0vO5b4Sr798E26QgOkss68Un0bLjs7u9qxzPT5CG+8DuNTffWES58YzJs3hrVAOs1wonycqEBqNJubA==" }, "@types/json-schema": { @@ -443,7 +443,7 @@ }, "@types/jss": { "version": "9.5.8", - "resolved": "http://173.15.15.82:8081/repository/npm-all/@types/jss/-/jss-9.5.8.tgz", + "resolved": "https://registry.npmmirror.com/@types/jss/-/jss-9.5.8.tgz", "integrity": "sha512-bBbHvjhm42UKki+wZpR89j73ykSXg99/bhuKuYYePtpma3ZAnmeGnl0WxXiZhPGsIfzKwCUkpPC0jlrVMBfRxA==", "requires": { "csstype": "^2.0.0", @@ -476,7 +476,7 @@ }, "@types/q": { "version": "1.5.5", - "resolved": "http://173.15.15.82:8081/repository/npm-all/@types/q/-/q-1.5.5.tgz", + "resolved": "https://registry.npmmirror.com/@types/q/-/q-1.5.5.tgz", "integrity": "sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ==", "dev": true }, @@ -500,7 +500,7 @@ }, "@types/react-transition-group": { "version": "2.9.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/@types/react-transition-group/-/react-transition-group-2.9.2.tgz", + "resolved": "https://registry.npmmirror.com/@types/react-transition-group/-/react-transition-group-2.9.2.tgz", "integrity": "sha512-5Fv2DQNO+GpdPZcxp2x/OQG/H19A01WlmpjVD9cKvVFmoVLOZ9LvBgSWG6pSXIU4og5fgbvGPaCV5+VGkWAEHA==", "requires": { "@types/react": "*" @@ -508,18 +508,18 @@ }, "@types/scheduler": { "version": "0.16.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/@types/scheduler/-/scheduler-0.16.2.tgz", + "resolved": "https://registry.npmmirror.com/@types/scheduler/-/scheduler-0.16.2.tgz", "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==" }, "@types/source-list-map": { "version": "0.1.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/@types/source-list-map/-/source-list-map-0.1.2.tgz", + "resolved": "https://registry.npmmirror.com/@types/source-list-map/-/source-list-map-0.1.2.tgz", "integrity": "sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==", "dev": true }, "@types/tapable": { "version": "1.0.8", - "resolved": "http://173.15.15.82:8081/repository/npm-all/@types/tapable/-/tapable-1.0.8.tgz", + "resolved": "https://registry.npmmirror.com/@types/tapable/-/tapable-1.0.8.tgz", "integrity": "sha512-ipixuVrh2OdNmauvtT51o3d8z12p6LtFW9in7U79der/kwejjdNchQC5UMn5u/KxNoM7VHHOs/l8KS8uHxhODQ==", "dev": true }, @@ -548,7 +548,7 @@ }, "@types/webpack-sources": { "version": "3.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/@types/webpack-sources/-/webpack-sources-3.2.0.tgz", + "resolved": "https://registry.npmmirror.com/@types/webpack-sources/-/webpack-sources-3.2.0.tgz", "integrity": "sha512-Ft7YH3lEVRQ6ls8k4Ff1oB4jN6oy/XmU6tQISKdhfh+1mR+viZFphS6WL0IrtDOzvefmJg5a0s7ZQoRXwqTEFg==", "dev": true, "requires": { @@ -567,7 +567,7 @@ }, "@webassemblyjs/ast": { "version": "1.9.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/@webassemblyjs/ast/-/ast-1.9.0.tgz", + "resolved": "https://registry.npmmirror.com/@webassemblyjs/ast/-/ast-1.9.0.tgz", "integrity": "sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==", "dev": true, "requires": { @@ -578,25 +578,25 @@ }, "@webassemblyjs/floating-point-hex-parser": { "version": "1.9.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz", + "resolved": "https://registry.npmmirror.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz", "integrity": "sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==", "dev": true }, "@webassemblyjs/helper-api-error": { "version": "1.9.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz", + "resolved": "https://registry.npmmirror.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz", "integrity": "sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==", "dev": true }, "@webassemblyjs/helper-buffer": { "version": "1.9.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz", + "resolved": "https://registry.npmmirror.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz", "integrity": "sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==", "dev": true }, "@webassemblyjs/helper-code-frame": { "version": "1.9.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz", + "resolved": "https://registry.npmmirror.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz", "integrity": "sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==", "dev": true, "requires": { @@ -605,13 +605,13 @@ }, "@webassemblyjs/helper-fsm": { "version": "1.9.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz", + "resolved": "https://registry.npmmirror.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz", "integrity": "sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==", "dev": true }, "@webassemblyjs/helper-module-context": { "version": "1.9.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz", + "resolved": "https://registry.npmmirror.com/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz", "integrity": "sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==", "dev": true, "requires": { @@ -620,13 +620,13 @@ }, "@webassemblyjs/helper-wasm-bytecode": { "version": "1.9.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz", + "resolved": "https://registry.npmmirror.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz", "integrity": "sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==", "dev": true }, "@webassemblyjs/helper-wasm-section": { "version": "1.9.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz", + "resolved": "https://registry.npmmirror.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz", "integrity": "sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==", "dev": true, "requires": { @@ -638,7 +638,7 @@ }, "@webassemblyjs/ieee754": { "version": "1.9.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz", + "resolved": "https://registry.npmmirror.com/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz", "integrity": "sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==", "dev": true, "requires": { @@ -647,7 +647,7 @@ }, "@webassemblyjs/leb128": { "version": "1.9.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/@webassemblyjs/leb128/-/leb128-1.9.0.tgz", + "resolved": "https://registry.npmmirror.com/@webassemblyjs/leb128/-/leb128-1.9.0.tgz", "integrity": "sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==", "dev": true, "requires": { @@ -656,13 +656,13 @@ }, "@webassemblyjs/utf8": { "version": "1.9.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/@webassemblyjs/utf8/-/utf8-1.9.0.tgz", + "resolved": "https://registry.npmmirror.com/@webassemblyjs/utf8/-/utf8-1.9.0.tgz", "integrity": "sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==", "dev": true }, "@webassemblyjs/wasm-edit": { "version": "1.9.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz", + "resolved": "https://registry.npmmirror.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz", "integrity": "sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==", "dev": true, "requires": { @@ -678,7 +678,7 @@ }, "@webassemblyjs/wasm-gen": { "version": "1.9.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz", + "resolved": "https://registry.npmmirror.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz", "integrity": "sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==", "dev": true, "requires": { @@ -691,7 +691,7 @@ }, "@webassemblyjs/wasm-opt": { "version": "1.9.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz", + "resolved": "https://registry.npmmirror.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz", "integrity": "sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==", "dev": true, "requires": { @@ -703,7 +703,7 @@ }, "@webassemblyjs/wasm-parser": { "version": "1.9.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz", + "resolved": "https://registry.npmmirror.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz", "integrity": "sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==", "dev": true, "requires": { @@ -717,7 +717,7 @@ }, "@webassemblyjs/wast-parser": { "version": "1.9.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz", + "resolved": "https://registry.npmmirror.com/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz", "integrity": "sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==", "dev": true, "requires": { @@ -731,7 +731,7 @@ }, "@webassemblyjs/wast-printer": { "version": "1.9.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz", + "resolved": "https://registry.npmmirror.com/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz", "integrity": "sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==", "dev": true, "requires": { @@ -742,13 +742,13 @@ }, "@xtuc/ieee754": { "version": "1.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "resolved": "https://registry.npmmirror.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz", "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", "dev": true }, "@xtuc/long": { "version": "4.2.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/@xtuc/long/-/long-4.2.2.tgz", + "resolved": "https://registry.npmmirror.com/@xtuc/long/-/long-4.2.2.tgz", "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", "dev": true }, @@ -759,7 +759,7 @@ }, "abbrev": { "version": "1.1.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/abbrev/-/abbrev-1.1.1.tgz", + "resolved": "https://registry.npmmirror.com/abbrev/-/abbrev-1.1.1.tgz", "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", "dev": true }, @@ -813,7 +813,7 @@ }, "acorn-walk": { "version": "7.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/acorn-walk/-/acorn-walk-7.2.0.tgz", + "resolved": "https://registry.npmmirror.com/acorn-walk/-/acorn-walk-7.2.0.tgz", "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==" }, "actioncable": { @@ -823,7 +823,7 @@ }, "add-dom-event-listener": { "version": "1.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/add-dom-event-listener/-/add-dom-event-listener-1.1.0.tgz", + "resolved": "https://registry.npmmirror.com/add-dom-event-listener/-/add-dom-event-listener-1.1.0.tgz", "integrity": "sha512-WCxx1ixHT0GQU9hb0KI/mhgRQhnU+U3GvwY6ZvVjYq8rsihIGoaIOUbY0yMPBxLH5MDtr0kz3fisWGNcbWW7Jw==", "requires": { "object-assign": "4.x" @@ -831,12 +831,12 @@ }, "address": { "version": "1.1.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/address/-/address-1.1.2.tgz", + "resolved": "https://registry.npmmirror.com/address/-/address-1.1.2.tgz", "integrity": "sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==" }, "agent-base": { "version": "6.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/agent-base/-/agent-base-6.0.2.tgz", + "resolved": "https://registry.npmmirror.com/agent-base/-/agent-base-6.0.2.tgz", "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", "requires": { "debug": "4" @@ -852,14 +852,14 @@ }, "ms": { "version": "2.1.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/ms/-/ms-2.1.2.tgz", + "resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" } } }, "aggregate-error": { "version": "3.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/aggregate-error/-/aggregate-error-3.1.0.tgz", + "resolved": "https://registry.npmmirror.com/aggregate-error/-/aggregate-error-3.1.0.tgz", "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", "dev": true, "requires": { @@ -869,7 +869,7 @@ "dependencies": { "indent-string": { "version": "4.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/indent-string/-/indent-string-4.0.0.tgz", + "resolved": "https://registry.npmmirror.com/indent-string/-/indent-string-4.0.0.tgz", "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", "dev": true } @@ -877,7 +877,7 @@ }, "ahooks": { "version": "2.10.14", - "resolved": "http://173.15.15.82:8081/repository/npm-all/ahooks/-/ahooks-2.10.14.tgz", + "resolved": "https://registry.npmmirror.com/ahooks/-/ahooks-2.10.14.tgz", "integrity": "sha512-axWa7VoAgu7bxA56dDl0CXW4rvaQmDBiov/d3tAy0x1YNYywYMKokL8TdLgJ5zO/oXGiWmG7BxlGOQGkqE/zkQ==", "requires": { "@ahooksjs/use-request": "^2.8.14", @@ -894,7 +894,7 @@ }, "ajv": { "version": "6.12.6", - "resolved": "http://173.15.15.82:8081/repository/npm-all/ajv/-/ajv-6.12.6.tgz", + "resolved": "https://registry.npmmirror.com/ajv/-/ajv-6.12.6.tgz", "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "requires": { "fast-deep-equal": "^3.1.1", @@ -905,12 +905,12 @@ }, "ajv-errors": { "version": "1.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/ajv-errors/-/ajv-errors-1.0.1.tgz", + "resolved": "https://registry.npmmirror.com/ajv-errors/-/ajv-errors-1.0.1.tgz", "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==" }, "ajv-keywords": { "version": "3.5.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "resolved": "https://registry.npmmirror.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz", "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==" }, "align-text": { @@ -945,7 +945,7 @@ }, "ansi-colors": { "version": "3.2.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/ansi-colors/-/ansi-colors-3.2.4.tgz", + "resolved": "https://registry.npmmirror.com/ansi-colors/-/ansi-colors-3.2.4.tgz", "integrity": "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==", "dev": true }, @@ -967,7 +967,7 @@ }, "ansi-styles": { "version": "3.2.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/ansi-styles/-/ansi-styles-3.2.1.tgz", + "resolved": "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-3.2.1.tgz", "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "requires": { "color-convert": "^1.9.0" @@ -975,7 +975,7 @@ }, "antd": { "version": "3.26.20", - "resolved": "http://173.15.15.82:8081/repository/npm-all/antd/-/antd-3.26.20.tgz", + "resolved": "https://registry.npmmirror.com/antd/-/antd-3.26.20.tgz", "integrity": "sha512-VIous4ofZfxFtd9K1h9MpRX2sDDpj3QcOFi3YgIc9B/uyDli/GlLb8SWKfQfJaMkaxwatIv503dag2Tog+hiEg==", "requires": { "@ant-design/create-react-context": "^0.2.4", @@ -1036,12 +1036,12 @@ "dependencies": { "classnames": { "version": "2.2.6", - "resolved": "http://173.15.15.82:8081/repository/npm-all/classnames/-/classnames-2.2.6.tgz", + "resolved": "https://registry.npmmirror.com/classnames/-/classnames-2.2.6.tgz", "integrity": "sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q==" }, "raf": { "version": "3.4.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/raf/-/raf-3.4.1.tgz", + "resolved": "https://registry.npmmirror.com/raf/-/raf-3.4.1.tgz", "integrity": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==", "requires": { "performance-now": "^2.1.0" @@ -1049,7 +1049,7 @@ }, "rc-pagination": { "version": "1.20.15", - "resolved": "http://173.15.15.82:8081/repository/npm-all/rc-pagination/-/rc-pagination-1.20.15.tgz", + "resolved": "https://registry.npmmirror.com/rc-pagination/-/rc-pagination-1.20.15.tgz", "integrity": "sha512-/Xr4/3GOa1DtL8iCYl7qRUroEMrRDhZiiuHwcVFfSiwa9LYloMlUWcOJsnr8LN6A7rLPdm3/CHStUNeYd+2pKw==", "requires": { "babel-runtime": "6.x", @@ -1060,7 +1060,7 @@ }, "rc-rate": { "version": "2.5.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/rc-rate/-/rc-rate-2.5.1.tgz", + "resolved": "https://registry.npmmirror.com/rc-rate/-/rc-rate-2.5.1.tgz", "integrity": "sha512-3iJkNJT8xlHklPCdeZtUZmJmRVUbr6AHRlfSsztfYTXVlHrv2TcPn3XkHsH+12j812WVB7gvilS2j3+ffjUHXg==", "requires": { "classnames": "^2.2.5", @@ -1071,7 +1071,7 @@ }, "rc-select": { "version": "9.2.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/rc-select/-/rc-select-9.2.3.tgz", + "resolved": "https://registry.npmmirror.com/rc-select/-/rc-select-9.2.3.tgz", "integrity": "sha512-WhswxOMWiNnkXRbxyrj0kiIvyCfo/BaRPaYbsDetSIAU2yEDwKHF798blCP5u86KLOBKBvtxWLFCkSsQw1so5w==", "requires": { "babel-runtime": "^6.23.0", @@ -1090,7 +1090,7 @@ }, "rc-tree": { "version": "2.1.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/rc-tree/-/rc-tree-2.1.4.tgz", + "resolved": "https://registry.npmmirror.com/rc-tree/-/rc-tree-2.1.4.tgz", "integrity": "sha512-Xey794Iavgs8YldFlXcZLOhfcIhlX5Oz/yfKufknBXf2AlZCOkc7aHqSM9uTF7fBPtTGPhPxNEfOqHfY7b7xng==", "requires": { "@ant-design/create-react-context": "^0.2.4", @@ -1104,7 +1104,7 @@ }, "react-slick": { "version": "0.25.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/react-slick/-/react-slick-0.25.2.tgz", + "resolved": "https://registry.npmmirror.com/react-slick/-/react-slick-0.25.2.tgz", "integrity": "sha512-8MNH/NFX/R7zF6W/w+FS5VXNyDusF+XDW1OU0SzODEU7wqYB+ZTGAiNJ++zVNAVqCAHdyCybScaUB+FCZOmBBw==", "requires": { "classnames": "^2.2.5", @@ -1144,7 +1144,7 @@ }, "aproba": { "version": "1.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/aproba/-/aproba-1.2.0.tgz", + "resolved": "https://registry.npmmirror.com/aproba/-/aproba-1.2.0.tgz", "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", "dev": true }, @@ -1160,7 +1160,7 @@ }, "argparse": { "version": "1.0.10", - "resolved": "http://173.15.15.82:8081/repository/npm-all/argparse/-/argparse-1.0.10.tgz", + "resolved": "https://registry.npmmirror.com/argparse/-/argparse-1.0.10.tgz", "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", "requires": { "sprintf-js": "~1.0.2" @@ -1186,7 +1186,7 @@ }, "arr-flatten": { "version": "1.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/arr-flatten/-/arr-flatten-1.1.0.tgz", + "resolved": "https://registry.npmmirror.com/arr-flatten/-/arr-flatten-1.1.0.tgz", "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==" }, "arr-union": { @@ -1207,7 +1207,7 @@ }, "array-flatten": { "version": "2.1.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/array-flatten/-/array-flatten-2.1.2.tgz", + "resolved": "https://registry.npmmirror.com/array-flatten/-/array-flatten-2.1.2.tgz", "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==" }, "array-includes": { @@ -1225,7 +1225,7 @@ }, "array-tree-filter": { "version": "2.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/array-tree-filter/-/array-tree-filter-2.1.0.tgz", + "resolved": "https://registry.npmmirror.com/array-tree-filter/-/array-tree-filter-2.1.0.tgz", "integrity": "sha512-4ROwICNlNw/Hqa9v+rk5h22KjmzB1JGTMVKP2AKJBOCgb0yL0ASf0+YvCcLNNwquOHNX48jkeZIJ3a+oOQqKcw==" }, "array-union": { @@ -1266,7 +1266,7 @@ }, "asn1.js": { "version": "5.4.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/asn1.js/-/asn1.js-5.4.1.tgz", + "resolved": "https://registry.npmmirror.com/asn1.js/-/asn1.js-5.4.1.tgz", "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", "dev": true, "requires": { @@ -1278,7 +1278,7 @@ "dependencies": { "bn.js": { "version": "4.12.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/bn.js/-/bn.js-4.12.0.tgz", + "resolved": "https://registry.npmmirror.com/bn.js/-/bn.js-4.12.0.tgz", "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", "dev": true } @@ -1286,7 +1286,7 @@ }, "assert": { "version": "1.5.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/assert/-/assert-1.5.0.tgz", + "resolved": "https://registry.npmmirror.com/assert/-/assert-1.5.0.tgz", "integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==", "dev": true, "requires": { @@ -1337,7 +1337,7 @@ }, "async-each": { "version": "1.0.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/async-each/-/async-each-1.0.3.tgz", + "resolved": "https://registry.npmmirror.com/async-each/-/async-each-1.0.3.tgz", "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==" }, "async-foreach": { @@ -1348,13 +1348,13 @@ }, "async-limiter": { "version": "1.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/async-limiter/-/async-limiter-1.0.1.tgz", + "resolved": "https://registry.npmmirror.com/async-limiter/-/async-limiter-1.0.1.tgz", "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==", "dev": true }, "async-validator": { "version": "1.11.5", - "resolved": "http://173.15.15.82:8081/repository/npm-all/async-validator/-/async-validator-1.11.5.tgz", + "resolved": "https://registry.npmmirror.com/async-validator/-/async-validator-1.11.5.tgz", "integrity": "sha512-XNtCsMAeAH1pdLMEg1z8/Bb3a8cdCbui9QbJATRFHHHW5kT6+NPI3zSVQUXgikTFITzsg+kYY5NTWhM2Orwt9w==" }, "asynckit": { @@ -1364,12 +1364,12 @@ }, "atob": { "version": "2.1.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/atob/-/atob-2.1.2.tgz", + "resolved": "https://registry.npmmirror.com/atob/-/atob-2.1.2.tgz", "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==" }, "autoprefixer": { "version": "7.1.6", - "resolved": "http://173.15.15.82:8081/repository/npm-all/autoprefixer/-/autoprefixer-7.1.6.tgz", + "resolved": "https://registry.npmmirror.com/autoprefixer/-/autoprefixer-7.1.6.tgz", "integrity": "sha512-C9yv/UF3X+eJTi/zvfxuyfxmLibYrntpF3qoJYrMeQwgUJOZrZvpJiMG2FMQ3qnhWtF/be4pYONBBw95ZGe3vA==", "requires": { "browserslist": "^2.5.1", @@ -1387,12 +1387,12 @@ }, "aws4": { "version": "1.11.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/aws4/-/aws4-1.11.0.tgz", + "resolved": "https://registry.npmmirror.com/aws4/-/aws4-1.11.0.tgz", "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==" }, "axios": { "version": "0.24.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/axios/-/axios-0.24.0.tgz", + "resolved": "https://registry.npmmirror.com/axios/-/axios-0.24.0.tgz", "integrity": "sha512-Q6cWsys88HoPgAaFAVUb0WpPk0O8iTeisR9IMqy9G8AbO4NlpVknrnQS03zzF9PGAWgO3cgletO3VjV/P7VztA==", "requires": { "follow-redirects": "^1.14.4" @@ -1493,7 +1493,7 @@ }, "babel-core": { "version": "6.26.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/babel-core/-/babel-core-6.26.3.tgz", + "resolved": "https://registry.npmmirror.com/babel-core/-/babel-core-6.26.3.tgz", "integrity": "sha512-6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA==", "requires": { "babel-code-frame": "^6.26.0", @@ -1546,7 +1546,7 @@ }, "babel-generator": { "version": "6.26.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/babel-generator/-/babel-generator-6.26.1.tgz", + "resolved": "https://registry.npmmirror.com/babel-generator/-/babel-generator-6.26.1.tgz", "integrity": "sha512-HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA==", "requires": { "babel-messages": "^6.23.0", @@ -1748,7 +1748,7 @@ }, "babel-loader": { "version": "7.1.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/babel-loader/-/babel-loader-7.1.2.tgz", + "resolved": "https://registry.npmmirror.com/babel-loader/-/babel-loader-7.1.2.tgz", "integrity": "sha512-jRwlFbINAeyDStqK6Dd5YuY0k5YuzQUvlz2ZamuXrXmxav3pNqe9vfJ402+2G+OmlJSXxCOpB6Uz0INM7RQe2A==", "dev": true, "requires": { @@ -1776,7 +1776,7 @@ }, "babel-plugin-dynamic-import-node": { "version": "1.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-1.1.0.tgz", + "resolved": "https://registry.npmmirror.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-1.1.0.tgz", "integrity": "sha512-tTfZbM9Ecwj3GK50mnPrUpinTwA4xXmDiQGCk/aBYbvl1+X8YqldK86wZ1owVJ4u3mrKbRlXMma80J18qwiaTQ==", "dev": true, "requires": { @@ -1814,7 +1814,7 @@ }, "babel-plugin-istanbul": { "version": "4.1.6", - "resolved": "http://173.15.15.82:8081/repository/npm-all/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.6.tgz", + "resolved": "https://registry.npmmirror.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.6.tgz", "integrity": "sha512-PWP9FQ1AhZhS01T/4qLSKoHGY/xvkZdVBGlKM/HuxxS3+sC66HhTNR7+MpbO/so/cz/wY94MeSWJuP1hXIPfwQ==", "requires": { "babel-plugin-syntax-object-rest-spread": "^6.13.0", @@ -1946,7 +1946,7 @@ }, "babel-plugin-transform-decorators-legacy": { "version": "1.3.5", - "resolved": "http://173.15.15.82:8081/repository/npm-all/babel-plugin-transform-decorators-legacy/-/babel-plugin-transform-decorators-legacy-1.3.5.tgz", + "resolved": "https://registry.npmmirror.com/babel-plugin-transform-decorators-legacy/-/babel-plugin-transform-decorators-legacy-1.3.5.tgz", "integrity": "sha512-jYHwjzRXRelYQ1uGm353zNzf3QmtdCfvJbuYTZ4gKveK7M9H1fs3a5AKdY1JUDl0z97E30ukORW1dzhWvsabtA==", "dev": true, "requires": { @@ -2074,7 +2074,7 @@ }, "babel-plugin-transform-es2015-modules-commonjs": { "version": "6.26.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz", + "resolved": "https://registry.npmmirror.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz", "integrity": "sha512-CV9ROOHEdrjcwhIaJNBGMBCodN+1cfkwtM1SbUHmvyy35KGT7fohbpOxkE2uLz1o6odKK2Ck/tz47z+VqQfi9Q==", "dev": true, "requires": { @@ -2318,7 +2318,7 @@ }, "babel-preset-env": { "version": "1.6.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/babel-preset-env/-/babel-preset-env-1.6.1.tgz", + "resolved": "https://registry.npmmirror.com/babel-preset-env/-/babel-preset-env-1.6.1.tgz", "integrity": "sha512-W6VIyA6Ch9ePMI7VptNn2wBM6dbG0eSz25HEiL40nQXCsXGTGZSTZu1Iap+cj3Q0S5a7T9+529l/5Bkvd+afNA==", "dev": true, "requires": { @@ -2419,7 +2419,7 @@ }, "babel-preset-react-app": { "version": "3.1.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/babel-preset-react-app/-/babel-preset-react-app-3.1.2.tgz", + "resolved": "https://registry.npmmirror.com/babel-preset-react-app/-/babel-preset-react-app-3.1.2.tgz", "integrity": "sha512-/sh5Qd5T08PYa6t4kuCdKh9tXp6/m/Jwyx7PJTqugsYMfsDUJMlBXOs5EwFODHprzjWrmQ0SydnMZu9FY4MZYg==", "dev": true, "requires": { @@ -2537,17 +2537,17 @@ }, "babylon": { "version": "6.18.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/babylon/-/babylon-6.18.0.tgz", + "resolved": "https://registry.npmmirror.com/babylon/-/babylon-6.18.0.tgz", "integrity": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==" }, "balanced-match": { "version": "1.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/balanced-match/-/balanced-match-1.0.2.tgz", + "resolved": "https://registry.npmmirror.com/balanced-match/-/balanced-match-1.0.2.tgz", "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" }, "base": { "version": "0.11.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/base/-/base-0.11.2.tgz", + "resolved": "https://registry.npmmirror.com/base/-/base-0.11.2.tgz", "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", "requires": { "cache-base": "^1.0.1", @@ -2569,7 +2569,7 @@ }, "is-accessor-descriptor": { "version": "1.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "resolved": "https://registry.npmmirror.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", "requires": { "kind-of": "^6.0.0" @@ -2577,7 +2577,7 @@ }, "is-data-descriptor": { "version": "1.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "resolved": "https://registry.npmmirror.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", "requires": { "kind-of": "^6.0.0" @@ -2585,7 +2585,7 @@ }, "is-descriptor": { "version": "1.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-descriptor/-/is-descriptor-1.0.2.tgz", + "resolved": "https://registry.npmmirror.com/is-descriptor/-/is-descriptor-1.0.2.tgz", "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", "requires": { "is-accessor-descriptor": "^1.0.0", @@ -2600,20 +2600,20 @@ }, "kind-of": { "version": "6.0.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/kind-of/-/kind-of-6.0.3.tgz", + "resolved": "https://registry.npmmirror.com/kind-of/-/kind-of-6.0.3.tgz", "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" } } }, "base16": { "version": "1.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/base16/-/base16-1.0.0.tgz", + "resolved": "https://registry.npmmirror.com/base16/-/base16-1.0.0.tgz", "integrity": "sha512-pNdYkNPiJUnEhnfXV56+sQy8+AaPcG3POZAUnwr4EeqCUZFz4u2PePbo3e5Gj4ziYPCWGUZT9RHisvJKnwFuBQ==", "dev": true }, "base64-js": { "version": "1.5.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/base64-js/-/base64-js-1.5.1.tgz", + "resolved": "https://registry.npmmirror.com/base64-js/-/base64-js-1.5.1.tgz", "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", "dev": true }, @@ -2633,7 +2633,7 @@ }, "bfj": { "version": "6.1.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/bfj/-/bfj-6.1.2.tgz", + "resolved": "https://registry.npmmirror.com/bfj/-/bfj-6.1.2.tgz", "integrity": "sha512-BmBJa4Lip6BPRINSZ0BPEIfB1wUY/9rwbwvIHQA1KjX9om29B6id0wnWXq7m3bn5JrUVjeOTnVuhPT1FiHwPGw==", "dev": true, "requires": { @@ -2645,17 +2645,17 @@ }, "big.js": { "version": "5.2.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/big.js/-/big.js-5.2.2.tgz", + "resolved": "https://registry.npmmirror.com/big.js/-/big.js-5.2.2.tgz", "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" }, "binary-extensions": { "version": "1.13.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/binary-extensions/-/binary-extensions-1.13.1.tgz", + "resolved": "https://registry.npmmirror.com/binary-extensions/-/binary-extensions-1.13.1.tgz", "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==" }, "bindings": { "version": "1.5.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/bindings/-/bindings-1.5.0.tgz", + "resolved": "https://registry.npmmirror.com/bindings/-/bindings-1.5.0.tgz", "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", "optional": true, "requires": { @@ -2710,7 +2710,7 @@ }, "bluebird": { "version": "3.7.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/bluebird/-/bluebird-3.7.2.tgz", + "resolved": "https://registry.npmmirror.com/bluebird/-/bluebird-3.7.2.tgz", "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", "dev": true }, @@ -2755,7 +2755,7 @@ }, "iconv-lite": { "version": "0.4.24", - "resolved": "http://173.15.15.82:8081/repository/npm-all/iconv-lite/-/iconv-lite-0.4.24.tgz", + "resolved": "https://registry.npmmirror.com/iconv-lite/-/iconv-lite-0.4.24.tgz", "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", "dev": true, "requires": { @@ -2792,7 +2792,7 @@ }, "boxen": { "version": "1.3.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/boxen/-/boxen-1.3.0.tgz", + "resolved": "https://registry.npmmirror.com/boxen/-/boxen-1.3.0.tgz", "integrity": "sha512-TNPjfTr432qx7yOjQyaXm3dSR0MH9vXp7eT1BFSl/C51g+EFnOR9hTg1IreahGBmDNCehscshe45f+C1TBZbLw==", "dev": true, "requires": { @@ -2813,7 +2813,7 @@ }, "chalk": { "version": "2.4.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/chalk/-/chalk-2.4.2.tgz", + "resolved": "https://registry.npmmirror.com/chalk/-/chalk-2.4.2.tgz", "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, "requires": { @@ -2826,7 +2826,7 @@ }, "brace-expansion": { "version": "1.1.11", - "resolved": "http://173.15.15.82:8081/repository/npm-all/brace-expansion/-/brace-expansion-1.1.11.tgz", + "resolved": "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-1.1.11.tgz", "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "requires": { "balanced-match": "^1.0.0", @@ -2845,7 +2845,7 @@ }, "brcast": { "version": "3.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/brcast/-/brcast-3.0.2.tgz", + "resolved": "https://registry.npmmirror.com/brcast/-/brcast-3.0.2.tgz", "integrity": "sha512-f5XwwFCCuvgqP2nMH/hJ74FqnGmb4X3D+NC//HphxJzzhsZvSZa+Hk/syB7j3ZHpPDLMoYU8oBgviRWfNvEfKA==" }, "brorand": { @@ -2856,12 +2856,12 @@ }, "browser-process-hrtime": { "version": "1.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", + "resolved": "https://registry.npmmirror.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==" }, "browser-resolve": { "version": "1.11.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/browser-resolve/-/browser-resolve-1.11.3.tgz", + "resolved": "https://registry.npmmirror.com/browser-resolve/-/browser-resolve-1.11.3.tgz", "integrity": "sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ==", "requires": { "resolve": "1.1.7" @@ -2876,7 +2876,7 @@ }, "browserify-aes": { "version": "1.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/browserify-aes/-/browserify-aes-1.2.0.tgz", + "resolved": "https://registry.npmmirror.com/browserify-aes/-/browserify-aes-1.2.0.tgz", "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", "dev": true, "requires": { @@ -2890,7 +2890,7 @@ }, "browserify-cipher": { "version": "1.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/browserify-cipher/-/browserify-cipher-1.0.1.tgz", + "resolved": "https://registry.npmmirror.com/browserify-cipher/-/browserify-cipher-1.0.1.tgz", "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", "dev": true, "requires": { @@ -2901,7 +2901,7 @@ }, "browserify-des": { "version": "1.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/browserify-des/-/browserify-des-1.0.2.tgz", + "resolved": "https://registry.npmmirror.com/browserify-des/-/browserify-des-1.0.2.tgz", "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", "dev": true, "requires": { @@ -2913,7 +2913,7 @@ }, "browserify-rsa": { "version": "4.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/browserify-rsa/-/browserify-rsa-4.1.0.tgz", + "resolved": "https://registry.npmmirror.com/browserify-rsa/-/browserify-rsa-4.1.0.tgz", "integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==", "dev": true, "requires": { @@ -2923,7 +2923,7 @@ }, "browserify-sign": { "version": "4.2.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/browserify-sign/-/browserify-sign-4.2.1.tgz", + "resolved": "https://registry.npmmirror.com/browserify-sign/-/browserify-sign-4.2.1.tgz", "integrity": "sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==", "dev": true, "requires": { @@ -2940,7 +2940,7 @@ "dependencies": { "readable-stream": { "version": "3.6.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/readable-stream/-/readable-stream-3.6.0.tgz", + "resolved": "https://registry.npmmirror.com/readable-stream/-/readable-stream-3.6.0.tgz", "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", "dev": true, "requires": { @@ -2959,7 +2959,7 @@ }, "browserify-zlib": { "version": "0.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/browserify-zlib/-/browserify-zlib-0.2.0.tgz", + "resolved": "https://registry.npmmirror.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz", "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", "dev": true, "requires": { @@ -2968,7 +2968,7 @@ }, "browserslist": { "version": "2.11.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/browserslist/-/browserslist-2.11.3.tgz", + "resolved": "https://registry.npmmirror.com/browserslist/-/browserslist-2.11.3.tgz", "integrity": "sha512-yWu5cXT7Av6mVwzWc8lMsJMHWn4xyjSuGYi4IozbVTLUOEYPSagUB8kiMDUHA1fS3zjr8nkxkn9jdvug4BBRmA==", "requires": { "caniuse-lite": "^1.0.30000792", @@ -2977,7 +2977,7 @@ }, "bser": { "version": "2.1.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/bser/-/bser-2.1.1.tgz", + "resolved": "https://registry.npmmirror.com/bser/-/bser-2.1.1.tgz", "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", "requires": { "node-int64": "^0.4.0" @@ -2985,7 +2985,7 @@ }, "buffer": { "version": "4.9.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/buffer/-/buffer-4.9.2.tgz", + "resolved": "https://registry.npmmirror.com/buffer/-/buffer-4.9.2.tgz", "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==", "dev": true, "requires": { @@ -2996,13 +2996,13 @@ }, "buffer-from": { "version": "1.1.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/buffer-from/-/buffer-from-1.1.2.tgz", + "resolved": "https://registry.npmmirror.com/buffer-from/-/buffer-from-1.1.2.tgz", "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", "dev": true }, "buffer-indexof": { "version": "1.1.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/buffer-indexof/-/buffer-indexof-1.1.1.tgz", + "resolved": "https://registry.npmmirror.com/buffer-indexof/-/buffer-indexof-1.1.1.tgz", "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==", "dev": true }, @@ -3025,7 +3025,7 @@ }, "bundle-loader": { "version": "0.5.6", - "resolved": "http://173.15.15.82:8081/repository/npm-all/bundle-loader/-/bundle-loader-0.5.6.tgz", + "resolved": "https://registry.npmmirror.com/bundle-loader/-/bundle-loader-0.5.6.tgz", "integrity": "sha512-SUgX+u/LJzlJiuoIghuubZ66eflehnjmqSfh/ib9DTe08sxRJ5F/MhHSjp7GfSJivSp8NWgez4PVNAUuMg7vSg==", "requires": { "loader-utils": "^1.1.0" @@ -3039,7 +3039,7 @@ }, "cacache": { "version": "10.0.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/cacache/-/cacache-10.0.4.tgz", + "resolved": "https://registry.npmmirror.com/cacache/-/cacache-10.0.4.tgz", "integrity": "sha512-Dph0MzuH+rTQzGPNT9fAnrPmMmjKfST6trxJeK7NQuHRaVw24VzPRWTmg9MpcwOVQZO0E1FBICUlFeNaKPIfHA==", "dev": true, "requires": { @@ -3060,7 +3060,7 @@ "dependencies": { "y18n": { "version": "4.0.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/y18n/-/y18n-4.0.3.tgz", + "resolved": "https://registry.npmmirror.com/y18n/-/y18n-4.0.3.tgz", "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", "dev": true } @@ -3068,7 +3068,7 @@ }, "cache-base": { "version": "1.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/cache-base/-/cache-base-1.0.1.tgz", + "resolved": "https://registry.npmmirror.com/cache-base/-/cache-base-1.0.1.tgz", "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", "requires": { "collection-visit": "^1.0.0", @@ -3091,7 +3091,7 @@ }, "call-bind": { "version": "1.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/call-bind/-/call-bind-1.0.2.tgz", + "resolved": "https://registry.npmmirror.com/call-bind/-/call-bind-1.0.2.tgz", "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", "requires": { "function-bind": "^1.1.1", @@ -3137,7 +3137,7 @@ }, "camel-case": { "version": "4.1.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/camel-case/-/camel-case-4.1.2.tgz", + "resolved": "https://registry.npmmirror.com/camel-case/-/camel-case-4.1.2.tgz", "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", "dev": true, "requires": { @@ -3175,7 +3175,7 @@ }, "caniuse-api": { "version": "3.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/caniuse-api/-/caniuse-api-3.0.0.tgz", + "resolved": "https://registry.npmmirror.com/caniuse-api/-/caniuse-api-3.0.0.tgz", "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", "dev": true, "requires": { @@ -3273,13 +3273,13 @@ }, "check-types": { "version": "8.0.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/check-types/-/check-types-8.0.3.tgz", + "resolved": "https://registry.npmmirror.com/check-types/-/check-types-8.0.3.tgz", "integrity": "sha512-YpeKZngUmG65rLudJ4taU7VLkOCTMhNl/u4ctNC56LQS/zJTyNH0Lrtwm1tfTsbLlwvlfsA2d1c8vCf/Kh2KwQ==", "dev": true }, "chokidar": { "version": "2.1.8", - "resolved": "http://173.15.15.82:8081/repository/npm-all/chokidar/-/chokidar-2.1.8.tgz", + "resolved": "https://registry.npmmirror.com/chokidar/-/chokidar-2.1.8.tgz", "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", "requires": { "anymatch": "^2.0.0", @@ -3298,7 +3298,7 @@ "dependencies": { "anymatch": { "version": "2.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/anymatch/-/anymatch-2.0.0.tgz", + "resolved": "https://registry.npmmirror.com/anymatch/-/anymatch-2.0.0.tgz", "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", "requires": { "micromatch": "^3.1.4", @@ -3327,7 +3327,7 @@ }, "braces": { "version": "2.3.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/braces/-/braces-2.3.2.tgz", + "resolved": "https://registry.npmmirror.com/braces/-/braces-2.3.2.tgz", "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", "requires": { "arr-flatten": "^1.1.0", @@ -3428,7 +3428,7 @@ }, "is-descriptor": { "version": "0.1.6", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-descriptor/-/is-descriptor-0.1.6.tgz", + "resolved": "https://registry.npmmirror.com/is-descriptor/-/is-descriptor-0.1.6.tgz", "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", "requires": { "is-accessor-descriptor": "^0.1.6", @@ -3438,14 +3438,14 @@ }, "kind-of": { "version": "5.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/kind-of/-/kind-of-5.1.0.tgz", + "resolved": "https://registry.npmmirror.com/kind-of/-/kind-of-5.1.0.tgz", "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" } } }, "extglob": { "version": "2.0.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/extglob/-/extglob-2.0.4.tgz", + "resolved": "https://registry.npmmirror.com/extglob/-/extglob-2.0.4.tgz", "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", "requires": { "array-unique": "^0.3.2", @@ -3518,7 +3518,7 @@ }, "is-accessor-descriptor": { "version": "1.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "resolved": "https://registry.npmmirror.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", "requires": { "kind-of": "^6.0.0" @@ -3531,7 +3531,7 @@ }, "is-data-descriptor": { "version": "1.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "resolved": "https://registry.npmmirror.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", "requires": { "kind-of": "^6.0.0" @@ -3539,7 +3539,7 @@ }, "is-descriptor": { "version": "1.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-descriptor/-/is-descriptor-1.0.2.tgz", + "resolved": "https://registry.npmmirror.com/is-descriptor/-/is-descriptor-1.0.2.tgz", "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", "requires": { "is-accessor-descriptor": "^1.0.0", @@ -3585,12 +3585,12 @@ }, "kind-of": { "version": "6.0.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/kind-of/-/kind-of-6.0.3.tgz", + "resolved": "https://registry.npmmirror.com/kind-of/-/kind-of-6.0.3.tgz", "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" }, "micromatch": { "version": "3.1.10", - "resolved": "http://173.15.15.82:8081/repository/npm-all/micromatch/-/micromatch-3.1.10.tgz", + "resolved": "https://registry.npmmirror.com/micromatch/-/micromatch-3.1.10.tgz", "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", "requires": { "arr-diff": "^4.0.0", @@ -3610,31 +3610,31 @@ }, "normalize-path": { "version": "3.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/normalize-path/-/normalize-path-3.0.0.tgz", + "resolved": "https://registry.npmmirror.com/normalize-path/-/normalize-path-3.0.0.tgz", "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" } } }, "chownr": { "version": "1.1.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/chownr/-/chownr-1.1.4.tgz", + "resolved": "https://registry.npmmirror.com/chownr/-/chownr-1.1.4.tgz", "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", "dev": true }, "chrome-trace-event": { "version": "1.0.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "resolved": "https://registry.npmmirror.com/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", "dev": true }, "ci-info": { "version": "1.6.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/ci-info/-/ci-info-1.6.0.tgz", + "resolved": "https://registry.npmmirror.com/ci-info/-/ci-info-1.6.0.tgz", "integrity": "sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A==" }, "cipher-base": { "version": "1.0.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/cipher-base/-/cipher-base-1.0.4.tgz", + "resolved": "https://registry.npmmirror.com/cipher-base/-/cipher-base-1.0.4.tgz", "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", "dev": true, "requires": { @@ -3644,13 +3644,13 @@ }, "circular-json": { "version": "0.3.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/circular-json/-/circular-json-0.3.3.tgz", + "resolved": "https://registry.npmmirror.com/circular-json/-/circular-json-0.3.3.tgz", "integrity": "sha512-UZK3NBx2Mca+b5LsG7bY183pHWt5Y1xts4P3Pz7ENTwGVnJOUWbRb3ocjvX7hx9tq/yTAdclXm9sZ38gNuem4A==", "dev": true }, "class-utils": { "version": "0.3.6", - "resolved": "http://173.15.15.82:8081/repository/npm-all/class-utils/-/class-utils-0.3.6.tgz", + "resolved": "https://registry.npmmirror.com/class-utils/-/class-utils-0.3.6.tgz", "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", "requires": { "arr-union": "^3.1.0", @@ -3690,7 +3690,7 @@ }, "clean-stack": { "version": "2.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/clean-stack/-/clean-stack-2.2.0.tgz", + "resolved": "https://registry.npmmirror.com/clean-stack/-/clean-stack-2.2.0.tgz", "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", "dev": true }, @@ -3710,7 +3710,7 @@ }, "cli-width": { "version": "2.2.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/cli-width/-/cli-width-2.2.1.tgz", + "resolved": "https://registry.npmmirror.com/cli-width/-/cli-width-2.2.1.tgz", "integrity": "sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw==" }, "clipboard": { @@ -3740,7 +3740,7 @@ }, "clone-deep": { "version": "4.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/clone-deep/-/clone-deep-4.0.1.tgz", + "resolved": "https://registry.npmmirror.com/clone-deep/-/clone-deep-4.0.1.tgz", "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", "dev": true, "requires": { @@ -3751,7 +3751,7 @@ "dependencies": { "kind-of": { "version": "6.0.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/kind-of/-/kind-of-6.0.3.tgz", + "resolved": "https://registry.npmmirror.com/kind-of/-/kind-of-6.0.3.tgz", "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", "dev": true } @@ -3770,7 +3770,7 @@ }, "coa": { "version": "2.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/coa/-/coa-2.0.2.tgz", + "resolved": "https://registry.npmmirror.com/coa/-/coa-2.0.2.tgz", "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==", "dev": true, "requires": { @@ -3781,7 +3781,7 @@ "dependencies": { "chalk": { "version": "2.4.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/chalk/-/chalk-2.4.2.tgz", + "resolved": "https://registry.npmmirror.com/chalk/-/chalk-2.4.2.tgz", "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, "requires": { @@ -3818,7 +3818,7 @@ }, "color": { "version": "3.2.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/color/-/color-3.2.1.tgz", + "resolved": "https://registry.npmmirror.com/color/-/color-3.2.1.tgz", "integrity": "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==", "dev": true, "requires": { @@ -3828,7 +3828,7 @@ }, "color-convert": { "version": "1.9.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/color-convert/-/color-convert-1.9.3.tgz", + "resolved": "https://registry.npmmirror.com/color-convert/-/color-convert-1.9.3.tgz", "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "requires": { "color-name": "1.1.3" @@ -3857,7 +3857,7 @@ }, "combined-stream": { "version": "1.0.8", - "resolved": "http://173.15.15.82:8081/repository/npm-all/combined-stream/-/combined-stream-1.0.8.tgz", + "resolved": "https://registry.npmmirror.com/combined-stream/-/combined-stream-1.0.8.tgz", "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", "requires": { "delayed-stream": "~1.0.0" @@ -3865,7 +3865,7 @@ }, "commander": { "version": "2.20.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/commander/-/commander-2.20.3.tgz", + "resolved": "https://registry.npmmirror.com/commander/-/commander-2.20.3.tgz", "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" }, "commondir": { @@ -3884,7 +3884,7 @@ }, "component-emitter": { "version": "1.3.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/component-emitter/-/component-emitter-1.3.0.tgz", + "resolved": "https://registry.npmmirror.com/component-emitter/-/component-emitter-1.3.0.tgz", "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==" }, "component-indexof": { @@ -3894,7 +3894,7 @@ }, "compressible": { "version": "2.0.18", - "resolved": "http://173.15.15.82:8081/repository/npm-all/compressible/-/compressible-2.0.18.tgz", + "resolved": "https://registry.npmmirror.com/compressible/-/compressible-2.0.18.tgz", "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", "dev": true, "requires": { @@ -3903,7 +3903,7 @@ }, "compression": { "version": "1.7.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/compression/-/compression-1.7.4.tgz", + "resolved": "https://registry.npmmirror.com/compression/-/compression-1.7.4.tgz", "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", "dev": true, "requires": { @@ -3929,7 +3929,7 @@ }, "compression-webpack-plugin": { "version": "1.1.12", - "resolved": "http://173.15.15.82:8081/repository/npm-all/compression-webpack-plugin/-/compression-webpack-plugin-1.1.12.tgz", + "resolved": "https://registry.npmmirror.com/compression-webpack-plugin/-/compression-webpack-plugin-1.1.12.tgz", "integrity": "sha512-UpBXSHbrCSdSZieAffqXlAQpLO2fikVVRYibrWlbHYzKpOw1Y4jwkVZ/+S91GzWuJvXSbc8SBy/e8fQJh8uEMQ==", "dev": true, "requires": { @@ -3956,7 +3956,7 @@ }, "concat-stream": { "version": "1.6.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/concat-stream/-/concat-stream-1.6.2.tgz", + "resolved": "https://registry.npmmirror.com/concat-stream/-/concat-stream-1.6.2.tgz", "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", "dev": true, "requires": { @@ -3968,7 +3968,7 @@ }, "configstore": { "version": "3.1.5", - "resolved": "http://173.15.15.82:8081/repository/npm-all/configstore/-/configstore-3.1.5.tgz", + "resolved": "https://registry.npmmirror.com/configstore/-/configstore-3.1.5.tgz", "integrity": "sha512-nlOhI4+fdzoK5xmJ+NY+1gZK56bwEaWZr8fYuXohZ9Vkc1o3a4T/R3M+yE/w7x/ZVJ1zF8c+oaOvF0dztdUgmA==", "dev": true, "requires": { @@ -3982,13 +3982,13 @@ }, "connect-history-api-fallback": { "version": "1.6.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", + "resolved": "https://registry.npmmirror.com/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==", "dev": true }, "connected-react-router": { "version": "4.4.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/connected-react-router/-/connected-react-router-4.4.1.tgz", + "resolved": "https://registry.npmmirror.com/connected-react-router/-/connected-react-router-4.4.1.tgz", "integrity": "sha512-2QiSQPjqePkblAdctpCtWLskwu4WcZe+iYGMH8epUIVga87tNEdT005/nluVC7lHdmPIKVB4lW3tSuldYYcPZw==", "requires": { "immutable": "^3.8.1" @@ -4003,7 +4003,7 @@ }, "console-browserify": { "version": "1.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/console-browserify/-/console-browserify-1.2.0.tgz", + "resolved": "https://registry.npmmirror.com/console-browserify/-/console-browserify-1.2.0.tgz", "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==", "dev": true }, @@ -4036,13 +4036,13 @@ }, "content-type": { "version": "1.0.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/content-type/-/content-type-1.0.4.tgz", + "resolved": "https://registry.npmmirror.com/content-type/-/content-type-1.0.4.tgz", "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", "dev": true }, "content-type-parser": { "version": "1.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/content-type-parser/-/content-type-parser-1.0.2.tgz", + "resolved": "https://registry.npmmirror.com/content-type-parser/-/content-type-parser-1.0.2.tgz", "integrity": "sha512-lM4l4CnMEwOLHAHr/P6MEZwZFPJFtAAKgL6pogbXmVZggIqXhdB6RbBtPOTsw2FcXwYhehRGERJmRrjOiIB8pQ==" }, "contour_plot": { @@ -4071,7 +4071,7 @@ }, "copy-anything": { "version": "2.0.6", - "resolved": "http://173.15.15.82:8081/repository/npm-all/copy-anything/-/copy-anything-2.0.6.tgz", + "resolved": "https://registry.npmmirror.com/copy-anything/-/copy-anything-2.0.6.tgz", "integrity": "sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==", "requires": { "is-what": "^3.14.1" @@ -4079,7 +4079,7 @@ }, "copy-concurrently": { "version": "1.0.5", - "resolved": "http://173.15.15.82:8081/repository/npm-all/copy-concurrently/-/copy-concurrently-1.0.5.tgz", + "resolved": "https://registry.npmmirror.com/copy-concurrently/-/copy-concurrently-1.0.5.tgz", "integrity": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==", "dev": true, "requires": { @@ -4106,7 +4106,7 @@ }, "core-js": { "version": "2.6.12", - "resolved": "http://173.15.15.82:8081/repository/npm-all/core-js/-/core-js-2.6.12.tgz", + "resolved": "https://registry.npmmirror.com/core-js/-/core-js-2.6.12.tgz", "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==" }, "core-util-is": { @@ -4136,7 +4136,7 @@ }, "create-ecdh": { "version": "4.0.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/create-ecdh/-/create-ecdh-4.0.4.tgz", + "resolved": "https://registry.npmmirror.com/create-ecdh/-/create-ecdh-4.0.4.tgz", "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", "dev": true, "requires": { @@ -4146,7 +4146,7 @@ "dependencies": { "bn.js": { "version": "4.12.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/bn.js/-/bn.js-4.12.0.tgz", + "resolved": "https://registry.npmmirror.com/bn.js/-/bn.js-4.12.0.tgz", "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", "dev": true } @@ -4163,7 +4163,7 @@ }, "create-hash": { "version": "1.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/create-hash/-/create-hash-1.2.0.tgz", + "resolved": "https://registry.npmmirror.com/create-hash/-/create-hash-1.2.0.tgz", "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", "dev": true, "requires": { @@ -4176,7 +4176,7 @@ }, "create-hmac": { "version": "1.1.7", - "resolved": "http://173.15.15.82:8081/repository/npm-all/create-hmac/-/create-hmac-1.1.7.tgz", + "resolved": "https://registry.npmmirror.com/create-hmac/-/create-hmac-1.1.7.tgz", "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", "dev": true, "requires": { @@ -4190,7 +4190,7 @@ }, "create-react-class": { "version": "15.7.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/create-react-class/-/create-react-class-15.7.0.tgz", + "resolved": "https://registry.npmmirror.com/create-react-class/-/create-react-class-15.7.0.tgz", "integrity": "sha512-QZv4sFWG9S5RUvkTYWbflxeZX+JG7Cz0Tn33rQBJ+WFQTqTfUTjMjiv9tnfXazjsO5r0KhPs+AqCjyrQX6h2ng==", "requires": { "loose-envify": "^1.3.1", @@ -4204,7 +4204,7 @@ }, "cross-env": { "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-env/-/cross-env-7.0.3.tgz", + "resolved": "https://registry.npmmirror.com/cross-env/-/cross-env-7.0.3.tgz", "integrity": "sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==", "dev": true, "requires": { @@ -4213,7 +4213,7 @@ "dependencies": { "cross-spawn": { "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "resolved": "https://registry.npmmirror.com/cross-spawn/-/cross-spawn-7.0.3.tgz", "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", "dev": true, "requires": { @@ -4224,13 +4224,13 @@ }, "path-key": { "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "resolved": "https://registry.npmmirror.com/path-key/-/path-key-3.1.1.tgz", "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", "dev": true }, "shebang-command": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "resolved": "https://registry.npmmirror.com/shebang-command/-/shebang-command-2.0.0.tgz", "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", "dev": true, "requires": { @@ -4239,13 +4239,13 @@ }, "shebang-regex": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "resolved": "https://registry.npmmirror.com/shebang-regex/-/shebang-regex-3.0.0.tgz", "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", "dev": true }, "which": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "resolved": "https://registry.npmmirror.com/which/-/which-2.0.2.tgz", "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", "dev": true, "requires": { @@ -4256,7 +4256,7 @@ }, "cross-fetch": { "version": "3.1.5", - "resolved": "http://173.15.15.82:8081/repository/npm-all/cross-fetch/-/cross-fetch-3.1.5.tgz", + "resolved": "https://registry.npmmirror.com/cross-fetch/-/cross-fetch-3.1.5.tgz", "integrity": "sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==", "dev": true, "requires": { @@ -4265,7 +4265,7 @@ "dependencies": { "node-fetch": { "version": "2.6.7", - "resolved": "http://173.15.15.82:8081/repository/npm-all/node-fetch/-/node-fetch-2.6.7.tgz", + "resolved": "https://registry.npmmirror.com/node-fetch/-/node-fetch-2.6.7.tgz", "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", "dev": true, "requires": { @@ -4274,13 +4274,13 @@ }, "webidl-conversions": { "version": "3.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "resolved": "https://registry.npmmirror.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz", "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", "dev": true }, "whatwg-url": { "version": "5.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/whatwg-url/-/whatwg-url-5.0.0.tgz", + "resolved": "https://registry.npmmirror.com/whatwg-url/-/whatwg-url-5.0.0.tgz", "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", "dev": true, "requires": { @@ -4308,7 +4308,7 @@ }, "crypto-browserify": { "version": "3.12.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/crypto-browserify/-/crypto-browserify-3.12.0.tgz", + "resolved": "https://registry.npmmirror.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz", "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", "dev": true, "requires": { @@ -4333,7 +4333,7 @@ }, "css-animation": { "version": "1.6.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/css-animation/-/css-animation-1.6.1.tgz", + "resolved": "https://registry.npmmirror.com/css-animation/-/css-animation-1.6.1.tgz", "integrity": "sha512-/48+/BaEaHRY6kNQ2OIPzKf9A6g8WjZYjhiNDNuIVbsm5tXCGIAsHDjB4Xu1C4vXJtUWZo26O68OQkDpNBaPog==", "requires": { "babel-runtime": "6.x", @@ -4342,7 +4342,7 @@ }, "css-box-model": { "version": "1.2.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/css-box-model/-/css-box-model-1.2.1.tgz", + "resolved": "https://registry.npmmirror.com/css-box-model/-/css-box-model-1.2.1.tgz", "integrity": "sha512-a7Vr4Q/kd/aw96bnJG332W9V9LkJO69JRcaCYDUqjp6/z0w6VcZjgAcTbgFxEPfBgdnAwlh3iwu+hLopa+flJw==", "requires": { "tiny-invariant": "^1.0.6" @@ -4361,7 +4361,7 @@ }, "css-declaration-sorter": { "version": "4.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz", + "resolved": "https://registry.npmmirror.com/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz", "integrity": "sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA==", "dev": true, "requires": { @@ -4415,7 +4415,7 @@ }, "css-loader": { "version": "3.6.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/css-loader/-/css-loader-3.6.0.tgz", + "resolved": "https://registry.npmmirror.com/css-loader/-/css-loader-3.6.0.tgz", "integrity": "sha512-M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ==", "dev": true, "requires": { @@ -4436,7 +4436,7 @@ "dependencies": { "camelcase": { "version": "5.3.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/camelcase/-/camelcase-5.3.1.tgz", + "resolved": "https://registry.npmmirror.com/camelcase/-/camelcase-5.3.1.tgz", "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", "dev": true }, @@ -4464,7 +4464,7 @@ }, "normalize-path": { "version": "3.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/normalize-path/-/normalize-path-3.0.0.tgz", + "resolved": "https://registry.npmmirror.com/normalize-path/-/normalize-path-3.0.0.tgz", "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", "dev": true }, @@ -4487,7 +4487,7 @@ }, "semver": { "version": "6.3.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/semver/-/semver-6.3.0.tgz", + "resolved": "https://registry.npmmirror.com/semver/-/semver-6.3.0.tgz", "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true }, @@ -4517,13 +4517,13 @@ }, "css-select-base-adapter": { "version": "0.1.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz", + "resolved": "https://registry.npmmirror.com/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz", "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==", "dev": true }, "css-to-react-native": { "version": "2.3.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/css-to-react-native/-/css-to-react-native-2.3.2.tgz", + "resolved": "https://registry.npmmirror.com/css-to-react-native/-/css-to-react-native-2.3.2.tgz", "integrity": "sha512-VOFaeZA053BqvvvqIA8c9n0+9vFppVBAHCp6JgFTtTMU3Mzi+XnelJ9XC9ul3BqFzZyQ5N+H0SnwsWT2Ebchxw==", "requires": { "camelize": "^1.0.0", @@ -4533,7 +4533,7 @@ }, "css-tree": { "version": "1.0.0-alpha.37", - "resolved": "http://173.15.15.82:8081/repository/npm-all/css-tree/-/css-tree-1.0.0-alpha.37.tgz", + "resolved": "https://registry.npmmirror.com/css-tree/-/css-tree-1.0.0-alpha.37.tgz", "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==", "dev": true, "requires": { @@ -4557,13 +4557,13 @@ }, "cssesc": { "version": "3.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/cssesc/-/cssesc-3.0.0.tgz", + "resolved": "https://registry.npmmirror.com/cssesc/-/cssesc-3.0.0.tgz", "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", "dev": true }, "cssnano": { "version": "4.1.11", - "resolved": "http://173.15.15.82:8081/repository/npm-all/cssnano/-/cssnano-4.1.11.tgz", + "resolved": "https://registry.npmmirror.com/cssnano/-/cssnano-4.1.11.tgz", "integrity": "sha512-6gZm2htn7xIPJOHY824ERgj8cNPgPxyCSnkXc4v7YvNW+TdVfzgngHcEhy/8D11kUWRUMbke+tC+AUcUsnMz2g==", "dev": true, "requires": { @@ -4641,7 +4641,7 @@ }, "cssnano-preset-default": { "version": "4.0.8", - "resolved": "http://173.15.15.82:8081/repository/npm-all/cssnano-preset-default/-/cssnano-preset-default-4.0.8.tgz", + "resolved": "https://registry.npmmirror.com/cssnano-preset-default/-/cssnano-preset-default-4.0.8.tgz", "integrity": "sha512-LdAyHuq+VRyeVREFmuxUZR1TXjQm8QQU/ktoo/x7bz+SdOge1YKc5eMN6pRW7YWBmyq59CqYba1dJ5cUukEjLQ==", "dev": true, "requires": { @@ -4735,7 +4735,7 @@ }, "cssnano-util-raw-cache": { "version": "4.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz", + "resolved": "https://registry.npmmirror.com/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz", "integrity": "sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA==", "dev": true, "requires": { @@ -4788,13 +4788,13 @@ }, "cssnano-util-same-parent": { "version": "4.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz", + "resolved": "https://registry.npmmirror.com/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz", "integrity": "sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q==", "dev": true }, "csso": { "version": "4.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/csso/-/csso-4.2.0.tgz", + "resolved": "https://registry.npmmirror.com/csso/-/csso-4.2.0.tgz", "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", "dev": true, "requires": { @@ -4803,7 +4803,7 @@ "dependencies": { "css-tree": { "version": "1.1.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/css-tree/-/css-tree-1.1.3.tgz", + "resolved": "https://registry.npmmirror.com/css-tree/-/css-tree-1.1.3.tgz", "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", "dev": true, "requires": { @@ -4813,7 +4813,7 @@ }, "mdn-data": { "version": "2.0.14", - "resolved": "http://173.15.15.82:8081/repository/npm-all/mdn-data/-/mdn-data-2.0.14.tgz", + "resolved": "https://registry.npmmirror.com/mdn-data/-/mdn-data-2.0.14.tgz", "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==", "dev": true } @@ -4821,7 +4821,7 @@ }, "cssom": { "version": "0.3.8", - "resolved": "http://173.15.15.82:8081/repository/npm-all/cssom/-/cssom-0.3.8.tgz", + "resolved": "https://registry.npmmirror.com/cssom/-/cssom-0.3.8.tgz", "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==" }, "cssstyle": { @@ -4854,22 +4854,22 @@ }, "d3-color": { "version": "1.4.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/d3-color/-/d3-color-1.4.1.tgz", + "resolved": "https://registry.npmmirror.com/d3-color/-/d3-color-1.4.1.tgz", "integrity": "sha512-p2sTHSLCJI2QKunbGb7ocOh7DgTAn8IrLx21QRc/BSnodXM4sv6aLQlnfpvehFMLZEfBc6g9pH9SWQccFYfJ9Q==" }, "d3-dispatch": { "version": "1.0.6", - "resolved": "http://173.15.15.82:8081/repository/npm-all/d3-dispatch/-/d3-dispatch-1.0.6.tgz", + "resolved": "https://registry.npmmirror.com/d3-dispatch/-/d3-dispatch-1.0.6.tgz", "integrity": "sha512-fVjoElzjhCEy+Hbn8KygnmMS7Or0a9sI2UzGwoB7cCtvI1XpVN9GpoYlnb3xt2YV66oXYb1fLJ8GMvP4hdU1RA==" }, "d3-ease": { "version": "1.0.7", - "resolved": "http://173.15.15.82:8081/repository/npm-all/d3-ease/-/d3-ease-1.0.7.tgz", + "resolved": "https://registry.npmmirror.com/d3-ease/-/d3-ease-1.0.7.tgz", "integrity": "sha512-lx14ZPYkhNx0s/2HX5sLFUI3mbasHjSSpwO/KaaNACweVwxUruKyWVcb293wMv1RqTPZyZ8kSZ2NogUZNcLOFQ==" }, "d3-interpolate": { "version": "1.1.6", - "resolved": "http://173.15.15.82:8081/repository/npm-all/d3-interpolate/-/d3-interpolate-1.1.6.tgz", + "resolved": "https://registry.npmmirror.com/d3-interpolate/-/d3-interpolate-1.1.6.tgz", "integrity": "sha512-mOnv5a+pZzkNIHtw/V6I+w9Lqm9L5bG3OTXPM5A+QO0yyVMQ4W1uZhR+VOJmazaOZXri2ppbiZ5BUNWT0pFM9A==", "requires": { "d3-color": "1" @@ -4877,17 +4877,17 @@ }, "d3-selection": { "version": "1.4.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/d3-selection/-/d3-selection-1.4.2.tgz", + "resolved": "https://registry.npmmirror.com/d3-selection/-/d3-selection-1.4.2.tgz", "integrity": "sha512-SJ0BqYihzOjDnnlfyeHT0e30k0K1+5sR3d5fNueCNeuhZTnGw4M4o8mqJchSwgKMXCNFo+e2VTChiSJ0vYtXkg==" }, "d3-timer": { "version": "1.0.10", - "resolved": "http://173.15.15.82:8081/repository/npm-all/d3-timer/-/d3-timer-1.0.10.tgz", + "resolved": "https://registry.npmmirror.com/d3-timer/-/d3-timer-1.0.10.tgz", "integrity": "sha512-B1JDm0XDaQC+uvo4DT79H0XmBskgS3l6Ve+1SBCfxgmtIb1AVrPIoqd+nPSv+loMX8szQ0sVUhGngL7D5QPiXw==" }, "d3-transition": { "version": "1.3.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/d3-transition/-/d3-transition-1.3.2.tgz", + "resolved": "https://registry.npmmirror.com/d3-transition/-/d3-transition-1.3.2.tgz", "integrity": "sha512-sc0gRU4PFqZ47lPVHloMn9tlPcv8jxgOQg+0zjhfZXMQuvppjG6YuwdMBE0TuqCZjeJkLecku/l9R0JPcRhaDA==", "requires": { "d3-color": "1", @@ -4914,7 +4914,7 @@ }, "data-urls": { "version": "2.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/data-urls/-/data-urls-2.0.0.tgz", + "resolved": "https://registry.npmmirror.com/data-urls/-/data-urls-2.0.0.tgz", "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", "requires": { "abab": "^2.0.3", @@ -4929,7 +4929,7 @@ }, "tr46": { "version": "2.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/tr46/-/tr46-2.1.0.tgz", + "resolved": "https://registry.npmmirror.com/tr46/-/tr46-2.1.0.tgz", "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", "requires": { "punycode": "^2.1.1" @@ -4937,12 +4937,12 @@ }, "webidl-conversions": { "version": "6.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/webidl-conversions/-/webidl-conversions-6.1.0.tgz", + "resolved": "https://registry.npmmirror.com/webidl-conversions/-/webidl-conversions-6.1.0.tgz", "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==" }, "whatwg-url": { "version": "8.7.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/whatwg-url/-/whatwg-url-8.7.0.tgz", + "resolved": "https://registry.npmmirror.com/whatwg-url/-/whatwg-url-8.7.0.tgz", "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==", "requires": { "lodash": "^4.7.0", @@ -4987,7 +4987,7 @@ }, "deep-equal": { "version": "1.1.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/deep-equal/-/deep-equal-1.1.1.tgz", + "resolved": "https://registry.npmmirror.com/deep-equal/-/deep-equal-1.1.1.tgz", "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==", "requires": { "is-arguments": "^1.0.4", @@ -5000,7 +5000,7 @@ }, "deep-extend": { "version": "0.6.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/deep-extend/-/deep-extend-0.6.0.tgz", + "resolved": "https://registry.npmmirror.com/deep-extend/-/deep-extend-0.6.0.tgz", "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", "dev": true }, @@ -5011,12 +5011,12 @@ }, "deepmerge": { "version": "2.2.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/deepmerge/-/deepmerge-2.2.1.tgz", + "resolved": "https://registry.npmmirror.com/deepmerge/-/deepmerge-2.2.1.tgz", "integrity": "sha512-R9hc1Xa/NOBi9WRVUWg19rl1UB7Tt4kuPd+thNJgFZoxXsTz7ncaPaeIm+40oSGuP33DfMb4sZt1QIGiJzC4EA==" }, "default-gateway": { "version": "4.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/default-gateway/-/default-gateway-4.2.0.tgz", + "resolved": "https://registry.npmmirror.com/default-gateway/-/default-gateway-4.2.0.tgz", "integrity": "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==", "dev": true, "requires": { @@ -5039,7 +5039,7 @@ }, "execa": { "version": "1.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/execa/-/execa-1.0.0.tgz", + "resolved": "https://registry.npmmirror.com/execa/-/execa-1.0.0.tgz", "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", "dev": true, "requires": { @@ -5054,7 +5054,7 @@ }, "get-stream": { "version": "4.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/get-stream/-/get-stream-4.1.0.tgz", + "resolved": "https://registry.npmmirror.com/get-stream/-/get-stream-4.1.0.tgz", "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", "dev": true, "requires": { @@ -5081,7 +5081,7 @@ }, "define-property": { "version": "2.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/define-property/-/define-property-2.0.2.tgz", + "resolved": "https://registry.npmmirror.com/define-property/-/define-property-2.0.2.tgz", "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", "requires": { "is-descriptor": "^1.0.2", @@ -5090,7 +5090,7 @@ "dependencies": { "is-accessor-descriptor": { "version": "1.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "resolved": "https://registry.npmmirror.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", "requires": { "kind-of": "^6.0.0" @@ -5098,7 +5098,7 @@ }, "is-data-descriptor": { "version": "1.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "resolved": "https://registry.npmmirror.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", "requires": { "kind-of": "^6.0.0" @@ -5106,7 +5106,7 @@ }, "is-descriptor": { "version": "1.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-descriptor/-/is-descriptor-1.0.2.tgz", + "resolved": "https://registry.npmmirror.com/is-descriptor/-/is-descriptor-1.0.2.tgz", "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", "requires": { "is-accessor-descriptor": "^1.0.0", @@ -5121,7 +5121,7 @@ }, "kind-of": { "version": "6.0.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/kind-of/-/kind-of-6.0.3.tgz", + "resolved": "https://registry.npmmirror.com/kind-of/-/kind-of-6.0.3.tgz", "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" } } @@ -5169,7 +5169,7 @@ }, "delegate": { "version": "3.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/delegate/-/delegate-3.2.0.tgz", + "resolved": "https://registry.npmmirror.com/delegate/-/delegate-3.2.0.tgz", "integrity": "sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw==" }, "delegates": { @@ -5186,7 +5186,7 @@ }, "des.js": { "version": "1.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/des.js/-/des.js-1.0.1.tgz", + "resolved": "https://registry.npmmirror.com/des.js/-/des.js-1.0.1.tgz", "integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==", "dev": true, "requires": { @@ -5216,13 +5216,13 @@ }, "detect-node": { "version": "2.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/detect-node/-/detect-node-2.1.0.tgz", + "resolved": "https://registry.npmmirror.com/detect-node/-/detect-node-2.1.0.tgz", "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", "dev": true }, "detect-port-alt": { "version": "1.1.6", - "resolved": "http://173.15.15.82:8081/repository/npm-all/detect-port-alt/-/detect-port-alt-1.1.6.tgz", + "resolved": "https://registry.npmmirror.com/detect-port-alt/-/detect-port-alt-1.1.6.tgz", "integrity": "sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==", "requires": { "address": "^1.0.1", @@ -5241,12 +5241,12 @@ }, "diff": { "version": "3.5.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/diff/-/diff-3.5.0.tgz", + "resolved": "https://registry.npmmirror.com/diff/-/diff-3.5.0.tgz", "integrity": "sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==" }, "diffie-hellman": { "version": "5.0.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/diffie-hellman/-/diffie-hellman-5.0.3.tgz", + "resolved": "https://registry.npmmirror.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz", "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", "dev": true, "requires": { @@ -5257,7 +5257,7 @@ "dependencies": { "bn.js": { "version": "4.12.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/bn.js/-/bn.js-4.12.0.tgz", + "resolved": "https://registry.npmmirror.com/bn.js/-/bn.js-4.12.0.tgz", "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", "dev": true } @@ -5265,7 +5265,7 @@ }, "dir-glob": { "version": "2.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/dir-glob/-/dir-glob-2.0.0.tgz", + "resolved": "https://registry.npmmirror.com/dir-glob/-/dir-glob-2.0.0.tgz", "integrity": "sha512-37qirFDz8cA5fimp9feo43fSuRo2gHwaIn6dXL8Ber1dGwUosDrGZeCCXq57WnIqE4aQ+u3eQZzsk1yOzhdwag==", "requires": { "arrify": "^1.0.1", @@ -5274,7 +5274,7 @@ "dependencies": { "path-type": { "version": "3.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/path-type/-/path-type-3.0.0.tgz", + "resolved": "https://registry.npmmirror.com/path-type/-/path-type-3.0.0.tgz", "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", "requires": { "pify": "^3.0.0" @@ -5295,7 +5295,7 @@ }, "dns-packet": { "version": "1.3.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/dns-packet/-/dns-packet-1.3.4.tgz", + "resolved": "https://registry.npmmirror.com/dns-packet/-/dns-packet-1.3.4.tgz", "integrity": "sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==", "dev": true, "requires": { @@ -5314,7 +5314,7 @@ }, "doctrine": { "version": "2.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/doctrine/-/doctrine-2.1.0.tgz", + "resolved": "https://registry.npmmirror.com/doctrine/-/doctrine-2.1.0.tgz", "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", "dev": true, "requires": { @@ -5336,7 +5336,7 @@ }, "dom-converter": { "version": "0.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/dom-converter/-/dom-converter-0.2.0.tgz", + "resolved": "https://registry.npmmirror.com/dom-converter/-/dom-converter-0.2.0.tgz", "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", "dev": true, "requires": { @@ -5345,7 +5345,7 @@ }, "dom-helpers": { "version": "3.4.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/dom-helpers/-/dom-helpers-3.4.0.tgz", + "resolved": "https://registry.npmmirror.com/dom-helpers/-/dom-helpers-3.4.0.tgz", "integrity": "sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA==", "requires": { "@babel/runtime": "^7.1.2" @@ -5368,7 +5368,7 @@ }, "dom-lib": { "version": "1.3.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/dom-lib/-/dom-lib-1.3.1.tgz", + "resolved": "https://registry.npmmirror.com/dom-lib/-/dom-lib-1.3.1.tgz", "integrity": "sha512-rITCKgbLkF0MX4zk0+N6PDIJwKb3tZ5r8qClvD23On3RUgUtnBRSnpSb/7PbY+1gjl1IMVvfZCbRtyAE4oWA2Q==" }, "dom-matches": { @@ -5403,12 +5403,12 @@ }, "dom-walk": { "version": "0.1.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/dom-walk/-/dom-walk-0.1.2.tgz", + "resolved": "https://registry.npmmirror.com/dom-walk/-/dom-walk-0.1.2.tgz", "integrity": "sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==" }, "domain-browser": { "version": "1.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/domain-browser/-/domain-browser-1.2.0.tgz", + "resolved": "https://registry.npmmirror.com/domain-browser/-/domain-browser-1.2.0.tgz", "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==", "dev": true }, @@ -5420,7 +5420,7 @@ }, "domexception": { "version": "2.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/domexception/-/domexception-2.0.1.tgz", + "resolved": "https://registry.npmmirror.com/domexception/-/domexception-2.0.1.tgz", "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", "requires": { "webidl-conversions": "^5.0.0" @@ -5428,7 +5428,7 @@ "dependencies": { "webidl-conversions": { "version": "5.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/webidl-conversions/-/webidl-conversions-5.0.0.tgz", + "resolved": "https://registry.npmmirror.com/webidl-conversions/-/webidl-conversions-5.0.0.tgz", "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==" } } @@ -5460,7 +5460,7 @@ }, "dot-case": { "version": "3.0.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/dot-case/-/dot-case-3.0.4.tgz", + "resolved": "https://registry.npmmirror.com/dot-case/-/dot-case-3.0.4.tgz", "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", "dev": true, "requires": { @@ -5489,7 +5489,7 @@ }, "dotignore": { "version": "0.1.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/dotignore/-/dotignore-0.1.2.tgz", + "resolved": "https://registry.npmmirror.com/dotignore/-/dotignore-0.1.2.tgz", "integrity": "sha512-UGGGWfSauusaVJC+8fgV+NVvBXkCTmVv7sk6nojDZZvuOUNGUy0Zk4UpHQD6EDjS0jpBwcACvH4eofvyzBcRDw==", "requires": { "minimatch": "^3.0.4" @@ -5497,7 +5497,7 @@ }, "draft-js": { "version": "0.10.5", - "resolved": "http://173.15.15.82:8081/repository/npm-all/draft-js/-/draft-js-0.10.5.tgz", + "resolved": "https://registry.npmmirror.com/draft-js/-/draft-js-0.10.5.tgz", "integrity": "sha512-LE6jSCV9nkPhfVX2ggcRLA4FKs6zWq9ceuO/88BpXdNCS7mjRTgs0NsV6piUCJX9YxMsB9An33wnkMmU2sD2Zg==", "requires": { "fbjs": "^0.8.15", @@ -5507,7 +5507,7 @@ }, "duplexer": { "version": "0.1.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/duplexer/-/duplexer-0.1.2.tgz", + "resolved": "https://registry.npmmirror.com/duplexer/-/duplexer-0.1.2.tgz", "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" }, "duplexer3": { @@ -5518,7 +5518,7 @@ }, "duplexify": { "version": "3.7.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/duplexify/-/duplexify-3.7.1.tgz", + "resolved": "https://registry.npmmirror.com/duplexify/-/duplexify-3.7.1.tgz", "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", "dev": true, "requires": { @@ -5539,7 +5539,7 @@ }, "echarts": { "version": "4.9.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/echarts/-/echarts-4.9.0.tgz", + "resolved": "https://registry.npmmirror.com/echarts/-/echarts-4.9.0.tgz", "integrity": "sha512-+ugizgtJ+KmsJyyDPxaw2Br5FqzuBnyOWwcxPKO6y0gc5caYcfnEUIlNStx02necw8jmKmTafmpHhGo4XDtEIA==", "requires": { "zrender": "4.3.2" @@ -5563,7 +5563,7 @@ }, "ejs": { "version": "2.7.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/ejs/-/ejs-2.7.4.tgz", + "resolved": "https://registry.npmmirror.com/ejs/-/ejs-2.7.4.tgz", "integrity": "sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA==", "dev": true }, @@ -5574,12 +5574,12 @@ }, "element-resize-event": { "version": "3.0.6", - "resolved": "http://173.15.15.82:8081/repository/npm-all/element-resize-event/-/element-resize-event-3.0.6.tgz", + "resolved": "https://registry.npmmirror.com/element-resize-event/-/element-resize-event-3.0.6.tgz", "integrity": "sha512-sSeXY9rNDp86bJODW68pxLcy3A5FrPZfIgOrJHzqgYzX513Zq6/ytdBigp7KeJEpZZopBBSiO1cVuiRkZpNxLw==" }, "elliptic": { "version": "6.5.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/elliptic/-/elliptic-6.5.4.tgz", + "resolved": "https://registry.npmmirror.com/elliptic/-/elliptic-6.5.4.tgz", "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==", "dev": true, "requires": { @@ -5594,7 +5594,7 @@ "dependencies": { "bn.js": { "version": "4.12.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/bn.js/-/bn.js-4.12.0.tgz", + "resolved": "https://registry.npmmirror.com/bn.js/-/bn.js-4.12.0.tgz", "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", "dev": true } @@ -5608,7 +5608,7 @@ }, "emojis-list": { "version": "3.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/emojis-list/-/emojis-list-3.0.0.tgz", + "resolved": "https://registry.npmmirror.com/emojis-list/-/emojis-list-3.0.0.tgz", "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" }, "encodeurl": { @@ -5619,7 +5619,7 @@ }, "encoding": { "version": "0.1.13", - "resolved": "http://173.15.15.82:8081/repository/npm-all/encoding/-/encoding-0.1.13.tgz", + "resolved": "https://registry.npmmirror.com/encoding/-/encoding-0.1.13.tgz", "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", "requires": { "iconv-lite": "^0.6.2" @@ -5627,7 +5627,7 @@ }, "end-of-stream": { "version": "1.4.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/end-of-stream/-/end-of-stream-1.4.4.tgz", + "resolved": "https://registry.npmmirror.com/end-of-stream/-/end-of-stream-1.4.4.tgz", "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", "dev": true, "requires": { @@ -5636,7 +5636,7 @@ }, "enhanced-resolve": { "version": "4.5.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz", + "resolved": "https://registry.npmmirror.com/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz", "integrity": "sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==", "dev": true, "requires": { @@ -5652,13 +5652,13 @@ }, "entities": { "version": "2.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/entities/-/entities-2.2.0.tgz", + "resolved": "https://registry.npmmirror.com/entities/-/entities-2.2.0.tgz", "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", "dev": true }, "errno": { "version": "0.1.8", - "resolved": "http://173.15.15.82:8081/repository/npm-all/errno/-/errno-0.1.8.tgz", + "resolved": "https://registry.npmmirror.com/errno/-/errno-0.1.8.tgz", "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", "requires": { "prr": "~1.0.1" @@ -5666,7 +5666,7 @@ }, "error-ex": { "version": "1.3.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/error-ex/-/error-ex-1.3.2.tgz", + "resolved": "https://registry.npmmirror.com/error-ex/-/error-ex-1.3.2.tgz", "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", "requires": { "is-arrayish": "^0.2.1" @@ -5698,7 +5698,7 @@ }, "es-to-primitive": { "version": "1.2.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "resolved": "https://registry.npmmirror.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz", "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", "requires": { "is-callable": "^1.1.4", @@ -5708,12 +5708,12 @@ }, "es6-promise": { "version": "4.2.8", - "resolved": "http://173.15.15.82:8081/repository/npm-all/es6-promise/-/es6-promise-4.2.8.tgz", + "resolved": "https://registry.npmmirror.com/es6-promise/-/es6-promise-4.2.8.tgz", "integrity": "sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==" }, "escalade": { "version": "3.1.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/escalade/-/escalade-3.1.1.tgz", + "resolved": "https://registry.npmmirror.com/escalade/-/escalade-3.1.1.tgz", "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", "dev": true }, @@ -5730,7 +5730,7 @@ }, "escodegen": { "version": "1.14.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/escodegen/-/escodegen-1.14.3.tgz", + "resolved": "https://registry.npmmirror.com/escodegen/-/escodegen-1.14.3.tgz", "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==", "requires": { "esprima": "^4.0.1", @@ -5742,7 +5742,7 @@ }, "eslint": { "version": "4.10.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/eslint/-/eslint-4.10.0.tgz", + "resolved": "https://registry.npmmirror.com/eslint/-/eslint-4.10.0.tgz", "integrity": "sha512-MMVl8P/dYUFZEvolL8PYt7qc5LNdS2lwheq9BYa5Y07FblhcZqFyaUqlS8TW5QITGex21tV4Lk0a3fK8lsJIkA==", "dev": true, "requires": { @@ -5805,7 +5805,7 @@ }, "chalk": { "version": "2.4.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/chalk/-/chalk-2.4.2.tgz", + "resolved": "https://registry.npmmirror.com/chalk/-/chalk-2.4.2.tgz", "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, "requires": { @@ -5839,13 +5839,13 @@ }, "eslint-config-react-app": { "version": "2.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/eslint-config-react-app/-/eslint-config-react-app-2.1.0.tgz", + "resolved": "https://registry.npmmirror.com/eslint-config-react-app/-/eslint-config-react-app-2.1.0.tgz", "integrity": "sha512-8QZrKWuHVC57Fmu+SsKAVxnI9LycZl7NFQ4H9L+oeISuCXhYdXqsOOIVSjQFW6JF5MXZLFE+21Syhd7mF1IRZQ==", "dev": true }, "eslint-import-resolver-node": { "version": "0.3.6", - "resolved": "http://173.15.15.82:8081/repository/npm-all/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz", + "resolved": "https://registry.npmmirror.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz", "integrity": "sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==", "dev": true, "requires": { @@ -5855,7 +5855,7 @@ "dependencies": { "debug": { "version": "3.2.7", - "resolved": "http://173.15.15.82:8081/repository/npm-all/debug/-/debug-3.2.7.tgz", + "resolved": "https://registry.npmmirror.com/debug/-/debug-3.2.7.tgz", "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, "requires": { @@ -5864,7 +5864,7 @@ }, "ms": { "version": "2.1.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/ms/-/ms-2.1.3.tgz", + "resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.3.tgz", "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", "dev": true } @@ -5872,7 +5872,7 @@ }, "eslint-loader": { "version": "4.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/eslint-loader/-/eslint-loader-4.0.2.tgz", + "resolved": "https://registry.npmmirror.com/eslint-loader/-/eslint-loader-4.0.2.tgz", "integrity": "sha512-EDpXor6lsjtTzZpLUn7KmXs02+nIjGcgees9BYjNkWra3jVq5vVa8IoCKgzT2M7dNNeoMBtaSG83Bd40N3poLw==", "dev": true, "requires": { @@ -5896,7 +5896,7 @@ }, "find-up": { "version": "4.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/find-up/-/find-up-4.1.0.tgz", + "resolved": "https://registry.npmmirror.com/find-up/-/find-up-4.1.0.tgz", "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", "dev": true, "requires": { @@ -5906,7 +5906,7 @@ }, "fs-extra": { "version": "8.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/fs-extra/-/fs-extra-8.1.0.tgz", + "resolved": "https://registry.npmmirror.com/fs-extra/-/fs-extra-8.1.0.tgz", "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", "dev": true, "requires": { @@ -5937,7 +5937,7 @@ }, "locate-path": { "version": "5.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/locate-path/-/locate-path-5.0.0.tgz", + "resolved": "https://registry.npmmirror.com/locate-path/-/locate-path-5.0.0.tgz", "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "dev": true, "requires": { @@ -5946,7 +5946,7 @@ }, "make-dir": { "version": "3.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/make-dir/-/make-dir-3.1.0.tgz", + "resolved": "https://registry.npmmirror.com/make-dir/-/make-dir-3.1.0.tgz", "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", "dev": true, "requires": { @@ -5955,7 +5955,7 @@ }, "p-limit": { "version": "2.3.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/p-limit/-/p-limit-2.3.0.tgz", + "resolved": "https://registry.npmmirror.com/p-limit/-/p-limit-2.3.0.tgz", "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, "requires": { @@ -5964,7 +5964,7 @@ }, "p-locate": { "version": "4.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/p-locate/-/p-locate-4.1.0.tgz", + "resolved": "https://registry.npmmirror.com/p-locate/-/p-locate-4.1.0.tgz", "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "dev": true, "requires": { @@ -5973,19 +5973,19 @@ }, "p-try": { "version": "2.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/p-try/-/p-try-2.2.0.tgz", + "resolved": "https://registry.npmmirror.com/p-try/-/p-try-2.2.0.tgz", "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", "dev": true }, "path-exists": { "version": "4.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/path-exists/-/path-exists-4.0.0.tgz", + "resolved": "https://registry.npmmirror.com/path-exists/-/path-exists-4.0.0.tgz", "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", "dev": true }, "pkg-dir": { "version": "4.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/pkg-dir/-/pkg-dir-4.2.0.tgz", + "resolved": "https://registry.npmmirror.com/pkg-dir/-/pkg-dir-4.2.0.tgz", "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", "dev": true, "requires": { @@ -5994,7 +5994,7 @@ }, "semver": { "version": "6.3.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/semver/-/semver-6.3.0.tgz", + "resolved": "https://registry.npmmirror.com/semver/-/semver-6.3.0.tgz", "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true } @@ -6012,7 +6012,7 @@ "dependencies": { "debug": { "version": "3.2.7", - "resolved": "http://173.15.15.82:8081/repository/npm-all/debug/-/debug-3.2.7.tgz", + "resolved": "https://registry.npmmirror.com/debug/-/debug-3.2.7.tgz", "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, "requires": { @@ -6021,7 +6021,7 @@ }, "ms": { "version": "2.1.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/ms/-/ms-2.1.3.tgz", + "resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.3.tgz", "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", "dev": true } @@ -6029,7 +6029,7 @@ }, "eslint-plugin-flowtype": { "version": "2.39.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/eslint-plugin-flowtype/-/eslint-plugin-flowtype-2.39.1.tgz", + "resolved": "https://registry.npmmirror.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-2.39.1.tgz", "integrity": "sha512-RiQv+7Z9QDJuzt+NO8sYgkLGT+h+WeCrxP7y8lI7wpU41x3x/2o3PGtHk9ck8QnA9/mlbNcy/hG0eKvmd7npaA==", "dev": true, "requires": { @@ -6038,7 +6038,7 @@ }, "eslint-plugin-import": { "version": "2.8.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/eslint-plugin-import/-/eslint-plugin-import-2.8.0.tgz", + "resolved": "https://registry.npmmirror.com/eslint-plugin-import/-/eslint-plugin-import-2.8.0.tgz", "integrity": "sha512-Rf7dfKJxZ16QuTgVv1OYNxkZcsu/hULFnC+e+w0Gzi6jMC3guQoWQgxYxc54IDRinlb6/0v5z/PxxIKmVctN+g==", "dev": true, "requires": { @@ -6125,7 +6125,7 @@ }, "eslint-plugin-jsx-a11y": { "version": "5.1.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-5.1.1.tgz", + "resolved": "https://registry.npmmirror.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-5.1.1.tgz", "integrity": "sha512-5I9SpoP7gT4wBFOtXT8/tXNPYohHBVfyVfO17vkbC7r9kEIxYJF12D3pKqhk8+xnk12rfxKClS3WCFpVckFTPQ==", "dev": true, "requires": { @@ -6140,7 +6140,7 @@ }, "eslint-plugin-react": { "version": "7.4.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/eslint-plugin-react/-/eslint-plugin-react-7.4.0.tgz", + "resolved": "https://registry.npmmirror.com/eslint-plugin-react/-/eslint-plugin-react-7.4.0.tgz", "integrity": "sha512-tvjU9u3VqmW2vVuYnE8Qptq+6ji4JltjOjJ9u7VAOxVYkUkyBZWRvNYKbDv5fN+L6wiA+4we9+qQahZ0m63XEA==", "dev": true, "requires": { @@ -6152,7 +6152,7 @@ "dependencies": { "jsx-ast-utils": { "version": "2.4.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/jsx-ast-utils/-/jsx-ast-utils-2.4.1.tgz", + "resolved": "https://registry.npmmirror.com/jsx-ast-utils/-/jsx-ast-utils-2.4.1.tgz", "integrity": "sha512-z1xSldJ6imESSzOjd3NNkieVJKRlKYSOtMG8SFyCj2FIrvSaSuli/WjpBkEzCBoR9bYYYFgqJw61Xhu7Lcgk+w==", "dev": true, "requires": { @@ -6164,7 +6164,7 @@ }, "eslint-scope": { "version": "3.7.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/eslint-scope/-/eslint-scope-3.7.3.tgz", + "resolved": "https://registry.npmmirror.com/eslint-scope/-/eslint-scope-3.7.3.tgz", "integrity": "sha512-W+B0SvF4gamyCTmUc+uITPY0989iXVfKvhwtmJocTaYoc/3khEHmEmvfY/Gn9HA9VV75jrQECsHizkNw1b68FA==", "dev": true, "requires": { @@ -6174,7 +6174,7 @@ }, "espree": { "version": "3.5.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/espree/-/espree-3.5.4.tgz", + "resolved": "https://registry.npmmirror.com/espree/-/espree-3.5.4.tgz", "integrity": "sha512-yAcIQxtmMiB/jL32dzEp2enBeidsB7xWPLNiw3IIkpVds1P+h7qF9YwJq1yUNzp2OKXgAprs4F61ih66UsoD1A==", "dev": true, "requires": { @@ -6184,12 +6184,12 @@ }, "esprima": { "version": "4.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/esprima/-/esprima-4.0.1.tgz", + "resolved": "https://registry.npmmirror.com/esprima/-/esprima-4.0.1.tgz", "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" }, "esquery": { "version": "1.4.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/esquery/-/esquery-1.4.0.tgz", + "resolved": "https://registry.npmmirror.com/esquery/-/esquery-1.4.0.tgz", "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", "dev": true, "requires": { @@ -6206,7 +6206,7 @@ }, "esrecurse": { "version": "4.3.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/esrecurse/-/esrecurse-4.3.0.tgz", + "resolved": "https://registry.npmmirror.com/esrecurse/-/esrecurse-4.3.0.tgz", "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", "dev": true, "requires": { @@ -6223,12 +6223,12 @@ }, "estraverse": { "version": "4.3.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/estraverse/-/estraverse-4.3.0.tgz", + "resolved": "https://registry.npmmirror.com/estraverse/-/estraverse-4.3.0.tgz", "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" }, "esutils": { "version": "2.0.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/esutils/-/esutils-2.0.3.tgz", + "resolved": "https://registry.npmmirror.com/esutils/-/esutils-2.0.3.tgz", "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" }, "etag": { @@ -6249,7 +6249,7 @@ }, "events": { "version": "3.3.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/events/-/events-3.3.0.tgz", + "resolved": "https://registry.npmmirror.com/events/-/events-3.3.0.tgz", "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", "dev": true }, @@ -6264,7 +6264,7 @@ }, "evp_bytestokey": { "version": "1.0.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", + "resolved": "https://registry.npmmirror.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", "dev": true, "requires": { @@ -6274,7 +6274,7 @@ }, "exec-sh": { "version": "0.2.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/exec-sh/-/exec-sh-0.2.2.tgz", + "resolved": "https://registry.npmmirror.com/exec-sh/-/exec-sh-0.2.2.tgz", "integrity": "sha512-FIUCJz1RbuS0FKTdaAafAByGS0CPvU3R0MeHxgtl+djzCc//F8HakL8GzmVNZanasTbTAY/3DRFA0KpVqj/eAw==", "requires": { "merge": "^1.2.0" @@ -6395,7 +6395,7 @@ }, "extend": { "version": "3.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/extend/-/extend-3.0.2.tgz", + "resolved": "https://registry.npmmirror.com/extend/-/extend-3.0.2.tgz", "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" }, "extend-shallow": { @@ -6409,7 +6409,7 @@ "dependencies": { "is-extendable": { "version": "1.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-extendable/-/is-extendable-1.0.1.tgz", + "resolved": "https://registry.npmmirror.com/is-extendable/-/is-extendable-1.0.1.tgz", "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", "requires": { "is-plain-object": "^2.0.4" @@ -6430,7 +6430,7 @@ "dependencies": { "iconv-lite": { "version": "0.4.24", - "resolved": "http://173.15.15.82:8081/repository/npm-all/iconv-lite/-/iconv-lite-0.4.24.tgz", + "resolved": "https://registry.npmmirror.com/iconv-lite/-/iconv-lite-0.4.24.tgz", "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", "dev": true, "requires": { @@ -6454,17 +6454,17 @@ }, "fast-deep-equal": { "version": "3.1.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "resolved": "https://registry.npmmirror.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" }, "fast-diff": { "version": "1.1.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/fast-diff/-/fast-diff-1.1.2.tgz", + "resolved": "https://registry.npmmirror.com/fast-diff/-/fast-diff-1.1.2.tgz", "integrity": "sha512-KaJUt+M9t1qaIteSvjc6P3RbMdXsNhK61GRftR6SNxqmhthcd9MGIi4T+o0jD8LUSpSnSKXE20nLtJ3fOHxQig==" }, "fast-glob": { "version": "2.2.7", - "resolved": "http://173.15.15.82:8081/repository/npm-all/fast-glob/-/fast-glob-2.2.7.tgz", + "resolved": "https://registry.npmmirror.com/fast-glob/-/fast-glob-2.2.7.tgz", "integrity": "sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==", "requires": { "@mrmlnc/readdir-enhanced": "^2.2.1", @@ -6487,7 +6487,7 @@ }, "braces": { "version": "2.3.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/braces/-/braces-2.3.2.tgz", + "resolved": "https://registry.npmmirror.com/braces/-/braces-2.3.2.tgz", "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", "requires": { "arr-flatten": "^1.1.0", @@ -6588,7 +6588,7 @@ }, "is-descriptor": { "version": "0.1.6", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-descriptor/-/is-descriptor-0.1.6.tgz", + "resolved": "https://registry.npmmirror.com/is-descriptor/-/is-descriptor-0.1.6.tgz", "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", "requires": { "is-accessor-descriptor": "^0.1.6", @@ -6598,14 +6598,14 @@ }, "kind-of": { "version": "5.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/kind-of/-/kind-of-5.1.0.tgz", + "resolved": "https://registry.npmmirror.com/kind-of/-/kind-of-5.1.0.tgz", "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" } } }, "extglob": { "version": "2.0.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/extglob/-/extglob-2.0.4.tgz", + "resolved": "https://registry.npmmirror.com/extglob/-/extglob-2.0.4.tgz", "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", "requires": { "array-unique": "^0.3.2", @@ -6678,7 +6678,7 @@ }, "is-accessor-descriptor": { "version": "1.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "resolved": "https://registry.npmmirror.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", "requires": { "kind-of": "^6.0.0" @@ -6691,7 +6691,7 @@ }, "is-data-descriptor": { "version": "1.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "resolved": "https://registry.npmmirror.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", "requires": { "kind-of": "^6.0.0" @@ -6699,7 +6699,7 @@ }, "is-descriptor": { "version": "1.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-descriptor/-/is-descriptor-1.0.2.tgz", + "resolved": "https://registry.npmmirror.com/is-descriptor/-/is-descriptor-1.0.2.tgz", "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", "requires": { "is-accessor-descriptor": "^1.0.0", @@ -6745,12 +6745,12 @@ }, "kind-of": { "version": "6.0.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/kind-of/-/kind-of-6.0.3.tgz", + "resolved": "https://registry.npmmirror.com/kind-of/-/kind-of-6.0.3.tgz", "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" }, "micromatch": { "version": "3.1.10", - "resolved": "http://173.15.15.82:8081/repository/npm-all/micromatch/-/micromatch-3.1.10.tgz", + "resolved": "https://registry.npmmirror.com/micromatch/-/micromatch-3.1.10.tgz", "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", "requires": { "arr-diff": "^4.0.0", @@ -6772,7 +6772,7 @@ }, "fast-json-stable-stringify": { "version": "2.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "resolved": "https://registry.npmmirror.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" }, "fast-levenshtein": { @@ -6782,7 +6782,7 @@ }, "faye-websocket": { "version": "0.11.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/faye-websocket/-/faye-websocket-0.11.4.tgz", + "resolved": "https://registry.npmmirror.com/faye-websocket/-/faye-websocket-0.11.4.tgz", "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", "dev": true, "requires": { @@ -6799,7 +6799,7 @@ }, "fbemitter": { "version": "3.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/fbemitter/-/fbemitter-3.0.0.tgz", + "resolved": "https://registry.npmmirror.com/fbemitter/-/fbemitter-3.0.0.tgz", "integrity": "sha512-KWKaceCwKQU0+HPoop6gn4eOHk50bBv/VxjJtGMfwmJt3D29JpN4H4eisCtIPA+a8GVBam+ldMMpMjJUvpDyHw==", "dev": true, "requires": { @@ -6808,7 +6808,7 @@ "dependencies": { "fbjs": { "version": "3.0.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/fbjs/-/fbjs-3.0.4.tgz", + "resolved": "https://registry.npmmirror.com/fbjs/-/fbjs-3.0.4.tgz", "integrity": "sha512-ucV0tDODnGV3JCnnkmoszb5lf4bNpzjv80K41wd4k798Etq+UYD0y0TIfalLjZoKgjive6/adkRnszwapiDgBQ==", "dev": true, "requires": { @@ -6823,7 +6823,7 @@ }, "promise": { "version": "7.3.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/promise/-/promise-7.3.1.tgz", + "resolved": "https://registry.npmmirror.com/promise/-/promise-7.3.1.tgz", "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", "dev": true, "requires": { @@ -6859,7 +6859,7 @@ }, "promise": { "version": "7.3.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/promise/-/promise-7.3.1.tgz", + "resolved": "https://registry.npmmirror.com/promise/-/promise-7.3.1.tgz", "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", "requires": { "asap": "~2.0.3" @@ -6869,18 +6869,18 @@ }, "fbjs-css-vars": { "version": "1.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz", + "resolved": "https://registry.npmmirror.com/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz", "integrity": "sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==", "dev": true }, "fecha": { "version": "2.3.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/fecha/-/fecha-2.3.3.tgz", + "resolved": "https://registry.npmmirror.com/fecha/-/fecha-2.3.3.tgz", "integrity": "sha512-lUGBnIamTAwk4znq5BcqsDaxSmZ9nDVJaij6NvRt/Tg4R69gERA+otPKbS86ROw9nxVMw2/mp1fnaiWqbs6Sdg==" }, "figgy-pudding": { "version": "3.5.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/figgy-pudding/-/figgy-pudding-3.5.2.tgz", + "resolved": "https://registry.npmmirror.com/figgy-pudding/-/figgy-pudding-3.5.2.tgz", "integrity": "sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==", "dev": true }, @@ -6904,7 +6904,7 @@ }, "file-loader": { "version": "6.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/file-loader/-/file-loader-6.2.0.tgz", + "resolved": "https://registry.npmmirror.com/file-loader/-/file-loader-6.2.0.tgz", "integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==", "dev": true, "requires": { @@ -6934,7 +6934,7 @@ }, "schema-utils": { "version": "3.1.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/schema-utils/-/schema-utils-3.1.1.tgz", + "resolved": "https://registry.npmmirror.com/schema-utils/-/schema-utils-3.1.1.tgz", "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", "dev": true, "requires": { @@ -6947,7 +6947,7 @@ }, "file-uri-to-path": { "version": "1.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "resolved": "https://registry.npmmirror.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", "optional": true }, @@ -6967,12 +6967,12 @@ }, "filesize": { "version": "3.6.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/filesize/-/filesize-3.6.1.tgz", + "resolved": "https://registry.npmmirror.com/filesize/-/filesize-3.6.1.tgz", "integrity": "sha512-7KjR1vv6qnicaPMi1iiTcI85CyYwRO/PSFCu6SvqL8jN2Wjt/NIYQTFtFs7fSDCYOstUkEWIQGFUg5YZQfjlcg==" }, "fill-range": { "version": "2.2.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/fill-range/-/fill-range-2.2.4.tgz", + "resolved": "https://registry.npmmirror.com/fill-range/-/fill-range-2.2.4.tgz", "integrity": "sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q==", "requires": { "is-number": "^2.1.0", @@ -7029,7 +7029,7 @@ }, "findup-sync": { "version": "3.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/findup-sync/-/findup-sync-3.0.0.tgz", + "resolved": "https://registry.npmmirror.com/findup-sync/-/findup-sync-3.0.0.tgz", "integrity": "sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==", "dev": true, "requires": { @@ -7053,7 +7053,7 @@ }, "braces": { "version": "2.3.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/braces/-/braces-2.3.2.tgz", + "resolved": "https://registry.npmmirror.com/braces/-/braces-2.3.2.tgz", "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", "dev": true, "requires": { @@ -7164,7 +7164,7 @@ }, "is-descriptor": { "version": "0.1.6", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-descriptor/-/is-descriptor-0.1.6.tgz", + "resolved": "https://registry.npmmirror.com/is-descriptor/-/is-descriptor-0.1.6.tgz", "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", "dev": true, "requires": { @@ -7175,7 +7175,7 @@ }, "kind-of": { "version": "5.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/kind-of/-/kind-of-5.1.0.tgz", + "resolved": "https://registry.npmmirror.com/kind-of/-/kind-of-5.1.0.tgz", "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", "dev": true } @@ -7183,7 +7183,7 @@ }, "extglob": { "version": "2.0.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/extglob/-/extglob-2.0.4.tgz", + "resolved": "https://registry.npmmirror.com/extglob/-/extglob-2.0.4.tgz", "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", "dev": true, "requires": { @@ -7242,7 +7242,7 @@ }, "is-accessor-descriptor": { "version": "1.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "resolved": "https://registry.npmmirror.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", "dev": true, "requires": { @@ -7257,7 +7257,7 @@ }, "is-data-descriptor": { "version": "1.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "resolved": "https://registry.npmmirror.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", "dev": true, "requires": { @@ -7266,7 +7266,7 @@ }, "is-descriptor": { "version": "1.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-descriptor/-/is-descriptor-1.0.2.tgz", + "resolved": "https://registry.npmmirror.com/is-descriptor/-/is-descriptor-1.0.2.tgz", "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", "dev": true, "requires": { @@ -7318,13 +7318,13 @@ }, "kind-of": { "version": "6.0.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/kind-of/-/kind-of-6.0.3.tgz", + "resolved": "https://registry.npmmirror.com/kind-of/-/kind-of-6.0.3.tgz", "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", "dev": true }, "micromatch": { "version": "3.1.10", - "resolved": "http://173.15.15.82:8081/repository/npm-all/micromatch/-/micromatch-3.1.10.tgz", + "resolved": "https://registry.npmmirror.com/micromatch/-/micromatch-3.1.10.tgz", "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", "dev": true, "requires": { @@ -7347,7 +7347,7 @@ }, "flat-cache": { "version": "1.3.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/flat-cache/-/flat-cache-1.3.4.tgz", + "resolved": "https://registry.npmmirror.com/flat-cache/-/flat-cache-1.3.4.tgz", "integrity": "sha512-VwyB3Lkgacfik2vhqR4uv2rvebqmDvFu4jlN/C1RzWoJEo8I7z4Q404oiqYCkq41mni8EzQnm95emU9seckwtg==", "dev": true, "requires": { @@ -7359,7 +7359,7 @@ }, "flush-write-stream": { "version": "1.1.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/flush-write-stream/-/flush-write-stream-1.1.1.tgz", + "resolved": "https://registry.npmmirror.com/flush-write-stream/-/flush-write-stream-1.1.1.tgz", "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", "dev": true, "requires": { @@ -7369,7 +7369,7 @@ }, "flux": { "version": "4.0.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/flux/-/flux-4.0.3.tgz", + "resolved": "https://registry.npmmirror.com/flux/-/flux-4.0.3.tgz", "integrity": "sha512-yKAbrp7JhZhj6uiT1FTuVMlIAT1J4jqEyBpFApi1kxpGZCvacMVc/t1pMQyotqHhAgvoE3bNvAykhCo2CLjnYw==", "dev": true, "requires": { @@ -7379,7 +7379,7 @@ "dependencies": { "fbjs": { "version": "3.0.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/fbjs/-/fbjs-3.0.4.tgz", + "resolved": "https://registry.npmmirror.com/fbjs/-/fbjs-3.0.4.tgz", "integrity": "sha512-ucV0tDODnGV3JCnnkmoszb5lf4bNpzjv80K41wd4k798Etq+UYD0y0TIfalLjZoKgjive6/adkRnszwapiDgBQ==", "dev": true, "requires": { @@ -7394,7 +7394,7 @@ }, "promise": { "version": "7.3.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/promise/-/promise-7.3.1.tgz", + "resolved": "https://registry.npmmirror.com/promise/-/promise-7.3.1.tgz", "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", "dev": true, "requires": { @@ -7441,7 +7441,7 @@ }, "for-each": { "version": "0.3.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/for-each/-/for-each-0.3.3.tgz", + "resolved": "https://registry.npmmirror.com/for-each/-/for-each-0.3.3.tgz", "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", "requires": { "is-callable": "^1.1.3" @@ -7467,7 +7467,7 @@ }, "fork-ts-checker-webpack-plugin": { "version": "3.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-3.1.0.tgz", + "resolved": "https://registry.npmmirror.com/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-3.1.0.tgz", "integrity": "sha512-6OkRfjuNMNqb14f01xokcWcKV5Ekknc2FvziNpcTYru+kxIYFA2MtuuBI19MHThZnjSBhoi35Dcq+I0oUkFjmQ==", "requires": { "babel-code-frame": "^6.22.0", @@ -7492,7 +7492,7 @@ }, "braces": { "version": "2.3.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/braces/-/braces-2.3.2.tgz", + "resolved": "https://registry.npmmirror.com/braces/-/braces-2.3.2.tgz", "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", "requires": { "arr-flatten": "^1.1.0", @@ -7519,7 +7519,7 @@ }, "chalk": { "version": "2.4.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/chalk/-/chalk-2.4.2.tgz", + "resolved": "https://registry.npmmirror.com/chalk/-/chalk-2.4.2.tgz", "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "requires": { "ansi-styles": "^3.2.1", @@ -7603,7 +7603,7 @@ }, "is-descriptor": { "version": "0.1.6", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-descriptor/-/is-descriptor-0.1.6.tgz", + "resolved": "https://registry.npmmirror.com/is-descriptor/-/is-descriptor-0.1.6.tgz", "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", "requires": { "is-accessor-descriptor": "^0.1.6", @@ -7613,14 +7613,14 @@ }, "kind-of": { "version": "5.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/kind-of/-/kind-of-5.1.0.tgz", + "resolved": "https://registry.npmmirror.com/kind-of/-/kind-of-5.1.0.tgz", "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" } } }, "extglob": { "version": "2.0.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/extglob/-/extglob-2.0.4.tgz", + "resolved": "https://registry.npmmirror.com/extglob/-/extglob-2.0.4.tgz", "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", "requires": { "array-unique": "^0.3.2", @@ -7674,7 +7674,7 @@ }, "is-accessor-descriptor": { "version": "1.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "resolved": "https://registry.npmmirror.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", "requires": { "kind-of": "^6.0.0" @@ -7687,7 +7687,7 @@ }, "is-data-descriptor": { "version": "1.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "resolved": "https://registry.npmmirror.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", "requires": { "kind-of": "^6.0.0" @@ -7695,7 +7695,7 @@ }, "is-descriptor": { "version": "1.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-descriptor/-/is-descriptor-1.0.2.tgz", + "resolved": "https://registry.npmmirror.com/is-descriptor/-/is-descriptor-1.0.2.tgz", "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", "requires": { "is-accessor-descriptor": "^1.0.0", @@ -7728,12 +7728,12 @@ }, "kind-of": { "version": "6.0.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/kind-of/-/kind-of-6.0.3.tgz", + "resolved": "https://registry.npmmirror.com/kind-of/-/kind-of-6.0.3.tgz", "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" }, "micromatch": { "version": "3.1.10", - "resolved": "http://173.15.15.82:8081/repository/npm-all/micromatch/-/micromatch-3.1.10.tgz", + "resolved": "https://registry.npmmirror.com/micromatch/-/micromatch-3.1.10.tgz", "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", "requires": { "arr-diff": "^4.0.0", @@ -7755,7 +7755,7 @@ }, "form-data": { "version": "2.3.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/form-data/-/form-data-2.3.3.tgz", + "resolved": "https://registry.npmmirror.com/form-data/-/form-data-2.3.3.tgz", "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", "requires": { "asynckit": "^0.4.0", @@ -7765,7 +7765,7 @@ }, "forwarded": { "version": "0.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/forwarded/-/forwarded-0.2.0.tgz", + "resolved": "https://registry.npmmirror.com/forwarded/-/forwarded-0.2.0.tgz", "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", "dev": true }, @@ -7815,7 +7815,7 @@ }, "fs-minipass": { "version": "2.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/fs-minipass/-/fs-minipass-2.1.0.tgz", + "resolved": "https://registry.npmmirror.com/fs-minipass/-/fs-minipass-2.1.0.tgz", "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", "dev": true, "requires": { @@ -7824,7 +7824,7 @@ }, "fs-readdir-recursive": { "version": "1.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz", + "resolved": "https://registry.npmmirror.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz", "integrity": "sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA==", "dev": true }, @@ -7847,7 +7847,7 @@ }, "fsevents": { "version": "1.2.13", - "resolved": "http://173.15.15.82:8081/repository/npm-all/fsevents/-/fsevents-1.2.13.tgz", + "resolved": "https://registry.npmmirror.com/fsevents/-/fsevents-1.2.13.tgz", "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", "optional": true, "requires": { @@ -7857,7 +7857,7 @@ }, "fstream": { "version": "1.0.12", - "resolved": "http://173.15.15.82:8081/repository/npm-all/fstream/-/fstream-1.0.12.tgz", + "resolved": "https://registry.npmmirror.com/fstream/-/fstream-1.0.12.tgz", "integrity": "sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==", "dev": true, "requires": { @@ -7869,7 +7869,7 @@ }, "function-bind": { "version": "1.1.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/function-bind/-/function-bind-1.1.1.tgz", + "resolved": "https://registry.npmmirror.com/function-bind/-/function-bind-1.1.1.tgz", "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" }, "functional-red-black-tree": { @@ -7918,7 +7918,7 @@ }, "gaze": { "version": "1.1.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/gaze/-/gaze-1.1.3.tgz", + "resolved": "https://registry.npmmirror.com/gaze/-/gaze-1.1.3.tgz", "integrity": "sha512-BRdNm8hbWzFzWHERTrejLqwHDfS4GibPoq5wjTPIoJHoBtKGPg3xAFfxmM+9ztbXelxcf2hwQcaz1PtmFeue8g==", "dev": true, "requires": { @@ -7927,7 +7927,7 @@ }, "get-caller-file": { "version": "1.0.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/get-caller-file/-/get-caller-file-1.0.3.tgz", + "resolved": "https://registry.npmmirror.com/get-caller-file/-/get-caller-file-1.0.3.tgz", "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==" }, "get-intrinsic": { @@ -8020,7 +8020,7 @@ }, "global-modules": { "version": "2.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/global-modules/-/global-modules-2.0.0.tgz", + "resolved": "https://registry.npmmirror.com/global-modules/-/global-modules-2.0.0.tgz", "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", "requires": { "global-prefix": "^3.0.0" @@ -8028,7 +8028,7 @@ }, "global-prefix": { "version": "3.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/global-prefix/-/global-prefix-3.0.0.tgz", + "resolved": "https://registry.npmmirror.com/global-prefix/-/global-prefix-3.0.0.tgz", "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", "requires": { "ini": "^1.3.5", @@ -8038,19 +8038,19 @@ "dependencies": { "kind-of": { "version": "6.0.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/kind-of/-/kind-of-6.0.3.tgz", + "resolved": "https://registry.npmmirror.com/kind-of/-/kind-of-6.0.3.tgz", "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" } } }, "globals": { "version": "9.18.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/globals/-/globals-9.18.0.tgz", + "resolved": "https://registry.npmmirror.com/globals/-/globals-9.18.0.tgz", "integrity": "sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==" }, "globby": { "version": "8.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/globby/-/globby-8.0.2.tgz", + "resolved": "https://registry.npmmirror.com/globby/-/globby-8.0.2.tgz", "integrity": "sha512-yTzMmKygLp8RUpG1Ymu2VXPSJQZjNAZPD4ywgYEaG7e4tBJeUQBO8OpXrf1RCNcEs5alsoJYPAMiIHP0cmeC7w==", "requires": { "array-union": "^1.0.1", @@ -8119,12 +8119,12 @@ }, "gud": { "version": "1.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/gud/-/gud-1.0.0.tgz", + "resolved": "https://registry.npmmirror.com/gud/-/gud-1.0.0.tgz", "integrity": "sha512-zGEOVKFM5sVPPrYs7J5/hYEw2Pof8KCyOwyhG8sAF26mCAeUFAcYPu1mwB7hhpIP29zOIBaDqwuHdLp0jvZXjw==" }, "gzip-size": { "version": "5.1.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/gzip-size/-/gzip-size-5.1.1.tgz", + "resolved": "https://registry.npmmirror.com/gzip-size/-/gzip-size-5.1.1.tgz", "integrity": "sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==", "requires": { "duplexer": "^0.1.1", @@ -8133,7 +8133,7 @@ "dependencies": { "pify": { "version": "4.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/pify/-/pify-4.0.1.tgz", + "resolved": "https://registry.npmmirror.com/pify/-/pify-4.0.1.tgz", "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" } } @@ -8145,13 +8145,13 @@ }, "handle-thing": { "version": "2.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/handle-thing/-/handle-thing-2.0.1.tgz", + "resolved": "https://registry.npmmirror.com/handle-thing/-/handle-thing-2.0.1.tgz", "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", "dev": true }, "handlebars": { "version": "4.7.7", - "resolved": "http://173.15.15.82:8081/repository/npm-all/handlebars/-/handlebars-4.7.7.tgz", + "resolved": "https://registry.npmmirror.com/handlebars/-/handlebars-4.7.7.tgz", "integrity": "sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==", "requires": { "minimist": "^1.2.5", @@ -8176,7 +8176,7 @@ }, "happypack": { "version": "5.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/happypack/-/happypack-5.0.1.tgz", + "resolved": "https://registry.npmmirror.com/happypack/-/happypack-5.0.1.tgz", "integrity": "sha512-AzXVxLzX0mtv0T40Kic72rfcGK4Y2b/cDdtcyw+e+V/13ozl7x0+EZ4hvrL1rJ8MoefR9+FfUJQsK2irH0GWOw==", "dev": true, "requires": { @@ -8194,7 +8194,7 @@ }, "big.js": { "version": "3.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/big.js/-/big.js-3.2.0.tgz", + "resolved": "https://registry.npmmirror.com/big.js/-/big.js-3.2.0.tgz", "integrity": "sha512-+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q==", "dev": true }, @@ -8224,7 +8224,7 @@ }, "har-validator": { "version": "5.1.5", - "resolved": "http://173.15.15.82:8081/repository/npm-all/har-validator/-/har-validator-5.1.5.tgz", + "resolved": "https://registry.npmmirror.com/har-validator/-/har-validator-5.1.5.tgz", "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", "requires": { "ajv": "^6.12.3", @@ -8233,7 +8233,7 @@ }, "has": { "version": "1.0.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/has/-/has-1.0.3.tgz", + "resolved": "https://registry.npmmirror.com/has/-/has-1.0.3.tgz", "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", "requires": { "function-bind": "^1.1.1" @@ -8264,7 +8264,7 @@ }, "has-tostringtag": { "version": "1.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "resolved": "https://registry.npmmirror.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz", "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", "requires": { "has-symbols": "^1.0.2" @@ -8337,7 +8337,7 @@ }, "hash-base": { "version": "3.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/hash-base/-/hash-base-3.1.0.tgz", + "resolved": "https://registry.npmmirror.com/hash-base/-/hash-base-3.1.0.tgz", "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", "dev": true, "requires": { @@ -8348,7 +8348,7 @@ "dependencies": { "readable-stream": { "version": "3.6.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/readable-stream/-/readable-stream-3.6.0.tgz", + "resolved": "https://registry.npmmirror.com/readable-stream/-/readable-stream-3.6.0.tgz", "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", "dev": true, "requires": { @@ -8367,7 +8367,7 @@ }, "hash.js": { "version": "1.1.7", - "resolved": "http://173.15.15.82:8081/repository/npm-all/hash.js/-/hash.js-1.1.7.tgz", + "resolved": "https://registry.npmmirror.com/hash.js/-/hash.js-1.1.7.tgz", "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", "dev": true, "requires": { @@ -8377,19 +8377,19 @@ }, "he": { "version": "1.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/he/-/he-1.2.0.tgz", + "resolved": "https://registry.npmmirror.com/he/-/he-1.2.0.tgz", "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", "dev": true }, "hex-color-regex": { "version": "1.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/hex-color-regex/-/hex-color-regex-1.1.0.tgz", + "resolved": "https://registry.npmmirror.com/hex-color-regex/-/hex-color-regex-1.1.0.tgz", "integrity": "sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==", "dev": true }, "history": { "version": "4.10.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/history/-/history-4.10.1.tgz", + "resolved": "https://registry.npmmirror.com/history/-/history-4.10.1.tgz", "integrity": "sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==", "requires": { "@babel/runtime": "^7.1.2", @@ -8428,7 +8428,7 @@ }, "hoist-non-react-statics": { "version": "3.3.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "resolved": "https://registry.npmmirror.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", "requires": { "react-is": "^16.7.0" @@ -8445,7 +8445,7 @@ }, "homedir-polyfill": { "version": "1.0.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", + "resolved": "https://registry.npmmirror.com/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", "dev": true, "requires": { @@ -8454,13 +8454,13 @@ }, "hoopy": { "version": "0.1.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/hoopy/-/hoopy-0.1.4.tgz", + "resolved": "https://registry.npmmirror.com/hoopy/-/hoopy-0.1.4.tgz", "integrity": "sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==", "dev": true }, "hosted-git-info": { "version": "2.8.9", - "resolved": "http://173.15.15.82:8081/repository/npm-all/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "resolved": "https://registry.npmmirror.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz", "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==" }, "hpack.js": { @@ -8489,7 +8489,7 @@ }, "html-encoding-sniffer": { "version": "1.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz", + "resolved": "https://registry.npmmirror.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz", "integrity": "sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw==", "requires": { "whatwg-encoding": "^1.0.1" @@ -8497,13 +8497,13 @@ }, "html-entities": { "version": "1.4.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/html-entities/-/html-entities-1.4.0.tgz", + "resolved": "https://registry.npmmirror.com/html-entities/-/html-entities-1.4.0.tgz", "integrity": "sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==", "dev": true }, "html-minifier-terser": { "version": "5.1.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz", + "resolved": "https://registry.npmmirror.com/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz", "integrity": "sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==", "dev": true, "requires": { @@ -8518,7 +8518,7 @@ "dependencies": { "commander": { "version": "4.1.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/commander/-/commander-4.1.1.tgz", + "resolved": "https://registry.npmmirror.com/commander/-/commander-4.1.1.tgz", "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", "dev": true } @@ -8526,7 +8526,7 @@ }, "html-webpack-plugin": { "version": "4.5.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/html-webpack-plugin/-/html-webpack-plugin-4.5.2.tgz", + "resolved": "https://registry.npmmirror.com/html-webpack-plugin/-/html-webpack-plugin-4.5.2.tgz", "integrity": "sha512-q5oYdzjKUIPQVjOosjgvCHQOv9Ett9CYYHlgvJeXG0qQvdSojnBq4vAdQBwn1+yGveAwHCoe/rMR86ozX3+c2A==", "dev": true, "requires": { @@ -8543,7 +8543,7 @@ }, "htmlparser2": { "version": "6.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/htmlparser2/-/htmlparser2-6.1.0.tgz", + "resolved": "https://registry.npmmirror.com/htmlparser2/-/htmlparser2-6.1.0.tgz", "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", "dev": true, "requires": { @@ -8588,7 +8588,7 @@ }, "http-proxy": { "version": "1.18.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/http-proxy/-/http-proxy-1.18.1.tgz", + "resolved": "https://registry.npmmirror.com/http-proxy/-/http-proxy-1.18.1.tgz", "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", "dev": true, "requires": { @@ -8599,7 +8599,7 @@ "dependencies": { "eventemitter3": { "version": "4.0.7", - "resolved": "http://173.15.15.82:8081/repository/npm-all/eventemitter3/-/eventemitter3-4.0.7.tgz", + "resolved": "https://registry.npmmirror.com/eventemitter3/-/eventemitter3-4.0.7.tgz", "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", "dev": true } @@ -8607,7 +8607,7 @@ }, "http-proxy-agent": { "version": "4.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", + "resolved": "https://registry.npmmirror.com/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", "requires": { "@tootallnate/once": "1", @@ -8625,14 +8625,14 @@ }, "ms": { "version": "2.1.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/ms/-/ms-2.1.2.tgz", + "resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" } } }, "http-proxy-middleware": { "version": "0.19.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz", + "resolved": "https://registry.npmmirror.com/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz", "integrity": "sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==", "dev": true, "requires": { @@ -8656,7 +8656,7 @@ }, "braces": { "version": "2.3.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/braces/-/braces-2.3.2.tgz", + "resolved": "https://registry.npmmirror.com/braces/-/braces-2.3.2.tgz", "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", "dev": true, "requires": { @@ -8767,7 +8767,7 @@ }, "is-descriptor": { "version": "0.1.6", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-descriptor/-/is-descriptor-0.1.6.tgz", + "resolved": "https://registry.npmmirror.com/is-descriptor/-/is-descriptor-0.1.6.tgz", "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", "dev": true, "requires": { @@ -8778,7 +8778,7 @@ }, "kind-of": { "version": "5.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/kind-of/-/kind-of-5.1.0.tgz", + "resolved": "https://registry.npmmirror.com/kind-of/-/kind-of-5.1.0.tgz", "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", "dev": true } @@ -8786,7 +8786,7 @@ }, "extglob": { "version": "2.0.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/extglob/-/extglob-2.0.4.tgz", + "resolved": "https://registry.npmmirror.com/extglob/-/extglob-2.0.4.tgz", "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", "dev": true, "requires": { @@ -8845,7 +8845,7 @@ }, "is-accessor-descriptor": { "version": "1.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "resolved": "https://registry.npmmirror.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", "dev": true, "requires": { @@ -8860,7 +8860,7 @@ }, "is-data-descriptor": { "version": "1.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "resolved": "https://registry.npmmirror.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", "dev": true, "requires": { @@ -8869,7 +8869,7 @@ }, "is-descriptor": { "version": "1.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-descriptor/-/is-descriptor-1.0.2.tgz", + "resolved": "https://registry.npmmirror.com/is-descriptor/-/is-descriptor-1.0.2.tgz", "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", "dev": true, "requires": { @@ -8921,13 +8921,13 @@ }, "kind-of": { "version": "6.0.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/kind-of/-/kind-of-6.0.3.tgz", + "resolved": "https://registry.npmmirror.com/kind-of/-/kind-of-6.0.3.tgz", "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", "dev": true }, "micromatch": { "version": "3.1.10", - "resolved": "http://173.15.15.82:8081/repository/npm-all/micromatch/-/micromatch-3.1.10.tgz", + "resolved": "https://registry.npmmirror.com/micromatch/-/micromatch-3.1.10.tgz", "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", "dev": true, "requires": { @@ -8983,19 +8983,19 @@ }, "ms": { "version": "2.1.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/ms/-/ms-2.1.2.tgz", + "resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" } } }, "hyphenate-style-name": { "version": "1.0.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/hyphenate-style-name/-/hyphenate-style-name-1.0.4.tgz", + "resolved": "https://registry.npmmirror.com/hyphenate-style-name/-/hyphenate-style-name-1.0.4.tgz", "integrity": "sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ==" }, "iconv-lite": { "version": "0.6.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/iconv-lite/-/iconv-lite-0.6.3.tgz", + "resolved": "https://registry.npmmirror.com/iconv-lite/-/iconv-lite-0.6.3.tgz", "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", "requires": { "safer-buffer": ">= 2.1.2 < 3.0.0" @@ -9003,7 +9003,7 @@ }, "icss-utils": { "version": "4.1.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/icss-utils/-/icss-utils-4.1.1.tgz", + "resolved": "https://registry.npmmirror.com/icss-utils/-/icss-utils-4.1.1.tgz", "integrity": "sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==", "dev": true, "requires": { @@ -9056,7 +9056,7 @@ }, "ieee754": { "version": "1.2.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/ieee754/-/ieee754-1.2.1.tgz", + "resolved": "https://registry.npmmirror.com/ieee754/-/ieee754-1.2.1.tgz", "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", "dev": true }, @@ -9068,28 +9068,28 @@ }, "ignore": { "version": "3.3.10", - "resolved": "http://173.15.15.82:8081/repository/npm-all/ignore/-/ignore-3.3.10.tgz", + "resolved": "https://registry.npmmirror.com/ignore/-/ignore-3.3.10.tgz", "integrity": "sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==" }, "image-size": { "version": "0.5.5", - "resolved": "http://173.15.15.82:8081/repository/npm-all/image-size/-/image-size-0.5.5.tgz", + "resolved": "https://registry.npmmirror.com/image-size/-/image-size-0.5.5.tgz", "integrity": "sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==", "optional": true }, "immediate": { "version": "3.0.6", - "resolved": "http://173.15.15.82:8081/repository/npm-all/immediate/-/immediate-3.0.6.tgz", + "resolved": "https://registry.npmmirror.com/immediate/-/immediate-3.0.6.tgz", "integrity": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==" }, "immer": { "version": "1.10.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/immer/-/immer-1.10.0.tgz", + "resolved": "https://registry.npmmirror.com/immer/-/immer-1.10.0.tgz", "integrity": "sha512-O3sR1/opvCDGLEVcvrGTMtLac8GJ5IwZC4puPrLuRj3l7ICKvkmA0vGuU9OW8mV9WIBRnaxp5GJh9IEAaNOoYg==" }, "immutability-helper": { "version": "2.9.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/immutability-helper/-/immutability-helper-2.9.1.tgz", + "resolved": "https://registry.npmmirror.com/immutability-helper/-/immutability-helper-2.9.1.tgz", "integrity": "sha512-r/RmRG8xO06s/k+PIaif2r5rGc3j4Yhc01jSBfwPCXDLYZwp/yxralI37Df1mwmuzcCsen/E/ITKcTEvc1PQmQ==", "requires": { "invariant": "^2.2.0" @@ -9135,7 +9135,7 @@ }, "import-local": { "version": "2.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/import-local/-/import-local-2.0.0.tgz", + "resolved": "https://registry.npmmirror.com/import-local/-/import-local-2.0.0.tgz", "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==", "dev": true, "requires": { @@ -9145,7 +9145,7 @@ "dependencies": { "find-up": { "version": "3.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/find-up/-/find-up-3.0.0.tgz", + "resolved": "https://registry.npmmirror.com/find-up/-/find-up-3.0.0.tgz", "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", "dev": true, "requires": { @@ -9154,7 +9154,7 @@ }, "locate-path": { "version": "3.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/locate-path/-/locate-path-3.0.0.tgz", + "resolved": "https://registry.npmmirror.com/locate-path/-/locate-path-3.0.0.tgz", "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", "dev": true, "requires": { @@ -9164,7 +9164,7 @@ }, "p-limit": { "version": "2.3.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/p-limit/-/p-limit-2.3.0.tgz", + "resolved": "https://registry.npmmirror.com/p-limit/-/p-limit-2.3.0.tgz", "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, "requires": { @@ -9173,7 +9173,7 @@ }, "p-locate": { "version": "3.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/p-locate/-/p-locate-3.0.0.tgz", + "resolved": "https://registry.npmmirror.com/p-locate/-/p-locate-3.0.0.tgz", "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", "dev": true, "requires": { @@ -9182,13 +9182,13 @@ }, "p-try": { "version": "2.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/p-try/-/p-try-2.2.0.tgz", + "resolved": "https://registry.npmmirror.com/p-try/-/p-try-2.2.0.tgz", "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", "dev": true }, "pkg-dir": { "version": "3.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/pkg-dir/-/pkg-dir-3.0.0.tgz", + "resolved": "https://registry.npmmirror.com/pkg-dir/-/pkg-dir-3.0.0.tgz", "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", "dev": true, "requires": { @@ -9205,13 +9205,13 @@ }, "in-publish": { "version": "2.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/in-publish/-/in-publish-2.0.1.tgz", + "resolved": "https://registry.npmmirror.com/in-publish/-/in-publish-2.0.1.tgz", "integrity": "sha512-oDM0kUSNFC31ShNxHKUyfZKy8ZeXZBWMjMdZHKLOk13uvT27VTL/QzRGfRUcevJhpkZAvlhPYuXkF7eNWrtyxQ==", "dev": true }, "indefinite-observable": { "version": "1.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/indefinite-observable/-/indefinite-observable-1.0.2.tgz", + "resolved": "https://registry.npmmirror.com/indefinite-observable/-/indefinite-observable-1.0.2.tgz", "integrity": "sha512-Mps0898zEduHyPhb7UCgNmfzlqNZknVmaFz5qzr0mm04YQ5FGLhAyK/dJ+NaRxGyR6juQXIxh5Ev0xx+qq0nYA==", "requires": { "symbol-observable": "1.2.0" @@ -9234,7 +9234,7 @@ }, "infer-owner": { "version": "1.0.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/infer-owner/-/infer-owner-1.0.4.tgz", + "resolved": "https://registry.npmmirror.com/infer-owner/-/infer-owner-1.0.4.tgz", "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", "dev": true }, @@ -9249,12 +9249,12 @@ }, "inherits": { "version": "2.0.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/inherits/-/inherits-2.0.4.tgz", + "resolved": "https://registry.npmmirror.com/inherits/-/inherits-2.0.4.tgz", "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" }, "ini": { "version": "1.3.8", - "resolved": "http://173.15.15.82:8081/repository/npm-all/ini/-/ini-1.3.8.tgz", + "resolved": "https://registry.npmmirror.com/ini/-/ini-1.3.8.tgz", "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" }, "inquirer": { @@ -9287,7 +9287,7 @@ }, "chalk": { "version": "2.4.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/chalk/-/chalk-2.4.2.tgz", + "resolved": "https://registry.npmmirror.com/chalk/-/chalk-2.4.2.tgz", "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, "requires": { @@ -9309,12 +9309,12 @@ }, "install": { "version": "0.12.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/install/-/install-0.12.2.tgz", + "resolved": "https://registry.npmmirror.com/install/-/install-0.12.2.tgz", "integrity": "sha512-+7thTb4Rpvs9mnlhHKGZFJbGOO6kyMgy+gg0sgM5vFzIFK0wrCYXqdlaM71Bi289DTuPHf61puMFsaZBcwDIrg==" }, "internal-ip": { "version": "4.3.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/internal-ip/-/internal-ip-4.3.0.tgz", + "resolved": "https://registry.npmmirror.com/internal-ip/-/internal-ip-4.3.0.tgz", "integrity": "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==", "dev": true, "requires": { @@ -9324,7 +9324,7 @@ }, "internal-slot": { "version": "1.0.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/internal-slot/-/internal-slot-1.0.3.tgz", + "resolved": "https://registry.npmmirror.com/internal-slot/-/internal-slot-1.0.3.tgz", "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==", "requires": { "get-intrinsic": "^1.1.0", @@ -9334,18 +9334,18 @@ }, "interpret": { "version": "1.4.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/interpret/-/interpret-1.4.0.tgz", + "resolved": "https://registry.npmmirror.com/interpret/-/interpret-1.4.0.tgz", "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", "dev": true }, "intersection-observer": { "version": "0.7.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/intersection-observer/-/intersection-observer-0.7.0.tgz", + "resolved": "https://registry.npmmirror.com/intersection-observer/-/intersection-observer-0.7.0.tgz", "integrity": "sha512-Id0Fij0HsB/vKWGeBe9PxeY45ttRiBmhFyyt/geBdDHBYNctMRTE3dC1U3ujzz3lap+hVXlEcVaB56kZP/eEUg==" }, "invariant": { "version": "2.2.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/invariant/-/invariant-2.2.4.tgz", + "resolved": "https://registry.npmmirror.com/invariant/-/invariant-2.2.4.tgz", "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", "requires": { "loose-envify": "^1.0.0" @@ -9370,7 +9370,7 @@ }, "ipaddr.js": { "version": "1.9.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "resolved": "https://registry.npmmirror.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz", "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", "dev": true }, @@ -9390,7 +9390,7 @@ }, "is-arguments": { "version": "1.1.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-arguments/-/is-arguments-1.1.1.tgz", + "resolved": "https://registry.npmmirror.com/is-arguments/-/is-arguments-1.1.1.tgz", "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", "requires": { "call-bind": "^1.0.2", @@ -9404,7 +9404,7 @@ }, "is-bigint": { "version": "1.0.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-bigint/-/is-bigint-1.0.4.tgz", + "resolved": "https://registry.npmmirror.com/is-bigint/-/is-bigint-1.0.4.tgz", "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", "requires": { "has-bigints": "^1.0.1" @@ -9420,7 +9420,7 @@ }, "is-boolean-object": { "version": "1.1.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "resolved": "https://registry.npmmirror.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz", "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", "requires": { "call-bind": "^1.0.2", @@ -9442,7 +9442,7 @@ }, "is-ci": { "version": "1.2.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-ci/-/is-ci-1.2.1.tgz", + "resolved": "https://registry.npmmirror.com/is-ci/-/is-ci-1.2.1.tgz", "integrity": "sha512-s6tfsaQaQi3JNciBH6shVqEDvhGut0SUXr31ag8Pd8BBbVVlcGfWhpPmEOoM6RJ5TFhbypvf5yyRw/VXW1IiWg==", "requires": { "ci-info": "^1.5.0" @@ -9480,7 +9480,7 @@ }, "is-date-object": { "version": "1.0.5", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-date-object/-/is-date-object-1.0.5.tgz", + "resolved": "https://registry.npmmirror.com/is-date-object/-/is-date-object-1.0.5.tgz", "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", "requires": { "has-tostringtag": "^1.0.0" @@ -9488,7 +9488,7 @@ }, "is-descriptor": { "version": "0.1.6", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-descriptor/-/is-descriptor-0.1.6.tgz", + "resolved": "https://registry.npmmirror.com/is-descriptor/-/is-descriptor-0.1.6.tgz", "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", "requires": { "is-accessor-descriptor": "^0.1.6", @@ -9498,7 +9498,7 @@ "dependencies": { "kind-of": { "version": "5.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/kind-of/-/kind-of-5.1.0.tgz", + "resolved": "https://registry.npmmirror.com/kind-of/-/kind-of-5.1.0.tgz", "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" } } @@ -9511,7 +9511,7 @@ }, "is-docker": { "version": "2.2.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-docker/-/is-docker-2.2.1.tgz", + "resolved": "https://registry.npmmirror.com/is-docker/-/is-docker-2.2.1.tgz", "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==" }, "is-dotfile": { @@ -9539,7 +9539,7 @@ }, "is-finite": { "version": "1.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-finite/-/is-finite-1.1.0.tgz", + "resolved": "https://registry.npmmirror.com/is-finite/-/is-finite-1.1.0.tgz", "integrity": "sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==" }, "is-fullwidth-code-point": { @@ -9549,7 +9549,7 @@ }, "is-function": { "version": "1.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-function/-/is-function-1.0.2.tgz", + "resolved": "https://registry.npmmirror.com/is-function/-/is-function-1.0.2.tgz", "integrity": "sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==" }, "is-glob": { @@ -9577,7 +9577,7 @@ }, "is-mobile": { "version": "2.2.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-mobile/-/is-mobile-2.2.2.tgz", + "resolved": "https://registry.npmmirror.com/is-mobile/-/is-mobile-2.2.2.tgz", "integrity": "sha512-wW/SXnYJkTjs++tVK5b6kVITZpAZPtUrt9SF80vvxGiF/Oywal+COk1jlRkiVq15RFNEQKQY31TkV24/1T5cVg==" }, "is-negative-zero": { @@ -9621,7 +9621,7 @@ }, "is-path-in-cwd": { "version": "1.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz", + "resolved": "https://registry.npmmirror.com/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz", "integrity": "sha512-FjV1RTW48E7CWM7eE/J2NJvAEEVektecDBVBE5Hh3nM1Jd0kvhHtX68Pr3xsDf857xt3Y4AkwVULK1Vku62aaQ==", "dev": true, "requires": { @@ -9644,7 +9644,7 @@ }, "is-plain-object": { "version": "2.0.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-plain-object/-/is-plain-object-2.0.4.tgz", + "resolved": "https://registry.npmmirror.com/is-plain-object/-/is-plain-object-2.0.4.tgz", "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", "requires": { "isobject": "^3.0.1" @@ -9664,7 +9664,7 @@ }, "is-potential-custom-element-name": { "version": "1.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", + "resolved": "https://registry.npmmirror.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==" }, "is-primitive": { @@ -9680,7 +9680,7 @@ }, "is-regex": { "version": "1.1.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-regex/-/is-regex-1.1.4.tgz", + "resolved": "https://registry.npmmirror.com/is-regex/-/is-regex-1.1.4.tgz", "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", "requires": { "call-bind": "^1.0.2", @@ -9689,19 +9689,19 @@ }, "is-resolvable": { "version": "1.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-resolvable/-/is-resolvable-1.1.0.tgz", + "resolved": "https://registry.npmmirror.com/is-resolvable/-/is-resolvable-1.1.0.tgz", "integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==", "dev": true }, "is-retry-allowed": { "version": "1.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz", + "resolved": "https://registry.npmmirror.com/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz", "integrity": "sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==", "dev": true }, "is-root": { "version": "2.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-root/-/is-root-2.1.0.tgz", + "resolved": "https://registry.npmmirror.com/is-root/-/is-root-2.1.0.tgz", "integrity": "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==" }, "is-stream": { @@ -9711,7 +9711,7 @@ }, "is-string": { "version": "1.0.7", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-string/-/is-string-1.0.7.tgz", + "resolved": "https://registry.npmmirror.com/is-string/-/is-string-1.0.7.tgz", "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", "requires": { "has-tostringtag": "^1.0.0" @@ -9719,7 +9719,7 @@ }, "is-symbol": { "version": "1.0.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-symbol/-/is-symbol-1.0.4.tgz", + "resolved": "https://registry.npmmirror.com/is-symbol/-/is-symbol-1.0.4.tgz", "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", "requires": { "has-symbols": "^1.0.2" @@ -9737,12 +9737,12 @@ }, "is-what": { "version": "3.14.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-what/-/is-what-3.14.1.tgz", + "resolved": "https://registry.npmmirror.com/is-what/-/is-what-3.14.1.tgz", "integrity": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==" }, "is-windows": { "version": "1.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-windows/-/is-windows-1.0.2.tgz", + "resolved": "https://registry.npmmirror.com/is-windows/-/is-windows-1.0.2.tgz", "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==" }, "is-wsl": { @@ -9784,7 +9784,7 @@ }, "istanbul-api": { "version": "1.3.7", - "resolved": "http://173.15.15.82:8081/repository/npm-all/istanbul-api/-/istanbul-api-1.3.7.tgz", + "resolved": "https://registry.npmmirror.com/istanbul-api/-/istanbul-api-1.3.7.tgz", "integrity": "sha512-4/ApBnMVeEPG3EkSzcw25wDe4N66wxwn+KKn6b47vyek8Xb3NBAcg4xfuQbS7BqcZuTX4wxfD5lVagdggR3gyA==", "requires": { "async": "^2.1.4", @@ -9802,12 +9802,12 @@ }, "istanbul-lib-coverage": { "version": "1.2.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/istanbul-lib-coverage/-/istanbul-lib-coverage-1.2.1.tgz", + "resolved": "https://registry.npmmirror.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.2.1.tgz", "integrity": "sha512-PzITeunAgyGbtY1ibVIUiV679EFChHjoMNRibEIobvmrCRaIgwLxNucOSimtNWUhEib/oO7QY2imD75JVgCJWQ==" }, "istanbul-lib-hook": { "version": "1.2.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/istanbul-lib-hook/-/istanbul-lib-hook-1.2.2.tgz", + "resolved": "https://registry.npmmirror.com/istanbul-lib-hook/-/istanbul-lib-hook-1.2.2.tgz", "integrity": "sha512-/Jmq7Y1VeHnZEQ3TL10VHyb564mn6VrQXHchON9Jf/AEcmQ3ZIiyD1BVzNOKTZf/G3gE+kiGK6SmpF9y3qGPLw==", "requires": { "append-transform": "^0.4.0" @@ -9815,7 +9815,7 @@ }, "istanbul-lib-instrument": { "version": "1.10.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/istanbul-lib-instrument/-/istanbul-lib-instrument-1.10.2.tgz", + "resolved": "https://registry.npmmirror.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.10.2.tgz", "integrity": "sha512-aWHxfxDqvh/ZlxR8BBaEPVSWDPUkGD63VjGQn3jcw8jCp7sHEMKcrj4xfJn/ABzdMEHiQNyvDQhqm5o8+SQg7A==", "requires": { "babel-generator": "^6.18.0", @@ -9829,7 +9829,7 @@ }, "istanbul-lib-report": { "version": "1.1.5", - "resolved": "http://173.15.15.82:8081/repository/npm-all/istanbul-lib-report/-/istanbul-lib-report-1.1.5.tgz", + "resolved": "https://registry.npmmirror.com/istanbul-lib-report/-/istanbul-lib-report-1.1.5.tgz", "integrity": "sha512-UsYfRMoi6QO/doUshYNqcKJqVmFe9w51GZz8BS3WB0lYxAllQYklka2wP9+dGZeHYaWIdcXUx8JGdbqaoXRXzw==", "requires": { "istanbul-lib-coverage": "^1.2.1", @@ -9855,7 +9855,7 @@ }, "istanbul-lib-source-maps": { "version": "1.2.6", - "resolved": "http://173.15.15.82:8081/repository/npm-all/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.6.tgz", + "resolved": "https://registry.npmmirror.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.6.tgz", "integrity": "sha512-TtbsY5GIHgbMsMiRw35YBHGpZ1DVFEO19vxxeiDMYaeOFOCzfnYVxvl6pOUIZR4dtPhAGpSMup8OyF8ubsaqEg==", "requires": { "debug": "^3.1.0", @@ -9874,7 +9874,7 @@ }, "istanbul-reports": { "version": "1.5.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/istanbul-reports/-/istanbul-reports-1.5.1.tgz", + "resolved": "https://registry.npmmirror.com/istanbul-reports/-/istanbul-reports-1.5.1.tgz", "integrity": "sha512-+cfoZ0UXzWjhAdzosCPP3AN8vvef8XDkWtTfgaN+7L3YTpNYITnCaEkceo5SEYy644VkHka/P1FvkWvrG/rrJw==", "requires": { "handlebars": "^4.0.3" @@ -9970,7 +9970,7 @@ }, "yargs": { "version": "7.1.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/yargs/-/yargs-7.1.2.tgz", + "resolved": "https://registry.npmmirror.com/yargs/-/yargs-7.1.2.tgz", "integrity": "sha512-ZEjj/dQYQy0Zx0lgLMLR8QuaqTihnxirir7EwUHp1Axq4e3+k8jXU5K0VLbNvedv1f4EWtBonDIZm0NUr+jCcA==", "requires": { "camelcase": "^3.0.0", @@ -10049,7 +10049,7 @@ }, "jest-haste-map": { "version": "20.0.5", - "resolved": "http://173.15.15.82:8081/repository/npm-all/jest-haste-map/-/jest-haste-map-20.0.5.tgz", + "resolved": "https://registry.npmmirror.com/jest-haste-map/-/jest-haste-map-20.0.5.tgz", "integrity": "sha512-0IKAQjUvuZjMCNi/0VNQQF74/H9KB67hsHJqGiwTWQC6XO5Azs7kLWm+6Q/dwuhvDUvABDOBMFK2/FwZ3sZ07Q==", "requires": { "fb-watchman": "^2.0.0", @@ -10196,7 +10196,7 @@ }, "yargs": { "version": "7.1.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/yargs/-/yargs-7.1.2.tgz", + "resolved": "https://registry.npmmirror.com/yargs/-/yargs-7.1.2.tgz", "integrity": "sha512-ZEjj/dQYQy0Zx0lgLMLR8QuaqTihnxirir7EwUHp1Axq4e3+k8jXU5K0VLbNvedv1f4EWtBonDIZm0NUr+jCcA==", "requires": { "camelcase": "^3.0.0", @@ -10256,7 +10256,7 @@ }, "jest-worker": { "version": "25.5.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/jest-worker/-/jest-worker-25.5.0.tgz", + "resolved": "https://registry.npmmirror.com/jest-worker/-/jest-worker-25.5.0.tgz", "integrity": "sha512-/dsSmUkIy5EBGfv/IjjqmFxrNAUpBERfGs1oHROyD7yxjG/w+t0GOJDX8O1k32ySmd7+a5IhnJU2qQFcJ4n1vw==", "dev": true, "requires": { @@ -10266,13 +10266,13 @@ "dependencies": { "has-flag": { "version": "4.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/has-flag/-/has-flag-4.0.0.tgz", + "resolved": "https://registry.npmmirror.com/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true }, "supports-color": { "version": "7.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/supports-color/-/supports-color-7.2.0.tgz", + "resolved": "https://registry.npmmirror.com/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "requires": { @@ -10283,22 +10283,22 @@ }, "js-base64": { "version": "2.6.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/js-base64/-/js-base64-2.6.4.tgz", + "resolved": "https://registry.npmmirror.com/js-base64/-/js-base64-2.6.4.tgz", "integrity": "sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ==" }, "js-cookie": { "version": "2.2.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/js-cookie/-/js-cookie-2.2.1.tgz", + "resolved": "https://registry.npmmirror.com/js-cookie/-/js-cookie-2.2.1.tgz", "integrity": "sha512-HvdH2LzI/EAZcUwA8+0nKNtWHqS+ZmijLA30RwZA0bo7ToCckjK5MkGhjED9KoRcXO6BaGI3I9UIzSA1FKFPOQ==" }, "js-tokens": { "version": "4.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/js-tokens/-/js-tokens-4.0.0.tgz", + "resolved": "https://registry.npmmirror.com/js-tokens/-/js-tokens-4.0.0.tgz", "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" }, "js-yaml": { "version": "3.14.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/js-yaml/-/js-yaml-3.14.1.tgz", + "resolved": "https://registry.npmmirror.com/js-yaml/-/js-yaml-3.14.1.tgz", "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", "requires": { "argparse": "^1.0.7", @@ -10307,7 +10307,7 @@ }, "js2wordcloud": { "version": "1.1.12", - "resolved": "http://173.15.15.82:8081/repository/npm-all/js2wordcloud/-/js2wordcloud-1.1.12.tgz", + "resolved": "https://registry.npmmirror.com/js2wordcloud/-/js2wordcloud-1.1.12.tgz", "integrity": "sha512-t/yK4nAMSYYxxg6RZ9+CrP1VWo0tTD/3ty4Mm/dq3Y2mH0Y0MZ5s4FcEukveEm7ryrtlB4dtHjppdQs74x53Mg==" }, "jsbn": { @@ -10355,7 +10355,7 @@ }, "json-parse-better-errors": { "version": "1.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "resolved": "https://registry.npmmirror.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", "dev": true }, @@ -10366,7 +10366,7 @@ }, "json-schema-traverse": { "version": "0.4.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "resolved": "https://registry.npmmirror.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" }, "json-stable-stringify": { @@ -10436,7 +10436,7 @@ }, "jss": { "version": "9.8.7", - "resolved": "http://173.15.15.82:8081/repository/npm-all/jss/-/jss-9.8.7.tgz", + "resolved": "https://registry.npmmirror.com/jss/-/jss-9.8.7.tgz", "integrity": "sha512-awj3XRZYxbrmmrx9LUSj5pXSUfm12m8xzi/VKeqI1ZwWBtQ0kVPTs3vYs32t4rFw83CgFDukA8wKzOE9sMQnoQ==", "requires": { "is-in-browser": "^1.1.3", @@ -10456,7 +10456,7 @@ }, "jss-camel-case": { "version": "6.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/jss-camel-case/-/jss-camel-case-6.1.0.tgz", + "resolved": "https://registry.npmmirror.com/jss-camel-case/-/jss-camel-case-6.1.0.tgz", "integrity": "sha512-HPF2Q7wmNW1t79mCqSeU2vdd/vFFGpkazwvfHMOhPlMgXrJDzdj9viA2SaHk9ZbD5pfL63a8ylp4++irYbbzMQ==", "requires": { "hyphenate-style-name": "^1.0.2" @@ -10464,7 +10464,7 @@ }, "jss-compose": { "version": "5.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/jss-compose/-/jss-compose-5.0.0.tgz", + "resolved": "https://registry.npmmirror.com/jss-compose/-/jss-compose-5.0.0.tgz", "integrity": "sha512-YofRYuiA0+VbeOw0VjgkyO380sA4+TWDrW52nSluD9n+1FWOlDzNbgpZ/Sb3Y46+DcAbOS21W5jo6SAqUEiuwA==", "requires": { "warning": "^3.0.0" @@ -10482,17 +10482,17 @@ }, "jss-default-unit": { "version": "8.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/jss-default-unit/-/jss-default-unit-8.0.2.tgz", + "resolved": "https://registry.npmmirror.com/jss-default-unit/-/jss-default-unit-8.0.2.tgz", "integrity": "sha512-WxNHrF/18CdoAGw2H0FqOEvJdREXVXLazn7PQYU7V6/BWkCV0GkmWsppNiExdw8dP4TU1ma1dT9zBNJ95feLmg==" }, "jss-expand": { "version": "5.3.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/jss-expand/-/jss-expand-5.3.0.tgz", + "resolved": "https://registry.npmmirror.com/jss-expand/-/jss-expand-5.3.0.tgz", "integrity": "sha512-NiM4TbDVE0ykXSAw6dfFmB1LIqXP/jdd0ZMnlvlGgEMkMt+weJIl8Ynq1DsuBY9WwkNyzWktdqcEW2VN0RAtQg==" }, "jss-extend": { "version": "6.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/jss-extend/-/jss-extend-6.2.0.tgz", + "resolved": "https://registry.npmmirror.com/jss-extend/-/jss-extend-6.2.0.tgz", "integrity": "sha512-YszrmcB6o9HOsKPszK7NeDBNNjVyiW864jfoiHoMlgMIg2qlxKw70axZHqgczXHDcoyi/0/ikP1XaHDPRvYtEA==", "requires": { "warning": "^3.0.0" @@ -10510,12 +10510,12 @@ }, "jss-global": { "version": "3.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/jss-global/-/jss-global-3.0.0.tgz", + "resolved": "https://registry.npmmirror.com/jss-global/-/jss-global-3.0.0.tgz", "integrity": "sha512-wxYn7vL+TImyQYGAfdplg7yaxnPQ9RaXY/cIA8hawaVnmmWxDHzBK32u1y+RAvWboa3lW83ya3nVZ/C+jyjZ5Q==" }, "jss-nested": { "version": "6.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/jss-nested/-/jss-nested-6.0.1.tgz", + "resolved": "https://registry.npmmirror.com/jss-nested/-/jss-nested-6.0.1.tgz", "integrity": "sha512-rn964TralHOZxoyEgeq3hXY8hyuCElnvQoVrQwKHVmu55VRDd6IqExAx9be5HgK0yN/+hQdgAXQl/GUrBbbSTA==", "requires": { "warning": "^3.0.0" @@ -10533,7 +10533,7 @@ }, "jss-preset-default": { "version": "4.5.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/jss-preset-default/-/jss-preset-default-4.5.0.tgz", + "resolved": "https://registry.npmmirror.com/jss-preset-default/-/jss-preset-default-4.5.0.tgz", "integrity": "sha512-qZbpRVtHT7hBPpZEBPFfafZKWmq3tA/An5RNqywDsZQGrlinIF/mGD9lmj6jGqu8GrED2SMHZ3pPKLmjCZoiaQ==", "requires": { "jss-camel-case": "^6.1.0", @@ -10550,12 +10550,12 @@ }, "jss-props-sort": { "version": "6.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/jss-props-sort/-/jss-props-sort-6.0.0.tgz", + "resolved": "https://registry.npmmirror.com/jss-props-sort/-/jss-props-sort-6.0.0.tgz", "integrity": "sha512-E89UDcrphmI0LzmvYk25Hp4aE5ZBsXqMWlkFXS0EtPkunJkRr+WXdCNYbXbksIPnKlBenGB9OxzQY+mVc70S+g==" }, "jss-template": { "version": "1.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/jss-template/-/jss-template-1.0.1.tgz", + "resolved": "https://registry.npmmirror.com/jss-template/-/jss-template-1.0.1.tgz", "integrity": "sha512-m5BqEWha17fmIVXm1z8xbJhY6GFJxNB9H68GVnCWPyGYfxiAgY9WTQyvDAVj+pYRgrXSOfN5V1T4+SzN1sJTeg==", "requires": { "warning": "^3.0.0" @@ -10573,7 +10573,7 @@ }, "jss-vendor-prefixer": { "version": "7.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/jss-vendor-prefixer/-/jss-vendor-prefixer-7.0.0.tgz", + "resolved": "https://registry.npmmirror.com/jss-vendor-prefixer/-/jss-vendor-prefixer-7.0.0.tgz", "integrity": "sha512-Agd+FKmvsI0HLcYXkvy8GYOw3AAASBUpsmIRvVQheps+JWaN892uFOInTr0DRydwaD91vSSUCU4NssschvF7MA==", "requires": { "css-vendor": "^0.3.8" @@ -10587,7 +10587,7 @@ }, "katex": { "version": "0.11.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/katex/-/katex-0.11.1.tgz", + "resolved": "https://registry.npmmirror.com/katex/-/katex-0.11.1.tgz", "integrity": "sha512-5oANDICCTX0NqYIyAiFCCwjQ7ERu3DQG2JFHLbYOf+fXaMoH8eg/zOq5WSYJsKMi/QebW+Eh3gSM+oss1H/bww==", "requires": { "commander": "^2.19.0" @@ -10600,7 +10600,7 @@ }, "killable": { "version": "1.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/killable/-/killable-1.0.1.tgz", + "resolved": "https://registry.npmmirror.com/killable/-/killable-1.0.1.tgz", "integrity": "sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==", "dev": true }, @@ -10621,7 +10621,7 @@ }, "last-call-webpack-plugin": { "version": "3.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/last-call-webpack-plugin/-/last-call-webpack-plugin-3.0.0.tgz", + "resolved": "https://registry.npmmirror.com/last-call-webpack-plugin/-/last-call-webpack-plugin-3.0.0.tgz", "integrity": "sha512-7KI2l2GIZa9p2spzPIVZBYyNKkN+e/SQPpnjlTiPhdbDW3F86tdKKELxKpzJ5sgU19wQWsACULZmpTPYHeWO5w==", "dev": true, "requires": { @@ -10653,7 +10653,7 @@ }, "less": { "version": "3.13.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/less/-/less-3.13.1.tgz", + "resolved": "https://registry.npmmirror.com/less/-/less-3.13.1.tgz", "integrity": "sha512-SwA1aQXGUvp+P5XdZslUOhhLnClSLIjWvJhmd+Vgib5BFIr9lMNlQwmwUNOjXThF/A0x+MCYYPeWEfeWiLRnTw==", "requires": { "copy-anything": "^2.0.1", @@ -10692,7 +10692,7 @@ }, "less-loader": { "version": "4.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/less-loader/-/less-loader-4.1.0.tgz", + "resolved": "https://registry.npmmirror.com/less-loader/-/less-loader-4.1.0.tgz", "integrity": "sha512-KNTsgCE9tMOM70+ddxp9yyt9iHqgmSs0yTZc5XH5Wo+g80RWRIYNqE58QJKm/yMud5wZEvz50ugRDuzVIkyahg==", "dev": true, "requires": { @@ -10703,7 +10703,7 @@ "dependencies": { "pify": { "version": "3.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/pify/-/pify-3.0.0.tgz", + "resolved": "https://registry.npmmirror.com/pify/-/pify-3.0.0.tgz", "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", "dev": true } @@ -10725,7 +10725,7 @@ }, "lie": { "version": "3.1.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/lie/-/lie-3.1.1.tgz", + "resolved": "https://registry.npmmirror.com/lie/-/lie-3.1.1.tgz", "integrity": "sha512-RiNhHysUjhrDQntfYSfY4MU24coXXdEOgw9WGcKHNeEwffDYbF//u87M1EWaMGzuFoSbqW0C9C6lEEhDOAswfw==", "requires": { "immediate": "~3.0.5" @@ -10750,7 +10750,7 @@ }, "loader-runner": { "version": "2.4.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/loader-runner/-/loader-runner-2.4.0.tgz", + "resolved": "https://registry.npmmirror.com/loader-runner/-/loader-runner-2.4.0.tgz", "integrity": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==", "dev": true }, @@ -10776,7 +10776,7 @@ }, "localforage": { "version": "1.10.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/localforage/-/localforage-1.10.0.tgz", + "resolved": "https://registry.npmmirror.com/localforage/-/localforage-1.10.0.tgz", "integrity": "sha512-14/H1aX7hzBBmmh7sGPd+AOMkkIrHM3Z1PAyGgZigA1H1p5O5ANnMyWzvpAETtG68/dC4pC0ncy3+PPGzXZHPg==", "requires": { "lie": "3.1.1" @@ -10793,12 +10793,12 @@ }, "lodash": { "version": "4.17.21", - "resolved": "http://173.15.15.82:8081/repository/npm-all/lodash/-/lodash-4.17.21.tgz", + "resolved": "https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz", "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" }, "lodash-es": { "version": "4.17.21", - "resolved": "http://173.15.15.82:8081/repository/npm-all/lodash-es/-/lodash-es-4.17.21.tgz", + "resolved": "https://registry.npmmirror.com/lodash-es/-/lodash-es-4.17.21.tgz", "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==" }, "lodash._reinterpolate": { @@ -10815,7 +10815,7 @@ }, "lodash.curry": { "version": "4.1.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/lodash.curry/-/lodash.curry-4.1.1.tgz", + "resolved": "https://registry.npmmirror.com/lodash.curry/-/lodash.curry-4.1.1.tgz", "integrity": "sha512-/u14pXGviLaweY5JI0IUzgzF2J6Ne8INyzAZjImcryjgkZ+ebruBxy2/JaOOkTqScddcYtakjhSaeemV8lR0tA==", "dev": true }, @@ -10832,7 +10832,7 @@ }, "lodash.flow": { "version": "3.5.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/lodash.flow/-/lodash.flow-3.5.0.tgz", + "resolved": "https://registry.npmmirror.com/lodash.flow/-/lodash.flow-3.5.0.tgz", "integrity": "sha512-ff3BX/tSioo+XojX4MOsOMhJw0nZoUEF011LX8g8d3gvjVbxd89cCio4BCXronjxcTUIJUoqKEUA+n4CqvvRPw==", "dev": true }, @@ -10849,7 +10849,7 @@ }, "lodash.template": { "version": "4.5.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/lodash.template/-/lodash.template-4.5.0.tgz", + "resolved": "https://registry.npmmirror.com/lodash.template/-/lodash.template-4.5.0.tgz", "integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==", "dev": true, "requires": { @@ -10859,7 +10859,7 @@ }, "lodash.templatesettings": { "version": "4.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz", + "resolved": "https://registry.npmmirror.com/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz", "integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==", "dev": true, "requires": { @@ -10889,7 +10889,7 @@ }, "loose-envify": { "version": "1.4.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/loose-envify/-/loose-envify-1.4.0.tgz", + "resolved": "https://registry.npmmirror.com/loose-envify/-/loose-envify-1.4.0.tgz", "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", "requires": { "js-tokens": "^3.0.0 || ^4.0.0" @@ -10907,7 +10907,7 @@ }, "lower-case": { "version": "2.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/lower-case/-/lower-case-2.0.2.tgz", + "resolved": "https://registry.npmmirror.com/lower-case/-/lower-case-2.0.2.tgz", "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", "dev": true, "requires": { @@ -10916,13 +10916,13 @@ }, "lowercase-keys": { "version": "1.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/lowercase-keys/-/lowercase-keys-1.0.1.tgz", + "resolved": "https://registry.npmmirror.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz", "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==", "dev": true }, "lru-cache": { "version": "4.1.5", - "resolved": "http://173.15.15.82:8081/repository/npm-all/lru-cache/-/lru-cache-4.1.5.tgz", + "resolved": "https://registry.npmmirror.com/lru-cache/-/lru-cache-4.1.5.tgz", "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", "dev": true, "requires": { @@ -10976,17 +10976,17 @@ }, "marked": { "version": "1.2.9", - "resolved": "http://173.15.15.82:8081/repository/npm-all/marked/-/marked-1.2.9.tgz", + "resolved": "https://registry.npmmirror.com/marked/-/marked-1.2.9.tgz", "integrity": "sha512-H8lIX2SvyitGX+TRdtS06m1jHMijKN/XjfH6Ooii9fvxMlh8QdqBfBDkGUpMWH2kQNrtixjzYUa3SH8ROTgRRw==" }, "material-colors": { "version": "1.2.6", - "resolved": "http://173.15.15.82:8081/repository/npm-all/material-colors/-/material-colors-1.2.6.tgz", + "resolved": "https://registry.npmmirror.com/material-colors/-/material-colors-1.2.6.tgz", "integrity": "sha512-6qE4B9deFBIa9YSpOc9O0Sgc43zTeVYbgDT5veRKSlB2+ZuHNoVVxA1L/ckMUayV9Ay9y7Z/SZCLcGteW9i7bg==" }, "material-ui": { "version": "1.0.0-beta.46", - "resolved": "http://173.15.15.82:8081/repository/npm-all/material-ui/-/material-ui-1.0.0-beta.46.tgz", + "resolved": "https://registry.npmmirror.com/material-ui/-/material-ui-1.0.0-beta.46.tgz", "integrity": "sha512-hg4dtIyUvbAu2lCXIRjzz3fR9YchFo8gLuJyj7rFhA6NQPiXVAhaYM/dCp+dtQelZymBE1MfctjDTCbborDC9Q==", "requires": { "@types/jss": "^9.3.0", @@ -11021,7 +11021,7 @@ "dependencies": { "hoist-non-react-statics": { "version": "2.5.5", - "resolved": "http://173.15.15.82:8081/repository/npm-all/hoist-non-react-statics/-/hoist-non-react-statics-2.5.5.tgz", + "resolved": "https://registry.npmmirror.com/hoist-non-react-statics/-/hoist-non-react-statics-2.5.5.tgz", "integrity": "sha512-rqcy4pJo55FTTLWt+bU8ukscqHeE/e9KWvsOW2b/a3afxQZhwkQdT1rPPCJ0rYXdj4vNcasY8zHTH+jF/qStxw==" }, "warning": { @@ -11036,12 +11036,12 @@ }, "math-random": { "version": "1.0.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/math-random/-/math-random-1.0.4.tgz", + "resolved": "https://registry.npmmirror.com/math-random/-/math-random-1.0.4.tgz", "integrity": "sha512-rUxjysqif/BZQH2yhd5Aaq7vXMSx9NdEsQcyA07uEzIvxgI7zIr33gGsh+RU0/XjmQpCW7RsVof1vlkvQVCK5A==" }, "md5": { "version": "2.3.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/md5/-/md5-2.3.0.tgz", + "resolved": "https://registry.npmmirror.com/md5/-/md5-2.3.0.tgz", "integrity": "sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==", "requires": { "charenc": "0.0.2", @@ -11058,7 +11058,7 @@ }, "md5.js": { "version": "1.3.5", - "resolved": "http://173.15.15.82:8081/repository/npm-all/md5.js/-/md5.js-1.3.5.tgz", + "resolved": "https://registry.npmmirror.com/md5.js/-/md5.js-1.3.5.tgz", "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", "dev": true, "requires": { @@ -11069,7 +11069,7 @@ }, "mdn-data": { "version": "2.0.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/mdn-data/-/mdn-data-2.0.4.tgz", + "resolved": "https://registry.npmmirror.com/mdn-data/-/mdn-data-2.0.4.tgz", "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==", "dev": true }, @@ -11081,7 +11081,7 @@ }, "memoize-one": { "version": "5.2.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/memoize-one/-/memoize-one-5.2.1.tgz", + "resolved": "https://registry.npmmirror.com/memoize-one/-/memoize-one-5.2.1.tgz", "integrity": "sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==" }, "memory-fs": { @@ -11114,12 +11114,12 @@ }, "merge": { "version": "1.2.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/merge/-/merge-1.2.1.tgz", + "resolved": "https://registry.npmmirror.com/merge/-/merge-1.2.1.tgz", "integrity": "sha512-VjFo4P5Whtj4vsLzsYBu5ayHhoHJ0UqNm7ibvShmbmoz7tGi0vXaoJbGdB+GmDMLUdg8DpQXEIeVDAe8MaABvQ==" }, "merge-anything": { "version": "2.4.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/merge-anything/-/merge-anything-2.4.4.tgz", + "resolved": "https://registry.npmmirror.com/merge-anything/-/merge-anything-2.4.4.tgz", "integrity": "sha512-l5XlriUDJKQT12bH+rVhAHjwIuXWdAIecGwsYjv2LJo+dA1AeRTmeQS+3QBpO6lEthBMDi2IUMpLC1yyRvGlwQ==", "requires": { "is-what": "^3.3.1" @@ -11133,13 +11133,13 @@ }, "merge-stream": { "version": "2.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/merge-stream/-/merge-stream-2.0.0.tgz", + "resolved": "https://registry.npmmirror.com/merge-stream/-/merge-stream-2.0.0.tgz", "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", "dev": true }, "merge2": { "version": "1.4.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/merge2/-/merge2-1.4.1.tgz", + "resolved": "https://registry.npmmirror.com/merge2/-/merge2-1.4.1.tgz", "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" }, "methods": { @@ -11150,7 +11150,7 @@ }, "microevent.ts": { "version": "0.1.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/microevent.ts/-/microevent.ts-0.1.1.tgz", + "resolved": "https://registry.npmmirror.com/microevent.ts/-/microevent.ts-0.1.1.tgz", "integrity": "sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g==" }, "micromatch": { @@ -11175,7 +11175,7 @@ }, "miller-rabin": { "version": "4.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/miller-rabin/-/miller-rabin-4.0.1.tgz", + "resolved": "https://registry.npmmirror.com/miller-rabin/-/miller-rabin-4.0.1.tgz", "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", "dev": true, "requires": { @@ -11185,7 +11185,7 @@ "dependencies": { "bn.js": { "version": "4.12.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/bn.js/-/bn.js-4.12.0.tgz", + "resolved": "https://registry.npmmirror.com/bn.js/-/bn.js-4.12.0.tgz", "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", "dev": true } @@ -11193,7 +11193,7 @@ }, "mime": { "version": "1.6.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/mime/-/mime-1.6.0.tgz", + "resolved": "https://registry.npmmirror.com/mime/-/mime-1.6.0.tgz", "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" }, "mime-db": { @@ -11211,7 +11211,7 @@ }, "mimic-fn": { "version": "1.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/mimic-fn/-/mimic-fn-1.2.0.tgz", + "resolved": "https://registry.npmmirror.com/mimic-fn/-/mimic-fn-1.2.0.tgz", "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==" }, "min-document": { @@ -11224,7 +11224,7 @@ }, "mini-css-extract-plugin": { "version": "0.9.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/mini-css-extract-plugin/-/mini-css-extract-plugin-0.9.0.tgz", + "resolved": "https://registry.npmmirror.com/mini-css-extract-plugin/-/mini-css-extract-plugin-0.9.0.tgz", "integrity": "sha512-lp3GeY7ygcgAmVIcRPBVhIkf8Us7FZjA+ILpal44qLdSu11wmjKQ3d9k15lfD7pO4esu9eUIAW7qiYIBppv40A==", "requires": { "loader-utils": "^1.1.0", @@ -11247,7 +11247,7 @@ }, "mini-store": { "version": "2.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/mini-store/-/mini-store-2.0.0.tgz", + "resolved": "https://registry.npmmirror.com/mini-store/-/mini-store-2.0.0.tgz", "integrity": "sha512-EG0CuwpQmX+XL4QVS0kxNwHW5ftSbhygu1qxQH0pipugjnPkbvkalCdQbEihMwtQY6d3MTN+MS0q+aurs+RfLQ==", "requires": { "hoist-non-react-statics": "^2.3.1", @@ -11258,14 +11258,14 @@ "dependencies": { "hoist-non-react-statics": { "version": "2.5.5", - "resolved": "http://173.15.15.82:8081/repository/npm-all/hoist-non-react-statics/-/hoist-non-react-statics-2.5.5.tgz", + "resolved": "https://registry.npmmirror.com/hoist-non-react-statics/-/hoist-non-react-statics-2.5.5.tgz", "integrity": "sha512-rqcy4pJo55FTTLWt+bU8ukscqHeE/e9KWvsOW2b/a3afxQZhwkQdT1rPPCJ0rYXdj4vNcasY8zHTH+jF/qStxw==" } } }, "minimalistic-assert": { "version": "1.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "resolved": "https://registry.npmmirror.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", "dev": true }, @@ -11289,9 +11289,9 @@ "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" }, "minipass": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.3.tgz", - "integrity": "sha512-Mgd2GdMVzY+x3IJ+oHnVM+KG3lA5c8tnabyJKmHSaG2kAGpudxuOf8ToDkhumF7UzME7DecbQE9uOZhNm7PuJg==", + "version": "3.3.6", + "resolved": "https://registry.npmmirror.com/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", "dev": true, "requires": { "yallist": "^4.0.0" @@ -11299,7 +11299,7 @@ "dependencies": { "yallist": { "version": "4.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/yallist/-/yallist-4.0.0.tgz", + "resolved": "https://registry.npmmirror.com/yallist/-/yallist-4.0.0.tgz", "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true } @@ -11307,7 +11307,7 @@ }, "minipass-collect": { "version": "1.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/minipass-collect/-/minipass-collect-1.0.2.tgz", + "resolved": "https://registry.npmmirror.com/minipass-collect/-/minipass-collect-1.0.2.tgz", "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", "dev": true, "requires": { @@ -11316,7 +11316,7 @@ }, "minipass-flush": { "version": "1.0.5", - "resolved": "http://173.15.15.82:8081/repository/npm-all/minipass-flush/-/minipass-flush-1.0.5.tgz", + "resolved": "https://registry.npmmirror.com/minipass-flush/-/minipass-flush-1.0.5.tgz", "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", "dev": true, "requires": { @@ -11325,7 +11325,7 @@ }, "minipass-pipeline": { "version": "1.2.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", + "resolved": "https://registry.npmmirror.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", "dev": true, "requires": { @@ -11334,7 +11334,7 @@ }, "mississippi": { "version": "2.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/mississippi/-/mississippi-2.0.0.tgz", + "resolved": "https://registry.npmmirror.com/mississippi/-/mississippi-2.0.0.tgz", "integrity": "sha512-zHo8v+otD1J10j/tC+VNoGK9keCuByhKovAvdn74dmxJl9+mWHnx6EMsDN4lgRoMI/eYo2nchAxniIbUPb5onw==", "dev": true, "requires": { @@ -11364,7 +11364,7 @@ }, "mixin-deep": { "version": "1.3.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/mixin-deep/-/mixin-deep-1.3.2.tgz", + "resolved": "https://registry.npmmirror.com/mixin-deep/-/mixin-deep-1.3.2.tgz", "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", "requires": { "for-in": "^1.0.2", @@ -11373,7 +11373,7 @@ "dependencies": { "is-extendable": { "version": "1.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-extendable/-/is-extendable-1.0.1.tgz", + "resolved": "https://registry.npmmirror.com/is-extendable/-/is-extendable-1.0.1.tgz", "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", "requires": { "is-plain-object": "^2.0.4" @@ -11391,7 +11391,7 @@ }, "mockjs": { "version": "1.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/mockjs/-/mockjs-1.1.0.tgz", + "resolved": "https://registry.npmmirror.com/mockjs/-/mockjs-1.1.0.tgz", "integrity": "sha512-eQsKcWzIaZzEZ07NuEyO4Nw65g0hdWAyurVol1IPl1gahRwY+svqzfgfey8U8dahLwG44d6/RwEzuK52rSa/JQ==", "dev": true, "requires": { @@ -11405,12 +11405,12 @@ }, "monaco-editor": { "version": "0.20.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/monaco-editor/-/monaco-editor-0.20.0.tgz", + "resolved": "https://registry.npmmirror.com/monaco-editor/-/monaco-editor-0.20.0.tgz", "integrity": "sha512-hkvf4EtPJRMQlPC3UbMoRs0vTAFAYdzFQ+gpMb8A+9znae1c43q8Mab9iVsgTcg/4PNiLGGn3SlDIa8uvK1FIQ==" }, "monaco-editor-webpack-plugin": { "version": "1.9.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/monaco-editor-webpack-plugin/-/monaco-editor-webpack-plugin-1.9.1.tgz", + "resolved": "https://registry.npmmirror.com/monaco-editor-webpack-plugin/-/monaco-editor-webpack-plugin-1.9.1.tgz", "integrity": "sha512-x7fx1w3i/uwZERIgztHAAK3VQMsL8+ku0lFXXbO81hKDg8IieACqjGEa2mqEueg0c/fX+wd0oI+75wB19KJAsA==", "requires": { "loader-utils": "^1.2.3" @@ -11437,7 +11437,7 @@ }, "multicast-dns": { "version": "6.2.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/multicast-dns/-/multicast-dns-6.2.3.tgz", + "resolved": "https://registry.npmmirror.com/multicast-dns/-/multicast-dns-6.2.3.tgz", "integrity": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==", "dev": true, "requires": { @@ -11453,7 +11453,7 @@ }, "mutationobserver-shim": { "version": "0.3.7", - "resolved": "http://173.15.15.82:8081/repository/npm-all/mutationobserver-shim/-/mutationobserver-shim-0.3.7.tgz", + "resolved": "https://registry.npmmirror.com/mutationobserver-shim/-/mutationobserver-shim-0.3.7.tgz", "integrity": "sha512-oRIDTyZQU96nAiz2AQyngwx1e89iApl2hN5AOYwyxLUB47UYsU3Wv9lJWqH5y/QdiYkc5HQLi23ZNB3fELdHcQ==" }, "mute-stream": { @@ -11468,7 +11468,7 @@ }, "nanomatch": { "version": "1.2.13", - "resolved": "http://173.15.15.82:8081/repository/npm-all/nanomatch/-/nanomatch-1.2.13.tgz", + "resolved": "https://registry.npmmirror.com/nanomatch/-/nanomatch-1.2.13.tgz", "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", "requires": { "arr-diff": "^4.0.0", @@ -11496,14 +11496,14 @@ }, "kind-of": { "version": "6.0.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/kind-of/-/kind-of-6.0.3.tgz", + "resolved": "https://registry.npmmirror.com/kind-of/-/kind-of-6.0.3.tgz", "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" } } }, "native-request": { "version": "1.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/native-request/-/native-request-1.1.0.tgz", + "resolved": "https://registry.npmmirror.com/native-request/-/native-request-1.1.0.tgz", "integrity": "sha512-uZ5rQaeRn15XmpgE0xoPL8YWqcX90VtCFglYwAgkvKM5e8fog+vePLAhHxuuv/gRkrQxIeh5U3q9sMNUrENqWw==", "optional": true }, @@ -11520,17 +11520,17 @@ }, "neo-async": { "version": "2.6.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/neo-async/-/neo-async-2.6.2.tgz", + "resolved": "https://registry.npmmirror.com/neo-async/-/neo-async-2.6.2.tgz", "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" }, "nice-try": { "version": "1.0.5", - "resolved": "http://173.15.15.82:8081/repository/npm-all/nice-try/-/nice-try-1.0.5.tgz", + "resolved": "https://registry.npmmirror.com/nice-try/-/nice-try-1.0.5.tgz", "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" }, "no-case": { "version": "3.0.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/no-case/-/no-case-3.0.4.tgz", + "resolved": "https://registry.npmmirror.com/no-case/-/no-case-3.0.4.tgz", "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", "dev": true, "requires": { @@ -11540,7 +11540,7 @@ }, "node-fetch": { "version": "1.7.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/node-fetch/-/node-fetch-1.7.3.tgz", + "resolved": "https://registry.npmmirror.com/node-fetch/-/node-fetch-1.7.3.tgz", "integrity": "sha512-NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ==", "requires": { "encoding": "^0.1.11", @@ -11549,13 +11549,13 @@ }, "node-forge": { "version": "0.10.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/node-forge/-/node-forge-0.10.0.tgz", + "resolved": "https://registry.npmmirror.com/node-forge/-/node-forge-0.10.0.tgz", "integrity": "sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==", "dev": true }, "node-gyp": { "version": "3.8.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/node-gyp/-/node-gyp-3.8.0.tgz", + "resolved": "https://registry.npmmirror.com/node-gyp/-/node-gyp-3.8.0.tgz", "integrity": "sha512-3g8lYefrRRzvGeSowdJKAKyks8oUpLEd/DyPV4eMhVlhJ0aNaZqIrNUIPuEWWTAoPqyFkfGrM67MC69baqn6vA==", "dev": true, "requires": { @@ -11588,7 +11588,7 @@ }, "node-libs-browser": { "version": "2.2.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/node-libs-browser/-/node-libs-browser-2.2.1.tgz", + "resolved": "https://registry.npmmirror.com/node-libs-browser/-/node-libs-browser-2.2.1.tgz", "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==", "dev": true, "requires": { @@ -11633,7 +11633,7 @@ }, "node-notifier": { "version": "5.4.5", - "resolved": "http://173.15.15.82:8081/repository/npm-all/node-notifier/-/node-notifier-5.4.5.tgz", + "resolved": "https://registry.npmmirror.com/node-notifier/-/node-notifier-5.4.5.tgz", "integrity": "sha512-tVbHs7DyTLtzOiN78izLA85zRqB9NvEXkAf014Vx3jtSvn/xBl6bR8ZYifj+dFcFrKI21huSQgJZ6ZtL3B4HfQ==", "requires": { "growly": "^1.3.0", @@ -11650,7 +11650,7 @@ }, "node-sass": { "version": "4.14.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/node-sass/-/node-sass-4.14.1.tgz", + "resolved": "https://registry.npmmirror.com/node-sass/-/node-sass-4.14.1.tgz", "integrity": "sha512-sjCuOlvGyCJS40R8BscF5vhVlQjNN069NtQ1gSxyK1u9iqvn6tf7O1R4GNowVZfiZUCRt5MmMs1xd+4V/7Yr0g==", "dev": true, "requires": { @@ -11696,7 +11696,7 @@ }, "normalize-package-data": { "version": "2.5.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "resolved": "https://registry.npmmirror.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz", "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", "requires": { "hosted-git-info": "^2.1.4", @@ -11720,7 +11720,7 @@ }, "normalize-scroll-left": { "version": "0.1.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/normalize-scroll-left/-/normalize-scroll-left-0.1.2.tgz", + "resolved": "https://registry.npmmirror.com/normalize-scroll-left/-/normalize-scroll-left-0.1.2.tgz", "integrity": "sha512-F9YMRls0zCF6BFIE2YnXDRpHPpfd91nOIaNdDgrx5YMoPLo8Wqj+6jNXHQsYBavJeXP4ww8HCt0xQAKc5qk2Fg==" }, "normalize-url": { @@ -11745,7 +11745,7 @@ }, "npmlog": { "version": "4.1.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/npmlog/-/npmlog-4.1.2.tgz", + "resolved": "https://registry.npmmirror.com/npmlog/-/npmlog-4.1.2.tgz", "integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==", "dev": true, "requires": { @@ -11786,7 +11786,7 @@ }, "nwmatcher": { "version": "1.4.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/nwmatcher/-/nwmatcher-1.4.4.tgz", + "resolved": "https://registry.npmmirror.com/nwmatcher/-/nwmatcher-1.4.4.tgz", "integrity": "sha512-3iuY4N5dhgMpCUrOVnuAdGrgxVqV2cJpM+XNccjR2DKOB1RUP0aA+wGXEiNziG/UKboFyGBIoKOaNlJxx8bciQ==" }, "nwsapi": { @@ -11796,7 +11796,7 @@ }, "oauth-sign": { "version": "0.9.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/oauth-sign/-/oauth-sign-0.9.0.tgz", + "resolved": "https://registry.npmmirror.com/oauth-sign/-/oauth-sign-0.9.0.tgz", "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==" }, "object-assign": { @@ -11826,7 +11826,7 @@ }, "object-hash": { "version": "2.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/object-hash/-/object-hash-2.2.0.tgz", + "resolved": "https://registry.npmmirror.com/object-hash/-/object-hash-2.2.0.tgz", "integrity": "sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==", "dev": true }, @@ -11837,7 +11837,7 @@ }, "object-is": { "version": "1.1.5", - "resolved": "http://173.15.15.82:8081/repository/npm-all/object-is/-/object-is-1.1.5.tgz", + "resolved": "https://registry.npmmirror.com/object-is/-/object-is-1.1.5.tgz", "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", "requires": { "call-bind": "^1.0.2", @@ -11846,7 +11846,7 @@ }, "object-keys": { "version": "1.1.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/object-keys/-/object-keys-1.1.1.tgz", + "resolved": "https://registry.npmmirror.com/object-keys/-/object-keys-1.1.1.tgz", "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" }, "object-visit": { @@ -11934,13 +11934,13 @@ }, "obuf": { "version": "1.1.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/obuf/-/obuf-1.1.2.tgz", + "resolved": "https://registry.npmmirror.com/obuf/-/obuf-1.1.2.tgz", "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", "dev": true }, "omit.js": { "version": "1.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/omit.js/-/omit.js-1.0.2.tgz", + "resolved": "https://registry.npmmirror.com/omit.js/-/omit.js-1.0.2.tgz", "integrity": "sha512-/QPc6G2NS+8d4L/cQhbk6Yit1WTB6Us2g84A7A/1+w9d/eRGHyEqC5kkQtHVoHZ5NFWGG7tUGgrhVZwgZanKrQ==", "requires": { "babel-runtime": "^6.23.0" @@ -11957,7 +11957,7 @@ }, "on-headers": { "version": "1.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/on-headers/-/on-headers-1.0.2.tgz", + "resolved": "https://registry.npmmirror.com/on-headers/-/on-headers-1.0.2.tgz", "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", "dev": true }, @@ -11979,7 +11979,7 @@ }, "open": { "version": "7.4.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/open/-/open-7.4.2.tgz", + "resolved": "https://registry.npmmirror.com/open/-/open-7.4.2.tgz", "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==", "requires": { "is-docker": "^2.0.0", @@ -11988,7 +11988,7 @@ "dependencies": { "is-wsl": { "version": "2.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-wsl/-/is-wsl-2.2.0.tgz", + "resolved": "https://registry.npmmirror.com/is-wsl/-/is-wsl-2.2.0.tgz", "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", "requires": { "is-docker": "^2.0.0" @@ -11998,13 +11998,13 @@ }, "opener": { "version": "1.5.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/opener/-/opener-1.5.2.tgz", + "resolved": "https://registry.npmmirror.com/opener/-/opener-1.5.2.tgz", "integrity": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==", "dev": true }, "opn": { "version": "5.5.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/opn/-/opn-5.5.0.tgz", + "resolved": "https://registry.npmmirror.com/opn/-/opn-5.5.0.tgz", "integrity": "sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==", "dev": true, "requires": { @@ -12013,7 +12013,7 @@ }, "optimize-css-assets-webpack-plugin": { "version": "5.0.8", - "resolved": "http://173.15.15.82:8081/repository/npm-all/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-5.0.8.tgz", + "resolved": "https://registry.npmmirror.com/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-5.0.8.tgz", "integrity": "sha512-mgFS1JdOtEGzD8l+EuISqL57cKO+We9GcoiQEmdCWRqqck+FGNmYJtx9qfAPzEz+lRrlThWMuGDaRkI/yWNx/Q==", "dev": true, "requires": { @@ -12023,7 +12023,7 @@ }, "optionator": { "version": "0.8.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/optionator/-/optionator-0.8.3.tgz", + "resolved": "https://registry.npmmirror.com/optionator/-/optionator-0.8.3.tgz", "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", "requires": { "deep-is": "~0.1.3", @@ -12069,7 +12069,7 @@ }, "osenv": { "version": "0.1.5", - "resolved": "http://173.15.15.82:8081/repository/npm-all/osenv/-/osenv-0.1.5.tgz", + "resolved": "https://registry.npmmirror.com/osenv/-/osenv-0.1.5.tgz", "integrity": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==", "dev": true, "requires": { @@ -12096,7 +12096,7 @@ }, "p-limit": { "version": "1.3.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/p-limit/-/p-limit-1.3.0.tgz", + "resolved": "https://registry.npmmirror.com/p-limit/-/p-limit-1.3.0.tgz", "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", "requires": { "p-try": "^1.0.0" @@ -12112,12 +12112,12 @@ }, "p-map": { "version": "1.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/p-map/-/p-map-1.2.0.tgz", + "resolved": "https://registry.npmmirror.com/p-map/-/p-map-1.2.0.tgz", "integrity": "sha512-r6zKACMNhjPJMTl8KcFH4li//gkrXWfbD6feV8l6doRHlzljFWGJ2AP6iKaCJXyZmAUMOPtvbW7EXkbWO/pLEA==" }, "p-retry": { "version": "3.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/p-retry/-/p-retry-3.0.1.tgz", + "resolved": "https://registry.npmmirror.com/p-retry/-/p-retry-3.0.1.tgz", "integrity": "sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==", "dev": true, "requires": { @@ -12143,13 +12143,13 @@ }, "pako": { "version": "1.0.11", - "resolved": "http://173.15.15.82:8081/repository/npm-all/pako/-/pako-1.0.11.tgz", + "resolved": "https://registry.npmmirror.com/pako/-/pako-1.0.11.tgz", "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", "dev": true }, "parallel-transform": { "version": "1.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/parallel-transform/-/parallel-transform-1.2.0.tgz", + "resolved": "https://registry.npmmirror.com/parallel-transform/-/parallel-transform-1.2.0.tgz", "integrity": "sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==", "dev": true, "requires": { @@ -12160,7 +12160,7 @@ }, "param-case": { "version": "3.0.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/param-case/-/param-case-3.0.4.tgz", + "resolved": "https://registry.npmmirror.com/param-case/-/param-case-3.0.4.tgz", "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", "dev": true, "requires": { @@ -12170,12 +12170,12 @@ }, "parchment": { "version": "1.1.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/parchment/-/parchment-1.1.4.tgz", + "resolved": "https://registry.npmmirror.com/parchment/-/parchment-1.1.4.tgz", "integrity": "sha512-J5FBQt/pM2inLzg4hEWmzQx/8h8D0CiDxaG3vyp9rKrQRSDgBlhjdP5jQGgosEajXPSQouXGHOmVdgo7QmJuOg==" }, "parse-asn1": { "version": "5.1.6", - "resolved": "http://173.15.15.82:8081/repository/npm-all/parse-asn1/-/parse-asn1-5.1.6.tgz", + "resolved": "https://registry.npmmirror.com/parse-asn1/-/parse-asn1-5.1.6.tgz", "integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==", "dev": true, "requires": { @@ -12218,13 +12218,13 @@ }, "parseurl": { "version": "1.3.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/parseurl/-/parseurl-1.3.3.tgz", + "resolved": "https://registry.npmmirror.com/parseurl/-/parseurl-1.3.3.tgz", "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", "dev": true }, "pascal-case": { "version": "3.1.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/pascal-case/-/pascal-case-3.1.2.tgz", + "resolved": "https://registry.npmmirror.com/pascal-case/-/pascal-case-3.1.2.tgz", "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", "dev": true, "requires": { @@ -12239,7 +12239,7 @@ }, "path-browserify": { "version": "0.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/path-browserify/-/path-browserify-0.0.1.tgz", + "resolved": "https://registry.npmmirror.com/path-browserify/-/path-browserify-0.0.1.tgz", "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==", "dev": true }, @@ -12271,12 +12271,12 @@ }, "path-parse": { "version": "1.0.7", - "resolved": "http://173.15.15.82:8081/repository/npm-all/path-parse/-/path-parse-1.0.7.tgz", + "resolved": "https://registry.npmmirror.com/path-parse/-/path-parse-1.0.7.tgz", "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" }, "path-to-regexp": { "version": "1.8.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/path-to-regexp/-/path-to-regexp-1.8.0.tgz", + "resolved": "https://registry.npmmirror.com/path-to-regexp/-/path-to-regexp-1.8.0.tgz", "integrity": "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==", "requires": { "isarray": "0.0.1" @@ -12301,7 +12301,7 @@ }, "pbkdf2": { "version": "3.1.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/pbkdf2/-/pbkdf2-3.1.2.tgz", + "resolved": "https://registry.npmmirror.com/pbkdf2/-/pbkdf2-3.1.2.tgz", "integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==", "dev": true, "requires": { @@ -12360,13 +12360,13 @@ }, "pluralize": { "version": "7.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/pluralize/-/pluralize-7.0.0.tgz", + "resolved": "https://registry.npmmirror.com/pluralize/-/pluralize-7.0.0.tgz", "integrity": "sha512-ARhBOdzS3e41FbkW/XWrTEtukqqLoK5+Z/4UeDaLuSW+39JPeFgs4gCGqsrJHVZX0fUrx//4OF0K1CUGwlIFow==", "dev": true }, "popper.js": { "version": "1.16.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/popper.js/-/popper.js-1.16.1.tgz", + "resolved": "https://registry.npmmirror.com/popper.js/-/popper.js-1.16.1.tgz", "integrity": "sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ==" }, "portfinder": { @@ -12382,7 +12382,7 @@ "dependencies": { "debug": { "version": "3.2.7", - "resolved": "http://173.15.15.82:8081/repository/npm-all/debug/-/debug-3.2.7.tgz", + "resolved": "https://registry.npmmirror.com/debug/-/debug-3.2.7.tgz", "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, "requires": { @@ -12391,7 +12391,7 @@ }, "ms": { "version": "2.1.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/ms/-/ms-2.1.3.tgz", + "resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.3.tgz", "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", "dev": true } @@ -12404,7 +12404,7 @@ }, "postcss": { "version": "6.0.23", - "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss/-/postcss-6.0.23.tgz", + "resolved": "https://registry.npmmirror.com/postcss/-/postcss-6.0.23.tgz", "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==", "requires": { "chalk": "^2.4.1", @@ -12414,7 +12414,7 @@ "dependencies": { "chalk": { "version": "2.4.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/chalk/-/chalk-2.4.2.tgz", + "resolved": "https://registry.npmmirror.com/chalk/-/chalk-2.4.2.tgz", "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "requires": { "ansi-styles": "^3.2.1", @@ -12426,7 +12426,7 @@ }, "postcss-calc": { "version": "7.0.5", - "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-calc/-/postcss-calc-7.0.5.tgz", + "resolved": "https://registry.npmmirror.com/postcss-calc/-/postcss-calc-7.0.5.tgz", "integrity": "sha512-1tKHutbGtLtEZF6PT4JSihCHfIVldU72mZ8SdZHIYriIZ9fh9k9aWSppaT8rHsyI3dX+KSR+W+Ix9BMY3AODrg==", "dev": true, "requires": { @@ -12487,7 +12487,7 @@ }, "postcss-colormin": { "version": "4.0.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-colormin/-/postcss-colormin-4.0.3.tgz", + "resolved": "https://registry.npmmirror.com/postcss-colormin/-/postcss-colormin-4.0.3.tgz", "integrity": "sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw==", "dev": true, "requires": { @@ -12557,7 +12557,7 @@ }, "postcss-convert-values": { "version": "4.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz", + "resolved": "https://registry.npmmirror.com/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz", "integrity": "sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ==", "dev": true, "requires": { @@ -12611,7 +12611,7 @@ }, "postcss-discard-comments": { "version": "4.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz", + "resolved": "https://registry.npmmirror.com/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz", "integrity": "sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg==", "dev": true, "requires": { @@ -12664,7 +12664,7 @@ }, "postcss-discard-duplicates": { "version": "4.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz", + "resolved": "https://registry.npmmirror.com/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz", "integrity": "sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ==", "dev": true, "requires": { @@ -12717,7 +12717,7 @@ }, "postcss-discard-empty": { "version": "4.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz", + "resolved": "https://registry.npmmirror.com/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz", "integrity": "sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w==", "dev": true, "requires": { @@ -12770,7 +12770,7 @@ }, "postcss-discard-overridden": { "version": "4.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz", + "resolved": "https://registry.npmmirror.com/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz", "integrity": "sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg==", "dev": true, "requires": { @@ -12823,7 +12823,7 @@ }, "postcss-flexbugs-fixes": { "version": "3.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-3.2.0.tgz", + "resolved": "https://registry.npmmirror.com/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-3.2.0.tgz", "integrity": "sha512-0AuD9HG1Ey3/3nqPWu9yqf7rL0KCPu5VgjDsjf5mzEcuo9H/z8nco/fljKgjsOUrZypa95MI0kS4xBZeBzz2lw==", "requires": { "postcss": "^6.0.1" @@ -12863,7 +12863,7 @@ }, "postcss-loader": { "version": "2.0.8", - "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-loader/-/postcss-loader-2.0.8.tgz", + "resolved": "https://registry.npmmirror.com/postcss-loader/-/postcss-loader-2.0.8.tgz", "integrity": "sha512-KtXBiQ/r/WYW8LxTSJK7h8wLqvCMSub/BqmRnud/Mu8RzwflW9cmXxwsMwbn15TNv287Hcufdb3ZSs7xHKnG8Q==", "dev": true, "requires": { @@ -12910,7 +12910,7 @@ }, "postcss-merge-longhand": { "version": "4.0.11", - "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz", + "resolved": "https://registry.npmmirror.com/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz", "integrity": "sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw==", "dev": true, "requires": { @@ -12966,7 +12966,7 @@ }, "postcss-merge-rules": { "version": "4.0.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz", + "resolved": "https://registry.npmmirror.com/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz", "integrity": "sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ==", "dev": true, "requires": { @@ -13041,7 +13041,7 @@ }, "postcss-selector-parser": { "version": "3.1.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "resolved": "https://registry.npmmirror.com/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", "dev": true, "requires": { @@ -13063,7 +13063,7 @@ }, "postcss-minify-font-values": { "version": "4.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz", + "resolved": "https://registry.npmmirror.com/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz", "integrity": "sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg==", "dev": true, "requires": { @@ -13117,7 +13117,7 @@ }, "postcss-minify-gradients": { "version": "4.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz", + "resolved": "https://registry.npmmirror.com/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz", "integrity": "sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q==", "dev": true, "requires": { @@ -13173,7 +13173,7 @@ }, "postcss-minify-params": { "version": "4.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz", + "resolved": "https://registry.npmmirror.com/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz", "integrity": "sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg==", "dev": true, "requires": { @@ -13244,7 +13244,7 @@ }, "postcss-minify-selectors": { "version": "4.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz", + "resolved": "https://registry.npmmirror.com/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz", "integrity": "sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g==", "dev": true, "requires": { @@ -13304,7 +13304,7 @@ }, "postcss-selector-parser": { "version": "3.1.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "resolved": "https://registry.npmmirror.com/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", "dev": true, "requires": { @@ -13326,7 +13326,7 @@ }, "postcss-modules-extract-imports": { "version": "2.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz", + "resolved": "https://registry.npmmirror.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz", "integrity": "sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==", "dev": true, "requires": { @@ -13379,7 +13379,7 @@ }, "postcss-modules-local-by-default": { "version": "3.0.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz", + "resolved": "https://registry.npmmirror.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz", "integrity": "sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==", "dev": true, "requires": { @@ -13441,7 +13441,7 @@ }, "postcss-modules-scope": { "version": "2.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz", + "resolved": "https://registry.npmmirror.com/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz", "integrity": "sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==", "dev": true, "requires": { @@ -13495,7 +13495,7 @@ }, "postcss-modules-values": { "version": "3.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz", + "resolved": "https://registry.npmmirror.com/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz", "integrity": "sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==", "dev": true, "requires": { @@ -13549,7 +13549,7 @@ }, "postcss-normalize-charset": { "version": "4.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz", + "resolved": "https://registry.npmmirror.com/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz", "integrity": "sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g==", "dev": true, "requires": { @@ -13602,7 +13602,7 @@ }, "postcss-normalize-display-values": { "version": "4.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz", + "resolved": "https://registry.npmmirror.com/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz", "integrity": "sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ==", "dev": true, "requires": { @@ -13657,7 +13657,7 @@ }, "postcss-normalize-positions": { "version": "4.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz", + "resolved": "https://registry.npmmirror.com/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz", "integrity": "sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA==", "dev": true, "requires": { @@ -13713,7 +13713,7 @@ }, "postcss-normalize-repeat-style": { "version": "4.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz", + "resolved": "https://registry.npmmirror.com/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz", "integrity": "sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q==", "dev": true, "requires": { @@ -13769,7 +13769,7 @@ }, "postcss-normalize-string": { "version": "4.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz", + "resolved": "https://registry.npmmirror.com/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz", "integrity": "sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA==", "dev": true, "requires": { @@ -13824,7 +13824,7 @@ }, "postcss-normalize-timing-functions": { "version": "4.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz", + "resolved": "https://registry.npmmirror.com/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz", "integrity": "sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A==", "dev": true, "requires": { @@ -13879,7 +13879,7 @@ }, "postcss-normalize-unicode": { "version": "4.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz", + "resolved": "https://registry.npmmirror.com/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz", "integrity": "sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg==", "dev": true, "requires": { @@ -13947,7 +13947,7 @@ }, "postcss-normalize-url": { "version": "4.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz", + "resolved": "https://registry.npmmirror.com/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz", "integrity": "sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA==", "dev": true, "requires": { @@ -13987,7 +13987,7 @@ }, "normalize-url": { "version": "3.3.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/normalize-url/-/normalize-url-3.3.0.tgz", + "resolved": "https://registry.npmmirror.com/normalize-url/-/normalize-url-3.3.0.tgz", "integrity": "sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==", "dev": true }, @@ -14015,7 +14015,7 @@ }, "postcss-normalize-whitespace": { "version": "4.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz", + "resolved": "https://registry.npmmirror.com/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz", "integrity": "sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA==", "dev": true, "requires": { @@ -14069,7 +14069,7 @@ }, "postcss-ordered-values": { "version": "4.1.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz", + "resolved": "https://registry.npmmirror.com/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz", "integrity": "sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw==", "dev": true, "requires": { @@ -14124,7 +14124,7 @@ }, "postcss-reduce-initial": { "version": "4.0.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz", + "resolved": "https://registry.npmmirror.com/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz", "integrity": "sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA==", "dev": true, "requires": { @@ -14193,7 +14193,7 @@ }, "postcss-reduce-transforms": { "version": "4.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz", + "resolved": "https://registry.npmmirror.com/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz", "integrity": "sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg==", "dev": true, "requires": { @@ -14259,7 +14259,7 @@ }, "postcss-svgo": { "version": "4.0.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-svgo/-/postcss-svgo-4.0.3.tgz", + "resolved": "https://registry.npmmirror.com/postcss-svgo/-/postcss-svgo-4.0.3.tgz", "integrity": "sha512-NoRbrcMWTtUghzuKSoIm6XV+sJdvZ7GZSc3wdBN0W19FTtp2ko8NqLsgoh/m9CzNhU3KLPvQmjIwtaNFkaFTvw==", "dev": true, "requires": { @@ -14314,7 +14314,7 @@ }, "postcss-unique-selectors": { "version": "4.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz", + "resolved": "https://registry.npmmirror.com/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz", "integrity": "sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg==", "dev": true, "requires": { @@ -14369,7 +14369,7 @@ }, "postcss-value-parser": { "version": "3.3.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "resolved": "https://registry.npmmirror.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" }, "prelude-ls": { @@ -14395,7 +14395,7 @@ }, "pretty-error": { "version": "2.1.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/pretty-error/-/pretty-error-2.1.2.tgz", + "resolved": "https://registry.npmmirror.com/pretty-error/-/pretty-error-2.1.2.tgz", "integrity": "sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw==", "dev": true, "requires": { @@ -14414,7 +14414,7 @@ }, "private": { "version": "0.1.8", - "resolved": "http://173.15.15.82:8081/repository/npm-all/private/-/private-0.1.8.tgz", + "resolved": "https://registry.npmmirror.com/private/-/private-0.1.8.tgz", "integrity": "sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==" }, "process": { @@ -14424,12 +14424,12 @@ }, "process-nextick-args": { "version": "2.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "resolved": "https://registry.npmmirror.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz", "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" }, "progress": { "version": "2.0.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/progress/-/progress-2.0.3.tgz", + "resolved": "https://registry.npmmirror.com/progress/-/progress-2.0.3.tgz", "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", "dev": true }, @@ -14459,7 +14459,7 @@ }, "proxy-addr": { "version": "2.0.7", - "resolved": "http://173.15.15.82:8081/repository/npm-all/proxy-addr/-/proxy-addr-2.0.7.tgz", + "resolved": "https://registry.npmmirror.com/proxy-addr/-/proxy-addr-2.0.7.tgz", "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", "dev": true, "requires": { @@ -14485,7 +14485,7 @@ }, "public-encrypt": { "version": "4.0.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/public-encrypt/-/public-encrypt-4.0.3.tgz", + "resolved": "https://registry.npmmirror.com/public-encrypt/-/public-encrypt-4.0.3.tgz", "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", "dev": true, "requires": { @@ -14499,7 +14499,7 @@ "dependencies": { "bn.js": { "version": "4.12.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/bn.js/-/bn.js-4.12.0.tgz", + "resolved": "https://registry.npmmirror.com/bn.js/-/bn.js-4.12.0.tgz", "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", "dev": true } @@ -14517,7 +14517,7 @@ }, "pumpify": { "version": "1.5.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/pumpify/-/pumpify-1.5.1.tgz", + "resolved": "https://registry.npmmirror.com/pumpify/-/pumpify-1.5.1.tgz", "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", "dev": true, "requires": { @@ -14540,18 +14540,18 @@ }, "punycode": { "version": "2.1.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/punycode/-/punycode-2.1.1.tgz", + "resolved": "https://registry.npmmirror.com/punycode/-/punycode-2.1.1.tgz", "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" }, "pure-color": { "version": "1.3.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/pure-color/-/pure-color-1.3.0.tgz", + "resolved": "https://registry.npmmirror.com/pure-color/-/pure-color-1.3.0.tgz", "integrity": "sha512-QFADYnsVoBMw1srW7OVKEYjG+MbIa49s54w1MA1EDY6r2r/sTcKKYqRX1f4GYvnXP7eN/Pe9HFcX+hwzmrXRHA==", "dev": true }, "purgecss": { "version": "2.3.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/purgecss/-/purgecss-2.3.0.tgz", + "resolved": "https://registry.npmmirror.com/purgecss/-/purgecss-2.3.0.tgz", "integrity": "sha512-BE5CROfVGsx2XIhxGuZAT7rTH9lLeQx/6M0P7DTXQH4IUc3BBzs9JUzt4yzGf3JrH9enkeq6YJBe9CTtkm1WmQ==", "dev": true, "requires": { @@ -14563,7 +14563,7 @@ "dependencies": { "chalk": { "version": "2.4.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/chalk/-/chalk-2.4.2.tgz", + "resolved": "https://registry.npmmirror.com/chalk/-/chalk-2.4.2.tgz", "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, "requires": { @@ -14574,7 +14574,7 @@ "dependencies": { "supports-color": { "version": "5.5.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/supports-color/-/supports-color-5.5.0.tgz", + "resolved": "https://registry.npmmirror.com/supports-color/-/supports-color-5.5.0.tgz", "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "dev": true, "requires": { @@ -14585,13 +14585,13 @@ }, "commander": { "version": "5.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/commander/-/commander-5.1.0.tgz", + "resolved": "https://registry.npmmirror.com/commander/-/commander-5.1.0.tgz", "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==", "dev": true }, "postcss": { "version": "7.0.32", - "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss/-/postcss-7.0.32.tgz", + "resolved": "https://registry.npmmirror.com/postcss/-/postcss-7.0.32.tgz", "integrity": "sha512-03eXong5NLnNCD05xscnGKGDZ98CyzoqPSMjOe6SuoQY7Z2hIj0Ld1g/O/UQRuOle2aRtiIRDg9tDcTGAkLfKw==", "dev": true, "requires": { @@ -14602,7 +14602,7 @@ }, "supports-color": { "version": "6.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/supports-color/-/supports-color-6.1.0.tgz", + "resolved": "https://registry.npmmirror.com/supports-color/-/supports-color-6.1.0.tgz", "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", "dev": true, "requires": { @@ -14624,7 +14624,7 @@ }, "qrcode.react": { "version": "1.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/qrcode.react/-/qrcode.react-1.0.1.tgz", + "resolved": "https://registry.npmmirror.com/qrcode.react/-/qrcode.react-1.0.1.tgz", "integrity": "sha512-8d3Tackk8IRLXTo67Y+c1rpaiXjoz/Dd2HpcMdW//62/x8J1Nbho14Kh8x974t9prsLHN6XqVgcnRiBGFptQmg==", "requires": { "loose-envify": "^1.4.0", @@ -14663,13 +14663,13 @@ }, "querystringify": { "version": "2.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/querystringify/-/querystringify-2.2.0.tgz", + "resolved": "https://registry.npmmirror.com/querystringify/-/querystringify-2.2.0.tgz", "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", "dev": true }, "quill": { "version": "1.3.7", - "resolved": "http://173.15.15.82:8081/repository/npm-all/quill/-/quill-1.3.7.tgz", + "resolved": "https://registry.npmmirror.com/quill/-/quill-1.3.7.tgz", "integrity": "sha512-hG/DVzh/TiknWtE6QmWAF/pxoZKYxfe3J/d/+ShUWkDvvkZQVTPeVmUJVu1uE6DDooC4fWTiCLh84ul89oNz5g==", "requires": { "clone": "^2.1.1", @@ -14682,7 +14682,7 @@ }, "quill-delta": { "version": "3.6.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/quill-delta/-/quill-delta-3.6.3.tgz", + "resolved": "https://registry.npmmirror.com/quill-delta/-/quill-delta-3.6.3.tgz", "integrity": "sha512-wdIGBlcX13tCHOXGMVnnTVFtGRLoP0imqxM696fIPwIf5ODIYUHIvHbZcyvGlZFiFhK5XzDC2lpjbxRhnM05Tg==", "requires": { "deep-equal": "^1.0.1", @@ -14692,12 +14692,12 @@ }, "quill-delta-to-html": { "version": "0.11.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/quill-delta-to-html/-/quill-delta-to-html-0.11.0.tgz", + "resolved": "https://registry.npmmirror.com/quill-delta-to-html/-/quill-delta-to-html-0.11.0.tgz", "integrity": "sha512-PsW/VIuVDxa0xN/e+jglsSZy2eSUl/db3Lbvv3uC/syFi2ZIBL8zSsQfR7qrURrt4Aih36JZnw37CFxelIaX2Q==" }, "raf": { "version": "3.4.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/raf/-/raf-3.4.0.tgz", + "resolved": "https://registry.npmmirror.com/raf/-/raf-3.4.0.tgz", "integrity": "sha512-pDP/NMRAXoTfrhCfyfSEwJAKLaxBU9eApMeBPB1TkDouZmvPerIClV8lTAd+uF8ZiTaVl69e1FCxQrAd/VTjGw==", "requires": { "performance-now": "^2.1.0" @@ -14705,7 +14705,7 @@ }, "raf-schd": { "version": "4.0.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/raf-schd/-/raf-schd-4.0.3.tgz", + "resolved": "https://registry.npmmirror.com/raf-schd/-/raf-schd-4.0.3.tgz", "integrity": "sha512-tQkJl2GRWh83ui2DiPTJz9wEiMN20syf+5oKfB03yYP7ioZcJwsIK8FjrtLwH1m7C7e+Tt2yYBlrOpdT+dyeIQ==" }, "rafl": { @@ -14718,7 +14718,7 @@ }, "randomatic": { "version": "3.1.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/randomatic/-/randomatic-3.1.1.tgz", + "resolved": "https://registry.npmmirror.com/randomatic/-/randomatic-3.1.1.tgz", "integrity": "sha512-TuDE5KxZ0J461RVjrJZCJc+J+zCkTb1MbH9AQUq68sMhOMcy9jLcb3BrZKgp9q9Ncltdg4QVqWrH02W2EFFVYw==", "requires": { "is-number": "^4.0.0", @@ -14728,19 +14728,19 @@ "dependencies": { "is-number": { "version": "4.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-number/-/is-number-4.0.0.tgz", + "resolved": "https://registry.npmmirror.com/is-number/-/is-number-4.0.0.tgz", "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==" }, "kind-of": { "version": "6.0.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/kind-of/-/kind-of-6.0.3.tgz", + "resolved": "https://registry.npmmirror.com/kind-of/-/kind-of-6.0.3.tgz", "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" } } }, "randombytes": { "version": "2.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/randombytes/-/randombytes-2.1.0.tgz", + "resolved": "https://registry.npmmirror.com/randombytes/-/randombytes-2.1.0.tgz", "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", "dev": true, "requires": { @@ -14749,7 +14749,7 @@ }, "randomfill": { "version": "1.0.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/randomfill/-/randomfill-1.0.4.tgz", + "resolved": "https://registry.npmmirror.com/randomfill/-/randomfill-1.0.4.tgz", "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", "dev": true, "requires": { @@ -14759,7 +14759,7 @@ }, "range-parser": { "version": "1.2.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/range-parser/-/range-parser-1.2.1.tgz", + "resolved": "https://registry.npmmirror.com/range-parser/-/range-parser-1.2.1.tgz", "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", "dev": true }, @@ -14783,7 +14783,7 @@ }, "iconv-lite": { "version": "0.4.24", - "resolved": "http://173.15.15.82:8081/repository/npm-all/iconv-lite/-/iconv-lite-0.4.24.tgz", + "resolved": "https://registry.npmmirror.com/iconv-lite/-/iconv-lite-0.4.24.tgz", "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", "dev": true, "requires": { @@ -14794,7 +14794,7 @@ }, "rc": { "version": "1.2.8", - "resolved": "http://173.15.15.82:8081/repository/npm-all/rc/-/rc-1.2.8.tgz", + "resolved": "https://registry.npmmirror.com/rc/-/rc-1.2.8.tgz", "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", "dev": true, "requires": { @@ -14806,7 +14806,7 @@ }, "rc-align": { "version": "2.4.5", - "resolved": "http://173.15.15.82:8081/repository/npm-all/rc-align/-/rc-align-2.4.5.tgz", + "resolved": "https://registry.npmmirror.com/rc-align/-/rc-align-2.4.5.tgz", "integrity": "sha512-nv9wYUYdfyfK+qskThf4BQUSIadeI/dCsfaMZfNEoxm9HwOIioQ+LyqmMK6jWHAZQgOzMLaqawhuBXlF63vgjw==", "requires": { "babel-runtime": "^6.26.0", @@ -14817,7 +14817,7 @@ }, "rc-animate": { "version": "2.11.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/rc-animate/-/rc-animate-2.11.1.tgz", + "resolved": "https://registry.npmmirror.com/rc-animate/-/rc-animate-2.11.1.tgz", "integrity": "sha512-1NyuCGFJG/0Y+9RKh5y/i/AalUCA51opyyS/jO2seELpgymZm2u9QV3xwODwEuzkmeQ1BDPxMLmYLcTJedPlkQ==", "requires": { "babel-runtime": "6.x", @@ -14831,7 +14831,7 @@ }, "rc-calendar": { "version": "9.15.11", - "resolved": "http://173.15.15.82:8081/repository/npm-all/rc-calendar/-/rc-calendar-9.15.11.tgz", + "resolved": "https://registry.npmmirror.com/rc-calendar/-/rc-calendar-9.15.11.tgz", "integrity": "sha512-qv0VXfAAnysMWJigxaP6se4bJHvr17D9qsLbi8BOpdgEocsS0RkgY1IUiFaOVYKJDy/EyLC447O02sV/y5YYBg==", "requires": { "babel-runtime": "6.x", @@ -14845,7 +14845,7 @@ }, "rc-cascader": { "version": "0.17.5", - "resolved": "http://173.15.15.82:8081/repository/npm-all/rc-cascader/-/rc-cascader-0.17.5.tgz", + "resolved": "https://registry.npmmirror.com/rc-cascader/-/rc-cascader-0.17.5.tgz", "integrity": "sha512-WYMVcxU0+Lj+xLr4YYH0+yXODumvNXDcVEs5i7L1mtpWwYkubPV/zbQpn+jGKFCIW/hOhjkU4J1db8/P/UKE7A==", "requires": { "array-tree-filter": "^2.1.0", @@ -14859,7 +14859,7 @@ }, "rc-checkbox": { "version": "2.1.8", - "resolved": "http://173.15.15.82:8081/repository/npm-all/rc-checkbox/-/rc-checkbox-2.1.8.tgz", + "resolved": "https://registry.npmmirror.com/rc-checkbox/-/rc-checkbox-2.1.8.tgz", "integrity": "sha512-6qOgh0/by0nVNASx6LZnhRTy17Etcgav+IrI7kL9V9kcDZ/g7K14JFlqrtJ3NjDq/Kyn+BPI1st1XvbkhfaJeg==", "requires": { "babel-runtime": "^6.23.0", @@ -14870,7 +14870,7 @@ }, "rc-collapse": { "version": "1.11.8", - "resolved": "http://173.15.15.82:8081/repository/npm-all/rc-collapse/-/rc-collapse-1.11.8.tgz", + "resolved": "https://registry.npmmirror.com/rc-collapse/-/rc-collapse-1.11.8.tgz", "integrity": "sha512-8EhfPyScTYljkbRuIoHniSwZagD5UPpZ3CToYgoNYWC85L2qCbPYF7+OaC713FOrIkp6NbfNqXsITNxmDAmxog==", "requires": { "classnames": "2.x", @@ -14884,7 +14884,7 @@ }, "rc-dialog": { "version": "7.6.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/rc-dialog/-/rc-dialog-7.6.1.tgz", + "resolved": "https://registry.npmmirror.com/rc-dialog/-/rc-dialog-7.6.1.tgz", "integrity": "sha512-KUKf+2eZ4YL+lnXMG3hR4ZtIhC9glfH27NtTVz3gcoDIPAf3uUvaXVRNoDCiSi+OGKLyIb/b6EoidFh6nQC5Wg==", "requires": { "babel-runtime": "6.x", @@ -14894,7 +14894,7 @@ }, "rc-drawer": { "version": "3.1.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/rc-drawer/-/rc-drawer-3.1.3.tgz", + "resolved": "https://registry.npmmirror.com/rc-drawer/-/rc-drawer-3.1.3.tgz", "integrity": "sha512-2z+RdxmzXyZde/1OhVMfDR1e/GBswFeWSZ7FS3Fdd0qhgVdpV1wSzILzzxRaT481ItB5hOV+e8pZT07vdJE8kg==", "requires": { "classnames": "^2.2.6", @@ -14904,7 +14904,7 @@ }, "rc-dropdown": { "version": "2.4.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/rc-dropdown/-/rc-dropdown-2.4.1.tgz", + "resolved": "https://registry.npmmirror.com/rc-dropdown/-/rc-dropdown-2.4.1.tgz", "integrity": "sha512-p0XYn0wrOpAZ2fUGE6YJ6U8JBNc5ASijznZ6dkojdaEfQJAeZtV9KMEewhxkVlxGSbbdXe10ptjBlTEW9vEwEg==", "requires": { "babel-runtime": "^6.26.0", @@ -14916,7 +14916,7 @@ }, "rc-editor-core": { "version": "0.8.10", - "resolved": "http://173.15.15.82:8081/repository/npm-all/rc-editor-core/-/rc-editor-core-0.8.10.tgz", + "resolved": "https://registry.npmmirror.com/rc-editor-core/-/rc-editor-core-0.8.10.tgz", "integrity": "sha512-T3aHpeMCIYA1sdAI7ynHHjXy5fqp83uPlD68ovZ0oClTSc3tbHmyCxXlA+Ti4YgmcpCYv7avF6a+TIbAka53kw==", "requires": { "babel-runtime": "^6.26.0", @@ -14930,7 +14930,7 @@ }, "rc-editor-mention": { "version": "1.1.13", - "resolved": "http://173.15.15.82:8081/repository/npm-all/rc-editor-mention/-/rc-editor-mention-1.1.13.tgz", + "resolved": "https://registry.npmmirror.com/rc-editor-mention/-/rc-editor-mention-1.1.13.tgz", "integrity": "sha512-3AOmGir91Fi2ogfRRaXLtqlNuIwQpvla7oUnGHS1+3eo7b+fUp5IlKcagqtwUBB5oDNofoySXkLBxzWvSYNp/Q==", "requires": { "babel-runtime": "^6.23.0", @@ -14945,7 +14945,7 @@ }, "rc-form": { "version": "2.4.12", - "resolved": "http://173.15.15.82:8081/repository/npm-all/rc-form/-/rc-form-2.4.12.tgz", + "resolved": "https://registry.npmmirror.com/rc-form/-/rc-form-2.4.12.tgz", "integrity": "sha512-sHfyWRrnjCHkeCYfYAGop2GQBUC6CKMPcJF9h/gL/vTmZB/RN6fNOGKjXrXjFbwFwKXUWBoPtIDDDmXQW9xNdw==", "requires": { "async-validator": "~1.11.3", @@ -14961,7 +14961,7 @@ }, "rc-hammerjs": { "version": "0.6.10", - "resolved": "http://173.15.15.82:8081/repository/npm-all/rc-hammerjs/-/rc-hammerjs-0.6.10.tgz", + "resolved": "https://registry.npmmirror.com/rc-hammerjs/-/rc-hammerjs-0.6.10.tgz", "integrity": "sha512-Vgh9qIudyN5CHRop4M+v+xUniQBFWXKrsJxQRVtJOi2xgRrCeI52/bkpaL5HWwUhqTK9Ayq0n7lYTItT6ld5rg==", "requires": { "babel-runtime": "6.x", @@ -14971,7 +14971,7 @@ }, "rc-input-number": { "version": "4.5.9", - "resolved": "http://173.15.15.82:8081/repository/npm-all/rc-input-number/-/rc-input-number-4.5.9.tgz", + "resolved": "https://registry.npmmirror.com/rc-input-number/-/rc-input-number-4.5.9.tgz", "integrity": "sha512-wAT4EBpLDW4+27c935k4F1JLk+gnhyGBkpzBmtkNvIHLG8yTndZSJ2bFfSYfkA6C82IxmAztXs3ffCeUd/rkbg==", "requires": { "babel-runtime": "6.x", @@ -14983,7 +14983,7 @@ }, "rc-mentions": { "version": "0.4.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/rc-mentions/-/rc-mentions-0.4.2.tgz", + "resolved": "https://registry.npmmirror.com/rc-mentions/-/rc-mentions-0.4.2.tgz", "integrity": "sha512-DTZurQzacLXOfVuiHydGzqkq7cFMHXF18l2jZ9PhWUn2cqvOSY3W4osN0Pq29AOMOBpcxdZCzgc7Lb0r/bgkDw==", "requires": { "@ant-design/create-react-context": "^0.2.4", @@ -14996,7 +14996,7 @@ }, "rc-menu": { "version": "7.5.5", - "resolved": "http://173.15.15.82:8081/repository/npm-all/rc-menu/-/rc-menu-7.5.5.tgz", + "resolved": "https://registry.npmmirror.com/rc-menu/-/rc-menu-7.5.5.tgz", "integrity": "sha512-4YJXJgrpUGEA1rMftXN7bDhrV5rPB8oBJoHqT+GVXtIWCanfQxEnM3fmhHQhatL59JoAFMZhJaNzhJIk4FUWCQ==", "requires": { "classnames": "2.x", @@ -15012,7 +15012,7 @@ }, "rc-notification": { "version": "3.3.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/rc-notification/-/rc-notification-3.3.1.tgz", + "resolved": "https://registry.npmmirror.com/rc-notification/-/rc-notification-3.3.1.tgz", "integrity": "sha512-U5+f4BmBVfMSf3OHSLyRagsJ74yKwlrQAtbbL5ijoA0F2C60BufwnOcHG18tVprd7iaIjzZt1TKMmQSYSvgrig==", "requires": { "babel-runtime": "6.x", @@ -15024,7 +15024,7 @@ }, "rc-pagination": { "version": "1.21.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/rc-pagination/-/rc-pagination-1.21.1.tgz", + "resolved": "https://registry.npmmirror.com/rc-pagination/-/rc-pagination-1.21.1.tgz", "integrity": "sha512-Z+iYLbrJOBKHdgoAjLhL9jOgb7nrbPzNmV31p0ikph010/Ov1+UkrauYzWhumUyR+GbRFi3mummdKW/WtlOewA==", "requires": { "babel-runtime": "6.x", @@ -15035,7 +15035,7 @@ }, "rc-progress": { "version": "2.5.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/rc-progress/-/rc-progress-2.5.3.tgz", + "resolved": "https://registry.npmmirror.com/rc-progress/-/rc-progress-2.5.3.tgz", "integrity": "sha512-K2fa4CnqGehLZoMrdmBeZ86ONSTVcdk5FlqetbwJ3R/+42XfqhwQVOjWp2MH4P7XSQOMAGcNOy1SFfCP3415sg==", "requires": { "babel-runtime": "6.x", @@ -15079,7 +15079,7 @@ }, "rc-resize-observer": { "version": "0.1.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/rc-resize-observer/-/rc-resize-observer-0.1.3.tgz", + "resolved": "https://registry.npmmirror.com/rc-resize-observer/-/rc-resize-observer-0.1.3.tgz", "integrity": "sha512-uzOQEwx83xdQSFOkOAM7x7GHIQKYnrDV4dWxtCxyG1BS1pkfJ4EvDeMfsvAJHSYkQXVBu+sgRHGbRtLG3qiuUg==", "requires": { "classnames": "^2.2.1", @@ -15089,7 +15089,7 @@ }, "rc-select": { "version": "8.8.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/rc-select/-/rc-select-8.8.4.tgz", + "resolved": "https://registry.npmmirror.com/rc-select/-/rc-select-8.8.4.tgz", "integrity": "sha512-3ylsjhiUtEN4Tg6/ddg1wG0FXSmT/67LT2/KF8azaG6x/1sMNmSxoyi1nxVoFdmkCO5luDA5F1xCHCOxGuEj3A==", "requires": { "babel-runtime": "^6.23.0", @@ -15108,7 +15108,7 @@ }, "rc-slider": { "version": "8.7.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/rc-slider/-/rc-slider-8.7.1.tgz", + "resolved": "https://registry.npmmirror.com/rc-slider/-/rc-slider-8.7.1.tgz", "integrity": "sha512-WMT5mRFUEcrLWwTxsyS8jYmlaMsTVCZIGENLikHsNv+tE8ThU2lCoPfi/xFNUfJFNFSBFP3MwPez9ZsJmNp13g==", "requires": { "babel-runtime": "6.x", @@ -15123,7 +15123,7 @@ }, "rc-steps": { "version": "3.5.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/rc-steps/-/rc-steps-3.5.0.tgz", + "resolved": "https://registry.npmmirror.com/rc-steps/-/rc-steps-3.5.0.tgz", "integrity": "sha512-2Vkkrpa7PZbg7qPsqTNzVDov4u78cmxofjjnIHiGB9+9rqKS8oTLPzbW2uiWDr3Lk+yGwh8rbpGO1E6VAgBCOg==", "requires": { "babel-runtime": "^6.23.0", @@ -15134,7 +15134,7 @@ }, "rc-switch": { "version": "1.9.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/rc-switch/-/rc-switch-1.9.2.tgz", + "resolved": "https://registry.npmmirror.com/rc-switch/-/rc-switch-1.9.2.tgz", "integrity": "sha512-qaK7mY4FLDKy99Hq3A1tf8CcqfzKtHp9LPX8WTnZ0MzdHCTneSARb1XD7Eqeu8BactasYGsi2bF9p18Q+/5JEw==", "requires": { "classnames": "^2.2.1", @@ -15144,7 +15144,7 @@ }, "rc-table": { "version": "6.10.15", - "resolved": "http://173.15.15.82:8081/repository/npm-all/rc-table/-/rc-table-6.10.15.tgz", + "resolved": "https://registry.npmmirror.com/rc-table/-/rc-table-6.10.15.tgz", "integrity": "sha512-LAr0M/gqt+irOjvPNBLApmQ0CUHNOfKsEBhu1uIuB3OlN1ynA9z+sdoTQyNd9+8NSl0MYnQOOfhtLChAY7nU0A==", "requires": { "classnames": "^2.2.5", @@ -15159,7 +15159,7 @@ }, "rc-tabs": { "version": "9.7.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/rc-tabs/-/rc-tabs-9.7.0.tgz", + "resolved": "https://registry.npmmirror.com/rc-tabs/-/rc-tabs-9.7.0.tgz", "integrity": "sha512-kvmgp8/MfLzFZ06hWHignqomFQ5nF7BqKr5O1FfhE4VKsGrep52YSF/1MvS5oe0NPcI9XGNS2p751C5v6cYDpQ==", "requires": { "@ant-design/create-react-context": "^0.2.4", @@ -15177,7 +15177,7 @@ "dependencies": { "raf": { "version": "3.4.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/raf/-/raf-3.4.1.tgz", + "resolved": "https://registry.npmmirror.com/raf/-/raf-3.4.1.tgz", "integrity": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==", "requires": { "performance-now": "^2.1.0" @@ -15187,7 +15187,7 @@ }, "rc-time-picker": { "version": "3.7.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/rc-time-picker/-/rc-time-picker-3.7.3.tgz", + "resolved": "https://registry.npmmirror.com/rc-time-picker/-/rc-time-picker-3.7.3.tgz", "integrity": "sha512-Lv1Mvzp9fRXhXEnRLO4nW6GLNxUkfAZ3RsiIBsWjGjXXvMNjdr4BX/ayElHAFK0DoJqOhm7c5tjmIYpEOwcUXg==", "requires": { "classnames": "2.x", @@ -15200,7 +15200,7 @@ "dependencies": { "raf": { "version": "3.4.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/raf/-/raf-3.4.1.tgz", + "resolved": "https://registry.npmmirror.com/raf/-/raf-3.4.1.tgz", "integrity": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==", "requires": { "performance-now": "^2.1.0" @@ -15210,7 +15210,7 @@ }, "rc-tooltip": { "version": "3.7.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/rc-tooltip/-/rc-tooltip-3.7.3.tgz", + "resolved": "https://registry.npmmirror.com/rc-tooltip/-/rc-tooltip-3.7.3.tgz", "integrity": "sha512-dE2ibukxxkrde7wH9W8ozHKUO4aQnPZ6qBHtrTH9LoO836PjDdiaWO73fgPB05VfJs9FbZdmGPVEbXCeOP99Ww==", "requires": { "babel-runtime": "6.x", @@ -15220,7 +15220,7 @@ }, "rc-tree": { "version": "1.15.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/rc-tree/-/rc-tree-1.15.3.tgz", + "resolved": "https://registry.npmmirror.com/rc-tree/-/rc-tree-1.15.3.tgz", "integrity": "sha512-FIKGKCesbQnILbsjGyu354R5pfrFtOcYz/w3ZIqFkJWIbbUeveWU8BgTKcpeSQgyKju1hsWORAePkeA+V1unFg==", "requires": { "babel-runtime": "^6.23.0", @@ -15234,7 +15234,7 @@ "dependencies": { "rc-animate": { "version": "3.1.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/rc-animate/-/rc-animate-3.1.1.tgz", + "resolved": "https://registry.npmmirror.com/rc-animate/-/rc-animate-3.1.1.tgz", "integrity": "sha512-8wg2Zg3EETy0k/9kYuis30NJNQg1D6/WSQwnCiz6SvyxQXNet/rVraRz3bPngwY6rcU2nlRvoShiYOorXyF7Sg==", "requires": { "@ant-design/css-animation": "^1.7.2", @@ -15255,7 +15255,7 @@ }, "rc-tree-select": { "version": "2.9.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/rc-tree-select/-/rc-tree-select-2.9.4.tgz", + "resolved": "https://registry.npmmirror.com/rc-tree-select/-/rc-tree-select-2.9.4.tgz", "integrity": "sha512-0HQkXAN4XbfBW20CZYh3G+V+VMrjX42XRtDCpyv6PDUm5vikC0Ob682ZBCVS97Ww2a5Hf6Ajmu0ahWEdIEpwhg==", "requires": { "classnames": "^2.2.1", @@ -15273,7 +15273,7 @@ "dependencies": { "rc-tree": { "version": "2.1.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/rc-tree/-/rc-tree-2.1.4.tgz", + "resolved": "https://registry.npmmirror.com/rc-tree/-/rc-tree-2.1.4.tgz", "integrity": "sha512-Xey794Iavgs8YldFlXcZLOhfcIhlX5Oz/yfKufknBXf2AlZCOkc7aHqSM9uTF7fBPtTGPhPxNEfOqHfY7b7xng==", "requires": { "@ant-design/create-react-context": "^0.2.4", @@ -15287,7 +15287,7 @@ }, "rc-trigger": { "version": "3.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/rc-trigger/-/rc-trigger-3.0.0.tgz", + "resolved": "https://registry.npmmirror.com/rc-trigger/-/rc-trigger-3.0.0.tgz", "integrity": "sha512-hQxbbJpo23E2QnYczfq3Ec5J5tVl2mUDhkqxrEsQAqk16HfADQg+iKNWzEYXyERSncdxfnzYuaBgy764mNRzTA==", "requires": { "babel-runtime": "6.x", @@ -15301,7 +15301,7 @@ "dependencies": { "rc-animate": { "version": "3.1.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/rc-animate/-/rc-animate-3.1.1.tgz", + "resolved": "https://registry.npmmirror.com/rc-animate/-/rc-animate-3.1.1.tgz", "integrity": "sha512-8wg2Zg3EETy0k/9kYuis30NJNQg1D6/WSQwnCiz6SvyxQXNet/rVraRz3bPngwY6rcU2nlRvoShiYOorXyF7Sg==", "requires": { "@ant-design/css-animation": "^1.7.2", @@ -15316,7 +15316,7 @@ }, "rc-trigger": { "version": "2.6.5", - "resolved": "http://173.15.15.82:8081/repository/npm-all/rc-trigger/-/rc-trigger-2.6.5.tgz", + "resolved": "https://registry.npmmirror.com/rc-trigger/-/rc-trigger-2.6.5.tgz", "integrity": "sha512-m6Cts9hLeZWsTvWnuMm7oElhf+03GOjOLfTuU0QmdB9ZrW7jR2IpI5rpNM7i9MvAAlMAmTx5Zr7g3uu/aMvZAw==", "requires": { "babel-runtime": "6.x", @@ -15330,7 +15330,7 @@ }, "rc-upload": { "version": "2.9.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/rc-upload/-/rc-upload-2.9.4.tgz", + "resolved": "https://registry.npmmirror.com/rc-upload/-/rc-upload-2.9.4.tgz", "integrity": "sha512-WXt0HGxXyzLrPV6iec/96Rbl/6dyrAW8pKuY6wwD7yFYwfU5bjgKjv7vC8KNMJ6wzitFrZjnoiogNL3dF9dj3Q==", "requires": { "babel-runtime": "6.x", @@ -15341,7 +15341,7 @@ }, "rc-util": { "version": "4.21.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/rc-util/-/rc-util-4.21.1.tgz", + "resolved": "https://registry.npmmirror.com/rc-util/-/rc-util-4.21.1.tgz", "integrity": "sha512-Z+vlkSQVc1l8O2UjR3WQ+XdWlhj5q9BMQNLk2iOBch75CqPfrJyGtcWMcnhRlNuDu0Ndtt4kLVO8JI8BrABobg==", "requires": { "add-dom-event-listener": "^1.1.0", @@ -15353,7 +15353,7 @@ }, "react": { "version": "16.14.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/react/-/react-16.14.0.tgz", + "resolved": "https://registry.npmmirror.com/react/-/react-16.14.0.tgz", "integrity": "sha512-0X2CImDkJGApiAlcf0ODKIneSwBPhqJawOa5wCtKbu7ZECrmS26NvtSILynQ66cgkT/RJ4LidJOc3bUESwmU8g==", "requires": { "loose-envify": "^1.1.0", @@ -15363,7 +15363,7 @@ }, "react-base16-styling": { "version": "0.6.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/react-base16-styling/-/react-base16-styling-0.6.0.tgz", + "resolved": "https://registry.npmmirror.com/react-base16-styling/-/react-base16-styling-0.6.0.tgz", "integrity": "sha512-yvh/7CArceR/jNATXOKDlvTnPKPmGZz7zsenQ3jUwLzHkNUR0CvY3yGYJbWJ/nnxsL8Sgmt5cO3/SILVuPO6TQ==", "dev": true, "requires": { @@ -15375,7 +15375,7 @@ }, "react-beautiful-dnd": { "version": "10.1.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/react-beautiful-dnd/-/react-beautiful-dnd-10.1.1.tgz", + "resolved": "https://registry.npmmirror.com/react-beautiful-dnd/-/react-beautiful-dnd-10.1.1.tgz", "integrity": "sha512-TdE06Shfp56wm28EzjgC56EEMgGI5PDHejJ2bxuAZvZr8CVsbksklsJC06Hxf0MSL7FHbflL/RpkJck9isuxHg==", "requires": { "@babel/runtime-corejs2": "^7.4.2", @@ -15403,12 +15403,12 @@ }, "react-codemirror2": { "version": "6.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/react-codemirror2/-/react-codemirror2-6.0.1.tgz", + "resolved": "https://registry.npmmirror.com/react-codemirror2/-/react-codemirror2-6.0.1.tgz", "integrity": "sha512-rutEKVgvFhWcy/GeVA1hFbqrO89qLqgqdhUr7YhYgIzdyICdlRQv+ztuNvOFQMXrO0fLt0VkaYOdMdYdQgsSUA==" }, "react-color": { "version": "2.19.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/react-color/-/react-color-2.19.3.tgz", + "resolved": "https://registry.npmmirror.com/react-color/-/react-color-2.19.3.tgz", "integrity": "sha512-LEeGE/ZzNLIsFWa1TMe8y5VYqr7bibneWmvJwm1pCn/eNmrabWDh659JSPn9BuaMpEfU83WTOJfnCcjDZwNQTA==", "requires": { "@icons/material": "^0.2.4", @@ -15422,12 +15422,12 @@ }, "react-content-loader": { "version": "3.4.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/react-content-loader/-/react-content-loader-3.4.2.tgz", + "resolved": "https://registry.npmmirror.com/react-content-loader/-/react-content-loader-3.4.2.tgz", "integrity": "sha512-UsL3uyPUBZbaPXr52E+MMIOjs7qr6QpcCiF9Xt7we0ACEMAFYp6rWNxVwJbk4/1Peqe9Deajs0PRW5ymvyF5SA==" }, "react-cookies": { "version": "0.1.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/react-cookies/-/react-cookies-0.1.1.tgz", + "resolved": "https://registry.npmmirror.com/react-cookies/-/react-cookies-0.1.1.tgz", "integrity": "sha512-PP75kJ4vtoHuuTdq0TAD3RmlAv7vuDQh9fkC4oDlhntgs9vX1DmREomO0Y1mcQKR9nMZ6/zxoflaMJ3MAmF5KQ==", "requires": { "cookie": "^0.3.1", @@ -15444,7 +15444,7 @@ }, "react-cropper": { "version": "2.1.8", - "resolved": "http://173.15.15.82:8081/repository/npm-all/react-cropper/-/react-cropper-2.1.8.tgz", + "resolved": "https://registry.npmmirror.com/react-cropper/-/react-cropper-2.1.8.tgz", "integrity": "sha512-QEj6CE9et/gMRqpaKMgZQdBgtzLjjq+zj1pmHwtoWG6GqscDl4QpTwoEElWN2pieYxkwFaZa0lPiD2b9nwqLKQ==", "requires": { "cropperjs": "^1.5.12" @@ -15452,7 +15452,7 @@ }, "react-datepicker": { "version": "2.16.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/react-datepicker/-/react-datepicker-2.16.0.tgz", + "resolved": "https://registry.npmmirror.com/react-datepicker/-/react-datepicker-2.16.0.tgz", "integrity": "sha512-TvcmSY27rn0JKvuJuIXNNS+niGQNdgtuG/CsBttVYhPOA9KmSw7c2PvQBPVEvzkyV+QPNJ8jN/KVJNj9uvopqA==", "requires": { "classnames": "^2.2.6", @@ -15472,7 +15472,7 @@ }, "react-popper": { "version": "1.3.11", - "resolved": "http://173.15.15.82:8081/repository/npm-all/react-popper/-/react-popper-1.3.11.tgz", + "resolved": "https://registry.npmmirror.com/react-popper/-/react-popper-1.3.11.tgz", "integrity": "sha512-VSA/bS+pSndSF2fiasHK/PTEEAyOpX60+H5EPAjoArr8JGm+oihu4UbrqcEBpQibJxBVCpYyjAX7abJ+7DoYVg==", "requires": { "@babel/runtime": "^7.1.2", @@ -15493,7 +15493,7 @@ }, "react-dev-utils": { "version": "9.2.0-next.80", - "resolved": "http://173.15.15.82:8081/repository/npm-all/react-dev-utils/-/react-dev-utils-9.2.0-next.80.tgz", + "resolved": "https://registry.npmmirror.com/react-dev-utils/-/react-dev-utils-9.2.0-next.80.tgz", "integrity": "sha512-ExIaMoWTP5l36w0Xm4uA3SYpkn8xuP6sniZ3dDuvd9RvzY3SZDqj0LkfDOGfX3edXGZwiC/FEpABNwJGBrx04g==", "requires": { "@babel/code-frame": "7.5.5", @@ -15529,7 +15529,7 @@ }, "browserslist": { "version": "4.7.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/browserslist/-/browserslist-4.7.3.tgz", + "resolved": "https://registry.npmmirror.com/browserslist/-/browserslist-4.7.3.tgz", "integrity": "sha512-jWvmhqYpx+9EZm/FxcZSbUZyDEvDTLDi3nSAKbzEkyWvtI0mNSmUosey+5awDW1RUlrgXbQb5A6qY1xQH9U6MQ==", "requires": { "caniuse-lite": "^1.0.30001010", @@ -15539,7 +15539,7 @@ }, "chalk": { "version": "2.4.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/chalk/-/chalk-2.4.2.tgz", + "resolved": "https://registry.npmmirror.com/chalk/-/chalk-2.4.2.tgz", "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "requires": { "ansi-styles": "^3.2.1", @@ -15581,7 +15581,7 @@ }, "find-up": { "version": "3.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/find-up/-/find-up-3.0.0.tgz", + "resolved": "https://registry.npmmirror.com/find-up/-/find-up-3.0.0.tgz", "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", "requires": { "locate-path": "^3.0.0" @@ -15625,7 +15625,7 @@ }, "loader-utils": { "version": "1.2.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/loader-utils/-/loader-utils-1.2.3.tgz", + "resolved": "https://registry.npmmirror.com/loader-utils/-/loader-utils-1.2.3.tgz", "integrity": "sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==", "requires": { "big.js": "^5.2.2", @@ -15635,7 +15635,7 @@ }, "locate-path": { "version": "3.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/locate-path/-/locate-path-3.0.0.tgz", + "resolved": "https://registry.npmmirror.com/locate-path/-/locate-path-3.0.0.tgz", "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", "requires": { "p-locate": "^3.0.0", @@ -15644,7 +15644,7 @@ }, "p-limit": { "version": "2.3.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/p-limit/-/p-limit-2.3.0.tgz", + "resolved": "https://registry.npmmirror.com/p-limit/-/p-limit-2.3.0.tgz", "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "requires": { "p-try": "^2.0.0" @@ -15652,7 +15652,7 @@ }, "p-locate": { "version": "3.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/p-locate/-/p-locate-3.0.0.tgz", + "resolved": "https://registry.npmmirror.com/p-locate/-/p-locate-3.0.0.tgz", "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", "requires": { "p-limit": "^2.0.0" @@ -15660,12 +15660,12 @@ }, "p-try": { "version": "2.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/p-try/-/p-try-2.2.0.tgz", + "resolved": "https://registry.npmmirror.com/p-try/-/p-try-2.2.0.tgz", "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" }, "strip-ansi": { "version": "5.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/strip-ansi/-/strip-ansi-5.2.0.tgz", + "resolved": "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-5.2.0.tgz", "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", "requires": { "ansi-regex": "^4.1.0" @@ -15675,7 +15675,7 @@ }, "react-dom": { "version": "16.14.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/react-dom/-/react-dom-16.14.0.tgz", + "resolved": "https://registry.npmmirror.com/react-dom/-/react-dom-16.14.0.tgz", "integrity": "sha512-1gCeQXDLoIqMgqD3IO2Ah9bnf0w9kzhwN5q4FGnHZ67hBm9yePzB5JJAIQCc8x3pFnNlwFq4RidZggNAAkzWWw==", "requires": { "loose-envify": "^1.1.0", @@ -15695,12 +15695,12 @@ }, "react-error-overlay": { "version": "6.1.0-next.80", - "resolved": "http://173.15.15.82:8081/repository/npm-all/react-error-overlay/-/react-error-overlay-6.1.0-next.80.tgz", + "resolved": "https://registry.npmmirror.com/react-error-overlay/-/react-error-overlay-6.1.0-next.80.tgz", "integrity": "sha512-FEho9UexWQuyY1cuGQY/H20upVkojaleGSx2jkLvj5/UtpT4NkI8IhettXmSf/BfV4CG5xN+eENSh7Q6gAO2dw==" }, "react-event-listener": { "version": "0.5.10", - "resolved": "http://173.15.15.82:8081/repository/npm-all/react-event-listener/-/react-event-listener-0.5.10.tgz", + "resolved": "https://registry.npmmirror.com/react-event-listener/-/react-event-listener-0.5.10.tgz", "integrity": "sha512-YZklRszh9hq3WP3bdNLjFwJcTCVe7qyTf5+LWNaHfZQaZrptsefDK2B5HHpOsEEaMHvjllUPr0+qIFVTSsurow==", "requires": { "@babel/runtime": "7.0.0-beta.42", @@ -15711,7 +15711,7 @@ "dependencies": { "@babel/runtime": { "version": "7.0.0-beta.42", - "resolved": "http://173.15.15.82:8081/repository/npm-all/@babel/runtime/-/runtime-7.0.0-beta.42.tgz", + "resolved": "https://registry.npmmirror.com/@babel/runtime/-/runtime-7.0.0-beta.42.tgz", "integrity": "sha512-iOGRzUoONLOtmCvjUsZv3mZzgCT6ljHQY5fr1qG1QIiJQwtM7zbPWGGpa3QWETq+UqwWyJnoi5XZDZRwZDFciQ==", "requires": { "core-js": "^2.5.3", @@ -15760,12 +15760,12 @@ }, "react-is": { "version": "16.13.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/react-is/-/react-is-16.13.1.tgz", + "resolved": "https://registry.npmmirror.com/react-is/-/react-is-16.13.1.tgz", "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" }, "react-json-view": { "version": "1.21.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/react-json-view/-/react-json-view-1.21.3.tgz", + "resolved": "https://registry.npmmirror.com/react-json-view/-/react-json-view-1.21.3.tgz", "integrity": "sha512-13p8IREj9/x/Ye4WI/JpjhoIwuzEgUAtgJZNBJckfzJt1qyh24BdTm6UQNGnyTq9dapQdrqvquZTo3dz1X6Cjw==", "dev": true, "requires": { @@ -15777,7 +15777,7 @@ }, "react-jss": { "version": "8.6.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/react-jss/-/react-jss-8.6.1.tgz", + "resolved": "https://registry.npmmirror.com/react-jss/-/react-jss-8.6.1.tgz", "integrity": "sha512-SH6XrJDJkAphp602J14JTy3puB2Zxz1FkM3bKVE8wON+va99jnUTKWnzGECb3NfIn9JPR5vHykge7K3/A747xQ==", "requires": { "hoist-non-react-statics": "^2.5.0", @@ -15789,7 +15789,7 @@ "dependencies": { "hoist-non-react-statics": { "version": "2.5.5", - "resolved": "http://173.15.15.82:8081/repository/npm-all/hoist-non-react-statics/-/hoist-non-react-statics-2.5.5.tgz", + "resolved": "https://registry.npmmirror.com/hoist-non-react-statics/-/hoist-non-react-statics-2.5.5.tgz", "integrity": "sha512-rqcy4pJo55FTTLWt+bU8ukscqHeE/e9KWvsOW2b/a3afxQZhwkQdT1rPPCJ0rYXdj4vNcasY8zHTH+jF/qStxw==" } } @@ -15807,12 +15807,12 @@ }, "react-lifecycles-compat": { "version": "3.0.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", + "resolved": "https://registry.npmmirror.com/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" }, "react-loadable": { "version": "5.5.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/react-loadable/-/react-loadable-5.5.0.tgz", + "resolved": "https://registry.npmmirror.com/react-loadable/-/react-loadable-5.5.0.tgz", "integrity": "sha512-C8Aui0ZpMd4KokxRdVAm2bQtI03k2RMRNzOB+IipV3yxFTSVICv7WoUr5L9ALB5BmKO1iHgZtWM8EvYG83otdg==", "requires": { "prop-types": "^15.5.0" @@ -15820,7 +15820,7 @@ }, "react-monaco-editor": { "version": "0.37.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/react-monaco-editor/-/react-monaco-editor-0.37.0.tgz", + "resolved": "https://registry.npmmirror.com/react-monaco-editor/-/react-monaco-editor-0.37.0.tgz", "integrity": "sha512-4fbmTIPOfEdmAlslYPVXt+TRSd975XwgfxuSEL32efjXQwTzPZWA/Wf5qn8nYBMl+Lfdhu1DGDTLE6CZ4UOjzw==", "requires": { "@types/react": "^16.x", @@ -15847,7 +15847,7 @@ }, "react-player": { "version": "1.15.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/react-player/-/react-player-1.15.3.tgz", + "resolved": "https://registry.npmmirror.com/react-player/-/react-player-1.15.3.tgz", "integrity": "sha512-8fc0R1AipFIy7l4lKgnIg+gMU2IY32ZMxxBlINjXAq/YnN3HUP3hOaE+aQ0lQv+a1/MMZgbekWD86ZGDO7kB8g==", "requires": { "deepmerge": "^4.0.0", @@ -15857,7 +15857,7 @@ "dependencies": { "deepmerge": { "version": "4.2.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/deepmerge/-/deepmerge-4.2.2.tgz", + "resolved": "https://registry.npmmirror.com/deepmerge/-/deepmerge-4.2.2.tgz", "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==" } } @@ -15873,7 +15873,7 @@ }, "react-redux": { "version": "5.0.7", - "resolved": "http://173.15.15.82:8081/repository/npm-all/react-redux/-/react-redux-5.0.7.tgz", + "resolved": "https://registry.npmmirror.com/react-redux/-/react-redux-5.0.7.tgz", "integrity": "sha512-5VI8EV5hdgNgyjfmWzBbdrqUkrVRKlyTKk1sGH3jzM2M2Mhj/seQgPXaz6gVAj2lz/nz688AdTqMO18Lr24Zhg==", "requires": { "hoist-non-react-statics": "^2.5.0", @@ -15886,14 +15886,14 @@ "dependencies": { "hoist-non-react-statics": { "version": "2.5.5", - "resolved": "http://173.15.15.82:8081/repository/npm-all/hoist-non-react-statics/-/hoist-non-react-statics-2.5.5.tgz", + "resolved": "https://registry.npmmirror.com/hoist-non-react-statics/-/hoist-non-react-statics-2.5.5.tgz", "integrity": "sha512-rqcy4pJo55FTTLWt+bU8ukscqHeE/e9KWvsOW2b/a3afxQZhwkQdT1rPPCJ0rYXdj4vNcasY8zHTH+jF/qStxw==" } } }, "react-resizable": { "version": "1.11.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/react-resizable/-/react-resizable-1.11.1.tgz", + "resolved": "https://registry.npmmirror.com/react-resizable/-/react-resizable-1.11.1.tgz", "integrity": "sha512-S70gbLaAYqjuAd49utRHibtHLrHXInh7GuOR+6OO6RO6uleQfuBnWmZjRABfqNEx3C3Z6VPLg0/0uOYFrkfu9Q==", "requires": { "prop-types": "15.x", @@ -15902,7 +15902,7 @@ }, "react-router": { "version": "4.3.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/react-router/-/react-router-4.3.1.tgz", + "resolved": "https://registry.npmmirror.com/react-router/-/react-router-4.3.1.tgz", "integrity": "sha512-yrvL8AogDh2X42Dt9iknk4wF4V8bWREPirFfS9gLU1huk6qK41sg7Z/1S81jjTrGHxa3B8R3J6xIkDAA6CVarg==", "requires": { "history": "^4.7.2", @@ -15916,14 +15916,14 @@ "dependencies": { "hoist-non-react-statics": { "version": "2.5.5", - "resolved": "http://173.15.15.82:8081/repository/npm-all/hoist-non-react-statics/-/hoist-non-react-statics-2.5.5.tgz", + "resolved": "https://registry.npmmirror.com/hoist-non-react-statics/-/hoist-non-react-statics-2.5.5.tgz", "integrity": "sha512-rqcy4pJo55FTTLWt+bU8ukscqHeE/e9KWvsOW2b/a3afxQZhwkQdT1rPPCJ0rYXdj4vNcasY8zHTH+jF/qStxw==" } } }, "react-router-dom": { "version": "4.3.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/react-router-dom/-/react-router-dom-4.3.1.tgz", + "resolved": "https://registry.npmmirror.com/react-router-dom/-/react-router-dom-4.3.1.tgz", "integrity": "sha512-c/MlywfxDdCp7EnB7YfPMOfMD3tOtIjrQlj/CKfNMBxdmpJP8xcz5P/UAFn3JbnQCNUxsHyVVqllF9LhgVyFCA==", "requires": { "history": "^4.7.2", @@ -15936,7 +15936,7 @@ }, "react-scrollbar-size": { "version": "2.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/react-scrollbar-size/-/react-scrollbar-size-2.1.0.tgz", + "resolved": "https://registry.npmmirror.com/react-scrollbar-size/-/react-scrollbar-size-2.1.0.tgz", "integrity": "sha512-9dDUJvk7S48r0TRKjlKJ9e/LkLLYgc9LdQR6W21I8ZqtSrEsedPOoMji4nU3DHy7fx2l8YMScJS/N7qiloYzXQ==", "requires": { "babel-runtime": "^6.26.0", @@ -15947,7 +15947,7 @@ }, "react-slick": { "version": "0.28.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/react-slick/-/react-slick-0.28.1.tgz", + "resolved": "https://registry.npmmirror.com/react-slick/-/react-slick-0.28.1.tgz", "integrity": "sha512-JwRQXoWGJRbUTE7eZI1rGIHaXX/4YuwX6gn7ulfvUZ4vFDVQAA25HcsHSYaUiRCduTr6rskyIuyPMpuG6bbluw==", "requires": { "classnames": "^2.2.5", @@ -15959,7 +15959,7 @@ }, "react-split-pane": { "version": "0.1.92", - "resolved": "http://173.15.15.82:8081/repository/npm-all/react-split-pane/-/react-split-pane-0.1.92.tgz", + "resolved": "https://registry.npmmirror.com/react-split-pane/-/react-split-pane-0.1.92.tgz", "integrity": "sha512-GfXP1xSzLMcLJI5BM36Vh7GgZBpy+U/X0no+VM3fxayv+p1Jly5HpMofZJraeaMl73b3hvlr+N9zJKvLB/uz9w==", "requires": { "prop-types": "^15.7.2", @@ -15969,7 +15969,7 @@ }, "react-style-proptype": { "version": "3.2.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/react-style-proptype/-/react-style-proptype-3.2.2.tgz", + "resolved": "https://registry.npmmirror.com/react-style-proptype/-/react-style-proptype-3.2.2.tgz", "integrity": "sha512-ywYLSjNkxKHiZOqNlso9PZByNEY+FTyh3C+7uuziK0xFXu9xzdyfHwg4S9iyiRRoPCR4k2LqaBBsWVmSBwCWYQ==", "requires": { "prop-types": "^15.5.4" @@ -16005,7 +16005,7 @@ }, "react-transition-group": { "version": "2.9.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/react-transition-group/-/react-transition-group-2.9.0.tgz", + "resolved": "https://registry.npmmirror.com/react-transition-group/-/react-transition-group-2.9.0.tgz", "integrity": "sha512-+HzNTCHpeQyl4MJ/bdE0u6XRMe9+XG/+aL4mCxVN4DnPBQ0/5bfHWPDuOZUzYdMj94daZaZdCCc1Dzt9R/xSSg==", "requires": { "dom-helpers": "^3.4.0", @@ -16016,7 +16016,7 @@ }, "react-url-query": { "version": "1.5.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/react-url-query/-/react-url-query-1.5.0.tgz", + "resolved": "https://registry.npmmirror.com/react-url-query/-/react-url-query-1.5.0.tgz", "integrity": "sha512-mivzv+T7+qNIvY3Ho+ja318huiWamFq6MbhxgU/hn71nICd5hqNMmULOZyp6+iTB+fyjQcdjsEI5iwz++syipw==", "requires": { "loose-envify": "^1.2.0", @@ -16026,7 +16026,7 @@ }, "react-virtualized": { "version": "9.22.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/react-virtualized/-/react-virtualized-9.22.3.tgz", + "resolved": "https://registry.npmmirror.com/react-virtualized/-/react-virtualized-9.22.3.tgz", "integrity": "sha512-MKovKMxWTcwPSxE1kK1HcheQTWfuCxAuBoSTf2gwyMM21NdX/PXUhnoP8Uc5dRKd+nKm8v41R36OellhdCpkrw==", "requires": { "@babel/runtime": "^7.7.2", @@ -16047,7 +16047,7 @@ }, "dom-helpers": { "version": "5.2.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/dom-helpers/-/dom-helpers-5.2.1.tgz", + "resolved": "https://registry.npmmirror.com/dom-helpers/-/dom-helpers-5.2.1.tgz", "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", "requires": { "@babel/runtime": "^7.8.7", @@ -16063,7 +16063,7 @@ }, "react-zmage": { "version": "0.8.5-beta.37", - "resolved": "http://173.15.15.82:8081/repository/npm-all/react-zmage/-/react-zmage-0.8.5-beta.37.tgz", + "resolved": "https://registry.npmmirror.com/react-zmage/-/react-zmage-0.8.5-beta.37.tgz", "integrity": "sha512-6US4DVozc2IdqxHCrMAejDy3H08B95Rc/LeFMnHBblE0wagKbqbQlHfwgLRUcdPBBKCtm1KuWNKiN3MXurrcOg==", "requires": { "classnames": "^2.3.1" @@ -16071,7 +16071,7 @@ }, "reactcss": { "version": "1.2.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/reactcss/-/reactcss-1.2.3.tgz", + "resolved": "https://registry.npmmirror.com/reactcss/-/reactcss-1.2.3.tgz", "integrity": "sha512-KiwVUcFu1RErkI97ywr8nvx8dNOpT03rbnma0SSalTYjkrPYaEajR4a/MRt6DZ46K6arDRbWMNHF+xH7G7n/8A==", "requires": { "lodash": "^4.0.1" @@ -16117,7 +16117,7 @@ }, "readable-stream": { "version": "2.3.7", - "resolved": "http://173.15.15.82:8081/repository/npm-all/readable-stream/-/readable-stream-2.3.7.tgz", + "resolved": "https://registry.npmmirror.com/readable-stream/-/readable-stream-2.3.7.tgz", "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", "requires": { "core-util-is": "~1.0.0", @@ -16131,7 +16131,7 @@ }, "readdirp": { "version": "2.2.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/readdirp/-/readdirp-2.2.1.tgz", + "resolved": "https://registry.npmmirror.com/readdirp/-/readdirp-2.2.1.tgz", "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", "requires": { "graceful-fs": "^4.1.11", @@ -16151,7 +16151,7 @@ }, "braces": { "version": "2.3.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/braces/-/braces-2.3.2.tgz", + "resolved": "https://registry.npmmirror.com/braces/-/braces-2.3.2.tgz", "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", "requires": { "arr-flatten": "^1.1.0", @@ -16252,7 +16252,7 @@ }, "is-descriptor": { "version": "0.1.6", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-descriptor/-/is-descriptor-0.1.6.tgz", + "resolved": "https://registry.npmmirror.com/is-descriptor/-/is-descriptor-0.1.6.tgz", "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", "requires": { "is-accessor-descriptor": "^0.1.6", @@ -16262,14 +16262,14 @@ }, "kind-of": { "version": "5.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/kind-of/-/kind-of-5.1.0.tgz", + "resolved": "https://registry.npmmirror.com/kind-of/-/kind-of-5.1.0.tgz", "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" } } }, "extglob": { "version": "2.0.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/extglob/-/extglob-2.0.4.tgz", + "resolved": "https://registry.npmmirror.com/extglob/-/extglob-2.0.4.tgz", "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", "requires": { "array-unique": "^0.3.2", @@ -16323,7 +16323,7 @@ }, "is-accessor-descriptor": { "version": "1.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "resolved": "https://registry.npmmirror.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", "requires": { "kind-of": "^6.0.0" @@ -16336,7 +16336,7 @@ }, "is-data-descriptor": { "version": "1.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "resolved": "https://registry.npmmirror.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", "requires": { "kind-of": "^6.0.0" @@ -16344,7 +16344,7 @@ }, "is-descriptor": { "version": "1.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-descriptor/-/is-descriptor-1.0.2.tgz", + "resolved": "https://registry.npmmirror.com/is-descriptor/-/is-descriptor-1.0.2.tgz", "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", "requires": { "is-accessor-descriptor": "^1.0.0", @@ -16377,12 +16377,12 @@ }, "kind-of": { "version": "6.0.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/kind-of/-/kind-of-6.0.3.tgz", + "resolved": "https://registry.npmmirror.com/kind-of/-/kind-of-6.0.3.tgz", "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" }, "micromatch": { "version": "3.1.10", - "resolved": "http://173.15.15.82:8081/repository/npm-all/micromatch/-/micromatch-3.1.10.tgz", + "resolved": "https://registry.npmmirror.com/micromatch/-/micromatch-3.1.10.tgz", "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", "requires": { "arr-diff": "^4.0.0", @@ -16404,7 +16404,7 @@ }, "recompose": { "version": "0.27.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/recompose/-/recompose-0.27.1.tgz", + "resolved": "https://registry.npmmirror.com/recompose/-/recompose-0.27.1.tgz", "integrity": "sha512-p7xsyi/rfNjHfdP7vPU02uSFa+Q1eHhjKrvO+3+kRP4Ortj+MxEmpmd+UQtBGM2D2iNAjzNI5rCyBKp9Ob5McA==", "requires": { "babel-runtime": "^6.26.0", @@ -16417,14 +16417,14 @@ "dependencies": { "hoist-non-react-statics": { "version": "2.5.5", - "resolved": "http://173.15.15.82:8081/repository/npm-all/hoist-non-react-statics/-/hoist-non-react-statics-2.5.5.tgz", + "resolved": "https://registry.npmmirror.com/hoist-non-react-statics/-/hoist-non-react-statics-2.5.5.tgz", "integrity": "sha512-rqcy4pJo55FTTLWt+bU8ukscqHeE/e9KWvsOW2b/a3afxQZhwkQdT1rPPCJ0rYXdj4vNcasY8zHTH+jF/qStxw==" } } }, "recursive-readdir": { "version": "2.2.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/recursive-readdir/-/recursive-readdir-2.2.2.tgz", + "resolved": "https://registry.npmmirror.com/recursive-readdir/-/recursive-readdir-2.2.2.tgz", "integrity": "sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg==", "requires": { "minimatch": "3.0.4" @@ -16465,23 +16465,23 @@ }, "redux-thunk": { "version": "2.3.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/redux-thunk/-/redux-thunk-2.3.0.tgz", + "resolved": "https://registry.npmmirror.com/redux-thunk/-/redux-thunk-2.3.0.tgz", "integrity": "sha512-km6dclyFnmcvxhAcrQV2AkZmPQjzPDjgVlQtR0EQjxZPyJ0BnMf3in1ryuR8A2qU0HldVRfxYXbFSKlI3N7Slw==" }, "regenerate": { "version": "1.4.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/regenerate/-/regenerate-1.4.2.tgz", + "resolved": "https://registry.npmmirror.com/regenerate/-/regenerate-1.4.2.tgz", "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", "dev": true }, "regenerator-runtime": { "version": "0.11.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz", + "resolved": "https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz", "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==" }, "regenerator-transform": { "version": "0.10.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/regenerator-transform/-/regenerator-transform-0.10.1.tgz", + "resolved": "https://registry.npmmirror.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz", "integrity": "sha512-PJepbvDbuK1xgIgnau7Y90cwaAmO/LCLMI2mPvaXq2heGMR3aWW5/BQvYrhJ8jgmQjXewXvBjzfqKcVOmhjZ6Q==", "dev": true, "requires": { @@ -16492,7 +16492,7 @@ }, "regex-cache": { "version": "0.4.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/regex-cache/-/regex-cache-0.4.4.tgz", + "resolved": "https://registry.npmmirror.com/regex-cache/-/regex-cache-0.4.4.tgz", "integrity": "sha512-nVIZwtCjkC9YgvWkpM55B5rBhBYRZhAaJbgcFYXXsHnbZ9UZI9nnVWYZpBlCqv9ho2eZryPnWrZGsOdPwVWXWQ==", "requires": { "is-equal-shallow": "^0.1.3" @@ -16500,7 +16500,7 @@ }, "regex-not": { "version": "1.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/regex-not/-/regex-not-1.0.2.tgz", + "resolved": "https://registry.npmmirror.com/regex-not/-/regex-not-1.0.2.tgz", "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", "requires": { "extend-shallow": "^3.0.2", @@ -16529,7 +16529,7 @@ }, "registry-auth-token": { "version": "3.4.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/registry-auth-token/-/registry-auth-token-3.4.0.tgz", + "resolved": "https://registry.npmmirror.com/registry-auth-token/-/registry-auth-token-3.4.0.tgz", "integrity": "sha512-4LM6Fw8eBQdwMYcES4yTnn2TqIasbXuwDx3um+QRs7S55aMKCBKBxvPXl2RiUjHwuJLTyYfxSpmfSAjQpcuP+A==", "dev": true, "requires": { @@ -16582,7 +16582,7 @@ }, "renderkid": { "version": "2.0.7", - "resolved": "http://173.15.15.82:8081/repository/npm-all/renderkid/-/renderkid-2.0.7.tgz", + "resolved": "https://registry.npmmirror.com/renderkid/-/renderkid-2.0.7.tgz", "integrity": "sha512-oCcFyxaMrKsKcTY59qnCAtmDVSLfPbrv6A3tVbPdFMMrv5jaK10V6m40cKsoPNhAqN6rmHW9sswW4o3ruSrwUQ==", "dev": true, "requires": { @@ -16595,7 +16595,7 @@ }, "repeat-element": { "version": "1.1.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/repeat-element/-/repeat-element-1.1.4.tgz", + "resolved": "https://registry.npmmirror.com/repeat-element/-/repeat-element-1.1.4.tgz", "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==" }, "repeat-string": { @@ -16613,7 +16613,7 @@ }, "request": { "version": "2.88.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/request/-/request-2.88.2.tgz", + "resolved": "https://registry.npmmirror.com/request/-/request-2.88.2.tgz", "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", "requires": { "aws-sign2": "~0.7.0", @@ -16685,7 +16685,7 @@ }, "resize-observer-polyfill": { "version": "1.5.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz", + "resolved": "https://registry.npmmirror.com/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz", "integrity": "sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==" }, "resolve": { @@ -16726,7 +16726,7 @@ "dependencies": { "global-modules": { "version": "1.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/global-modules/-/global-modules-1.0.0.tgz", + "resolved": "https://registry.npmmirror.com/global-modules/-/global-modules-1.0.0.tgz", "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", "dev": true, "requires": { @@ -16758,7 +16758,7 @@ }, "resolve-pathname": { "version": "3.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/resolve-pathname/-/resolve-pathname-3.0.0.tgz", + "resolved": "https://registry.npmmirror.com/resolve-pathname/-/resolve-pathname-3.0.0.tgz", "integrity": "sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==" }, "resolve-url": { @@ -16785,7 +16785,7 @@ }, "ret": { "version": "0.1.15", - "resolved": "http://173.15.15.82:8081/repository/npm-all/ret/-/ret-0.1.15.tgz", + "resolved": "https://registry.npmmirror.com/ret/-/ret-0.1.15.tgz", "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==" }, "retry": { @@ -16824,7 +16824,7 @@ }, "ripemd160": { "version": "2.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/ripemd160/-/ripemd160-2.0.2.tgz", + "resolved": "https://registry.npmmirror.com/ripemd160/-/ripemd160-2.0.2.tgz", "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", "dev": true, "requires": { @@ -16834,7 +16834,7 @@ }, "rmc-feedback": { "version": "2.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/rmc-feedback/-/rmc-feedback-2.0.0.tgz", + "resolved": "https://registry.npmmirror.com/rmc-feedback/-/rmc-feedback-2.0.0.tgz", "integrity": "sha512-5PWOGOW7VXks/l3JzlOU9NIxRpuaSS8d9zA3UULUCuTKnpwBHNvv1jSJzxgbbCQeYzROWUpgKI4za3X4C/mKmQ==", "requires": { "babel-runtime": "6.x", @@ -16898,7 +16898,7 @@ }, "date-fns": { "version": "1.30.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/date-fns/-/date-fns-1.30.1.tgz", + "resolved": "https://registry.npmmirror.com/date-fns/-/date-fns-1.30.1.tgz", "integrity": "sha512-hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw==" }, "hoist-non-react-statics": { @@ -16955,7 +16955,7 @@ }, "run-async": { "version": "2.4.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/run-async/-/run-async-2.4.1.tgz", + "resolved": "https://registry.npmmirror.com/run-async/-/run-async-2.4.1.tgz", "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==" }, "run-queue": { @@ -16989,7 +16989,7 @@ }, "rxjs": { "version": "6.6.7", - "resolved": "http://173.15.15.82:8081/repository/npm-all/rxjs/-/rxjs-6.6.7.tgz", + "resolved": "https://registry.npmmirror.com/rxjs/-/rxjs-6.6.7.tgz", "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", "requires": { "tslib": "^1.9.0" @@ -17017,7 +17017,7 @@ }, "safer-buffer": { "version": "2.1.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/safer-buffer/-/safer-buffer-2.1.2.tgz", + "resolved": "https://registry.npmmirror.com/safer-buffer/-/safer-buffer-2.1.2.tgz", "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" }, "sane": { @@ -17063,7 +17063,7 @@ }, "sass-graph": { "version": "2.2.5", - "resolved": "http://173.15.15.82:8081/repository/npm-all/sass-graph/-/sass-graph-2.2.5.tgz", + "resolved": "https://registry.npmmirror.com/sass-graph/-/sass-graph-2.2.5.tgz", "integrity": "sha512-VFWDAHOe6mRuT4mZRd4eKE+d8Uedrk6Xnh7Sh9b4NGufQLQjOrvf/MQoOdx+0s92L89FeyUUNfU597j/3uNpag==", "dev": true, "requires": { @@ -17081,13 +17081,13 @@ }, "camelcase": { "version": "5.3.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/camelcase/-/camelcase-5.3.1.tgz", + "resolved": "https://registry.npmmirror.com/camelcase/-/camelcase-5.3.1.tgz", "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", "dev": true }, "cliui": { "version": "5.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/cliui/-/cliui-5.0.0.tgz", + "resolved": "https://registry.npmmirror.com/cliui/-/cliui-5.0.0.tgz", "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", "dev": true, "requires": { @@ -17104,7 +17104,7 @@ }, "find-up": { "version": "3.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/find-up/-/find-up-3.0.0.tgz", + "resolved": "https://registry.npmmirror.com/find-up/-/find-up-3.0.0.tgz", "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", "dev": true, "requires": { @@ -17113,13 +17113,13 @@ }, "get-caller-file": { "version": "2.0.5", - "resolved": "http://173.15.15.82:8081/repository/npm-all/get-caller-file/-/get-caller-file-2.0.5.tgz", + "resolved": "https://registry.npmmirror.com/get-caller-file/-/get-caller-file-2.0.5.tgz", "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", "dev": true }, "locate-path": { "version": "3.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/locate-path/-/locate-path-3.0.0.tgz", + "resolved": "https://registry.npmmirror.com/locate-path/-/locate-path-3.0.0.tgz", "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", "dev": true, "requires": { @@ -17129,7 +17129,7 @@ }, "p-limit": { "version": "2.3.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/p-limit/-/p-limit-2.3.0.tgz", + "resolved": "https://registry.npmmirror.com/p-limit/-/p-limit-2.3.0.tgz", "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, "requires": { @@ -17138,7 +17138,7 @@ }, "p-locate": { "version": "3.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/p-locate/-/p-locate-3.0.0.tgz", + "resolved": "https://registry.npmmirror.com/p-locate/-/p-locate-3.0.0.tgz", "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", "dev": true, "requires": { @@ -17147,19 +17147,19 @@ }, "p-try": { "version": "2.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/p-try/-/p-try-2.2.0.tgz", + "resolved": "https://registry.npmmirror.com/p-try/-/p-try-2.2.0.tgz", "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", "dev": true }, "require-main-filename": { "version": "2.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/require-main-filename/-/require-main-filename-2.0.0.tgz", + "resolved": "https://registry.npmmirror.com/require-main-filename/-/require-main-filename-2.0.0.tgz", "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", "dev": true }, "string-width": { "version": "3.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/string-width/-/string-width-3.1.0.tgz", + "resolved": "https://registry.npmmirror.com/string-width/-/string-width-3.1.0.tgz", "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", "dev": true, "requires": { @@ -17170,7 +17170,7 @@ }, "strip-ansi": { "version": "5.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/strip-ansi/-/strip-ansi-5.2.0.tgz", + "resolved": "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-5.2.0.tgz", "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", "dev": true, "requires": { @@ -17185,7 +17185,7 @@ }, "wrap-ansi": { "version": "5.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "resolved": "https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-5.1.0.tgz", "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", "dev": true, "requires": { @@ -17196,13 +17196,13 @@ }, "y18n": { "version": "4.0.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/y18n/-/y18n-4.0.3.tgz", + "resolved": "https://registry.npmmirror.com/y18n/-/y18n-4.0.3.tgz", "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", "dev": true }, "yargs": { "version": "13.3.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/yargs/-/yargs-13.3.2.tgz", + "resolved": "https://registry.npmmirror.com/yargs/-/yargs-13.3.2.tgz", "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", "dev": true, "requires": { @@ -17220,7 +17220,7 @@ }, "yargs-parser": { "version": "13.1.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/yargs-parser/-/yargs-parser-13.1.2.tgz", + "resolved": "https://registry.npmmirror.com/yargs-parser/-/yargs-parser-13.1.2.tgz", "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", "dev": true, "requires": { @@ -17232,7 +17232,7 @@ }, "sass-loader": { "version": "7.3.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/sass-loader/-/sass-loader-7.3.1.tgz", + "resolved": "https://registry.npmmirror.com/sass-loader/-/sass-loader-7.3.1.tgz", "integrity": "sha512-tuU7+zm0pTCynKYHpdqaPpe+MMTQ76I9TPZ7i4/5dZsigE350shQWe5EZNl5dBidM49TPET75tNqRbcsUZWeNA==", "dev": true, "requires": { @@ -17245,13 +17245,13 @@ "dependencies": { "pify": { "version": "4.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/pify/-/pify-4.0.1.tgz", + "resolved": "https://registry.npmmirror.com/pify/-/pify-4.0.1.tgz", "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", "dev": true }, "semver": { "version": "6.3.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/semver/-/semver-6.3.0.tgz", + "resolved": "https://registry.npmmirror.com/semver/-/semver-6.3.0.tgz", "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true } @@ -17259,7 +17259,7 @@ }, "sass-resources-loader": { "version": "2.2.5", - "resolved": "https://registry.npmjs.org/sass-resources-loader/-/sass-resources-loader-2.2.5.tgz", + "resolved": "https://registry.npmmirror.com/sass-resources-loader/-/sass-resources-loader-2.2.5.tgz", "integrity": "sha512-po8rfETH9cOQACWxubT/1CCu77KjxwRtCDm6QAXZH99aUHBydwSoxdIjC40SGp/dcS/FkSNJl0j1VEojGZqlvQ==", "dev": true, "requires": { @@ -17271,7 +17271,7 @@ "dependencies": { "ansi-styles": { "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "resolved": "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "requires": { @@ -17280,13 +17280,13 @@ }, "async": { "version": "3.2.4", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", + "resolved": "https://registry.npmmirror.com/async/-/async-3.2.4.tgz", "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==", "dev": true }, "chalk": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "resolved": "https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "requires": { @@ -17296,7 +17296,7 @@ }, "color-convert": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "resolved": "https://registry.npmmirror.com/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "requires": { @@ -17305,19 +17305,19 @@ }, "color-name": { "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "resolved": "https://registry.npmmirror.com/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, "has-flag": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "resolved": "https://registry.npmmirror.com/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true }, "json5": { "version": "2.2.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz", + "resolved": "https://registry.npmmirror.com/json5/-/json5-2.2.1.tgz", "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==", "dev": true }, @@ -17334,7 +17334,7 @@ }, "supports-color": { "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "resolved": "https://registry.npmmirror.com/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "requires": { @@ -17345,12 +17345,12 @@ }, "sax": { "version": "1.2.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/sax/-/sax-1.2.4.tgz", + "resolved": "https://registry.npmmirror.com/sax/-/sax-1.2.4.tgz", "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" }, "saxes": { "version": "5.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/saxes/-/saxes-5.0.1.tgz", + "resolved": "https://registry.npmmirror.com/saxes/-/saxes-5.0.1.tgz", "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==", "requires": { "xmlchars": "^2.2.0" @@ -17358,7 +17358,7 @@ }, "scheduler": { "version": "0.19.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/scheduler/-/scheduler-0.19.1.tgz", + "resolved": "https://registry.npmmirror.com/scheduler/-/scheduler-0.19.1.tgz", "integrity": "sha512-n/zwRWRYSUj0/3g/otKDRPMh6qv2SYMWNq85IEa8iZyAv8od9zDYpGSnpBEjNgcMNq6Scbu5KfIPxNF72R/2EA==", "requires": { "loose-envify": "^1.1.0", @@ -17367,7 +17367,7 @@ }, "schema-typed": { "version": "1.5.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/schema-typed/-/schema-typed-1.5.1.tgz", + "resolved": "https://registry.npmmirror.com/schema-typed/-/schema-typed-1.5.1.tgz", "integrity": "sha512-sx34fDSv08ubC9fTPKr3ba8YYs6nwqqRAITj6BXaxEaudJdjqtH7ZCe5wZQnQhbAGjKF4LcEwH15Oxf00pcSeg==" }, "schema-utils": { @@ -17383,12 +17383,12 @@ }, "screenfull": { "version": "5.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/screenfull/-/screenfull-5.2.0.tgz", + "resolved": "https://registry.npmmirror.com/screenfull/-/screenfull-5.2.0.tgz", "integrity": "sha512-9BakfsO2aUQN2K9Fdbj87RJIEZ82Q9IGim7FqM5OsebfoFC6ZHXgDq/KvniuLTPdeM8wY2o6Dj3WQ7KeQCj3cA==" }, "scroll": { "version": "2.0.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/scroll/-/scroll-2.0.3.tgz", + "resolved": "https://registry.npmmirror.com/scroll/-/scroll-2.0.3.tgz", "integrity": "sha512-3ncZzf8gUW739h3LeS68nSssO60O+GGjT3SxzgofQmT8PIoyHzebql9HHPJopZX8iT6TKOdwaWFMqL6LzUN3DQ==", "requires": { "rafl": "~1.2.1" @@ -17442,7 +17442,7 @@ }, "semver": { "version": "5.7.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/semver/-/semver-5.7.1.tgz", + "resolved": "https://registry.npmmirror.com/semver/-/semver-5.7.1.tgz", "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" }, "semver-diff": { @@ -17508,7 +17508,7 @@ }, "serialize-javascript": { "version": "1.9.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/serialize-javascript/-/serialize-javascript-1.9.1.tgz", + "resolved": "https://registry.npmmirror.com/serialize-javascript/-/serialize-javascript-1.9.1.tgz", "integrity": "sha512-0Vb/54WJ6k5v8sSWN09S0ora+Hnr+cX40r9F170nT+mSkaxltoE/7R3OrIdBSUv1OoiobH1QoWQbCnAO+e8J1A==", "dev": true }, @@ -17556,7 +17556,7 @@ }, "setprototypeof": { "version": "1.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/setprototypeof/-/setprototypeof-1.1.0.tgz", + "resolved": "https://registry.npmmirror.com/setprototypeof/-/setprototypeof-1.1.0.tgz", "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", "dev": true } @@ -17587,7 +17587,7 @@ }, "set-value": { "version": "2.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/set-value/-/set-value-2.0.1.tgz", + "resolved": "https://registry.npmmirror.com/set-value/-/set-value-2.0.1.tgz", "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", "requires": { "extend-shallow": "^2.0.1", @@ -17619,7 +17619,7 @@ }, "sha.js": { "version": "2.4.11", - "resolved": "http://173.15.15.82:8081/repository/npm-all/sha.js/-/sha.js-2.4.11.tgz", + "resolved": "https://registry.npmmirror.com/sha.js/-/sha.js-2.4.11.tgz", "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", "dev": true, "requires": { @@ -17629,7 +17629,7 @@ }, "sha1": { "version": "1.1.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/sha1/-/sha1-1.1.1.tgz", + "resolved": "https://registry.npmmirror.com/sha1/-/sha1-1.1.1.tgz", "integrity": "sha512-dZBS6OrMjtgVkopB1Gmo4RQCDKiZsqcpAQpkV/aaj+FCrCg8r4I4qMkDPQjBgLIxlmu9k4nUbWq6ohXahOneYA==", "requires": { "charenc": ">= 0.0.1", @@ -17638,7 +17638,7 @@ }, "shallow-clone": { "version": "3.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/shallow-clone/-/shallow-clone-3.0.1.tgz", + "resolved": "https://registry.npmmirror.com/shallow-clone/-/shallow-clone-3.0.1.tgz", "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", "dev": true, "requires": { @@ -17647,7 +17647,7 @@ "dependencies": { "kind-of": { "version": "6.0.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/kind-of/-/kind-of-6.0.3.tgz", + "resolved": "https://registry.npmmirror.com/kind-of/-/kind-of-6.0.3.tgz", "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", "dev": true } @@ -17655,12 +17655,12 @@ }, "shallow-equal": { "version": "1.2.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/shallow-equal/-/shallow-equal-1.2.1.tgz", + "resolved": "https://registry.npmmirror.com/shallow-equal/-/shallow-equal-1.2.1.tgz", "integrity": "sha512-S4vJDjHHMBaiZuT9NPb616CSmLf618jawtv3sufLl6ivK8WocjAo58cXwbRV1cgqxH0Qbv+iUt6m05eqEa2IRA==" }, "shallowequal": { "version": "1.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/shallowequal/-/shallowequal-1.1.0.tgz", + "resolved": "https://registry.npmmirror.com/shallowequal/-/shallowequal-1.1.0.tgz", "integrity": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==" }, "shebang-command": { @@ -17678,17 +17678,17 @@ }, "shell-quote": { "version": "1.7.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/shell-quote/-/shell-quote-1.7.2.tgz", + "resolved": "https://registry.npmmirror.com/shell-quote/-/shell-quote-1.7.2.tgz", "integrity": "sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==" }, "shellwords": { "version": "0.1.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/shellwords/-/shellwords-0.1.1.tgz", + "resolved": "https://registry.npmmirror.com/shellwords/-/shellwords-0.1.1.tgz", "integrity": "sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==" }, "showdown": { "version": "1.9.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/showdown/-/showdown-1.9.1.tgz", + "resolved": "https://registry.npmmirror.com/showdown/-/showdown-1.9.1.tgz", "integrity": "sha512-9cGuS382HcvExtf5AHk7Cb4pAeQQ+h0eTr33V1mu+crYWV4KvWAw6el92bDrqGEk5d46Ai/fhbEUwqJ/mTCNEA==", "requires": { "yargs": "^14.2" @@ -17701,12 +17701,12 @@ }, "camelcase": { "version": "5.3.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/camelcase/-/camelcase-5.3.1.tgz", + "resolved": "https://registry.npmmirror.com/camelcase/-/camelcase-5.3.1.tgz", "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" }, "cliui": { "version": "5.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/cliui/-/cliui-5.0.0.tgz", + "resolved": "https://registry.npmmirror.com/cliui/-/cliui-5.0.0.tgz", "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", "requires": { "string-width": "^3.1.0", @@ -17721,7 +17721,7 @@ }, "find-up": { "version": "3.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/find-up/-/find-up-3.0.0.tgz", + "resolved": "https://registry.npmmirror.com/find-up/-/find-up-3.0.0.tgz", "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", "requires": { "locate-path": "^3.0.0" @@ -17729,12 +17729,12 @@ }, "get-caller-file": { "version": "2.0.5", - "resolved": "http://173.15.15.82:8081/repository/npm-all/get-caller-file/-/get-caller-file-2.0.5.tgz", + "resolved": "https://registry.npmmirror.com/get-caller-file/-/get-caller-file-2.0.5.tgz", "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" }, "locate-path": { "version": "3.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/locate-path/-/locate-path-3.0.0.tgz", + "resolved": "https://registry.npmmirror.com/locate-path/-/locate-path-3.0.0.tgz", "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", "requires": { "p-locate": "^3.0.0", @@ -17743,7 +17743,7 @@ }, "p-limit": { "version": "2.3.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/p-limit/-/p-limit-2.3.0.tgz", + "resolved": "https://registry.npmmirror.com/p-limit/-/p-limit-2.3.0.tgz", "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "requires": { "p-try": "^2.0.0" @@ -17751,7 +17751,7 @@ }, "p-locate": { "version": "3.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/p-locate/-/p-locate-3.0.0.tgz", + "resolved": "https://registry.npmmirror.com/p-locate/-/p-locate-3.0.0.tgz", "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", "requires": { "p-limit": "^2.0.0" @@ -17759,17 +17759,17 @@ }, "p-try": { "version": "2.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/p-try/-/p-try-2.2.0.tgz", + "resolved": "https://registry.npmmirror.com/p-try/-/p-try-2.2.0.tgz", "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" }, "require-main-filename": { "version": "2.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/require-main-filename/-/require-main-filename-2.0.0.tgz", + "resolved": "https://registry.npmmirror.com/require-main-filename/-/require-main-filename-2.0.0.tgz", "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==" }, "string-width": { "version": "3.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/string-width/-/string-width-3.1.0.tgz", + "resolved": "https://registry.npmmirror.com/string-width/-/string-width-3.1.0.tgz", "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", "requires": { "emoji-regex": "^7.0.1", @@ -17779,7 +17779,7 @@ }, "strip-ansi": { "version": "5.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/strip-ansi/-/strip-ansi-5.2.0.tgz", + "resolved": "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-5.2.0.tgz", "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", "requires": { "ansi-regex": "^4.1.0" @@ -17792,7 +17792,7 @@ }, "wrap-ansi": { "version": "5.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "resolved": "https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-5.1.0.tgz", "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", "requires": { "ansi-styles": "^3.2.0", @@ -17802,12 +17802,12 @@ }, "y18n": { "version": "4.0.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/y18n/-/y18n-4.0.3.tgz", + "resolved": "https://registry.npmmirror.com/y18n/-/y18n-4.0.3.tgz", "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==" }, "yargs": { "version": "14.2.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/yargs/-/yargs-14.2.3.tgz", + "resolved": "https://registry.npmmirror.com/yargs/-/yargs-14.2.3.tgz", "integrity": "sha512-ZbotRWhF+lkjijC/VhmOT9wSgyBQ7+zr13+YLkhfsSiTriYsMzkTUFP18pFhWwBeMa5gUc1MzbhrO6/VB7c9Xg==", "requires": { "cliui": "^5.0.0", @@ -17825,7 +17825,7 @@ }, "yargs-parser": { "version": "15.0.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/yargs-parser/-/yargs-parser-15.0.3.tgz", + "resolved": "https://registry.npmmirror.com/yargs-parser/-/yargs-parser-15.0.3.tgz", "integrity": "sha512-/MVEVjTXy/cGAjdtQf8dW3V9b97bPN7rNn8ETj6BmAQL7ibC7O1Q9SPJbGjgh3SlwoBNXMzj/ZGIj8mBgl12YA==", "requires": { "camelcase": "^5.0.0", @@ -17836,7 +17836,7 @@ }, "showdown-katex": { "version": "0.8.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/showdown-katex/-/showdown-katex-0.8.0.tgz", + "resolved": "https://registry.npmmirror.com/showdown-katex/-/showdown-katex-0.8.0.tgz", "integrity": "sha512-LPoX5InPRZ15nNRZ79yToh8UqmZvQDeQLsAlT11rvi437ZMhpJa9KorBmikHybrsyi4/MdIo/zZsrMnU+z07LQ==", "requires": { "jsdom": "^16.2.1", @@ -17855,7 +17855,7 @@ }, "acorn-globals": { "version": "6.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/acorn-globals/-/acorn-globals-6.0.0.tgz", + "resolved": "https://registry.npmmirror.com/acorn-globals/-/acorn-globals-6.0.0.tgz", "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", "requires": { "acorn": "^7.1.1", @@ -17864,19 +17864,19 @@ "dependencies": { "acorn": { "version": "7.4.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/acorn/-/acorn-7.4.1.tgz", + "resolved": "https://registry.npmmirror.com/acorn/-/acorn-7.4.1.tgz", "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==" } } }, "cssom": { "version": "0.4.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/cssom/-/cssom-0.4.4.tgz", + "resolved": "https://registry.npmmirror.com/cssom/-/cssom-0.4.4.tgz", "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==" }, "cssstyle": { "version": "2.3.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/cssstyle/-/cssstyle-2.3.0.tgz", + "resolved": "https://registry.npmmirror.com/cssstyle/-/cssstyle-2.3.0.tgz", "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", "requires": { "cssom": "~0.3.6" @@ -17884,14 +17884,14 @@ "dependencies": { "cssom": { "version": "0.3.8", - "resolved": "http://173.15.15.82:8081/repository/npm-all/cssom/-/cssom-0.3.8.tgz", + "resolved": "https://registry.npmmirror.com/cssom/-/cssom-0.3.8.tgz", "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==" } } }, "escodegen": { "version": "2.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/escodegen/-/escodegen-2.0.0.tgz", + "resolved": "https://registry.npmmirror.com/escodegen/-/escodegen-2.0.0.tgz", "integrity": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==", "requires": { "esprima": "^4.0.1", @@ -17908,7 +17908,7 @@ }, "form-data": { "version": "3.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/form-data/-/form-data-3.0.1.tgz", + "resolved": "https://registry.npmmirror.com/form-data/-/form-data-3.0.1.tgz", "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", "requires": { "asynckit": "^0.4.0", @@ -17918,7 +17918,7 @@ }, "html-encoding-sniffer": { "version": "2.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz", + "resolved": "https://registry.npmmirror.com/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz", "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", "requires": { "whatwg-encoding": "^1.0.5" @@ -17926,7 +17926,7 @@ }, "jsdom": { "version": "16.7.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/jsdom/-/jsdom-16.7.0.tgz", + "resolved": "https://registry.npmmirror.com/jsdom/-/jsdom-16.7.0.tgz", "integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==", "requires": { "abab": "^2.0.5", @@ -17960,7 +17960,7 @@ }, "parse5": { "version": "6.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/parse5/-/parse5-6.0.1.tgz", + "resolved": "https://registry.npmmirror.com/parse5/-/parse5-6.0.1.tgz", "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" }, "tough-cookie": { @@ -17975,7 +17975,7 @@ }, "tr46": { "version": "2.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/tr46/-/tr46-2.1.0.tgz", + "resolved": "https://registry.npmmirror.com/tr46/-/tr46-2.1.0.tgz", "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", "requires": { "punycode": "^2.1.1" @@ -17983,12 +17983,12 @@ }, "webidl-conversions": { "version": "6.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/webidl-conversions/-/webidl-conversions-6.1.0.tgz", + "resolved": "https://registry.npmmirror.com/webidl-conversions/-/webidl-conversions-6.1.0.tgz", "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==" }, "whatwg-url": { "version": "8.7.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/whatwg-url/-/whatwg-url-8.7.0.tgz", + "resolved": "https://registry.npmmirror.com/whatwg-url/-/whatwg-url-8.7.0.tgz", "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==", "requires": { "lodash": "^4.7.0", @@ -17998,14 +17998,14 @@ }, "xml-name-validator": { "version": "3.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/xml-name-validator/-/xml-name-validator-3.0.0.tgz", + "resolved": "https://registry.npmmirror.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz", "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==" } } }, "side-channel": { "version": "1.0.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/side-channel/-/side-channel-1.0.4.tgz", + "resolved": "https://registry.npmmirror.com/side-channel/-/side-channel-1.0.4.tgz", "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", "requires": { "call-bind": "^1.0.0", @@ -18029,7 +18029,7 @@ "dependencies": { "is-arrayish": { "version": "0.3.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-arrayish/-/is-arrayish-0.3.2.tgz", + "resolved": "https://registry.npmmirror.com/is-arrayish/-/is-arrayish-0.3.2.tgz", "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==", "dev": true } @@ -18042,7 +18042,7 @@ }, "slice-ansi": { "version": "1.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/slice-ansi/-/slice-ansi-1.0.0.tgz", + "resolved": "https://registry.npmmirror.com/slice-ansi/-/slice-ansi-1.0.0.tgz", "integrity": "sha512-POqxBK6Lb3q6s047D/XsDVNPnF9Dl8JSaqe9h9lURl0OdNqy/ujDrOiIHtsqXMGbWWTIomRzAMaTyawAU//Reg==", "dev": true, "requires": { @@ -18051,12 +18051,12 @@ }, "slick-carousel": { "version": "1.8.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/slick-carousel/-/slick-carousel-1.8.1.tgz", + "resolved": "https://registry.npmmirror.com/slick-carousel/-/slick-carousel-1.8.1.tgz", "integrity": "sha512-XB9Ftrf2EEKfzoQXt3Nitrt/IPbT+f1fgqBdoxO3W/+JYvtEOW6EgxnWfr9GH6nmULv7Y2tPmEX3koxThVmebA==" }, "snapdragon": { "version": "0.8.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/snapdragon/-/snapdragon-0.8.2.tgz", + "resolved": "https://registry.npmmirror.com/snapdragon/-/snapdragon-0.8.2.tgz", "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", "requires": { "base": "^0.11.1", @@ -18102,7 +18102,7 @@ }, "snapdragon-node": { "version": "2.1.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "resolved": "https://registry.npmmirror.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz", "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", "requires": { "define-property": "^1.0.0", @@ -18120,7 +18120,7 @@ }, "is-accessor-descriptor": { "version": "1.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "resolved": "https://registry.npmmirror.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", "requires": { "kind-of": "^6.0.0" @@ -18128,7 +18128,7 @@ }, "is-data-descriptor": { "version": "1.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "resolved": "https://registry.npmmirror.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", "requires": { "kind-of": "^6.0.0" @@ -18136,7 +18136,7 @@ }, "is-descriptor": { "version": "1.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-descriptor/-/is-descriptor-1.0.2.tgz", + "resolved": "https://registry.npmmirror.com/is-descriptor/-/is-descriptor-1.0.2.tgz", "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", "requires": { "is-accessor-descriptor": "^1.0.0", @@ -18151,14 +18151,14 @@ }, "kind-of": { "version": "6.0.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/kind-of/-/kind-of-6.0.3.tgz", + "resolved": "https://registry.npmmirror.com/kind-of/-/kind-of-6.0.3.tgz", "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" } } }, "snapdragon-util": { "version": "3.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "resolved": "https://registry.npmmirror.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz", "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", "requires": { "kind-of": "^3.2.0" @@ -18191,7 +18191,7 @@ "dependencies": { "debug": { "version": "3.2.7", - "resolved": "http://173.15.15.82:8081/repository/npm-all/debug/-/debug-3.2.7.tgz", + "resolved": "https://registry.npmmirror.com/debug/-/debug-3.2.7.tgz", "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, "requires": { @@ -18200,7 +18200,7 @@ }, "ms": { "version": "2.1.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/ms/-/ms-2.1.3.tgz", + "resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.3.tgz", "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", "dev": true } @@ -18216,17 +18216,17 @@ }, "source-list-map": { "version": "2.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/source-list-map/-/source-list-map-2.0.1.tgz", + "resolved": "https://registry.npmmirror.com/source-list-map/-/source-list-map-2.0.1.tgz", "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==" }, "source-map": { "version": "0.6.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/source-map/-/source-map-0.6.1.tgz", + "resolved": "https://registry.npmmirror.com/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" }, "source-map-resolve": { "version": "0.5.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "resolved": "https://registry.npmmirror.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz", "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", "requires": { "atob": "^2.1.2", @@ -18253,12 +18253,12 @@ }, "source-map-url": { "version": "0.4.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/source-map-url/-/source-map-url-0.4.1.tgz", + "resolved": "https://registry.npmmirror.com/source-map-url/-/source-map-url-0.4.1.tgz", "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==" }, "spdx-correct": { "version": "3.1.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/spdx-correct/-/spdx-correct-3.1.1.tgz", + "resolved": "https://registry.npmmirror.com/spdx-correct/-/spdx-correct-3.1.1.tgz", "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", "requires": { "spdx-expression-parse": "^3.0.0", @@ -18267,12 +18267,12 @@ }, "spdx-exceptions": { "version": "2.3.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "resolved": "https://registry.npmmirror.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==" }, "spdx-expression-parse": { "version": "3.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "resolved": "https://registry.npmmirror.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", "requires": { "spdx-exceptions": "^2.1.0", @@ -18286,7 +18286,7 @@ }, "spdy": { "version": "4.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/spdy/-/spdy-4.0.2.tgz", + "resolved": "https://registry.npmmirror.com/spdy/-/spdy-4.0.2.tgz", "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", "dev": true, "requires": { @@ -18308,7 +18308,7 @@ }, "ms": { "version": "2.1.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/ms/-/ms-2.1.2.tgz", + "resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true } @@ -18316,7 +18316,7 @@ }, "spdy-transport": { "version": "3.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/spdy-transport/-/spdy-transport-3.0.0.tgz", + "resolved": "https://registry.npmmirror.com/spdy-transport/-/spdy-transport-3.0.0.tgz", "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", "dev": true, "requires": { @@ -18339,13 +18339,13 @@ }, "ms": { "version": "2.1.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/ms/-/ms-2.1.2.tgz", + "resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true }, "readable-stream": { "version": "3.6.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/readable-stream/-/readable-stream-3.6.0.tgz", + "resolved": "https://registry.npmmirror.com/readable-stream/-/readable-stream-3.6.0.tgz", "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", "dev": true, "requires": { @@ -18358,7 +18358,7 @@ }, "split-string": { "version": "3.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/split-string/-/split-string-3.1.0.tgz", + "resolved": "https://registry.npmmirror.com/split-string/-/split-string-3.1.0.tgz", "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", "requires": { "extend-shallow": "^3.0.0" @@ -18387,7 +18387,7 @@ }, "ssri": { "version": "5.3.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/ssri/-/ssri-5.3.0.tgz", + "resolved": "https://registry.npmmirror.com/ssri/-/ssri-5.3.0.tgz", "integrity": "sha512-XRSIPqLij52MtgoQavH/x/dU1qVKtWUAAZeOHsR9c2Ddi4XerFy3mc1alf+dLJKl9EUIm/Ht+EowFkTUOA6GAQ==", "dev": true, "requires": { @@ -18396,7 +18396,7 @@ }, "stable": { "version": "0.1.8", - "resolved": "http://173.15.15.82:8081/repository/npm-all/stable/-/stable-0.1.8.tgz", + "resolved": "https://registry.npmmirror.com/stable/-/stable-0.1.8.tgz", "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", "dev": true }, @@ -18427,7 +18427,7 @@ }, "stdout-stream": { "version": "1.4.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/stdout-stream/-/stdout-stream-1.4.1.tgz", + "resolved": "https://registry.npmmirror.com/stdout-stream/-/stdout-stream-1.4.1.tgz", "integrity": "sha512-j4emi03KXqJWcIeF8eIXkjMFN1Cmb8gUlDYGeBALLPo5qdyTfA9bOtl8m33lRoC+vFMkP3gl0WsDr6+gzxbbTA==", "dev": true, "requires": { @@ -18436,7 +18436,7 @@ }, "stifle": { "version": "1.1.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/stifle/-/stifle-1.1.1.tgz", + "resolved": "https://registry.npmmirror.com/stifle/-/stifle-1.1.1.tgz", "integrity": "sha512-INvON4DXLAWxpor+f0ZHnYQYXBqDXQRW1znLpf5/C/AWzJ0eQQAThfdqHQ5BDkiyywD67rQGvbE4LC+Aig6K/Q==" }, "store": { @@ -18446,7 +18446,7 @@ }, "stream-browserify": { "version": "2.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/stream-browserify/-/stream-browserify-2.0.2.tgz", + "resolved": "https://registry.npmmirror.com/stream-browserify/-/stream-browserify-2.0.2.tgz", "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==", "dev": true, "requires": { @@ -18456,7 +18456,7 @@ }, "stream-each": { "version": "1.2.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/stream-each/-/stream-each-1.2.3.tgz", + "resolved": "https://registry.npmmirror.com/stream-each/-/stream-each-1.2.3.tgz", "integrity": "sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==", "dev": true, "requires": { @@ -18466,7 +18466,7 @@ }, "stream-http": { "version": "2.8.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/stream-http/-/stream-http-2.8.3.tgz", + "resolved": "https://registry.npmmirror.com/stream-http/-/stream-http-2.8.3.tgz", "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==", "dev": true, "requires": { @@ -18479,7 +18479,7 @@ }, "stream-shift": { "version": "1.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/stream-shift/-/stream-shift-1.0.1.tgz", + "resolved": "https://registry.npmmirror.com/stream-shift/-/stream-shift-1.0.1.tgz", "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==", "dev": true }, @@ -18555,7 +18555,7 @@ }, "string_decoder": { "version": "1.1.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/string_decoder/-/string_decoder-1.1.1.tgz", + "resolved": "https://registry.npmmirror.com/string_decoder/-/string_decoder-1.1.1.tgz", "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "requires": { "safe-buffer": "~5.1.0" @@ -18600,7 +18600,7 @@ }, "style-loader": { "version": "0.19.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/style-loader/-/style-loader-0.19.0.tgz", + "resolved": "https://registry.npmmirror.com/style-loader/-/style-loader-0.19.0.tgz", "integrity": "sha512-9mx9sC9nX1dgP96MZOODpGC6l1RzQBITI2D5WJhu+wnbrSYVKLGuy14XJSLVQih/0GFrPpjelt+s//VcZQ2Evw==", "dev": true, "requires": { @@ -18645,7 +18645,7 @@ }, "styled-components": { "version": "4.4.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/styled-components/-/styled-components-4.4.1.tgz", + "resolved": "https://registry.npmmirror.com/styled-components/-/styled-components-4.4.1.tgz", "integrity": "sha512-RNqj14kYzw++6Sr38n7197xG33ipEOktGElty4I70IKzQF1jzaD1U4xQ+Ny/i03UUhHlC5NWEO+d8olRCDji6g==", "requires": { "@babel/helper-module-imports": "^7.0.0", @@ -18665,7 +18665,7 @@ }, "stylehacks": { "version": "4.0.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/stylehacks/-/stylehacks-4.0.3.tgz", + "resolved": "https://registry.npmmirror.com/stylehacks/-/stylehacks-4.0.3.tgz", "integrity": "sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g==", "dev": true, "requires": { @@ -18737,7 +18737,7 @@ }, "postcss-selector-parser": { "version": "3.1.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "resolved": "https://registry.npmmirror.com/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", "dev": true, "requires": { @@ -18759,17 +18759,17 @@ }, "stylis": { "version": "3.5.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/stylis/-/stylis-3.5.4.tgz", + "resolved": "https://registry.npmmirror.com/stylis/-/stylis-3.5.4.tgz", "integrity": "sha512-8/3pSmthWM7lsPBKv7NXkzn2Uc9W7NotcwGNpJaa3k7WMM1XDCA4MgT5k/8BIexd5ydZdboXtU90XH9Ec4Bv/Q==" }, "stylis-rule-sheet": { "version": "0.0.10", - "resolved": "http://173.15.15.82:8081/repository/npm-all/stylis-rule-sheet/-/stylis-rule-sheet-0.0.10.tgz", + "resolved": "https://registry.npmmirror.com/stylis-rule-sheet/-/stylis-rule-sheet-0.0.10.tgz", "integrity": "sha512-nTbZoaqoBnmK+ptANthb10ZRZOGC+EmTLLUxeYIuHNkEKcmKgXX1XWKkUBT2Ac4es3NybooPe0SmvKdhKJZAuw==" }, "supports-color": { "version": "5.5.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/supports-color/-/supports-color-5.5.0.tgz", + "resolved": "https://registry.npmmirror.com/supports-color/-/supports-color-5.5.0.tgz", "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "requires": { "has-flag": "^3.0.0" @@ -18777,7 +18777,7 @@ }, "svgo": { "version": "1.3.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/svgo/-/svgo-1.3.2.tgz", + "resolved": "https://registry.npmmirror.com/svgo/-/svgo-1.3.2.tgz", "integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==", "dev": true, "requires": { @@ -18798,7 +18798,7 @@ "dependencies": { "chalk": { "version": "2.4.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/chalk/-/chalk-2.4.2.tgz", + "resolved": "https://registry.npmmirror.com/chalk/-/chalk-2.4.2.tgz", "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, "requires": { @@ -18809,7 +18809,7 @@ }, "css-select": { "version": "2.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/css-select/-/css-select-2.1.0.tgz", + "resolved": "https://registry.npmmirror.com/css-select/-/css-select-2.1.0.tgz", "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", "dev": true, "requires": { @@ -18821,13 +18821,13 @@ }, "css-what": { "version": "3.4.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/css-what/-/css-what-3.4.2.tgz", + "resolved": "https://registry.npmmirror.com/css-what/-/css-what-3.4.2.tgz", "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==", "dev": true }, "dom-serializer": { "version": "0.2.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/dom-serializer/-/dom-serializer-0.2.2.tgz", + "resolved": "https://registry.npmmirror.com/dom-serializer/-/dom-serializer-0.2.2.tgz", "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", "dev": true, "requires": { @@ -18845,13 +18845,13 @@ }, "domelementtype": { "version": "1.3.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/domelementtype/-/domelementtype-1.3.1.tgz", + "resolved": "https://registry.npmmirror.com/domelementtype/-/domelementtype-1.3.1.tgz", "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==", "dev": true }, "domutils": { "version": "1.7.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/domutils/-/domutils-1.7.0.tgz", + "resolved": "https://registry.npmmirror.com/domutils/-/domutils-1.7.0.tgz", "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", "dev": true, "requires": { @@ -18861,7 +18861,7 @@ }, "nth-check": { "version": "1.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/nth-check/-/nth-check-1.0.2.tgz", + "resolved": "https://registry.npmmirror.com/nth-check/-/nth-check-1.0.2.tgz", "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", "dev": true, "requires": { @@ -18872,7 +18872,7 @@ }, "sw-precache": { "version": "5.2.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/sw-precache/-/sw-precache-5.2.1.tgz", + "resolved": "https://registry.npmmirror.com/sw-precache/-/sw-precache-5.2.1.tgz", "integrity": "sha512-8FAy+BP/FXE+ILfiVTt+GQJ6UEf4CVHD9OfhzH0JX+3zoy2uFk7Vn9EfXASOtVmmIVbL3jE/W8Z66VgPSZcMhw==", "dev": true, "requires": { @@ -18919,17 +18919,17 @@ }, "symbol-observable": { "version": "1.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/symbol-observable/-/symbol-observable-1.2.0.tgz", + "resolved": "https://registry.npmmirror.com/symbol-observable/-/symbol-observable-1.2.0.tgz", "integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==" }, "symbol-tree": { "version": "3.2.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/symbol-tree/-/symbol-tree-3.2.4.tgz", + "resolved": "https://registry.npmmirror.com/symbol-tree/-/symbol-tree-3.2.4.tgz", "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==" }, "table": { "version": "4.0.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/table/-/table-4.0.3.tgz", + "resolved": "https://registry.npmmirror.com/table/-/table-4.0.3.tgz", "integrity": "sha512-S7rnFITmBH1EnyKcvxBh1LjYeQMmnZtCXSEbHcH6S0NoKit24ZuFO/T1vDcLdYsLQkM188PVVhQmzKIuThNkKg==", "dev": true, "requires": { @@ -18943,7 +18943,7 @@ "dependencies": { "chalk": { "version": "2.4.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/chalk/-/chalk-2.4.2.tgz", + "resolved": "https://registry.npmmirror.com/chalk/-/chalk-2.4.2.tgz", "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, "requires": { @@ -18956,7 +18956,7 @@ }, "tapable": { "version": "1.1.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/tapable/-/tapable-1.1.3.tgz", + "resolved": "https://registry.npmmirror.com/tapable/-/tapable-1.1.3.tgz", "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==" }, "tape": { @@ -18983,7 +18983,7 @@ }, "tar": { "version": "2.2.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/tar/-/tar-2.2.2.tgz", + "resolved": "https://registry.npmmirror.com/tar/-/tar-2.2.2.tgz", "integrity": "sha512-FCEhQ/4rE1zYv9rYXJw/msRqsnmlje5jHP6huWeBZ704jUTy02c5AZyWujpMR1ax6mVw9NyJMfuK2CMDWVIfgA==", "dev": true, "requires": { @@ -19026,7 +19026,7 @@ }, "terser-webpack-plugin": { "version": "2.3.8", - "resolved": "http://173.15.15.82:8081/repository/npm-all/terser-webpack-plugin/-/terser-webpack-plugin-2.3.8.tgz", + "resolved": "https://registry.npmmirror.com/terser-webpack-plugin/-/terser-webpack-plugin-2.3.8.tgz", "integrity": "sha512-/fKw3R+hWyHfYx7Bv6oPqmk4HGQcrWLtV3X6ggvPuwPNHSnzvVV51z6OaaCOus4YLjutYGOz3pEpbhe6Up2s1w==", "dev": true, "requires": { @@ -19043,7 +19043,7 @@ "dependencies": { "cacache": { "version": "13.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/cacache/-/cacache-13.0.1.tgz", + "resolved": "https://registry.npmmirror.com/cacache/-/cacache-13.0.1.tgz", "integrity": "sha512-5ZvAxd05HDDU+y9BVvcqYu2LLXmPnQ0hW62h32g4xBTgL/MppR4/04NHfj/ycM2y6lmTnbw6HVi+1eN0Psba6w==", "dev": true, "requires": { @@ -19068,9 +19068,9 @@ } }, "find-cache-dir": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz", - "integrity": "sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==", + "version": "3.3.2", + "resolved": "https://registry.npmmirror.com/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", "dev": true, "requires": { "commondir": "^1.0.1", @@ -19080,7 +19080,7 @@ }, "find-up": { "version": "4.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/find-up/-/find-up-4.1.0.tgz", + "resolved": "https://registry.npmmirror.com/find-up/-/find-up-4.1.0.tgz", "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", "dev": true, "requires": { @@ -19090,7 +19090,7 @@ }, "locate-path": { "version": "5.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/locate-path/-/locate-path-5.0.0.tgz", + "resolved": "https://registry.npmmirror.com/locate-path/-/locate-path-5.0.0.tgz", "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "dev": true, "requires": { @@ -19099,7 +19099,7 @@ }, "lru-cache": { "version": "5.1.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/lru-cache/-/lru-cache-5.1.1.tgz", + "resolved": "https://registry.npmmirror.com/lru-cache/-/lru-cache-5.1.1.tgz", "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", "dev": true, "requires": { @@ -19108,7 +19108,7 @@ }, "make-dir": { "version": "3.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/make-dir/-/make-dir-3.1.0.tgz", + "resolved": "https://registry.npmmirror.com/make-dir/-/make-dir-3.1.0.tgz", "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", "dev": true, "requires": { @@ -19117,7 +19117,7 @@ }, "p-limit": { "version": "2.3.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/p-limit/-/p-limit-2.3.0.tgz", + "resolved": "https://registry.npmmirror.com/p-limit/-/p-limit-2.3.0.tgz", "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, "requires": { @@ -19126,7 +19126,7 @@ }, "p-locate": { "version": "4.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/p-locate/-/p-locate-4.1.0.tgz", + "resolved": "https://registry.npmmirror.com/p-locate/-/p-locate-4.1.0.tgz", "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "dev": true, "requires": { @@ -19135,7 +19135,7 @@ }, "p-map": { "version": "3.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/p-map/-/p-map-3.0.0.tgz", + "resolved": "https://registry.npmmirror.com/p-map/-/p-map-3.0.0.tgz", "integrity": "sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==", "dev": true, "requires": { @@ -19144,19 +19144,19 @@ }, "p-try": { "version": "2.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/p-try/-/p-try-2.2.0.tgz", + "resolved": "https://registry.npmmirror.com/p-try/-/p-try-2.2.0.tgz", "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", "dev": true }, "path-exists": { "version": "4.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/path-exists/-/path-exists-4.0.0.tgz", + "resolved": "https://registry.npmmirror.com/path-exists/-/path-exists-4.0.0.tgz", "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", "dev": true }, "pkg-dir": { "version": "4.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/pkg-dir/-/pkg-dir-4.2.0.tgz", + "resolved": "https://registry.npmmirror.com/pkg-dir/-/pkg-dir-4.2.0.tgz", "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", "dev": true, "requires": { @@ -19165,7 +19165,7 @@ }, "rimraf": { "version": "2.7.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/rimraf/-/rimraf-2.7.1.tgz", + "resolved": "https://registry.npmmirror.com/rimraf/-/rimraf-2.7.1.tgz", "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", "dev": true, "requires": { @@ -19174,13 +19174,13 @@ }, "semver": { "version": "6.3.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/semver/-/semver-6.3.0.tgz", + "resolved": "https://registry.npmmirror.com/semver/-/semver-6.3.0.tgz", "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true }, "serialize-javascript": { "version": "4.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/serialize-javascript/-/serialize-javascript-4.0.0.tgz", + "resolved": "https://registry.npmmirror.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz", "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", "dev": true, "requires": { @@ -19189,7 +19189,7 @@ }, "ssri": { "version": "7.1.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/ssri/-/ssri-7.1.1.tgz", + "resolved": "https://registry.npmmirror.com/ssri/-/ssri-7.1.1.tgz", "integrity": "sha512-w+daCzXN89PseTL99MkA+fxJEcU3wfaE/ah0i0lnOlpG1CYLJ2ZjzEry68YBKfLs4JfoTShrTEsJkAZuNZ/stw==", "dev": true, "requires": { @@ -19199,7 +19199,7 @@ }, "yallist": { "version": "3.1.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/yallist/-/yallist-3.1.1.tgz", + "resolved": "https://registry.npmmirror.com/yallist/-/yallist-3.1.1.tgz", "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", "dev": true } @@ -19207,7 +19207,7 @@ }, "test-exclude": { "version": "4.2.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/test-exclude/-/test-exclude-4.2.3.tgz", + "resolved": "https://registry.npmmirror.com/test-exclude/-/test-exclude-4.2.3.tgz", "integrity": "sha512-SYbXgY64PT+4GAL2ocI3HwPa4Q4TBKm0cwAVeKOt/Aoc0gSpNRjJX8w0pA1LMKZ3LBmd8pYBqApFNQLII9kavA==", "requires": { "arrify": "^1.0.1", @@ -19224,7 +19224,7 @@ }, "theming": { "version": "1.3.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/theming/-/theming-1.3.0.tgz", + "resolved": "https://registry.npmmirror.com/theming/-/theming-1.3.0.tgz", "integrity": "sha512-ya5Ef7XDGbTPBv5ENTwrwkPUexrlPeiAg/EI9kdlUAZhNlRbCdhMKRgjNX1IcmsmiPcqDQZE6BpSaH+cr31FKw==", "requires": { "brcast": "^3.0.1", @@ -19235,7 +19235,7 @@ }, "throat": { "version": "3.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/throat/-/throat-3.2.0.tgz", + "resolved": "https://registry.npmmirror.com/throat/-/throat-3.2.0.tgz", "integrity": "sha512-/EY8VpvlqJ+sFtLPeOgc8Pl7kQVOWv0woD87KTXVHPIAE842FGT+rokxIhe8xIUP1cfgrkt0as0vDLjDiMtr8w==" }, "through": { @@ -19245,7 +19245,7 @@ }, "through2": { "version": "2.0.5", - "resolved": "http://173.15.15.82:8081/repository/npm-all/through2/-/through2-2.0.5.tgz", + "resolved": "https://registry.npmmirror.com/through2/-/through2-2.0.5.tgz", "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", "dev": true, "requires": { @@ -19255,7 +19255,7 @@ }, "thunky": { "version": "1.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/thunky/-/thunky-1.1.0.tgz", + "resolved": "https://registry.npmmirror.com/thunky/-/thunky-1.1.0.tgz", "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", "dev": true }, @@ -19267,7 +19267,7 @@ }, "timers-browserify": { "version": "2.0.12", - "resolved": "http://173.15.15.82:8081/repository/npm-all/timers-browserify/-/timers-browserify-2.0.12.tgz", + "resolved": "https://registry.npmmirror.com/timers-browserify/-/timers-browserify-2.0.12.tgz", "integrity": "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==", "dev": true, "requires": { @@ -19282,7 +19282,7 @@ }, "tiny-emitter": { "version": "2.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/tiny-emitter/-/tiny-emitter-2.1.0.tgz", + "resolved": "https://registry.npmmirror.com/tiny-emitter/-/tiny-emitter-2.1.0.tgz", "integrity": "sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==" }, "tiny-invariant": { @@ -19292,17 +19292,17 @@ }, "tiny-warning": { "version": "1.0.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/tiny-warning/-/tiny-warning-1.0.3.tgz", + "resolved": "https://registry.npmmirror.com/tiny-warning/-/tiny-warning-1.0.3.tgz", "integrity": "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==" }, "tinycolor2": { "version": "1.4.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/tinycolor2/-/tinycolor2-1.4.2.tgz", + "resolved": "https://registry.npmmirror.com/tinycolor2/-/tinycolor2-1.4.2.tgz", "integrity": "sha512-vJhccZPs965sV/L2sU4oRQVAos0pQXwsvTLkWYdqJ+a8Q5kPFzJTuOFwy7UniPli44NKQGAglksjvOcpo95aZA==" }, "tmp": { "version": "0.0.33", - "resolved": "http://173.15.15.82:8081/repository/npm-all/tmp/-/tmp-0.0.33.tgz", + "resolved": "https://registry.npmmirror.com/tmp/-/tmp-0.0.33.tgz", "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", "requires": { "os-tmpdir": "~1.0.2" @@ -19334,7 +19334,7 @@ }, "to-regex": { "version": "3.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/to-regex/-/to-regex-3.0.2.tgz", + "resolved": "https://registry.npmmirror.com/to-regex/-/to-regex-3.0.2.tgz", "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", "requires": { "define-property": "^2.0.2", @@ -19375,7 +19375,7 @@ }, "tough-cookie": { "version": "2.5.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/tough-cookie/-/tough-cookie-2.5.0.tgz", + "resolved": "https://registry.npmmirror.com/tough-cookie/-/tough-cookie-2.5.0.tgz", "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", "requires": { "psl": "^1.1.28", @@ -19400,7 +19400,7 @@ }, "true-case-path": { "version": "1.0.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/true-case-path/-/true-case-path-1.0.3.tgz", + "resolved": "https://registry.npmmirror.com/true-case-path/-/true-case-path-1.0.3.tgz", "integrity": "sha512-m6s2OdQe5wgpFMC+pAJ+q9djG82O2jcHPOI6RNg1yy9rCYR+WD6Nbpl32fDpfC56nirdRy+opFa/Vk7HYhqaew==", "dev": true, "requires": { @@ -19409,7 +19409,7 @@ }, "tryer": { "version": "1.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/tryer/-/tryer-1.0.1.tgz", + "resolved": "https://registry.npmmirror.com/tryer/-/tryer-1.0.1.tgz", "integrity": "sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==", "dev": true }, @@ -19448,7 +19448,7 @@ }, "type-is": { "version": "1.6.18", - "resolved": "http://173.15.15.82:8081/repository/npm-all/type-is/-/type-is-1.6.18.tgz", + "resolved": "https://registry.npmmirror.com/type-is/-/type-is-1.6.18.tgz", "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", "dev": true, "requires": { @@ -19458,7 +19458,7 @@ }, "typed-styles": { "version": "0.0.7", - "resolved": "http://173.15.15.82:8081/repository/npm-all/typed-styles/-/typed-styles-0.0.7.tgz", + "resolved": "https://registry.npmmirror.com/typed-styles/-/typed-styles-0.0.7.tgz", "integrity": "sha512-pzP0PWoZUhsECYjABgCGQlRGL1n7tOHsgwYv3oIiEpJwGhFTuty/YNeduxQYzXXa3Ge5BdT6sHYIQYpl4uJ+5Q==" }, "typedarray": { @@ -19497,7 +19497,7 @@ }, "uglifyjs-webpack-plugin": { "version": "2.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-2.2.0.tgz", + "resolved": "https://registry.npmmirror.com/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-2.2.0.tgz", "integrity": "sha512-mHSkufBmBuJ+KHQhv5H0MXijtsoA1lynJt1lXOaotja8/I0pR4L9oGaPIZw+bQBOFittXZg9OC1sXSGO9D9ZYg==", "dev": true, "requires": { @@ -19514,7 +19514,7 @@ "dependencies": { "cacache": { "version": "12.0.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/cacache/-/cacache-12.0.4.tgz", + "resolved": "https://registry.npmmirror.com/cacache/-/cacache-12.0.4.tgz", "integrity": "sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==", "dev": true, "requires": { @@ -19537,7 +19537,7 @@ }, "find-cache-dir": { "version": "2.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/find-cache-dir/-/find-cache-dir-2.1.0.tgz", + "resolved": "https://registry.npmmirror.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz", "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", "dev": true, "requires": { @@ -19548,7 +19548,7 @@ }, "find-up": { "version": "3.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/find-up/-/find-up-3.0.0.tgz", + "resolved": "https://registry.npmmirror.com/find-up/-/find-up-3.0.0.tgz", "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", "dev": true, "requires": { @@ -19557,7 +19557,7 @@ }, "locate-path": { "version": "3.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/locate-path/-/locate-path-3.0.0.tgz", + "resolved": "https://registry.npmmirror.com/locate-path/-/locate-path-3.0.0.tgz", "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", "dev": true, "requires": { @@ -19567,7 +19567,7 @@ }, "lru-cache": { "version": "5.1.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/lru-cache/-/lru-cache-5.1.1.tgz", + "resolved": "https://registry.npmmirror.com/lru-cache/-/lru-cache-5.1.1.tgz", "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", "dev": true, "requires": { @@ -19586,7 +19586,7 @@ }, "mississippi": { "version": "3.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/mississippi/-/mississippi-3.0.0.tgz", + "resolved": "https://registry.npmmirror.com/mississippi/-/mississippi-3.0.0.tgz", "integrity": "sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==", "dev": true, "requires": { @@ -19604,7 +19604,7 @@ }, "p-limit": { "version": "2.3.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/p-limit/-/p-limit-2.3.0.tgz", + "resolved": "https://registry.npmmirror.com/p-limit/-/p-limit-2.3.0.tgz", "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, "requires": { @@ -19613,7 +19613,7 @@ }, "p-locate": { "version": "3.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/p-locate/-/p-locate-3.0.0.tgz", + "resolved": "https://registry.npmmirror.com/p-locate/-/p-locate-3.0.0.tgz", "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", "dev": true, "requires": { @@ -19622,7 +19622,7 @@ }, "p-try": { "version": "2.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/p-try/-/p-try-2.2.0.tgz", + "resolved": "https://registry.npmmirror.com/p-try/-/p-try-2.2.0.tgz", "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", "dev": true }, @@ -19634,7 +19634,7 @@ }, "pkg-dir": { "version": "3.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/pkg-dir/-/pkg-dir-3.0.0.tgz", + "resolved": "https://registry.npmmirror.com/pkg-dir/-/pkg-dir-3.0.0.tgz", "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", "dev": true, "requires": { @@ -19654,7 +19654,7 @@ }, "ssri": { "version": "6.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/ssri/-/ssri-6.0.2.tgz", + "resolved": "https://registry.npmmirror.com/ssri/-/ssri-6.0.2.tgz", "integrity": "sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q==", "dev": true, "requires": { @@ -19669,13 +19669,13 @@ }, "y18n": { "version": "4.0.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/y18n/-/y18n-4.0.3.tgz", + "resolved": "https://registry.npmmirror.com/y18n/-/y18n-4.0.3.tgz", "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", "dev": true }, "yallist": { "version": "3.1.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/yallist/-/yallist-3.1.1.tgz", + "resolved": "https://registry.npmmirror.com/yallist/-/yallist-3.1.1.tgz", "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", "dev": true } @@ -19694,7 +19694,7 @@ }, "union-value": { "version": "1.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/union-value/-/union-value-1.0.1.tgz", + "resolved": "https://registry.npmmirror.com/union-value/-/union-value-1.0.1.tgz", "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", "requires": { "arr-union": "^3.1.0", @@ -19717,7 +19717,7 @@ }, "unique-filename": { "version": "1.1.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/unique-filename/-/unique-filename-1.1.1.tgz", + "resolved": "https://registry.npmmirror.com/unique-filename/-/unique-filename-1.1.1.tgz", "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", "dev": true, "requires": { @@ -19726,7 +19726,7 @@ }, "unique-slug": { "version": "2.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/unique-slug/-/unique-slug-2.0.2.tgz", + "resolved": "https://registry.npmmirror.com/unique-slug/-/unique-slug-2.0.2.tgz", "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", "dev": true, "requires": { @@ -19744,7 +19744,7 @@ }, "universalify": { "version": "0.1.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/universalify/-/universalify-0.1.2.tgz", + "resolved": "https://registry.npmmirror.com/universalify/-/universalify-0.1.2.tgz", "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" }, "unpipe": { @@ -19808,12 +19808,12 @@ }, "upath": { "version": "1.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/upath/-/upath-1.2.0.tgz", + "resolved": "https://registry.npmmirror.com/upath/-/upath-1.2.0.tgz", "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==" }, "update-notifier": { "version": "2.5.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/update-notifier/-/update-notifier-2.5.0.tgz", + "resolved": "https://registry.npmmirror.com/update-notifier/-/update-notifier-2.5.0.tgz", "integrity": "sha512-gwMdhgJHGuj/+wHJJs9e6PcCszpxR1b236igrOkUofGhqJuG+amlIKwApH1IW1WWl7ovZxsX49lMBWLxSdm5Dw==", "dev": true, "requires": { @@ -19831,7 +19831,7 @@ "dependencies": { "chalk": { "version": "2.4.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/chalk/-/chalk-2.4.2.tgz", + "resolved": "https://registry.npmmirror.com/chalk/-/chalk-2.4.2.tgz", "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, "requires": { @@ -19844,7 +19844,7 @@ }, "uri-js": { "version": "4.4.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/uri-js/-/uri-js-4.4.1.tgz", + "resolved": "https://registry.npmmirror.com/uri-js/-/uri-js-4.4.1.tgz", "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", "requires": { "punycode": "^2.1.0" @@ -19881,7 +19881,7 @@ }, "url-loader": { "version": "0.6.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/url-loader/-/url-loader-0.6.2.tgz", + "resolved": "https://registry.npmmirror.com/url-loader/-/url-loader-0.6.2.tgz", "integrity": "sha512-h3qf9TNn53BpuXTTcpC+UehiRrl0Cv45Yr/xWayApjw6G8Bg2dGke7rIwDQ39piciWCWrC+WiqLjOh3SUp9n0Q==", "dev": true, "requires": { @@ -19946,7 +19946,7 @@ }, "use": { "version": "3.1.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/use/-/use-3.1.1.tgz", + "resolved": "https://registry.npmmirror.com/use/-/use-3.1.1.tgz", "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==" }, "use-composed-ref": { @@ -19978,7 +19978,7 @@ }, "util": { "version": "0.11.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/util/-/util-0.11.1.tgz", + "resolved": "https://registry.npmmirror.com/util/-/util-0.11.1.tgz", "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==", "dev": true, "requires": { @@ -20000,7 +20000,7 @@ }, "util.promisify": { "version": "1.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/util.promisify/-/util.promisify-1.0.0.tgz", + "resolved": "https://registry.npmmirror.com/util.promisify/-/util.promisify-1.0.0.tgz", "integrity": "sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==", "dev": true, "requires": { @@ -20022,12 +20022,12 @@ }, "uuid": { "version": "3.4.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/uuid/-/uuid-3.4.0.tgz", + "resolved": "https://registry.npmmirror.com/uuid/-/uuid-3.4.0.tgz", "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" }, "v8-compile-cache": { "version": "2.3.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", + "resolved": "https://registry.npmmirror.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", "dev": true }, @@ -20042,7 +20042,7 @@ }, "validate-npm-package-license": { "version": "3.0.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "resolved": "https://registry.npmmirror.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", "requires": { "spdx-correct": "^3.0.0", @@ -20051,7 +20051,7 @@ }, "value-equal": { "version": "1.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/value-equal/-/value-equal-1.0.1.tgz", + "resolved": "https://registry.npmmirror.com/value-equal/-/value-equal-1.0.1.tgz", "integrity": "sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==" }, "vary": { @@ -20062,13 +20062,13 @@ }, "vendors": { "version": "1.0.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/vendors/-/vendors-1.0.4.tgz", + "resolved": "https://registry.npmmirror.com/vendors/-/vendors-1.0.4.tgz", "integrity": "sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w==", "dev": true }, "venn.js": { "version": "0.2.20", - "resolved": "http://173.15.15.82:8081/repository/npm-all/venn.js/-/venn.js-0.2.20.tgz", + "resolved": "https://registry.npmmirror.com/venn.js/-/venn.js-0.2.20.tgz", "integrity": "sha512-bb5SYq/wamY9fvcuErb9a0FJkgIFHJjkLZWonQ+DoKKuDX3WPH2B4ouI1ce4K2iejBklQy6r1ly8nOGIyOCO6w==", "requires": { "d3-selection": "^1.0.2", @@ -20088,13 +20088,13 @@ }, "vm-browserify": { "version": "1.1.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/vm-browserify/-/vm-browserify-1.1.2.tgz", + "resolved": "https://registry.npmmirror.com/vm-browserify/-/vm-browserify-1.1.2.tgz", "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==", "dev": true }, "w3c-hr-time": { "version": "1.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", + "resolved": "https://registry.npmmirror.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", "requires": { "browser-process-hrtime": "^1.0.0" @@ -20102,7 +20102,7 @@ }, "w3c-xmlserializer": { "version": "2.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz", + "resolved": "https://registry.npmmirror.com/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz", "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==", "requires": { "xml-name-validator": "^3.0.0" @@ -20110,7 +20110,7 @@ "dependencies": { "xml-name-validator": { "version": "3.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/xml-name-validator/-/xml-name-validator-3.0.0.tgz", + "resolved": "https://registry.npmmirror.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz", "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==" } } @@ -20125,7 +20125,7 @@ }, "warning": { "version": "4.0.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/warning/-/warning-4.0.3.tgz", + "resolved": "https://registry.npmmirror.com/warning/-/warning-4.0.3.tgz", "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==", "requires": { "loose-envify": "^1.0.0" @@ -20138,7 +20138,7 @@ }, "watchpack": { "version": "1.7.5", - "resolved": "http://173.15.15.82:8081/repository/npm-all/watchpack/-/watchpack-1.7.5.tgz", + "resolved": "https://registry.npmmirror.com/watchpack/-/watchpack-1.7.5.tgz", "integrity": "sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==", "dev": true, "requires": { @@ -20150,14 +20150,14 @@ "dependencies": { "binary-extensions": { "version": "2.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/binary-extensions/-/binary-extensions-2.2.0.tgz", + "resolved": "https://registry.npmmirror.com/binary-extensions/-/binary-extensions-2.2.0.tgz", "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", "dev": true, "optional": true }, "braces": { "version": "3.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/braces/-/braces-3.0.2.tgz", + "resolved": "https://registry.npmmirror.com/braces/-/braces-3.0.2.tgz", "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", "dev": true, "optional": true, @@ -20184,7 +20184,7 @@ }, "fill-range": { "version": "7.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/fill-range/-/fill-range-7.0.1.tgz", + "resolved": "https://registry.npmmirror.com/fill-range/-/fill-range-7.0.1.tgz", "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", "dev": true, "optional": true, @@ -20194,14 +20194,14 @@ }, "fsevents": { "version": "2.3.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/fsevents/-/fsevents-2.3.2.tgz", + "resolved": "https://registry.npmmirror.com/fsevents/-/fsevents-2.3.2.tgz", "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", "dev": true, "optional": true }, "glob-parent": { "version": "5.1.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/glob-parent/-/glob-parent-5.1.2.tgz", + "resolved": "https://registry.npmmirror.com/glob-parent/-/glob-parent-5.1.2.tgz", "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, "optional": true, @@ -20211,7 +20211,7 @@ }, "is-binary-path": { "version": "2.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-binary-path/-/is-binary-path-2.1.0.tgz", + "resolved": "https://registry.npmmirror.com/is-binary-path/-/is-binary-path-2.1.0.tgz", "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", "dev": true, "optional": true, @@ -20236,21 +20236,21 @@ }, "is-number": { "version": "7.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-number/-/is-number-7.0.0.tgz", + "resolved": "https://registry.npmmirror.com/is-number/-/is-number-7.0.0.tgz", "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", "dev": true, "optional": true }, "normalize-path": { "version": "3.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/normalize-path/-/normalize-path-3.0.0.tgz", + "resolved": "https://registry.npmmirror.com/normalize-path/-/normalize-path-3.0.0.tgz", "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", "dev": true, "optional": true }, "readdirp": { "version": "3.6.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/readdirp/-/readdirp-3.6.0.tgz", + "resolved": "https://registry.npmmirror.com/readdirp/-/readdirp-3.6.0.tgz", "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", "dev": true, "optional": true, @@ -20260,7 +20260,7 @@ }, "to-regex-range": { "version": "5.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/to-regex-range/-/to-regex-range-5.0.1.tgz", + "resolved": "https://registry.npmmirror.com/to-regex-range/-/to-regex-range-5.0.1.tgz", "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", "dev": true, "optional": true, @@ -20272,7 +20272,7 @@ }, "watchpack-chokidar2": { "version": "2.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz", + "resolved": "https://registry.npmmirror.com/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz", "integrity": "sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==", "dev": true, "optional": true, @@ -20282,7 +20282,7 @@ }, "wbuf": { "version": "1.7.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/wbuf/-/wbuf-1.7.3.tgz", + "resolved": "https://registry.npmmirror.com/wbuf/-/wbuf-1.7.3.tgz", "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", "dev": true, "requires": { @@ -20291,12 +20291,12 @@ }, "webidl-conversions": { "version": "4.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/webidl-conversions/-/webidl-conversions-4.0.2.tgz", + "resolved": "https://registry.npmmirror.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz", "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==" }, "webpack": { "version": "4.46.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/webpack/-/webpack-4.46.0.tgz", + "resolved": "https://registry.npmmirror.com/webpack/-/webpack-4.46.0.tgz", "integrity": "sha512-6jJuJjg8znb/xRItk7bkT0+Q7AHCYjjFnvKIWQPkNIOyRqoCGvkOs0ipeQzrqz4l5FtN5ZI/ukEHroeX/o1/5Q==", "dev": true, "requires": { @@ -20327,7 +20327,7 @@ "dependencies": { "acorn": { "version": "6.4.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/acorn/-/acorn-6.4.2.tgz", + "resolved": "https://registry.npmmirror.com/acorn/-/acorn-6.4.2.tgz", "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==", "dev": true }, @@ -20345,7 +20345,7 @@ }, "braces": { "version": "2.3.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/braces/-/braces-2.3.2.tgz", + "resolved": "https://registry.npmmirror.com/braces/-/braces-2.3.2.tgz", "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", "dev": true, "requires": { @@ -20374,7 +20374,7 @@ }, "cacache": { "version": "12.0.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/cacache/-/cacache-12.0.4.tgz", + "resolved": "https://registry.npmmirror.com/cacache/-/cacache-12.0.4.tgz", "integrity": "sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==", "dev": true, "requires": { @@ -20406,7 +20406,7 @@ }, "eslint-scope": { "version": "4.0.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/eslint-scope/-/eslint-scope-4.0.3.tgz", + "resolved": "https://registry.npmmirror.com/eslint-scope/-/eslint-scope-4.0.3.tgz", "integrity": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==", "dev": true, "requires": { @@ -20489,7 +20489,7 @@ }, "is-descriptor": { "version": "0.1.6", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-descriptor/-/is-descriptor-0.1.6.tgz", + "resolved": "https://registry.npmmirror.com/is-descriptor/-/is-descriptor-0.1.6.tgz", "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", "dev": true, "requires": { @@ -20500,7 +20500,7 @@ }, "kind-of": { "version": "5.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/kind-of/-/kind-of-5.1.0.tgz", + "resolved": "https://registry.npmmirror.com/kind-of/-/kind-of-5.1.0.tgz", "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", "dev": true } @@ -20508,7 +20508,7 @@ }, "extglob": { "version": "2.0.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/extglob/-/extglob-2.0.4.tgz", + "resolved": "https://registry.npmmirror.com/extglob/-/extglob-2.0.4.tgz", "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", "dev": true, "requires": { @@ -20567,7 +20567,7 @@ }, "find-cache-dir": { "version": "2.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/find-cache-dir/-/find-cache-dir-2.1.0.tgz", + "resolved": "https://registry.npmmirror.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz", "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", "dev": true, "requires": { @@ -20578,7 +20578,7 @@ }, "find-up": { "version": "3.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/find-up/-/find-up-3.0.0.tgz", + "resolved": "https://registry.npmmirror.com/find-up/-/find-up-3.0.0.tgz", "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", "dev": true, "requires": { @@ -20587,7 +20587,7 @@ }, "is-accessor-descriptor": { "version": "1.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "resolved": "https://registry.npmmirror.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", "dev": true, "requires": { @@ -20602,7 +20602,7 @@ }, "is-data-descriptor": { "version": "1.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "resolved": "https://registry.npmmirror.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", "dev": true, "requires": { @@ -20611,7 +20611,7 @@ }, "is-descriptor": { "version": "1.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-descriptor/-/is-descriptor-1.0.2.tgz", + "resolved": "https://registry.npmmirror.com/is-descriptor/-/is-descriptor-1.0.2.tgz", "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", "dev": true, "requires": { @@ -20648,13 +20648,13 @@ }, "kind-of": { "version": "6.0.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/kind-of/-/kind-of-6.0.3.tgz", + "resolved": "https://registry.npmmirror.com/kind-of/-/kind-of-6.0.3.tgz", "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", "dev": true }, "locate-path": { "version": "3.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/locate-path/-/locate-path-3.0.0.tgz", + "resolved": "https://registry.npmmirror.com/locate-path/-/locate-path-3.0.0.tgz", "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", "dev": true, "requires": { @@ -20664,7 +20664,7 @@ }, "lru-cache": { "version": "5.1.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/lru-cache/-/lru-cache-5.1.1.tgz", + "resolved": "https://registry.npmmirror.com/lru-cache/-/lru-cache-5.1.1.tgz", "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", "dev": true, "requires": { @@ -20693,7 +20693,7 @@ }, "micromatch": { "version": "3.1.10", - "resolved": "http://173.15.15.82:8081/repository/npm-all/micromatch/-/micromatch-3.1.10.tgz", + "resolved": "https://registry.npmmirror.com/micromatch/-/micromatch-3.1.10.tgz", "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", "dev": true, "requires": { @@ -20714,7 +20714,7 @@ }, "mississippi": { "version": "3.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/mississippi/-/mississippi-3.0.0.tgz", + "resolved": "https://registry.npmmirror.com/mississippi/-/mississippi-3.0.0.tgz", "integrity": "sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==", "dev": true, "requires": { @@ -20732,7 +20732,7 @@ }, "p-limit": { "version": "2.3.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/p-limit/-/p-limit-2.3.0.tgz", + "resolved": "https://registry.npmmirror.com/p-limit/-/p-limit-2.3.0.tgz", "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, "requires": { @@ -20741,7 +20741,7 @@ }, "p-locate": { "version": "3.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/p-locate/-/p-locate-3.0.0.tgz", + "resolved": "https://registry.npmmirror.com/p-locate/-/p-locate-3.0.0.tgz", "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", "dev": true, "requires": { @@ -20750,7 +20750,7 @@ }, "p-try": { "version": "2.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/p-try/-/p-try-2.2.0.tgz", + "resolved": "https://registry.npmmirror.com/p-try/-/p-try-2.2.0.tgz", "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", "dev": true }, @@ -20762,7 +20762,7 @@ }, "pkg-dir": { "version": "3.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/pkg-dir/-/pkg-dir-3.0.0.tgz", + "resolved": "https://registry.npmmirror.com/pkg-dir/-/pkg-dir-3.0.0.tgz", "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", "dev": true, "requires": { @@ -20782,7 +20782,7 @@ }, "serialize-javascript": { "version": "4.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/serialize-javascript/-/serialize-javascript-4.0.0.tgz", + "resolved": "https://registry.npmmirror.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz", "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", "dev": true, "requires": { @@ -20791,7 +20791,7 @@ }, "ssri": { "version": "6.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/ssri/-/ssri-6.0.2.tgz", + "resolved": "https://registry.npmmirror.com/ssri/-/ssri-6.0.2.tgz", "integrity": "sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q==", "dev": true, "requires": { @@ -20800,7 +20800,7 @@ }, "terser-webpack-plugin": { "version": "1.4.5", - "resolved": "http://173.15.15.82:8081/repository/npm-all/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz", + "resolved": "https://registry.npmmirror.com/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz", "integrity": "sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==", "dev": true, "requires": { @@ -20817,13 +20817,13 @@ }, "y18n": { "version": "4.0.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/y18n/-/y18n-4.0.3.tgz", + "resolved": "https://registry.npmmirror.com/y18n/-/y18n-4.0.3.tgz", "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", "dev": true }, "yallist": { "version": "3.1.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/yallist/-/yallist-3.1.1.tgz", + "resolved": "https://registry.npmmirror.com/yallist/-/yallist-3.1.1.tgz", "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", "dev": true } @@ -20831,7 +20831,7 @@ }, "webpack-bundle-analyzer": { "version": "3.9.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/webpack-bundle-analyzer/-/webpack-bundle-analyzer-3.9.0.tgz", + "resolved": "https://registry.npmmirror.com/webpack-bundle-analyzer/-/webpack-bundle-analyzer-3.9.0.tgz", "integrity": "sha512-Ob8amZfCm3rMB1ScjQVlbYYUEJyEjdEtQ92jqiFUYt5VkEeO2v5UMbv49P/gnmCZm3A6yaFQzCBvpZqN4MUsdA==", "dev": true, "requires": { @@ -20852,13 +20852,13 @@ "dependencies": { "acorn": { "version": "7.4.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/acorn/-/acorn-7.4.1.tgz", + "resolved": "https://registry.npmmirror.com/acorn/-/acorn-7.4.1.tgz", "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", "dev": true }, "chalk": { "version": "2.4.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/chalk/-/chalk-2.4.2.tgz", + "resolved": "https://registry.npmmirror.com/chalk/-/chalk-2.4.2.tgz", "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, "requires": { @@ -20869,7 +20869,7 @@ }, "ws": { "version": "6.2.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/ws/-/ws-6.2.2.tgz", + "resolved": "https://registry.npmmirror.com/ws/-/ws-6.2.2.tgz", "integrity": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==", "dev": true, "requires": { @@ -20880,7 +20880,7 @@ }, "webpack-cli": { "version": "3.3.12", - "resolved": "http://173.15.15.82:8081/repository/npm-all/webpack-cli/-/webpack-cli-3.3.12.tgz", + "resolved": "https://registry.npmmirror.com/webpack-cli/-/webpack-cli-3.3.12.tgz", "integrity": "sha512-NVWBaz9k839ZH/sinurM+HcDvJOTXwSjYp1ku+5XKeOC03z8v5QitnK/x+lAxGXFyhdayoIf/GOpv85z3/xPag==", "dev": true, "requires": { @@ -20905,13 +20905,13 @@ }, "camelcase": { "version": "5.3.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/camelcase/-/camelcase-5.3.1.tgz", + "resolved": "https://registry.npmmirror.com/camelcase/-/camelcase-5.3.1.tgz", "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", "dev": true }, "chalk": { "version": "2.4.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/chalk/-/chalk-2.4.2.tgz", + "resolved": "https://registry.npmmirror.com/chalk/-/chalk-2.4.2.tgz", "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, "requires": { @@ -20922,7 +20922,7 @@ "dependencies": { "supports-color": { "version": "5.5.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/supports-color/-/supports-color-5.5.0.tgz", + "resolved": "https://registry.npmmirror.com/supports-color/-/supports-color-5.5.0.tgz", "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "dev": true, "requires": { @@ -20933,7 +20933,7 @@ }, "cliui": { "version": "5.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/cliui/-/cliui-5.0.0.tgz", + "resolved": "https://registry.npmmirror.com/cliui/-/cliui-5.0.0.tgz", "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", "dev": true, "requires": { @@ -20963,7 +20963,7 @@ }, "find-up": { "version": "3.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/find-up/-/find-up-3.0.0.tgz", + "resolved": "https://registry.npmmirror.com/find-up/-/find-up-3.0.0.tgz", "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", "dev": true, "requires": { @@ -20972,13 +20972,13 @@ }, "get-caller-file": { "version": "2.0.5", - "resolved": "http://173.15.15.82:8081/repository/npm-all/get-caller-file/-/get-caller-file-2.0.5.tgz", + "resolved": "https://registry.npmmirror.com/get-caller-file/-/get-caller-file-2.0.5.tgz", "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", "dev": true }, "locate-path": { "version": "3.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/locate-path/-/locate-path-3.0.0.tgz", + "resolved": "https://registry.npmmirror.com/locate-path/-/locate-path-3.0.0.tgz", "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", "dev": true, "requires": { @@ -20988,7 +20988,7 @@ }, "p-limit": { "version": "2.3.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/p-limit/-/p-limit-2.3.0.tgz", + "resolved": "https://registry.npmmirror.com/p-limit/-/p-limit-2.3.0.tgz", "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, "requires": { @@ -20997,7 +20997,7 @@ }, "p-locate": { "version": "3.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/p-locate/-/p-locate-3.0.0.tgz", + "resolved": "https://registry.npmmirror.com/p-locate/-/p-locate-3.0.0.tgz", "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", "dev": true, "requires": { @@ -21006,19 +21006,19 @@ }, "p-try": { "version": "2.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/p-try/-/p-try-2.2.0.tgz", + "resolved": "https://registry.npmmirror.com/p-try/-/p-try-2.2.0.tgz", "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", "dev": true }, "require-main-filename": { "version": "2.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/require-main-filename/-/require-main-filename-2.0.0.tgz", + "resolved": "https://registry.npmmirror.com/require-main-filename/-/require-main-filename-2.0.0.tgz", "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", "dev": true }, "string-width": { "version": "3.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/string-width/-/string-width-3.1.0.tgz", + "resolved": "https://registry.npmmirror.com/string-width/-/string-width-3.1.0.tgz", "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", "dev": true, "requires": { @@ -21029,7 +21029,7 @@ }, "strip-ansi": { "version": "5.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/strip-ansi/-/strip-ansi-5.2.0.tgz", + "resolved": "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-5.2.0.tgz", "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", "dev": true, "requires": { @@ -21038,7 +21038,7 @@ }, "supports-color": { "version": "6.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/supports-color/-/supports-color-6.1.0.tgz", + "resolved": "https://registry.npmmirror.com/supports-color/-/supports-color-6.1.0.tgz", "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", "dev": true, "requires": { @@ -21053,7 +21053,7 @@ }, "wrap-ansi": { "version": "5.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "resolved": "https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-5.1.0.tgz", "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", "dev": true, "requires": { @@ -21064,13 +21064,13 @@ }, "y18n": { "version": "4.0.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/y18n/-/y18n-4.0.3.tgz", + "resolved": "https://registry.npmmirror.com/y18n/-/y18n-4.0.3.tgz", "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", "dev": true }, "yargs": { "version": "13.3.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/yargs/-/yargs-13.3.2.tgz", + "resolved": "https://registry.npmmirror.com/yargs/-/yargs-13.3.2.tgz", "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", "dev": true, "requires": { @@ -21088,7 +21088,7 @@ }, "yargs-parser": { "version": "13.1.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/yargs-parser/-/yargs-parser-13.1.2.tgz", + "resolved": "https://registry.npmmirror.com/yargs-parser/-/yargs-parser-13.1.2.tgz", "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", "dev": true, "requires": { @@ -21100,7 +21100,7 @@ }, "webpack-dev-middleware": { "version": "3.7.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz", + "resolved": "https://registry.npmmirror.com/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz", "integrity": "sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==", "dev": true, "requires": { @@ -21178,13 +21178,13 @@ }, "camelcase": { "version": "5.3.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/camelcase/-/camelcase-5.3.1.tgz", + "resolved": "https://registry.npmmirror.com/camelcase/-/camelcase-5.3.1.tgz", "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", "dev": true }, "cliui": { "version": "5.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/cliui/-/cliui-5.0.0.tgz", + "resolved": "https://registry.npmmirror.com/cliui/-/cliui-5.0.0.tgz", "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", "dev": true, "requires": { @@ -21195,7 +21195,7 @@ "dependencies": { "strip-ansi": { "version": "5.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/strip-ansi/-/strip-ansi-5.2.0.tgz", + "resolved": "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-5.2.0.tgz", "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", "dev": true, "requires": { @@ -21215,7 +21215,7 @@ }, "del": { "version": "4.1.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/del/-/del-4.1.1.tgz", + "resolved": "https://registry.npmmirror.com/del/-/del-4.1.1.tgz", "integrity": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==", "dev": true, "requires": { @@ -21236,7 +21236,7 @@ }, "find-up": { "version": "3.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/find-up/-/find-up-3.0.0.tgz", + "resolved": "https://registry.npmmirror.com/find-up/-/find-up-3.0.0.tgz", "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", "dev": true, "requires": { @@ -21245,7 +21245,7 @@ }, "get-caller-file": { "version": "2.0.5", - "resolved": "http://173.15.15.82:8081/repository/npm-all/get-caller-file/-/get-caller-file-2.0.5.tgz", + "resolved": "https://registry.npmmirror.com/get-caller-file/-/get-caller-file-2.0.5.tgz", "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", "dev": true }, @@ -21272,13 +21272,13 @@ }, "is-path-cwd": { "version": "2.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-path-cwd/-/is-path-cwd-2.2.0.tgz", + "resolved": "https://registry.npmmirror.com/is-path-cwd/-/is-path-cwd-2.2.0.tgz", "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", "dev": true }, "is-path-in-cwd": { "version": "2.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz", + "resolved": "https://registry.npmmirror.com/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz", "integrity": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==", "dev": true, "requires": { @@ -21287,7 +21287,7 @@ }, "is-path-inside": { "version": "2.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/is-path-inside/-/is-path-inside-2.1.0.tgz", + "resolved": "https://registry.npmmirror.com/is-path-inside/-/is-path-inside-2.1.0.tgz", "integrity": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==", "dev": true, "requires": { @@ -21296,7 +21296,7 @@ }, "locate-path": { "version": "3.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/locate-path/-/locate-path-3.0.0.tgz", + "resolved": "https://registry.npmmirror.com/locate-path/-/locate-path-3.0.0.tgz", "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", "dev": true, "requires": { @@ -21306,13 +21306,13 @@ }, "ms": { "version": "2.1.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/ms/-/ms-2.1.2.tgz", + "resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true }, "p-limit": { "version": "2.3.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/p-limit/-/p-limit-2.3.0.tgz", + "resolved": "https://registry.npmmirror.com/p-limit/-/p-limit-2.3.0.tgz", "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, "requires": { @@ -21321,7 +21321,7 @@ }, "p-locate": { "version": "3.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/p-locate/-/p-locate-3.0.0.tgz", + "resolved": "https://registry.npmmirror.com/p-locate/-/p-locate-3.0.0.tgz", "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", "dev": true, "requires": { @@ -21330,25 +21330,25 @@ }, "p-map": { "version": "2.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/p-map/-/p-map-2.1.0.tgz", + "resolved": "https://registry.npmmirror.com/p-map/-/p-map-2.1.0.tgz", "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", "dev": true }, "p-try": { "version": "2.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/p-try/-/p-try-2.2.0.tgz", + "resolved": "https://registry.npmmirror.com/p-try/-/p-try-2.2.0.tgz", "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", "dev": true }, "pify": { "version": "4.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/pify/-/pify-4.0.1.tgz", + "resolved": "https://registry.npmmirror.com/pify/-/pify-4.0.1.tgz", "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", "dev": true }, "require-main-filename": { "version": "2.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/require-main-filename/-/require-main-filename-2.0.0.tgz", + "resolved": "https://registry.npmmirror.com/require-main-filename/-/require-main-filename-2.0.0.tgz", "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", "dev": true }, @@ -21365,13 +21365,13 @@ }, "semver": { "version": "6.3.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/semver/-/semver-6.3.0.tgz", + "resolved": "https://registry.npmmirror.com/semver/-/semver-6.3.0.tgz", "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true }, "string-width": { "version": "3.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/string-width/-/string-width-3.1.0.tgz", + "resolved": "https://registry.npmmirror.com/string-width/-/string-width-3.1.0.tgz", "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", "dev": true, "requires": { @@ -21382,7 +21382,7 @@ "dependencies": { "strip-ansi": { "version": "5.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/strip-ansi/-/strip-ansi-5.2.0.tgz", + "resolved": "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-5.2.0.tgz", "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", "dev": true, "requires": { @@ -21393,7 +21393,7 @@ }, "supports-color": { "version": "6.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/supports-color/-/supports-color-6.1.0.tgz", + "resolved": "https://registry.npmmirror.com/supports-color/-/supports-color-6.1.0.tgz", "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", "dev": true, "requires": { @@ -21408,7 +21408,7 @@ }, "wrap-ansi": { "version": "5.1.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "resolved": "https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-5.1.0.tgz", "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", "dev": true, "requires": { @@ -21419,7 +21419,7 @@ "dependencies": { "strip-ansi": { "version": "5.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/strip-ansi/-/strip-ansi-5.2.0.tgz", + "resolved": "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-5.2.0.tgz", "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", "dev": true, "requires": { @@ -21430,7 +21430,7 @@ }, "ws": { "version": "6.2.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/ws/-/ws-6.2.2.tgz", + "resolved": "https://registry.npmmirror.com/ws/-/ws-6.2.2.tgz", "integrity": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==", "dev": true, "requires": { @@ -21439,13 +21439,13 @@ }, "y18n": { "version": "4.0.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/y18n/-/y18n-4.0.3.tgz", + "resolved": "https://registry.npmmirror.com/y18n/-/y18n-4.0.3.tgz", "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", "dev": true }, "yargs": { "version": "13.3.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/yargs/-/yargs-13.3.2.tgz", + "resolved": "https://registry.npmmirror.com/yargs/-/yargs-13.3.2.tgz", "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", "dev": true, "requires": { @@ -21463,7 +21463,7 @@ }, "yargs-parser": { "version": "13.1.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/yargs-parser/-/yargs-parser-13.1.2.tgz", + "resolved": "https://registry.npmmirror.com/yargs-parser/-/yargs-parser-13.1.2.tgz", "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", "dev": true, "requires": { @@ -21475,7 +21475,7 @@ }, "webpack-log": { "version": "2.0.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/webpack-log/-/webpack-log-2.0.0.tgz", + "resolved": "https://registry.npmmirror.com/webpack-log/-/webpack-log-2.0.0.tgz", "integrity": "sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==", "dev": true, "requires": { @@ -21485,7 +21485,7 @@ }, "webpack-manifest-plugin": { "version": "2.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/webpack-manifest-plugin/-/webpack-manifest-plugin-2.2.0.tgz", + "resolved": "https://registry.npmmirror.com/webpack-manifest-plugin/-/webpack-manifest-plugin-2.2.0.tgz", "integrity": "sha512-9S6YyKKKh/Oz/eryM1RyLVDVmy3NSPV0JXMRhZ18fJsq+AwGxUY34X54VNwkzYcEmEkDwNxuEOboCZEebJXBAQ==", "dev": true, "requires": { @@ -21497,7 +21497,7 @@ "dependencies": { "fs-extra": { "version": "7.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/fs-extra/-/fs-extra-7.0.1.tgz", + "resolved": "https://registry.npmmirror.com/fs-extra/-/fs-extra-7.0.1.tgz", "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", "dev": true, "requires": { @@ -21510,7 +21510,7 @@ }, "webpack-sources": { "version": "1.4.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/webpack-sources/-/webpack-sources-1.4.3.tgz", + "resolved": "https://registry.npmmirror.com/webpack-sources/-/webpack-sources-1.4.3.tgz", "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", "requires": { "source-list-map": "^2.0.0", @@ -21519,7 +21519,7 @@ }, "websocket-driver": { "version": "0.7.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/websocket-driver/-/websocket-driver-0.7.4.tgz", + "resolved": "https://registry.npmmirror.com/websocket-driver/-/websocket-driver-0.7.4.tgz", "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", "dev": true, "requires": { @@ -21530,18 +21530,18 @@ }, "websocket-extensions": { "version": "0.1.4", - "resolved": "http://173.15.15.82:8081/repository/npm-all/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "resolved": "https://registry.npmmirror.com/websocket-extensions/-/websocket-extensions-0.1.4.tgz", "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", "dev": true }, "webworkify-webpack": { "version": "2.1.5", - "resolved": "http://173.15.15.82:8081/repository/npm-all/webworkify-webpack/-/webworkify-webpack-2.1.5.tgz", + "resolved": "https://registry.npmmirror.com/webworkify-webpack/-/webworkify-webpack-2.1.5.tgz", "integrity": "sha512-2akF8FIyUvbiBBdD+RoHpoTbHMQF2HwjcxfDvgztAX5YwbZNyrtfUMgvfgFVsgDhDPVTlkbb5vyasqDHfIDPQw==" }, "whatwg-encoding": { "version": "1.0.5", - "resolved": "http://173.15.15.82:8081/repository/npm-all/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", + "resolved": "https://registry.npmmirror.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", "requires": { "iconv-lite": "0.4.24" @@ -21549,7 +21549,7 @@ "dependencies": { "iconv-lite": { "version": "0.4.24", - "resolved": "http://173.15.15.82:8081/repository/npm-all/iconv-lite/-/iconv-lite-0.4.24.tgz", + "resolved": "https://registry.npmmirror.com/iconv-lite/-/iconv-lite-0.4.24.tgz", "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", "requires": { "safer-buffer": ">= 2.1.2 < 3" @@ -21564,7 +21564,7 @@ }, "whatwg-mimetype": { "version": "2.3.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", + "resolved": "https://registry.npmmirror.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==" }, "whatwg-url": { @@ -21585,7 +21585,7 @@ }, "which": { "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "resolved": "https://registry.npmmirror.com/which/-/which-1.3.1.tgz", "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", "requires": { "isexe": "^2.0.0" @@ -21593,7 +21593,7 @@ }, "which-boxed-primitive": { "version": "1.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "resolved": "https://registry.npmmirror.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", "requires": { "is-bigint": "^1.0.1", @@ -21619,7 +21619,7 @@ }, "widest-line": { "version": "2.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/widest-line/-/widest-line-2.0.1.tgz", + "resolved": "https://registry.npmmirror.com/widest-line/-/widest-line-2.0.1.tgz", "integrity": "sha512-Ba5m9/Fa4Xt9eb2ELXt77JxVDV8w7qQrH0zS/TWSJdLyAwQjWoOzpzj5lwVftDz6n/EOu3tNACS84v509qwnJA==", "dev": true, "requires": { @@ -21638,7 +21638,7 @@ }, "word-wrap": { "version": "1.2.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/word-wrap/-/word-wrap-1.2.3.tgz", + "resolved": "https://registry.npmmirror.com/word-wrap/-/word-wrap-1.2.3.tgz", "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==" }, "wordwrap": { @@ -21648,7 +21648,7 @@ }, "worker-farm": { "version": "1.7.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/worker-farm/-/worker-farm-1.7.0.tgz", + "resolved": "https://registry.npmmirror.com/worker-farm/-/worker-farm-1.7.0.tgz", "integrity": "sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==", "requires": { "errno": "~0.1.7" @@ -21656,7 +21656,7 @@ }, "worker-rpc": { "version": "0.1.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/worker-rpc/-/worker-rpc-0.1.1.tgz", + "resolved": "https://registry.npmmirror.com/worker-rpc/-/worker-rpc-0.1.1.tgz", "integrity": "sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg==", "requires": { "microevent.ts": "~0.1.1" @@ -21693,7 +21693,7 @@ }, "wrap-md-editor": { "version": "0.2.20", - "resolved": "http://173.15.15.82:8081/repository/npm-all/wrap-md-editor/-/wrap-md-editor-0.2.20.tgz", + "resolved": "https://registry.npmmirror.com/wrap-md-editor/-/wrap-md-editor-0.2.20.tgz", "integrity": "sha512-pC3lgdziNbU2+bvC1Ac451S1mzO96AB2g08UuvGER0ZPAPRyJvY/xv+qk1XQMFjokb/qHYkmGB76Ho4Hjo/EaQ==", "requires": { "object-assign": "^4.1.1" @@ -21715,7 +21715,7 @@ }, "write-file-atomic": { "version": "2.4.3", - "resolved": "http://173.15.15.82:8081/repository/npm-all/write-file-atomic/-/write-file-atomic-2.4.3.tgz", + "resolved": "https://registry.npmmirror.com/write-file-atomic/-/write-file-atomic-2.4.3.tgz", "integrity": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==", "dev": true, "requires": { @@ -21742,28 +21742,28 @@ }, "xmlchars": { "version": "2.2.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/xmlchars/-/xmlchars-2.2.0.tgz", + "resolved": "https://registry.npmmirror.com/xmlchars/-/xmlchars-2.2.0.tgz", "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==" }, "xtend": { "version": "4.0.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/xtend/-/xtend-4.0.2.tgz", + "resolved": "https://registry.npmmirror.com/xtend/-/xtend-4.0.2.tgz", "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", "dev": true }, "xterm": { "version": "4.8.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/xterm/-/xterm-4.8.1.tgz", + "resolved": "https://registry.npmmirror.com/xterm/-/xterm-4.8.1.tgz", "integrity": "sha512-ax91ny4tI5eklqIfH79OUSGE2PUX2rGbwONmB6DfqpyhSZO8/cf++sqiaMWEVCMjACyMfnISW7C3gGMoNvNolQ==" }, "xterm-addon-fit": { "version": "0.4.0", - "resolved": "http://173.15.15.82:8081/repository/npm-all/xterm-addon-fit/-/xterm-addon-fit-0.4.0.tgz", + "resolved": "https://registry.npmmirror.com/xterm-addon-fit/-/xterm-addon-fit-0.4.0.tgz", "integrity": "sha512-p4BESuV/g2L6pZzFHpeNLLnep9mp/DkF3qrPglMiucSFtD8iJxtMufEoEJbN8LZwB4i+8PFpFvVuFrGOSpW05w==" }, "y18n": { "version": "3.2.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/y18n/-/y18n-3.2.2.tgz", + "resolved": "https://registry.npmmirror.com/y18n/-/y18n-3.2.2.tgz", "integrity": "sha512-uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ==" }, "yallist": { @@ -21785,7 +21785,7 @@ }, "yargs-parser": { "version": "5.0.1", - "resolved": "http://173.15.15.82:8081/repository/npm-all/yargs-parser/-/yargs-parser-5.0.1.tgz", + "resolved": "https://registry.npmmirror.com/yargs-parser/-/yargs-parser-5.0.1.tgz", "integrity": "sha512-wpav5XYiddjXxirPoCTUPbqM0PXvJ9hiBMvuJgInvo4/lAOTZzUprArw17q2O1P2+GHhbBr18/iQwjL5Z9BqfA==", "requires": { "camelcase": "^3.0.0", @@ -21801,7 +21801,7 @@ }, "zrender": { "version": "4.3.2", - "resolved": "http://173.15.15.82:8081/repository/npm-all/zrender/-/zrender-4.3.2.tgz", + "resolved": "https://registry.npmmirror.com/zrender/-/zrender-4.3.2.tgz", "integrity": "sha512-bIusJLS8c4DkIcdiK+s13HiQ/zjQQVgpNohtd8d94Y2DnJqgM1yjh/jpDb8DoL6hd7r8Awagw8e3qK/oLaWr3g==" } } diff --git a/package.json b/package.json index f835c777..81b80eb4 100644 --- a/package.json +++ b/package.json @@ -104,6 +104,7 @@ "scripts": { "start": "node --max_old_space_size=15360 scripts/start.js", "build": "cross-env NODE_ENV=production node --max_old_space_size=15360 scripts/build.js", + "build:dll": "webpack --config=./config/webpack.dll.config.js", "test-build": "cross-env NODE_ENV=testBuild node --max_old_space_size=15360 scripts/build.js", "pre-build": "NODE_ENV=preBuild node --max_old_space_size=15360 scripts/build.js", "gen_stats": "NODE_ENV=production webpack --profile --config=./config/webpack.config.prod.js --json > stats.json", @@ -170,40 +171,26 @@ "port": "3007", "devDependencies": { "@babel/runtime": "7.0.0-beta.51", - "babel-runtime": "6.26.0", + "babel-cli": "^6.26.0", + "babel-core": "^6.26.0", "babel-eslint": "7.2.3", "babel-jest": "20.0.3", "babel-loader": "7.1.2", - "babel-plugin-syntax-dynamic-import": "^6.18.0", - "babel-preset-react-app": "^3.1.1", - "babel-cli": "^6.26.0", - "babel-core": "^6.26.0", "babel-plugin-import": "^1.13.0", + "babel-plugin-syntax-dynamic-import": "^6.18.0", "babel-plugin-transform-decorators-legacy": "^1.3.5", "babel-plugin-transform-runtime": "^6.23.0", "babel-polyfill": "^6.26.0", "babel-preset-es2015": "^6.24.1", "babel-preset-react": "^6.24.1", + "babel-preset-react-app": "^3.1.1", "babel-preset-stage-2": "^6.24.1", - "postcss-loader": "2.0.8", - "file-loader": "^6.0.0", - "url-loader": "0.6.2", - "sass-loader": "7.3.1", - "less-loader": "^4.1.0", + "babel-runtime": "6.26.0", + "case-sensitive-paths-webpack-plugin": "2.1.1", "compression-webpack-plugin": "^1.1.12", "concat": "^1.0.3", - "happypack": "^5.0.1", - "mockjs": "^1.1.0", - "node-sass": "^4.14.1", - "optimize-css-assets-webpack-plugin": "^5.0.3", - "purgecss": "^2.1.2", - "react-json-view": "^1.21.3", - "reqwest": "^2.0.5", - "resize-observer-polyfill": "^1.5.1", - "sass-resources-loader": "^2.2.5", - "terser-webpack-plugin": "^2.3.5", - "uglifyjs-webpack-plugin": "^2.2.0", - "style-loader": "0.19.0", + "cross-env": "^7.0.3", + "css-loader": "^3.5.2", "eslint": "4.10.0", "eslint-config-react-app": "^2.1.0", "eslint-loader": "^4.0.0", @@ -211,15 +198,32 @@ "eslint-plugin-import": "2.8.0", "eslint-plugin-jsx-a11y": "5.1.1", "eslint-plugin-react": "7.4.0", + "file-loader": "^6.0.0", + "happypack": "^5.0.1", + "html-webpack-plugin": "^4.0.4", + "less-loader": "^4.1.0", + "mockjs": "^1.1.0", + "node-sass": "^4.14.1", + "optimize-css-assets-webpack-plugin": "^5.0.3", + "postcss-loader": "2.0.8", + "purgecss": "^2.1.2", + "react-json-view": "^1.21.3", + "reqwest": "^2.0.5", + "resize-observer-polyfill": "^1.5.1", + "sass-loader": "7.3.1", + "sass-resources-loader": "^2.2.5", + "style-loader": "0.19.0", + "sw-precache-webpack-plugin": "0.11.4", + "terser-webpack-plugin": "^2.3.8", + "uglifyjs-webpack-plugin": "^2.2.0", + "url-loader": "0.6.2", "webpack": "^4.42.1", "webpack-bundle-analyzer": "^3.7.0", "webpack-cli": "^3.3.11", "webpack-dev-server": "^3.10.3", - "case-sensitive-paths-webpack-plugin": "2.1.1", - "sw-precache-webpack-plugin": "0.11.4", - "html-webpack-plugin": "^4.0.4", - "cross-env": "^7.0.3", - "css-loader": "^3.5.2", "webpack-manifest-plugin": "^2.2.0" + }, + "volta": { + "node": "8.12.0" } } diff --git a/public/css/edu-purge.css b/public/css/edu-purge.css index eb8625a4..5245d533 100644 --- a/public/css/edu-purge.css +++ b/public/css/edu-purge.css @@ -1269,7 +1269,7 @@ a.shixun-task-btn { /*-----------实训配置、评测脚本-------------*/ @font-face { - font-family: "iconfont"; /* Project id 2340181 */ + font-family: "iconfont"; src: url('iconfont.woff2?t=1631773579834') format('woff2'), url('iconfont.woff?t=1631773579834') format('woff'), url('iconfont.ttf?t=1631773579834') format('truetype'); diff --git a/public/css/gitlink.min.css b/public/css/gitlink.min.css new file mode 100644 index 00000000..b97346ca --- /dev/null +++ b/public/css/gitlink.min.css @@ -0,0 +1 @@ +@charset "utf-8";.homepagePostReplyPortrait a img,.panel-list-img{border-radius:100px}.-fit,.page--leftnav{right:0;top:0;left:0}#blacktab_nav li,#tab_nav li{text-align:center;line-height:40px;float:left}.codefile-all p,a.user-info-name{white-space:nowrap;text-overflow:ellipsis}.pages_user_show li,li,ol,ul{list-style-type:none}.subName,.task-hide-2{-webkit-box-orient:vertical;-webkit-line-clamp:2}.both,.cl,.clearfix{clear:both}.header{width:100%;height:51px;min-width:1200px;background:#171616}.animate{-webkit-transition:.3s;-moz-transition:.3s;-ms-transition:.3s;transition:.3s;backface-visibility:hidden;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden}.footer{width:100%;height:100px;background-color:#fff}.panel-list-title,a.panel-list-title{display:inline-block;font-size:16px;color:#333;font-weight:400;max-width:82%}.btn-cir-big,.btn-top,.orig_reply,a.panel-name-small{font-size:12px}a:hover.panel-list-title{color:#ff7500}.panel-list-img{width:60px;height:60px}a.panel-name-small{display:inline-block;max-width:100px;color:#29bd8b}.panel-lightgrey,.panel-lightgrey span{font-size:12px;color:#888}.panel-comment_item,.with100{width:100%}.panel-comment_item .t_area{color:#888}.comment_item_cont{padding:15px;border-bottom:1px solid #e3e3e3}.comment_item_cont .J_Comment_Face{height:50px}.comment_item_cont .J_Comment_Face img{width:50px;height:50px;border-radius:100px}.panel-comment_item .t_content{width:93%;margin-left:15px}.panel-comment_item a.content-username{font-size:14px;margin-right:15px;display:inline-block;max-width:100px;color:#888}.J_Comment_Info{height:20px;line-height:22px}.panel-comment_item .comment_orig_content{margin:10px 0;color:#999}.panel-comment_item .comment_orig_content .comment_orig_content{margin-top:0;color:#666}.panel-comment_item .comment_content,.panel-form-label{color:#666}.comment_content img{max-width:100%}.pages_user_show a.active,.pages_user_show a:hover{background-color:#fc7033;color:#fff;border:1px solid #fc7033}.panel-box-sizing{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-o-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;border-radius:3px}.task-form-80,input.task-form-80,select.task-form-80,textarea.task-form-80{padding:5px;width:80%;box-sizing:border-box}.task-form-100,input.task-form-100,select.task-form-100,textarea.task-form-100{padding:5px;width:100%}.edu-pop-table tr,.task-height-40,input.task-height-40,select.task-height-40,textarea.task-height-40{height:40px}.task-height-150,input.task-height-150,textarea.task-height-150{height:150px}.user_bg_shadow{-webkit-box-shadow:0 0 8px 0 rgba(142,142,142,.1);-moz-box-shadow:0 0 8px 0 rgba(142,142,142,.1);box-shadow:0 0 8px 0 rgba(142,142,142,.1)}.btn-cir:hover{background:#fff;color:#333}.all_work_border{border:1px solid #4c515d}.btn-cir-orange{background:#ff7500;color:#fff;font-weight:400;border:1px solid #ff7500}.btn-top{display:inline-block;padding:0 5px;line-height:20px;border-radius:3px}.btn-cir-big{background:#999;color:#fff;display:inline-block;padding:0 10px;border-radius:25px;line-height:25px;height:25px}.panel-inner-icon{width:22px;height:22px;line-height:22px;border-radius:50%;background:#29bd8b;display:block;text-align:center}.leftnav-box,a.leftnav-box-inner{background:#292b3a;padding:10px 0}@keyframes ball-scale{0%{width:0;height:0}100%{width:80px;height:80px}}.shixun_work_div{overflow-y:auto;max-height:90px}.split-panel,.split-panel--first{overflow:hidden}.w20_center{width:20px;text-align:center}.user-info{width:80px;height:100px;padding-top:15px}a.user-info-img{display:block;width:50px;height:50px;margin:0 auto}a.user-info-img img{border-radius:100px;border:2px solid #666}a.user-info-img img:hover{border:2px solid #888}a.user-info-name{display:block;font-size:16px;color:#fff;max-width:100px;margin:10px auto;text-align:center;overflow:hidden}.leftnav-box{width:80px;height:60px;margin-bottom:2px}a.leftnav-box-inner{display:block;width:77px;border-left:3px solid #292b3a;text-align:center;color:#575f6c}a.leftnav-active,a:hover.leftnav-box-inner{border-left:3px solid #3498db;color:#fff!important}a:hover.leftnav-box-inner .btn-cir{background:#fff;color:#333}#tab_nav{height:42px;background:#fff;border-bottom:1px solid #eee}#tab_nav li{padding:0 30px;height:40px}#blacktab_nav li a,#tab_nav li a{font-size:14px}.tab_hover{border-bottom:2px solid #3498db;background:#fff;color:#3498db}.tab_hover a{color:#3498db!important}.undis{display:none}.black_nav_list li:hover .user_navlist_white,.block,.dis,.edu-menu-panel:hover .edu-menu-list,.edu-position-hidebox:hover .edu-position-hide,.homehove:hover .ContacttheTAs,.pathInfo li span,.square-Item:hover .closeSquare{display:block}.info-partly{display:block;box-flex:1;flex:1;-webkit-flex:1;position:relative}.-layout,.-layout-h,.-layout-v{display:flex}.-fit,.split-panel.-fit{position:absolute}.panel-box-sizing{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-o-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}.boxsizing,.padding10,.padding10-15,.padding10-20,.padding10-30,.padding15,.padding20,.padding20-30,.padding30,.padding30-20,.padding40,.padding40-20,.padding40-30,.padding5-10,.padding5-20,.photo_display{box-sizing:border-box}#game_task_pass img,.pointer{cursor:pointer}.-fit{bottom:0}.-layout-v{flex-direction:column;-webkit-flex-direction:column}.page--leftnav{position:fixed;z-index:9001;width:80px;height:100%;background:#282c37}#blacktab_nav .add-webssh,.-relative,.edu-position,.page--body,.pr,.relativef,.split-panel{position:relative}.page--body{margin-top:54px}.-flex{box-flex:1;flex:1;-webkit-flex:1}.split-panel{min-height:200px;height:100%}.-stretch{align-items:stretch}.-bg-white,input:disabled,select:disabled{background-color:#eee}.-vertical{flex-direction:column;box-flex-direction:column;-webkit-flex-direction:column}.-layout-h{flex-direction:row;box-flex-direction:row;-webkit-flex-direction:row}.-horizontal{flex-direction:row-reverse;box-flex-direction:row-reverse;-webkit-flex-direction:row-reverse}.-scroll{overflow:auto}.-flex-basic40{width:40%;box-flex:auto;flex:auto;-webkit-flex:auto}.-flex-basic50{width:60%;box-flex:auto;flex:auto;-webkit-flex:auto}.b-label{width:4px;cursor:ew-resize;background:#2b2b2b}.h-center{height:4px;cursor:ns-resize;background:#333}.-changebg{height:3px}.-bg-weightblack{background:#000}.-flex-basic70{box-flex:4 9 auto;flex:4 9 auto;-webkit-flex:4 9 auto;height:70%}.-flex-basic60{box-flex:2 1 auto;flex:2 1 auto;-webkit-flex:2 1 auto;height:30%}.-header-title{max-width:500px;font-weight:400}.-header-right{background:#333;border-radius:25px;padding:5px 15px;height:30px;position:absolute;right:10px;line-height:30px}.-bg-black{background:#2b2b2b;color:#f4f1ed}.-bg-darkblack{background:#1d1d1d;color:#fff}#blacktab_nav{height:40px;background:#292929}#blacktab_nav li{padding:0 50px;height:40px}#blacktab_nav .add-webssh span{position:absolute;top:0;right:5px;color:#fff;cursor:pointer}#blacktab_nav li.code-file-tab{padding:0 15px;width:120px;box-sizing:border-box}.code-flie-list{display:none;position:absolute;z-index:5;top:40px;background:#515151;width:300px;left:0;color:#fff}.blue-line{border-left:3px solid #199ed8!important;padding-left:5px}.codefile-all{max-height:122px;overflow-y:auto;overflow-x:hidden}.codefile-all p{text-align:left;cursor:pointer;height:22px;line-height:22px;margin-bottom:3px;padding-left:5px;border-left:3px solid #515151;width:273px;overflow:hidden}.codefile-all p:hover{background:#ccc;color:#333}.blacktab_hover a,.head-nav ul#header-nav a{color:#fff}.-task-ces-top{padding:5px 15px;background:#515151;color:#bfbfbf}.-task-ces-info-left{display:inline-block;width:100px;text-align:right}.page--over{position:fixed;top:0;left:80px;right:0;z-index:8000;height:100%;color:#fff}.-task-list-inner{background:#eff2f7;margin:10px;padding:5px}.-task-list-title{font-size:14px;color:#666;word-wrap:break-word;font-weight:400;max-width:80%}.black_nav_list li:hover,.greytab-inner{background:#fff}.blacktab-inner{background:#333}.task-padding16{padding:16px}@keyframes bounce-down{25%{transform:translateY(-10px)}100%,50%{transform:translateY(0)}}a.shixun-task-btn{display:inline-block;font-weight:700;border:none;padding:0 12px;color:#666;letter-spacing:1px;text-align:center;font-size:14px;height:30px;line-height:30px;border-radius:3px}.loading-center{text-align:center;align-items:center;justify-content:center}.center{vertical-align:middle;text-align:center}.inner-footer_con,.searchFor{width:auto}.searchFor .searchCon{width:250px;border-bottom:1px solid #ccc;float:left;height:30px}.searchFor .searchCon input{border:none;outline:0;height:29px;width:91%}.searchFor .search_close{font-size:18px;float:right;color:#666;height:29px;line-height:29px;cursor:pointer}.tab_color{color:#bfbfbf!important}.comment-input{width:100%;margin:10px 17px 10px 10px}.comment-input textarea{border:none!important;width:100%;outline:0;height:30px;border-radius:4px;padding-left:5px;float:left}.-center{align-items:center;min-height:66px}.markdown{letter-spacing:0;line-height:1.6;word-wrap:break-word;word-break:break-word}.markdown code{padding:0;line-height:23px;margin:0;font-family:"微软雅黑","宋体"}.load{width:auto;top:50%;margin-top:-100px;position:relative}.update_back_main{display:none;position:fixed;left:0;top:0;background:rgba(0,0,0,.3);width:100%;z-index:7001;height:100%}.tip-panel-animate,.tip-panel-animate-left{width:430px;height:140px;position:absolute;border-radius:3px;background:#fff}.tip-panel-animate-left{z-index:9000;left:80px;top:290px}.tip-panel-animate{z-index:10001;right:4px;top:40px;display:none}.tip-operator-btn{width:100%;border-top:1px solid #eee;height:40px;position:absolute;right:0;bottom:0;text-align:center}.photo_display,html>body #ajax-indicator{position:fixed}.tip-operator-btn a,.tip-operator-btn span{height:100%;text-align:center;line-height:40px;width:50%}.recently_item:hover,.tip-operator-btn a:hover,.tip-operator-btn span:hover{background-color:#f9f9f9}.tip-operator-btn a:first-child,.tip-operator-btn span:first-child{border-right:1px solid #eee;width:49.5%}.animate-tip{animation:1s rightToleft}.animate-tip-hide{animation:1s leftToright}@keyframes rightToleft{from{right:-400px}to{right:4px}}@keyframes leftToright{from{right:4px}to{right:-420px}}@keyframes rightToleft-l{from{left:-400px}to{left:80px}}@keyframes leftToright-l{from{left:80px}to{left:-420px}}.photo_display{width:100%;top:0;left:0;padding-top:64px;padding-left:80px;background:rgba(0,0,0,0);height:100%;z-index:100}.educontent .icon,.pl0{padding-left:0!important}.photo_display .task-popup{width:100%!important;height:100%!important}#picture-content img{max-width:100%;height:400px;display:block;margin:0 auto 20px}@font-face{font-family:iconfont;src:url('iconfont.woff2?t=1631773579834') format('woff2'),url('iconfont.woff?t=1631773579834') format('woff'),url('iconfont.ttf?t=1631773579834') format('truetype')}html body{font-size:14px;line-height:2;background:#fafafa;font-family:iconfont;color:#05101a;height:100%;position:relative;padding-right:0!important}body,html{height:100%}blockquote,body,button,dd,fieldset,form,h2,h3,h4,h6,hr,input,legend,li,ol,p,pre,span,td,textarea,th,ul{margin:0;padding:0;margin-bottom:0!important}button,input,select,table,textarea{outline:0;border-radius:3px;font-family:"微软雅黑","宋体";font-size:14px;line-height:1.9;border:1px solid #eaeaea;background:#fff;color:#05101a}textarea{resize:none}input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#ccc}input::-moz-placeholder,textarea::-moz-placeholder{color:#ccc}input::-ms-input-placeholder,textarea::-ms-input-placeholder{color:#ccc}div,img,table,td,tr{border:0}a:link,a:visited{text-decoration:none;color:#05101a}.clearfix:after{clear:both;content:".";display:block;font-size:0;height:0;line-height:0;visibility:hidden}.clearfix{zoom:1}.cl{overflow:hidden}.fl{float:left!important}.fr{float:right!important}.break-word,.break_word{word-break:break-all;word-wrap:break-word}.break-word-firefox,.break_word_firefox{white-space:pre-wrap!important;word-break:break-all}.dataTitle,.edu-menu-listnew li a,.head-nav,.mysign-span,.pullreques_pull_txt,.tabelcli,.task-hide{white-space:nowrap}.justify{text-align:justify}.indent{text-indent:2em}.edu-max-h200{height:200px;overflow:auto}.task-hide,.task-hide-2{overflow:hidden;text-overflow:ellipsis}.edu-h270{height:270px}.task-hide-2{display:-webkit-box}.none{display:none!important}.font-18,.iconfont{font-size:18px!important}.edu-position-hide li a,.font-12{font-size:12px!important}.font-n{font-weight:400!important}.font-bd,.weight{font-weight:700}.font-13{font-size:13px!important}.font-14{font-size:14px!important}.font-15{font-size:15px!important}.font-16,.markdown-body p{font-size:16px!important}.weight400{font-weight:400}.weight500{font-weight:500}.font-17{font-size:17px!important}.font-20{font-size:20px!important}.font-22{font-size:22px!important}.font-25{font-size:25px!important}.font-26{font-size:26px!important}.font-24{font-size:24px!important}.font-28{font-size:28px!important}.font-30{font-size:30px!important}.font-32{font-size:32px!important}.font-36{font-size:36px!important}.font-40{font-size:40px!important}.font-50{font-size:50px!important}.font-80{font-size:80px!important}.color-grey-b{color:#bbb!important}.panel-form-label{display:inline-block;width:10%;min-width:90px;text-align:right;line-height:40px;font-weight:400}.mt1{margin-top:1px}.mt2{margin-top:2px}.mt3{margin-top:3px}.mt5{margin-top:5px!important}.mt6{margin-top:6px}.mt7{margin-top:7px!important}.mt8{margin-top:8px!important}.mt9{margin-top:9px}.mt10{margin-top:10px!important}.mt12{margin-top:12px}.mt13{margin-top:13px}.mt14{margin-top:14px}.mt15{margin-top:15px!important}.mt16{margin-top:16px}.mt17{margin-top:17px}.mt18{margin-top:18px}.mt20{margin-top:20px!important}.mt22{margin-top:22px!important}.mt23{margin-top:23px!important}.mt24{margin-top:24px!important}.mt25{margin-top:25px}.mt28{margin-top:28px}.mt30{margin-top:30px!important}.mt34{margin-top:34px!important}.mt35{margin-top:35px!important}.mt36{margin-top:36px!important}.mt40{margin-top:40px}.mt45{margin-top:45px}.mt50{margin-top:50px}.mt56{margin-top:56px}.mt60{margin-top:60px}.mt70{margin-top:70px}.mt80{margin-top:80px}.mt100{margin-top:100px}.mb0,.new_li li,.square-main p,p{margin-bottom:0!important}.mb3{margin-bottom:3px}.mb5{margin-bottom:5px}.mb7{margin-bottom:7px}.mb10{margin-bottom:10px}.mb12{margin-bottom:12px}.mb13{margin-bottom:13px}.mb14{margin-bottom:14px}.mb15{margin-bottom:15px!important}.mb16{margin-bottom:16px}#shixun_search_form_div,.mb20{margin-bottom:20px!important}.mb25{margin-bottom:25px}.mb26{margin-bottom:26px}.mb30{margin-bottom:30px!important}.mb40{margin-bottom:40px!important}.mb50{margin-bottom:50px!important}.mb60{margin-bottom:60px!important}.mb70{margin-bottom:70px!important}.mb80{margin-bottom:80px!important}.mb100{margin-bottom:100px!important}.ml-3{margin-left:-3px}.ml1{margin-left:1px}.ml2{margin-left:2px}.ml3{margin-left:3px}.ml4{margin-left:4px}.ml5{margin-left:5px}.ml6{margin-left:6px}.ml10{margin-left:10px}.ml12{margin-left:12px!important}.ml13{margin-left:13px!important}.ml15{margin-left:15px}.ml18{margin-left:18px}.ml20{margin-left:20px}.ml22{margin-left:22px}.ml25{margin-left:25px}.ml30{margin-left:30px}.ml33{margin-left:33px}.ml35{margin-left:35px}.ml40{margin-left:40px}.ml50{margin-left:50px}.ml60{margin-left:60px}.ml80{margin-left:80px}.ml85{margin-left:85px}.ml180{margin-left:180px}.mr3{margin-right:3px}.mr4{margin-right:4px}.mr5{margin-right:5px}.mr8{margin-right:8px}.mr10{margin-right:10px}.mr12{margin-right:12px!important}.mr15{margin-right:15px}.mr18{margin-right:18px}.mr20{margin-right:20px}.mr25{margin-right:25px}.mr30{margin-right:30px}.mr35{margin-right:35px}.mr40{margin-right:40px}.mr50{margin-right:50px}.mr60{margin-right:60px}.mr70{margin-right:70px}.mr80{margin-right:80px}.mr90{margin-right:90px}.ml61{margin-left:61px}.pt5{padding-top:5px!important}.pt10{padding-top:10px}.pt15{padding-top:15px}.pt20{padding-top:20px!important}.pt25{padding-top:25px}.pt30{padding-top:30px}.pt35{padding-top:35px}.pt37{padding-top:37px}.pt40{padding-top:40px}.pt50{padding-top:50px}.pt60{padding-top:60px}.pt80{padding-top:80px}.pb5{padding-bottom:5px!important}.pb10{padding-bottom:10px}.pb15{padding-bottom:15px}.pb20,.pb25{padding-bottom:20px}.pb28{padding-bottom:28px}.pb30{padding-bottom:30px}.pb40{padding-bottom:40px}.pb47{padding-bottom:47px}.pb50{padding-bottom:50px}.pb60{padding-bottom:60px}.pb100{padding-bottom:100px}.pr35{padding-right:35px!important}.pl5{padding-left:5px}.pl8{padding-left:8px}.pl10{padding-left:10px}.pl15{padding-left:15px}.pl20{padding-left:20px}.pl25{padding-left:25px}.pl28{padding-left:28px}.pl30{padding-left:30px!important}.pl33{padding-left:33px}.pl35{padding-left:35px}.pl40{padding-left:40px}.pl50{padding-left:50px}.pl60{padding-left:60px}.pr5{padding-right:5px}.pr10{padding-right:10px}.pr15{padding-right:15px}.pr20{padding-right:20px!important}.pr25{padding-right:25px!important}.pr30{padding-right:30px!important}.pr40{padding-right:40px}.padding5-10{padding:5px 10px}.padding5-20{padding:5px 20px}.padding10{padding:10px}.padding15{padding:15px}.padding20{padding:20px}.padding10-20{padding:10px 20px}.padding10-15{padding:10px 15px}.padding10-30{padding:10px 30px}.padding20-30{padding:20px 30px}.padding30{padding:30px}.padding30-20{padding:30px 20px}.padding40{padding:40px}.padding40-30{padding:40px 30px}.padding40-20{padding:40px 20px}.lineh-12{line-height:12px!important}.lineh-15{line-height:15px!important}.lineh-17{line-height:17px!important}.lineh-20{line-height:20px!important}.lineh-24{line-height:24px!important}.lineh-25{line-height:25px!important}.lineh-30{line-height:30px!important}.lineh-35{line-height:35px!important}.lineh-40{line-height:40px!important}.df{display:flex;display:-webkit-flex;display:-ms-flex}.dataItemRight,.flex1{flex:1}.input-flex-35,.input-flex-40{flex:1;padding:5px;box-sizing:border-box}input::-ms-clear{display:none}::-webkit-scrollbar{width:7px;height:10px;background-color:#f5f5f5}.edu-back-white,.greyInput:focus,.search-new-input:focus+.search-span,.writeLetter_text:focus+.longchar{background-color:#fff}.ant-modal-close{top:8px!important}.newContainer{min-height:100%;height:auto!important;position:relative}.educontent{width:1200px;margin:0 auto;box-sizing:border-box}.newMain{margin:0 auto;min-width:1200px}.edu-txt-center{text-align:center!important}.edu-txt-left{text-align:left!important}.edu-txt-right{text-align:right!important}.edu-back-greyf5{background-color:#f5f5f5!important}.edu-back-skyblue{background:#f4faff}.edu-back-blue{background-color:#459be6!important}.edu-bg-light-blue{background:#f7f9fd;padding:5px}.color-red{color:red!important}.color-white,.colorFFF,.edu-menu-list li:hover a,.edu-menu-listnew li a:hover,.gain-code:hover,.log-botton:hover,.shaiContent li.shaiItem:hover span{color:#fff!important}#traningNav li.active>i,#traningNav>li.active>a,.black_nav_list li:hover .black_nav_span,.color-dark{color:#05101a!important}.careershover ul li a,.color-ooo{color:#000!important}.color-grey-name{color:#1a0b00!important}.color-grey-3{color:#333!important}.color-grey-eb{color:#ebebeb!important}.color-grey-c{color:#ccc!important}a.hoverLine:hover{text-decoration:underline}.color-grey-cd{color:#cdcdcd!important}.color-grey-d{color:#ddd}.color-dark-grey,.color-grey-9{color:#999!important}a:hover{color:#6684fe}.color-grey-98{color:#989898!important}.color-grey-8{color:#888!important}.color-grey-6,.task_tag_span a:hover{color:#666!important}.color-grey-B2{color:#b2b2b2!important}.color-grey-B3{color:#b3b3b3!important}.color-grey-B4{color:#b4b4b4!important}.color-grey-74{color:#747a7f!important}.color-blue,a.color-dark:hover,a.color-grey-3:hover,a.color-grey-6:hover,a.color-grey-name:hover,a.color-ooo:hover{color:#2a61ff!important}.color-blue-file{color:#4598fa!important}.black_nav_list li:hover>a,.color-blue_4C,.homehove:hover .ptext,.inviteTipbtn a:hover,.position-delete:hover i,.shaiContent li.shaiItem:hover i.iconfont{color:#4cacff!important}.color-orange{color:#ff6800!important}.color-orange-tip{color:#ff954c!important}.color-orange-tips{color:#ff8204!important}a.color-orange-tip:hover,a.color-orange:hover{color:#f06200!important}.color-yellow{color:#efc003!important}.color-yellow-ff{color:#ffa800!important}.color-green{color:#29bd8b!important}a.color-green:hover{color:#28ac7f!important}.radius{border-radius:50%}.radius4{border-radius:4px}.ring-blue,.ring-green,.ring-grey,.ring-op-green{width:18px;height:18px;display:block;border-radius:50%;text-align:center}.ring-green{background-color:#29bd8b}.ring-op-green{background-color:rgba(41,189,139,.6)}.ring-grey{line-height:18px;background-color:rgba(204,204,204,.5)}.ring-blue{background-color:#4cacff}.input-flex-35{height:35px}.input-flex-40{height:40px}.input-100-45{width:100%;height:45px;padding:5px;box-sizing:border-box}.input-60-40{width:60%;height:40px;padding:5px;box-sizing:border-box}.greyInput{background-color:#f5f5f5;outline:0}.greyInput:focus{border:1px solid #ddd}.winput-240-40{width:240px;height:40px;padding:5px;box-sizing:border-box}.winput-120-35{width:120px;height:35px;padding:5px;box-sizing:border-box}.winput-100-130,.winput-100-150{width:100%;padding:5px;box-sizing:border-box}.winput-100-130{height:130px}.winput-100-150{height:150px}.width100{width:100%!important}.width89{width:89%}.width50{width:50%}.width40{width:40%}.width45{width:45%}.width10{width:10%}.width20{width:20%}.width15{width:15%}.edu-txt-w100,a.edu-txt-w100{width:100px;display:inline-block;text-align:center}.edu-txt-w80,a.edu-txt-w80{width:80px;display:inline-block;text-align:center}.minH-440{min-height:440px}.minH-500{min-height:500px}.minH-560{min-height:560px}.minH-650{min-height:650px}.minH-670{min-height:670px}.over210{height:210px;overflow-y:auto}.over280{height:280px;overflow-y:auto}.banner,.dataTitle,.head-nav,.mysign-span,.subName{overflow:hidden}.bor-bottom-greyE{border-bottom:1px solid #eee!important}.bor-left-greyE{border-left:1px solid #eee!important}.bor-top-greyE{border-top:1px solid #eee!important}.bor-grey-e,.edu-pop-table{border:1px solid #eee}.bor-red{border:1px solid #db0505!important}a.decoration{text-decoration:underline!important}.edu-menu-panel{position:relative;cursor:pointer}.edu-menu-list{position:absolute;padding:5px 0;box-shadow:0 2px 8px 0 rgba(0,0,0,.2);display:none;width:120px;background:#fff;right:-5px;border-radius:0 0 4px 4px;color:#05101a;font-size:14px;z-index:9}.edu-menu-list li{width:100%;padding:0 15px;box-sizing:border-box;height:35px;line-height:35px;cursor:pointer}.edu-menu-list li a{width:100%;height:100%;display:block;color:#323232}.edu-pop-table-all tr,.overPart,.search_course_list li{height:30px}.bestChoose.active,.edu-menu-panel:hover,.edu-menu-panel:hover i,.edu-position-hidebox i:hover,.secondNav li a:hover,.secondNav li.active a,.subshaicontent a.active,.subshaicontent a:hover,.user_navlist_white a:hover{color:#4cacff}.edu-menu-list li:hover,.log-botton.active{background:#4cacff}.ul-leftline:after{position:absolute;top:0;content:"";width:1px;background-color:#eee;height:100%;right:0}.overPart{width:240px;position:absolute;right:0;top:-27px;background:0 0}.handler_bg{background:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3hpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDIxIDc5LjE1NTc3MiwgMjAxNC8wMS8xMy0xOTo0NDowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo0ZDhlNWY5My05NmI0LTRlNWQtOGFjYi03ZTY4OGYyMTU2ZTYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NTEyNTVEMURGMkVFMTFFNEI5NDBCMjQ2M0ExMDQ1OUYiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NTEyNTVEMUNGMkVFMTFFNEI5NDBCMjQ2M0ExMDQ1OUYiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo2MTc5NzNmZS02OTQxLTQyOTYtYTIwNi02NDI2YTNkOWU5YmUiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NGQ4ZTVmOTMtOTZiNC00ZTVkLThhY2ItN2U2ODhmMjE1NmU2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+YiRG4AAAALFJREFUeNpi/P//PwMlgImBQkA9A+bOnfsIiBOxKcInh+yCaCDuByoswaIOpxwjciACFegBqZ1AvBSIS5OTk/8TkmNEjwWgQiUgtQuIjwAxUF3yX3xyGIEIFLwHpKyAWB+I1xGSwxULIGf9A7mQkBwTlhBXAFLHgPgqEAcTkmNCU6AL9d8WII4HOvk3ITkWJAXWUMlOoGQHmsE45ViQ2KuBuASoYC4Wf+OUYxz6mQkgwAAN9mIrUReCXgAAAABJRU5ErkJggg==") center no-repeat #fff}.handler_ok_bg{background:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3hpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDIxIDc5LjE1NTc3MiwgMjAxNC8wMS8xMy0xOTo0NDowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo0ZDhlNWY5My05NmI0LTRlNWQtOGFjYi03ZTY4OGYyMTU2ZTYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NDlBRDI3NjVGMkQ2MTFFNEI5NDBCMjQ2M0ExMDQ1OUYiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NDlBRDI3NjRGMkQ2MTFFNEI5NDBCMjQ2M0ExMDQ1OUYiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDphNWEzMWNhMC1hYmViLTQxNWEtYTEwZS04Y2U5NzRlN2Q4YTEiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NGQ4ZTVmOTMtOTZiNC00ZTVkLThhY2ItN2U2ODhmMjE1NmU2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+k+sHwwAAASZJREFUeNpi/P//PwMyKD8uZw+kUoDYEYgloMIvgHg/EM/ptHx0EFk9I8wAoEZ+IDUPiIMY8IN1QJwENOgj3ACo5gNAbMBAHLgAxA4gQ5igAnNJ0MwAVTsX7IKyY7L2UNuJAf+AmAmJ78AEDTBiwGYg5gbifCSxFCZoaBMCy4A4GOjnH0D6DpK4IxNSVIHAfSDOAeLraJrjgJp/AwPbHMhejiQnwYRmUzNQ4VQgDQqXK0ia/0I17wJiPmQNTNBEAgMlQIWiQA2vgWw7QppBekGxsAjIiEUSBNnsBDWEAY9mEFgMMgBk00E0iZtA7AHEctDQ58MRuA6wlLgGFMoMpIG1QFeGwAIxGZo8GUhIysmwQGSAZgwHaEZhICIzOaBkJkqyM0CAAQDGx279Jf50AAAAAABJRU5ErkJggg==") center no-repeat #fff}.-task-title{opacity:0;position:absolute;left:0;top:0;display:none;z-index:100000}.data-tip-down,.data-tip-left,.data-tip-right,.data-tip-top{position:relative;box-shadow:0 0 8px #000;background:#000;color:#fff;max-width:300px;word-wrap:break-word;text-align:center;border-radius:4px;padding:0 10px;border:1px solid #000;display:none}.edu-pop-table,.edu-pop-table-all{color:#888;background:#fff;width:100%}.data-tip-down:after,.data-tip-down:before,.data-tip-left:after,.data-tip-left:before,.data-tip-right:after,.data-tip-right:before,.data-tip-top:after,.data-tip-top:before{position:absolute;content:'';width:0;height:0}.data-tip-down:after,.data-tip-down:before{left:45%;top:-10px;border-left:5px solid transparent;border-right:5px solid transparent;border-bottom:10px solid #000}.data-tip-right:after,.data-tip-right:before{right:-10px;border-left:10px solid #000}.data-tip-down:before{top:-11px;border-bottom:10px solid #000}.data-tip-left:after,.data-tip-left:before,.data-tip-right:after,.data-tip-right:before{top:50%;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent}.data-tip-left:after,.data-tip-left:before{left:-10px;border-right:10px solid #000}.data-tip-left:before{left:-12px;border-right:10px solid #000}.data-tip-top:after,.data-tip-top:before{left:45%;bottom:-10px;border-left:5px solid transparent;border-right:5px solid transparent;border-top:10px solid #000}.data-tip-top:before{bottom:-11px}.edu-pop-table{border-bottom:none;cursor:default}.edu-pop-table tr td,.edu-pop-table tr th,.edu-pop-table.interval-td,.subshaicontent-part,.versionFileList li{border-bottom:1px solid #eee}.edu-pop-table tr th{color:#333}.edu-pop-table.head-color thead tr,.edu-pop-table.interval-td tbody tr:nth-child(2n),.edu-pop-table.interval-td thead tr{background:#fafbfb}.dataBank_Item:last-child,.edu-pop-table.head-color,.edu-pop-table.head-color tr:last-child td,.edu-pop-table.interval-td tbody tr td,.lesson-saved-list-item:last-child,.private-part:last-child .part-line,.teacherTeamItem:last-child{border:none}.edu-pop-table-all{border:1px solid #eee;border-collapse:collapse}.edu-pop-table-all tr th{color:#333;border:1px solid #eee}.edu-pop-table-all tr td{border:1px solid #eee;padding:5px}img.edu-nodata-img{margin:50px auto 20px;display:block;width:128px}.pages_user_show a,.white-btn,a.task-btn{display:inline-block}.edu-nodata-p{font-size:20px;text-align:center;color:#999;border-bottom:none!important;box-sizing:border-box}.user_default_btn,.white-btn,a.task-btn{cursor:pointer;font-size:14px;text-align:center}.notice{height:25px;margin-left:150px}.edu-position-hide{position:absolute;top:15px;left:-20px;box-shadow:0 2px 8px rgba(146,153,169,.5);background:#fff;padding:5px 0;z-index:999999}.edu-position-hide li a{display:inline-block;height:30px;width:100px;line-height:30px;text-align:center}.edu-position-hide li a:hover{background:#f1f1f1;color:#05101a}.edu-position-hidebox i{color:#bcbcbc}.action,.edu-position-hidebox a,.ridingNav li.active a{color:#05101a}.white-btn{padding:0 8px;border:1px solid #ccc;color:#666;letter-spacing:1px;height:26px;line-height:26px;border-radius:3px}a.white-btn.orange-btn{border:1px solid #ff7500;color:#ff7500!important}a.white-btn.orange-btn:hover{border:1px solid #f06200;color:#f06200!important}.defalutGreyBorder{display:block;padding:0 10px;border:1px solid #ccc;height:30px;line-height:30px;border-radius:4px}a.task-btn{border:none;padding:0 12px;color:#fff;background:#cdcdcd!important;letter-spacing:1px;height:30px;line-height:30px;border-radius:2px;font-weight:400}.user_default_btn{display:block;width:120px;height:40px;line-height:40px!important;border-radius:4px;box-sizing:border-box}.defalutCancelbtn,.defalutSubmitbtn,.delectshixuncdbtn{text-align:center;width:130px;height:40px;line-height:40px;font-family:MicrosoftYaHei;font-weight:400;display:block;font-size:16px}.user_orange_btn{color:#fff!important;background-color:#ff6800}.user_orange_btn:hover,a.edu-orangeback-btn:hover{background-color:#f06200}.user_grey_btn{color:#fff!important;background-color:#ccc;cursor:default}.user_private_btn{color:#646464!important;background-color:#fff;border:1px solid #989898}.user_private_btn:hover{color:#b2b2b2!important;border:1px solid #b2b2b2}.btn_auto{border-radius:5px;background:#fff;padding:0 18px}.edu-default-btn{display:block;border-radius:4px}a.edu-greenback-btn{padding:0 10px;background:#29bd8b;color:#fff!important;border:1px solid #29bd8b}a.edu-greenback-btn:hover{background-color:#28ac7f}.defalutSubmitbtn:hover,a.edu-blueback-btn:hover{background-color:#459be6}a.edu-blueback-btn{padding:0 10px;background:#4cacff;color:#fff!important;border:1px solid #4cacff}.defalutCancelbtn,a.edu-blueline-btn{border:1px solid #4cacff;color:#4cacff!important}a.edu-blueline-btn{padding:0 10px}a.edu-orangeback-btn,a.edu-orangeline-btn{border:1px solid #ff7500}a.edu-blueline-btn:hover{border:1px solid #459be6;color:#459be6!important}a.edu-orangeback-btn{background-color:#ff7500;color:#fff!important}.lesson-saved-list-item .title-line .delete:hover,.lesson-saved-list-item .title-line .edit:hover,a.edu-orangeline-btn{color:#ff7500!important}a.edu-orangeline-btn:hover{color:#f06200!important;border:1px solid #f06200}a.edu-greyline-btn{padding:0 10px;background:#fff;color:#666!important;border:1px solid #eaeaea;line-height:33px;height:33px}.defalutCancelbtn:hover,a.edu-greyline-btn:hover{border:1px solid #b2b2b2;color:#b2b2b2!important}.defalutCancelbtn{background-color:#fafafa;border-radius:4px;background:rgba(77,124,254,0)}.defalutSubmitbtn{border:1px solid #4cacff;color:#fff!important;border-radius:4px;background:#4cacff}.delectshixuncdbtn{border:1px solid #cdcdcd;background-color:#fafafa;color:#999!important;border-radius:4px;background:rgba(77,124,254,0)}#ajax-indicator,.task-popup-title{font-weight:700;text-align:center}.defalutSubmitbtn:hover{border:1px solid #459be6}.edu-filter-cir-grey.active,.edu-filter-cir-grey:hover{background:#4cacff;color:#fff!important}a.task-btn-orange{background:#4cacff!important;color:#fff!important}a:hover.task-btn-orange{background:#459be6}.user_blue_btn{border:1px solid #4cacff;color:#4cacff!important}#sourceTag li.active,a.user_bluebg_btn{background-color:#4cacff;color:#fff}.cdefault{cursor:default!important}.markdown-body ul>li,.new_li .markdown-body ul>li{list-style-type:disc!important;margin-bottom:0!important}.markdown-body ol>li,.new_li .markdown-body ol>li{list-style-type:decimal!important}.task-popup{width:30%;background:#fff;border:1px solid #e8e8e8;border-radius:10px}.task-popup-text-center{text-align:center;color:#333}.task-popup-title{border-bottom:1px solid #eee;padding:0 15px;box-sizing:border-box;line-height:70px;height:70px;border-radius:10px 10px 0 0;font-size:16px}.task-popup-content{padding:15px}.task-popup-submit{margin:0 auto 15px;width:160px}.task-popup-sure{margin:0 auto 15px;width:54px}.task-popup-OK{margin:15px auto;text-align:center}#closeIcon{position:absolute;color:#fefefe}.task_popup_con{padding:20px}.alert{padding:10px;border:1px solid transparent;text-align:center}.alert-orange{background-color:#fff9e9;border-color:#f6d0b1;color:#ee4a20}.pages_user_show a:hover,.pages_user_show li.active a{background-color:#4cacff;color:#fff;border:1px solid #4cacff}.pages_user_show a{border-radius:2px;border:1px solid #d1d1d1;background-color:#fff;color:#888;float:left;text-align:center;padding:2px 10px;line-height:1.9;margin:0 5px}.pages_user_show li{float:left}.pages_user_show ul li{list-style-type:none!important}.pages_user_show ul li a{color:#888}.leftPanel{width:22%;float:left}.leftPanel li.nav{padding:10px 0;box-sizing:border-box}.leftPanel li.nav a{padding-left:40px;display:block;width:100%;box-sizing:border-box;border-left:2px solid #fff;height:24px;line-height:24px}.leftPanel li.nav.active a{border-left:2px solid #4cacff}.rightPanel{width:78%;float:right}.ringauto{width:20px;height:20px;line-height:20px;text-align:center;border-radius:50%;background-color:#f4faff;margin-right:5px}#ajax-indicator{position:absolute;background-color:#eee;border:1px solid #bbb;top:35%;left:40%;width:20%;padding:.6em;z-index:100000;opacity:.5}#ajax-indicator span{color:#333;background-position:0 40%;background-repeat:no-repeat;background-image:url(/images/loading.gif);padding-left:26px;vertical-align:bottom;z-index:100000}.edu-filter-cir-grey{color:#666!important;width:auto;padding:0 15px;font-size:14px!important;text-align:center;background:#f3f3f3;border-radius:10px;display:block;height:25px;line-height:25px}.banner .num li,.btn-cir,.edu-filter-btn,em.vertical-line{display:inline-block}.edu-filter-cir-grey.active{font-size:14px!important}.with10{width:10%;box-sizing:border-box}.with13{width:13%;box-sizing:border-box}.with14{width:14%;box-sizing:border-box}.with15{width:15%;box-sizing:border-box}.with20{width:20%;box-sizing:border-box}.with22{width:22%;box-sizing:border-box}.with23{width:23%;box-sizing:border-box}.with25{width:25%;box-sizing:border-box}.with30{width:30%;box-sizing:border-box}.with35{width:35%;box-sizing:border-box}.with40{width:40%;box-sizing:border-box}.with45{width:45%;box-sizing:border-box}.with49{width:49%;box-sizing:border-box}.with50{width:50%;box-sizing:border-box}.with52{width:52%;box-sizing:border-box}.with48{width:48%;box-sizing:border-box}.with60{width:60%;box-sizing:border-box}.with65{width:65%;box-sizing:border-box}.with70{width:70%;box-sizing:border-box}.with75{width:75%;box-sizing:border-box}.with78{width:78%;box-sizing:border-box}.with80{width:80%;box-sizing:border-box}.transform-90{transform:rotate(-90deg);-ms-transform:rotate(-90deg);-moz-transform:rotate(-90deg);-webkit-transform:rotate(-90deg);-o-transform:rotate(-90deg)}.btn-cir{padding:0 5px;border-radius:25px;line-height:20px;font-size:12px}.edu-filter-btn,.privateTag{height:18px;line-height:18px;font-size:12px}.btn-cir-red{background:red;color:#fff;font-weight:400;cursor:default}.btn-cir-red:hover{background:red;color:#fff!important}.edu-filter-btn{cursor:default;padding:0 9px;color:#666;background:#fff;text-align:center;border-radius:10px}.edu-filter-btn-red{border:1px solid #dd1717;color:#dd1717}.edu-filter-btn-green{border:1px solid #29bd8b;color:#29bd8b!important}.edu-activity-blue,.edu-activity-green,.edu-activity-orange{color:#fff!important;cursor:pointer}.edu-activity-orange{background-color:#ff6800;border:1px solid #ff6800}.edu-activity-blue{background-color:#4cacff;border:1px solid #4cacff}.edu-activity-green{background-color:#29bd8b;border:1px solid #29bd8b}.color656565{color:#656565}.colorC8161D{color:#c8161d}.bor-reds{border:1px solid red!important;border-radius:4px}.footer_con-p{color:#898989!important}.markdown-body{word-break:break-all;width:100%}.privateTag{display:block;padding:0 6px;border-radius:12px;border:1px solid #2fc25b;margin-left:10px;color:#2fc25b}.inner-footer_con,.search-all{margin:0 auto}.privateTag.red{color:#ff6832;border:1px solid #ff6832}.head-nav{text-align:center;height:58px;box-sizing:border-box;text-overflow:ellipsis;flex:1}.head-nav ul#header-nav{overflow:hidden;white-space:nowrap;overflow-x:auto;display:flex}.head-nav ul#header-nav li{height:58px;line-height:58px;cursor:pointer;font-size:16px;padding-right:40px}.head-nav ul#header-nav li a:hover,.head-nav ul#header-nav li.active a{color:#5091ff}.head-right{box-sizing:border-box;height:60px;display:flex;align-items:center}.newslight,.rateTrangle{display:block;position:absolute}.educontent .icon{padding-top:0!important;padding-bottom:0!important}em.vertical-line{width:2px;background:#999;height:10px}.newslight{width:5px;height:5px;border-radius:50%;left:25px;top:3px;background:#ff6800}.rateTrangle{border-width:8px;top:-8px;left:35px;border-style:dashed solid dashed dashed;border-color:transparent transparent #fff;font-size:0;line-height:0;z-index:2}#commentsStar{height:30px;padding-top:7px;box-sizing:border-box}.search-all{width:216px;position:relative;background-color:#24292d}.search-all .search-clear{font-size:14px;display:inline-block;width:50px;text-align:center;color:#656565;line-height:60px;cursor:pointer}.footercon{border-bottom:1px solid #47494d}.inner-footernav{width:560px;margin:0 auto}.inner-footernav li{float:left;height:50px;width:80px;text-align:center}.inner-footernav li a{width:100%;text-align:center;line-height:50px;color:#888}.intermediatecenter{width:100%;display:flex;flex-direction:column;align-items:center;justify-content:center}.footer_con-p{margin-top:10px}.banner{width:100%;height:345px;position:relative;border-radius:10px}.banner .img,.banner .num,.moreitem{position:absolute}.banner .img{left:0;top:0}.banner .img li{float:left;width:1200px;height:345px}.banner .img li a{display:block;width:100%;height:100%}.banner .img li img{width:100%;height:345px}.banner .num{width:100%;bottom:30px;left:0;text-align:center;font-size:0px}.banner .num li{width:7px;height:7px;background:rgba(225,225,225,.3);border-radius:50%;margin:0 5px;cursor:pointer}.banner .num li.on{width:12px;border-radius:8px}.moreitem{right:5px;top:35px;height:15px;color:#656565}.square-list{width:100%;box-sizing:border-box;margin-top:20px;flex-wrap:wrap;display:flex}.square-Item{position:relative;width:280px;margin-right:26px;margin-bottom:26px;float:left;border-radius:6px;background-color:#fff;box-shadow:0 0 12px rgba(0,0,0,.1)}.square-Item:hover{box-shadow:0 0 12px rgba(0,0,0,.3)}.smallSquare:nth-child(3n+0),.square-Item:nth-child(4n+0){margin-right:0}.square-Item .square-img{display:block;width:100%}.square-Item .square-img img{width:100%;border-radius:6px 6px 0 0;vertical-align:bottom;height:210px}.square-main{padding:15px 20px;box-sizing:border-box}.course-bottom{height:48px;padding:10px 0;box-sizing:border-box}.squareIconSpan{line-height:25px}.square-Item.smallSquare{width:32%;margin-right:1.33%;margin-bottom:10px;min-height:210px;border:none}.tag-green .tag-name,.tag-orange .tag-name{display:block;width:auto;padding:0 8px;color:#fff;float:left}.square-Item.smallSquare:hover{bottom:0;box-shadow:0 0 12px rgba(0,0,0,.1)}.partimg{height:180px;width:100%;border-radius:6px 6px 0 0}.tag-green{position:absolute;left:10px;bottom:90px}.tag-green .tag-name{background:rgba(000,000,000,.56);border:1px solid rgba(255,255,255,.56);border-radius:3px;font-size:12px;background-size:100% 100%}.tag-orange{position:absolute;right:0;top:12px}.tag-orange .tag-name{background-color:#ff6800;background-size:100% 100%;height:28px;line-height:28px;border-top-left-radius:4px;border-bottom-left-radius:4px}.user_navlist{position:absolute;left:0;width:160px;top:0;height:100%}.user_navlist_black{position:relative;width:100%;height:100%;border-radius:8px 0 0 8px;background:rgba(0,0,0,.8)}#log_reg_content,.user_navlist_white{background:#fff;position:absolute;box-sizing:border-box}.user_navlist_white{left:160px;width:622px;min-height:345px;top:0;display:none;padding:0 30px;box-shadow:0 0 10px rgba(76,76,76,.2);z-index:99}.user_navlist_white a{color:#989898;margin-right:15px;font-size:14px;display:block;float:left;height:30px;line-height:30px}.headIcon{height:100%;box-sizing:border-box;margin:0!important}.black_nav_list{padding:4px 0;box-sizing:border-box;height:100%}.black_nav_list li{line-height:40px;height:40px;color:#fff;cursor:pointer}.black_nav_span{display:block;margin:0 20px;border-bottom:1px solid #4b4b4b;padding-left:8px;color:#fafafa}.announcement:last-child,.collaborators-item:last-child,.navlistpanel-line:last-child,.private-item:last-child,.resources:last-child,.ridinglist:last-child .ridinglist-sub,.subshaicontent-part:last-child,.task-item:last-child,.versionFileList li:last-child,.welcome_shixun_index:last-child .black_nav_span{border-bottom:none}.navlistpanel-line{border-bottom:1px solid #ebebeb}.little-title{width:100%;height:20px;line-height:20px;color:#05101a;font-size:15px;margin-bottom:8px}.ranking{text-align:center;margin-top:40px}.grade,.inline{width:auto;display:inline-block}.grade li{float:left;margin:0 10px;width:60px}.ranking a img{width:60px;height:60px;border-radius:50%;box-shadow:0 0 12px rgba(0,0,0,.2)}.mentor-ranking{background-color:#efefef;background-size:100% 100%}.gain-code,.log-botton{height:45px;line-height:45px;background:#cbcbcb;border-radius:4px;display:block;cursor:pointer;text-align:center;color:#fff!important}.huangguan{position:absolute;top:-30px;left:13px}#log_reg_content{border-radius:5px;width:100%;text-align:center;top:165px;left:0;padding:40px 30px}.log_nav{border-bottom:1px solid #eaeaea}.log_nav li{float:left;text-align:center;font-size:16px;padding-bottom:15px;cursor:pointer}.log_nav li.active{border-bottom:2px solid #459be5}.log-botton{width:100%;letter-spacing:2px}.gain-code{width:48%;float:right}.user-main-half{width:100%;height:465px;background:#fff;margin-bottom:20px;position:relative}.user-headCon,.user-headImg{position:absolute;width:100%;left:0;top:0}.user-headImg{height:160px;background-image:url("/images/educoder/userhead.jpg")}.user-headCon{min-height:465px}.headtab{width:188px;height:60px;text-align:center}.headtab a,.headtab span{display:block;width:100%;text-align:center}.headtab span{color:#989898;font-size:14px}.headtab a{color:#fff;font-size:24px}.headphoto{text-align:center;background:#fff;width:115px;height:115px;padding:3px;border-radius:50%;position:relative;float:left;margin-top:19px;box-sizing:border-box}.headphoto img,.headphoto-black{width:109px;height:109px;border-radius:50%}.headphoto-black{display:none;cursor:pointer;position:absolute;top:3px;left:3px;text-align:center;line-height:112px;background-color:rgba(0,0,0,.3);color:#fff}.myName,.mypost,.mysign-span,.publicword,.smalltrangle,.v-h-line{display:block}.myName,.newFormbox .attachment .remove-upload,.task_tag_span a{line-height:28px}.myName{width:auto;color:#05101a;font-size:24px;height:28px;margin-top:5px}#sourceTag li,.mypost,.subName{line-height:20px}.mypost{color:#686868;font-size:14px;width:auto;height:20px}.mysign-input,.mysign-span{margin:0 auto;color:#05101a;width:280px;font-size:14px}.mysign-span{cursor:pointer;text-overflow:ellipsis}.mysign-input{height:28px;border:none;outline:0;text-align:center}.subshaicontent,.user-bar,.user-bar p,.userdata{border-radius:4px}.v-h-line{width:1px;height:40px;background-color:#999;margin-top:12px}.user-bar{position:relative;width:100%;height:8px;background-color:#cdcdcd}.closeSquare,.publicpart,.publicword,.smalltrangle,.subshaicontent,.user-bar p{position:absolute}.user-bar p{left:0;top:0;height:100%;background-color:#4cacff}.publicpart{left:1px;top:1px;width:0;height:0;border-left:80px solid #4cacff;border-bottom:80px solid transparent;z-index:1}.publicpart.orangeBlack{border-left:80px solid #ff6800}.smalltrangle{left:1px;top:1px;border-left:25px solid #fff;border-bottom:25px solid transparent;z-index:2}.publicword{transform:rotate(-45deg);text-align:center;color:#fff;font-size:14px;width:50px;left:0;z-index:3;top:15px}.closeSquare{width:100%;left:0;top:0;text-align:center;background-color:rgba(0,0,0,.5);height:100%;z-index:5;display:none;cursor:default}.substance{padding:40px 40px 0;box-sizing:border-box;text-align:center;border-bottom:1px solid #eaeaea;min-height:241px}.subName{height:40px;text-align:center;color:#1a0b00;display:-webkit-box}.secondNav li{color:#676767;margin:0 20px;float:left}.dataBank_Item{margin-bottom:3px;width:100%;border-bottom:1px solid #eee;padding:17px 37px 17px 20px;box-sizing:border-box;background:#fff;display:flex;cursor:pointer}.dataBank_Item:hover{box-shadow:0 0 15px rgba(76,76,76,.2)}.dataItemLeft{margin-right:20px;width:20px}.dataTitle{color:#05101a;display:block;float:left;max-width:400px;text-overflow:ellipsis}.itembottom span.bottomspan{display:block;width:200px;text-align:left}.search_course_list{height:150px;overflow-y:auto}.userdata{width:622px;margin:0 auto 80px;background:#fff;padding:40px;box-sizing:border-box}.shaiTitle{display:block;padding-right:20px}.shaiContent li.shaiItem.active,.shaiContent li.shaiItem:hover{background-color:#4cacff!important;color:#fff!important}.shaiContent li.shaiItem{padding:3px 15px;float:left;border-radius:4px;color:#4c4c4c;cursor:pointer;margin-right:15px;display:block}.shaiAllItem{max-width:1138px}.subshaicontent{display:none;box-sizing:border-box;width:100%;top:33px;left:0;background-color:#fff;box-shadow:0 1px 4px rgba(76,76,76,.2);padding:0 20px;z-index:99999;max-height:800px;overflow-y:auto}.subshaicontent a{float:left;margin-right:20px;color:#999;cursor:pointer}.search-new{width:248px;height:32px;position:relative}.search-span{display:block;position:absolute;width:100%;height:100%;left:0;top:0;background-color:#f4f4f4;border:1px solid #eaeaea;border-radius:4px;z-index:1}.search-new-input{height:32px;padding-left:5px;width:225px;border:none;box-sizing:border-box;background:0 0;outline:0;position:absolute;left:0;top:1px;z-index:2}.search-new a,.search-new img{cursor:pointer;position:absolute;right:2px;top:2px;z-index:2}.search-new a{top:0}.controlblue{width:0;height:15px;background-color:#4cacff;border-radius:7px;position:absolute;left:0;top:0;z-index:1}.controlring{width:13px;height:13px;border-radius:50%;background-color:#fff;position:absolute;left:1px;top:1px;z-index:2}@font-face{font-family:panmen-webfont;src:url('../fonts/panmen-webfont.ttf')}.shixunDetail_top{width:100%;background-image:url("/images/educoder/shixun-detail.jpg");height:240px;justify-content:center;align-items:center;display:-webkit-flex;background-size:cover;background-position:center;background-repeat:no-repeat}.task-item{margin-top:30px;padding-bottom:30px;border-bottom:1px solid #eee}.recomments{margin-bottom:20px}.recomments:first-child{margin-top:0}.recomments:last-child{margin-bottom:0;border:none;padding-bottom:0}.url-input{border:none;padding:0;font-size:12px;color:#999;outline:0}.TPMtaskName{max-width:500px}.recomment-name{max-width:222px;display:block}.task-colspan{min-width:25%;text-align:left;display:block;float:left;color:#999}.challenge_nav{padding:20px 20px 0;border-bottom:1px solid #eee}.challenge_nav li{width:auto;float:left;margin-right:20px;position:relative}.challenge_nav li.active:after{position:absolute;content:'';width:76%;background-color:#4cacff;height:3px;border-radius:2px;left:25%;bottom:0}.challenge_nav li a{display:block;width:100%;padding-bottom:20px}.add_choose_type{width:60px;height:20px;line-height:19px;border-radius:2px;background-color:#eaeaea;color:#999!important;display:block;float:left;text-align:center;margin-top:4px}.task_tag_span{float:left;padding:0 10px;background-color:#eee;color:#999;border-radius:2px;margin-right:10px;margin-bottom:8px}.left,.task_tag_span span{float:left}.task_tag_span a{font-size:18px;margin-left:5px;float:left;height:28px;cursor:pointer}.show_content_grey{padding:10px 15px;background-color:#f4f4f4;color:#05101a;text-align:justify;word-break:break-all;border-radius:4px;width:100%;box-sizing:border-box}.empty{background:#494a4c;display:inline;margin:0 2px;padding:0 3px}.option-item{border:1px solid #e2e2e2;display:block;width:38px;height:38px;text-align:center;line-height:38px;border-radius:4px;cursor:pointer}.check-option-bg{background:#ff7500;color:#fff!important;border:1px solid #ff7500}.position-delete{position:absolute;right:-22px;top:12px;cursor:pointer}.rankings li{line-height:40px;height:40px}.rankingindex{width:24px;text-align:center}.collaborators-item{border-bottom:1px solid #eee;cursor:default;padding-top:30px;padding-left:20px}.upload_select_box{width:100%;box-sizing:border-box;height:240px;overflow-y:auto;padding:10px;background:#f4faff;color:#333}.pullreques_name{width:120px;text-align:left;margin-right:10px}.addTeamMember,.click_add,.invite-tip,.loadMore,.new-info,.nodata,.pagemancenter,.pathInfo li,.tabeltext-alignleft{text-align:center}.pullreques_pull_txt{display:block;margin-left:10px;max-width:640px;overflow:hidden;text-overflow:ellipsis}.old{background:#ffecec}.new:hover,.old:hover{background:#fffaf1}.new{background:#eaffea}.courseHead,.subhead{background-size:cover;background-position:center;background-repeat:no-repeat}.pathNavLine{position:absolute;bottom:-8px;width:100%}.path-nav li{float:left;padding:0 30px;height:42px}.path-nav li a{color:#fff;font-size:16px;display:block;height:40px}.path-nav li.active a{border-bottom:3px solid #4cacff;color:#4cacff}.subhead{width:100%;margin-bottom:40px;background-image:url("/images/educoder/path-detail.jpg");height:240px;justify-content:center;align-items:center;display:-webkit-flex}.subhead_content{width:1200px;margin:0 auto}.pathInfo li{float:left;margin-right:30px}.produce-content{padding:40px 20px;background-color:#fff;box-sizing:border-box}.lesson-saved-list-item{border-bottom:1px solid #ebebeb;padding:37px 0}.title-line{padding:0 20px}.paragraph{height:50px;padding:10px 20px 10px 47px;box-sizing:border-box}.paragraph:hover{background-color:#f0f8ff}.click_add{height:90px;line-height:90px;background-color:#fff;border-top:1px solid #ebebeb;cursor:pointer}.mustlearn{padding:40px 25px}.teacherTeam{padding:40px 25px 0}.teacherTeamItem{border-bottom:1px solid #eaeaea;padding:40px 0}.teacherTeamItem:first-child{padding-top:0!important}.addTeamMember{height:70px;line-height:70px}.adding-stage-item{padding:0 20px 20px 50px;position:relative}.colseThispart{position:absolute;right:-6px;top:-6px;z-index:2;line-height:15px}.progressRing{display:block;width:16px;height:16px;float:left;position:relative;z-index:1}.progressRing-over{color:#459be6;position:absolute;top:-10px}.progressRing-part{color:#b3dcff;position:absolute;top:-10px}.myProgressNav{width:100%;position:relative;height:10px;border-radius:5px;background-color:#eaeaea}.myProgressGreen{position:absolute;top:0;left:0;border-radius:5px;height:100%;background-color:#29bd8b}li.li-width63{width:63%;text-align:left}.courseHead{width:100%;margin-bottom:40px;background-image:url("/images/educoder/courtailsbdpicture.jpg");height:240px;justify-content:center;align-items:center;display:-webkit-flex}.invite-tip{position:absolute;top:-5px;right:140px;color:#fff;box-sizing:border-box;width:170px;border-radius:2px;background-color:rgba(5,16,26,.6);z-index:5000}.inviteTipbtn a{font-size:14px;width:100%;height:30px;line-height:30px;display:block;color:#747a7f;background-color:rgba(5,16,26,.4)}.top-black-trangle{display:block;border-width:8px;position:absolute;top:-16px;right:4px;border-style:dashed solid dashed dashed;border-color:transparent transparent rgba(5,16,26,.6);font-size:0;line-height:0}.loadMore{width:100%;background-color:#fff;color:#4cacff!important;display:block;letter-spacing:1px;box-sizing:border-box;height:110px;line-height:110px}.new-info,.new-point{display:block;background-color:#ff6800}.activity-left-name{display:block;max-width:126px;float:left}.panel-inner-fourm{padding:15px 20px;border-bottom:1px solid #eee}.private-item,.ridinglist .ridinglist-sub{border-bottom:1px solid #f5f5f5;cursor:pointer}.panel-inner-fourm:hover{background:#eff9fd}.ListTableLine>p,.OtherSide-info .sms,.private-item:hover,.private-part.active,.private-part:hover,.ridinglist:hover{background-color:#f5f5f5}.resources{width:100%!important;padding:15px;float:left;box-sizing:border-box;border-top:1px solid #eee}#sourceTag li{font-size:12px;color:#4e7a9b;background-color:#e5f3ff;padding:0 4px;height:20px;margin-left:5px;display:inline-block;cursor:pointer}#sourceTag li a{color:#4e7a9b!important}#sourceTag li.active a{background-color:#4cacff;color:#fff!important}.new-info{height:18px;min-width:18px;line-height:18px;padding:0 2px;box-sizing:border-box;color:#fff;border-radius:30px;position:absolute;right:40px;top:13px;font-size:12px}.ridingNav li{float:left;margin:0 20px;color:#999;font-size:16px;height:60px;line-height:60px;position:relative}.ridingNav li a{display:block;width:100%;height:100%;color:#999}.ridingNav li.active:after{content:'';position:absolute;bottom:0;width:100%;height:2px;border-radius:1px;background-color:#05101a}.new-point{width:4px;height:4px;border-radius:50%}.longchar,.writeLetter_Info,.writeLetter_text{background-color:#f6f6f6}.ridinglist .ridinglist-sub{padding:25px 0}.OtherSide-info .trangle,.ThisSide .trangle{top:10px;width:0;height:0;border-top:6px solid transparent;border-bottom:6px solid transparent}.private-item{padding:30px 30px 30px 25px}.writeLetter_Info{position:relative;width:100%;height:260px;cursor:default;border-radius:3px}.writeLetter_text{width:100%;border:1px solid #eaeaea;outline:0;height:100%;padding:5px 5px 30px;box-sizing:border-box;resize:none}.longchar{position:absolute;bottom:1px;color:#999;right:10px}.recently_person{position:absolute;width:100%;top:35px;max-height:300px;overflow-y:auto;border-radius:4px;box-shadow:0 1px 6px rgba(76,76,76,.2);left:0;z-index:1;background-color:#fff;cursor:pointer;display:none}.recently_item{padding:10px 20px}.recently_name{float:left;line-height:48px;display:block}.ThisSide-info .sms p,.letter-time{line-height:20px}.private-list{min-height:660px;max-height:831px;overflow-y:auto;overflow-x:hidden}.private-list .private-part{padding-left:20px;cursor:pointer}.OtherSide-info .sms,.ThisSide-info .sms{max-width:300px;padding:10px 15px;border-radius:6px;text-align:justify;box-sizing:border-box}.privatePartName{max-width:70px;float:left}.newLetter,.right{float:right}.newLetter{display:block;width:4px;height:4px;background-color:#ff6800;border-radius:50%}.part-line{padding:30px 20px 30px 0;border-bottom:1px solid #f5f5f5}.dialogPanel{padding:0 20px;height:545px;overflow-y:auto}.letter-time{width:auto;padding:0 10px;background-color:#999;color:#fff;border-radius:10px;height:20px}.OtherSide,.ThisSide{margin-top:30px}.OtherSide-info .trangle{position:absolute;left:-5px;border-right:5px solid #f5f5f5}.OtherSide-info .sms{color:#666}.OtherSide-info .sms img,.ThisSide-info .sms img{max-width:80px;cursor:pointer}.sms{min-height:48px}.ThisSide .trangle{position:absolute;right:-5px;border-left:5px solid #4cacff}.ThisSide-info .sms{background-color:#4cacff;color:#fff}.announcement{padding:20px 0;border-bottom:1px solid #eee}.part{width:540px;margin:0 auto 10px;background-color:rgba(25,27,32,.6)}.statistics_position{position:absolute;bottom:22px;width:100%;left:0}ul.count_ul li{width:300px;position:relative;float:left}ul.count_ul li span:first-child{display:block;width:100%;color:#989898;margin-bottom:20px}ul.count_ul li span:last-child{display:block;width:100%;color:#fff;font-size:24px;line-height:20px}ul.count_ul li:not(:last-child):after{position:absolute;content:'';width:1px;height:36px;background-color:#999;right:0;top:16px}.static_shadow{box-shadow:0 0 9px rgba(174,175,177,.2)}.subject_statistics_top{height:240px;width:100%;position:relative;background-image:url('/images/educoder/subject_statistics.jpg');background-size:100% 100%}#course_list{overflow-y:auto;background:#fff}.popup_tip_box{right:-160px;top:55px}.CodeMirror-merge-collapsed-line .CodeMirror-gutter-elt,.homepagePostSetting{display:none}.nodata{background-color:transparent;border-color:transparent;color:#000}#attachments_fields span{font-size:12px;color:#ccc}.ml20mr20Color{color:#676767}.cancellation{position:absolute;top:62px;left:177px;color:#fff!important}.newshixun_tab_div{max-height:90px;overflow-y:auto}.newcolor-orange{color:#ff6800}.color4CACFF{color:#4cacff!important;font-size:16px}.color979797{font-size:14px;color:#979797!important;padding-left:2%}.marginTop{margin-right:33%;margin-top:20px}.shixuns_count{color:#05101a;font-size:14px}#shixun_search_form_div{margin-top:20px}.editormd-html-preview{width:100%!important;color:#323232!important}.mt4{margin-top:4px}.newFooter,.newMain{max-width:unset}.educontentTop{width:1178px!important}.careershover{margin-right:30px!important}.careershover ul li{height:35px!important;line-height:35px!important}.edu-menu-listnew{width:165px!important;top:60px;left:-42px}.edu-menu-listnew li a{overflow:hidden;text-overflow:ellipsis;color:#000!important}.ListTableLine>p{margin-bottom:0;padding:8px 30px 0;line-height:40px;height:56px;box-sizing:border-box}.ListTableLine>p span{float:left;color:#666;box-sizing:border-box}.ListTableLine li{min-height:48px;padding:10px 0;box-sizing:border-box;margin:0 30px;border-bottom:1px solid #eaeaea}.ListTableLine li>span{float:left;box-sizing:border-box}.ListTableLine .column-1{width:100px;text-align:left;padding-left:5px;box-sizing:border-box}.ListTableLine .column-2{width:180px;text-align:center;padding-left:5px;box-sizing:border-box}.ListTableLine .column-3,.ListTableLine .column-4{text-align:left;padding-left:5px;box-sizing:border-box}.ListTableLine .column-3{width:330px}.ListTableLine .column-4{width:400px}#traningNav{padding:30px 30px 0 0}#traningNav>li{float:left;padding:0 30px 30px;font-size:16px}#traningNav li>i,#traningNav>li>a{color:#666!important;position:relative}#traningNav>li.active>a:after{content:'';position:absolute;width:64px;left:50%;margin-left:-32px;height:2px;background-color:#05101a;bottom:-35px}.gaugeOutfit{position:relative;height:70px;width:120px;background:linear-gradient(30deg,transparent 49.5%,#eee 50%,#eee 50%,transparent 50.5%)}.gaugeOutfit span:first-child{position:absolute;left:8px;top:46px}.gaugeOutfit span:last-child{position:absolute;right:8px;top:14px}.sustainLine td:not(:first-child):hover{background-color:rgba(41,189,139,.1);cursor:pointer}.packinput .ant-input{height:50px;width:749px;border-color:#e1edf8!important}.packinput{width:749px}.packinput .ant-input-group-addon .ant-btn{width:140px!important;font-size:18px;height:50px;background:#4cacff}.setissues{width:280px;height:50px;background:#4cacff;border-radius:4px;margin-left:15px}.pagetype li{color:#8f8f8f!important}.mbf10{margin-bottom:-10px}.PackageIndexNEIBanner{width:1200px;height:110px;background:#fff;box-shadow:0 2px 6px 0 rgba(125,125,125,.26);border-radius:8px}.padding110{padding:39px 110px 0;box-sizing:border-box}.borderccc{border:1px solid #ccc}.input-100-40s{width:100%;padding:5px;box-sizing:border-box}.fafafas,.fafas .ant-input{background-color:#fafafa!important;height:40px}.ant-input,.ant-input .ant-input-suffix,.fafafas:focus,.fafas .ant-input:focus{background-color:#fff!important}.fafas .ant-input-group-addon .ant-btn{width:140px!important;font-size:14px;height:40px;background:#4cacff}.newFormbox .upload_filename{line-height:32px}.newFormbox .attachment span{line-height:23px}.newFormbox .attachment .icon-fujian{font-size:14px!important;line-height:14px;margin-top:9px}.newFormbox{height:20px}.defalutCancelbtns{display:block;border:1px solid #4cacff!important;background-color:#fff;color:#4cacff!important;width:130px;height:40px;text-align:center;line-height:40px;border-radius:4px}.defalutSubmitbtns{background-color:#4cacff;height:40px}.defalutSubmitbtnmodels{width:127px;height:30px;background-color:#4cacff}.padding200{padding:115px 200px 215px}.fontcircle{font-size:80px;display:inherit}.sumbtongs{font-size:24px;display:inherit;text-align:center}.terraces{font-size:16px;display:inherit;text-align:center;color:#999}.padding251{padding:0 245px}.ml17{margin-left:17px}.project-package-items{display:-webkit-flex;display:flex;flex-direction:row;margin:0!important;padding:20px;background:#fff;box-shadow:none!important}.publicpart.orangeGreen{border-left:80px solid #29bd8b}.publicwords{left:3px;top:18px}.project-packages-list .project-package-items .item-image{width:100px!important}.height185{height:185px}.ContacttheTA,.ContacttheTAs{width:80px;height:26px;font-size:14px;text-align:center}.ContacttheTA{line-height:26px;display:block;border:1px solid #4cacff!important;background-color:#fff;color:#4cacff!important;border-radius:4px}.ContacttheTAs{line-height:24px;border:1px solid #fff!important;background-color:#4cacff;color:#fff!important;border-radius:4px}.ml28{margin-left:28px}.longboxs{font-size:16px;font-family:MicrosoftYaHei-Bold;font-weight:700;color:#05101a;border-left:4px solid #4cacff;padding-left:10px;margin-bottom:20px}.padding020{padding:0 20px 20px}.mtf3{margin-top:-3px}.task-btn-nebules{background:#fff!important;color:#4cacff!important;border:1px solid #4cacff!important;margin-left:20px;cursor:pointer;display:inline-block;padding:0 12px;letter-spacing:1px;text-align:center;font-size:14px;height:30px;line-height:30px;border-radius:2px}.padding26,.pd26{padding:26px}.packageabsolute{position:absolute;right:-16px;top:-7px}.topsj{position:absolute;top:-6px}.bottomsj{position:absolute;bottom:-6px}.pagenoedits{margin-left:20px;color:#ccc}.ml0{margin-left:0}.tabelcli{overflow:hidden;text-overflow:ellipsis;max-width:850px;display:table-cell}.mtf10{margin-top:-10px}.padding26{box-sizing:border-box}.pd30a0{padding:30px 30px 16px}.detail_for_paragraph p{white-space:pre-wrap}.markdown-body{text-align:justify;word-break:break-all}.RightPaneDrawer .ant-drawer-content{background:#070f1a;overflow:hidden!important}.deletebuttom{border:transparent}.RightPaneDrawer .jupyter_data_list{max-height:340px}.ant-btn-primary{text-shadow:none!important;box-shadow:none!important}.ant-notification{z-index:10001!important}input.ant-input-lg::placeholder{font-size:14px!important}.toprightNum{position:absolute;right:0;top:4px;color:#999}.has-error .ant-input{background-color:#fef1f0!important}.CodeMirror-merge{position:relative;white-space:pre}.CodeMirror-merge,.CodeMirror-merge .CodeMirror{min-height:50px}.CodeMirror-merge-2pane .CodeMirror-merge-pane{width:48%}.CodeMirror-merge-2pane .CodeMirror-merge-gap{width:4%}.CodeMirror-merge-3pane .CodeMirror-merge-pane{width:31%}.CodeMirror-merge-3pane .CodeMirror-merge-gap{width:3.5%}.CodeMirror-merge-pane{display:inline-block;white-space:normal;vertical-align:top}.CodeMirror-merge-pane-rightmost{position:absolute;right:0;z-index:1}.CodeMirror-merge-gap{z-index:2;display:inline-block;height:100%;-moz-box-sizing:border-box;box-sizing:border-box;overflow:hidden;position:relative;background:#515151}.CodeMirror-merge-scrolllock-wrap{position:absolute;bottom:0;left:50%}.CodeMirror-merge-scrolllock{position:relative;left:-50%;cursor:pointer;color:#d8d8d8;line-height:1}.CodeMirror-merge-copybuttons-left,.CodeMirror-merge-copybuttons-right{position:absolute;left:0;top:0;right:0;bottom:0;line-height:1}.CodeMirror-merge-copy{position:absolute;cursor:pointer;color:#ce374b;z-index:3}.CodeMirror-merge-copy-reverse{position:absolute;cursor:pointer;color:#44c}.CodeMirror-merge-copybuttons-left .CodeMirror-merge-copy{left:2px}.CodeMirror-merge-copybuttons-right .CodeMirror-merge-copy{right:2px}.CodeMirror-merge-l-inserted,.CodeMirror-merge-r-inserted{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAACCAYAAACddGYaAAAAGUlEQVQI12MwuCXy3+CWyH8GBgYGJgYkAABZbAQ9ELXurwAAAABJRU5ErkJggg==);background-position:bottom left;background-repeat:repeat-x}.CodeMirror-merge-l-deleted,.CodeMirror-merge-r-deleted{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAACCAYAAACddGYaAAAAGUlEQVQI12M4Kyb2/6yY2H8GBgYGJgYkAABURgPz6Ks7wQAAAABJRU5ErkJggg==);background-position:bottom left;background-repeat:repeat-x}.CodeMirror-merge-r-chunk{background:#9a6868}.CodeMirror-merge-r-connect{fill:#9a6868}.CodeMirror-merge-l-chunk{background:#eef}.CodeMirror-merge-l-chunk-start{border-top:1px solid #88e}.CodeMirror-merge-l-chunk-end{border-bottom:1px solid #88e}.CodeMirror-merge-l-connect{fill:#eef;stroke:#88e;stroke-width:1px}.CodeMirror-merge-l-chunk.CodeMirror-merge-r-chunk{background:#dfd}.CodeMirror-merge-l-chunk-start.CodeMirror-merge-r-chunk-start{border-top:1px solid #4e4}.CodeMirror-merge-l-chunk-end.CodeMirror-merge-r-chunk-end{border-bottom:1px solid #4e4}.CodeMirror-merge-collapsed-widget:before{content:"(...)"}.CodeMirror-merge-collapsed-widget{cursor:pointer;color:#88b;background:#eef;border:1px solid #ddf;font-size:90%;padding:0 3px;border-radius:4px} \ No newline at end of file diff --git a/public/index.html b/public/index.html index 53512e5e..6c674f7c 100755 --- a/public/index.html +++ b/public/index.html @@ -16,9 +16,10 @@ - + - + + <%= htmlWebpackPlugin.tags.headTags %> @@ -27,8 +28,8 @@
- - + + @@ -37,6 +38,15 @@ <%= htmlWebpackPlugin.tags.bodyTags %> + \ No newline at end of file diff --git a/public/js/react-dom.production.min.js b/public/js/react-dom.production.min.js new file mode 100644 index 00000000..e6eecc7f --- /dev/null +++ b/public/js/react-dom.production.min.js @@ -0,0 +1,239 @@ +/** @license React v16.14.0 + * react-dom.production.min.js + * + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ +/* + Modernizr 3.0.0pre (Custom Build) | MIT +*/ +'use strict';(function(I,ea){"object"===typeof exports&&"undefined"!==typeof module?ea(exports,require("react")):"function"===typeof define&&define.amd?define(["exports","react"],ea):(I=I||self,ea(I.ReactDOM={},I.React))})(this,function(I,ea){function k(a){for(var b="https://reactjs.org/docs/error-decoder.html?invariant="+a,c=1;cb}return!1}function L(a, +b,c,d,e,f){this.acceptsBooleans=2===b||3===b||4===b;this.attributeName=d;this.attributeNamespace=e;this.mustUseProperty=c;this.propertyName=a;this.type=b;this.sanitizeURL=f}function xd(a,b,c,d){var e=E.hasOwnProperty(b)?E[b]:null;var f=null!==e?0===e.type:d?!1:!(2=c.length))throw Error(k(93));c=c[0]}b=c}null==b&&(b="");c=b}a._wrapperState={initialValue:va(c)}}function Lf(a,b){var c=va(b.value),d=va(b.defaultValue);null!=c&&(c=""+c,c!==a.value&&(a.value=c),null==b.defaultValue&&a.defaultValue!==c&&(a.defaultValue=c));null!=d&&(a.defaultValue=""+d)}function Mf(a,b){b=a.textContent;b===a._wrapperState.initialValue&&""!== +b&&null!==b&&(a.value=b)}function Nf(a){switch(a){case "svg":return"http://www.w3.org/2000/svg";case "math":return"http://www.w3.org/1998/Math/MathML";default:return"http://www.w3.org/1999/xhtml"}}function Hd(a,b){return null==a||"http://www.w3.org/1999/xhtml"===a?Nf(b):"http://www.w3.org/2000/svg"===a&&"foreignObject"===b?"http://www.w3.org/1999/xhtml":a}function nc(a,b){var c={};c[a.toLowerCase()]=b.toLowerCase();c["Webkit"+a]="webkit"+b;c["Moz"+a]="moz"+b;return c}function oc(a){if(Id[a])return Id[a]; +if(!ib[a])return a;var b=ib[a],c;for(c in b)if(b.hasOwnProperty(c)&&c in Of)return Id[a]=b[c];return a}function Jd(a){var b=Pf.get(a);void 0===b&&(b=new Map,Pf.set(a,b));return b}function Na(a){var b=a,c=a;if(a.alternate)for(;b.return;)b=b.return;else{a=b;do b=a,0!==(b.effectTag&1026)&&(c=b.return),a=b.return;while(a)}return 3===b.tag?c:null}function Qf(a){if(13===a.tag){var b=a.memoizedState;null===b&&(a=a.alternate,null!==a&&(b=a.memoizedState));if(null!==b)return b.dehydrated}return null}function Rf(a){if(Na(a)!== +a)throw Error(k(188));}function vi(a){var b=a.alternate;if(!b){b=Na(a);if(null===b)throw Error(k(188));return b!==a?null:a}for(var c=a,d=b;;){var e=c.return;if(null===e)break;var f=e.alternate;if(null===f){d=e.return;if(null!==d){c=d;continue}break}if(e.child===f.child){for(f=e.child;f;){if(f===c)return Rf(e),a;if(f===d)return Rf(e),b;f=f.sibling}throw Error(k(188));}if(c.return!==d.return)c=e,d=f;else{for(var g=!1,h=e.child;h;){if(h===c){g=!0;c=e;d=f;break}if(h===d){g=!0;d=e;c=f;break}h=h.sibling}if(!g){for(h= +f.child;h;){if(h===c){g=!0;c=f;d=e;break}if(h===d){g=!0;d=f;c=e;break}h=h.sibling}if(!g)throw Error(k(189));}}if(c.alternate!==d)throw Error(k(190));}if(3!==c.tag)throw Error(k(188));return c.stateNode.current===c?a:b}function Sf(a){a=vi(a);if(!a)return null;for(var b=a;;){if(5===b.tag||6===b.tag)return b;if(b.child)b.child.return=b,b=b.child;else{if(b===a)break;for(;!b.sibling;){if(!b.return||b.return===a)return null;b=b.return}b.sibling.return=b.return;b=b.sibling}}return null}function jb(a,b){if(null== +b)throw Error(k(30));if(null==a)return b;if(Array.isArray(a)){if(Array.isArray(b))return a.push.apply(a,b),a;a.push(b);return a}return Array.isArray(b)?[a].concat(b):[a,b]}function Kd(a,b,c){Array.isArray(a)?a.forEach(b,c):a&&b.call(c,a)}function pc(a){null!==a&&(Ab=jb(Ab,a));a=Ab;Ab=null;if(a){Kd(a,wi);if(Ab)throw Error(k(95));if(hc)throw a=pd,hc=!1,pd=null,a;}}function Ld(a){a=a.target||a.srcElement||window;a.correspondingUseElement&&(a=a.correspondingUseElement);return 3===a.nodeType?a.parentNode: +a}function Tf(a){if(!wa)return!1;a="on"+a;var b=a in document;b||(b=document.createElement("div"),b.setAttribute(a,"return;"),b="function"===typeof b[a]);return b}function Uf(a){a.topLevelType=null;a.nativeEvent=null;a.targetInst=null;a.ancestors.length=0;10>qc.length&&qc.push(a)}function Vf(a,b,c,d){if(qc.length){var e=qc.pop();e.topLevelType=a;e.eventSystemFlags=d;e.nativeEvent=b;e.targetInst=c;return e}return{topLevelType:a,eventSystemFlags:d,nativeEvent:b,targetInst:c,ancestors:[]}}function Wf(a){var b= +a.targetInst,c=b;do{if(!c){a.ancestors.push(c);break}var d=c;if(3===d.tag)d=d.stateNode.containerInfo;else{for(;d.return;)d=d.return;d=3!==d.tag?null:d.stateNode.containerInfo}if(!d)break;b=c.tag;5!==b&&6!==b||a.ancestors.push(c);c=Bb(d)}while(c);for(c=0;c=b)return{node:c, +offset:b-a};a=d}a:{for(;c;){if(c.nextSibling){c=c.nextSibling;break a}c=c.parentNode}c=void 0}c=hg(c)}}function jg(a,b){return a&&b?a===b?!0:a&&3===a.nodeType?!1:b&&3===b.nodeType?jg(a,b.parentNode):"contains"in a?a.contains(b):a.compareDocumentPosition?!!(a.compareDocumentPosition(b)&16):!1:!1}function kg(){for(var a=window,b=Wd();b instanceof a.HTMLIFrameElement;){try{var c="string"===typeof b.contentWindow.location.href}catch(d){c=!1}if(c)a=b.contentWindow;else break;b=Wd(a.document)}return b} +function Xd(a){var b=a&&a.nodeName&&a.nodeName.toLowerCase();return b&&("input"===b&&("text"===a.type||"search"===a.type||"tel"===a.type||"url"===a.type||"password"===a.type)||"textarea"===b||"true"===a.contentEditable)}function lg(a,b){switch(a){case "button":case "input":case "select":case "textarea":return!!b.autoFocus}return!1}function Yd(a,b){return"textarea"===a||"option"===a||"noscript"===a||"string"===typeof b.children||"number"===typeof b.children||"object"===typeof b.dangerouslySetInnerHTML&& +null!==b.dangerouslySetInnerHTML&&null!=b.dangerouslySetInnerHTML.__html}function kb(a){for(;null!=a;a=a.nextSibling){var b=a.nodeType;if(1===b||3===b)break}return a}function mg(a){a=a.previousSibling;for(var b=0;a;){if(8===a.nodeType){var c=a.data;if(c===ng||c===Zd||c===$d){if(0===b)return a;b--}else c===og&&b++}a=a.previousSibling}return null}function Bb(a){var b=a[Aa];if(b)return b;for(var c=a.parentNode;c;){if(b=c[Lb]||c[Aa]){c=b.alternate;if(null!==b.child||null!==c&&null!==c.child)for(a=mg(a);null!== +a;){if(c=a[Aa])return c;a=mg(a)}return b}a=c;c=a.parentNode}return null}function Hb(a){a=a[Aa]||a[Lb];return!a||5!==a.tag&&6!==a.tag&&13!==a.tag&&3!==a.tag?null:a}function Pa(a){if(5===a.tag||6===a.tag)return a.stateNode;throw Error(k(33));}function ae(a){return a[vc]||null}function pa(a){do a=a.return;while(a&&5!==a.tag);return a?a:null}function pg(a,b){var c=a.stateNode;if(!c)return null;var d=td(c);if(!d)return null;c=d[b];a:switch(b){case "onClick":case "onClickCapture":case "onDoubleClick":case "onDoubleClickCapture":case "onMouseDown":case "onMouseDownCapture":case "onMouseMove":case "onMouseMoveCapture":case "onMouseUp":case "onMouseUpCapture":case "onMouseEnter":(d= +!d.disabled)||(a=a.type,d=!("button"===a||"input"===a||"select"===a||"textarea"===a));a=!d;break a;default:a=!1}if(a)return null;if(c&&"function"!==typeof c)throw Error(k(231,b,typeof c));return c}function qg(a,b,c){if(b=pg(a,c.dispatchConfig.phasedRegistrationNames[b]))c._dispatchListeners=jb(c._dispatchListeners,b),c._dispatchInstances=jb(c._dispatchInstances,a)}function Ji(a){if(a&&a.dispatchConfig.phasedRegistrationNames){for(var b=a._targetInst,c=[];b;)c.push(b),b=pa(b);for(b=c.length;0this.eventPool.length&&this.eventPool.push(a)}function sg(a){a.eventPool=[];a.getPooled=Li;a.release=Mi}function tg(a,b){switch(a){case "keyup":return-1!==Ni.indexOf(b.keyCode);case "keydown":return 229!==b.keyCode;case "keypress":case "mousedown":case "blur":return!0;default:return!1}}function ug(a){a=a.detail;return"object"===typeof a&&"data"in +a?a.data:null}function Oi(a,b){switch(a){case "compositionend":return ug(b);case "keypress":if(32!==b.which)return null;vg=!0;return wg;case "textInput":return a=b.data,a===wg&&vg?null:a;default:return null}}function Pi(a,b){if(mb)return"compositionend"===a||!de&&tg(a,b)?(a=rg(),wc=ce=Ba=null,mb=!1,a):null;switch(a){case "paste":return null;case "keypress":if(!(b.ctrlKey||b.altKey||b.metaKey)||b.ctrlKey&&b.altKey){if(b.char&&1ob||(a.current=ie[ob],ie[ob]=null,ob--)}function y(a,b,c){ob++; +ie[ob]=a.current;a.current=b}function pb(a,b){var c=a.type.contextTypes;if(!c)return Ca;var d=a.stateNode;if(d&&d.__reactInternalMemoizedUnmaskedChildContext===b)return d.__reactInternalMemoizedMaskedChildContext;var e={},f;for(f in c)e[f]=b[f];d&&(a=a.stateNode,a.__reactInternalMemoizedUnmaskedChildContext=b,a.__reactInternalMemoizedMaskedChildContext=e);return e}function N(a){a=a.childContextTypes;return null!==a&&void 0!==a}function Fg(a,b,c){if(B.current!==Ca)throw Error(k(168));y(B,b);y(G,c)} +function Gg(a,b,c){var d=a.stateNode;a=b.childContextTypes;if("function"!==typeof d.getChildContext)return c;d=d.getChildContext();for(var e in d)if(!(e in a))throw Error(k(108,na(b)||"Unknown",e));return M({},c,{},d)}function Bc(a){a=(a=a.stateNode)&&a.__reactInternalMemoizedMergedChildContext||Ca;Ra=B.current;y(B,a);y(G,G.current);return!0}function Hg(a,b,c){var d=a.stateNode;if(!d)throw Error(k(169));c?(a=Gg(a,b,Ra),d.__reactInternalMemoizedMergedChildContext=a,q(G),q(B),y(B,a)):q(G);y(G,c)}function Cc(){switch(aj()){case Dc:return 99; +case Ig:return 98;case Jg:return 97;case Kg:return 96;case Lg:return 95;default:throw Error(k(332));}}function Mg(a){switch(a){case 99:return Dc;case 98:return Ig;case 97:return Jg;case 96:return Kg;case 95:return Lg;default:throw Error(k(332));}}function Da(a,b){a=Mg(a);return bj(a,b)}function Ng(a,b,c){a=Mg(a);return je(a,b,c)}function Og(a){null===qa?(qa=[a],Ec=je(Dc,Pg)):qa.push(a);return Qg}function ha(){if(null!==Ec){var a=Ec;Ec=null;Rg(a)}Pg()}function Pg(){if(!ke&&null!==qa){ke=!0;var a=0; +try{var b=qa;Da(99,function(){for(;a=b&&(ia=!0),a.firstContext=null)}function W(a,b){if(Gc!==a&&!1!==b&&0!==b){if("number"!==typeof b||1073741823===b)Gc=a,b=1073741823;b={context:a,observedBits:b,next:null};if(null===qb){if(null=== +Hc)throw Error(k(308));qb=b;Hc.dependencies={expirationTime:0,firstContext:b,responders:null}}else qb=qb.next=b}return a._currentValue}function ne(a){a.updateQueue={baseState:a.memoizedState,baseQueue:null,shared:{pending:null},effects:null}}function oe(a,b){a=a.updateQueue;b.updateQueue===a&&(b.updateQueue={baseState:a.baseState,baseQueue:a.baseQueue,shared:a.shared,effects:a.effects})}function Ea(a,b){a={expirationTime:a,suspenseConfig:b,tag:Tg,payload:null,callback:null,next:null};return a.next= +a}function Fa(a,b){a=a.updateQueue;if(null!==a){a=a.shared;var c=a.pending;null===c?b.next=b:(b.next=c.next,c.next=b);a.pending=b}}function Ug(a,b){var c=a.alternate;null!==c&&oe(c,a);a=a.updateQueue;c=a.baseQueue;null===c?(a.baseQueue=b.next=b,b.next=b):(b.next=c.next,c.next=b)}function Qb(a,b,c,d){var e=a.updateQueue;Ga=!1;var f=e.baseQueue,g=e.shared.pending;if(null!==g){if(null!==f){var h=f.next;f.next=g.next;g.next=h}f=g;e.shared.pending=null;h=a.alternate;null!==h&&(h=h.updateQueue,null!==h&& +(h.baseQueue=g))}if(null!==f){h=f.next;var m=e.baseState,n=0,k=null,ba=null,l=null;if(null!==h){var p=h;do{g=p.expirationTime;if(gn&&(n=g)}else{null!==l&&(l=l.next={expirationTime:1073741823,suspenseConfig:p.suspenseConfig,tag:p.tag,payload:p.payload,callback:p.callback,next:null});Vg(g,p.suspenseConfig);a:{var q=a,r=p;g=b;t=c;switch(r.tag){case 1:q= +r.payload;if("function"===typeof q){m=q.call(t,m,g);break a}m=q;break a;case 3:q.effectTag=q.effectTag&-4097|64;case Tg:q=r.payload;g="function"===typeof q?q.call(t,m,g):q;if(null===g||void 0===g)break a;m=M({},m,g);break a;case Jc:Ga=!0}}null!==p.callback&&(a.effectTag|=32,g=e.effects,null===g?e.effects=[p]:g.push(p))}p=p.next;if(null===p||p===h)if(g=e.shared.pending,null===g)break;else p=f.next=g.next,g.next=h,e.baseQueue=f=g,e.shared.pending=null}while(1)}null===l?k=m:l.next=ba;e.baseState=k;e.baseQueue= +l;Kc(n);a.expirationTime=n;a.memoizedState=m}}function Wg(a,b,c){a=b.effects;b.effects=null;if(null!==a)for(b=0;br?(C=l,l=null):C=l.sibling;var O=p(e,l,h[r],m);if(null===O){null===l&&(l=C);break}a&&l&&null===O.alternate&&b(e,l);g=f(O,g,r);null===k?n=O:k.sibling=O;k=O;l=C}if(r===h.length)return c(e,l),n;if(null===l){for(;rC?(O=r,r=null):O=r.sibling;var q=p(e,r,v.value,n);if(null===q){null===r&&(r=O);break}a&&r&&null===q.alternate&&b(e,r);g=f(q,g,C);null===l?m=q:l.sibling=q;l=q;r=O}if(v.done)return c(e,r),m; +if(null===r){for(;!v.done;C++,v=h.next())v=ba(e,v.value,n),null!==v&&(g=f(v,g,C),null===l?m=v:l.sibling=v,l=v);return m}for(r=d(e,r);!v.done;C++,v=h.next())v=t(r,e,C,v.value,n),null!==v&&(a&&null!==v.alternate&&r.delete(null===v.key?C:v.key),g=f(v,g,C),null===l?m=v:l.sibling=v,l=v);a&&r.forEach(function(a){return b(e,a)});return m}return function(a,d,f,h){var m="object"===typeof f&&null!==f&&f.type===Ma&&null===f.key;m&&(f=f.props.children);var n="object"===typeof f&&null!==f;if(n)switch(f.$$typeof){case Pc:a:{n= +f.key;for(m=d;null!==m;){if(m.key===n){switch(m.tag){case 7:if(f.type===Ma){c(a,m.sibling);d=e(m,f.props.children);d.return=a;a=d;break a}break;default:if(m.elementType===f.type){c(a,m.sibling);d=e(m,f.props);d.ref=Rb(a,m,f);d.return=a;a=d;break a}}c(a,m);break}else b(a,m);m=m.sibling}f.type===Ma?(d=Ha(f.props.children,a.mode,h,f.key),d.return=a,a=d):(h=Oc(f.type,f.key,f.props,null,a.mode,h),h.ref=Rb(a,d,f),h.return=a,a=h)}return g(a);case gb:a:{for(m=f.key;null!==d;){if(d.key===m)if(4===d.tag&&d.stateNode.containerInfo=== +f.containerInfo&&d.stateNode.implementation===f.implementation){c(a,d.sibling);d=e(d,f.children||[]);d.return=a;a=d;break a}else{c(a,d);break}else b(a,d);d=d.sibling}d=re(f,a.mode,h);d.return=a;a=d}return g(a)}if("string"===typeof f||"number"===typeof f)return f=""+f,null!==d&&6===d.tag?(c(a,d.sibling),d=e(d,f),d.return=a,a=d):(c(a,d),d=qe(f,a.mode,h),d.return=a,a=d),g(a);if(Qc(f))return q(a,d,f,h);if(zb(f))return w(a,d,f,h);n&&Nc(a,f);if("undefined"===typeof f&&!m)switch(a.tag){case 1:case 0:throw a= +a.type,Error(k(152,a.displayName||a.name||"Component"));}return c(a,d)}}function Ta(a){if(a===Sb)throw Error(k(174));return a}function se(a,b){y(Tb,b);y(Ub,a);y(ja,Sb);a=b.nodeType;switch(a){case 9:case 11:b=(b=b.documentElement)?b.namespaceURI:Hd(null,"");break;default:a=8===a?b.parentNode:b,b=a.namespaceURI||null,a=a.tagName,b=Hd(b,a)}q(ja);y(ja,b)}function tb(a){q(ja);q(Ub);q(Tb)}function bh(a){Ta(Tb.current);var b=Ta(ja.current);var c=Hd(b,a.type);b!==c&&(y(Ub,a),y(ja,c))}function te(a){Ub.current=== +a&&(q(ja),q(Ub))}function Rc(a){for(var b=a;null!==b;){if(13===b.tag){var c=b.memoizedState;if(null!==c&&(c=c.dehydrated,null===c||c.data===$d||c.data===Zd))return b}else if(19===b.tag&&void 0!==b.memoizedProps.revealOrder){if(0!==(b.effectTag&64))return b}else if(null!==b.child){b.child.return=b;b=b.child;continue}if(b===a)break;for(;null===b.sibling;){if(null===b.return||b.return===a)return null;b=b.return}b.sibling.return=b.return;b=b.sibling}return null}function ue(a,b){return{responder:a,props:b}} +function S(){throw Error(k(321));}function ve(a,b){if(null===b)return!1;for(var c=0;cf))throw Error(k(301));f+=1;J=K=null;b.updateQueue=null;Sc.current=fj;a=c(d,e)}while(b.expirationTime===Ia)}Sc.current=Tc;b=null!==K&&null!==K.next; +Ia=0;J=K=z=null;Uc=!1;if(b)throw Error(k(300));return a}function ub(){var a={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};null===J?z.memoizedState=J=a:J=J.next=a;return J}function vb(){if(null===K){var a=z.alternate;a=null!==a?a.memoizedState:null}else a=K.next;var b=null===J?z.memoizedState:J.next;if(null!==b)J=b,K=a;else{if(null===a)throw Error(k(310));K=a;a={memoizedState:K.memoizedState,baseState:K.baseState,baseQueue:K.baseQueue,queue:K.queue,next:null};null===J?z.memoizedState= +J=a:J=J.next=a}return J}function Ua(a,b){return"function"===typeof b?b(a):b}function Vc(a,b,c){b=vb();c=b.queue;if(null===c)throw Error(k(311));c.lastRenderedReducer=a;var d=K,e=d.baseQueue,f=c.pending;if(null!==f){if(null!==e){var g=e.next;e.next=f.next;f.next=g}d.baseQueue=e=f;c.pending=null}if(null!==e){e=e.next;d=d.baseState;var h=g=f=null,m=e;do{var n=m.expirationTime;if(nz.expirationTime&&(z.expirationTime=n,Kc(n))}else null!==h&&(h=h.next={expirationTime:1073741823,suspenseConfig:m.suspenseConfig,action:m.action,eagerReducer:m.eagerReducer,eagerState:m.eagerState,next:null}),Vg(n,m.suspenseConfig),d=m.eagerReducer===a?m.eagerState:a(d,m.action);m=m.next}while(null!==m&&m!==e);null===h?f=d:h.next=g;Qa(d,b.memoizedState)||(ia=!0);b.memoizedState=d;b.baseState=f;b.baseQueue=h;c.lastRenderedState=d}return[b.memoizedState, +c.dispatch]}function Wc(a,b,c){b=vb();c=b.queue;if(null===c)throw Error(k(311));c.lastRenderedReducer=a;var d=c.dispatch,e=c.pending,f=b.memoizedState;if(null!==e){c.pending=null;var g=e=e.next;do f=a(f,g.action),g=g.next;while(g!==e);Qa(f,b.memoizedState)||(ia=!0);b.memoizedState=f;null===b.baseQueue&&(b.baseState=f);c.lastRenderedState=f}return[f,d]}function xe(a){var b=ub();"function"===typeof a&&(a=a());b.memoizedState=b.baseState=a;a=b.queue={pending:null,dispatch:null,lastRenderedReducer:Ua, +lastRenderedState:a};a=a.dispatch=ch.bind(null,z,a);return[b.memoizedState,a]}function ye(a,b,c,d){a={tag:a,create:b,destroy:c,deps:d,next:null};b=z.updateQueue;null===b?(b={lastEffect:null},z.updateQueue=b,b.lastEffect=a.next=a):(c=b.lastEffect,null===c?b.lastEffect=a.next=a:(d=c.next,c.next=a,a.next=d,b.lastEffect=a));return a}function dh(a){return vb().memoizedState}function ze(a,b,c,d){var e=ub();z.effectTag|=a;e.memoizedState=ye(1|b,c,void 0,void 0===d?null:d)}function Ae(a,b,c,d){var e=vb(); +d=void 0===d?null:d;var f=void 0;if(null!==K){var g=K.memoizedState;f=g.destroy;if(null!==d&&ve(d,g.deps)){ye(b,c,f,d);return}}z.effectTag|=a;e.memoizedState=ye(1|b,c,f,d)}function eh(a,b){return ze(516,4,a,b)}function Xc(a,b){return Ae(516,4,a,b)}function fh(a,b){return Ae(4,2,a,b)}function gh(a,b){if("function"===typeof b)return a=a(),b(a),function(){b(null)};if(null!==b&&void 0!==b)return a=a(),b.current=a,function(){b.current=null}}function hh(a,b,c){c=null!==c&&void 0!==c?c.concat([a]):null; +return Ae(4,2,gh.bind(null,b,a),c)}function Be(a,b){}function ih(a,b){ub().memoizedState=[a,void 0===b?null:b];return a}function Yc(a,b){var c=vb();b=void 0===b?null:b;var d=c.memoizedState;if(null!==d&&null!==b&&ve(b,d[1]))return d[0];c.memoizedState=[a,b];return a}function jh(a,b){var c=vb();b=void 0===b?null:b;var d=c.memoizedState;if(null!==d&&null!==b&&ve(b,d[1]))return d[0];a=a();c.memoizedState=[a,b];return a}function Ce(a,b,c){var d=Cc();Da(98>d?98:d,function(){a(!0)});Da(97\x3c/script>",a=a.removeChild(a.firstChild)):"string"===typeof d.is?a=g.createElement(e,{is:d.is}):(a=g.createElement(e),"select"===e&&(g=a,d.multiple?g.multiple=!0:d.size&&(g.size=d.size))):a=g.createElementNS(a,e);a[Aa]=b;a[vc]=d;jj(a,b,!1,!1);b.stateNode=a;g=Vd(e,d);switch(e){case "iframe":case "object":case "embed":w("load",a);h=d;break;case "video":case "audio":for(h=0;hd.tailExpiration&& +1a?c:a;return 2>=a&&b!==a?0:a}function V(a){if(0!==a.lastExpiredTime)a.callbackExpirationTime=1073741823,a.callbackPriority=99,a.callbackNode=Og(Te.bind(null,a));else{var b=fd(a),c=a.callbackNode;if(0===b)null!==c&&(a.callbackNode=null,a.callbackExpirationTime=0,a.callbackPriority=90);else{var d=ka(); +1073741823===b?d=99:1===b||2===b?d=95:(d=10*(1073741821-b)-10*(1073741821-d),d=0>=d?99:250>=d?98:5250>=d?97:95);if(null!==c){var e=a.callbackPriority;if(a.callbackExpirationTime===b&&e>=d)return;c!==Qg&&Rg(c)}a.callbackExpirationTime=b;a.callbackPriority=d;b=1073741823===b?Og(Te.bind(null,a)):Ng(d,Lh.bind(null,a),{timeout:10*(1073741821-b)-Y()});a.callbackNode=b}}}function Lh(a,b){dd=0;if(b)return b=ka(),Ue(a,b),V(a),null;var c=fd(a);if(0!==c){b=a.callbackNode;if((p&(ca|ma))!==H)throw Error(k(327)); +xb();a===U&&c===P||$a(a,c);if(null!==t){var d=p;p|=ca;var e=Mh();do try{rj();break}catch(h){Nh(a,h)}while(1);le();p=d;gd.current=e;if(F===hd)throw b=id,$a(a,c),Ya(a,c),V(a),b;if(null===t)switch(e=a.finishedWork=a.current.alternate,a.finishedExpirationTime=c,d=F,U=null,d){case Xa:case hd:throw Error(k(345));case Oh:Ue(a,2=c){a.lastPingedTime= +c;$a(a,c);break}}f=fd(a);if(0!==f&&f!==c)break;if(0!==d&&d!==c){a.lastPingedTime=d;break}a.timeoutHandle=We(ab.bind(null,a),e);break}ab(a);break;case bd:Ya(a,c);d=a.lastSuspendedTime;c===d&&(a.nextKnownPendingLevel=Ve(e));if(jd&&(e=a.lastPingedTime,0===e||e>=c)){a.lastPingedTime=c;$a(a,c);break}e=fd(a);if(0!==e&&e!==c)break;if(0!==d&&d!==c){a.lastPingedTime=d;break}1073741823!==Yb?d=10*(1073741821-Yb)-Y():1073741823===ta?d=0:(d=10*(1073741821-ta)-5E3,e=Y(),c=10*(1073741821-c)-e,d=e-d,0>d&&(d=0),d= +(120>d?120:480>d?480:1080>d?1080:1920>d?1920:3E3>d?3E3:4320>d?4320:1960*sj(d/1960))-d,c=d?d=0:(e=g.busyDelayMs|0,f=Y()-(10*(1073741821-f)-(g.timeoutMs|0||5E3)),d=f<=e?0:e+d-f);if(10 component higher in the tree to provide a loading indicator or placeholder to display."+ +Bd(g))}F!==Xe&&(F=Oh);h=Le(h,g);k=f;do{switch(k.tag){case 3:m=h;k.effectTag|=4096;k.expirationTime=b;var A=Ih(k,m,b);Ug(k,A);break a;case 1:m=h;var u=k.type,B=k.stateNode;if(0===(k.effectTag&64)&&("function"===typeof u.getDerivedStateFromError||null!==B&&"function"===typeof B.componentDidCatch&&(null===La||!La.has(B)))){k.effectTag|=4096;k.expirationTime=b;var H=Jh(k,m,b);Ug(k,H);break a}}k=k.return}while(null!==k)}t=Sh(t)}catch(cj){b=cj;continue}break}while(1)}function Mh(a){a=gd.current;gd.current= +Tc;return null===a?Tc:a}function Vg(a,b){aXb&&(Xb=a)}function tj(){for(;null!==t;)t=Th(t)}function rj(){for(;null!==t&&!yj();)t=Th(t)}function Th(a){var b=zj(a.alternate,a,P);a.memoizedProps=a.pendingProps;null===b&&(b=Sh(a));Uh.current=null;return b}function Sh(a){t=a;do{var b=t.alternate;a=t.return;if(0===(t.effectTag&2048)){b=hj(b,t,P);if(1===P||1!==t.childExpirationTime){for(var c=0,d=t.child;null!==d;){var e=d.expirationTime, +f=d.childExpirationTime;e>c&&(c=e);f>c&&(c=f);d=d.sibling}t.childExpirationTime=c}if(null!==b)return b;null!==a&&0===(a.effectTag&2048)&&(null===a.firstEffect&&(a.firstEffect=t.firstEffect),null!==t.lastEffect&&(null!==a.lastEffect&&(a.lastEffect.nextEffect=t.firstEffect),a.lastEffect=t.lastEffect),1a?b:a}function ab(a){var b=Cc();Da(99,Aj.bind(null,a,b));return null}function Aj(a,b){do xb();while(null!==Zb);if((p&(ca|ma))!==H)throw Error(k(327));var c=a.finishedWork,d=a.finishedExpirationTime;if(null===c)return null;a.finishedWork=null;a.finishedExpirationTime=0;if(c===a.current)throw Error(k(177));a.callbackNode=null;a.callbackExpirationTime= +0;a.callbackPriority=90;a.nextKnownPendingLevel=0;var e=Ve(c);a.firstPendingTime=e;d<=a.lastSuspendedTime?a.firstSuspendedTime=a.lastSuspendedTime=a.nextKnownPendingLevel=0:d<=a.firstSuspendedTime&&(a.firstSuspendedTime=d-1);d<=a.lastPingedTime&&(a.lastPingedTime=0);d<=a.lastExpiredTime&&(a.lastExpiredTime=0);a===U&&(t=U=null,P=0);1h&&(n=h,h=g,g=n),n=ig(x,g),q=ig(x,h),n&&q&&(1!==u.rangeCount||u.anchorNode!==n.node||u.anchorOffset!==n.offset||u.focusNode!==q.node||u.focusOffset!==q.offset)&&(A=A.createRange(), +A.setStart(n.node,n.offset),u.removeAllRanges(),g>h?(u.addRange(A),u.extend(q.node,q.offset)):(A.setEnd(q.node,q.offset),u.addRange(A))))));A=[];for(u=x;u=u.parentNode;)1===u.nodeType&&A.push({element:u,left:u.scrollLeft,top:u.scrollTop});"function"===typeof x.focus&&x.focus();for(x=0;x=b&&a<=b}function Ya(a,b){var c=a.firstSuspendedTime,d=a.lastSuspendedTime; +cb||0===c)a.lastSuspendedTime=b;b<=a.lastPingedTime&&(a.lastPingedTime=0);b<=a.lastExpiredTime&&(a.lastExpiredTime=0)}function yh(a,b){b>a.firstPendingTime&&(a.firstPendingTime=b);var c=a.firstSuspendedTime;0!==c&&(b>=c?a.firstSuspendedTime=a.lastSuspendedTime=a.nextKnownPendingLevel=0:b>=a.lastSuspendedTime&&(a.lastSuspendedTime=b+1),b>a.nextKnownPendingLevel&&(a.nextKnownPendingLevel=b))}function Ue(a,b){var c=a.lastExpiredTime;if(0===c||c>b)a.lastExpiredTime=b} +function md(a,b,c,d){var e=b.current,f=ka(),g=Vb.suspense;f=Va(f,e,g);a:if(c){c=c._reactInternalFiber;b:{if(Na(c)!==c||1!==c.tag)throw Error(k(170));var h=c;do{switch(h.tag){case 3:h=h.stateNode.context;break b;case 1:if(N(h.type)){h=h.stateNode.__reactInternalMemoizedMergedChildContext;break b}}h=h.return}while(null!==h);throw Error(k(171));}if(1===c.tag){var m=c.type;if(N(m)){c=Gg(c,m,h);break a}}c=h}else c=Ca;null===b.context?b.context=c:b.pendingContext=c;b=Ea(f,g);b.payload={element:a};d=void 0=== +d?null:d;null!==d&&(b.callback=d);Fa(e,b);Ja(e,f);return f}function cf(a){a=a.current;if(!a.child)return null;switch(a.child.tag){case 5:return a.child.stateNode;default:return a.child.stateNode}}function Wh(a,b){a=a.memoizedState;null!==a&&null!==a.dehydrated&&a.retryTime