From 600db87a4cb501441e9366b0b1c22f6445f7ad79 Mon Sep 17 00:00:00 2001 From: Vadzim Hushchanskou Date: Fri, 14 Oct 2022 14:19:35 +0000 Subject: [PATCH] Compiled version 1.3.0 --- build/index.js | 6080 ++++++++++++++++++++++++++---------------------- 1 file changed, 3276 insertions(+), 2804 deletions(-) diff --git a/build/index.js b/build/index.js index 1ec9f40..640f71a 100644 --- a/build/index.js +++ b/build/index.js @@ -1,7 +1,7 @@ /******/ (() => { // webpackBootstrap /******/ var __webpack_modules__ = ({ -/***/ 9178: +/***/ 8342: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -28,7 +28,7 @@ var __importStar = (this && this.__importStar) || function (mod) { Object.defineProperty(exports, "__esModule", ({ value: true })); exports.issue = exports.issueCommand = void 0; const os = __importStar(__nccwpck_require__(2037)); -const utils_1 = __nccwpck_require__(6203); +const utils_1 = __nccwpck_require__(700); /** * Commands * @@ -100,7 +100,7 @@ function escapeProperty(s) { /***/ }), -/***/ 5250: +/***/ 3276: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -135,13 +135,12 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge }; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.getIDToken = exports.getState = exports.saveState = exports.group = exports.endGroup = exports.startGroup = exports.info = exports.notice = exports.warning = exports.error = exports.debug = exports.isDebug = exports.setFailed = exports.setCommandEcho = exports.setOutput = exports.getBooleanInput = exports.getMultilineInput = exports.getInput = exports.addPath = exports.setSecret = exports.exportVariable = exports.ExitCode = void 0; -const command_1 = __nccwpck_require__(9178); -const file_command_1 = __nccwpck_require__(3299); -const utils_1 = __nccwpck_require__(6203); +const command_1 = __nccwpck_require__(8342); +const file_command_1 = __nccwpck_require__(4171); +const utils_1 = __nccwpck_require__(700); const os = __importStar(__nccwpck_require__(2037)); const path = __importStar(__nccwpck_require__(1017)); -const uuid_1 = __nccwpck_require__(1354); -const oidc_utils_1 = __nccwpck_require__(5888); +const oidc_utils_1 = __nccwpck_require__(8080); /** * The code to exit an action */ @@ -170,20 +169,9 @@ function exportVariable(name, val) { process.env[name] = convertedVal; const filePath = process.env['GITHUB_ENV'] || ''; if (filePath) { - const delimiter = `ghadelimiter_${uuid_1.v4()}`; - // These should realistically never happen, but just in case someone finds a way to exploit uuid generation let's not allow keys or values that contain the delimiter. - if (name.includes(delimiter)) { - throw new Error(`Unexpected input: name should not contain the delimiter "${delimiter}"`); - } - if (convertedVal.includes(delimiter)) { - throw new Error(`Unexpected input: value should not contain the delimiter "${delimiter}"`); - } - const commandValue = `${name}<<${delimiter}${os.EOL}${convertedVal}${os.EOL}${delimiter}`; - file_command_1.issueCommand('ENV', commandValue); - } - else { - command_1.issueCommand('set-env', { name }, convertedVal); + return file_command_1.issueFileCommand('ENV', file_command_1.prepareKeyValueMessage(name, val)); } + command_1.issueCommand('set-env', { name }, convertedVal); } exports.exportVariable = exportVariable; /** @@ -201,7 +189,7 @@ exports.setSecret = setSecret; function addPath(inputPath) { const filePath = process.env['GITHUB_PATH'] || ''; if (filePath) { - file_command_1.issueCommand('PATH', inputPath); + file_command_1.issueFileCommand('PATH', inputPath); } else { command_1.issueCommand('add-path', {}, inputPath); @@ -241,7 +229,10 @@ function getMultilineInput(name, options) { const inputs = getInput(name, options) .split('\n') .filter(x => x !== ''); - return inputs; + if (options && options.trimWhitespace === false) { + return inputs; + } + return inputs.map(input => input.trim()); } exports.getMultilineInput = getMultilineInput; /** @@ -274,8 +265,12 @@ exports.getBooleanInput = getBooleanInput; */ // eslint-disable-next-line @typescript-eslint/no-explicit-any function setOutput(name, value) { + const filePath = process.env['GITHUB_OUTPUT'] || ''; + if (filePath) { + return file_command_1.issueFileCommand('OUTPUT', file_command_1.prepareKeyValueMessage(name, value)); + } process.stdout.write(os.EOL); - command_1.issueCommand('set-output', { name }, value); + command_1.issueCommand('set-output', { name }, utils_1.toCommandValue(value)); } exports.setOutput = setOutput; /** @@ -404,7 +399,11 @@ exports.group = group; */ // eslint-disable-next-line @typescript-eslint/no-explicit-any function saveState(name, value) { - command_1.issueCommand('save-state', { name }, value); + const filePath = process.env['GITHUB_STATE'] || ''; + if (filePath) { + return file_command_1.issueFileCommand('STATE', file_command_1.prepareKeyValueMessage(name, value)); + } + command_1.issueCommand('save-state', { name }, utils_1.toCommandValue(value)); } exports.saveState = saveState; /** @@ -426,17 +425,17 @@ exports.getIDToken = getIDToken; /** * Summary exports */ -var summary_1 = __nccwpck_require__(9081); +var summary_1 = __nccwpck_require__(5663); Object.defineProperty(exports, "summary", ({ enumerable: true, get: function () { return summary_1.summary; } })); /** * @deprecated use core.summary */ -var summary_2 = __nccwpck_require__(9081); +var summary_2 = __nccwpck_require__(5663); Object.defineProperty(exports, "markdownSummary", ({ enumerable: true, get: function () { return summary_2.markdownSummary; } })); /** * Path exports */ -var path_utils_1 = __nccwpck_require__(655); +var path_utils_1 = __nccwpck_require__(8718); Object.defineProperty(exports, "toPosixPath", ({ enumerable: true, get: function () { return path_utils_1.toPosixPath; } })); Object.defineProperty(exports, "toWin32Path", ({ enumerable: true, get: function () { return path_utils_1.toWin32Path; } })); Object.defineProperty(exports, "toPlatformPath", ({ enumerable: true, get: function () { return path_utils_1.toPlatformPath; } })); @@ -444,7 +443,7 @@ Object.defineProperty(exports, "toPlatformPath", ({ enumerable: true, get: funct /***/ }), -/***/ 3299: +/***/ 4171: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -470,13 +469,14 @@ var __importStar = (this && this.__importStar) || function (mod) { return result; }; Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.issueCommand = void 0; +exports.prepareKeyValueMessage = exports.issueFileCommand = void 0; // We use any as a valid input type /* eslint-disable @typescript-eslint/no-explicit-any */ const fs = __importStar(__nccwpck_require__(7147)); const os = __importStar(__nccwpck_require__(2037)); -const utils_1 = __nccwpck_require__(6203); -function issueCommand(command, message) { +const uuid_1 = __nccwpck_require__(4037); +const utils_1 = __nccwpck_require__(700); +function issueFileCommand(command, message) { const filePath = process.env[`GITHUB_${command}`]; if (!filePath) { throw new Error(`Unable to find environment variable for file command ${command}`); @@ -488,12 +488,27 @@ function issueCommand(command, message) { encoding: 'utf8' }); } -exports.issueCommand = issueCommand; +exports.issueFileCommand = issueFileCommand; +function prepareKeyValueMessage(key, value) { + const delimiter = `ghadelimiter_${uuid_1.v4()}`; + const convertedValue = utils_1.toCommandValue(value); + // These should realistically never happen, but just in case someone finds a + // way to exploit uuid generation let's not allow keys or values that contain + // the delimiter. + if (key.includes(delimiter)) { + throw new Error(`Unexpected input: name should not contain the delimiter "${delimiter}"`); + } + if (convertedValue.includes(delimiter)) { + throw new Error(`Unexpected input: value should not contain the delimiter "${delimiter}"`); + } + return `${key}<<${delimiter}${os.EOL}${convertedValue}${os.EOL}${delimiter}`; +} +exports.prepareKeyValueMessage = prepareKeyValueMessage; //# sourceMappingURL=file-command.js.map /***/ }), -/***/ 5888: +/***/ 8080: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -509,9 +524,9 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge }; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.OidcClient = void 0; -const http_client_1 = __nccwpck_require__(1931); -const auth_1 = __nccwpck_require__(6411); -const core_1 = __nccwpck_require__(5250); +const http_client_1 = __nccwpck_require__(1639); +const auth_1 = __nccwpck_require__(7567); +const core_1 = __nccwpck_require__(3276); class OidcClient { static createHttpClient(allowRetry = true, maxRetry = 10) { const requestOptions = { @@ -577,7 +592,7 @@ exports.OidcClient = OidcClient; /***/ }), -/***/ 655: +/***/ 8718: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -642,7 +657,7 @@ exports.toPlatformPath = toPlatformPath; /***/ }), -/***/ 9081: +/***/ 5663: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -932,7 +947,7 @@ exports.summary = _summary; /***/ }), -/***/ 6203: +/***/ 700: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -979,7 +994,223 @@ exports.toCommandProperties = toCommandProperties; /***/ }), -/***/ 6411: +/***/ 7757: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.Context = void 0; +const fs_1 = __nccwpck_require__(7147); +const os_1 = __nccwpck_require__(2037); +class Context { + /** + * Hydrate the context from the environment + */ + constructor() { + var _a, _b, _c; + this.payload = {}; + if (process.env.GITHUB_EVENT_PATH) { + if (fs_1.existsSync(process.env.GITHUB_EVENT_PATH)) { + this.payload = JSON.parse(fs_1.readFileSync(process.env.GITHUB_EVENT_PATH, { encoding: 'utf8' })); + } + else { + const path = process.env.GITHUB_EVENT_PATH; + process.stdout.write(`GITHUB_EVENT_PATH ${path} does not exist${os_1.EOL}`); + } + } + this.eventName = process.env.GITHUB_EVENT_NAME; + this.sha = process.env.GITHUB_SHA; + this.ref = process.env.GITHUB_REF; + this.workflow = process.env.GITHUB_WORKFLOW; + this.action = process.env.GITHUB_ACTION; + this.actor = process.env.GITHUB_ACTOR; + this.job = process.env.GITHUB_JOB; + this.runNumber = parseInt(process.env.GITHUB_RUN_NUMBER, 10); + this.runId = parseInt(process.env.GITHUB_RUN_ID, 10); + this.apiUrl = (_a = process.env.GITHUB_API_URL) !== null && _a !== void 0 ? _a : `https://api.github.com`; + this.serverUrl = (_b = process.env.GITHUB_SERVER_URL) !== null && _b !== void 0 ? _b : `https://github.com`; + this.graphqlUrl = (_c = process.env.GITHUB_GRAPHQL_URL) !== null && _c !== void 0 ? _c : `https://api.github.com/graphql`; + } + get issue() { + const payload = this.payload; + return Object.assign(Object.assign({}, this.repo), { number: (payload.issue || payload.pull_request || payload).number }); + } + get repo() { + if (process.env.GITHUB_REPOSITORY) { + const [owner, repo] = process.env.GITHUB_REPOSITORY.split('/'); + return { owner, repo }; + } + if (this.payload.repository) { + return { + owner: this.payload.repository.owner.login, + repo: this.payload.repository.name + }; + } + throw new Error("context.repo requires a GITHUB_REPOSITORY environment variable like 'owner/repo'"); + } +} +exports.Context = Context; +//# sourceMappingURL=context.js.map + +/***/ }), + +/***/ 278: +/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { + +"use strict"; + +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); + __setModuleDefault(result, mod); + return result; +}; +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.getOctokit = exports.context = void 0; +const Context = __importStar(__nccwpck_require__(7757)); +const utils_1 = __nccwpck_require__(9428); +exports.context = new Context.Context(); +/** + * Returns a hydrated octokit ready to use for GitHub Actions + * + * @param token the repo PAT or GITHUB_TOKEN + * @param options other options to set + */ +function getOctokit(token, options, ...additionalPlugins) { + const GitHubWithPlugins = utils_1.GitHub.plugin(...additionalPlugins); + return new GitHubWithPlugins(utils_1.getOctokitOptions(token, options)); +} +exports.getOctokit = getOctokit; +//# sourceMappingURL=github.js.map + +/***/ }), + +/***/ 1720: +/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { + +"use strict"; + +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); + __setModuleDefault(result, mod); + return result; +}; +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.getApiBaseUrl = exports.getProxyAgent = exports.getAuthString = void 0; +const httpClient = __importStar(__nccwpck_require__(1639)); +function getAuthString(token, options) { + if (!token && !options.auth) { + throw new Error('Parameter token or opts.auth is required'); + } + else if (token && options.auth) { + throw new Error('Parameters token and opts.auth may not both be specified'); + } + return typeof options.auth === 'string' ? options.auth : `token ${token}`; +} +exports.getAuthString = getAuthString; +function getProxyAgent(destinationUrl) { + const hc = new httpClient.HttpClient(); + return hc.getAgent(destinationUrl); +} +exports.getProxyAgent = getProxyAgent; +function getApiBaseUrl() { + return process.env['GITHUB_API_URL'] || 'https://api.github.com'; +} +exports.getApiBaseUrl = getApiBaseUrl; +//# sourceMappingURL=utils.js.map + +/***/ }), + +/***/ 9428: +/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { + +"use strict"; + +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); + __setModuleDefault(result, mod); + return result; +}; +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.getOctokitOptions = exports.GitHub = exports.defaults = exports.context = void 0; +const Context = __importStar(__nccwpck_require__(7757)); +const Utils = __importStar(__nccwpck_require__(1720)); +// octokit + plugins +const core_1 = __nccwpck_require__(4887); +const plugin_rest_endpoint_methods_1 = __nccwpck_require__(8671); +const plugin_paginate_rest_1 = __nccwpck_require__(6858); +exports.context = new Context.Context(); +const baseUrl = Utils.getApiBaseUrl(); +exports.defaults = { + baseUrl, + request: { + agent: Utils.getProxyAgent(baseUrl) + } +}; +exports.GitHub = core_1.Octokit.plugin(plugin_rest_endpoint_methods_1.restEndpointMethods, plugin_paginate_rest_1.paginateRest).defaults(exports.defaults); +/** + * Convience function to correctly format Octokit Options to pass into the constructor. + * + * @param token the repo PAT or GITHUB_TOKEN + * @param options other options to set + */ +function getOctokitOptions(token, options) { + const opts = Object.assign({}, options || {}); // Shallow clone - don't mutate the object provided by the caller + // Auth + const auth = Utils.getAuthString(token, opts); + if (auth) { + opts.auth = auth; + } + return opts; +} +exports.getOctokitOptions = getOctokitOptions; +//# sourceMappingURL=utils.js.map + +/***/ }), + +/***/ 7567: /***/ (function(__unused_webpack_module, exports) { "use strict"; @@ -1067,7 +1298,7 @@ exports.PersonalAccessTokenCredentialHandler = PersonalAccessTokenCredentialHand /***/ }), -/***/ 1931: +/***/ 1639: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -1105,8 +1336,8 @@ Object.defineProperty(exports, "__esModule", ({ value: true })); exports.HttpClient = exports.isHttps = exports.HttpClientResponse = exports.HttpClientError = exports.getProxyUrl = exports.MediaTypes = exports.Headers = exports.HttpCodes = void 0; const http = __importStar(__nccwpck_require__(3685)); const https = __importStar(__nccwpck_require__(5687)); -const pm = __importStar(__nccwpck_require__(1890)); -const tunnel = __importStar(__nccwpck_require__(5689)); +const pm = __importStar(__nccwpck_require__(2797)); +const tunnel = __importStar(__nccwpck_require__(8746)); var HttpCodes; (function (HttpCodes) { HttpCodes[HttpCodes["OK"] = 200] = "OK"; @@ -1679,7 +1910,7 @@ const lowercaseKeys = (obj) => Object.keys(obj).reduce((c, k) => ((c[k.toLowerCa /***/ }), -/***/ 1890: +/***/ 2797: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -1747,1200 +1978,12 @@ exports.checkBypass = checkBypass; /***/ }), -/***/ 497: -/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { +/***/ 4941: +/***/ ((__unused_webpack_module, exports) => { "use strict"; -Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.Context = void 0; -const fs_1 = __nccwpck_require__(7147); -const os_1 = __nccwpck_require__(2037); -class Context { - /** - * Hydrate the context from the environment - */ - constructor() { - var _a, _b, _c; - this.payload = {}; - if (process.env.GITHUB_EVENT_PATH) { - if (fs_1.existsSync(process.env.GITHUB_EVENT_PATH)) { - this.payload = JSON.parse(fs_1.readFileSync(process.env.GITHUB_EVENT_PATH, { encoding: 'utf8' })); - } - else { - const path = process.env.GITHUB_EVENT_PATH; - process.stdout.write(`GITHUB_EVENT_PATH ${path} does not exist${os_1.EOL}`); - } - } - this.eventName = process.env.GITHUB_EVENT_NAME; - this.sha = process.env.GITHUB_SHA; - this.ref = process.env.GITHUB_REF; - this.workflow = process.env.GITHUB_WORKFLOW; - this.action = process.env.GITHUB_ACTION; - this.actor = process.env.GITHUB_ACTOR; - this.job = process.env.GITHUB_JOB; - this.runNumber = parseInt(process.env.GITHUB_RUN_NUMBER, 10); - this.runId = parseInt(process.env.GITHUB_RUN_ID, 10); - this.apiUrl = (_a = process.env.GITHUB_API_URL) !== null && _a !== void 0 ? _a : `https://api.github.com`; - this.serverUrl = (_b = process.env.GITHUB_SERVER_URL) !== null && _b !== void 0 ? _b : `https://github.com`; - this.graphqlUrl = (_c = process.env.GITHUB_GRAPHQL_URL) !== null && _c !== void 0 ? _c : `https://api.github.com/graphql`; - } - get issue() { - const payload = this.payload; - return Object.assign(Object.assign({}, this.repo), { number: (payload.issue || payload.pull_request || payload).number }); - } - get repo() { - if (process.env.GITHUB_REPOSITORY) { - const [owner, repo] = process.env.GITHUB_REPOSITORY.split('/'); - return { owner, repo }; - } - if (this.payload.repository) { - return { - owner: this.payload.repository.owner.login, - repo: this.payload.repository.name - }; - } - throw new Error("context.repo requires a GITHUB_REPOSITORY environment variable like 'owner/repo'"); - } -} -exports.Context = Context; -//# sourceMappingURL=context.js.map - -/***/ }), - -/***/ 4931: -/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { - -"use strict"; - -var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); -}) : (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - o[k2] = m[k]; -})); -var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { - Object.defineProperty(o, "default", { enumerable: true, value: v }); -}) : function(o, v) { - o["default"] = v; -}); -var __importStar = (this && this.__importStar) || function (mod) { - if (mod && mod.__esModule) return mod; - var result = {}; - if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); - __setModuleDefault(result, mod); - return result; -}; -Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.getOctokit = exports.context = void 0; -const Context = __importStar(__nccwpck_require__(497)); -const utils_1 = __nccwpck_require__(4901); -exports.context = new Context.Context(); -/** - * Returns a hydrated octokit ready to use for GitHub Actions - * - * @param token the repo PAT or GITHUB_TOKEN - * @param options other options to set - */ -function getOctokit(token, options) { - return new utils_1.GitHub(utils_1.getOctokitOptions(token, options)); -} -exports.getOctokit = getOctokit; -//# sourceMappingURL=github.js.map - -/***/ }), - -/***/ 9166: -/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { - -"use strict"; - -var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); -}) : (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - o[k2] = m[k]; -})); -var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { - Object.defineProperty(o, "default", { enumerable: true, value: v }); -}) : function(o, v) { - o["default"] = v; -}); -var __importStar = (this && this.__importStar) || function (mod) { - if (mod && mod.__esModule) return mod; - var result = {}; - if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); - __setModuleDefault(result, mod); - return result; -}; -Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.getApiBaseUrl = exports.getProxyAgent = exports.getAuthString = void 0; -const httpClient = __importStar(__nccwpck_require__(9492)); -function getAuthString(token, options) { - if (!token && !options.auth) { - throw new Error('Parameter token or opts.auth is required'); - } - else if (token && options.auth) { - throw new Error('Parameters token and opts.auth may not both be specified'); - } - return typeof options.auth === 'string' ? options.auth : `token ${token}`; -} -exports.getAuthString = getAuthString; -function getProxyAgent(destinationUrl) { - const hc = new httpClient.HttpClient(); - return hc.getAgent(destinationUrl); -} -exports.getProxyAgent = getProxyAgent; -function getApiBaseUrl() { - return process.env['GITHUB_API_URL'] || 'https://api.github.com'; -} -exports.getApiBaseUrl = getApiBaseUrl; -//# sourceMappingURL=utils.js.map - -/***/ }), - -/***/ 4901: -/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { - -"use strict"; - -var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); -}) : (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - o[k2] = m[k]; -})); -var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { - Object.defineProperty(o, "default", { enumerable: true, value: v }); -}) : function(o, v) { - o["default"] = v; -}); -var __importStar = (this && this.__importStar) || function (mod) { - if (mod && mod.__esModule) return mod; - var result = {}; - if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); - __setModuleDefault(result, mod); - return result; -}; -Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.getOctokitOptions = exports.GitHub = exports.context = void 0; -const Context = __importStar(__nccwpck_require__(497)); -const Utils = __importStar(__nccwpck_require__(9166)); -// octokit + plugins -const core_1 = __nccwpck_require__(3777); -const plugin_rest_endpoint_methods_1 = __nccwpck_require__(6517); -const plugin_paginate_rest_1 = __nccwpck_require__(3287); -exports.context = new Context.Context(); -const baseUrl = Utils.getApiBaseUrl(); -const defaults = { - baseUrl, - request: { - agent: Utils.getProxyAgent(baseUrl) - } -}; -exports.GitHub = core_1.Octokit.plugin(plugin_rest_endpoint_methods_1.restEndpointMethods, plugin_paginate_rest_1.paginateRest).defaults(defaults); -/** - * Convience function to correctly format Octokit Options to pass into the constructor. - * - * @param token the repo PAT or GITHUB_TOKEN - * @param options other options to set - */ -function getOctokitOptions(token, options) { - const opts = Object.assign({}, options || {}); // Shallow clone - don't mutate the object provided by the caller - // Auth - const auth = Utils.getAuthString(token, opts); - if (auth) { - opts.auth = auth; - } - return opts; -} -exports.getOctokitOptions = getOctokitOptions; -//# sourceMappingURL=utils.js.map - -/***/ }), - -/***/ 9492: -/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { - -"use strict"; - -/* eslint-disable @typescript-eslint/no-explicit-any */ -var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); -}) : (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - o[k2] = m[k]; -})); -var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { - Object.defineProperty(o, "default", { enumerable: true, value: v }); -}) : function(o, v) { - o["default"] = v; -}); -var __importStar = (this && this.__importStar) || function (mod) { - if (mod && mod.__esModule) return mod; - var result = {}; - if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); - __setModuleDefault(result, mod); - return result; -}; -var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { - function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } - return new (P || (P = Promise))(function (resolve, reject) { - function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } - function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } - function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); - }); -}; -Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.HttpClient = exports.isHttps = exports.HttpClientResponse = exports.HttpClientError = exports.getProxyUrl = exports.MediaTypes = exports.Headers = exports.HttpCodes = void 0; -const http = __importStar(__nccwpck_require__(3685)); -const https = __importStar(__nccwpck_require__(5687)); -const pm = __importStar(__nccwpck_require__(7774)); -const tunnel = __importStar(__nccwpck_require__(5689)); -var HttpCodes; -(function (HttpCodes) { - HttpCodes[HttpCodes["OK"] = 200] = "OK"; - HttpCodes[HttpCodes["MultipleChoices"] = 300] = "MultipleChoices"; - HttpCodes[HttpCodes["MovedPermanently"] = 301] = "MovedPermanently"; - HttpCodes[HttpCodes["ResourceMoved"] = 302] = "ResourceMoved"; - HttpCodes[HttpCodes["SeeOther"] = 303] = "SeeOther"; - HttpCodes[HttpCodes["NotModified"] = 304] = "NotModified"; - HttpCodes[HttpCodes["UseProxy"] = 305] = "UseProxy"; - HttpCodes[HttpCodes["SwitchProxy"] = 306] = "SwitchProxy"; - HttpCodes[HttpCodes["TemporaryRedirect"] = 307] = "TemporaryRedirect"; - HttpCodes[HttpCodes["PermanentRedirect"] = 308] = "PermanentRedirect"; - HttpCodes[HttpCodes["BadRequest"] = 400] = "BadRequest"; - HttpCodes[HttpCodes["Unauthorized"] = 401] = "Unauthorized"; - HttpCodes[HttpCodes["PaymentRequired"] = 402] = "PaymentRequired"; - HttpCodes[HttpCodes["Forbidden"] = 403] = "Forbidden"; - HttpCodes[HttpCodes["NotFound"] = 404] = "NotFound"; - HttpCodes[HttpCodes["MethodNotAllowed"] = 405] = "MethodNotAllowed"; - HttpCodes[HttpCodes["NotAcceptable"] = 406] = "NotAcceptable"; - HttpCodes[HttpCodes["ProxyAuthenticationRequired"] = 407] = "ProxyAuthenticationRequired"; - HttpCodes[HttpCodes["RequestTimeout"] = 408] = "RequestTimeout"; - HttpCodes[HttpCodes["Conflict"] = 409] = "Conflict"; - HttpCodes[HttpCodes["Gone"] = 410] = "Gone"; - HttpCodes[HttpCodes["TooManyRequests"] = 429] = "TooManyRequests"; - HttpCodes[HttpCodes["InternalServerError"] = 500] = "InternalServerError"; - HttpCodes[HttpCodes["NotImplemented"] = 501] = "NotImplemented"; - HttpCodes[HttpCodes["BadGateway"] = 502] = "BadGateway"; - HttpCodes[HttpCodes["ServiceUnavailable"] = 503] = "ServiceUnavailable"; - HttpCodes[HttpCodes["GatewayTimeout"] = 504] = "GatewayTimeout"; -})(HttpCodes = exports.HttpCodes || (exports.HttpCodes = {})); -var Headers; -(function (Headers) { - Headers["Accept"] = "accept"; - Headers["ContentType"] = "content-type"; -})(Headers = exports.Headers || (exports.Headers = {})); -var MediaTypes; -(function (MediaTypes) { - MediaTypes["ApplicationJson"] = "application/json"; -})(MediaTypes = exports.MediaTypes || (exports.MediaTypes = {})); -/** - * Returns the proxy URL, depending upon the supplied url and proxy environment variables. - * @param serverUrl The server URL where the request will be sent. For example, https://api.github.com - */ -function getProxyUrl(serverUrl) { - const proxyUrl = pm.getProxyUrl(new URL(serverUrl)); - return proxyUrl ? proxyUrl.href : ''; -} -exports.getProxyUrl = getProxyUrl; -const HttpRedirectCodes = [ - HttpCodes.MovedPermanently, - HttpCodes.ResourceMoved, - HttpCodes.SeeOther, - HttpCodes.TemporaryRedirect, - HttpCodes.PermanentRedirect -]; -const HttpResponseRetryCodes = [ - HttpCodes.BadGateway, - HttpCodes.ServiceUnavailable, - HttpCodes.GatewayTimeout -]; -const RetryableHttpVerbs = ['OPTIONS', 'GET', 'DELETE', 'HEAD']; -const ExponentialBackoffCeiling = 10; -const ExponentialBackoffTimeSlice = 5; -class HttpClientError extends Error { - constructor(message, statusCode) { - super(message); - this.name = 'HttpClientError'; - this.statusCode = statusCode; - Object.setPrototypeOf(this, HttpClientError.prototype); - } -} -exports.HttpClientError = HttpClientError; -class HttpClientResponse { - constructor(message) { - this.message = message; - } - readBody() { - return __awaiter(this, void 0, void 0, function* () { - return new Promise((resolve) => __awaiter(this, void 0, void 0, function* () { - let output = Buffer.alloc(0); - this.message.on('data', (chunk) => { - output = Buffer.concat([output, chunk]); - }); - this.message.on('end', () => { - resolve(output.toString()); - }); - })); - }); - } -} -exports.HttpClientResponse = HttpClientResponse; -function isHttps(requestUrl) { - const parsedUrl = new URL(requestUrl); - return parsedUrl.protocol === 'https:'; -} -exports.isHttps = isHttps; -class HttpClient { - constructor(userAgent, handlers, requestOptions) { - this._ignoreSslError = false; - this._allowRedirects = true; - this._allowRedirectDowngrade = false; - this._maxRedirects = 50; - this._allowRetries = false; - this._maxRetries = 1; - this._keepAlive = false; - this._disposed = false; - this.userAgent = userAgent; - this.handlers = handlers || []; - this.requestOptions = requestOptions; - if (requestOptions) { - if (requestOptions.ignoreSslError != null) { - this._ignoreSslError = requestOptions.ignoreSslError; - } - this._socketTimeout = requestOptions.socketTimeout; - if (requestOptions.allowRedirects != null) { - this._allowRedirects = requestOptions.allowRedirects; - } - if (requestOptions.allowRedirectDowngrade != null) { - this._allowRedirectDowngrade = requestOptions.allowRedirectDowngrade; - } - if (requestOptions.maxRedirects != null) { - this._maxRedirects = Math.max(requestOptions.maxRedirects, 0); - } - if (requestOptions.keepAlive != null) { - this._keepAlive = requestOptions.keepAlive; - } - if (requestOptions.allowRetries != null) { - this._allowRetries = requestOptions.allowRetries; - } - if (requestOptions.maxRetries != null) { - this._maxRetries = requestOptions.maxRetries; - } - } - } - options(requestUrl, additionalHeaders) { - return __awaiter(this, void 0, void 0, function* () { - return this.request('OPTIONS', requestUrl, null, additionalHeaders || {}); - }); - } - get(requestUrl, additionalHeaders) { - return __awaiter(this, void 0, void 0, function* () { - return this.request('GET', requestUrl, null, additionalHeaders || {}); - }); - } - del(requestUrl, additionalHeaders) { - return __awaiter(this, void 0, void 0, function* () { - return this.request('DELETE', requestUrl, null, additionalHeaders || {}); - }); - } - post(requestUrl, data, additionalHeaders) { - return __awaiter(this, void 0, void 0, function* () { - return this.request('POST', requestUrl, data, additionalHeaders || {}); - }); - } - patch(requestUrl, data, additionalHeaders) { - return __awaiter(this, void 0, void 0, function* () { - return this.request('PATCH', requestUrl, data, additionalHeaders || {}); - }); - } - put(requestUrl, data, additionalHeaders) { - return __awaiter(this, void 0, void 0, function* () { - return this.request('PUT', requestUrl, data, additionalHeaders || {}); - }); - } - head(requestUrl, additionalHeaders) { - return __awaiter(this, void 0, void 0, function* () { - return this.request('HEAD', requestUrl, null, additionalHeaders || {}); - }); - } - sendStream(verb, requestUrl, stream, additionalHeaders) { - return __awaiter(this, void 0, void 0, function* () { - return this.request(verb, requestUrl, stream, additionalHeaders); - }); - } - /** - * Gets a typed object from an endpoint - * Be aware that not found returns a null. Other errors (4xx, 5xx) reject the promise - */ - getJson(requestUrl, additionalHeaders = {}) { - return __awaiter(this, void 0, void 0, function* () { - additionalHeaders[Headers.Accept] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.Accept, MediaTypes.ApplicationJson); - const res = yield this.get(requestUrl, additionalHeaders); - return this._processResponse(res, this.requestOptions); - }); - } - postJson(requestUrl, obj, additionalHeaders = {}) { - return __awaiter(this, void 0, void 0, function* () { - const data = JSON.stringify(obj, null, 2); - additionalHeaders[Headers.Accept] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.Accept, MediaTypes.ApplicationJson); - additionalHeaders[Headers.ContentType] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.ContentType, MediaTypes.ApplicationJson); - const res = yield this.post(requestUrl, data, additionalHeaders); - return this._processResponse(res, this.requestOptions); - }); - } - putJson(requestUrl, obj, additionalHeaders = {}) { - return __awaiter(this, void 0, void 0, function* () { - const data = JSON.stringify(obj, null, 2); - additionalHeaders[Headers.Accept] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.Accept, MediaTypes.ApplicationJson); - additionalHeaders[Headers.ContentType] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.ContentType, MediaTypes.ApplicationJson); - const res = yield this.put(requestUrl, data, additionalHeaders); - return this._processResponse(res, this.requestOptions); - }); - } - patchJson(requestUrl, obj, additionalHeaders = {}) { - return __awaiter(this, void 0, void 0, function* () { - const data = JSON.stringify(obj, null, 2); - additionalHeaders[Headers.Accept] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.Accept, MediaTypes.ApplicationJson); - additionalHeaders[Headers.ContentType] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.ContentType, MediaTypes.ApplicationJson); - const res = yield this.patch(requestUrl, data, additionalHeaders); - return this._processResponse(res, this.requestOptions); - }); - } - /** - * Makes a raw http request. - * All other methods such as get, post, patch, and request ultimately call this. - * Prefer get, del, post and patch - */ - request(verb, requestUrl, data, headers) { - return __awaiter(this, void 0, void 0, function* () { - if (this._disposed) { - throw new Error('Client has already been disposed.'); - } - const parsedUrl = new URL(requestUrl); - let info = this._prepareRequest(verb, parsedUrl, headers); - // Only perform retries on reads since writes may not be idempotent. - const maxTries = this._allowRetries && RetryableHttpVerbs.includes(verb) - ? this._maxRetries + 1 - : 1; - let numTries = 0; - let response; - do { - response = yield this.requestRaw(info, data); - // Check if it's an authentication challenge - if (response && - response.message && - response.message.statusCode === HttpCodes.Unauthorized) { - let authenticationHandler; - for (const handler of this.handlers) { - if (handler.canHandleAuthentication(response)) { - authenticationHandler = handler; - break; - } - } - if (authenticationHandler) { - return authenticationHandler.handleAuthentication(this, info, data); - } - else { - // We have received an unauthorized response but have no handlers to handle it. - // Let the response return to the caller. - return response; - } - } - let redirectsRemaining = this._maxRedirects; - while (response.message.statusCode && - HttpRedirectCodes.includes(response.message.statusCode) && - this._allowRedirects && - redirectsRemaining > 0) { - const redirectUrl = response.message.headers['location']; - if (!redirectUrl) { - // if there's no location to redirect to, we won't - break; - } - const parsedRedirectUrl = new URL(redirectUrl); - if (parsedUrl.protocol === 'https:' && - parsedUrl.protocol !== parsedRedirectUrl.protocol && - !this._allowRedirectDowngrade) { - throw new Error('Redirect from HTTPS to HTTP protocol. This downgrade is not allowed for security reasons. If you want to allow this behavior, set the allowRedirectDowngrade option to true.'); - } - // we need to finish reading the response before reassigning response - // which will leak the open socket. - yield response.readBody(); - // strip authorization header if redirected to a different hostname - if (parsedRedirectUrl.hostname !== parsedUrl.hostname) { - for (const header in headers) { - // header names are case insensitive - if (header.toLowerCase() === 'authorization') { - delete headers[header]; - } - } - } - // let's make the request with the new redirectUrl - info = this._prepareRequest(verb, parsedRedirectUrl, headers); - response = yield this.requestRaw(info, data); - redirectsRemaining--; - } - if (!response.message.statusCode || - !HttpResponseRetryCodes.includes(response.message.statusCode)) { - // If not a retry code, return immediately instead of retrying - return response; - } - numTries += 1; - if (numTries < maxTries) { - yield response.readBody(); - yield this._performExponentialBackoff(numTries); - } - } while (numTries < maxTries); - return response; - }); - } - /** - * Needs to be called if keepAlive is set to true in request options. - */ - dispose() { - if (this._agent) { - this._agent.destroy(); - } - this._disposed = true; - } - /** - * Raw request. - * @param info - * @param data - */ - requestRaw(info, data) { - return __awaiter(this, void 0, void 0, function* () { - return new Promise((resolve, reject) => { - function callbackForResult(err, res) { - if (err) { - reject(err); - } - else if (!res) { - // If `err` is not passed, then `res` must be passed. - reject(new Error('Unknown error')); - } - else { - resolve(res); - } - } - this.requestRawWithCallback(info, data, callbackForResult); - }); - }); - } - /** - * Raw request with callback. - * @param info - * @param data - * @param onResult - */ - requestRawWithCallback(info, data, onResult) { - if (typeof data === 'string') { - if (!info.options.headers) { - info.options.headers = {}; - } - info.options.headers['Content-Length'] = Buffer.byteLength(data, 'utf8'); - } - let callbackCalled = false; - function handleResult(err, res) { - if (!callbackCalled) { - callbackCalled = true; - onResult(err, res); - } - } - const req = info.httpModule.request(info.options, (msg) => { - const res = new HttpClientResponse(msg); - handleResult(undefined, res); - }); - let socket; - req.on('socket', sock => { - socket = sock; - }); - // If we ever get disconnected, we want the socket to timeout eventually - req.setTimeout(this._socketTimeout || 3 * 60000, () => { - if (socket) { - socket.end(); - } - handleResult(new Error(`Request timeout: ${info.options.path}`)); - }); - req.on('error', function (err) { - // err has statusCode property - // res should have headers - handleResult(err); - }); - if (data && typeof data === 'string') { - req.write(data, 'utf8'); - } - if (data && typeof data !== 'string') { - data.on('close', function () { - req.end(); - }); - data.pipe(req); - } - else { - req.end(); - } - } - /** - * Gets an http agent. This function is useful when you need an http agent that handles - * routing through a proxy server - depending upon the url and proxy environment variables. - * @param serverUrl The server URL where the request will be sent. For example, https://api.github.com - */ - getAgent(serverUrl) { - const parsedUrl = new URL(serverUrl); - return this._getAgent(parsedUrl); - } - _prepareRequest(method, requestUrl, headers) { - const info = {}; - info.parsedUrl = requestUrl; - const usingSsl = info.parsedUrl.protocol === 'https:'; - info.httpModule = usingSsl ? https : http; - const defaultPort = usingSsl ? 443 : 80; - info.options = {}; - info.options.host = info.parsedUrl.hostname; - info.options.port = info.parsedUrl.port - ? parseInt(info.parsedUrl.port) - : defaultPort; - info.options.path = - (info.parsedUrl.pathname || '') + (info.parsedUrl.search || ''); - info.options.method = method; - info.options.headers = this._mergeHeaders(headers); - if (this.userAgent != null) { - info.options.headers['user-agent'] = this.userAgent; - } - info.options.agent = this._getAgent(info.parsedUrl); - // gives handlers an opportunity to participate - if (this.handlers) { - for (const handler of this.handlers) { - handler.prepareRequest(info.options); - } - } - return info; - } - _mergeHeaders(headers) { - if (this.requestOptions && this.requestOptions.headers) { - return Object.assign({}, lowercaseKeys(this.requestOptions.headers), lowercaseKeys(headers || {})); - } - return lowercaseKeys(headers || {}); - } - _getExistingOrDefaultHeader(additionalHeaders, header, _default) { - let clientHeader; - if (this.requestOptions && this.requestOptions.headers) { - clientHeader = lowercaseKeys(this.requestOptions.headers)[header]; - } - return additionalHeaders[header] || clientHeader || _default; - } - _getAgent(parsedUrl) { - let agent; - const proxyUrl = pm.getProxyUrl(parsedUrl); - const useProxy = proxyUrl && proxyUrl.hostname; - if (this._keepAlive && useProxy) { - agent = this._proxyAgent; - } - if (this._keepAlive && !useProxy) { - agent = this._agent; - } - // if agent is already assigned use that agent. - if (agent) { - return agent; - } - const usingSsl = parsedUrl.protocol === 'https:'; - let maxSockets = 100; - if (this.requestOptions) { - maxSockets = this.requestOptions.maxSockets || http.globalAgent.maxSockets; - } - // This is `useProxy` again, but we need to check `proxyURl` directly for TypeScripts's flow analysis. - if (proxyUrl && proxyUrl.hostname) { - const agentOptions = { - maxSockets, - keepAlive: this._keepAlive, - proxy: Object.assign(Object.assign({}, ((proxyUrl.username || proxyUrl.password) && { - proxyAuth: `${proxyUrl.username}:${proxyUrl.password}` - })), { host: proxyUrl.hostname, port: proxyUrl.port }) - }; - let tunnelAgent; - const overHttps = proxyUrl.protocol === 'https:'; - if (usingSsl) { - tunnelAgent = overHttps ? tunnel.httpsOverHttps : tunnel.httpsOverHttp; - } - else { - tunnelAgent = overHttps ? tunnel.httpOverHttps : tunnel.httpOverHttp; - } - agent = tunnelAgent(agentOptions); - this._proxyAgent = agent; - } - // if reusing agent across request and tunneling agent isn't assigned create a new agent - if (this._keepAlive && !agent) { - const options = { keepAlive: this._keepAlive, maxSockets }; - agent = usingSsl ? new https.Agent(options) : new http.Agent(options); - this._agent = agent; - } - // if not using private agent and tunnel agent isn't setup then use global agent - if (!agent) { - agent = usingSsl ? https.globalAgent : http.globalAgent; - } - if (usingSsl && this._ignoreSslError) { - // we don't want to set NODE_TLS_REJECT_UNAUTHORIZED=0 since that will affect request for entire process - // http.RequestOptions doesn't expose a way to modify RequestOptions.agent.options - // we have to cast it to any and change it directly - agent.options = Object.assign(agent.options || {}, { - rejectUnauthorized: false - }); - } - return agent; - } - _performExponentialBackoff(retryNumber) { - return __awaiter(this, void 0, void 0, function* () { - retryNumber = Math.min(ExponentialBackoffCeiling, retryNumber); - const ms = ExponentialBackoffTimeSlice * Math.pow(2, retryNumber); - return new Promise(resolve => setTimeout(() => resolve(), ms)); - }); - } - _processResponse(res, options) { - return __awaiter(this, void 0, void 0, function* () { - return new Promise((resolve, reject) => __awaiter(this, void 0, void 0, function* () { - const statusCode = res.message.statusCode || 0; - const response = { - statusCode, - result: null, - headers: {} - }; - // not found leads to null obj returned - if (statusCode === HttpCodes.NotFound) { - resolve(response); - } - // get the result from the body - function dateTimeDeserializer(key, value) { - if (typeof value === 'string') { - const a = new Date(value); - if (!isNaN(a.valueOf())) { - return a; - } - } - return value; - } - let obj; - let contents; - try { - contents = yield res.readBody(); - if (contents && contents.length > 0) { - if (options && options.deserializeDates) { - obj = JSON.parse(contents, dateTimeDeserializer); - } - else { - obj = JSON.parse(contents); - } - response.result = obj; - } - response.headers = res.message.headers; - } - catch (err) { - // Invalid resource (contents not json); leaving result obj null - } - // note that 3xx redirects are handled by the http layer. - if (statusCode > 299) { - let msg; - // if exception/error in body, attempt to get better error - if (obj && obj.message) { - msg = obj.message; - } - else if (contents && contents.length > 0) { - // it may be the case that the exception is in the body message as string - msg = contents; - } - else { - msg = `Failed request: (${statusCode})`; - } - const err = new HttpClientError(msg, statusCode); - err.result = response.result; - reject(err); - } - else { - resolve(response); - } - })); - }); - } -} -exports.HttpClient = HttpClient; -const lowercaseKeys = (obj) => Object.keys(obj).reduce((c, k) => ((c[k.toLowerCase()] = obj[k]), c), {}); -//# sourceMappingURL=index.js.map - -/***/ }), - -/***/ 7774: -/***/ ((__unused_webpack_module, exports) => { - -"use strict"; - -Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.checkBypass = exports.getProxyUrl = void 0; -function getProxyUrl(reqUrl) { - const usingSsl = reqUrl.protocol === 'https:'; - if (checkBypass(reqUrl)) { - return undefined; - } - const proxyVar = (() => { - if (usingSsl) { - return process.env['https_proxy'] || process.env['HTTPS_PROXY']; - } - else { - return process.env['http_proxy'] || process.env['HTTP_PROXY']; - } - })(); - if (proxyVar) { - return new URL(proxyVar); - } - else { - return undefined; - } -} -exports.getProxyUrl = getProxyUrl; -function checkBypass(reqUrl) { - if (!reqUrl.hostname) { - return false; - } - const noProxy = process.env['no_proxy'] || process.env['NO_PROXY'] || ''; - if (!noProxy) { - return false; - } - // Determine the request port - let reqPort; - if (reqUrl.port) { - reqPort = Number(reqUrl.port); - } - else if (reqUrl.protocol === 'http:') { - reqPort = 80; - } - else if (reqUrl.protocol === 'https:') { - reqPort = 443; - } - // Format the request hostname and hostname with port - const upperReqHosts = [reqUrl.hostname.toUpperCase()]; - if (typeof reqPort === 'number') { - upperReqHosts.push(`${upperReqHosts[0]}:${reqPort}`); - } - // Compare request host against noproxy - for (const upperNoProxyItem of noProxy - .split(',') - .map(x => x.trim().toUpperCase()) - .filter(x => x)) { - if (upperReqHosts.some(x => x === upperNoProxyItem)) { - return true; - } - } - return false; -} -exports.checkBypass = checkBypass; -//# sourceMappingURL=proxy.js.map - -/***/ }), - -/***/ 6611: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { - -module.exports = __nccwpck_require__(1762); - -/***/ }), - -/***/ 681: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { - -module.exports = __nccwpck_require__(7303); - -/***/ }), - -/***/ 9014: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { - -module.exports = __nccwpck_require__(3452); - -/***/ }), - -/***/ 7929: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { - -module.exports = __nccwpck_require__(7902); - -/***/ }), - -/***/ 6037: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { - -module.exports = __nccwpck_require__(5406); - -/***/ }), - -/***/ 3884: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { - -module.exports = __nccwpck_require__(3348); - -/***/ }), - -/***/ 8315: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { - -module.exports = __nccwpck_require__(1369); - -/***/ }), - -/***/ 2061: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { - -module.exports = __nccwpck_require__(3841); - -/***/ }), - -/***/ 9150: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { - -module.exports = __nccwpck_require__(8580); - -/***/ }), - -/***/ 6684: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { - -module.exports = __nccwpck_require__(2627); - -/***/ }), - -/***/ 1625: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { - -module.exports = __nccwpck_require__(4742); - -/***/ }), - -/***/ 8305: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { - -module.exports = __nccwpck_require__(5433); - -/***/ }), - -/***/ 6778: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { - -module.exports = __nccwpck_require__(970); - -/***/ }), - -/***/ 3092: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { - -module.exports = __nccwpck_require__(6206); - -/***/ }), - -/***/ 3122: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { - -module.exports = __nccwpck_require__(8284); - -/***/ }), - -/***/ 5633: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { - -module.exports = __nccwpck_require__(353); - -/***/ }), - -/***/ 2537: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { - -module.exports = __nccwpck_require__(1087); - -/***/ }), - -/***/ 8543: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { - -module.exports = __nccwpck_require__(8831); - -/***/ }), - -/***/ 524: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { - -module.exports = __nccwpck_require__(171); - -/***/ }), - -/***/ 8888: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { - -module.exports = __nccwpck_require__(3725); - -/***/ }), - -/***/ 6717: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { - -module.exports = __nccwpck_require__(5537); - -/***/ }), - -/***/ 7987: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { - -module.exports = __nccwpck_require__(8041); - -/***/ }), - -/***/ 6626: -/***/ ((module) => { - -function _arrayLikeToArray(arr, len) { - if (len == null || len > arr.length) len = arr.length; - - for (var i = 0, arr2 = new Array(len); i < len; i++) { - arr2[i] = arr[i]; - } - - return arr2; -} - -module.exports = _arrayLikeToArray; - -/***/ }), - -/***/ 5703: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { - -var _Array$isArray = __nccwpck_require__(2537); - -function _arrayWithHoles(arr) { - if (_Array$isArray(arr)) return arr; -} - -module.exports = _arrayWithHoles; - -/***/ }), - -/***/ 3393: -/***/ ((module) => { - -function _interopRequireDefault(obj) { - return obj && obj.__esModule ? obj : { - "default": obj - }; -} - -module.exports = _interopRequireDefault; - -/***/ }), - -/***/ 2985: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { - -var _getIterator = __nccwpck_require__(524); - -var _isIterable = __nccwpck_require__(6717); - -var _Symbol = __nccwpck_require__(7987); - -function _iterableToArrayLimit(arr, i) { - if (typeof _Symbol === "undefined" || !_isIterable(Object(arr))) return; - var _arr = []; - var _n = true; - var _d = false; - var _e = undefined; - - try { - for (var _i = _getIterator(arr), _s; !(_n = (_s = _i.next()).done); _n = true) { - _arr.push(_s.value); - - if (i && _arr.length === i) break; - } - } catch (err) { - _d = true; - _e = err; - } finally { - try { - if (!_n && _i["return"] != null) _i["return"](); - } finally { - if (_d) throw _e; - } - } - - return _arr; -} - -module.exports = _iterableToArrayLimit; - -/***/ }), - -/***/ 6668: -/***/ ((module) => { - -function _nonIterableRest() { - throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); -} - -module.exports = _nonIterableRest; - -/***/ }), - -/***/ 6288: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { - -var arrayWithHoles = __nccwpck_require__(5703); - -var iterableToArrayLimit = __nccwpck_require__(2985); - -var unsupportedIterableToArray = __nccwpck_require__(9972); - -var nonIterableRest = __nccwpck_require__(6668); - -function _slicedToArray(arr, i) { - return arrayWithHoles(arr) || iterableToArrayLimit(arr, i) || unsupportedIterableToArray(arr, i) || nonIterableRest(); -} - -module.exports = _slicedToArray; - -/***/ }), - -/***/ 9972: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { - -var _Array$from = __nccwpck_require__(5633); - -var _sliceInstanceProperty = __nccwpck_require__(8888); - -var arrayLikeToArray = __nccwpck_require__(6626); - -function _unsupportedIterableToArray(o, minLen) { - var _context; - - if (!o) return; - if (typeof o === "string") return arrayLikeToArray(o, minLen); - - var n = _sliceInstanceProperty(_context = Object.prototype.toString.call(o)).call(_context, 8, -1); - - if (n === "Object" && o.constructor) n = o.constructor.name; - if (n === "Map" || n === "Set") return _Array$from(o); - if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return arrayLikeToArray(o, minLen); -} - -module.exports = _unsupportedIterableToArray; - -/***/ }), - -/***/ 3271: -/***/ ((__unused_webpack_module, exports) => { - -"use strict"; - - + Object.defineProperty(exports, "__esModule", ({ value: true })); const REGEX_IS_INSTALLATION_LEGACY = /^v1\./; @@ -2998,7 +2041,7 @@ exports.createTokenAuth = createTokenAuth; /***/ }), -/***/ 3777: +/***/ 4887: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -3006,11 +2049,11 @@ exports.createTokenAuth = createTokenAuth; Object.defineProperty(exports, "__esModule", ({ value: true })); -var universalUserAgent = __nccwpck_require__(6561); -var beforeAfterHook = __nccwpck_require__(5461); -var request = __nccwpck_require__(9016); -var graphql = __nccwpck_require__(8000); -var authToken = __nccwpck_require__(3271); +var universalUserAgent = __nccwpck_require__(6943); +var beforeAfterHook = __nccwpck_require__(8175); +var request = __nccwpck_require__(1106); +var graphql = __nccwpck_require__(6322); +var authToken = __nccwpck_require__(4941); function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; @@ -3182,7 +2225,7 @@ exports.Octokit = Octokit; /***/ }), -/***/ 8398: +/***/ 5053: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -3190,8 +2233,8 @@ exports.Octokit = Octokit; Object.defineProperty(exports, "__esModule", ({ value: true })); -var isPlainObject = __nccwpck_require__(2328); -var universalUserAgent = __nccwpck_require__(6561); +var isPlainObject = __nccwpck_require__(1083); +var universalUserAgent = __nccwpck_require__(6943); function lowercaseKeys(object) { if (!object) { @@ -3580,7 +2623,7 @@ exports.endpoint = endpoint; /***/ }), -/***/ 8000: +/***/ 6322: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -3588,8 +2631,8 @@ exports.endpoint = endpoint; Object.defineProperty(exports, "__esModule", ({ value: true })); -var request = __nccwpck_require__(9016); -var universalUserAgent = __nccwpck_require__(6561); +var request = __nccwpck_require__(1106); +var universalUserAgent = __nccwpck_require__(6943); const VERSION = "4.8.0"; @@ -3706,7 +2749,7 @@ exports.withCustomRequest = withCustomRequest; /***/ }), -/***/ 3287: +/***/ 6858: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -3919,7 +2962,7 @@ exports.paginatingEndpoints = paginatingEndpoints; /***/ }), -/***/ 6517: +/***/ 8671: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -5034,7 +4077,7 @@ exports.restEndpointMethods = restEndpointMethods; /***/ }), -/***/ 4876: +/***/ 9134: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -5044,8 +4087,8 @@ Object.defineProperty(exports, "__esModule", ({ value: true })); function _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'default' in ex) ? ex['default'] : ex; } -var deprecation = __nccwpck_require__(668); -var once = _interopDefault(__nccwpck_require__(1935)); +var deprecation = __nccwpck_require__(731); +var once = _interopDefault(__nccwpck_require__(358)); const logOnceCode = once(deprecation => console.warn(deprecation)); const logOnceHeaders = once(deprecation => console.warn(deprecation)); @@ -5116,7 +4159,7 @@ exports.RequestError = RequestError; /***/ }), -/***/ 9016: +/***/ 1106: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -5126,11 +4169,11 @@ Object.defineProperty(exports, "__esModule", ({ value: true })); function _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'default' in ex) ? ex['default'] : ex; } -var endpoint = __nccwpck_require__(8398); -var universalUserAgent = __nccwpck_require__(6561); -var isPlainObject = __nccwpck_require__(2328); -var nodeFetch = _interopDefault(__nccwpck_require__(9200)); -var requestError = __nccwpck_require__(4876); +var endpoint = __nccwpck_require__(5053); +var universalUserAgent = __nccwpck_require__(6943); +var isPlainObject = __nccwpck_require__(1083); +var nodeFetch = _interopDefault(__nccwpck_require__(1968)); +var requestError = __nccwpck_require__(9134); const VERSION = "5.6.3"; @@ -5301,71 +4344,75 @@ exports.request = request; /***/ }), -/***/ 5461: +/***/ 8175: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var register = __nccwpck_require__(9703) -var addHook = __nccwpck_require__(5719) -var removeHook = __nccwpck_require__(5793) +var register = __nccwpck_require__(7250); +var addHook = __nccwpck_require__(9315); +var removeHook = __nccwpck_require__(9400); // bind with array of arguments: https://stackoverflow.com/a/21792913 -var bind = Function.bind -var bindable = bind.bind(bind) - -function bindApi (hook, state, name) { - var removeHookRef = bindable(removeHook, null).apply(null, name ? [state, name] : [state]) - hook.api = { remove: removeHookRef } - hook.remove = removeHookRef - - ;['before', 'error', 'after', 'wrap'].forEach(function (kind) { - var args = name ? [state, kind, name] : [state, kind] - hook[kind] = hook.api[kind] = bindable(addHook, null).apply(null, args) - }) +var bind = Function.bind; +var bindable = bind.bind(bind); + +function bindApi(hook, state, name) { + var removeHookRef = bindable(removeHook, null).apply( + null, + name ? [state, name] : [state] + ); + hook.api = { remove: removeHookRef }; + hook.remove = removeHookRef; + ["before", "error", "after", "wrap"].forEach(function (kind) { + var args = name ? [state, kind, name] : [state, kind]; + hook[kind] = hook.api[kind] = bindable(addHook, null).apply(null, args); + }); } -function HookSingular () { - var singularHookName = 'h' +function HookSingular() { + var singularHookName = "h"; var singularHookState = { - registry: {} - } - var singularHook = register.bind(null, singularHookState, singularHookName) - bindApi(singularHook, singularHookState, singularHookName) - return singularHook + registry: {}, + }; + var singularHook = register.bind(null, singularHookState, singularHookName); + bindApi(singularHook, singularHookState, singularHookName); + return singularHook; } -function HookCollection () { +function HookCollection() { var state = { - registry: {} - } + registry: {}, + }; - var hook = register.bind(null, state) - bindApi(hook, state) + var hook = register.bind(null, state); + bindApi(hook, state); - return hook + return hook; } -var collectionHookDeprecationMessageDisplayed = false -function Hook () { +var collectionHookDeprecationMessageDisplayed = false; +function Hook() { if (!collectionHookDeprecationMessageDisplayed) { - console.warn('[before-after-hook]: "Hook()" repurposing warning, use "Hook.Collection()". Read more: https://git.io/upgrade-before-after-hook-to-1.4') - collectionHookDeprecationMessageDisplayed = true + console.warn( + '[before-after-hook]: "Hook()" repurposing warning, use "Hook.Collection()". Read more: https://git.io/upgrade-before-after-hook-to-1.4' + ); + collectionHookDeprecationMessageDisplayed = true; } - return HookCollection() + return HookCollection(); } -Hook.Singular = HookSingular.bind() -Hook.Collection = HookCollection.bind() +Hook.Singular = HookSingular.bind(); +Hook.Collection = HookCollection.bind(); -module.exports = Hook +module.exports = Hook; // expose constructors as a named property for TypeScript -module.exports.Hook = Hook -module.exports.Singular = Hook.Singular -module.exports.Collection = Hook.Collection +module.exports.Hook = Hook; +module.exports.Singular = Hook.Singular; +module.exports.Collection = Hook.Collection; /***/ }), -/***/ 5719: +/***/ 9315: /***/ ((module) => { module.exports = addHook; @@ -5418,7 +4465,7 @@ function addHook(state, kind, name, hook) { /***/ }), -/***/ 9703: +/***/ 7250: /***/ ((module) => { module.exports = register; @@ -5452,7 +4499,7 @@ function register(state, name, method, options) { /***/ }), -/***/ 5793: +/***/ 9400: /***/ ((module) => { module.exports = removeHook; @@ -5478,246 +4525,338 @@ function removeHook(state, name, method) { /***/ }), -/***/ 2880: +/***/ 7824: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +var parent = __nccwpck_require__(2444); + +module.exports = parent; + + +/***/ }), + +/***/ 1915: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +var parent = __nccwpck_require__(9575); + +module.exports = parent; + + +/***/ }), + +/***/ 5577: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +var parent = __nccwpck_require__(8189); + +module.exports = parent; + + +/***/ }), + +/***/ 1998: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +var parent = __nccwpck_require__(5040); + +module.exports = parent; + + +/***/ }), + +/***/ 5808: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +var parent = __nccwpck_require__(6312); + +module.exports = parent; + + +/***/ }), + +/***/ 6056: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +var parent = __nccwpck_require__(43); + +module.exports = parent; + + +/***/ }), + +/***/ 4721: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -__nccwpck_require__(7082); -__nccwpck_require__(2843); -var path = __nccwpck_require__(1278); +__nccwpck_require__(7826); +__nccwpck_require__(6129); +var path = __nccwpck_require__(9268); module.exports = path.Array.from; /***/ }), -/***/ 3498: +/***/ 9840: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -__nccwpck_require__(5613); -var path = __nccwpck_require__(1278); +__nccwpck_require__(6403); +var path = __nccwpck_require__(9268); module.exports = path.Array.isArray; /***/ }), -/***/ 8177: +/***/ 5255: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -__nccwpck_require__(724); -var entryVirtual = __nccwpck_require__(1); +__nccwpck_require__(7063); +var entryVirtual = __nccwpck_require__(8626); module.exports = entryVirtual('Array').concat; /***/ }), -/***/ 9553: +/***/ 5017: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -__nccwpck_require__(6968); -var entryVirtual = __nccwpck_require__(1); +__nccwpck_require__(7586); +var entryVirtual = __nccwpck_require__(8626); module.exports = entryVirtual('Array').forEach; /***/ }), -/***/ 4610: +/***/ 4145: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -__nccwpck_require__(8224); -var entryVirtual = __nccwpck_require__(1); +__nccwpck_require__(4249); +var entryVirtual = __nccwpck_require__(8626); module.exports = entryVirtual('Array').includes; /***/ }), -/***/ 6834: +/***/ 9033: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -__nccwpck_require__(9226); -var entryVirtual = __nccwpck_require__(1); +__nccwpck_require__(8318); +var entryVirtual = __nccwpck_require__(8626); module.exports = entryVirtual('Array').indexOf; /***/ }), -/***/ 4460: +/***/ 5172: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -__nccwpck_require__(977); -var entryVirtual = __nccwpck_require__(1); +__nccwpck_require__(2740); +var entryVirtual = __nccwpck_require__(8626); module.exports = entryVirtual('Array').map; /***/ }), -/***/ 2538: +/***/ 5967: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -__nccwpck_require__(7829); -var entryVirtual = __nccwpck_require__(1); +__nccwpck_require__(2463); +var entryVirtual = __nccwpck_require__(8626); module.exports = entryVirtual('Array').reduce; /***/ }), -/***/ 2041: +/***/ 1829: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -__nccwpck_require__(3009); -var entryVirtual = __nccwpck_require__(1); +__nccwpck_require__(8951); +var entryVirtual = __nccwpck_require__(8626); module.exports = entryVirtual('Array').slice; /***/ }), -/***/ 6525: +/***/ 3015: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -__nccwpck_require__(7432); -var entryVirtual = __nccwpck_require__(1); +__nccwpck_require__(3034); +var entryVirtual = __nccwpck_require__(8626); module.exports = entryVirtual('Array').sort; /***/ }), -/***/ 2308: +/***/ 7721: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var concat = __nccwpck_require__(8177); +__nccwpck_require__(6236); +__nccwpck_require__(7826); +var getIteratorMethod = __nccwpck_require__(7942); + +module.exports = getIteratorMethod; + + +/***/ }), + +/***/ 1092: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +__nccwpck_require__(6236); +__nccwpck_require__(7826); +var getIterator = __nccwpck_require__(7044); + +module.exports = getIterator; + + +/***/ }), + +/***/ 696: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +var isPrototypeOf = __nccwpck_require__(915); +var method = __nccwpck_require__(5255); var ArrayPrototype = Array.prototype; module.exports = function (it) { var own = it.concat; - return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.concat) ? concat : own; + return it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.concat) ? method : own; }; /***/ }), -/***/ 461: +/***/ 9412: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var flags = __nccwpck_require__(2326); +var isPrototypeOf = __nccwpck_require__(915); +var flags = __nccwpck_require__(1428); var RegExpPrototype = RegExp.prototype; module.exports = function (it) { - return (it === RegExpPrototype || it instanceof RegExp) && !('flags' in it) ? flags(it) : it.flags; + return (it === RegExpPrototype || isPrototypeOf(RegExpPrototype, it)) ? flags(it) : it.flags; }; /***/ }), -/***/ 5268: +/***/ 2133: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var arrayIncludes = __nccwpck_require__(4610); -var stringIncludes = __nccwpck_require__(702); +var isPrototypeOf = __nccwpck_require__(915); +var arrayMethod = __nccwpck_require__(4145); +var stringMethod = __nccwpck_require__(4976); var ArrayPrototype = Array.prototype; var StringPrototype = String.prototype; module.exports = function (it) { var own = it.includes; - if (it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.includes)) return arrayIncludes; - if (typeof it === 'string' || it === StringPrototype || (it instanceof String && own === StringPrototype.includes)) { - return stringIncludes; + if (it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.includes)) return arrayMethod; + if (typeof it == 'string' || it === StringPrototype || (isPrototypeOf(StringPrototype, it) && own === StringPrototype.includes)) { + return stringMethod; } return own; }; /***/ }), -/***/ 5574: +/***/ 7442: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var indexOf = __nccwpck_require__(6834); +var isPrototypeOf = __nccwpck_require__(915); +var method = __nccwpck_require__(9033); var ArrayPrototype = Array.prototype; module.exports = function (it) { var own = it.indexOf; - return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.indexOf) ? indexOf : own; + return it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.indexOf) ? method : own; }; /***/ }), -/***/ 4787: +/***/ 6405: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var map = __nccwpck_require__(4460); +var isPrototypeOf = __nccwpck_require__(915); +var method = __nccwpck_require__(5172); var ArrayPrototype = Array.prototype; module.exports = function (it) { var own = it.map; - return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.map) ? map : own; + return it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.map) ? method : own; }; /***/ }), -/***/ 3572: +/***/ 5159: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var reduce = __nccwpck_require__(2538); +var isPrototypeOf = __nccwpck_require__(915); +var method = __nccwpck_require__(5967); var ArrayPrototype = Array.prototype; module.exports = function (it) { var own = it.reduce; - return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.reduce) ? reduce : own; + return it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.reduce) ? method : own; }; /***/ }), -/***/ 9849: +/***/ 9656: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var slice = __nccwpck_require__(2041); +var isPrototypeOf = __nccwpck_require__(915); +var method = __nccwpck_require__(1829); var ArrayPrototype = Array.prototype; module.exports = function (it) { var own = it.slice; - return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.slice) ? slice : own; + return it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.slice) ? method : own; }; /***/ }), -/***/ 2467: +/***/ 7809: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var sort = __nccwpck_require__(6525); +var isPrototypeOf = __nccwpck_require__(915); +var method = __nccwpck_require__(3015); var ArrayPrototype = Array.prototype; module.exports = function (it) { var own = it.sort; - return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.sort) ? sort : own; + return it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.sort) ? method : own; }; /***/ }), -/***/ 5664: +/***/ 6637: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -__nccwpck_require__(5532); -var path = __nccwpck_require__(1278); +__nccwpck_require__(8007); +var path = __nccwpck_require__(9268); var Object = path.Object; @@ -5728,11 +4867,11 @@ module.exports = function create(P, D) { /***/ }), -/***/ 3484: +/***/ 9915: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -__nccwpck_require__(5215); -var path = __nccwpck_require__(1278); +__nccwpck_require__(8194); +var path = __nccwpck_require__(9268); var Object = path.Object; @@ -5745,180 +4884,220 @@ if (Object.defineProperty.sham) defineProperty.sham = true; /***/ }), -/***/ 3889: +/***/ 1457: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -__nccwpck_require__(7137); -var path = __nccwpck_require__(1278); +__nccwpck_require__(9332); +var path = __nccwpck_require__(9268); module.exports = path.parseInt; /***/ }), -/***/ 2326: +/***/ 1428: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -__nccwpck_require__(4958); -var flags = __nccwpck_require__(4394); +__nccwpck_require__(2400); +var getRegExpFlags = __nccwpck_require__(3633); -module.exports = function (it) { - return flags.call(it); -}; +module.exports = getRegExpFlags; /***/ }), -/***/ 702: +/***/ 4976: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -__nccwpck_require__(906); -var entryVirtual = __nccwpck_require__(1); +__nccwpck_require__(9226); +var entryVirtual = __nccwpck_require__(8626); module.exports = entryVirtual('String').includes; /***/ }), -/***/ 5701: +/***/ 8920: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -__nccwpck_require__(724); -__nccwpck_require__(6338); -__nccwpck_require__(8619); -__nccwpck_require__(8801); -__nccwpck_require__(5736); -__nccwpck_require__(9627); -__nccwpck_require__(401); -__nccwpck_require__(3732); -__nccwpck_require__(6091); -__nccwpck_require__(5123); -__nccwpck_require__(9937); -__nccwpck_require__(2185); -__nccwpck_require__(3475); -__nccwpck_require__(4654); -__nccwpck_require__(1944); -__nccwpck_require__(1776); -__nccwpck_require__(8527); -__nccwpck_require__(8829); -__nccwpck_require__(7156); -__nccwpck_require__(1916); -var path = __nccwpck_require__(1278); +__nccwpck_require__(7063); +__nccwpck_require__(9932); +__nccwpck_require__(9427); +__nccwpck_require__(8659); +__nccwpck_require__(523); +__nccwpck_require__(9540); +__nccwpck_require__(6052); +__nccwpck_require__(5126); +__nccwpck_require__(2589); +__nccwpck_require__(4640); +__nccwpck_require__(2585); +__nccwpck_require__(4205); +__nccwpck_require__(1763); +__nccwpck_require__(2678); +__nccwpck_require__(6762); +__nccwpck_require__(938); +__nccwpck_require__(1263); +__nccwpck_require__(2437); +__nccwpck_require__(6667); +__nccwpck_require__(6153); +var path = __nccwpck_require__(9268); module.exports = path.Symbol; /***/ }), -/***/ 353: +/***/ 7133: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var parent = __nccwpck_require__(2880); +module.exports = __nccwpck_require__(9852); -module.exports = parent; + +/***/ }), + +/***/ 9850: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +module.exports = __nccwpck_require__(9682); + + +/***/ }), + +/***/ 1284: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +module.exports = __nccwpck_require__(7215); /***/ }), -/***/ 1087: +/***/ 1130: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var parent = __nccwpck_require__(3498); +module.exports = __nccwpck_require__(9676); + + +/***/ }), + +/***/ 6467: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +module.exports = __nccwpck_require__(8493); + + +/***/ }), + +/***/ 9910: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +module.exports = __nccwpck_require__(8546); + + +/***/ }), + +/***/ 9852: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +var parent = __nccwpck_require__(7824); module.exports = parent; /***/ }), -/***/ 8831: +/***/ 9682: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -__nccwpck_require__(9442); -__nccwpck_require__(7082); -var getIteratorMethod = __nccwpck_require__(2780); +var parent = __nccwpck_require__(1915); -module.exports = getIteratorMethod; +module.exports = parent; /***/ }), -/***/ 171: +/***/ 7215: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -__nccwpck_require__(9442); -__nccwpck_require__(7082); -var getIterator = __nccwpck_require__(2129); +var parent = __nccwpck_require__(5577); -module.exports = getIterator; +module.exports = parent; /***/ }), -/***/ 3725: +/***/ 9676: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var parent = __nccwpck_require__(9849); +var parent = __nccwpck_require__(1998); module.exports = parent; /***/ }), -/***/ 5537: +/***/ 8493: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -__nccwpck_require__(9442); -__nccwpck_require__(7082); -var isIterable = __nccwpck_require__(3112); +var parent = __nccwpck_require__(5808); -module.exports = isIterable; +module.exports = parent; /***/ }), -/***/ 8041: +/***/ 8546: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var parent = __nccwpck_require__(5701); -__nccwpck_require__(4684); -__nccwpck_require__(1715); -__nccwpck_require__(8629); -__nccwpck_require__(7564); +var parent = __nccwpck_require__(6056); +__nccwpck_require__(2196); +__nccwpck_require__(8250); +__nccwpck_require__(1079); +__nccwpck_require__(2256); +__nccwpck_require__(3383); // TODO: Remove from `core-js@4` -__nccwpck_require__(4758); +__nccwpck_require__(835); +__nccwpck_require__(5144); +__nccwpck_require__(4652); module.exports = parent; /***/ }), -/***/ 3687: -/***/ ((module) => { +/***/ 1696: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -module.exports = function (it) { - if (typeof it != 'function') { - throw TypeError(String(it) + ' is not a function'); - } return it; +var isCallable = __nccwpck_require__(7763); +var tryToString = __nccwpck_require__(4914); + +var $TypeError = TypeError; + +// `Assert: IsCallable(argument) is true` +module.exports = function (argument) { + if (isCallable(argument)) return argument; + throw $TypeError(tryToString(argument) + ' is not a function'); }; /***/ }), -/***/ 2136: +/***/ 8274: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var isObject = __nccwpck_require__(3596); +var isCallable = __nccwpck_require__(7763); -module.exports = function (it) { - if (!isObject(it) && it !== null) { - throw TypeError("Can't set " + String(it) + ' as a prototype'); - } return it; +var $String = String; +var $TypeError = TypeError; + +module.exports = function (argument) { + if (typeof argument == 'object' || isCallable(argument)) return argument; + throw $TypeError("Can't set " + $String(argument) + ' as a prototype'); }; /***/ }), -/***/ 7035: +/***/ 5959: /***/ ((module) => { module.exports = function () { /* empty */ }; @@ -5926,78 +5105,85 @@ module.exports = function () { /* empty */ }; /***/ }), -/***/ 218: +/***/ 536: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var isObject = __nccwpck_require__(3596); +var isObject = __nccwpck_require__(4870); -module.exports = function (it) { - if (!isObject(it)) { - throw TypeError(String(it) + ' is not an object'); - } return it; +var $String = String; +var $TypeError = TypeError; + +// `Assert: Type(argument) is Object` +module.exports = function (argument) { + if (isObject(argument)) return argument; + throw $TypeError($String(argument) + ' is not an object'); }; /***/ }), -/***/ 9935: +/***/ 3649: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; -var $forEach = (__nccwpck_require__(7484).forEach); -var arrayMethodIsStrict = __nccwpck_require__(4667); -var arrayMethodUsesToLength = __nccwpck_require__(3591); +var $forEach = (__nccwpck_require__(8123).forEach); +var arrayMethodIsStrict = __nccwpck_require__(8459); var STRICT_METHOD = arrayMethodIsStrict('forEach'); -var USES_TO_LENGTH = arrayMethodUsesToLength('forEach'); // `Array.prototype.forEach` method implementation -// https://tc39.github.io/ecma262/#sec-array.prototype.foreach -module.exports = (!STRICT_METHOD || !USES_TO_LENGTH) ? function forEach(callbackfn /* , thisArg */) { +// https://tc39.es/ecma262/#sec-array.prototype.foreach +module.exports = !STRICT_METHOD ? function forEach(callbackfn /* , thisArg */) { return $forEach(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined); +// eslint-disable-next-line es/no-array-prototype-foreach -- safe } : [].forEach; /***/ }), -/***/ 8207: +/***/ 2591: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; -var bind = __nccwpck_require__(449); -var toObject = __nccwpck_require__(7510); -var callWithSafeIterationClosing = __nccwpck_require__(2244); -var isArrayIteratorMethod = __nccwpck_require__(2877); -var toLength = __nccwpck_require__(4048); -var createProperty = __nccwpck_require__(815); -var getIteratorMethod = __nccwpck_require__(2780); +var bind = __nccwpck_require__(7821); +var call = __nccwpck_require__(2956); +var toObject = __nccwpck_require__(2365); +var callWithSafeIterationClosing = __nccwpck_require__(1548); +var isArrayIteratorMethod = __nccwpck_require__(266); +var isConstructor = __nccwpck_require__(7984); +var lengthOfArrayLike = __nccwpck_require__(8141); +var createProperty = __nccwpck_require__(6489); +var getIterator = __nccwpck_require__(7044); +var getIteratorMethod = __nccwpck_require__(7942); + +var $Array = Array; // `Array.from` method implementation -// https://tc39.github.io/ecma262/#sec-array.from +// https://tc39.es/ecma262/#sec-array.from module.exports = function from(arrayLike /* , mapfn = undefined, thisArg = undefined */) { var O = toObject(arrayLike); - var C = typeof this == 'function' ? this : Array; + var IS_CONSTRUCTOR = isConstructor(this); var argumentsLength = arguments.length; var mapfn = argumentsLength > 1 ? arguments[1] : undefined; var mapping = mapfn !== undefined; + if (mapping) mapfn = bind(mapfn, argumentsLength > 2 ? arguments[2] : undefined); var iteratorMethod = getIteratorMethod(O); var index = 0; var length, result, step, iterator, next, value; - if (mapping) mapfn = bind(mapfn, argumentsLength > 2 ? arguments[2] : undefined, 2); // if the target is not iterable or it's an array with the default iterator - use a simple case - if (iteratorMethod != undefined && !(C == Array && isArrayIteratorMethod(iteratorMethod))) { - iterator = iteratorMethod.call(O); + if (iteratorMethod && !(this === $Array && isArrayIteratorMethod(iteratorMethod))) { + iterator = getIterator(O, iteratorMethod); next = iterator.next; - result = new C(); - for (;!(step = next.call(iterator)).done; index++) { + result = IS_CONSTRUCTOR ? new this() : []; + for (;!(step = call(next, iterator)).done; index++) { value = mapping ? callWithSafeIterationClosing(iterator, mapfn, [step.value, index], true) : step.value; createProperty(result, index, value); } } else { - length = toLength(O.length); - result = new C(length); + length = lengthOfArrayLike(O); + result = IS_CONSTRUCTOR ? new this(length) : $Array(length); for (;length > index; index++) { value = mapping ? mapfn(O[index], index) : O[index]; createProperty(result, index, value); @@ -6010,25 +5196,25 @@ module.exports = function from(arrayLike /* , mapfn = undefined, thisArg = undef /***/ }), -/***/ 4963: +/***/ 5320: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var toIndexedObject = __nccwpck_require__(6895); -var toLength = __nccwpck_require__(4048); -var toAbsoluteIndex = __nccwpck_require__(8320); +var toIndexedObject = __nccwpck_require__(5354); +var toAbsoluteIndex = __nccwpck_require__(8293); +var lengthOfArrayLike = __nccwpck_require__(8141); // `Array.prototype.{ indexOf, includes }` methods implementation var createMethod = function (IS_INCLUDES) { return function ($this, el, fromIndex) { var O = toIndexedObject($this); - var length = toLength(O.length); + var length = lengthOfArrayLike(O); var index = toAbsoluteIndex(fromIndex, length); var value; // Array#includes uses SameValueZero equality algorithm - // eslint-disable-next-line no-self-compare + // eslint-disable-next-line no-self-compare -- NaN check if (IS_INCLUDES && el != el) while (length > index) { value = O[index++]; - // eslint-disable-next-line no-self-compare + // eslint-disable-next-line no-self-compare -- NaN check if (value != value) return true; // Array#indexOf ignores holes, Array#includes - not } else for (;length > index; index++) { @@ -6039,43 +5225,45 @@ var createMethod = function (IS_INCLUDES) { module.exports = { // `Array.prototype.includes` method - // https://tc39.github.io/ecma262/#sec-array.prototype.includes + // https://tc39.es/ecma262/#sec-array.prototype.includes includes: createMethod(true), // `Array.prototype.indexOf` method - // https://tc39.github.io/ecma262/#sec-array.prototype.indexof + // https://tc39.es/ecma262/#sec-array.prototype.indexof indexOf: createMethod(false) }; /***/ }), -/***/ 7484: +/***/ 8123: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var bind = __nccwpck_require__(449); -var IndexedObject = __nccwpck_require__(5762); -var toObject = __nccwpck_require__(7510); -var toLength = __nccwpck_require__(4048); -var arraySpeciesCreate = __nccwpck_require__(659); +var bind = __nccwpck_require__(7821); +var uncurryThis = __nccwpck_require__(1054); +var IndexedObject = __nccwpck_require__(1756); +var toObject = __nccwpck_require__(2365); +var lengthOfArrayLike = __nccwpck_require__(8141); +var arraySpeciesCreate = __nccwpck_require__(3039); -var push = [].push; +var push = uncurryThis([].push); -// `Array.prototype.{ forEach, map, filter, some, every, find, findIndex }` methods implementation +// `Array.prototype.{ forEach, map, filter, some, every, find, findIndex, filterReject }` methods implementation var createMethod = function (TYPE) { var IS_MAP = TYPE == 1; var IS_FILTER = TYPE == 2; var IS_SOME = TYPE == 3; var IS_EVERY = TYPE == 4; var IS_FIND_INDEX = TYPE == 6; + var IS_FILTER_REJECT = TYPE == 7; var NO_HOLES = TYPE == 5 || IS_FIND_INDEX; return function ($this, callbackfn, that, specificCreate) { var O = toObject($this); var self = IndexedObject(O); - var boundFunction = bind(callbackfn, that, 3); - var length = toLength(self.length); + var boundFunction = bind(callbackfn, that); + var length = lengthOfArrayLike(self); var index = 0; var create = specificCreate || arraySpeciesCreate; - var target = IS_MAP ? create($this, length) : IS_FILTER ? create($this, 0) : undefined; + var target = IS_MAP ? create($this, length) : IS_FILTER || IS_FILTER_REJECT ? create($this, 0) : undefined; var value, result; for (;length > index; index++) if (NO_HOLES || index in self) { value = self[index]; @@ -6086,8 +5274,11 @@ var createMethod = function (TYPE) { case 3: return true; // some case 5: return value; // find case 6: return index; // findIndex - case 2: push.call(target, value); // filter - } else if (IS_EVERY) return false; // every + case 2: push(target, value); // filter + } else switch (TYPE) { + case 4: return false; // every + case 7: push(target, value); // filterReject + } } } return IS_FIND_INDEX ? -1 : IS_SOME || IS_EVERY ? IS_EVERY : target; @@ -6096,37 +5287,40 @@ var createMethod = function (TYPE) { module.exports = { // `Array.prototype.forEach` method - // https://tc39.github.io/ecma262/#sec-array.prototype.foreach + // https://tc39.es/ecma262/#sec-array.prototype.foreach forEach: createMethod(0), // `Array.prototype.map` method - // https://tc39.github.io/ecma262/#sec-array.prototype.map + // https://tc39.es/ecma262/#sec-array.prototype.map map: createMethod(1), // `Array.prototype.filter` method - // https://tc39.github.io/ecma262/#sec-array.prototype.filter + // https://tc39.es/ecma262/#sec-array.prototype.filter filter: createMethod(2), // `Array.prototype.some` method - // https://tc39.github.io/ecma262/#sec-array.prototype.some + // https://tc39.es/ecma262/#sec-array.prototype.some some: createMethod(3), // `Array.prototype.every` method - // https://tc39.github.io/ecma262/#sec-array.prototype.every + // https://tc39.es/ecma262/#sec-array.prototype.every every: createMethod(4), // `Array.prototype.find` method - // https://tc39.github.io/ecma262/#sec-array.prototype.find + // https://tc39.es/ecma262/#sec-array.prototype.find find: createMethod(5), // `Array.prototype.findIndex` method - // https://tc39.github.io/ecma262/#sec-array.prototype.findIndex - findIndex: createMethod(6) + // https://tc39.es/ecma262/#sec-array.prototype.findIndex + findIndex: createMethod(6), + // `Array.prototype.filterReject` method + // https://github.com/tc39/proposal-array-filtering + filterReject: createMethod(7) }; /***/ }), -/***/ 9662: +/***/ 4243: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var fails = __nccwpck_require__(317); -var wellKnownSymbol = __nccwpck_require__(4814); -var V8_VERSION = __nccwpck_require__(7631); +var fails = __nccwpck_require__(8507); +var wellKnownSymbol = __nccwpck_require__(3423); +var V8_VERSION = __nccwpck_require__(8594); var SPECIES = wellKnownSymbol('species'); @@ -6147,73 +5341,41 @@ module.exports = function (METHOD_NAME) { /***/ }), -/***/ 4667: +/***/ 8459: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; -var fails = __nccwpck_require__(317); +var fails = __nccwpck_require__(8507); module.exports = function (METHOD_NAME, argument) { var method = [][METHOD_NAME]; return !!method && fails(function () { - // eslint-disable-next-line no-useless-call,no-throw-literal - method.call(null, argument || function () { throw 1; }, 1); + // eslint-disable-next-line no-useless-call -- required for testing + method.call(null, argument || function () { return 1; }, 1); }); }; /***/ }), -/***/ 3591: +/***/ 3296: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var DESCRIPTORS = __nccwpck_require__(8399); -var fails = __nccwpck_require__(317); -var has = __nccwpck_require__(3929); - -var defineProperty = Object.defineProperty; -var cache = {}; - -var thrower = function (it) { throw it; }; - -module.exports = function (METHOD_NAME, options) { - if (has(cache, METHOD_NAME)) return cache[METHOD_NAME]; - if (!options) options = {}; - var method = [][METHOD_NAME]; - var ACCESSORS = has(options, 'ACCESSORS') ? options.ACCESSORS : false; - var argument0 = has(options, 0) ? options[0] : thrower; - var argument1 = has(options, 1) ? options[1] : undefined; - - return cache[METHOD_NAME] = !!method && !fails(function () { - if (ACCESSORS && !DESCRIPTORS) return true; - var O = { length: -1 }; - - if (ACCESSORS) defineProperty(O, 1, { enumerable: true, get: thrower }); - else O[1] = 1; - - method.call(O, argument0, argument1); - }); -}; - - -/***/ }), - -/***/ 9127: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { +var aCallable = __nccwpck_require__(1696); +var toObject = __nccwpck_require__(2365); +var IndexedObject = __nccwpck_require__(1756); +var lengthOfArrayLike = __nccwpck_require__(8141); -var aFunction = __nccwpck_require__(3687); -var toObject = __nccwpck_require__(7510); -var IndexedObject = __nccwpck_require__(5762); -var toLength = __nccwpck_require__(4048); +var $TypeError = TypeError; // `Array.prototype.{ reduce, reduceRight }` methods implementation var createMethod = function (IS_RIGHT) { return function (that, callbackfn, argumentsLength, memo) { - aFunction(callbackfn); + aCallable(callbackfn); var O = toObject(that); var self = IndexedObject(O); - var length = toLength(O.length); + var length = lengthOfArrayLike(O); var index = IS_RIGHT ? length - 1 : 0; var i = IS_RIGHT ? -1 : 1; if (argumentsLength < 2) while (true) { @@ -6224,7 +5386,7 @@ var createMethod = function (IS_RIGHT) { } index += i; if (IS_RIGHT ? index < 0 : length <= index) { - throw TypeError('Reduce of empty array with no initial value'); + throw $TypeError('Reduce of empty array with no initial value'); } } for (;IS_RIGHT ? index >= 0 : length > index; index += i) if (index in self) { @@ -6236,67 +5398,165 @@ var createMethod = function (IS_RIGHT) { module.exports = { // `Array.prototype.reduce` method - // https://tc39.github.io/ecma262/#sec-array.prototype.reduce + // https://tc39.es/ecma262/#sec-array.prototype.reduce left: createMethod(false), // `Array.prototype.reduceRight` method - // https://tc39.github.io/ecma262/#sec-array.prototype.reduceright + // https://tc39.es/ecma262/#sec-array.prototype.reduceright right: createMethod(true) }; /***/ }), -/***/ 659: +/***/ 3914: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +var toAbsoluteIndex = __nccwpck_require__(8293); +var lengthOfArrayLike = __nccwpck_require__(8141); +var createProperty = __nccwpck_require__(6489); + +var $Array = Array; +var max = Math.max; + +module.exports = function (O, start, end) { + var length = lengthOfArrayLike(O); + var k = toAbsoluteIndex(start, length); + var fin = toAbsoluteIndex(end === undefined ? length : end, length); + var result = $Array(max(fin - k, 0)); + for (var n = 0; k < fin; k++, n++) createProperty(result, n, O[k]); + result.length = n; + return result; +}; + + +/***/ }), + +/***/ 374: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +var uncurryThis = __nccwpck_require__(1054); + +module.exports = uncurryThis([].slice); + + +/***/ }), + +/***/ 4073: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +var arraySlice = __nccwpck_require__(3914); + +var floor = Math.floor; + +var mergeSort = function (array, comparefn) { + var length = array.length; + var middle = floor(length / 2); + return length < 8 ? insertionSort(array, comparefn) : merge( + array, + mergeSort(arraySlice(array, 0, middle), comparefn), + mergeSort(arraySlice(array, middle), comparefn), + comparefn + ); +}; + +var insertionSort = function (array, comparefn) { + var length = array.length; + var i = 1; + var element, j; + + while (i < length) { + j = i; + element = array[i]; + while (j && comparefn(array[j - 1], element) > 0) { + array[j] = array[--j]; + } + if (j !== i++) array[j] = element; + } return array; +}; + +var merge = function (array, left, right, comparefn) { + var llength = left.length; + var rlength = right.length; + var lindex = 0; + var rindex = 0; + + while (lindex < llength || rindex < rlength) { + array[lindex + rindex] = (lindex < llength && rindex < rlength) + ? comparefn(left[lindex], right[rindex]) <= 0 ? left[lindex++] : right[rindex++] + : lindex < llength ? left[lindex++] : right[rindex++]; + } return array; +}; + +module.exports = mergeSort; + + +/***/ }), + +/***/ 8268: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var isObject = __nccwpck_require__(3596); -var isArray = __nccwpck_require__(9155); -var wellKnownSymbol = __nccwpck_require__(4814); +var isArray = __nccwpck_require__(2771); +var isConstructor = __nccwpck_require__(7984); +var isObject = __nccwpck_require__(4870); +var wellKnownSymbol = __nccwpck_require__(3423); var SPECIES = wellKnownSymbol('species'); +var $Array = Array; -// `ArraySpeciesCreate` abstract operation -// https://tc39.github.io/ecma262/#sec-arrayspeciescreate -module.exports = function (originalArray, length) { +// a part of `ArraySpeciesCreate` abstract operation +// https://tc39.es/ecma262/#sec-arrayspeciescreate +module.exports = function (originalArray) { var C; if (isArray(originalArray)) { C = originalArray.constructor; // cross-realm fallback - if (typeof C == 'function' && (C === Array || isArray(C.prototype))) C = undefined; + if (isConstructor(C) && (C === $Array || isArray(C.prototype))) C = undefined; else if (isObject(C)) { C = C[SPECIES]; if (C === null) C = undefined; } - } return new (C === undefined ? Array : C)(length === 0 ? 0 : length); + } return C === undefined ? $Array : C; +}; + + +/***/ }), + +/***/ 3039: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +var arraySpeciesConstructor = __nccwpck_require__(8268); + +// `ArraySpeciesCreate` abstract operation +// https://tc39.es/ecma262/#sec-arrayspeciescreate +module.exports = function (originalArray, length) { + return new (arraySpeciesConstructor(originalArray))(length === 0 ? 0 : length); }; /***/ }), -/***/ 2244: +/***/ 1548: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var anObject = __nccwpck_require__(218); -var iteratorClose = __nccwpck_require__(847); +var anObject = __nccwpck_require__(536); +var iteratorClose = __nccwpck_require__(7888); // call something on iterator step with safe closing on error module.exports = function (iterator, fn, value, ENTRIES) { try { return ENTRIES ? fn(anObject(value)[0], value[1]) : fn(value); - // 7.4.6 IteratorClose(iterator, completion) } catch (error) { - iteratorClose(iterator); - throw error; + iteratorClose(iterator, 'throw', error); } }; /***/ }), -/***/ 12: +/***/ 7437: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var wellKnownSymbol = __nccwpck_require__(4814); +var wellKnownSymbol = __nccwpck_require__(3423); var ITERATOR = wellKnownSymbol('iterator'); var SAFE_CLOSING = false; @@ -6314,7 +5574,7 @@ try { iteratorWithReturn[ITERATOR] = function () { return this; }; - // eslint-disable-next-line no-throw-literal + // eslint-disable-next-line es/no-array-from, no-throw-literal -- required for testing Array.from(iteratorWithReturn, function () { throw 2; }); } catch (error) { /* empty */ } @@ -6338,26 +5598,32 @@ module.exports = function (exec, SKIP_CLOSING) { /***/ }), -/***/ 5630: -/***/ ((module) => { +/***/ 4314: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +var uncurryThisRaw = __nccwpck_require__(748); -var toString = {}.toString; +var toString = uncurryThisRaw({}.toString); +var stringSlice = uncurryThisRaw(''.slice); module.exports = function (it) { - return toString.call(it).slice(8, -1); + return stringSlice(toString(it), 8, -1); }; /***/ }), -/***/ 3955: +/***/ 9545: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var TO_STRING_TAG_SUPPORT = __nccwpck_require__(402); -var classofRaw = __nccwpck_require__(5630); -var wellKnownSymbol = __nccwpck_require__(4814); +var TO_STRING_TAG_SUPPORT = __nccwpck_require__(3934); +var isCallable = __nccwpck_require__(7763); +var classofRaw = __nccwpck_require__(4314); +var wellKnownSymbol = __nccwpck_require__(3423); var TO_STRING_TAG = wellKnownSymbol('toStringTag'); +var $Object = Object; + // ES3 wrong here var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments'; @@ -6373,20 +5639,20 @@ module.exports = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) { var O, tag, result; return it === undefined ? 'Undefined' : it === null ? 'Null' // @@toStringTag case - : typeof (tag = tryGet(O = Object(it), TO_STRING_TAG)) == 'string' ? tag + : typeof (tag = tryGet(O = $Object(it), TO_STRING_TAG)) == 'string' ? tag // builtinTag case : CORRECT_ARGUMENTS ? classofRaw(O) // ES3 arguments fallback - : (result = classofRaw(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : result; + : (result = classofRaw(O)) == 'Object' && isCallable(O.callee) ? 'Arguments' : result; }; /***/ }), -/***/ 9804: +/***/ 2364: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var wellKnownSymbol = __nccwpck_require__(4814); +var wellKnownSymbol = __nccwpck_require__(3423); var MATCH = wellKnownSymbol('match'); @@ -6405,50 +5671,39 @@ module.exports = function (METHOD_NAME) { /***/ }), -/***/ 7273: +/***/ 7207: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var fails = __nccwpck_require__(317); +var fails = __nccwpck_require__(8507); module.exports = !fails(function () { function F() { /* empty */ } F.prototype.constructor = null; + // eslint-disable-next-line es/no-object-getprototypeof -- required for testing return Object.getPrototypeOf(new F()) !== F.prototype; }); /***/ }), -/***/ 8278: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { - -"use strict"; - -var IteratorPrototype = (__nccwpck_require__(711).IteratorPrototype); -var create = __nccwpck_require__(4357); -var createPropertyDescriptor = __nccwpck_require__(9063); -var setToStringTag = __nccwpck_require__(7596); -var Iterators = __nccwpck_require__(6657); - -var returnThis = function () { return this; }; +/***/ 6557: +/***/ ((module) => { -module.exports = function (IteratorConstructor, NAME, next) { - var TO_STRING_TAG = NAME + ' Iterator'; - IteratorConstructor.prototype = create(IteratorPrototype, { next: createPropertyDescriptor(1, next) }); - setToStringTag(IteratorConstructor, TO_STRING_TAG, false, true); - Iterators[TO_STRING_TAG] = returnThis; - return IteratorConstructor; +// `CreateIterResultObject` abstract operation +// https://tc39.es/ecma262/#sec-createiterresultobject +module.exports = function (value, done) { + return { value: value, done: done }; }; /***/ }), -/***/ 5497: +/***/ 5651: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var DESCRIPTORS = __nccwpck_require__(8399); -var definePropertyModule = __nccwpck_require__(5204); -var createPropertyDescriptor = __nccwpck_require__(9063); +var DESCRIPTORS = __nccwpck_require__(8109); +var definePropertyModule = __nccwpck_require__(6247); +var createPropertyDescriptor = __nccwpck_require__(2921); module.exports = DESCRIPTORS ? function (object, key, value) { return definePropertyModule.f(object, key, createPropertyDescriptor(1, value)); @@ -6460,7 +5715,7 @@ module.exports = DESCRIPTORS ? function (object, key, value) { /***/ }), -/***/ 9063: +/***/ 2921: /***/ ((module) => { module.exports = function (bitmap, value) { @@ -6475,17 +5730,17 @@ module.exports = function (bitmap, value) { /***/ }), -/***/ 815: +/***/ 6489: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; -var toPrimitive = __nccwpck_require__(7703); -var definePropertyModule = __nccwpck_require__(5204); -var createPropertyDescriptor = __nccwpck_require__(9063); +var toPropertyKey = __nccwpck_require__(6121); +var definePropertyModule = __nccwpck_require__(6247); +var createPropertyDescriptor = __nccwpck_require__(2921); module.exports = function (object, key, value) { - var propertyKey = toPrimitive(key); + var propertyKey = toPropertyKey(key); if (propertyKey in object) definePropertyModule.f(object, propertyKey, createPropertyDescriptor(0, value)); else object[propertyKey] = value; }; @@ -6493,140 +5748,90 @@ module.exports = function (object, key, value) { /***/ }), -/***/ 9235: +/***/ 502: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +var createNonEnumerableProperty = __nccwpck_require__(5651); + +module.exports = function (target, key, value, options) { + if (options && options.enumerable) target[key] = value; + else createNonEnumerableProperty(target, key, value); + return target; +}; + + +/***/ }), + +/***/ 2993: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -"use strict"; - -var $ = __nccwpck_require__(8931); -var createIteratorConstructor = __nccwpck_require__(8278); -var getPrototypeOf = __nccwpck_require__(3477); -var setPrototypeOf = __nccwpck_require__(4227); -var setToStringTag = __nccwpck_require__(7596); -var createNonEnumerableProperty = __nccwpck_require__(5497); -var redefine = __nccwpck_require__(8463); -var wellKnownSymbol = __nccwpck_require__(4814); -var IS_PURE = __nccwpck_require__(4277); -var Iterators = __nccwpck_require__(6657); -var IteratorsCore = __nccwpck_require__(711); - -var IteratorPrototype = IteratorsCore.IteratorPrototype; -var BUGGY_SAFARI_ITERATORS = IteratorsCore.BUGGY_SAFARI_ITERATORS; -var ITERATOR = wellKnownSymbol('iterator'); -var KEYS = 'keys'; -var VALUES = 'values'; -var ENTRIES = 'entries'; +var global = __nccwpck_require__(5014); -var returnThis = function () { return this; }; +// eslint-disable-next-line es/no-object-defineproperty -- safe +var defineProperty = Object.defineProperty; -module.exports = function (Iterable, NAME, IteratorConstructor, next, DEFAULT, IS_SET, FORCED) { - createIteratorConstructor(IteratorConstructor, NAME, next); +module.exports = function (key, value) { + try { + defineProperty(global, key, { value: value, configurable: true, writable: true }); + } catch (error) { + global[key] = value; + } return value; +}; - var getIterationMethod = function (KIND) { - if (KIND === DEFAULT && defaultIterator) return defaultIterator; - if (!BUGGY_SAFARI_ITERATORS && KIND in IterablePrototype) return IterablePrototype[KIND]; - switch (KIND) { - case KEYS: return function keys() { return new IteratorConstructor(this, KIND); }; - case VALUES: return function values() { return new IteratorConstructor(this, KIND); }; - case ENTRIES: return function entries() { return new IteratorConstructor(this, KIND); }; - } return function () { return new IteratorConstructor(this); }; - }; - var TO_STRING_TAG = NAME + ' Iterator'; - var INCORRECT_VALUES_NAME = false; - var IterablePrototype = Iterable.prototype; - var nativeIterator = IterablePrototype[ITERATOR] - || IterablePrototype['@@iterator'] - || DEFAULT && IterablePrototype[DEFAULT]; - var defaultIterator = !BUGGY_SAFARI_ITERATORS && nativeIterator || getIterationMethod(DEFAULT); - var anyNativeIterator = NAME == 'Array' ? IterablePrototype.entries || nativeIterator : nativeIterator; - var CurrentIteratorPrototype, methods, KEY; +/***/ }), - // fix native - if (anyNativeIterator) { - CurrentIteratorPrototype = getPrototypeOf(anyNativeIterator.call(new Iterable())); - if (IteratorPrototype !== Object.prototype && CurrentIteratorPrototype.next) { - if (!IS_PURE && getPrototypeOf(CurrentIteratorPrototype) !== IteratorPrototype) { - if (setPrototypeOf) { - setPrototypeOf(CurrentIteratorPrototype, IteratorPrototype); - } else if (typeof CurrentIteratorPrototype[ITERATOR] != 'function') { - createNonEnumerableProperty(CurrentIteratorPrototype, ITERATOR, returnThis); - } - } - // Set @@toStringTag to native iterators - setToStringTag(CurrentIteratorPrototype, TO_STRING_TAG, true, true); - if (IS_PURE) Iterators[TO_STRING_TAG] = returnThis; - } - } +/***/ 566: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { - // fix Array#{values, @@iterator}.name in V8 / FF - if (DEFAULT == VALUES && nativeIterator && nativeIterator.name !== VALUES) { - INCORRECT_VALUES_NAME = true; - defaultIterator = function values() { return nativeIterator.call(this); }; - } +"use strict"; - // define iterator - if ((!IS_PURE || FORCED) && IterablePrototype[ITERATOR] !== defaultIterator) { - createNonEnumerableProperty(IterablePrototype, ITERATOR, defaultIterator); - } - Iterators[NAME] = defaultIterator; +var tryToString = __nccwpck_require__(4914); - // export additional methods - if (DEFAULT) { - methods = { - values: getIterationMethod(VALUES), - keys: IS_SET ? defaultIterator : getIterationMethod(KEYS), - entries: getIterationMethod(ENTRIES) - }; - if (FORCED) for (KEY in methods) { - if (BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME || !(KEY in IterablePrototype)) { - redefine(IterablePrototype, KEY, methods[KEY]); - } - } else $({ target: NAME, proto: true, forced: BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME }, methods); - } +var $TypeError = TypeError; - return methods; +module.exports = function (O, P) { + if (!delete O[P]) throw $TypeError('Cannot delete property ' + tryToString(P) + ' of ' + tryToString(O)); }; /***/ }), -/***/ 7597: +/***/ 8109: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var path = __nccwpck_require__(1278); -var has = __nccwpck_require__(3929); -var wrappedWellKnownSymbolModule = __nccwpck_require__(5260); -var defineProperty = (__nccwpck_require__(5204).f); +var fails = __nccwpck_require__(8507); -module.exports = function (NAME) { - var Symbol = path.Symbol || (path.Symbol = {}); - if (!has(Symbol, NAME)) defineProperty(Symbol, NAME, { - value: wrappedWellKnownSymbolModule.f(NAME) - }); -}; +// Detect IE8's incomplete defineProperty implementation +module.exports = !fails(function () { + // eslint-disable-next-line es/no-object-defineproperty -- required for testing + return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7; +}); /***/ }), -/***/ 8399: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { +/***/ 8560: +/***/ ((module) => { -var fails = __nccwpck_require__(317); +var documentAll = typeof document == 'object' && document.all; -// Thank's IE8 for his funny defineProperty -module.exports = !fails(function () { - return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7; -}); +// https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot +var IS_HTMLDDA = typeof documentAll == 'undefined' && documentAll !== undefined; + +module.exports = { + all: documentAll, + IS_HTMLDDA: IS_HTMLDDA +}; /***/ }), -/***/ 1637: +/***/ 2410: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var global = __nccwpck_require__(7095); -var isObject = __nccwpck_require__(3596); +var global = __nccwpck_require__(5014); +var isObject = __nccwpck_require__(4870); var document = global.document; // typeof document.createElement is 'object' in old IE @@ -6639,7 +5844,21 @@ module.exports = function (it) { /***/ }), -/***/ 482: +/***/ 7296: +/***/ ((module) => { + +var $TypeError = TypeError; +var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF; // 2 ** 53 - 1 == 9007199254740991 + +module.exports = function (it) { + if (it > MAX_SAFE_INTEGER) throw $TypeError('Maximum allowed index exceeded'); + return it; +}; + + +/***/ }), + +/***/ 5870: /***/ ((module) => { // iterable DOM collections @@ -6681,58 +5900,99 @@ module.exports = { /***/ }), -/***/ 7383: +/***/ 7907: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +var userAgent = __nccwpck_require__(7775); + +var firefox = userAgent.match(/firefox\/(\d+)/i); + +module.exports = !!firefox && +firefox[1]; + + +/***/ }), + +/***/ 7240: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +var UA = __nccwpck_require__(7775); + +module.exports = /MSIE|Trident/.test(UA); + + +/***/ }), + +/***/ 1718: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var classof = __nccwpck_require__(5630); -var global = __nccwpck_require__(7095); +var classof = __nccwpck_require__(4314); +var global = __nccwpck_require__(5014); module.exports = classof(global.process) == 'process'; /***/ }), -/***/ 9732: +/***/ 7775: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var getBuiltIn = __nccwpck_require__(6229); +var getBuiltIn = __nccwpck_require__(4685); module.exports = getBuiltIn('navigator', 'userAgent') || ''; /***/ }), -/***/ 7631: +/***/ 8594: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var global = __nccwpck_require__(7095); -var userAgent = __nccwpck_require__(9732); +var global = __nccwpck_require__(5014); +var userAgent = __nccwpck_require__(7775); var process = global.process; -var versions = process && process.versions; +var Deno = global.Deno; +var versions = process && process.versions || Deno && Deno.version; var v8 = versions && versions.v8; var match, version; if (v8) { match = v8.split('.'); - version = match[0] + match[1]; -} else if (userAgent) { + // in old Chrome, versions of V8 isn't V8 = Chrome / 10 + // but their correct versions are not interesting for us + version = match[0] > 0 && match[0] < 4 ? 1 : +(match[0] + match[1]); +} + +// BrowserFS NodeJS `process` polyfill incorrectly set `.v8` to `0.0` +// so check `userAgent` even if `.v8` exists, but 0 +if (!version && userAgent) { match = userAgent.match(/Edge\/(\d+)/); if (!match || match[1] >= 74) { match = userAgent.match(/Chrome\/(\d+)/); - if (match) version = match[1]; + if (match) version = +match[1]; } } -module.exports = version && +version; +module.exports = version; + + +/***/ }), + +/***/ 6211: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +var userAgent = __nccwpck_require__(7775); + +var webkit = userAgent.match(/AppleWebKit\/(\d+)\./); + +module.exports = !!webkit && +webkit[1]; /***/ }), -/***/ 1: +/***/ 8626: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var path = __nccwpck_require__(1278); +var path = __nccwpck_require__(9268); module.exports = function (CONSTRUCTOR) { return path[CONSTRUCTOR + 'Prototype']; @@ -6741,7 +6001,7 @@ module.exports = function (CONSTRUCTOR) { /***/ }), -/***/ 5931: +/***/ 4452: /***/ ((module) => { // IE8- don't enum bug keys @@ -6758,46 +6018,50 @@ module.exports = [ /***/ }), -/***/ 8931: +/***/ 6937: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; -var global = __nccwpck_require__(7095); -var getOwnPropertyDescriptor = (__nccwpck_require__(8184).f); -var isForced = __nccwpck_require__(8045); -var path = __nccwpck_require__(1278); -var bind = __nccwpck_require__(449); -var createNonEnumerableProperty = __nccwpck_require__(5497); -var has = __nccwpck_require__(3929); +var global = __nccwpck_require__(5014); +var apply = __nccwpck_require__(5555); +var uncurryThis = __nccwpck_require__(1054); +var isCallable = __nccwpck_require__(7763); +var getOwnPropertyDescriptor = (__nccwpck_require__(8044).f); +var isForced = __nccwpck_require__(5744); +var path = __nccwpck_require__(9268); +var bind = __nccwpck_require__(7821); +var createNonEnumerableProperty = __nccwpck_require__(5651); +var hasOwn = __nccwpck_require__(568); var wrapConstructor = function (NativeConstructor) { var Wrapper = function (a, b, c) { - if (this instanceof NativeConstructor) { + if (this instanceof Wrapper) { switch (arguments.length) { case 0: return new NativeConstructor(); case 1: return new NativeConstructor(a); case 2: return new NativeConstructor(a, b); } return new NativeConstructor(a, b, c); - } return NativeConstructor.apply(this, arguments); + } return apply(NativeConstructor, this, arguments); }; Wrapper.prototype = NativeConstructor.prototype; return Wrapper; }; /* - options.target - name of the target object - options.global - target is the global object - options.stat - export as static methods of target - options.proto - export as prototype methods of target - options.real - real prototype method for the `pure` version - options.forced - export even if the native feature is available - options.bind - bind methods to the target, required for the `pure` version - options.wrap - wrap constructors to preventing global pollution, required for the `pure` version - options.unsafe - use the simple assignment of property instead of delete + defineProperty - options.sham - add a flag to not completely full polyfills - options.enumerable - export as enumerable property - options.noTargetGet - prevent calling a getter on target + options.target - name of the target object + options.global - target is the global object + options.stat - export as static methods of target + options.proto - export as prototype methods of target + options.real - real prototype method for the `pure` version + options.forced - export even if the native feature is available + options.bind - bind methods to the target, required for the `pure` version + options.wrap - wrap constructors to preventing global pollution, required for the `pure` version + options.unsafe - use the simple assignment of property instead of delete + defineProperty + options.sham - add a flag to not completely full polyfills + options.enumerable - export as enumerable property + options.dontCallGetSet - prevent calling a getter on target + options.name - the .name of the function if it does not match the key */ module.exports = function (options, source) { var TARGET = options.target; @@ -6807,7 +6071,7 @@ module.exports = function (options, source) { var nativeSource = GLOBAL ? global : STATIC ? global[TARGET] : (global[TARGET] || {}).prototype; - var target = GLOBAL ? path : path[TARGET] || (path[TARGET] = {}); + var target = GLOBAL ? path : path[TARGET] || createNonEnumerableProperty(path, TARGET, {})[TARGET]; var targetPrototype = target.prototype; var FORCED, USE_NATIVE, VIRTUAL_PROTOTYPE; @@ -6816,11 +6080,11 @@ module.exports = function (options, source) { for (key in source) { FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced); // contains in native - USE_NATIVE = !FORCED && nativeSource && has(nativeSource, key); + USE_NATIVE = !FORCED && nativeSource && hasOwn(nativeSource, key); targetProperty = target[key]; - if (USE_NATIVE) if (options.noTargetGet) { + if (USE_NATIVE) if (options.dontCallGetSet) { descriptor = getOwnPropertyDescriptor(nativeSource, key); nativeProperty = descriptor && descriptor.value; } else nativeProperty = nativeSource[key]; @@ -6828,14 +6092,14 @@ module.exports = function (options, source) { // export native or implementation sourceProperty = (USE_NATIVE && nativeProperty) ? nativeProperty : source[key]; - if (USE_NATIVE && typeof targetProperty === typeof sourceProperty) continue; + if (USE_NATIVE && typeof targetProperty == typeof sourceProperty) continue; // bind timers to global for call from export context if (options.bind && USE_NATIVE) resultProperty = bind(sourceProperty, global); // wrap global constructors for prevent changs in this version else if (options.wrap && USE_NATIVE) resultProperty = wrapConstructor(sourceProperty); // make static versions for prototype methods - else if (PROTO && typeof sourceProperty == 'function') resultProperty = bind(Function.call, sourceProperty); + else if (PROTO && isCallable(sourceProperty)) resultProperty = uncurryThis(sourceProperty); // default case else resultProperty = sourceProperty; @@ -6844,15 +6108,15 @@ module.exports = function (options, source) { createNonEnumerableProperty(resultProperty, 'sham', true); } - target[key] = resultProperty; + createNonEnumerableProperty(target, key, resultProperty); if (PROTO) { VIRTUAL_PROTOTYPE = TARGET + 'Prototype'; - if (!has(path, VIRTUAL_PROTOTYPE)) { + if (!hasOwn(path, VIRTUAL_PROTOTYPE)) { createNonEnumerableProperty(path, VIRTUAL_PROTOTYPE, {}); } // export virtual prototype methods - path[VIRTUAL_PROTOTYPE][key] = sourceProperty; + createNonEnumerableProperty(path[VIRTUAL_PROTOTYPE], key, sourceProperty); // export real prototype methods if (options.real && targetPrototype && !targetPrototype[key]) { createNonEnumerableProperty(targetPrototype, key, sourceProperty); @@ -6864,7 +6128,7 @@ module.exports = function (options, source) { /***/ }), -/***/ 317: +/***/ 8507: /***/ ((module) => { module.exports = function (exec) { @@ -6878,30 +6142,36 @@ module.exports = function (exec) { /***/ }), -/***/ 449: +/***/ 5555: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +var NATIVE_BIND = __nccwpck_require__(7062); + +var FunctionPrototype = Function.prototype; +var apply = FunctionPrototype.apply; +var call = FunctionPrototype.call; + +// eslint-disable-next-line es/no-reflect -- safe +module.exports = typeof Reflect == 'object' && Reflect.apply || (NATIVE_BIND ? call.bind(apply) : function () { + return call.apply(apply, arguments); +}); + + +/***/ }), + +/***/ 7821: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var aFunction = __nccwpck_require__(3687); +var uncurryThis = __nccwpck_require__(1054); +var aCallable = __nccwpck_require__(1696); +var NATIVE_BIND = __nccwpck_require__(7062); + +var bind = uncurryThis(uncurryThis.bind); // optional / simple context binding -module.exports = function (fn, that, length) { - aFunction(fn); - if (that === undefined) return fn; - switch (length) { - case 0: return function () { - return fn.call(that); - }; - case 1: return function (a) { - return fn.call(that, a); - }; - case 2: return function (a, b) { - return fn.call(that, a, b); - }; - case 3: return function (a, b, c) { - return fn.call(that, a, b, c); - }; - } - return function (/* ...args */) { +module.exports = function (fn, that) { + aCallable(fn); + return that === undefined ? fn : NATIVE_BIND ? bind(fn, that) : function (/* ...args */) { return fn.apply(that, arguments); }; }; @@ -6909,14 +6179,102 @@ module.exports = function (fn, that, length) { /***/ }), -/***/ 6229: +/***/ 7062: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +var fails = __nccwpck_require__(8507); + +module.exports = !fails(function () { + // eslint-disable-next-line es/no-function-prototype-bind -- safe + var test = (function () { /* empty */ }).bind(); + // eslint-disable-next-line no-prototype-builtins -- safe + return typeof test != 'function' || test.hasOwnProperty('prototype'); +}); + + +/***/ }), + +/***/ 2956: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +var NATIVE_BIND = __nccwpck_require__(7062); + +var call = Function.prototype.call; + +module.exports = NATIVE_BIND ? call.bind(call) : function () { + return call.apply(call, arguments); +}; + + +/***/ }), + +/***/ 4682: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +var DESCRIPTORS = __nccwpck_require__(8109); +var hasOwn = __nccwpck_require__(568); + +var FunctionPrototype = Function.prototype; +// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe +var getDescriptor = DESCRIPTORS && Object.getOwnPropertyDescriptor; + +var EXISTS = hasOwn(FunctionPrototype, 'name'); +// additional protection from minified / mangled / dropped function names +var PROPER = EXISTS && (function something() { /* empty */ }).name === 'something'; +var CONFIGURABLE = EXISTS && (!DESCRIPTORS || (DESCRIPTORS && getDescriptor(FunctionPrototype, 'name').configurable)); + +module.exports = { + EXISTS: EXISTS, + PROPER: PROPER, + CONFIGURABLE: CONFIGURABLE +}; + + +/***/ }), + +/***/ 748: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +var NATIVE_BIND = __nccwpck_require__(7062); + +var FunctionPrototype = Function.prototype; +var call = FunctionPrototype.call; +var uncurryThisWithBind = NATIVE_BIND && FunctionPrototype.bind.bind(call, call); + +module.exports = function (fn) { + return NATIVE_BIND ? uncurryThisWithBind(fn) : function () { + return call.apply(fn, arguments); + }; +}; + + +/***/ }), + +/***/ 1054: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +var classofRaw = __nccwpck_require__(4314); +var uncurryThisRaw = __nccwpck_require__(748); + +module.exports = function (fn) { + // Nashorn bug: + // https://github.com/zloirock/core-js/issues/1128 + // https://github.com/zloirock/core-js/issues/1130 + if (classofRaw(fn) === 'Function') return uncurryThisRaw(fn); +}; + + +/***/ }), + +/***/ 4685: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var path = __nccwpck_require__(1278); -var global = __nccwpck_require__(7095); +var path = __nccwpck_require__(9268); +var global = __nccwpck_require__(5014); +var isCallable = __nccwpck_require__(7763); var aFunction = function (variable) { - return typeof variable == 'function' ? variable : undefined; + return isCallable(variable) ? variable : undefined; }; module.exports = function (namespace, method) { @@ -6927,41 +6285,63 @@ module.exports = function (namespace, method) { /***/ }), -/***/ 2780: +/***/ 7942: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var classof = __nccwpck_require__(3955); -var Iterators = __nccwpck_require__(6657); -var wellKnownSymbol = __nccwpck_require__(4814); +var classof = __nccwpck_require__(9545); +var getMethod = __nccwpck_require__(1514); +var isNullOrUndefined = __nccwpck_require__(7379); +var Iterators = __nccwpck_require__(279); +var wellKnownSymbol = __nccwpck_require__(3423); var ITERATOR = wellKnownSymbol('iterator'); module.exports = function (it) { - if (it != undefined) return it[ITERATOR] - || it['@@iterator'] + if (!isNullOrUndefined(it)) return getMethod(it, ITERATOR) + || getMethod(it, '@@iterator') || Iterators[classof(it)]; }; /***/ }), -/***/ 2129: +/***/ 7044: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var anObject = __nccwpck_require__(218); -var getIteratorMethod = __nccwpck_require__(2780); +var call = __nccwpck_require__(2956); +var aCallable = __nccwpck_require__(1696); +var anObject = __nccwpck_require__(536); +var tryToString = __nccwpck_require__(4914); +var getIteratorMethod = __nccwpck_require__(7942); -module.exports = function (it) { - var iteratorMethod = getIteratorMethod(it); - if (typeof iteratorMethod != 'function') { - throw TypeError(String(it) + ' is not iterable'); - } return anObject(iteratorMethod.call(it)); +var $TypeError = TypeError; + +module.exports = function (argument, usingIterator) { + var iteratorMethod = arguments.length < 2 ? getIteratorMethod(argument) : usingIterator; + if (aCallable(iteratorMethod)) return anObject(call(iteratorMethod, argument)); + throw $TypeError(tryToString(argument) + ' is not iterable'); +}; + + +/***/ }), + +/***/ 1514: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +var aCallable = __nccwpck_require__(1696); +var isNullOrUndefined = __nccwpck_require__(7379); + +// `GetMethod` abstract operation +// https://tc39.es/ecma262/#sec-getmethod +module.exports = function (V, P) { + var func = V[P]; + return isNullOrUndefined(func) ? undefined : aCallable(func); }; /***/ }), -/***/ 7095: +/***/ 5014: /***/ ((module) => { var check = function (it) { @@ -6970,30 +6350,37 @@ var check = function (it) { // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028 module.exports = - // eslint-disable-next-line no-undef + // eslint-disable-next-line es/no-global-this -- safe check(typeof globalThis == 'object' && globalThis) || check(typeof window == 'object' && window) || + // eslint-disable-next-line no-restricted-globals -- safe check(typeof self == 'object' && self) || check(typeof global == 'object' && global) || - // eslint-disable-next-line no-new-func + // eslint-disable-next-line no-new-func -- fallback (function () { return this; })() || Function('return this')(); /***/ }), -/***/ 3929: -/***/ ((module) => { +/***/ 568: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var hasOwnProperty = {}.hasOwnProperty; +var uncurryThis = __nccwpck_require__(1054); +var toObject = __nccwpck_require__(2365); -module.exports = function (it, key) { - return hasOwnProperty.call(it, key); +var hasOwnProperty = uncurryThis({}.hasOwnProperty); + +// `HasOwnProperty` abstract operation +// https://tc39.es/ecma262/#sec-hasownproperty +// eslint-disable-next-line es/no-object-hasown -- safe +module.exports = Object.hasOwn || function hasOwn(it, key) { + return hasOwnProperty(toObject(it), key); }; /***/ }), -/***/ 8087: +/***/ 2185: /***/ ((module) => { module.exports = {}; @@ -7001,25 +6388,26 @@ module.exports = {}; /***/ }), -/***/ 8362: +/***/ 1951: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var getBuiltIn = __nccwpck_require__(6229); +var getBuiltIn = __nccwpck_require__(4685); module.exports = getBuiltIn('document', 'documentElement'); /***/ }), -/***/ 5893: +/***/ 1462: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var DESCRIPTORS = __nccwpck_require__(8399); -var fails = __nccwpck_require__(317); -var createElement = __nccwpck_require__(1637); +var DESCRIPTORS = __nccwpck_require__(8109); +var fails = __nccwpck_require__(8507); +var createElement = __nccwpck_require__(2410); -// Thank's IE8 for his funny defineProperty +// Thanks to IE8 for its funny defineProperty module.exports = !DESCRIPTORS && !fails(function () { + // eslint-disable-next-line es/no-object-defineproperty -- required for testing return Object.defineProperty(createElement('div'), 'a', { get: function () { return 7; } }).a != 7; @@ -7028,37 +6416,41 @@ module.exports = !DESCRIPTORS && !fails(function () { /***/ }), -/***/ 5762: +/***/ 1756: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var fails = __nccwpck_require__(317); -var classof = __nccwpck_require__(5630); +var uncurryThis = __nccwpck_require__(1054); +var fails = __nccwpck_require__(8507); +var classof = __nccwpck_require__(4314); -var split = ''.split; +var $Object = Object; +var split = uncurryThis(''.split); // fallback for non-array-like ES3 and non-enumerable old V8 strings module.exports = fails(function () { // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346 - // eslint-disable-next-line no-prototype-builtins - return !Object('z').propertyIsEnumerable(0); + // eslint-disable-next-line no-prototype-builtins -- safe + return !$Object('z').propertyIsEnumerable(0); }) ? function (it) { - return classof(it) == 'String' ? split.call(it, '') : Object(it); -} : Object; + return classof(it) == 'String' ? split(it, '') : $Object(it); +} : $Object; /***/ }), -/***/ 3399: +/***/ 2490: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var store = __nccwpck_require__(8390); +var uncurryThis = __nccwpck_require__(1054); +var isCallable = __nccwpck_require__(7763); +var store = __nccwpck_require__(7945); -var functionToString = Function.toString; +var functionToString = uncurryThis(Function.toString); -// this helper broken in `3.4.1-3.4.4`, so we can't use `shared` helper -if (typeof store.inspectSource != 'function') { +// this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper +if (!isCallable(store.inspectSource)) { store.inspectSource = function (it) { - return functionToString.call(it); + return functionToString(it); }; } @@ -7067,18 +6459,20 @@ module.exports = store.inspectSource; /***/ }), -/***/ 6600: +/***/ 9147: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var NATIVE_WEAK_MAP = __nccwpck_require__(336); -var global = __nccwpck_require__(7095); -var isObject = __nccwpck_require__(3596); -var createNonEnumerableProperty = __nccwpck_require__(5497); -var objectHas = __nccwpck_require__(3929); -var shared = __nccwpck_require__(8390); -var sharedKey = __nccwpck_require__(7972); -var hiddenKeys = __nccwpck_require__(8087); - +var NATIVE_WEAK_MAP = __nccwpck_require__(1346); +var global = __nccwpck_require__(5014); +var isObject = __nccwpck_require__(4870); +var createNonEnumerableProperty = __nccwpck_require__(5651); +var hasOwn = __nccwpck_require__(568); +var shared = __nccwpck_require__(7945); +var sharedKey = __nccwpck_require__(302); +var hiddenKeys = __nccwpck_require__(2185); + +var OBJECT_ALREADY_INITIALIZED = 'Object already initialized'; +var TypeError = global.TypeError; var WeakMap = global.WeakMap; var set, get, has; @@ -7095,35 +6489,39 @@ var getterFor = function (TYPE) { }; }; -if (NATIVE_WEAK_MAP) { +if (NATIVE_WEAK_MAP || shared.state) { var store = shared.state || (shared.state = new WeakMap()); - var wmget = store.get; - var wmhas = store.has; - var wmset = store.set; + /* eslint-disable no-self-assign -- prototype methods protection */ + store.get = store.get; + store.has = store.has; + store.set = store.set; + /* eslint-enable no-self-assign -- prototype methods protection */ set = function (it, metadata) { + if (store.has(it)) throw TypeError(OBJECT_ALREADY_INITIALIZED); metadata.facade = it; - wmset.call(store, it, metadata); + store.set(it, metadata); return metadata; }; get = function (it) { - return wmget.call(store, it) || {}; + return store.get(it) || {}; }; has = function (it) { - return wmhas.call(store, it); + return store.has(it); }; } else { var STATE = sharedKey('state'); hiddenKeys[STATE] = true; set = function (it, metadata) { + if (hasOwn(it, STATE)) throw TypeError(OBJECT_ALREADY_INITIALIZED); metadata.facade = it; createNonEnumerableProperty(it, STATE, metadata); return metadata; }; get = function (it) { - return objectHas(it, STATE) ? it[STATE] : {}; + return hasOwn(it, STATE) ? it[STATE] : {}; }; has = function (it) { - return objectHas(it, STATE); + return hasOwn(it, STATE); }; } @@ -7138,11 +6536,11 @@ module.exports = { /***/ }), -/***/ 2877: +/***/ 266: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var wellKnownSymbol = __nccwpck_require__(4814); -var Iterators = __nccwpck_require__(6657); +var wellKnownSymbol = __nccwpck_require__(3423); +var Iterators = __nccwpck_require__(279); var ITERATOR = wellKnownSymbol('iterator'); var ArrayPrototype = Array.prototype; @@ -7155,24 +6553,103 @@ module.exports = function (it) { /***/ }), -/***/ 9155: +/***/ 2771: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var classof = __nccwpck_require__(5630); +var classof = __nccwpck_require__(4314); // `IsArray` abstract operation -// https://tc39.github.io/ecma262/#sec-isarray -module.exports = Array.isArray || function isArray(arg) { - return classof(arg) == 'Array'; +// https://tc39.es/ecma262/#sec-isarray +// eslint-disable-next-line es/no-array-isarray -- safe +module.exports = Array.isArray || function isArray(argument) { + return classof(argument) == 'Array'; +}; + + +/***/ }), + +/***/ 7763: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +var $documentAll = __nccwpck_require__(8560); + +var documentAll = $documentAll.all; + +// `IsCallable` abstract operation +// https://tc39.es/ecma262/#sec-iscallable +module.exports = $documentAll.IS_HTMLDDA ? function (argument) { + return typeof argument == 'function' || argument === documentAll; +} : function (argument) { + return typeof argument == 'function'; +}; + + +/***/ }), + +/***/ 7984: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +var uncurryThis = __nccwpck_require__(1054); +var fails = __nccwpck_require__(8507); +var isCallable = __nccwpck_require__(7763); +var classof = __nccwpck_require__(9545); +var getBuiltIn = __nccwpck_require__(4685); +var inspectSource = __nccwpck_require__(2490); + +var noop = function () { /* empty */ }; +var empty = []; +var construct = getBuiltIn('Reflect', 'construct'); +var constructorRegExp = /^\s*(?:class|function)\b/; +var exec = uncurryThis(constructorRegExp.exec); +var INCORRECT_TO_STRING = !constructorRegExp.exec(noop); + +var isConstructorModern = function isConstructor(argument) { + if (!isCallable(argument)) return false; + try { + construct(noop, empty, argument); + return true; + } catch (error) { + return false; + } +}; + +var isConstructorLegacy = function isConstructor(argument) { + if (!isCallable(argument)) return false; + switch (classof(argument)) { + case 'AsyncFunction': + case 'GeneratorFunction': + case 'AsyncGeneratorFunction': return false; + } + try { + // we can't check .prototype since constructors produced by .bind haven't it + // `Function#toString` throws on some built-it function in some legacy engines + // (for example, `DOMQuad` and similar in FF41-) + return INCORRECT_TO_STRING || !!exec(constructorRegExp, inspectSource(argument)); + } catch (error) { + return true; + } }; +isConstructorLegacy.sham = true; + +// `IsConstructor` abstract operation +// https://tc39.es/ecma262/#sec-isconstructor +module.exports = !construct || fails(function () { + var called; + return isConstructorModern(isConstructorModern.call) + || !isConstructorModern(Object) + || !isConstructorModern(function () { called = true; }) + || called; +}) ? isConstructorLegacy : isConstructorModern; + /***/ }), -/***/ 8045: +/***/ 5744: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var fails = __nccwpck_require__(317); +var fails = __nccwpck_require__(8507); +var isCallable = __nccwpck_require__(7763); var replacement = /#|\.prototype\./; @@ -7180,7 +6657,7 @@ var isForced = function (feature, detection) { var value = data[normalize(feature)]; return value == POLYFILL ? true : value == NATIVE ? false - : typeof detection == 'function' ? fails(detection) + : isCallable(detection) ? fails(detection) : !!detection; }; @@ -7197,98 +6674,265 @@ module.exports = isForced; /***/ }), -/***/ 3112: +/***/ 7379: +/***/ ((module) => { + +// we can't use just `it == null` since of `document.all` special case +// https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot-aec +module.exports = function (it) { + return it === null || it === undefined; +}; + + +/***/ }), + +/***/ 4870: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +var isCallable = __nccwpck_require__(7763); +var $documentAll = __nccwpck_require__(8560); + +var documentAll = $documentAll.all; + +module.exports = $documentAll.IS_HTMLDDA ? function (it) { + return typeof it == 'object' ? it !== null : isCallable(it) || it === documentAll; +} : function (it) { + return typeof it == 'object' ? it !== null : isCallable(it); +}; + + +/***/ }), + +/***/ 9785: +/***/ ((module) => { + +module.exports = true; + + +/***/ }), + +/***/ 4970: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var classof = __nccwpck_require__(3955); -var wellKnownSymbol = __nccwpck_require__(4814); -var Iterators = __nccwpck_require__(6657); +var isObject = __nccwpck_require__(4870); +var classof = __nccwpck_require__(4314); +var wellKnownSymbol = __nccwpck_require__(3423); -var ITERATOR = wellKnownSymbol('iterator'); +var MATCH = wellKnownSymbol('match'); +// `IsRegExp` abstract operation +// https://tc39.es/ecma262/#sec-isregexp module.exports = function (it) { - var O = Object(it); - return O[ITERATOR] !== undefined - || '@@iterator' in O - // eslint-disable-next-line no-prototype-builtins - || Iterators.hasOwnProperty(classof(O)); + var isRegExp; + return isObject(it) && ((isRegExp = it[MATCH]) !== undefined ? !!isRegExp : classof(it) == 'RegExp'); }; /***/ }), -/***/ 3596: -/***/ ((module) => { +/***/ 5103: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -module.exports = function (it) { - return typeof it === 'object' ? it !== null : typeof it === 'function'; +var getBuiltIn = __nccwpck_require__(4685); +var isCallable = __nccwpck_require__(7763); +var isPrototypeOf = __nccwpck_require__(915); +var USE_SYMBOL_AS_UID = __nccwpck_require__(3336); + +var $Object = Object; + +module.exports = USE_SYMBOL_AS_UID ? function (it) { + return typeof it == 'symbol'; +} : function (it) { + var $Symbol = getBuiltIn('Symbol'); + return isCallable($Symbol) && isPrototypeOf($Symbol.prototype, $Object(it)); }; /***/ }), -/***/ 4277: -/***/ ((module) => { +/***/ 7888: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -module.exports = true; +var call = __nccwpck_require__(2956); +var anObject = __nccwpck_require__(536); +var getMethod = __nccwpck_require__(1514); + +module.exports = function (iterator, kind, value) { + var innerResult, innerError; + anObject(iterator); + try { + innerResult = getMethod(iterator, 'return'); + if (!innerResult) { + if (kind === 'throw') throw value; + return value; + } + innerResult = call(innerResult, iterator); + } catch (error) { + innerError = true; + innerResult = error; + } + if (kind === 'throw') throw value; + if (innerError) throw innerResult; + anObject(innerResult); + return value; +}; /***/ }), -/***/ 287: +/***/ 7223: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var isObject = __nccwpck_require__(3596); -var classof = __nccwpck_require__(5630); -var wellKnownSymbol = __nccwpck_require__(4814); +"use strict"; -var MATCH = wellKnownSymbol('match'); +var IteratorPrototype = (__nccwpck_require__(4374).IteratorPrototype); +var create = __nccwpck_require__(8870); +var createPropertyDescriptor = __nccwpck_require__(2921); +var setToStringTag = __nccwpck_require__(2416); +var Iterators = __nccwpck_require__(279); -// `IsRegExp` abstract operation -// https://tc39.github.io/ecma262/#sec-isregexp -module.exports = function (it) { - var isRegExp; - return isObject(it) && ((isRegExp = it[MATCH]) !== undefined ? !!isRegExp : classof(it) == 'RegExp'); +var returnThis = function () { return this; }; + +module.exports = function (IteratorConstructor, NAME, next, ENUMERABLE_NEXT) { + var TO_STRING_TAG = NAME + ' Iterator'; + IteratorConstructor.prototype = create(IteratorPrototype, { next: createPropertyDescriptor(+!ENUMERABLE_NEXT, next) }); + setToStringTag(IteratorConstructor, TO_STRING_TAG, false, true); + Iterators[TO_STRING_TAG] = returnThis; + return IteratorConstructor; }; /***/ }), -/***/ 847: +/***/ 7787: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var anObject = __nccwpck_require__(218); +"use strict"; + +var $ = __nccwpck_require__(6937); +var call = __nccwpck_require__(2956); +var IS_PURE = __nccwpck_require__(9785); +var FunctionName = __nccwpck_require__(4682); +var isCallable = __nccwpck_require__(7763); +var createIteratorConstructor = __nccwpck_require__(7223); +var getPrototypeOf = __nccwpck_require__(8294); +var setPrototypeOf = __nccwpck_require__(5361); +var setToStringTag = __nccwpck_require__(2416); +var createNonEnumerableProperty = __nccwpck_require__(5651); +var defineBuiltIn = __nccwpck_require__(502); +var wellKnownSymbol = __nccwpck_require__(3423); +var Iterators = __nccwpck_require__(279); +var IteratorsCore = __nccwpck_require__(4374); + +var PROPER_FUNCTION_NAME = FunctionName.PROPER; +var CONFIGURABLE_FUNCTION_NAME = FunctionName.CONFIGURABLE; +var IteratorPrototype = IteratorsCore.IteratorPrototype; +var BUGGY_SAFARI_ITERATORS = IteratorsCore.BUGGY_SAFARI_ITERATORS; +var ITERATOR = wellKnownSymbol('iterator'); +var KEYS = 'keys'; +var VALUES = 'values'; +var ENTRIES = 'entries'; + +var returnThis = function () { return this; }; + +module.exports = function (Iterable, NAME, IteratorConstructor, next, DEFAULT, IS_SET, FORCED) { + createIteratorConstructor(IteratorConstructor, NAME, next); + + var getIterationMethod = function (KIND) { + if (KIND === DEFAULT && defaultIterator) return defaultIterator; + if (!BUGGY_SAFARI_ITERATORS && KIND in IterablePrototype) return IterablePrototype[KIND]; + switch (KIND) { + case KEYS: return function keys() { return new IteratorConstructor(this, KIND); }; + case VALUES: return function values() { return new IteratorConstructor(this, KIND); }; + case ENTRIES: return function entries() { return new IteratorConstructor(this, KIND); }; + } return function () { return new IteratorConstructor(this); }; + }; + + var TO_STRING_TAG = NAME + ' Iterator'; + var INCORRECT_VALUES_NAME = false; + var IterablePrototype = Iterable.prototype; + var nativeIterator = IterablePrototype[ITERATOR] + || IterablePrototype['@@iterator'] + || DEFAULT && IterablePrototype[DEFAULT]; + var defaultIterator = !BUGGY_SAFARI_ITERATORS && nativeIterator || getIterationMethod(DEFAULT); + var anyNativeIterator = NAME == 'Array' ? IterablePrototype.entries || nativeIterator : nativeIterator; + var CurrentIteratorPrototype, methods, KEY; + + // fix native + if (anyNativeIterator) { + CurrentIteratorPrototype = getPrototypeOf(anyNativeIterator.call(new Iterable())); + if (CurrentIteratorPrototype !== Object.prototype && CurrentIteratorPrototype.next) { + if (!IS_PURE && getPrototypeOf(CurrentIteratorPrototype) !== IteratorPrototype) { + if (setPrototypeOf) { + setPrototypeOf(CurrentIteratorPrototype, IteratorPrototype); + } else if (!isCallable(CurrentIteratorPrototype[ITERATOR])) { + defineBuiltIn(CurrentIteratorPrototype, ITERATOR, returnThis); + } + } + // Set @@toStringTag to native iterators + setToStringTag(CurrentIteratorPrototype, TO_STRING_TAG, true, true); + if (IS_PURE) Iterators[TO_STRING_TAG] = returnThis; + } + } + + // fix Array.prototype.{ values, @@iterator }.name in V8 / FF + if (PROPER_FUNCTION_NAME && DEFAULT == VALUES && nativeIterator && nativeIterator.name !== VALUES) { + if (!IS_PURE && CONFIGURABLE_FUNCTION_NAME) { + createNonEnumerableProperty(IterablePrototype, 'name', VALUES); + } else { + INCORRECT_VALUES_NAME = true; + defaultIterator = function values() { return call(nativeIterator, this); }; + } + } + + // export additional methods + if (DEFAULT) { + methods = { + values: getIterationMethod(VALUES), + keys: IS_SET ? defaultIterator : getIterationMethod(KEYS), + entries: getIterationMethod(ENTRIES) + }; + if (FORCED) for (KEY in methods) { + if (BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME || !(KEY in IterablePrototype)) { + defineBuiltIn(IterablePrototype, KEY, methods[KEY]); + } + } else $({ target: NAME, proto: true, forced: BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME }, methods); + } -module.exports = function (iterator) { - var returnMethod = iterator['return']; - if (returnMethod !== undefined) { - return anObject(returnMethod.call(iterator)).value; + // define iterator + if ((!IS_PURE || FORCED) && IterablePrototype[ITERATOR] !== defaultIterator) { + defineBuiltIn(IterablePrototype, ITERATOR, defaultIterator, { name: DEFAULT }); } + Iterators[NAME] = defaultIterator; + + return methods; }; /***/ }), -/***/ 711: +/***/ 4374: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; -var getPrototypeOf = __nccwpck_require__(3477); -var createNonEnumerableProperty = __nccwpck_require__(5497); -var has = __nccwpck_require__(3929); -var wellKnownSymbol = __nccwpck_require__(4814); -var IS_PURE = __nccwpck_require__(4277); +var fails = __nccwpck_require__(8507); +var isCallable = __nccwpck_require__(7763); +var isObject = __nccwpck_require__(4870); +var create = __nccwpck_require__(8870); +var getPrototypeOf = __nccwpck_require__(8294); +var defineBuiltIn = __nccwpck_require__(502); +var wellKnownSymbol = __nccwpck_require__(3423); +var IS_PURE = __nccwpck_require__(9785); var ITERATOR = wellKnownSymbol('iterator'); var BUGGY_SAFARI_ITERATORS = false; -var returnThis = function () { return this; }; - // `%IteratorPrototype%` object -// https://tc39.github.io/ecma262/#sec-%iteratorprototype%-object +// https://tc39.es/ecma262/#sec-%iteratorprototype%-object var IteratorPrototype, PrototypeOfArrayIteratorPrototype, arrayIterator; +/* eslint-disable es/no-array-prototype-keys -- safe */ if ([].keys) { arrayIterator = [].keys(); // Safari 8 has buggy iterators w/o `next` @@ -7299,11 +6943,21 @@ if ([].keys) { } } -if (IteratorPrototype == undefined) IteratorPrototype = {}; +var NEW_ITERATOR_PROTOTYPE = !isObject(IteratorPrototype) || fails(function () { + var test = {}; + // FF44- legacy iterators case + return IteratorPrototype[ITERATOR].call(test) !== test; +}); + +if (NEW_ITERATOR_PROTOTYPE) IteratorPrototype = {}; +else if (IS_PURE) IteratorPrototype = create(IteratorPrototype); -// 25.1.2.1.1 %IteratorPrototype%[@@iterator]() -if (!IS_PURE && !has(IteratorPrototype, ITERATOR)) { - createNonEnumerableProperty(IteratorPrototype, ITERATOR, returnThis); +// `%IteratorPrototype%[@@iterator]()` method +// https://tc39.es/ecma262/#sec-%iteratorprototype%-@@iterator +if (!isCallable(IteratorPrototype[ITERATOR])) { + defineBuiltIn(IteratorPrototype, ITERATOR, function () { + return this; + }); } module.exports = { @@ -7314,7 +6968,7 @@ module.exports = { /***/ }), -/***/ 6657: +/***/ 279: /***/ ((module) => { module.exports = {}; @@ -7322,78 +6976,93 @@ module.exports = {}; /***/ }), -/***/ 7162: +/***/ 8141: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var fails = __nccwpck_require__(317); +var toLength = __nccwpck_require__(6862); -module.exports = !!Object.getOwnPropertySymbols && !fails(function () { - // Chrome 38 Symbol has incorrect toString conversion - // eslint-disable-next-line no-undef - return !String(Symbol()); -}); +// `LengthOfArrayLike` abstract operation +// https://tc39.es/ecma262/#sec-lengthofarraylike +module.exports = function (obj) { + return toLength(obj.length); +}; /***/ }), -/***/ 336: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { - -var global = __nccwpck_require__(7095); -var inspectSource = __nccwpck_require__(3399); +/***/ 4541: +/***/ ((module) => { -var WeakMap = global.WeakMap; +var ceil = Math.ceil; +var floor = Math.floor; -module.exports = typeof WeakMap === 'function' && /native code/.test(inspectSource(WeakMap)); +// `Math.trunc` method +// https://tc39.es/ecma262/#sec-math.trunc +// eslint-disable-next-line es/no-math-trunc -- safe +module.exports = Math.trunc || function trunc(x) { + var n = +x; + return (n > 0 ? floor : ceil)(n); +}; /***/ }), -/***/ 3914: +/***/ 8130: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var isRegExp = __nccwpck_require__(287); +var isRegExp = __nccwpck_require__(4970); + +var $TypeError = TypeError; module.exports = function (it) { if (isRegExp(it)) { - throw TypeError("The method doesn't accept regular expressions"); + throw $TypeError("The method doesn't accept regular expressions"); } return it; }; /***/ }), -/***/ 6667: +/***/ 7325: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var global = __nccwpck_require__(7095); -var trim = (__nccwpck_require__(5201).trim); -var whitespaces = __nccwpck_require__(850); +var global = __nccwpck_require__(5014); +var fails = __nccwpck_require__(8507); +var uncurryThis = __nccwpck_require__(1054); +var toString = __nccwpck_require__(3375); +var trim = (__nccwpck_require__(3308).trim); +var whitespaces = __nccwpck_require__(5522); var $parseInt = global.parseInt; -var hex = /^[+-]?0[Xx]/; -var FORCED = $parseInt(whitespaces + '08') !== 8 || $parseInt(whitespaces + '0x16') !== 22; +var Symbol = global.Symbol; +var ITERATOR = Symbol && Symbol.iterator; +var hex = /^[+-]?0x/i; +var exec = uncurryThis(hex.exec); +var FORCED = $parseInt(whitespaces + '08') !== 8 || $parseInt(whitespaces + '0x16') !== 22 + // MS Edge 18- broken with boxed symbols + || (ITERATOR && !fails(function () { $parseInt(Object(ITERATOR)); })); // `parseInt` method -// https://tc39.github.io/ecma262/#sec-parseint-string-radix +// https://tc39.es/ecma262/#sec-parseint-string-radix module.exports = FORCED ? function parseInt(string, radix) { - var S = trim(String(string)); - return $parseInt(S, (radix >>> 0) || (hex.test(S) ? 16 : 10)); + var S = trim(toString(string)); + return $parseInt(S, (radix >>> 0) || (exec(hex, S) ? 16 : 10)); } : $parseInt; /***/ }), -/***/ 4357: +/***/ 8870: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var anObject = __nccwpck_require__(218); -var defineProperties = __nccwpck_require__(651); -var enumBugKeys = __nccwpck_require__(5931); -var hiddenKeys = __nccwpck_require__(8087); -var html = __nccwpck_require__(8362); -var documentCreateElement = __nccwpck_require__(1637); -var sharedKey = __nccwpck_require__(7972); +/* global ActiveXObject -- old IE, WSH */ +var anObject = __nccwpck_require__(536); +var definePropertiesModule = __nccwpck_require__(7559); +var enumBugKeys = __nccwpck_require__(4452); +var hiddenKeys = __nccwpck_require__(2185); +var html = __nccwpck_require__(1951); +var documentCreateElement = __nccwpck_require__(2410); +var sharedKey = __nccwpck_require__(302); var GT = '>'; var LT = '<'; @@ -7441,10 +7110,13 @@ var NullProtoObjectViaIFrame = function () { var activeXDocument; var NullProtoObject = function () { try { - /* global ActiveXObject */ - activeXDocument = document.domain && new ActiveXObject('htmlfile'); + activeXDocument = new ActiveXObject('htmlfile'); } catch (error) { /* ignore */ } - NullProtoObject = activeXDocument ? NullProtoObjectViaActiveX(activeXDocument) : NullProtoObjectViaIFrame(); + NullProtoObject = typeof document != 'undefined' + ? document.domain && activeXDocument + ? NullProtoObjectViaActiveX(activeXDocument) // old IE + : NullProtoObjectViaIFrame() + : NullProtoObjectViaActiveX(activeXDocument); // WSH var length = enumBugKeys.length; while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]]; return NullProtoObject(); @@ -7453,7 +7125,8 @@ var NullProtoObject = function () { hiddenKeys[IE_PROTO] = true; // `Object.create` method -// https://tc39.github.io/ecma262/#sec-object.create +// https://tc39.es/ecma262/#sec-object.create +// eslint-disable-next-line es/no-object-create -- safe module.exports = Object.create || function create(O, Properties) { var result; if (O !== null) { @@ -7463,55 +7136,82 @@ module.exports = Object.create || function create(O, Properties) { // add "__proto__" for Object.getPrototypeOf polyfill result[IE_PROTO] = O; } else result = NullProtoObject(); - return Properties === undefined ? result : defineProperties(result, Properties); + return Properties === undefined ? result : definePropertiesModule.f(result, Properties); }; /***/ }), -/***/ 651: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { +/***/ 7559: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var DESCRIPTORS = __nccwpck_require__(8399); -var definePropertyModule = __nccwpck_require__(5204); -var anObject = __nccwpck_require__(218); -var objectKeys = __nccwpck_require__(3366); +var DESCRIPTORS = __nccwpck_require__(8109); +var V8_PROTOTYPE_DEFINE_BUG = __nccwpck_require__(935); +var definePropertyModule = __nccwpck_require__(6247); +var anObject = __nccwpck_require__(536); +var toIndexedObject = __nccwpck_require__(5354); +var objectKeys = __nccwpck_require__(130); // `Object.defineProperties` method -// https://tc39.github.io/ecma262/#sec-object.defineproperties -module.exports = DESCRIPTORS ? Object.defineProperties : function defineProperties(O, Properties) { +// https://tc39.es/ecma262/#sec-object.defineproperties +// eslint-disable-next-line es/no-object-defineproperties -- safe +exports.f = DESCRIPTORS && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) { anObject(O); + var props = toIndexedObject(Properties); var keys = objectKeys(Properties); var length = keys.length; var index = 0; var key; - while (length > index) definePropertyModule.f(O, key = keys[index++], Properties[key]); + while (length > index) definePropertyModule.f(O, key = keys[index++], props[key]); return O; }; /***/ }), -/***/ 5204: +/***/ 6247: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var DESCRIPTORS = __nccwpck_require__(8399); -var IE8_DOM_DEFINE = __nccwpck_require__(5893); -var anObject = __nccwpck_require__(218); -var toPrimitive = __nccwpck_require__(7703); - -var nativeDefineProperty = Object.defineProperty; +var DESCRIPTORS = __nccwpck_require__(8109); +var IE8_DOM_DEFINE = __nccwpck_require__(1462); +var V8_PROTOTYPE_DEFINE_BUG = __nccwpck_require__(935); +var anObject = __nccwpck_require__(536); +var toPropertyKey = __nccwpck_require__(6121); + +var $TypeError = TypeError; +// eslint-disable-next-line es/no-object-defineproperty -- safe +var $defineProperty = Object.defineProperty; +// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe +var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor; +var ENUMERABLE = 'enumerable'; +var CONFIGURABLE = 'configurable'; +var WRITABLE = 'writable'; // `Object.defineProperty` method -// https://tc39.github.io/ecma262/#sec-object.defineproperty -exports.f = DESCRIPTORS ? nativeDefineProperty : function defineProperty(O, P, Attributes) { +// https://tc39.es/ecma262/#sec-object.defineproperty +exports.f = DESCRIPTORS ? V8_PROTOTYPE_DEFINE_BUG ? function defineProperty(O, P, Attributes) { anObject(O); - P = toPrimitive(P, true); + P = toPropertyKey(P); + anObject(Attributes); + if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) { + var current = $getOwnPropertyDescriptor(O, P); + if (current && current[WRITABLE]) { + O[P] = Attributes.value; + Attributes = { + configurable: CONFIGURABLE in Attributes ? Attributes[CONFIGURABLE] : current[CONFIGURABLE], + enumerable: ENUMERABLE in Attributes ? Attributes[ENUMERABLE] : current[ENUMERABLE], + writable: false + }; + } + } return $defineProperty(O, P, Attributes); +} : $defineProperty : function defineProperty(O, P, Attributes) { + anObject(O); + P = toPropertyKey(P); anObject(Attributes); if (IE8_DOM_DEFINE) try { - return nativeDefineProperty(O, P, Attributes); + return $defineProperty(O, P, Attributes); } catch (error) { /* empty */ } - if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported'); + if ('get' in Attributes || 'set' in Attributes) throw $TypeError('Accessors not supported'); if ('value' in Attributes) O[P] = Attributes.value; return O; }; @@ -7519,72 +7219,76 @@ exports.f = DESCRIPTORS ? nativeDefineProperty : function defineProperty(O, P, A /***/ }), -/***/ 8184: +/***/ 8044: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var DESCRIPTORS = __nccwpck_require__(8399); -var propertyIsEnumerableModule = __nccwpck_require__(8614); -var createPropertyDescriptor = __nccwpck_require__(9063); -var toIndexedObject = __nccwpck_require__(6895); -var toPrimitive = __nccwpck_require__(7703); -var has = __nccwpck_require__(3929); -var IE8_DOM_DEFINE = __nccwpck_require__(5893); +var DESCRIPTORS = __nccwpck_require__(8109); +var call = __nccwpck_require__(2956); +var propertyIsEnumerableModule = __nccwpck_require__(50); +var createPropertyDescriptor = __nccwpck_require__(2921); +var toIndexedObject = __nccwpck_require__(5354); +var toPropertyKey = __nccwpck_require__(6121); +var hasOwn = __nccwpck_require__(568); +var IE8_DOM_DEFINE = __nccwpck_require__(1462); -var nativeGetOwnPropertyDescriptor = Object.getOwnPropertyDescriptor; +// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe +var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor; // `Object.getOwnPropertyDescriptor` method -// https://tc39.github.io/ecma262/#sec-object.getownpropertydescriptor -exports.f = DESCRIPTORS ? nativeGetOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) { +// https://tc39.es/ecma262/#sec-object.getownpropertydescriptor +exports.f = DESCRIPTORS ? $getOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) { O = toIndexedObject(O); - P = toPrimitive(P, true); + P = toPropertyKey(P); if (IE8_DOM_DEFINE) try { - return nativeGetOwnPropertyDescriptor(O, P); + return $getOwnPropertyDescriptor(O, P); } catch (error) { /* empty */ } - if (has(O, P)) return createPropertyDescriptor(!propertyIsEnumerableModule.f.call(O, P), O[P]); + if (hasOwn(O, P)) return createPropertyDescriptor(!call(propertyIsEnumerableModule.f, O, P), O[P]); }; /***/ }), -/***/ 151: +/***/ 5659: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var toIndexedObject = __nccwpck_require__(6895); -var nativeGetOwnPropertyNames = (__nccwpck_require__(6986).f); - -var toString = {}.toString; +/* eslint-disable es/no-object-getownpropertynames -- safe */ +var classof = __nccwpck_require__(4314); +var toIndexedObject = __nccwpck_require__(5354); +var $getOwnPropertyNames = (__nccwpck_require__(4895).f); +var arraySlice = __nccwpck_require__(3914); var windowNames = typeof window == 'object' && window && Object.getOwnPropertyNames ? Object.getOwnPropertyNames(window) : []; var getWindowNames = function (it) { try { - return nativeGetOwnPropertyNames(it); + return $getOwnPropertyNames(it); } catch (error) { - return windowNames.slice(); + return arraySlice(windowNames); } }; // fallback for IE11 buggy Object.getOwnPropertyNames with iframe and window module.exports.f = function getOwnPropertyNames(it) { - return windowNames && toString.call(it) == '[object Window]' + return windowNames && classof(it) == 'Window' ? getWindowNames(it) - : nativeGetOwnPropertyNames(toIndexedObject(it)); + : $getOwnPropertyNames(toIndexedObject(it)); }; /***/ }), -/***/ 6986: +/***/ 4895: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var internalObjectKeys = __nccwpck_require__(6085); -var enumBugKeys = __nccwpck_require__(5931); +var internalObjectKeys = __nccwpck_require__(4694); +var enumBugKeys = __nccwpck_require__(4452); var hiddenKeys = enumBugKeys.concat('length', 'prototype'); // `Object.getOwnPropertyNames` method -// https://tc39.github.io/ecma262/#sec-object.getownpropertynames +// https://tc39.es/ecma262/#sec-object.getownpropertynames +// eslint-disable-next-line es/no-object-getownpropertynames -- safe exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) { return internalObjectKeys(O, hiddenKeys); }; @@ -7592,55 +7296,73 @@ exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) { /***/ }), -/***/ 2551: +/***/ 5664: /***/ ((__unused_webpack_module, exports) => { +// eslint-disable-next-line es/no-object-getownpropertysymbols -- safe exports.f = Object.getOwnPropertySymbols; /***/ }), -/***/ 3477: +/***/ 8294: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var has = __nccwpck_require__(3929); -var toObject = __nccwpck_require__(7510); -var sharedKey = __nccwpck_require__(7972); -var CORRECT_PROTOTYPE_GETTER = __nccwpck_require__(7273); +var hasOwn = __nccwpck_require__(568); +var isCallable = __nccwpck_require__(7763); +var toObject = __nccwpck_require__(2365); +var sharedKey = __nccwpck_require__(302); +var CORRECT_PROTOTYPE_GETTER = __nccwpck_require__(7207); var IE_PROTO = sharedKey('IE_PROTO'); -var ObjectPrototype = Object.prototype; +var $Object = Object; +var ObjectPrototype = $Object.prototype; // `Object.getPrototypeOf` method -// https://tc39.github.io/ecma262/#sec-object.getprototypeof -module.exports = CORRECT_PROTOTYPE_GETTER ? Object.getPrototypeOf : function (O) { - O = toObject(O); - if (has(O, IE_PROTO)) return O[IE_PROTO]; - if (typeof O.constructor == 'function' && O instanceof O.constructor) { - return O.constructor.prototype; - } return O instanceof Object ? ObjectPrototype : null; +// https://tc39.es/ecma262/#sec-object.getprototypeof +// eslint-disable-next-line es/no-object-getprototypeof -- safe +module.exports = CORRECT_PROTOTYPE_GETTER ? $Object.getPrototypeOf : function (O) { + var object = toObject(O); + if (hasOwn(object, IE_PROTO)) return object[IE_PROTO]; + var constructor = object.constructor; + if (isCallable(constructor) && object instanceof constructor) { + return constructor.prototype; + } return object instanceof $Object ? ObjectPrototype : null; }; /***/ }), -/***/ 6085: +/***/ 915: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +var uncurryThis = __nccwpck_require__(1054); + +module.exports = uncurryThis({}.isPrototypeOf); + + +/***/ }), + +/***/ 4694: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var has = __nccwpck_require__(3929); -var toIndexedObject = __nccwpck_require__(6895); -var indexOf = (__nccwpck_require__(4963).indexOf); -var hiddenKeys = __nccwpck_require__(8087); +var uncurryThis = __nccwpck_require__(1054); +var hasOwn = __nccwpck_require__(568); +var toIndexedObject = __nccwpck_require__(5354); +var indexOf = (__nccwpck_require__(5320).indexOf); +var hiddenKeys = __nccwpck_require__(2185); + +var push = uncurryThis([].push); module.exports = function (object, names) { var O = toIndexedObject(object); var i = 0; var result = []; var key; - for (key in O) !has(hiddenKeys, key) && has(O, key) && result.push(key); + for (key in O) !hasOwn(hiddenKeys, key) && hasOwn(O, key) && push(result, key); // Don't enum bug & hidden keys - while (names.length > i) if (has(O, key = names[i++])) { - ~indexOf(result, key) || result.push(key); + while (names.length > i) if (hasOwn(O, key = names[i++])) { + ~indexOf(result, key) || push(result, key); } return result; }; @@ -7648,14 +7370,15 @@ module.exports = function (object, names) { /***/ }), -/***/ 3366: +/***/ 130: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var internalObjectKeys = __nccwpck_require__(6085); -var enumBugKeys = __nccwpck_require__(5931); +var internalObjectKeys = __nccwpck_require__(4694); +var enumBugKeys = __nccwpck_require__(4452); // `Object.keys` method -// https://tc39.github.io/ecma262/#sec-object.keys +// https://tc39.es/ecma262/#sec-object.keys +// eslint-disable-next-line es/no-object-keys -- safe module.exports = Object.keys || function keys(O) { return internalObjectKeys(O, enumBugKeys); }; @@ -7663,50 +7386,54 @@ module.exports = Object.keys || function keys(O) { /***/ }), -/***/ 8614: +/***/ 50: /***/ ((__unused_webpack_module, exports) => { "use strict"; -var nativePropertyIsEnumerable = {}.propertyIsEnumerable; +var $propertyIsEnumerable = {}.propertyIsEnumerable; +// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor; // Nashorn ~ JDK8 bug -var NASHORN_BUG = getOwnPropertyDescriptor && !nativePropertyIsEnumerable.call({ 1: 2 }, 1); +var NASHORN_BUG = getOwnPropertyDescriptor && !$propertyIsEnumerable.call({ 1: 2 }, 1); // `Object.prototype.propertyIsEnumerable` method implementation -// https://tc39.github.io/ecma262/#sec-object.prototype.propertyisenumerable +// https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable exports.f = NASHORN_BUG ? function propertyIsEnumerable(V) { var descriptor = getOwnPropertyDescriptor(this, V); return !!descriptor && descriptor.enumerable; -} : nativePropertyIsEnumerable; +} : $propertyIsEnumerable; /***/ }), -/***/ 4227: +/***/ 5361: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var anObject = __nccwpck_require__(218); -var aPossiblePrototype = __nccwpck_require__(2136); +/* eslint-disable no-proto -- safe */ +var uncurryThis = __nccwpck_require__(1054); +var anObject = __nccwpck_require__(536); +var aPossiblePrototype = __nccwpck_require__(8274); // `Object.setPrototypeOf` method -// https://tc39.github.io/ecma262/#sec-object.setprototypeof +// https://tc39.es/ecma262/#sec-object.setprototypeof // Works with __proto__ only. Old v8 can't work with null proto objects. -/* eslint-disable no-proto */ +// eslint-disable-next-line es/no-object-setprototypeof -- safe module.exports = Object.setPrototypeOf || ('__proto__' in {} ? function () { var CORRECT_SETTER = false; var test = {}; var setter; try { - setter = Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set; - setter.call(test, []); + // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe + setter = uncurryThis(Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set); + setter(test, []); CORRECT_SETTER = test instanceof Array; } catch (error) { /* empty */ } return function setPrototypeOf(O, proto) { anObject(O); aPossiblePrototype(proto); - if (CORRECT_SETTER) setter.call(O, proto); + if (CORRECT_SETTER) setter(O, proto); else O.__proto__ = proto; return O; }; @@ -7715,16 +7442,16 @@ module.exports = Object.setPrototypeOf || ('__proto__' in {} ? function () { /***/ }), -/***/ 599: +/***/ 9222: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; -var TO_STRING_TAG_SUPPORT = __nccwpck_require__(402); -var classof = __nccwpck_require__(3955); +var TO_STRING_TAG_SUPPORT = __nccwpck_require__(3934); +var classof = __nccwpck_require__(9545); // `Object.prototype.toString` method implementation -// https://tc39.github.io/ecma262/#sec-object.prototype.tostring +// https://tc39.es/ecma262/#sec-object.prototype.tostring module.exports = TO_STRING_TAG_SUPPORT ? {}.toString : function toString() { return '[object ' + classof(this) + ']'; }; @@ -7732,44 +7459,55 @@ module.exports = TO_STRING_TAG_SUPPORT ? {}.toString : function toString() { /***/ }), -/***/ 1278: -/***/ ((module) => { +/***/ 5121: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -module.exports = {}; +var call = __nccwpck_require__(2956); +var isCallable = __nccwpck_require__(7763); +var isObject = __nccwpck_require__(4870); +var $TypeError = TypeError; -/***/ }), +// `OrdinaryToPrimitive` abstract operation +// https://tc39.es/ecma262/#sec-ordinarytoprimitive +module.exports = function (input, pref) { + var fn, val; + if (pref === 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val; + if (isCallable(fn = input.valueOf) && !isObject(val = call(fn, input))) return val; + if (pref !== 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val; + throw $TypeError("Can't convert object to primitive value"); +}; -/***/ 8463: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var createNonEnumerableProperty = __nccwpck_require__(5497); +/***/ }), -module.exports = function (target, key, value, options) { - if (options && options.enumerable) target[key] = value; - else createNonEnumerableProperty(target, key, value); -}; +/***/ 9268: +/***/ ((module) => { + +module.exports = {}; /***/ }), -/***/ 4394: +/***/ 340: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; -var anObject = __nccwpck_require__(218); +var anObject = __nccwpck_require__(536); // `RegExp.prototype.flags` getter implementation -// https://tc39.github.io/ecma262/#sec-get-regexp.prototype.flags +// https://tc39.es/ecma262/#sec-get-regexp.prototype.flags module.exports = function () { var that = anObject(this); var result = ''; + if (that.hasIndices) result += 'd'; if (that.global) result += 'g'; if (that.ignoreCase) result += 'i'; if (that.multiline) result += 'm'; if (that.dotAll) result += 's'; if (that.unicode) result += 'u'; + if (that.unicodeSets) result += 'v'; if (that.sticky) result += 'y'; return result; }; @@ -7777,52 +7515,58 @@ module.exports = function () { /***/ }), -/***/ 9688: -/***/ ((module) => { +/***/ 3633: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -// `RequireObjectCoercible` abstract operation -// https://tc39.github.io/ecma262/#sec-requireobjectcoercible -module.exports = function (it) { - if (it == undefined) throw TypeError("Can't call method on " + it); - return it; +var call = __nccwpck_require__(2956); +var hasOwn = __nccwpck_require__(568); +var isPrototypeOf = __nccwpck_require__(915); +var regExpFlags = __nccwpck_require__(340); + +var RegExpPrototype = RegExp.prototype; + +module.exports = function (R) { + var flags = R.flags; + return flags === undefined && !('flags' in RegExpPrototype) && !hasOwn(R, 'flags') && isPrototypeOf(RegExpPrototype, R) + ? call(regExpFlags, R) : flags; }; /***/ }), -/***/ 4496: +/***/ 4235: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var global = __nccwpck_require__(7095); -var createNonEnumerableProperty = __nccwpck_require__(5497); +var isNullOrUndefined = __nccwpck_require__(7379); -module.exports = function (key, value) { - try { - createNonEnumerableProperty(global, key, value); - } catch (error) { - global[key] = value; - } return value; +var $TypeError = TypeError; + +// `RequireObjectCoercible` abstract operation +// https://tc39.es/ecma262/#sec-requireobjectcoercible +module.exports = function (it) { + if (isNullOrUndefined(it)) throw $TypeError("Can't call method on " + it); + return it; }; /***/ }), -/***/ 7596: +/***/ 2416: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var TO_STRING_TAG_SUPPORT = __nccwpck_require__(402); -var defineProperty = (__nccwpck_require__(5204).f); -var createNonEnumerableProperty = __nccwpck_require__(5497); -var has = __nccwpck_require__(3929); -var toString = __nccwpck_require__(599); -var wellKnownSymbol = __nccwpck_require__(4814); +var TO_STRING_TAG_SUPPORT = __nccwpck_require__(3934); +var defineProperty = (__nccwpck_require__(6247).f); +var createNonEnumerableProperty = __nccwpck_require__(5651); +var hasOwn = __nccwpck_require__(568); +var toString = __nccwpck_require__(9222); +var wellKnownSymbol = __nccwpck_require__(3423); var TO_STRING_TAG = wellKnownSymbol('toStringTag'); module.exports = function (it, TAG, STATIC, SET_METHOD) { if (it) { var target = STATIC ? it : it.prototype; - if (!has(target, TO_STRING_TAG)) { + if (!hasOwn(target, TO_STRING_TAG)) { defineProperty(target, TO_STRING_TAG, { configurable: true, value: TAG }); } if (SET_METHOD && !TO_STRING_TAG_SUPPORT) { @@ -7834,11 +7578,11 @@ module.exports = function (it, TAG, STATIC, SET_METHOD) { /***/ }), -/***/ 7972: +/***/ 302: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var shared = __nccwpck_require__(2152); -var uid = __nccwpck_require__(5376); +var shared = __nccwpck_require__(8674); +var uid = __nccwpck_require__(7463); var keys = shared('keys'); @@ -7849,62 +7593,73 @@ module.exports = function (key) { /***/ }), -/***/ 8390: +/***/ 7945: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var global = __nccwpck_require__(7095); -var setGlobal = __nccwpck_require__(4496); +var global = __nccwpck_require__(5014); +var defineGlobalProperty = __nccwpck_require__(2993); var SHARED = '__core-js_shared__'; -var store = global[SHARED] || setGlobal(SHARED, {}); +var store = global[SHARED] || defineGlobalProperty(SHARED, {}); module.exports = store; /***/ }), -/***/ 2152: +/***/ 8674: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var IS_PURE = __nccwpck_require__(4277); -var store = __nccwpck_require__(8390); +var IS_PURE = __nccwpck_require__(9785); +var store = __nccwpck_require__(7945); (module.exports = function (key, value) { return store[key] || (store[key] = value !== undefined ? value : {}); })('versions', []).push({ - version: '3.7.0', + version: '3.25.5', mode: IS_PURE ? 'pure' : 'global', - copyright: '© 2020 Denis Pushkarev (zloirock.ru)' + copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)', + license: 'https://github.com/zloirock/core-js/blob/v3.25.5/LICENSE', + source: 'https://github.com/zloirock/core-js' }); /***/ }), -/***/ 7977: +/***/ 6376: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var toInteger = __nccwpck_require__(769); -var requireObjectCoercible = __nccwpck_require__(9688); +var uncurryThis = __nccwpck_require__(1054); +var toIntegerOrInfinity = __nccwpck_require__(710); +var toString = __nccwpck_require__(3375); +var requireObjectCoercible = __nccwpck_require__(4235); + +var charAt = uncurryThis(''.charAt); +var charCodeAt = uncurryThis(''.charCodeAt); +var stringSlice = uncurryThis(''.slice); -// `String.prototype.{ codePointAt, at }` methods implementation var createMethod = function (CONVERT_TO_STRING) { return function ($this, pos) { - var S = String(requireObjectCoercible($this)); - var position = toInteger(pos); + var S = toString(requireObjectCoercible($this)); + var position = toIntegerOrInfinity(pos); var size = S.length; var first, second; if (position < 0 || position >= size) return CONVERT_TO_STRING ? '' : undefined; - first = S.charCodeAt(position); + first = charCodeAt(S, position); return first < 0xD800 || first > 0xDBFF || position + 1 === size - || (second = S.charCodeAt(position + 1)) < 0xDC00 || second > 0xDFFF - ? CONVERT_TO_STRING ? S.charAt(position) : first - : CONVERT_TO_STRING ? S.slice(position, position + 2) : (first - 0xD800 << 10) + (second - 0xDC00) + 0x10000; + || (second = charCodeAt(S, position + 1)) < 0xDC00 || second > 0xDFFF + ? CONVERT_TO_STRING + ? charAt(S, position) + : first + : CONVERT_TO_STRING + ? stringSlice(S, position, position + 2) + : (first - 0xD800 << 10) + (second - 0xDC00) + 0x10000; }; }; module.exports = { // `String.prototype.codePointAt` method - // https://tc39.github.io/ecma262/#sec-string.prototype.codepointat + // https://tc39.es/ecma262/#sec-string.prototype.codepointat codeAt: createMethod(false), // `String.prototype.at` method // https://github.com/mathiasbynens/String.prototype.at @@ -7914,12 +7669,15 @@ module.exports = { /***/ }), -/***/ 5201: +/***/ 3308: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var requireObjectCoercible = __nccwpck_require__(9688); -var whitespaces = __nccwpck_require__(850); +var uncurryThis = __nccwpck_require__(1054); +var requireObjectCoercible = __nccwpck_require__(4235); +var toString = __nccwpck_require__(3375); +var whitespaces = __nccwpck_require__(5522); +var replace = uncurryThis(''.replace); var whitespace = '[' + whitespaces + ']'; var ltrim = RegExp('^' + whitespace + whitespace + '*'); var rtrim = RegExp(whitespace + whitespace + '*$'); @@ -7927,32 +7685,90 @@ var rtrim = RegExp(whitespace + whitespace + '*$'); // `String.prototype.{ trim, trimStart, trimEnd, trimLeft, trimRight }` methods implementation var createMethod = function (TYPE) { return function ($this) { - var string = String(requireObjectCoercible($this)); - if (TYPE & 1) string = string.replace(ltrim, ''); - if (TYPE & 2) string = string.replace(rtrim, ''); + var string = toString(requireObjectCoercible($this)); + if (TYPE & 1) string = replace(string, ltrim, ''); + if (TYPE & 2) string = replace(string, rtrim, ''); return string; }; }; module.exports = { // `String.prototype.{ trimLeft, trimStart }` methods - // https://tc39.github.io/ecma262/#sec-string.prototype.trimstart + // https://tc39.es/ecma262/#sec-string.prototype.trimstart start: createMethod(1), // `String.prototype.{ trimRight, trimEnd }` methods - // https://tc39.github.io/ecma262/#sec-string.prototype.trimend + // https://tc39.es/ecma262/#sec-string.prototype.trimend end: createMethod(2), // `String.prototype.trim` method - // https://tc39.github.io/ecma262/#sec-string.prototype.trim + // https://tc39.es/ecma262/#sec-string.prototype.trim trim: createMethod(3) }; /***/ }), -/***/ 8320: +/***/ 2788: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +/* eslint-disable es/no-symbol -- required for testing */ +var V8_VERSION = __nccwpck_require__(8594); +var fails = __nccwpck_require__(8507); + +// eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing +module.exports = !!Object.getOwnPropertySymbols && !fails(function () { + var symbol = Symbol(); + // Chrome 38 Symbol has incorrect toString conversion + // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances + return !String(symbol) || !(Object(symbol) instanceof Symbol) || + // Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances + !Symbol.sham && V8_VERSION && V8_VERSION < 41; +}); + + +/***/ }), + +/***/ 1634: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +var call = __nccwpck_require__(2956); +var getBuiltIn = __nccwpck_require__(4685); +var wellKnownSymbol = __nccwpck_require__(3423); +var defineBuiltIn = __nccwpck_require__(502); + +module.exports = function () { + var Symbol = getBuiltIn('Symbol'); + var SymbolPrototype = Symbol && Symbol.prototype; + var valueOf = SymbolPrototype && SymbolPrototype.valueOf; + var TO_PRIMITIVE = wellKnownSymbol('toPrimitive'); + + if (SymbolPrototype && !SymbolPrototype[TO_PRIMITIVE]) { + // `Symbol.prototype[@@toPrimitive]` method + // https://tc39.es/ecma262/#sec-symbol.prototype-@@toprimitive + // eslint-disable-next-line no-unused-vars -- required for .length + defineBuiltIn(SymbolPrototype, TO_PRIMITIVE, function (hint) { + return call(valueOf, this); + }, { arity: 1 }); + } +}; + + +/***/ }), + +/***/ 4893: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +var NATIVE_SYMBOL = __nccwpck_require__(2788); + +/* eslint-disable es/no-symbol -- safe */ +module.exports = NATIVE_SYMBOL && !!Symbol['for'] && !!Symbol.keyFor; + + +/***/ }), + +/***/ 8293: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var toInteger = __nccwpck_require__(769); +var toIntegerOrInfinity = __nccwpck_require__(710); var max = Math.max; var min = Math.min; @@ -7961,19 +7777,19 @@ var min = Math.min; // Let integer be ? ToInteger(index). // If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length). module.exports = function (index, length) { - var integer = toInteger(index); + var integer = toIntegerOrInfinity(index); return integer < 0 ? max(integer + length, 0) : min(integer, length); }; /***/ }), -/***/ 6895: +/***/ 5354: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { // toObject with fallback for non-array-like ES3 strings -var IndexedObject = __nccwpck_require__(5762); -var requireObjectCoercible = __nccwpck_require__(9688); +var IndexedObject = __nccwpck_require__(1756); +var requireObjectCoercible = __nccwpck_require__(4235); module.exports = function (it) { return IndexedObject(requireObjectCoercible(it)); @@ -7982,178 +7798,297 @@ module.exports = function (it) { /***/ }), -/***/ 769: -/***/ ((module) => { +/***/ 710: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +var trunc = __nccwpck_require__(4541); + +// `ToIntegerOrInfinity` abstract operation +// https://tc39.es/ecma262/#sec-tointegerorinfinity +module.exports = function (argument) { + var number = +argument; + // eslint-disable-next-line no-self-compare -- NaN check + return number !== number || number === 0 ? 0 : trunc(number); +}; + + +/***/ }), + +/***/ 6862: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +var toIntegerOrInfinity = __nccwpck_require__(710); + +var min = Math.min; + +// `ToLength` abstract operation +// https://tc39.es/ecma262/#sec-tolength +module.exports = function (argument) { + return argument > 0 ? min(toIntegerOrInfinity(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991 +}; + + +/***/ }), + +/***/ 2365: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +var requireObjectCoercible = __nccwpck_require__(4235); + +var $Object = Object; + +// `ToObject` abstract operation +// https://tc39.es/ecma262/#sec-toobject +module.exports = function (argument) { + return $Object(requireObjectCoercible(argument)); +}; + + +/***/ }), + +/***/ 7180: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +var call = __nccwpck_require__(2956); +var isObject = __nccwpck_require__(4870); +var isSymbol = __nccwpck_require__(5103); +var getMethod = __nccwpck_require__(1514); +var ordinaryToPrimitive = __nccwpck_require__(5121); +var wellKnownSymbol = __nccwpck_require__(3423); + +var $TypeError = TypeError; +var TO_PRIMITIVE = wellKnownSymbol('toPrimitive'); + +// `ToPrimitive` abstract operation +// https://tc39.es/ecma262/#sec-toprimitive +module.exports = function (input, pref) { + if (!isObject(input) || isSymbol(input)) return input; + var exoticToPrim = getMethod(input, TO_PRIMITIVE); + var result; + if (exoticToPrim) { + if (pref === undefined) pref = 'default'; + result = call(exoticToPrim, input, pref); + if (!isObject(result) || isSymbol(result)) return result; + throw $TypeError("Can't convert object to primitive value"); + } + if (pref === undefined) pref = 'number'; + return ordinaryToPrimitive(input, pref); +}; + + +/***/ }), + +/***/ 6121: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +var toPrimitive = __nccwpck_require__(7180); +var isSymbol = __nccwpck_require__(5103); + +// `ToPropertyKey` abstract operation +// https://tc39.es/ecma262/#sec-topropertykey +module.exports = function (argument) { + var key = toPrimitive(argument, 'string'); + return isSymbol(key) ? key : key + ''; +}; + + +/***/ }), + +/***/ 3934: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var ceil = Math.ceil; -var floor = Math.floor; +var wellKnownSymbol = __nccwpck_require__(3423); -// `ToInteger` abstract operation -// https://tc39.github.io/ecma262/#sec-tointeger -module.exports = function (argument) { - return isNaN(argument = +argument) ? 0 : (argument > 0 ? floor : ceil)(argument); -}; +var TO_STRING_TAG = wellKnownSymbol('toStringTag'); +var test = {}; + +test[TO_STRING_TAG] = 'z'; + +module.exports = String(test) === '[object z]'; /***/ }), -/***/ 4048: +/***/ 3375: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var toInteger = __nccwpck_require__(769); +var classof = __nccwpck_require__(9545); -var min = Math.min; +var $String = String; -// `ToLength` abstract operation -// https://tc39.github.io/ecma262/#sec-tolength module.exports = function (argument) { - return argument > 0 ? min(toInteger(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991 + if (classof(argument) === 'Symbol') throw TypeError('Cannot convert a Symbol value to a string'); + return $String(argument); }; /***/ }), -/***/ 7510: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { +/***/ 4914: +/***/ ((module) => { -var requireObjectCoercible = __nccwpck_require__(9688); +var $String = String; -// `ToObject` abstract operation -// https://tc39.github.io/ecma262/#sec-toobject module.exports = function (argument) { - return Object(requireObjectCoercible(argument)); + try { + return $String(argument); + } catch (error) { + return 'Object'; + } }; /***/ }), -/***/ 7703: +/***/ 7463: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var isObject = __nccwpck_require__(3596); +var uncurryThis = __nccwpck_require__(1054); -// `ToPrimitive` abstract operation -// https://tc39.github.io/ecma262/#sec-toprimitive -// instead of the ES6 spec version, we didn't implement @@toPrimitive case -// and the second argument - flag - preferred type is a string -module.exports = function (input, PREFERRED_STRING) { - if (!isObject(input)) return input; - var fn, val; - if (PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val; - if (typeof (fn = input.valueOf) == 'function' && !isObject(val = fn.call(input))) return val; - if (!PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val; - throw TypeError("Can't convert object to primitive value"); +var id = 0; +var postfix = Math.random(); +var toString = uncurryThis(1.0.toString); + +module.exports = function (key) { + return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id + postfix, 36); }; /***/ }), -/***/ 402: +/***/ 3336: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var wellKnownSymbol = __nccwpck_require__(4814); +/* eslint-disable es/no-symbol -- required for testing */ +var NATIVE_SYMBOL = __nccwpck_require__(2788); -var TO_STRING_TAG = wellKnownSymbol('toStringTag'); -var test = {}; +module.exports = NATIVE_SYMBOL + && !Symbol.sham + && typeof Symbol.iterator == 'symbol'; -test[TO_STRING_TAG] = 'z'; -module.exports = String(test) === '[object z]'; +/***/ }), + +/***/ 935: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +var DESCRIPTORS = __nccwpck_require__(8109); +var fails = __nccwpck_require__(8507); + +// V8 ~ Chrome 36- +// https://bugs.chromium.org/p/v8/issues/detail?id=3334 +module.exports = DESCRIPTORS && fails(function () { + // eslint-disable-next-line es/no-object-defineproperty -- required for testing + return Object.defineProperty(function () { /* empty */ }, 'prototype', { + value: 42, + writable: false + }).prototype != 42; +}); /***/ }), -/***/ 5376: -/***/ ((module) => { +/***/ 1346: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var id = 0; -var postfix = Math.random(); +var global = __nccwpck_require__(5014); +var isCallable = __nccwpck_require__(7763); -module.exports = function (key) { - return 'Symbol(' + String(key === undefined ? '' : key) + ')_' + (++id + postfix).toString(36); -}; +var WeakMap = global.WeakMap; + +module.exports = isCallable(WeakMap) && /native code/.test(String(WeakMap)); /***/ }), -/***/ 9110: +/***/ 7655: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var NATIVE_SYMBOL = __nccwpck_require__(7162); +var path = __nccwpck_require__(9268); +var hasOwn = __nccwpck_require__(568); +var wrappedWellKnownSymbolModule = __nccwpck_require__(4228); +var defineProperty = (__nccwpck_require__(6247).f); -module.exports = NATIVE_SYMBOL - // eslint-disable-next-line no-undef - && !Symbol.sham - // eslint-disable-next-line no-undef - && typeof Symbol.iterator == 'symbol'; +module.exports = function (NAME) { + var Symbol = path.Symbol || (path.Symbol = {}); + if (!hasOwn(Symbol, NAME)) defineProperty(Symbol, NAME, { + value: wrappedWellKnownSymbolModule.f(NAME) + }); +}; /***/ }), -/***/ 5260: +/***/ 4228: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var wellKnownSymbol = __nccwpck_require__(4814); +var wellKnownSymbol = __nccwpck_require__(3423); exports.f = wellKnownSymbol; /***/ }), -/***/ 4814: +/***/ 3423: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var global = __nccwpck_require__(7095); -var shared = __nccwpck_require__(2152); -var has = __nccwpck_require__(3929); -var uid = __nccwpck_require__(5376); -var NATIVE_SYMBOL = __nccwpck_require__(7162); -var USE_SYMBOL_AS_UID = __nccwpck_require__(9110); +var global = __nccwpck_require__(5014); +var shared = __nccwpck_require__(8674); +var hasOwn = __nccwpck_require__(568); +var uid = __nccwpck_require__(7463); +var NATIVE_SYMBOL = __nccwpck_require__(2788); +var USE_SYMBOL_AS_UID = __nccwpck_require__(3336); var WellKnownSymbolsStore = shared('wks'); var Symbol = global.Symbol; +var symbolFor = Symbol && Symbol['for']; var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol : Symbol && Symbol.withoutSetter || uid; module.exports = function (name) { - if (!has(WellKnownSymbolsStore, name)) { - if (NATIVE_SYMBOL && has(Symbol, name)) WellKnownSymbolsStore[name] = Symbol[name]; - else WellKnownSymbolsStore[name] = createWellKnownSymbol('Symbol.' + name); + if (!hasOwn(WellKnownSymbolsStore, name) || !(NATIVE_SYMBOL || typeof WellKnownSymbolsStore[name] == 'string')) { + var description = 'Symbol.' + name; + if (NATIVE_SYMBOL && hasOwn(Symbol, name)) { + WellKnownSymbolsStore[name] = Symbol[name]; + } else if (USE_SYMBOL_AS_UID && symbolFor) { + WellKnownSymbolsStore[name] = symbolFor(description); + } else { + WellKnownSymbolsStore[name] = createWellKnownSymbol(description); + } } return WellKnownSymbolsStore[name]; }; /***/ }), -/***/ 850: +/***/ 5522: /***/ ((module) => { // a string of all valid unicode whitespaces -// eslint-disable-next-line max-len -module.exports = '\u0009\u000A\u000B\u000C\u000D\u0020\u00A0\u1680\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF'; +module.exports = '\u0009\u000A\u000B\u000C\u000D\u0020\u00A0\u1680\u2000\u2001\u2002' + + '\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF'; /***/ }), -/***/ 724: +/***/ 7063: /***/ ((__unused_webpack_module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; -var $ = __nccwpck_require__(8931); -var fails = __nccwpck_require__(317); -var isArray = __nccwpck_require__(9155); -var isObject = __nccwpck_require__(3596); -var toObject = __nccwpck_require__(7510); -var toLength = __nccwpck_require__(4048); -var createProperty = __nccwpck_require__(815); -var arraySpeciesCreate = __nccwpck_require__(659); -var arrayMethodHasSpeciesSupport = __nccwpck_require__(9662); -var wellKnownSymbol = __nccwpck_require__(4814); -var V8_VERSION = __nccwpck_require__(7631); +var $ = __nccwpck_require__(6937); +var fails = __nccwpck_require__(8507); +var isArray = __nccwpck_require__(2771); +var isObject = __nccwpck_require__(4870); +var toObject = __nccwpck_require__(2365); +var lengthOfArrayLike = __nccwpck_require__(8141); +var doesNotExceedSafeInteger = __nccwpck_require__(7296); +var createProperty = __nccwpck_require__(6489); +var arraySpeciesCreate = __nccwpck_require__(3039); +var arrayMethodHasSpeciesSupport = __nccwpck_require__(4243); +var wellKnownSymbol = __nccwpck_require__(3423); +var V8_VERSION = __nccwpck_require__(8594); var IS_CONCAT_SPREADABLE = wellKnownSymbol('isConcatSpreadable'); -var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF; -var MAXIMUM_ALLOWED_INDEX_EXCEEDED = 'Maximum allowed index exceeded'; // We can't use this feature detection in V8 since it causes // deoptimization and serious performance degradation @@ -8175,10 +8110,11 @@ var isConcatSpreadable = function (O) { var FORCED = !IS_CONCAT_SPREADABLE_SUPPORT || !SPECIES_SUPPORT; // `Array.prototype.concat` method -// https://tc39.github.io/ecma262/#sec-array.prototype.concat +// https://tc39.es/ecma262/#sec-array.prototype.concat // with adding support of @@isConcatSpreadable and @@species -$({ target: 'Array', proto: true, forced: FORCED }, { - concat: function concat(arg) { // eslint-disable-line no-unused-vars +$({ target: 'Array', proto: true, arity: 1, forced: FORCED }, { + // eslint-disable-next-line no-unused-vars -- required for `.length` + concat: function concat(arg) { var O = toObject(this); var A = arraySpeciesCreate(O, 0); var n = 0; @@ -8186,11 +8122,11 @@ $({ target: 'Array', proto: true, forced: FORCED }, { for (i = -1, length = arguments.length; i < length; i++) { E = i === -1 ? O : arguments[i]; if (isConcatSpreadable(E)) { - len = toLength(E.length); - if (n + len > MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED); + len = lengthOfArrayLike(E); + doesNotExceedSafeInteger(n + len); for (k = 0; k < len; k++, n++) if (k in E) createProperty(A, n, E[k]); } else { - if (n >= MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED); + doesNotExceedSafeInteger(n + 1); createProperty(A, n++, E); } } @@ -8202,16 +8138,17 @@ $({ target: 'Array', proto: true, forced: FORCED }, { /***/ }), -/***/ 6968: +/***/ 7586: /***/ ((__unused_webpack_module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; -var $ = __nccwpck_require__(8931); -var forEach = __nccwpck_require__(9935); +var $ = __nccwpck_require__(6937); +var forEach = __nccwpck_require__(3649); // `Array.prototype.forEach` method -// https://tc39.github.io/ecma262/#sec-array.prototype.foreach +// https://tc39.es/ecma262/#sec-array.prototype.foreach +// eslint-disable-next-line es/no-array-prototype-foreach -- safe $({ target: 'Array', proto: true, forced: [].forEach != forEach }, { forEach: forEach }); @@ -8219,19 +8156,20 @@ $({ target: 'Array', proto: true, forced: [].forEach != forEach }, { /***/ }), -/***/ 2843: +/***/ 6129: /***/ ((__unused_webpack_module, __unused_webpack_exports, __nccwpck_require__) => { -var $ = __nccwpck_require__(8931); -var from = __nccwpck_require__(8207); -var checkCorrectnessOfIteration = __nccwpck_require__(12); +var $ = __nccwpck_require__(6937); +var from = __nccwpck_require__(2591); +var checkCorrectnessOfIteration = __nccwpck_require__(7437); var INCORRECT_ITERATION = !checkCorrectnessOfIteration(function (iterable) { + // eslint-disable-next-line es/no-array-from -- required for testing Array.from(iterable); }); // `Array.from` method -// https://tc39.github.io/ecma262/#sec-array.from +// https://tc39.es/ecma262/#sec-array.from $({ target: 'Array', stat: true, forced: INCORRECT_ITERATION }, { from: from }); @@ -8239,70 +8177,74 @@ $({ target: 'Array', stat: true, forced: INCORRECT_ITERATION }, { /***/ }), -/***/ 8224: +/***/ 4249: /***/ ((__unused_webpack_module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; -var $ = __nccwpck_require__(8931); -var $includes = (__nccwpck_require__(4963).includes); -var addToUnscopables = __nccwpck_require__(7035); -var arrayMethodUsesToLength = __nccwpck_require__(3591); +var $ = __nccwpck_require__(6937); +var $includes = (__nccwpck_require__(5320).includes); +var fails = __nccwpck_require__(8507); +var addToUnscopables = __nccwpck_require__(5959); -var USES_TO_LENGTH = arrayMethodUsesToLength('indexOf', { ACCESSORS: true, 1: 0 }); +// FF99+ bug +var BROKEN_ON_SPARSE = fails(function () { + return !Array(1).includes(); +}); // `Array.prototype.includes` method -// https://tc39.github.io/ecma262/#sec-array.prototype.includes -$({ target: 'Array', proto: true, forced: !USES_TO_LENGTH }, { +// https://tc39.es/ecma262/#sec-array.prototype.includes +$({ target: 'Array', proto: true, forced: BROKEN_ON_SPARSE }, { includes: function includes(el /* , fromIndex = 0 */) { return $includes(this, el, arguments.length > 1 ? arguments[1] : undefined); } }); -// https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables +// https://tc39.es/ecma262/#sec-array.prototype-@@unscopables addToUnscopables('includes'); /***/ }), -/***/ 9226: +/***/ 8318: /***/ ((__unused_webpack_module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; -var $ = __nccwpck_require__(8931); -var $indexOf = (__nccwpck_require__(4963).indexOf); -var arrayMethodIsStrict = __nccwpck_require__(4667); -var arrayMethodUsesToLength = __nccwpck_require__(3591); +/* eslint-disable es/no-array-prototype-indexof -- required for testing */ +var $ = __nccwpck_require__(6937); +var uncurryThis = __nccwpck_require__(1054); +var $indexOf = (__nccwpck_require__(5320).indexOf); +var arrayMethodIsStrict = __nccwpck_require__(8459); -var nativeIndexOf = [].indexOf; +var nativeIndexOf = uncurryThis([].indexOf); -var NEGATIVE_ZERO = !!nativeIndexOf && 1 / [1].indexOf(1, -0) < 0; +var NEGATIVE_ZERO = !!nativeIndexOf && 1 / nativeIndexOf([1], 1, -0) < 0; var STRICT_METHOD = arrayMethodIsStrict('indexOf'); -var USES_TO_LENGTH = arrayMethodUsesToLength('indexOf', { ACCESSORS: true, 1: 0 }); // `Array.prototype.indexOf` method -// https://tc39.github.io/ecma262/#sec-array.prototype.indexof -$({ target: 'Array', proto: true, forced: NEGATIVE_ZERO || !STRICT_METHOD || !USES_TO_LENGTH }, { +// https://tc39.es/ecma262/#sec-array.prototype.indexof +$({ target: 'Array', proto: true, forced: NEGATIVE_ZERO || !STRICT_METHOD }, { indexOf: function indexOf(searchElement /* , fromIndex = 0 */) { + var fromIndex = arguments.length > 1 ? arguments[1] : undefined; return NEGATIVE_ZERO // convert -0 to +0 - ? nativeIndexOf.apply(this, arguments) || 0 - : $indexOf(this, searchElement, arguments.length > 1 ? arguments[1] : undefined); + ? nativeIndexOf(this, searchElement, fromIndex) || 0 + : $indexOf(this, searchElement, fromIndex); } }); /***/ }), -/***/ 5613: +/***/ 6403: /***/ ((__unused_webpack_module, __unused_webpack_exports, __nccwpck_require__) => { -var $ = __nccwpck_require__(8931); -var isArray = __nccwpck_require__(9155); +var $ = __nccwpck_require__(6937); +var isArray = __nccwpck_require__(2771); // `Array.isArray` method -// https://tc39.github.io/ecma262/#sec-array.isarray +// https://tc39.es/ecma262/#sec-array.isarray $({ target: 'Array', stat: true }, { isArray: isArray }); @@ -8310,31 +8252,35 @@ $({ target: 'Array', stat: true }, { /***/ }), -/***/ 8458: +/***/ 6236: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; -var toIndexedObject = __nccwpck_require__(6895); -var addToUnscopables = __nccwpck_require__(7035); -var Iterators = __nccwpck_require__(6657); -var InternalStateModule = __nccwpck_require__(6600); -var defineIterator = __nccwpck_require__(9235); +var toIndexedObject = __nccwpck_require__(5354); +var addToUnscopables = __nccwpck_require__(5959); +var Iterators = __nccwpck_require__(279); +var InternalStateModule = __nccwpck_require__(9147); +var defineProperty = (__nccwpck_require__(6247).f); +var defineIterator = __nccwpck_require__(7787); +var createIterResultObject = __nccwpck_require__(6557); +var IS_PURE = __nccwpck_require__(9785); +var DESCRIPTORS = __nccwpck_require__(8109); var ARRAY_ITERATOR = 'Array Iterator'; var setInternalState = InternalStateModule.set; var getInternalState = InternalStateModule.getterFor(ARRAY_ITERATOR); // `Array.prototype.entries` method -// https://tc39.github.io/ecma262/#sec-array.prototype.entries +// https://tc39.es/ecma262/#sec-array.prototype.entries // `Array.prototype.keys` method -// https://tc39.github.io/ecma262/#sec-array.prototype.keys +// https://tc39.es/ecma262/#sec-array.prototype.keys // `Array.prototype.values` method -// https://tc39.github.io/ecma262/#sec-array.prototype.values +// https://tc39.es/ecma262/#sec-array.prototype.values // `Array.prototype[@@iterator]` method -// https://tc39.github.io/ecma262/#sec-array.prototype-@@iterator +// https://tc39.es/ecma262/#sec-array.prototype-@@iterator // `CreateArrayIterator` internal method -// https://tc39.github.io/ecma262/#sec-createarrayiterator +// https://tc39.es/ecma262/#sec-createarrayiterator module.exports = defineIterator(Array, 'Array', function (iterated, kind) { setInternalState(this, { type: ARRAY_ITERATOR, @@ -8343,7 +8289,7 @@ module.exports = defineIterator(Array, 'Array', function (iterated, kind) { kind: kind // kind }); // `%ArrayIteratorPrototype%.next` method -// https://tc39.github.io/ecma262/#sec-%arrayiteratorprototype%.next +// https://tc39.es/ecma262/#sec-%arrayiteratorprototype%.next }, function () { var state = getInternalState(this); var target = state.target; @@ -8351,44 +8297,46 @@ module.exports = defineIterator(Array, 'Array', function (iterated, kind) { var index = state.index++; if (!target || index >= target.length) { state.target = undefined; - return { value: undefined, done: true }; + return createIterResultObject(undefined, true); } - if (kind == 'keys') return { value: index, done: false }; - if (kind == 'values') return { value: target[index], done: false }; - return { value: [index, target[index]], done: false }; + if (kind == 'keys') return createIterResultObject(index, false); + if (kind == 'values') return createIterResultObject(target[index], false); + return createIterResultObject([index, target[index]], false); }, 'values'); // argumentsList[@@iterator] is %ArrayProto_values% -// https://tc39.github.io/ecma262/#sec-createunmappedargumentsobject -// https://tc39.github.io/ecma262/#sec-createmappedargumentsobject -Iterators.Arguments = Iterators.Array; +// https://tc39.es/ecma262/#sec-createunmappedargumentsobject +// https://tc39.es/ecma262/#sec-createmappedargumentsobject +var values = Iterators.Arguments = Iterators.Array; -// https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables +// https://tc39.es/ecma262/#sec-array.prototype-@@unscopables addToUnscopables('keys'); addToUnscopables('values'); addToUnscopables('entries'); +// V8 ~ Chrome 45- bug +if (!IS_PURE && DESCRIPTORS && values.name !== 'values') try { + defineProperty(values, 'name', { value: 'values' }); +} catch (error) { /* empty */ } + /***/ }), -/***/ 977: +/***/ 2740: /***/ ((__unused_webpack_module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; -var $ = __nccwpck_require__(8931); -var $map = (__nccwpck_require__(7484).map); -var arrayMethodHasSpeciesSupport = __nccwpck_require__(9662); -var arrayMethodUsesToLength = __nccwpck_require__(3591); +var $ = __nccwpck_require__(6937); +var $map = (__nccwpck_require__(8123).map); +var arrayMethodHasSpeciesSupport = __nccwpck_require__(4243); var HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('map'); -// FF49- issue -var USES_TO_LENGTH = arrayMethodUsesToLength('map'); // `Array.prototype.map` method -// https://tc39.github.io/ecma262/#sec-array.prototype.map +// https://tc39.es/ecma262/#sec-array.prototype.map // with adding support of @@species -$({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT || !USES_TO_LENGTH }, { +$({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT }, { map: function map(callbackfn /* , thisArg */) { return $map(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined); } @@ -8397,65 +8345,64 @@ $({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT || !USES_TO_LENGT /***/ }), -/***/ 7829: +/***/ 2463: /***/ ((__unused_webpack_module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; -var $ = __nccwpck_require__(8931); -var $reduce = (__nccwpck_require__(9127).left); -var arrayMethodIsStrict = __nccwpck_require__(4667); -var arrayMethodUsesToLength = __nccwpck_require__(3591); -var CHROME_VERSION = __nccwpck_require__(7631); -var IS_NODE = __nccwpck_require__(7383); +var $ = __nccwpck_require__(6937); +var $reduce = (__nccwpck_require__(3296).left); +var arrayMethodIsStrict = __nccwpck_require__(8459); +var CHROME_VERSION = __nccwpck_require__(8594); +var IS_NODE = __nccwpck_require__(1718); var STRICT_METHOD = arrayMethodIsStrict('reduce'); -var USES_TO_LENGTH = arrayMethodUsesToLength('reduce', { 1: 0 }); // Chrome 80-82 has a critical bug // https://bugs.chromium.org/p/chromium/issues/detail?id=1049982 var CHROME_BUG = !IS_NODE && CHROME_VERSION > 79 && CHROME_VERSION < 83; // `Array.prototype.reduce` method -// https://tc39.github.io/ecma262/#sec-array.prototype.reduce -$({ target: 'Array', proto: true, forced: !STRICT_METHOD || !USES_TO_LENGTH || CHROME_BUG }, { +// https://tc39.es/ecma262/#sec-array.prototype.reduce +$({ target: 'Array', proto: true, forced: !STRICT_METHOD || CHROME_BUG }, { reduce: function reduce(callbackfn /* , initialValue */) { - return $reduce(this, callbackfn, arguments.length, arguments.length > 1 ? arguments[1] : undefined); + var length = arguments.length; + return $reduce(this, callbackfn, length, length > 1 ? arguments[1] : undefined); } }); /***/ }), -/***/ 3009: +/***/ 8951: /***/ ((__unused_webpack_module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; -var $ = __nccwpck_require__(8931); -var isObject = __nccwpck_require__(3596); -var isArray = __nccwpck_require__(9155); -var toAbsoluteIndex = __nccwpck_require__(8320); -var toLength = __nccwpck_require__(4048); -var toIndexedObject = __nccwpck_require__(6895); -var createProperty = __nccwpck_require__(815); -var wellKnownSymbol = __nccwpck_require__(4814); -var arrayMethodHasSpeciesSupport = __nccwpck_require__(9662); -var arrayMethodUsesToLength = __nccwpck_require__(3591); +var $ = __nccwpck_require__(6937); +var isArray = __nccwpck_require__(2771); +var isConstructor = __nccwpck_require__(7984); +var isObject = __nccwpck_require__(4870); +var toAbsoluteIndex = __nccwpck_require__(8293); +var lengthOfArrayLike = __nccwpck_require__(8141); +var toIndexedObject = __nccwpck_require__(5354); +var createProperty = __nccwpck_require__(6489); +var wellKnownSymbol = __nccwpck_require__(3423); +var arrayMethodHasSpeciesSupport = __nccwpck_require__(4243); +var nativeSlice = __nccwpck_require__(374); var HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('slice'); -var USES_TO_LENGTH = arrayMethodUsesToLength('slice', { ACCESSORS: true, 0: 0, 1: 2 }); var SPECIES = wellKnownSymbol('species'); -var nativeSlice = [].slice; +var $Array = Array; var max = Math.max; // `Array.prototype.slice` method -// https://tc39.github.io/ecma262/#sec-array.prototype.slice +// https://tc39.es/ecma262/#sec-array.prototype.slice // fallback for not array-like ES3 strings and DOM objects -$({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT || !USES_TO_LENGTH }, { +$({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT }, { slice: function slice(start, end) { var O = toIndexedObject(this); - var length = toLength(O.length); + var length = lengthOfArrayLike(O); var k = toAbsoluteIndex(start, length); var fin = toAbsoluteIndex(end === undefined ? length : end, length); // inline `ArraySpeciesCreate` for usage native `Array#slice` where it's possible @@ -8463,17 +8410,17 @@ $({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT || !USES_TO_LENGT if (isArray(O)) { Constructor = O.constructor; // cross-realm fallback - if (typeof Constructor == 'function' && (Constructor === Array || isArray(Constructor.prototype))) { + if (isConstructor(Constructor) && (Constructor === $Array || isArray(Constructor.prototype))) { Constructor = undefined; } else if (isObject(Constructor)) { Constructor = Constructor[SPECIES]; if (Constructor === null) Constructor = undefined; } - if (Constructor === Array || Constructor === undefined) { - return nativeSlice.call(O, k, fin); + if (Constructor === $Array || Constructor === undefined) { + return nativeSlice(O, k, fin); } } - result = new (Constructor === undefined ? Array : Constructor)(max(fin - k, 0)); + result = new (Constructor === undefined ? $Array : Constructor)(max(fin - k, 0)); for (n = 0; k < fin; k++, n++) if (k in O) createProperty(result, n, O[k]); result.length = n; return result; @@ -8483,19 +8430,29 @@ $({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT || !USES_TO_LENGT /***/ }), -/***/ 7432: +/***/ 3034: /***/ ((__unused_webpack_module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; -var $ = __nccwpck_require__(8931); -var aFunction = __nccwpck_require__(3687); -var toObject = __nccwpck_require__(7510); -var fails = __nccwpck_require__(317); -var arrayMethodIsStrict = __nccwpck_require__(4667); +var $ = __nccwpck_require__(6937); +var uncurryThis = __nccwpck_require__(1054); +var aCallable = __nccwpck_require__(1696); +var toObject = __nccwpck_require__(2365); +var lengthOfArrayLike = __nccwpck_require__(8141); +var deletePropertyOrThrow = __nccwpck_require__(566); +var toString = __nccwpck_require__(3375); +var fails = __nccwpck_require__(8507); +var internalSort = __nccwpck_require__(4073); +var arrayMethodIsStrict = __nccwpck_require__(8459); +var FF = __nccwpck_require__(7907); +var IE_OR_EDGE = __nccwpck_require__(7240); +var V8 = __nccwpck_require__(8594); +var WEBKIT = __nccwpck_require__(6211); var test = []; -var nativeSort = test.sort; +var nativeSort = uncurryThis(test.sort); +var push = uncurryThis(test.push); // IE8- var FAILS_ON_UNDEFINED = fails(function () { @@ -8508,35 +8465,178 @@ var FAILS_ON_NULL = fails(function () { // Old WebKit var STRICT_METHOD = arrayMethodIsStrict('sort'); -var FORCED = FAILS_ON_UNDEFINED || !FAILS_ON_NULL || !STRICT_METHOD; +var STABLE_SORT = !fails(function () { + // feature detection can be too slow, so check engines versions + if (V8) return V8 < 70; + if (FF && FF > 3) return; + if (IE_OR_EDGE) return true; + if (WEBKIT) return WEBKIT < 603; + + var result = ''; + var code, chr, value, index; + + // generate an array with more 512 elements (Chakra and old V8 fails only in this case) + for (code = 65; code < 76; code++) { + chr = String.fromCharCode(code); + + switch (code) { + case 66: case 69: case 70: case 72: value = 3; break; + case 68: case 71: value = 4; break; + default: value = 2; + } + + for (index = 0; index < 47; index++) { + test.push({ k: chr + index, v: value }); + } + } + + test.sort(function (a, b) { return b.v - a.v; }); + + for (index = 0; index < test.length; index++) { + chr = test[index].k.charAt(0); + if (result.charAt(result.length - 1) !== chr) result += chr; + } + + return result !== 'DGBEFHACIJK'; +}); + +var FORCED = FAILS_ON_UNDEFINED || !FAILS_ON_NULL || !STRICT_METHOD || !STABLE_SORT; + +var getSortCompare = function (comparefn) { + return function (x, y) { + if (y === undefined) return -1; + if (x === undefined) return 1; + if (comparefn !== undefined) return +comparefn(x, y) || 0; + return toString(x) > toString(y) ? 1 : -1; + }; +}; // `Array.prototype.sort` method -// https://tc39.github.io/ecma262/#sec-array.prototype.sort +// https://tc39.es/ecma262/#sec-array.prototype.sort $({ target: 'Array', proto: true, forced: FORCED }, { sort: function sort(comparefn) { - return comparefn === undefined - ? nativeSort.call(toObject(this)) - : nativeSort.call(toObject(this), aFunction(comparefn)); + if (comparefn !== undefined) aCallable(comparefn); + + var array = toObject(this); + + if (STABLE_SORT) return comparefn === undefined ? nativeSort(array) : nativeSort(array, comparefn); + + var items = []; + var arrayLength = lengthOfArrayLike(array); + var itemsLength, index; + + for (index = 0; index < arrayLength; index++) { + if (index in array) push(items, array[index]); + } + + internalSort(items, getSortCompare(comparefn)); + + itemsLength = lengthOfArrayLike(items); + index = 0; + + while (index < itemsLength) array[index] = items[index++]; + while (index < arrayLength) deletePropertyOrThrow(array, index++); + + return array; } }); /***/ }), -/***/ 8829: +/***/ 7381: +/***/ ((__unused_webpack_module, __unused_webpack_exports, __nccwpck_require__) => { + +var $ = __nccwpck_require__(6937); +var getBuiltIn = __nccwpck_require__(4685); +var apply = __nccwpck_require__(5555); +var call = __nccwpck_require__(2956); +var uncurryThis = __nccwpck_require__(1054); +var fails = __nccwpck_require__(8507); +var isArray = __nccwpck_require__(2771); +var isCallable = __nccwpck_require__(7763); +var isObject = __nccwpck_require__(4870); +var isSymbol = __nccwpck_require__(5103); +var arraySlice = __nccwpck_require__(374); +var NATIVE_SYMBOL = __nccwpck_require__(2788); + +var $stringify = getBuiltIn('JSON', 'stringify'); +var exec = uncurryThis(/./.exec); +var charAt = uncurryThis(''.charAt); +var charCodeAt = uncurryThis(''.charCodeAt); +var replace = uncurryThis(''.replace); +var numberToString = uncurryThis(1.0.toString); + +var tester = /[\uD800-\uDFFF]/g; +var low = /^[\uD800-\uDBFF]$/; +var hi = /^[\uDC00-\uDFFF]$/; + +var WRONG_SYMBOLS_CONVERSION = !NATIVE_SYMBOL || fails(function () { + var symbol = getBuiltIn('Symbol')(); + // MS Edge converts symbol values to JSON as {} + return $stringify([symbol]) != '[null]' + // WebKit converts symbol values to JSON as null + || $stringify({ a: symbol }) != '{}' + // V8 throws on boxed symbols + || $stringify(Object(symbol)) != '{}'; +}); + +// https://github.com/tc39/proposal-well-formed-stringify +var ILL_FORMED_UNICODE = fails(function () { + return $stringify('\uDF06\uD834') !== '"\\udf06\\ud834"' + || $stringify('\uDEAD') !== '"\\udead"'; +}); + +var stringifyWithSymbolsFix = function (it, replacer) { + var args = arraySlice(arguments); + var $replacer = replacer; + if (!isObject(replacer) && it === undefined || isSymbol(it)) return; // IE8 returns string on undefined + if (!isArray(replacer)) replacer = function (key, value) { + if (isCallable($replacer)) value = call($replacer, this, key, value); + if (!isSymbol(value)) return value; + }; + args[1] = replacer; + return apply($stringify, null, args); +}; + +var fixIllFormed = function (match, offset, string) { + var prev = charAt(string, offset - 1); + var next = charAt(string, offset + 1); + if ((exec(low, match) && !exec(hi, next)) || (exec(hi, match) && !exec(low, prev))) { + return '\\u' + numberToString(charCodeAt(match, 0), 16); + } return match; +}; + +if ($stringify) { + // `JSON.stringify` method + // https://tc39.es/ecma262/#sec-json.stringify + $({ target: 'JSON', stat: true, arity: 3, forced: WRONG_SYMBOLS_CONVERSION || ILL_FORMED_UNICODE }, { + // eslint-disable-next-line no-unused-vars -- required for `.length` + stringify: function stringify(it, replacer, space) { + var args = arraySlice(arguments); + var result = apply(WRONG_SYMBOLS_CONVERSION ? stringifyWithSymbolsFix : $stringify, null, args); + return ILL_FORMED_UNICODE && typeof result == 'string' ? replace(result, tester, fixIllFormed) : result; + } + }); +} + + +/***/ }), + +/***/ 2437: /***/ ((__unused_webpack_module, __unused_webpack_exports, __nccwpck_require__) => { -var global = __nccwpck_require__(7095); -var setToStringTag = __nccwpck_require__(7596); +var global = __nccwpck_require__(5014); +var setToStringTag = __nccwpck_require__(2416); // JSON[@@toStringTag] property -// https://tc39.github.io/ecma262/#sec-json-@@tostringtag +// https://tc39.es/ecma262/#sec-json-@@tostringtag setToStringTag(global.JSON, 'JSON', true); /***/ }), -/***/ 7156: +/***/ 6667: /***/ (() => { // empty @@ -8544,15 +8644,16 @@ setToStringTag(global.JSON, 'JSON', true); /***/ }), -/***/ 5532: +/***/ 8007: /***/ ((__unused_webpack_module, __unused_webpack_exports, __nccwpck_require__) => { -var $ = __nccwpck_require__(8931); -var DESCRIPTORS = __nccwpck_require__(8399); -var create = __nccwpck_require__(4357); +// TODO: Remove from `core-js@4` +var $ = __nccwpck_require__(6937); +var DESCRIPTORS = __nccwpck_require__(8109); +var create = __nccwpck_require__(8870); // `Object.create` method -// https://tc39.github.io/ecma262/#sec-object.create +// https://tc39.es/ecma262/#sec-object.create $({ target: 'Object', stat: true, sham: !DESCRIPTORS }, { create: create }); @@ -8560,23 +8661,49 @@ $({ target: 'Object', stat: true, sham: !DESCRIPTORS }, { /***/ }), -/***/ 5215: +/***/ 8194: /***/ ((__unused_webpack_module, __unused_webpack_exports, __nccwpck_require__) => { -var $ = __nccwpck_require__(8931); -var DESCRIPTORS = __nccwpck_require__(8399); -var objectDefinePropertyModile = __nccwpck_require__(5204); +var $ = __nccwpck_require__(6937); +var DESCRIPTORS = __nccwpck_require__(8109); +var defineProperty = (__nccwpck_require__(6247).f); // `Object.defineProperty` method -// https://tc39.github.io/ecma262/#sec-object.defineproperty -$({ target: 'Object', stat: true, forced: !DESCRIPTORS, sham: !DESCRIPTORS }, { - defineProperty: objectDefinePropertyModile.f +// https://tc39.es/ecma262/#sec-object.defineproperty +// eslint-disable-next-line es/no-object-defineproperty -- safe +$({ target: 'Object', stat: true, forced: Object.defineProperty !== defineProperty, sham: !DESCRIPTORS }, { + defineProperty: defineProperty +}); + + +/***/ }), + +/***/ 1380: +/***/ ((__unused_webpack_module, __unused_webpack_exports, __nccwpck_require__) => { + +var $ = __nccwpck_require__(6937); +var NATIVE_SYMBOL = __nccwpck_require__(2788); +var fails = __nccwpck_require__(8507); +var getOwnPropertySymbolsModule = __nccwpck_require__(5664); +var toObject = __nccwpck_require__(2365); + +// V8 ~ Chrome 38 and 39 `Object.getOwnPropertySymbols` fails on primitives +// https://bugs.chromium.org/p/v8/issues/detail?id=3443 +var FORCED = !NATIVE_SYMBOL || fails(function () { getOwnPropertySymbolsModule.f(1); }); + +// `Object.getOwnPropertySymbols` method +// https://tc39.es/ecma262/#sec-object.getownpropertysymbols +$({ target: 'Object', stat: true, forced: FORCED }, { + getOwnPropertySymbols: function getOwnPropertySymbols(it) { + var $getOwnPropertySymbols = getOwnPropertySymbolsModule.f; + return $getOwnPropertySymbols ? $getOwnPropertySymbols(toObject(it)) : []; + } }); /***/ }), -/***/ 6338: +/***/ 9932: /***/ (() => { // empty @@ -8584,22 +8711,22 @@ $({ target: 'Object', stat: true, forced: !DESCRIPTORS, sham: !DESCRIPTORS }, { /***/ }), -/***/ 7137: +/***/ 9332: /***/ ((__unused_webpack_module, __unused_webpack_exports, __nccwpck_require__) => { -var $ = __nccwpck_require__(8931); -var parseIntImplementation = __nccwpck_require__(6667); +var $ = __nccwpck_require__(6937); +var $parseInt = __nccwpck_require__(7325); // `parseInt` method -// https://tc39.github.io/ecma262/#sec-parseint-string-radix -$({ global: true, forced: parseInt != parseIntImplementation }, { - parseInt: parseIntImplementation +// https://tc39.es/ecma262/#sec-parseint-string-radix +$({ global: true, forced: parseInt != $parseInt }, { + parseInt: $parseInt }); /***/ }), -/***/ 1916: +/***/ 6153: /***/ (() => { // empty @@ -8607,7 +8734,7 @@ $({ global: true, forced: parseInt != parseIntImplementation }, { /***/ }), -/***/ 4958: +/***/ 2400: /***/ (() => { // empty @@ -8615,182 +8742,150 @@ $({ global: true, forced: parseInt != parseIntImplementation }, { /***/ }), -/***/ 906: +/***/ 9226: /***/ ((__unused_webpack_module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; -var $ = __nccwpck_require__(8931); -var notARegExp = __nccwpck_require__(3914); -var requireObjectCoercible = __nccwpck_require__(9688); -var correctIsRegExpLogic = __nccwpck_require__(9804); +var $ = __nccwpck_require__(6937); +var uncurryThis = __nccwpck_require__(1054); +var notARegExp = __nccwpck_require__(8130); +var requireObjectCoercible = __nccwpck_require__(4235); +var toString = __nccwpck_require__(3375); +var correctIsRegExpLogic = __nccwpck_require__(2364); + +var stringIndexOf = uncurryThis(''.indexOf); // `String.prototype.includes` method -// https://tc39.github.io/ecma262/#sec-string.prototype.includes +// https://tc39.es/ecma262/#sec-string.prototype.includes $({ target: 'String', proto: true, forced: !correctIsRegExpLogic('includes') }, { includes: function includes(searchString /* , position = 0 */) { - return !!~String(requireObjectCoercible(this)) - .indexOf(notARegExp(searchString), arguments.length > 1 ? arguments[1] : undefined); + return !!~stringIndexOf( + toString(requireObjectCoercible(this)), + toString(notARegExp(searchString)), + arguments.length > 1 ? arguments[1] : undefined + ); } }); /***/ }), -/***/ 7082: +/***/ 7826: /***/ ((__unused_webpack_module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; -var charAt = (__nccwpck_require__(7977).charAt); -var InternalStateModule = __nccwpck_require__(6600); -var defineIterator = __nccwpck_require__(9235); +var charAt = (__nccwpck_require__(6376).charAt); +var toString = __nccwpck_require__(3375); +var InternalStateModule = __nccwpck_require__(9147); +var defineIterator = __nccwpck_require__(7787); +var createIterResultObject = __nccwpck_require__(6557); var STRING_ITERATOR = 'String Iterator'; var setInternalState = InternalStateModule.set; var getInternalState = InternalStateModule.getterFor(STRING_ITERATOR); // `String.prototype[@@iterator]` method -// https://tc39.github.io/ecma262/#sec-string.prototype-@@iterator +// https://tc39.es/ecma262/#sec-string.prototype-@@iterator defineIterator(String, 'String', function (iterated) { setInternalState(this, { type: STRING_ITERATOR, - string: String(iterated), + string: toString(iterated), index: 0 }); // `%StringIteratorPrototype%.next` method -// https://tc39.github.io/ecma262/#sec-%stringiteratorprototype%.next +// https://tc39.es/ecma262/#sec-%stringiteratorprototype%.next }, function next() { var state = getInternalState(this); var string = state.string; var index = state.index; var point; - if (index >= string.length) return { value: undefined, done: true }; + if (index >= string.length) return createIterResultObject(undefined, true); point = charAt(string, index); state.index += point.length; - return { value: point, done: false }; + return createIterResultObject(point, false); }); /***/ }), -/***/ 8801: +/***/ 8659: /***/ ((__unused_webpack_module, __unused_webpack_exports, __nccwpck_require__) => { -var defineWellKnownSymbol = __nccwpck_require__(7597); +var defineWellKnownSymbol = __nccwpck_require__(7655); // `Symbol.asyncIterator` well-known symbol -// https://tc39.github.io/ecma262/#sec-symbol.asynciterator +// https://tc39.es/ecma262/#sec-symbol.asynciterator defineWellKnownSymbol('asyncIterator'); /***/ }), -/***/ 5736: -/***/ (() => { - -// empty - - -/***/ }), - -/***/ 9627: -/***/ ((__unused_webpack_module, __unused_webpack_exports, __nccwpck_require__) => { - -var defineWellKnownSymbol = __nccwpck_require__(7597); - -// `Symbol.hasInstance` well-known symbol -// https://tc39.github.io/ecma262/#sec-symbol.hasinstance -defineWellKnownSymbol('hasInstance'); - - -/***/ }), - -/***/ 401: -/***/ ((__unused_webpack_module, __unused_webpack_exports, __nccwpck_require__) => { - -var defineWellKnownSymbol = __nccwpck_require__(7597); - -// `Symbol.isConcatSpreadable` well-known symbol -// https://tc39.github.io/ecma262/#sec-symbol.isconcatspreadable -defineWellKnownSymbol('isConcatSpreadable'); - - -/***/ }), - -/***/ 3732: -/***/ ((__unused_webpack_module, __unused_webpack_exports, __nccwpck_require__) => { - -var defineWellKnownSymbol = __nccwpck_require__(7597); - -// `Symbol.iterator` well-known symbol -// https://tc39.github.io/ecma262/#sec-symbol.iterator -defineWellKnownSymbol('iterator'); - - -/***/ }), - -/***/ 8619: +/***/ 6068: /***/ ((__unused_webpack_module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; -var $ = __nccwpck_require__(8931); -var global = __nccwpck_require__(7095); -var getBuiltIn = __nccwpck_require__(6229); -var IS_PURE = __nccwpck_require__(4277); -var DESCRIPTORS = __nccwpck_require__(8399); -var NATIVE_SYMBOL = __nccwpck_require__(7162); -var USE_SYMBOL_AS_UID = __nccwpck_require__(9110); -var fails = __nccwpck_require__(317); -var has = __nccwpck_require__(3929); -var isArray = __nccwpck_require__(9155); -var isObject = __nccwpck_require__(3596); -var anObject = __nccwpck_require__(218); -var toObject = __nccwpck_require__(7510); -var toIndexedObject = __nccwpck_require__(6895); -var toPrimitive = __nccwpck_require__(7703); -var createPropertyDescriptor = __nccwpck_require__(9063); -var nativeObjectCreate = __nccwpck_require__(4357); -var objectKeys = __nccwpck_require__(3366); -var getOwnPropertyNamesModule = __nccwpck_require__(6986); -var getOwnPropertyNamesExternal = __nccwpck_require__(151); -var getOwnPropertySymbolsModule = __nccwpck_require__(2551); -var getOwnPropertyDescriptorModule = __nccwpck_require__(8184); -var definePropertyModule = __nccwpck_require__(5204); -var propertyIsEnumerableModule = __nccwpck_require__(8614); -var createNonEnumerableProperty = __nccwpck_require__(5497); -var redefine = __nccwpck_require__(8463); -var shared = __nccwpck_require__(2152); -var sharedKey = __nccwpck_require__(7972); -var hiddenKeys = __nccwpck_require__(8087); -var uid = __nccwpck_require__(5376); -var wellKnownSymbol = __nccwpck_require__(4814); -var wrappedWellKnownSymbolModule = __nccwpck_require__(5260); -var defineWellKnownSymbol = __nccwpck_require__(7597); -var setToStringTag = __nccwpck_require__(7596); -var InternalStateModule = __nccwpck_require__(6600); -var $forEach = (__nccwpck_require__(7484).forEach); +var $ = __nccwpck_require__(6937); +var global = __nccwpck_require__(5014); +var call = __nccwpck_require__(2956); +var uncurryThis = __nccwpck_require__(1054); +var IS_PURE = __nccwpck_require__(9785); +var DESCRIPTORS = __nccwpck_require__(8109); +var NATIVE_SYMBOL = __nccwpck_require__(2788); +var fails = __nccwpck_require__(8507); +var hasOwn = __nccwpck_require__(568); +var isPrototypeOf = __nccwpck_require__(915); +var anObject = __nccwpck_require__(536); +var toIndexedObject = __nccwpck_require__(5354); +var toPropertyKey = __nccwpck_require__(6121); +var $toString = __nccwpck_require__(3375); +var createPropertyDescriptor = __nccwpck_require__(2921); +var nativeObjectCreate = __nccwpck_require__(8870); +var objectKeys = __nccwpck_require__(130); +var getOwnPropertyNamesModule = __nccwpck_require__(4895); +var getOwnPropertyNamesExternal = __nccwpck_require__(5659); +var getOwnPropertySymbolsModule = __nccwpck_require__(5664); +var getOwnPropertyDescriptorModule = __nccwpck_require__(8044); +var definePropertyModule = __nccwpck_require__(6247); +var definePropertiesModule = __nccwpck_require__(7559); +var propertyIsEnumerableModule = __nccwpck_require__(50); +var defineBuiltIn = __nccwpck_require__(502); +var shared = __nccwpck_require__(8674); +var sharedKey = __nccwpck_require__(302); +var hiddenKeys = __nccwpck_require__(2185); +var uid = __nccwpck_require__(7463); +var wellKnownSymbol = __nccwpck_require__(3423); +var wrappedWellKnownSymbolModule = __nccwpck_require__(4228); +var defineWellKnownSymbol = __nccwpck_require__(7655); +var defineSymbolToPrimitive = __nccwpck_require__(1634); +var setToStringTag = __nccwpck_require__(2416); +var InternalStateModule = __nccwpck_require__(9147); +var $forEach = (__nccwpck_require__(8123).forEach); var HIDDEN = sharedKey('hidden'); var SYMBOL = 'Symbol'; var PROTOTYPE = 'prototype'; -var TO_PRIMITIVE = wellKnownSymbol('toPrimitive'); + var setInternalState = InternalStateModule.set; var getInternalState = InternalStateModule.getterFor(SYMBOL); + var ObjectPrototype = Object[PROTOTYPE]; var $Symbol = global.Symbol; -var $stringify = getBuiltIn('JSON', 'stringify'); +var SymbolPrototype = $Symbol && $Symbol[PROTOTYPE]; +var TypeError = global.TypeError; +var QObject = global.QObject; var nativeGetOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f; var nativeDefineProperty = definePropertyModule.f; var nativeGetOwnPropertyNames = getOwnPropertyNamesExternal.f; var nativePropertyIsEnumerable = propertyIsEnumerableModule.f; +var push = uncurryThis([].push); + var AllSymbols = shared('symbols'); var ObjectPrototypeSymbols = shared('op-symbols'); -var StringToSymbolRegistry = shared('string-to-symbol-registry'); -var SymbolToStringRegistry = shared('symbol-to-string-registry'); var WellKnownSymbolsStore = shared('wks'); -var QObject = global.QObject; + // Don't use setters in Qt Script, https://github.com/zloirock/core-js/issues/173 var USE_SETTER = !QObject || !QObject[PROTOTYPE] || !QObject[PROTOTYPE].findChild; @@ -8809,7 +8904,7 @@ var setSymbolDescriptor = DESCRIPTORS && fails(function () { } : nativeDefineProperty; var wrap = function (tag, description) { - var symbol = AllSymbols[tag] = nativeObjectCreate($Symbol[PROTOTYPE]); + var symbol = AllSymbols[tag] = nativeObjectCreate(SymbolPrototype); setInternalState(symbol, { type: SYMBOL, tag: tag, @@ -8819,23 +8914,17 @@ var wrap = function (tag, description) { return symbol; }; -var isSymbol = USE_SYMBOL_AS_UID ? function (it) { - return typeof it == 'symbol'; -} : function (it) { - return Object(it) instanceof $Symbol; -}; - var $defineProperty = function defineProperty(O, P, Attributes) { if (O === ObjectPrototype) $defineProperty(ObjectPrototypeSymbols, P, Attributes); anObject(O); - var key = toPrimitive(P, true); + var key = toPropertyKey(P); anObject(Attributes); - if (has(AllSymbols, key)) { + if (hasOwn(AllSymbols, key)) { if (!Attributes.enumerable) { - if (!has(O, HIDDEN)) nativeDefineProperty(O, HIDDEN, createPropertyDescriptor(1, {})); + if (!hasOwn(O, HIDDEN)) nativeDefineProperty(O, HIDDEN, createPropertyDescriptor(1, {})); O[HIDDEN][key] = true; } else { - if (has(O, HIDDEN) && O[HIDDEN][key]) O[HIDDEN][key] = false; + if (hasOwn(O, HIDDEN) && O[HIDDEN][key]) O[HIDDEN][key] = false; Attributes = nativeObjectCreate(Attributes, { enumerable: createPropertyDescriptor(0, false) }); } return setSymbolDescriptor(O, key, Attributes); } return nativeDefineProperty(O, key, Attributes); @@ -8846,7 +8935,7 @@ var $defineProperties = function defineProperties(O, Properties) { var properties = toIndexedObject(Properties); var keys = objectKeys(properties).concat($getOwnPropertySymbols(properties)); $forEach(keys, function (key) { - if (!DESCRIPTORS || $propertyIsEnumerable.call(properties, key)) $defineProperty(O, key, properties[key]); + if (!DESCRIPTORS || call($propertyIsEnumerable, properties, key)) $defineProperty(O, key, properties[key]); }); return O; }; @@ -8856,18 +8945,19 @@ var $create = function create(O, Properties) { }; var $propertyIsEnumerable = function propertyIsEnumerable(V) { - var P = toPrimitive(V, true); - var enumerable = nativePropertyIsEnumerable.call(this, P); - if (this === ObjectPrototype && has(AllSymbols, P) && !has(ObjectPrototypeSymbols, P)) return false; - return enumerable || !has(this, P) || !has(AllSymbols, P) || has(this, HIDDEN) && this[HIDDEN][P] ? enumerable : true; + var P = toPropertyKey(V); + var enumerable = call(nativePropertyIsEnumerable, this, P); + if (this === ObjectPrototype && hasOwn(AllSymbols, P) && !hasOwn(ObjectPrototypeSymbols, P)) return false; + return enumerable || !hasOwn(this, P) || !hasOwn(AllSymbols, P) || hasOwn(this, HIDDEN) && this[HIDDEN][P] + ? enumerable : true; }; var $getOwnPropertyDescriptor = function getOwnPropertyDescriptor(O, P) { var it = toIndexedObject(O); - var key = toPrimitive(P, true); - if (it === ObjectPrototype && has(AllSymbols, key) && !has(ObjectPrototypeSymbols, key)) return; + var key = toPropertyKey(P); + if (it === ObjectPrototype && hasOwn(AllSymbols, key) && !hasOwn(ObjectPrototypeSymbols, key)) return; var descriptor = nativeGetOwnPropertyDescriptor(it, key); - if (descriptor && has(AllSymbols, key) && !(has(it, HIDDEN) && it[HIDDEN][key])) { + if (descriptor && hasOwn(AllSymbols, key) && !(hasOwn(it, HIDDEN) && it[HIDDEN][key])) { descriptor.enumerable = true; } return descriptor; @@ -8877,49 +8967,52 @@ var $getOwnPropertyNames = function getOwnPropertyNames(O) { var names = nativeGetOwnPropertyNames(toIndexedObject(O)); var result = []; $forEach(names, function (key) { - if (!has(AllSymbols, key) && !has(hiddenKeys, key)) result.push(key); + if (!hasOwn(AllSymbols, key) && !hasOwn(hiddenKeys, key)) push(result, key); }); return result; }; -var $getOwnPropertySymbols = function getOwnPropertySymbols(O) { +var $getOwnPropertySymbols = function (O) { var IS_OBJECT_PROTOTYPE = O === ObjectPrototype; var names = nativeGetOwnPropertyNames(IS_OBJECT_PROTOTYPE ? ObjectPrototypeSymbols : toIndexedObject(O)); var result = []; $forEach(names, function (key) { - if (has(AllSymbols, key) && (!IS_OBJECT_PROTOTYPE || has(ObjectPrototype, key))) { - result.push(AllSymbols[key]); + if (hasOwn(AllSymbols, key) && (!IS_OBJECT_PROTOTYPE || hasOwn(ObjectPrototype, key))) { + push(result, AllSymbols[key]); } }); return result; }; // `Symbol` constructor -// https://tc39.github.io/ecma262/#sec-symbol-constructor +// https://tc39.es/ecma262/#sec-symbol-constructor if (!NATIVE_SYMBOL) { $Symbol = function Symbol() { - if (this instanceof $Symbol) throw TypeError('Symbol is not a constructor'); - var description = !arguments.length || arguments[0] === undefined ? undefined : String(arguments[0]); + if (isPrototypeOf(SymbolPrototype, this)) throw TypeError('Symbol is not a constructor'); + var description = !arguments.length || arguments[0] === undefined ? undefined : $toString(arguments[0]); var tag = uid(description); var setter = function (value) { - if (this === ObjectPrototype) setter.call(ObjectPrototypeSymbols, value); - if (has(this, HIDDEN) && has(this[HIDDEN], tag)) this[HIDDEN][tag] = false; + if (this === ObjectPrototype) call(setter, ObjectPrototypeSymbols, value); + if (hasOwn(this, HIDDEN) && hasOwn(this[HIDDEN], tag)) this[HIDDEN][tag] = false; setSymbolDescriptor(this, tag, createPropertyDescriptor(1, value)); }; if (DESCRIPTORS && USE_SETTER) setSymbolDescriptor(ObjectPrototype, tag, { configurable: true, set: setter }); return wrap(tag, description); }; - redefine($Symbol[PROTOTYPE], 'toString', function toString() { + SymbolPrototype = $Symbol[PROTOTYPE]; + + defineBuiltIn(SymbolPrototype, 'toString', function toString() { return getInternalState(this).tag; }); - redefine($Symbol, 'withoutSetter', function (description) { + defineBuiltIn($Symbol, 'withoutSetter', function (description) { return wrap(uid(description), description); }); propertyIsEnumerableModule.f = $propertyIsEnumerable; definePropertyModule.f = $defineProperty; + definePropertiesModule.f = $defineProperties; getOwnPropertyDescriptorModule.f = $getOwnPropertyDescriptor; getOwnPropertyNamesModule.f = getOwnPropertyNamesExternal.f = $getOwnPropertyNames; getOwnPropertySymbolsModule.f = $getOwnPropertySymbols; @@ -8930,19 +9023,19 @@ if (!NATIVE_SYMBOL) { if (DESCRIPTORS) { // https://github.com/tc39/proposal-Symbol-description - nativeDefineProperty($Symbol[PROTOTYPE], 'description', { + nativeDefineProperty(SymbolPrototype, 'description', { configurable: true, get: function description() { return getInternalState(this).description; } }); if (!IS_PURE) { - redefine(ObjectPrototype, 'propertyIsEnumerable', $propertyIsEnumerable, { unsafe: true }); + defineBuiltIn(ObjectPrototype, 'propertyIsEnumerable', $propertyIsEnumerable, { unsafe: true }); } } } -$({ global: true, wrap: true, forced: !NATIVE_SYMBOL, sham: !NATIVE_SYMBOL }, { +$({ global: true, constructor: true, wrap: true, forced: !NATIVE_SYMBOL, sham: !NATIVE_SYMBOL }, { Symbol: $Symbol }); @@ -8951,215 +9044,277 @@ $forEach(objectKeys(WellKnownSymbolsStore), function (name) { }); $({ target: SYMBOL, stat: true, forced: !NATIVE_SYMBOL }, { - // `Symbol.for` method - // https://tc39.github.io/ecma262/#sec-symbol.for - 'for': function (key) { - var string = String(key); - if (has(StringToSymbolRegistry, string)) return StringToSymbolRegistry[string]; - var symbol = $Symbol(string); - StringToSymbolRegistry[string] = symbol; - SymbolToStringRegistry[symbol] = string; - return symbol; - }, - // `Symbol.keyFor` method - // https://tc39.github.io/ecma262/#sec-symbol.keyfor - keyFor: function keyFor(sym) { - if (!isSymbol(sym)) throw TypeError(sym + ' is not a symbol'); - if (has(SymbolToStringRegistry, sym)) return SymbolToStringRegistry[sym]; - }, useSetter: function () { USE_SETTER = true; }, useSimple: function () { USE_SETTER = false; } }); $({ target: 'Object', stat: true, forced: !NATIVE_SYMBOL, sham: !DESCRIPTORS }, { // `Object.create` method - // https://tc39.github.io/ecma262/#sec-object.create + // https://tc39.es/ecma262/#sec-object.create create: $create, // `Object.defineProperty` method - // https://tc39.github.io/ecma262/#sec-object.defineproperty + // https://tc39.es/ecma262/#sec-object.defineproperty defineProperty: $defineProperty, // `Object.defineProperties` method - // https://tc39.github.io/ecma262/#sec-object.defineproperties + // https://tc39.es/ecma262/#sec-object.defineproperties defineProperties: $defineProperties, // `Object.getOwnPropertyDescriptor` method - // https://tc39.github.io/ecma262/#sec-object.getownpropertydescriptors + // https://tc39.es/ecma262/#sec-object.getownpropertydescriptors getOwnPropertyDescriptor: $getOwnPropertyDescriptor }); $({ target: 'Object', stat: true, forced: !NATIVE_SYMBOL }, { // `Object.getOwnPropertyNames` method - // https://tc39.github.io/ecma262/#sec-object.getownpropertynames - getOwnPropertyNames: $getOwnPropertyNames, - // `Object.getOwnPropertySymbols` method - // https://tc39.github.io/ecma262/#sec-object.getownpropertysymbols - getOwnPropertySymbols: $getOwnPropertySymbols + // https://tc39.es/ecma262/#sec-object.getownpropertynames + getOwnPropertyNames: $getOwnPropertyNames }); -// Chrome 38 and 39 `Object.getOwnPropertySymbols` fails on primitives -// https://bugs.chromium.org/p/v8/issues/detail?id=3443 -$({ target: 'Object', stat: true, forced: fails(function () { getOwnPropertySymbolsModule.f(1); }) }, { - getOwnPropertySymbols: function getOwnPropertySymbols(it) { - return getOwnPropertySymbolsModule.f(toObject(it)); +// `Symbol.prototype[@@toPrimitive]` method +// https://tc39.es/ecma262/#sec-symbol.prototype-@@toprimitive +defineSymbolToPrimitive(); + +// `Symbol.prototype[@@toStringTag]` property +// https://tc39.es/ecma262/#sec-symbol.prototype-@@tostringtag +setToStringTag($Symbol, SYMBOL); + +hiddenKeys[HIDDEN] = true; + + +/***/ }), + +/***/ 523: +/***/ (() => { + +// empty + + +/***/ }), + +/***/ 1320: +/***/ ((__unused_webpack_module, __unused_webpack_exports, __nccwpck_require__) => { + +var $ = __nccwpck_require__(6937); +var getBuiltIn = __nccwpck_require__(4685); +var hasOwn = __nccwpck_require__(568); +var toString = __nccwpck_require__(3375); +var shared = __nccwpck_require__(8674); +var NATIVE_SYMBOL_REGISTRY = __nccwpck_require__(4893); + +var StringToSymbolRegistry = shared('string-to-symbol-registry'); +var SymbolToStringRegistry = shared('symbol-to-string-registry'); + +// `Symbol.for` method +// https://tc39.es/ecma262/#sec-symbol.for +$({ target: 'Symbol', stat: true, forced: !NATIVE_SYMBOL_REGISTRY }, { + 'for': function (key) { + var string = toString(key); + if (hasOwn(StringToSymbolRegistry, string)) return StringToSymbolRegistry[string]; + var symbol = getBuiltIn('Symbol')(string); + StringToSymbolRegistry[string] = symbol; + SymbolToStringRegistry[symbol] = string; + return symbol; } }); -// `JSON.stringify` method behavior with symbols -// https://tc39.github.io/ecma262/#sec-json.stringify -if ($stringify) { - var FORCED_JSON_STRINGIFY = !NATIVE_SYMBOL || fails(function () { - var symbol = $Symbol(); - // MS Edge converts symbol values to JSON as {} - return $stringify([symbol]) != '[null]' - // WebKit converts symbol values to JSON as null - || $stringify({ a: symbol }) != '{}' - // V8 throws on boxed symbols - || $stringify(Object(symbol)) != '{}'; - }); - $({ target: 'JSON', stat: true, forced: FORCED_JSON_STRINGIFY }, { - // eslint-disable-next-line no-unused-vars - stringify: function stringify(it, replacer, space) { - var args = [it]; - var index = 1; - var $replacer; - while (arguments.length > index) args.push(arguments[index++]); - $replacer = replacer; - if (!isObject(replacer) && it === undefined || isSymbol(it)) return; // IE8 returns string on undefined - if (!isArray(replacer)) replacer = function (key, value) { - if (typeof $replacer == 'function') value = $replacer.call(this, key, value); - if (!isSymbol(value)) return value; - }; - args[1] = replacer; - return $stringify.apply(null, args); - } - }); -} +/***/ }), + +/***/ 9540: +/***/ ((__unused_webpack_module, __unused_webpack_exports, __nccwpck_require__) => { + +var defineWellKnownSymbol = __nccwpck_require__(7655); + +// `Symbol.hasInstance` well-known symbol +// https://tc39.es/ecma262/#sec-symbol.hasinstance +defineWellKnownSymbol('hasInstance'); + + +/***/ }), + +/***/ 6052: +/***/ ((__unused_webpack_module, __unused_webpack_exports, __nccwpck_require__) => { + +var defineWellKnownSymbol = __nccwpck_require__(7655); + +// `Symbol.isConcatSpreadable` well-known symbol +// https://tc39.es/ecma262/#sec-symbol.isconcatspreadable +defineWellKnownSymbol('isConcatSpreadable'); + + +/***/ }), + +/***/ 5126: +/***/ ((__unused_webpack_module, __unused_webpack_exports, __nccwpck_require__) => { + +var defineWellKnownSymbol = __nccwpck_require__(7655); + +// `Symbol.iterator` well-known symbol +// https://tc39.es/ecma262/#sec-symbol.iterator +defineWellKnownSymbol('iterator'); + + +/***/ }), + +/***/ 9427: +/***/ ((__unused_webpack_module, __unused_webpack_exports, __nccwpck_require__) => { + +// TODO: Remove this module from `core-js@4` since it's split to modules listed below +__nccwpck_require__(6068); +__nccwpck_require__(1320); +__nccwpck_require__(9835); +__nccwpck_require__(7381); +__nccwpck_require__(1380); + + +/***/ }), + +/***/ 9835: +/***/ ((__unused_webpack_module, __unused_webpack_exports, __nccwpck_require__) => { -// `Symbol.prototype[@@toPrimitive]` method -// https://tc39.github.io/ecma262/#sec-symbol.prototype-@@toprimitive -if (!$Symbol[PROTOTYPE][TO_PRIMITIVE]) { - createNonEnumerableProperty($Symbol[PROTOTYPE], TO_PRIMITIVE, $Symbol[PROTOTYPE].valueOf); -} -// `Symbol.prototype[@@toStringTag]` property -// https://tc39.github.io/ecma262/#sec-symbol.prototype-@@tostringtag -setToStringTag($Symbol, SYMBOL); +var $ = __nccwpck_require__(6937); +var hasOwn = __nccwpck_require__(568); +var isSymbol = __nccwpck_require__(5103); +var tryToString = __nccwpck_require__(4914); +var shared = __nccwpck_require__(8674); +var NATIVE_SYMBOL_REGISTRY = __nccwpck_require__(4893); -hiddenKeys[HIDDEN] = true; +var SymbolToStringRegistry = shared('symbol-to-string-registry'); + +// `Symbol.keyFor` method +// https://tc39.es/ecma262/#sec-symbol.keyfor +$({ target: 'Symbol', stat: true, forced: !NATIVE_SYMBOL_REGISTRY }, { + keyFor: function keyFor(sym) { + if (!isSymbol(sym)) throw TypeError(tryToString(sym) + ' is not a symbol'); + if (hasOwn(SymbolToStringRegistry, sym)) return SymbolToStringRegistry[sym]; + } +}); /***/ }), -/***/ 5123: +/***/ 4640: /***/ ((__unused_webpack_module, __unused_webpack_exports, __nccwpck_require__) => { -var defineWellKnownSymbol = __nccwpck_require__(7597); +var defineWellKnownSymbol = __nccwpck_require__(7655); // `Symbol.matchAll` well-known symbol +// https://tc39.es/ecma262/#sec-symbol.matchall defineWellKnownSymbol('matchAll'); /***/ }), -/***/ 6091: +/***/ 2589: /***/ ((__unused_webpack_module, __unused_webpack_exports, __nccwpck_require__) => { -var defineWellKnownSymbol = __nccwpck_require__(7597); +var defineWellKnownSymbol = __nccwpck_require__(7655); // `Symbol.match` well-known symbol -// https://tc39.github.io/ecma262/#sec-symbol.match +// https://tc39.es/ecma262/#sec-symbol.match defineWellKnownSymbol('match'); /***/ }), -/***/ 9937: +/***/ 2585: /***/ ((__unused_webpack_module, __unused_webpack_exports, __nccwpck_require__) => { -var defineWellKnownSymbol = __nccwpck_require__(7597); +var defineWellKnownSymbol = __nccwpck_require__(7655); // `Symbol.replace` well-known symbol -// https://tc39.github.io/ecma262/#sec-symbol.replace +// https://tc39.es/ecma262/#sec-symbol.replace defineWellKnownSymbol('replace'); /***/ }), -/***/ 2185: +/***/ 4205: /***/ ((__unused_webpack_module, __unused_webpack_exports, __nccwpck_require__) => { -var defineWellKnownSymbol = __nccwpck_require__(7597); +var defineWellKnownSymbol = __nccwpck_require__(7655); // `Symbol.search` well-known symbol -// https://tc39.github.io/ecma262/#sec-symbol.search +// https://tc39.es/ecma262/#sec-symbol.search defineWellKnownSymbol('search'); /***/ }), -/***/ 3475: +/***/ 1763: /***/ ((__unused_webpack_module, __unused_webpack_exports, __nccwpck_require__) => { -var defineWellKnownSymbol = __nccwpck_require__(7597); +var defineWellKnownSymbol = __nccwpck_require__(7655); // `Symbol.species` well-known symbol -// https://tc39.github.io/ecma262/#sec-symbol.species +// https://tc39.es/ecma262/#sec-symbol.species defineWellKnownSymbol('species'); /***/ }), -/***/ 4654: +/***/ 2678: /***/ ((__unused_webpack_module, __unused_webpack_exports, __nccwpck_require__) => { -var defineWellKnownSymbol = __nccwpck_require__(7597); +var defineWellKnownSymbol = __nccwpck_require__(7655); // `Symbol.split` well-known symbol -// https://tc39.github.io/ecma262/#sec-symbol.split +// https://tc39.es/ecma262/#sec-symbol.split defineWellKnownSymbol('split'); /***/ }), -/***/ 1944: +/***/ 6762: /***/ ((__unused_webpack_module, __unused_webpack_exports, __nccwpck_require__) => { -var defineWellKnownSymbol = __nccwpck_require__(7597); +var defineWellKnownSymbol = __nccwpck_require__(7655); +var defineSymbolToPrimitive = __nccwpck_require__(1634); // `Symbol.toPrimitive` well-known symbol -// https://tc39.github.io/ecma262/#sec-symbol.toprimitive +// https://tc39.es/ecma262/#sec-symbol.toprimitive defineWellKnownSymbol('toPrimitive'); +// `Symbol.prototype[@@toPrimitive]` method +// https://tc39.es/ecma262/#sec-symbol.prototype-@@toprimitive +defineSymbolToPrimitive(); + /***/ }), -/***/ 1776: +/***/ 938: /***/ ((__unused_webpack_module, __unused_webpack_exports, __nccwpck_require__) => { -var defineWellKnownSymbol = __nccwpck_require__(7597); +var getBuiltIn = __nccwpck_require__(4685); +var defineWellKnownSymbol = __nccwpck_require__(7655); +var setToStringTag = __nccwpck_require__(2416); // `Symbol.toStringTag` well-known symbol -// https://tc39.github.io/ecma262/#sec-symbol.tostringtag +// https://tc39.es/ecma262/#sec-symbol.tostringtag defineWellKnownSymbol('toStringTag'); +// `Symbol.prototype[@@toStringTag]` property +// https://tc39.es/ecma262/#sec-symbol.prototype-@@tostringtag +setToStringTag(getBuiltIn('Symbol'), 'Symbol'); + /***/ }), -/***/ 8527: +/***/ 1263: /***/ ((__unused_webpack_module, __unused_webpack_exports, __nccwpck_require__) => { -var defineWellKnownSymbol = __nccwpck_require__(7597); +var defineWellKnownSymbol = __nccwpck_require__(7655); // `Symbol.unscopables` well-known symbol -// https://tc39.github.io/ecma262/#sec-symbol.unscopables +// https://tc39.es/ecma262/#sec-symbol.unscopables defineWellKnownSymbol('unscopables'); /***/ }), -/***/ 4684: +/***/ 2196: /***/ ((__unused_webpack_module, __unused_webpack_exports, __nccwpck_require__) => { -var defineWellKnownSymbol = __nccwpck_require__(7597); +var defineWellKnownSymbol = __nccwpck_require__(7655); // `Symbol.asyncDispose` well-known symbol // https://github.com/tc39/proposal-using-statement @@ -9168,10 +9323,10 @@ defineWellKnownSymbol('asyncDispose'); /***/ }), -/***/ 1715: +/***/ 8250: /***/ ((__unused_webpack_module, __unused_webpack_exports, __nccwpck_require__) => { -var defineWellKnownSymbol = __nccwpck_require__(7597); +var defineWellKnownSymbol = __nccwpck_require__(7655); // `Symbol.dispose` well-known symbol // https://github.com/tc39/proposal-using-statement @@ -9180,10 +9335,47 @@ defineWellKnownSymbol('dispose'); /***/ }), -/***/ 8629: +/***/ 1079: +/***/ ((__unused_webpack_module, __unused_webpack_exports, __nccwpck_require__) => { + +var defineWellKnownSymbol = __nccwpck_require__(7655); + +// `Symbol.matcher` well-known symbol +// https://github.com/tc39/proposal-pattern-matching +defineWellKnownSymbol('matcher'); + + +/***/ }), + +/***/ 2256: +/***/ ((__unused_webpack_module, __unused_webpack_exports, __nccwpck_require__) => { + +var defineWellKnownSymbol = __nccwpck_require__(7655); + +// `Symbol.metadataKey` well-known symbol +// https://github.com/tc39/proposal-decorator-metadata +defineWellKnownSymbol('metadataKey'); + + +/***/ }), + +/***/ 835: +/***/ ((__unused_webpack_module, __unused_webpack_exports, __nccwpck_require__) => { + +// TODO: Remove from `core-js@4` +var defineWellKnownSymbol = __nccwpck_require__(7655); + +// `Symbol.metadata` well-known symbol +// https://github.com/tc39/proposal-decorators +defineWellKnownSymbol('metadata'); + + +/***/ }), + +/***/ 3383: /***/ ((__unused_webpack_module, __unused_webpack_exports, __nccwpck_require__) => { -var defineWellKnownSymbol = __nccwpck_require__(7597); +var defineWellKnownSymbol = __nccwpck_require__(7655); // `Symbol.observable` well-known symbol // https://github.com/tc39/proposal-observable @@ -9192,10 +9384,11 @@ defineWellKnownSymbol('observable'); /***/ }), -/***/ 7564: +/***/ 5144: /***/ ((__unused_webpack_module, __unused_webpack_exports, __nccwpck_require__) => { -var defineWellKnownSymbol = __nccwpck_require__(7597); +// TODO: remove from `core-js@4` +var defineWellKnownSymbol = __nccwpck_require__(7655); // `Symbol.patternMatch` well-known symbol // https://github.com/tc39/proposal-pattern-matching @@ -9204,27 +9397,27 @@ defineWellKnownSymbol('patternMatch'); /***/ }), -/***/ 4758: +/***/ 4652: /***/ ((__unused_webpack_module, __unused_webpack_exports, __nccwpck_require__) => { // TODO: remove from `core-js@4` -var defineWellKnownSymbol = __nccwpck_require__(7597); +var defineWellKnownSymbol = __nccwpck_require__(7655); defineWellKnownSymbol('replaceAll'); /***/ }), -/***/ 9442: +/***/ 9374: /***/ ((__unused_webpack_module, __unused_webpack_exports, __nccwpck_require__) => { -__nccwpck_require__(8458); -var DOMIterables = __nccwpck_require__(482); -var global = __nccwpck_require__(7095); -var classof = __nccwpck_require__(3955); -var createNonEnumerableProperty = __nccwpck_require__(5497); -var Iterators = __nccwpck_require__(6657); -var wellKnownSymbol = __nccwpck_require__(4814); +__nccwpck_require__(6236); +var DOMIterables = __nccwpck_require__(5870); +var global = __nccwpck_require__(5014); +var classof = __nccwpck_require__(9545); +var createNonEnumerableProperty = __nccwpck_require__(5651); +var Iterators = __nccwpck_require__(279); +var wellKnownSymbol = __nccwpck_require__(3423); var TO_STRING_TAG = wellKnownSymbol('toStringTag'); @@ -9240,62 +9433,87 @@ for (var COLLECTION_NAME in DOMIterables) { /***/ }), -/***/ 1762: +/***/ 2444: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +var parent = __nccwpck_require__(4721); + +module.exports = parent; + + +/***/ }), + +/***/ 9575: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +var parent = __nccwpck_require__(9840); + +module.exports = parent; + + +/***/ }), + +/***/ 2307: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var parent = __nccwpck_require__(2880); +var parent = __nccwpck_require__(5017); module.exports = parent; /***/ }), -/***/ 7303: +/***/ 8189: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var parent = __nccwpck_require__(3498); +var parent = __nccwpck_require__(7721); +__nccwpck_require__(9374); module.exports = parent; /***/ }), -/***/ 8858: +/***/ 5040: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var parent = __nccwpck_require__(9553); +var parent = __nccwpck_require__(1092); +__nccwpck_require__(9374); module.exports = parent; /***/ }), -/***/ 3452: +/***/ 7700: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var parent = __nccwpck_require__(2308); +var parent = __nccwpck_require__(696); module.exports = parent; /***/ }), -/***/ 7902: +/***/ 289: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var parent = __nccwpck_require__(461); +var parent = __nccwpck_require__(9412); module.exports = parent; /***/ }), -/***/ 5406: +/***/ 9584: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -__nccwpck_require__(9442); -var forEach = __nccwpck_require__(8858); -var classof = __nccwpck_require__(3955); +__nccwpck_require__(9374); +var classof = __nccwpck_require__(9545); +var hasOwn = __nccwpck_require__(568); +var isPrototypeOf = __nccwpck_require__(915); +var method = __nccwpck_require__(2307); + var ArrayPrototype = Array.prototype; var DOMIterables = { @@ -9305,115 +9523,115 @@ var DOMIterables = { module.exports = function (it) { var own = it.forEach; - return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.forEach) - // eslint-disable-next-line no-prototype-builtins - || DOMIterables.hasOwnProperty(classof(it)) ? forEach : own; + return it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.forEach) + || hasOwn(DOMIterables, classof(it)) ? method : own; }; /***/ }), -/***/ 3348: +/***/ 4254: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var parent = __nccwpck_require__(5268); +var parent = __nccwpck_require__(2133); module.exports = parent; /***/ }), -/***/ 1369: +/***/ 2745: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var parent = __nccwpck_require__(5574); +var parent = __nccwpck_require__(7442); module.exports = parent; /***/ }), -/***/ 3841: +/***/ 8353: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var parent = __nccwpck_require__(4787); +var parent = __nccwpck_require__(6405); module.exports = parent; /***/ }), -/***/ 8580: +/***/ 4975: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var parent = __nccwpck_require__(3572); +var parent = __nccwpck_require__(5159); module.exports = parent; /***/ }), -/***/ 2627: +/***/ 6312: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var parent = __nccwpck_require__(9849); +var parent = __nccwpck_require__(9656); module.exports = parent; /***/ }), -/***/ 4742: +/***/ 311: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var parent = __nccwpck_require__(2467); +var parent = __nccwpck_require__(7809); module.exports = parent; /***/ }), -/***/ 5433: +/***/ 6989: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var parent = __nccwpck_require__(5664); +var parent = __nccwpck_require__(6637); module.exports = parent; /***/ }), -/***/ 970: +/***/ 5480: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var parent = __nccwpck_require__(3484); +var parent = __nccwpck_require__(9915); module.exports = parent; /***/ }), -/***/ 6206: +/***/ 6188: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var parent = __nccwpck_require__(3889); +var parent = __nccwpck_require__(1457); module.exports = parent; /***/ }), -/***/ 8284: +/***/ 43: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var parent = __nccwpck_require__(5701); +var parent = __nccwpck_require__(8920); +__nccwpck_require__(9374); module.exports = parent; /***/ }), -/***/ 668: +/***/ 731: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -9441,7 +9659,7 @@ exports.Deprecation = Deprecation; /***/ }), -/***/ 3895: +/***/ 1622: /***/ ((module) => { "use strict"; @@ -9527,7 +9745,7 @@ function escapeHtml(string) { /***/ }), -/***/ 2328: +/***/ 1083: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -9573,7 +9791,7 @@ exports.isPlainObject = isPlainObject; /***/ }), -/***/ 1995: +/***/ 4573: /***/ (function(module, __unused_webpack_exports, __nccwpck_require__) { /* module decorator */ module = __nccwpck_require__.nmd(module); @@ -15265,7 +15483,7 @@ exports.isPlainObject = isPlainObject; /***/ }), -/***/ 9200: +/***/ 1968: /***/ ((module, exports, __nccwpck_require__) => { "use strict"; @@ -15278,9 +15496,9 @@ function _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'defau var Stream = _interopDefault(__nccwpck_require__(2781)); var http = _interopDefault(__nccwpck_require__(3685)); var Url = _interopDefault(__nccwpck_require__(7310)); -var whatwgUrl = _interopDefault(__nccwpck_require__(8518)); +var whatwgUrl = _interopDefault(__nccwpck_require__(5514)); var https = _interopDefault(__nccwpck_require__(5687)); -var zlib = _interopDefault(__nccwpck_require__(5206)); +var zlib = _interopDefault(__nccwpck_require__(9796)); // Based on https://github.com/tmpvar/jsdom/blob/aa85b2abf07766ff7bf5c1f6daafb3726f2f2db5/lib/jsdom/living/blob.js @@ -15431,7 +15649,7 @@ FetchError.prototype.name = 'FetchError'; let convert; try { - convert = (__nccwpck_require__(6972).convert); + convert = (__nccwpck_require__(7427).convert); } catch (e) {} const INTERNALS = Symbol('Body internals'); @@ -16970,7 +17188,7 @@ exports.FetchError = FetchError; /***/ }), -/***/ 9455: +/***/ 9742: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; @@ -17171,7 +17389,7 @@ module.exports.PROCESSING_OPTIONS = PROCESSING_OPTIONS; /***/ }), -/***/ 5578: +/***/ 913: /***/ ((module) => { "use strict"; @@ -17368,12 +17586,12 @@ conversions["RegExp"] = function (V, opts) { /***/ }), -/***/ 5084: +/***/ 5286: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; -const usm = __nccwpck_require__(6573); +const usm = __nccwpck_require__(4578); exports.implementation = class URLImpl { constructor(constructorArgs) { @@ -17576,15 +17794,15 @@ exports.implementation = class URLImpl { /***/ }), -/***/ 2446: +/***/ 5510: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; -const conversions = __nccwpck_require__(5578); -const utils = __nccwpck_require__(8255); -const Impl = __nccwpck_require__(5084); +const conversions = __nccwpck_require__(913); +const utils = __nccwpck_require__(3533); +const Impl = __nccwpck_require__(5286); const impl = utils.implSymbol; @@ -17780,32 +17998,32 @@ module.exports = { /***/ }), -/***/ 8518: +/***/ 5514: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; -exports.URL = __nccwpck_require__(2446)["interface"]; -exports.serializeURL = __nccwpck_require__(6573).serializeURL; -exports.serializeURLOrigin = __nccwpck_require__(6573).serializeURLOrigin; -exports.basicURLParse = __nccwpck_require__(6573).basicURLParse; -exports.setTheUsername = __nccwpck_require__(6573).setTheUsername; -exports.setThePassword = __nccwpck_require__(6573).setThePassword; -exports.serializeHost = __nccwpck_require__(6573).serializeHost; -exports.serializeInteger = __nccwpck_require__(6573).serializeInteger; -exports.parseURL = __nccwpck_require__(6573).parseURL; +exports.URL = __nccwpck_require__(5510)["interface"]; +exports.serializeURL = __nccwpck_require__(4578).serializeURL; +exports.serializeURLOrigin = __nccwpck_require__(4578).serializeURLOrigin; +exports.basicURLParse = __nccwpck_require__(4578).basicURLParse; +exports.setTheUsername = __nccwpck_require__(4578).setTheUsername; +exports.setThePassword = __nccwpck_require__(4578).setThePassword; +exports.serializeHost = __nccwpck_require__(4578).serializeHost; +exports.serializeInteger = __nccwpck_require__(4578).serializeInteger; +exports.parseURL = __nccwpck_require__(4578).parseURL; /***/ }), -/***/ 6573: +/***/ 4578: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; const punycode = __nccwpck_require__(5477); -const tr46 = __nccwpck_require__(9455); +const tr46 = __nccwpck_require__(9742); const specialSchemes = { ftp: 21, @@ -19104,7 +19322,7 @@ module.exports.parseURL = function (input, options) { /***/ }), -/***/ 8255: +/***/ 3533: /***/ ((module) => { "use strict"; @@ -19132,10 +19350,10 @@ module.exports.implForWrapper = function (wrapper) { /***/ }), -/***/ 1935: +/***/ 358: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var wrappy = __nccwpck_require__(730) +var wrappy = __nccwpck_require__(8251) module.exports = wrappy(once) module.exports.strict = wrappy(onceStrict) @@ -19181,15 +19399,15 @@ function onceStrict (fn) { /***/ }), -/***/ 5689: +/***/ 8746: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -module.exports = __nccwpck_require__(5836); +module.exports = __nccwpck_require__(7740); /***/ }), -/***/ 5836: +/***/ 7740: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -19461,7 +19679,7 @@ exports.debug = debug; // for test /***/ }), -/***/ 6561: +/***/ 6943: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -19487,7 +19705,7 @@ exports.getUserAgent = getUserAgent; /***/ }), -/***/ 1354: +/***/ 4037: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -19551,29 +19769,29 @@ Object.defineProperty(exports, "parse", ({ } })); -var _v = _interopRequireDefault(__nccwpck_require__(2844)); +var _v = _interopRequireDefault(__nccwpck_require__(2751)); -var _v2 = _interopRequireDefault(__nccwpck_require__(1197)); +var _v2 = _interopRequireDefault(__nccwpck_require__(1240)); -var _v3 = _interopRequireDefault(__nccwpck_require__(9854)); +var _v3 = _interopRequireDefault(__nccwpck_require__(2298)); -var _v4 = _interopRequireDefault(__nccwpck_require__(9796)); +var _v4 = _interopRequireDefault(__nccwpck_require__(8758)); -var _nil = _interopRequireDefault(__nccwpck_require__(8964)); +var _nil = _interopRequireDefault(__nccwpck_require__(8627)); -var _version = _interopRequireDefault(__nccwpck_require__(7633)); +var _version = _interopRequireDefault(__nccwpck_require__(4518)); -var _validate = _interopRequireDefault(__nccwpck_require__(3322)); +var _validate = _interopRequireDefault(__nccwpck_require__(8761)); -var _stringify = _interopRequireDefault(__nccwpck_require__(1016)); +var _stringify = _interopRequireDefault(__nccwpck_require__(1048)); -var _parse = _interopRequireDefault(__nccwpck_require__(7600)); +var _parse = _interopRequireDefault(__nccwpck_require__(9320)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } /***/ }), -/***/ 1961: +/***/ 3749: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -19603,7 +19821,7 @@ exports["default"] = _default; /***/ }), -/***/ 8964: +/***/ 8627: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -19618,7 +19836,7 @@ exports["default"] = _default; /***/ }), -/***/ 7600: +/***/ 9320: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -19629,7 +19847,7 @@ Object.defineProperty(exports, "__esModule", ({ })); exports["default"] = void 0; -var _validate = _interopRequireDefault(__nccwpck_require__(3322)); +var _validate = _interopRequireDefault(__nccwpck_require__(8761)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } @@ -19670,7 +19888,7 @@ exports["default"] = _default; /***/ }), -/***/ 3694: +/***/ 9007: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -19685,7 +19903,7 @@ exports["default"] = _default; /***/ }), -/***/ 5110: +/***/ 9928: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -19716,7 +19934,7 @@ function rng() { /***/ }), -/***/ 3751: +/***/ 7368: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -19746,7 +19964,7 @@ exports["default"] = _default; /***/ }), -/***/ 1016: +/***/ 1048: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -19757,7 +19975,7 @@ Object.defineProperty(exports, "__esModule", ({ })); exports["default"] = void 0; -var _validate = _interopRequireDefault(__nccwpck_require__(3322)); +var _validate = _interopRequireDefault(__nccwpck_require__(8761)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } @@ -19792,7 +20010,7 @@ exports["default"] = _default; /***/ }), -/***/ 2844: +/***/ 2751: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -19803,9 +20021,9 @@ Object.defineProperty(exports, "__esModule", ({ })); exports["default"] = void 0; -var _rng = _interopRequireDefault(__nccwpck_require__(5110)); +var _rng = _interopRequireDefault(__nccwpck_require__(9928)); -var _stringify = _interopRequireDefault(__nccwpck_require__(1016)); +var _stringify = _interopRequireDefault(__nccwpck_require__(1048)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } @@ -19906,7 +20124,7 @@ exports["default"] = _default; /***/ }), -/***/ 1197: +/***/ 1240: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -19917,9 +20135,9 @@ Object.defineProperty(exports, "__esModule", ({ })); exports["default"] = void 0; -var _v = _interopRequireDefault(__nccwpck_require__(9628)); +var _v = _interopRequireDefault(__nccwpck_require__(5978)); -var _md = _interopRequireDefault(__nccwpck_require__(1961)); +var _md = _interopRequireDefault(__nccwpck_require__(3749)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } @@ -19929,7 +20147,7 @@ exports["default"] = _default; /***/ }), -/***/ 9628: +/***/ 5978: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -19941,9 +20159,9 @@ Object.defineProperty(exports, "__esModule", ({ exports["default"] = _default; exports.URL = exports.DNS = void 0; -var _stringify = _interopRequireDefault(__nccwpck_require__(1016)); +var _stringify = _interopRequireDefault(__nccwpck_require__(1048)); -var _parse = _interopRequireDefault(__nccwpck_require__(7600)); +var _parse = _interopRequireDefault(__nccwpck_require__(9320)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } @@ -20014,7 +20232,7 @@ function _default(name, version, hashfunc) { /***/ }), -/***/ 9854: +/***/ 2298: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -20025,9 +20243,9 @@ Object.defineProperty(exports, "__esModule", ({ })); exports["default"] = void 0; -var _rng = _interopRequireDefault(__nccwpck_require__(5110)); +var _rng = _interopRequireDefault(__nccwpck_require__(9928)); -var _stringify = _interopRequireDefault(__nccwpck_require__(1016)); +var _stringify = _interopRequireDefault(__nccwpck_require__(1048)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } @@ -20058,7 +20276,7 @@ exports["default"] = _default; /***/ }), -/***/ 9796: +/***/ 8758: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -20069,9 +20287,9 @@ Object.defineProperty(exports, "__esModule", ({ })); exports["default"] = void 0; -var _v = _interopRequireDefault(__nccwpck_require__(9628)); +var _v = _interopRequireDefault(__nccwpck_require__(5978)); -var _sha = _interopRequireDefault(__nccwpck_require__(3751)); +var _sha = _interopRequireDefault(__nccwpck_require__(7368)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } @@ -20081,7 +20299,7 @@ exports["default"] = _default; /***/ }), -/***/ 3322: +/***/ 8761: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -20092,7 +20310,7 @@ Object.defineProperty(exports, "__esModule", ({ })); exports["default"] = void 0; -var _regex = _interopRequireDefault(__nccwpck_require__(3694)); +var _regex = _interopRequireDefault(__nccwpck_require__(9007)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } @@ -20105,7 +20323,7 @@ exports["default"] = _default; /***/ }), -/***/ 7633: +/***/ 4518: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -20116,7 +20334,7 @@ Object.defineProperty(exports, "__esModule", ({ })); exports["default"] = void 0; -var _validate = _interopRequireDefault(__nccwpck_require__(3322)); +var _validate = _interopRequireDefault(__nccwpck_require__(8761)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } @@ -20133,7 +20351,7 @@ exports["default"] = _default; /***/ }), -/***/ 730: +/***/ 8251: /***/ ((module) => { // Returns a wrapper function that returns a wrapped callback @@ -20173,15 +20391,15 @@ function wrappy (fn, cb) { /***/ }), -/***/ 5305: +/***/ 386: /***/ ((module, exports, __nccwpck_require__) => { "use strict"; -var _interopRequireDefault = __nccwpck_require__(3393); +var _interopRequireDefault = __nccwpck_require__(8452); -var _Object$defineProperty = __nccwpck_require__(6778); +var _Object$defineProperty = __nccwpck_require__(842); _Object$defineProperty(exports, "__esModule", { value: true @@ -20189,16 +20407,16 @@ _Object$defineProperty(exports, "__esModule", { exports["default"] = void 0; -var _concat = _interopRequireDefault(__nccwpck_require__(9014)); +var _concat = _interopRequireDefault(__nccwpck_require__(979)); -var _includes = _interopRequireDefault(__nccwpck_require__(3884)); +var _includes = _interopRequireDefault(__nccwpck_require__(6233)); -var _map = _interopRequireDefault(__nccwpck_require__(2061)); +var _map = _interopRequireDefault(__nccwpck_require__(3180)); -var _reduce = _interopRequireDefault(__nccwpck_require__(9150)); +var _reduce = _interopRequireDefault(__nccwpck_require__(2207)); /*! - * XRegExp.build 4.4.0 + * XRegExp.build 4.4.1 * * Steven Levithan (c) 2012-present MIT License */ @@ -20440,15 +20658,15 @@ module.exports = exports.default; /***/ }), -/***/ 5071: +/***/ 8083: /***/ ((module, exports, __nccwpck_require__) => { "use strict"; -var _interopRequireDefault = __nccwpck_require__(3393); +var _interopRequireDefault = __nccwpck_require__(8452); -var _Object$defineProperty = __nccwpck_require__(6778); +var _Object$defineProperty = __nccwpck_require__(842); _Object$defineProperty(exports, "__esModule", { value: true @@ -20456,14 +20674,14 @@ _Object$defineProperty(exports, "__esModule", { exports["default"] = void 0; -var _slice = _interopRequireDefault(__nccwpck_require__(6684)); +var _slice = _interopRequireDefault(__nccwpck_require__(2179)); -var _concat = _interopRequireDefault(__nccwpck_require__(9014)); +var _concat = _interopRequireDefault(__nccwpck_require__(979)); -var _includes = _interopRequireDefault(__nccwpck_require__(3884)); +var _includes = _interopRequireDefault(__nccwpck_require__(6233)); /*! - * XRegExp.matchRecursive 4.4.0 + * XRegExp.matchRecursive 4.4.1 * * Steven Levithan (c) 2009-present MIT License */ @@ -20676,15 +20894,15 @@ module.exports = exports.default; /***/ }), -/***/ 3193: +/***/ 4379: /***/ ((module, exports, __nccwpck_require__) => { "use strict"; -var _interopRequireDefault = __nccwpck_require__(3393); +var _interopRequireDefault = __nccwpck_require__(8452); -var _Object$defineProperty = __nccwpck_require__(6778); +var _Object$defineProperty = __nccwpck_require__(842); _Object$defineProperty(exports, "__esModule", { value: true @@ -20692,23 +20910,23 @@ _Object$defineProperty(exports, "__esModule", { exports["default"] = void 0; -var _getIterator2 = _interopRequireDefault(__nccwpck_require__(524)); +var _getIterator2 = _interopRequireDefault(__nccwpck_require__(942)); -var _isArray = _interopRequireDefault(__nccwpck_require__(681)); +var _isArray = _interopRequireDefault(__nccwpck_require__(5020)); -var _getIteratorMethod2 = _interopRequireDefault(__nccwpck_require__(8543)); +var _getIteratorMethod2 = _interopRequireDefault(__nccwpck_require__(5676)); -var _symbol = _interopRequireDefault(__nccwpck_require__(3122)); +var _symbol = _interopRequireDefault(__nccwpck_require__(3624)); -var _from = _interopRequireDefault(__nccwpck_require__(6611)); +var _from = _interopRequireDefault(__nccwpck_require__(4066)); -var _slice = _interopRequireDefault(__nccwpck_require__(6684)); +var _slice = _interopRequireDefault(__nccwpck_require__(2179)); -var _includes = _interopRequireDefault(__nccwpck_require__(3884)); +var _includes = _interopRequireDefault(__nccwpck_require__(6233)); -var _concat = _interopRequireDefault(__nccwpck_require__(9014)); +var _concat = _interopRequireDefault(__nccwpck_require__(979)); -var _forEach = _interopRequireDefault(__nccwpck_require__(6037)); +var _forEach = _interopRequireDefault(__nccwpck_require__(8376)); function _createForOfIteratorHelper(o, allowArrayLike) { var it; if (typeof _symbol["default"] === "undefined" || (0, _getIteratorMethod2["default"])(o) == null) { if ((0, _isArray["default"])(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = (0, _getIterator2["default"])(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it["return"] != null) it["return"](); } finally { if (didErr) throw err; } } }; } @@ -20717,7 +20935,7 @@ function _unsupportedIterableToArray(o, minLen) { var _context4; if (!o) return; function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; } /*! - * XRegExp Unicode Base 4.4.0 + * XRegExp Unicode Base 4.4.1 * * Steven Levithan (c) 2008-present MIT License */ @@ -20982,15 +21200,15 @@ module.exports = exports.default; /***/ }), -/***/ 7433: +/***/ 6079: /***/ ((module, exports, __nccwpck_require__) => { "use strict"; -var _interopRequireDefault = __nccwpck_require__(3393); +var _interopRequireDefault = __nccwpck_require__(8452); -var _Object$defineProperty = __nccwpck_require__(6778); +var _Object$defineProperty = __nccwpck_require__(842); _Object$defineProperty(exports, "__esModule", { value: true @@ -20998,10 +21216,10 @@ _Object$defineProperty(exports, "__esModule", { exports["default"] = void 0; -var _blocks = _interopRequireDefault(__nccwpck_require__(4152)); +var _blocks = _interopRequireDefault(__nccwpck_require__(7754)); /*! - * XRegExp Unicode Blocks 4.4.0 + * XRegExp Unicode Blocks 4.4.1 * * Steven Levithan (c) 2010-present MIT License * Unicode data by Mathias Bynens @@ -21028,15 +21246,15 @@ module.exports = exports.default; /***/ }), -/***/ 7075: +/***/ 850: /***/ ((module, exports, __nccwpck_require__) => { "use strict"; -var _interopRequireDefault = __nccwpck_require__(3393); +var _interopRequireDefault = __nccwpck_require__(8452); -var _Object$defineProperty = __nccwpck_require__(6778); +var _Object$defineProperty = __nccwpck_require__(842); _Object$defineProperty(exports, "__esModule", { value: true @@ -21044,10 +21262,10 @@ _Object$defineProperty(exports, "__esModule", { exports["default"] = void 0; -var _categories = _interopRequireDefault(__nccwpck_require__(6464)); +var _categories = _interopRequireDefault(__nccwpck_require__(6442)); /*! - * XRegExp Unicode Categories 4.4.0 + * XRegExp Unicode Categories 4.4.1 * * Steven Levithan (c) 2010-present MIT License * Unicode data by Mathias Bynens @@ -21074,15 +21292,15 @@ module.exports = exports.default; /***/ }), -/***/ 6913: +/***/ 6575: /***/ ((module, exports, __nccwpck_require__) => { "use strict"; -var _interopRequireDefault = __nccwpck_require__(3393); +var _interopRequireDefault = __nccwpck_require__(8452); -var _Object$defineProperty = __nccwpck_require__(6778); +var _Object$defineProperty = __nccwpck_require__(842); _Object$defineProperty(exports, "__esModule", { value: true @@ -21090,10 +21308,10 @@ _Object$defineProperty(exports, "__esModule", { exports["default"] = void 0; -var _properties = _interopRequireDefault(__nccwpck_require__(6844)); +var _properties = _interopRequireDefault(__nccwpck_require__(5928)); /*! - * XRegExp Unicode Properties 4.4.0 + * XRegExp Unicode Properties 4.4.1 * * Steven Levithan (c) 2012-present MIT License * Unicode data by Mathias Bynens @@ -21157,15 +21375,15 @@ module.exports = exports.default; /***/ }), -/***/ 6782: +/***/ 4781: /***/ ((module, exports, __nccwpck_require__) => { "use strict"; -var _interopRequireDefault = __nccwpck_require__(3393); +var _interopRequireDefault = __nccwpck_require__(8452); -var _Object$defineProperty = __nccwpck_require__(6778); +var _Object$defineProperty = __nccwpck_require__(842); _Object$defineProperty(exports, "__esModule", { value: true @@ -21173,10 +21391,10 @@ _Object$defineProperty(exports, "__esModule", { exports["default"] = void 0; -var _scripts = _interopRequireDefault(__nccwpck_require__(6658)); +var _scripts = _interopRequireDefault(__nccwpck_require__(1162)); /*! - * XRegExp Unicode Scripts 4.4.0 + * XRegExp Unicode Scripts 4.4.1 * * Steven Levithan (c) 2010-present MIT License * Unicode data by Mathias Bynens @@ -21202,15 +21420,15 @@ module.exports = exports.default; /***/ }), -/***/ 1053: +/***/ 7948: /***/ ((module, exports, __nccwpck_require__) => { "use strict"; -var _interopRequireDefault = __nccwpck_require__(3393); +var _interopRequireDefault = __nccwpck_require__(8452); -var _Object$defineProperty = __nccwpck_require__(6778); +var _Object$defineProperty = __nccwpck_require__(842); _Object$defineProperty(exports, "__esModule", { value: true @@ -21218,21 +21436,21 @@ _Object$defineProperty(exports, "__esModule", { exports["default"] = void 0; -var _xregexp = _interopRequireDefault(__nccwpck_require__(50)); +var _xregexp = _interopRequireDefault(__nccwpck_require__(3263)); -var _build = _interopRequireDefault(__nccwpck_require__(5305)); +var _build = _interopRequireDefault(__nccwpck_require__(386)); -var _matchrecursive = _interopRequireDefault(__nccwpck_require__(5071)); +var _matchrecursive = _interopRequireDefault(__nccwpck_require__(8083)); -var _unicodeBase = _interopRequireDefault(__nccwpck_require__(3193)); +var _unicodeBase = _interopRequireDefault(__nccwpck_require__(4379)); -var _unicodeBlocks = _interopRequireDefault(__nccwpck_require__(7433)); +var _unicodeBlocks = _interopRequireDefault(__nccwpck_require__(6079)); -var _unicodeCategories = _interopRequireDefault(__nccwpck_require__(7075)); +var _unicodeCategories = _interopRequireDefault(__nccwpck_require__(850)); -var _unicodeProperties = _interopRequireDefault(__nccwpck_require__(6913)); +var _unicodeProperties = _interopRequireDefault(__nccwpck_require__(6575)); -var _unicodeScripts = _interopRequireDefault(__nccwpck_require__(6782)); +var _unicodeScripts = _interopRequireDefault(__nccwpck_require__(4781)); (0, _build["default"])(_xregexp["default"]); (0, _matchrecursive["default"])(_xregexp["default"]); @@ -21247,15 +21465,15 @@ module.exports = exports.default; /***/ }), -/***/ 50: +/***/ 3263: /***/ ((module, exports, __nccwpck_require__) => { "use strict"; -var _interopRequireDefault = __nccwpck_require__(3393); +var _interopRequireDefault = __nccwpck_require__(8452); -var _Object$defineProperty = __nccwpck_require__(6778); +var _Object$defineProperty = __nccwpck_require__(842); _Object$defineProperty(exports, "__esModule", { value: true @@ -21263,35 +21481,35 @@ _Object$defineProperty(exports, "__esModule", { exports["default"] = void 0; -var _getIterator2 = _interopRequireDefault(__nccwpck_require__(524)); +var _getIterator2 = _interopRequireDefault(__nccwpck_require__(942)); -var _isArray = _interopRequireDefault(__nccwpck_require__(681)); +var _isArray = _interopRequireDefault(__nccwpck_require__(5020)); -var _getIteratorMethod2 = _interopRequireDefault(__nccwpck_require__(8543)); +var _getIteratorMethod2 = _interopRequireDefault(__nccwpck_require__(5676)); -var _symbol = _interopRequireDefault(__nccwpck_require__(3122)); +var _symbol = _interopRequireDefault(__nccwpck_require__(3624)); -var _from = _interopRequireDefault(__nccwpck_require__(6611)); +var _from = _interopRequireDefault(__nccwpck_require__(4066)); -var _concat = _interopRequireDefault(__nccwpck_require__(9014)); +var _concat = _interopRequireDefault(__nccwpck_require__(979)); -var _indexOf = _interopRequireDefault(__nccwpck_require__(8315)); +var _indexOf = _interopRequireDefault(__nccwpck_require__(6100)); -var _create = _interopRequireDefault(__nccwpck_require__(8305)); +var _create = _interopRequireDefault(__nccwpck_require__(2481)); -var _slicedToArray2 = _interopRequireDefault(__nccwpck_require__(6288)); +var _slicedToArray2 = _interopRequireDefault(__nccwpck_require__(1865)); -var _forEach = _interopRequireDefault(__nccwpck_require__(6037)); +var _forEach = _interopRequireDefault(__nccwpck_require__(8376)); -var _includes = _interopRequireDefault(__nccwpck_require__(3884)); +var _includes = _interopRequireDefault(__nccwpck_require__(6233)); -var _parseInt2 = _interopRequireDefault(__nccwpck_require__(3092)); +var _parseInt2 = _interopRequireDefault(__nccwpck_require__(8889)); -var _slice = _interopRequireDefault(__nccwpck_require__(6684)); +var _slice = _interopRequireDefault(__nccwpck_require__(2179)); -var _sort = _interopRequireDefault(__nccwpck_require__(1625)); +var _sort = _interopRequireDefault(__nccwpck_require__(2739)); -var _flags = _interopRequireDefault(__nccwpck_require__(7929)); +var _flags = _interopRequireDefault(__nccwpck_require__(9452)); function _createForOfIteratorHelper(o, allowArrayLike) { var it; if (typeof _symbol["default"] === "undefined" || (0, _getIteratorMethod2["default"])(o) == null) { if ((0, _isArray["default"])(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = (0, _getIterator2["default"])(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it["return"] != null) it["return"](); } finally { if (didErr) throw err; } } }; } @@ -21300,7 +21518,7 @@ function _unsupportedIterableToArray(o, minLen) { var _context9; if (!o) return; function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; } /*! - * XRegExp 4.4.0 + * XRegExp 4.4.1 * * Steven Levithan (c) 2007-present MIT License */ @@ -21974,7 +22192,7 @@ XRegExp.prototype = /(?:)/; // ==--------------------------== * @type String */ -XRegExp.version = '4.4.0'; // ==--------------------------== +XRegExp.version = '4.4.1'; // ==--------------------------== // Public methods // ==--------------------------== // Intentionally undocumented; used in tests and addons @@ -22921,12 +23139,6 @@ fixed.replace = function (search, replacement) { groupsObject[captureNames[i]] = args[i + 1]; } } - } // Update `lastIndex` before calling `replacement`. Fixes IE, Chrome, Firefox, Safari - // bug (last tested IE 9, Chrome 17, Firefox 11, Safari 5.1) - - - if (isRegex && search.global) { - search.lastIndex = args[args.length - 2] + args[0].length; } // ES6 specs the context for replacement functions as `undefined` @@ -23279,7 +23491,7 @@ module.exports = exports.default; /***/ }), -/***/ 4152: +/***/ 7754: /***/ ((module) => { module.exports = [ @@ -24456,7 +24668,7 @@ module.exports = [ /***/ }), -/***/ 6464: +/***/ 6442: /***/ ((module) => { module.exports = [ @@ -24681,7 +24893,7 @@ module.exports = [ /***/ }), -/***/ 6844: +/***/ 5928: /***/ ((module) => { module.exports = [ @@ -24729,7 +24941,7 @@ module.exports = [ /***/ }), -/***/ 6658: +/***/ 1162: /***/ ((module) => { module.exports = [ @@ -25375,18 +25587,18 @@ module.exports = [ /***/ }), -/***/ 8935: +/***/ 2389: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { "use strict"; -const core = __nccwpck_require__(5250); -const github = __nccwpck_require__(4931); +const core = __nccwpck_require__(3276); +const github = __nccwpck_require__(278); const context = github.context; -const XRegExp = __nccwpck_require__(1053); -const escape = __nccwpck_require__(3895); -const moment = __nccwpck_require__(1995); +const XRegExp = __nccwpck_require__(7948); +const escape = __nccwpck_require__(1622); +const moment = __nccwpck_require__(4573); const fs = __nccwpck_require__(7147); const SEMANTIC_VERSION_REGEX = @@ -25547,7 +25759,7 @@ class Version { } function getFileContents(file) { - return fs.readFileSync(file, {encoding: "utf-8"}); + return fs.readFileSync(file).toString("utf-8"); } function getFileVersion(versionFile, extractionPattern) { @@ -25715,7 +25927,7 @@ function extractData(properties) { let index = 0; return files.map(content => { const variables = {}; - for (const pattern of patterns) { + patterns.forEach(pattern => { XRegExp.forEach(content, pattern, (match, _) => { if (name != null && name.trim().length > 0) { const idx = index++; @@ -25743,7 +25955,7 @@ function extractData(properties) { } } }); - } + }); return variables; } ); @@ -25759,11 +25971,11 @@ function exportVersion(prefix, version) { core.setOutput(prefix + "_VERSION_MINOR", version.minor); core.exportVariable(prefix + "_VERSION_PATCH", version.patch); core.setOutput(prefix + "_VERSION_PATCH", version.patch); - if(version.prerelease) { + if (version.prerelease) { core.exportVariable(prefix + "_VERSION_PRERELEASE", version.prerelease); core.setOutput(prefix + "_VERSION_PRERELEASE", version.prerelease); } - if(version.buildmetadata) { + if (version.buildmetadata) { core.exportVariable(prefix + "_VERSION_BUILDMETADATA", version.buildmetadata); core.setOutput(prefix + "_VERSION_BUILDMETADATA", version.buildmetadata); } @@ -25816,10 +26028,10 @@ async function run() { const variables = Object.keys(data); variables.sort(); core.info("Got extracted data variables: " + variables.join(", ")); - for (const key of variables) { + variables.forEach(key => { core.exportVariable(key, data[key]); core.setOutput(key, data[key]); - } + }); }); } @@ -25842,7 +26054,7 @@ module.exports = { /***/ }), -/***/ 6972: +/***/ 7427: /***/ ((module) => { module.exports = eval("require")("encoding"); @@ -25962,7 +26174,7 @@ module.exports = require("util"); /***/ }), -/***/ 5206: +/***/ 9796: /***/ ((module) => { "use strict"; @@ -25970,6 +26182,266 @@ module.exports = require("zlib"); /***/ }), +/***/ 4066: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +module.exports = __nccwpck_require__(2444); + +/***/ }), + +/***/ 5020: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +module.exports = __nccwpck_require__(9575); + +/***/ }), + +/***/ 979: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +module.exports = __nccwpck_require__(7700); + +/***/ }), + +/***/ 9452: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +module.exports = __nccwpck_require__(289); + +/***/ }), + +/***/ 8376: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +module.exports = __nccwpck_require__(9584); + +/***/ }), + +/***/ 6233: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +module.exports = __nccwpck_require__(4254); + +/***/ }), + +/***/ 6100: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +module.exports = __nccwpck_require__(2745); + +/***/ }), + +/***/ 3180: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +module.exports = __nccwpck_require__(8353); + +/***/ }), + +/***/ 2207: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +module.exports = __nccwpck_require__(4975); + +/***/ }), + +/***/ 2179: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +module.exports = __nccwpck_require__(6312); + +/***/ }), + +/***/ 2739: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +module.exports = __nccwpck_require__(311); + +/***/ }), + +/***/ 2481: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +module.exports = __nccwpck_require__(6989); + +/***/ }), + +/***/ 842: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +module.exports = __nccwpck_require__(5480); + +/***/ }), + +/***/ 8889: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +module.exports = __nccwpck_require__(6188); + +/***/ }), + +/***/ 3624: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +module.exports = __nccwpck_require__(43); + +/***/ }), + +/***/ 1536: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +module.exports = __nccwpck_require__(7133); + +/***/ }), + +/***/ 6933: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +module.exports = __nccwpck_require__(9850); + +/***/ }), + +/***/ 5676: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +module.exports = __nccwpck_require__(1284); + +/***/ }), + +/***/ 942: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +module.exports = __nccwpck_require__(1130); + +/***/ }), + +/***/ 326: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +module.exports = __nccwpck_require__(6467); + +/***/ }), + +/***/ 5331: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +module.exports = __nccwpck_require__(9910); + +/***/ }), + +/***/ 2391: +/***/ ((module) => { + +function _arrayLikeToArray(arr, len) { + if (len == null || len > arr.length) len = arr.length; + for (var i = 0, arr2 = new Array(len); i < len; i++) { + arr2[i] = arr[i]; + } + return arr2; +} +module.exports = _arrayLikeToArray, module.exports.__esModule = true, module.exports["default"] = module.exports; + +/***/ }), + +/***/ 3347: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +var _Array$isArray = __nccwpck_require__(6933); +function _arrayWithHoles(arr) { + if (_Array$isArray(arr)) return arr; +} +module.exports = _arrayWithHoles, module.exports.__esModule = true, module.exports["default"] = module.exports; + +/***/ }), + +/***/ 8452: +/***/ ((module) => { + +function _interopRequireDefault(obj) { + return obj && obj.__esModule ? obj : { + "default": obj + }; +} +module.exports = _interopRequireDefault, module.exports.__esModule = true, module.exports["default"] = module.exports; + +/***/ }), + +/***/ 6075: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +var _Symbol = __nccwpck_require__(5331); +var _getIteratorMethod = __nccwpck_require__(5676); +function _iterableToArrayLimit(arr, i) { + var _i = arr == null ? null : typeof _Symbol !== "undefined" && _getIteratorMethod(arr) || arr["@@iterator"]; + if (_i == null) return; + var _arr = []; + var _n = true; + var _d = false; + var _s, _e; + try { + for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { + _arr.push(_s.value); + if (i && _arr.length === i) break; + } + } catch (err) { + _d = true; + _e = err; + } finally { + try { + if (!_n && _i["return"] != null) _i["return"](); + } finally { + if (_d) throw _e; + } + } + return _arr; +} +module.exports = _iterableToArrayLimit, module.exports.__esModule = true, module.exports["default"] = module.exports; + +/***/ }), + +/***/ 7959: +/***/ ((module) => { + +function _nonIterableRest() { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); +} +module.exports = _nonIterableRest, module.exports.__esModule = true, module.exports["default"] = module.exports; + +/***/ }), + +/***/ 1865: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +var arrayWithHoles = __nccwpck_require__(3347); +var iterableToArrayLimit = __nccwpck_require__(6075); +var unsupportedIterableToArray = __nccwpck_require__(9860); +var nonIterableRest = __nccwpck_require__(7959); +function _slicedToArray(arr, i) { + return arrayWithHoles(arr) || iterableToArrayLimit(arr, i) || unsupportedIterableToArray(arr, i) || nonIterableRest(); +} +module.exports = _slicedToArray, module.exports.__esModule = true, module.exports["default"] = module.exports; + +/***/ }), + +/***/ 9860: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +var _sliceInstanceProperty = __nccwpck_require__(326); +var _Array$from = __nccwpck_require__(1536); +var arrayLikeToArray = __nccwpck_require__(2391); +function _unsupportedIterableToArray(o, minLen) { + var _context; + if (!o) return; + if (typeof o === "string") return arrayLikeToArray(o, minLen); + var n = _sliceInstanceProperty(_context = Object.prototype.toString.call(o)).call(_context, 8, -1); + if (n === "Object" && o.constructor) n = o.constructor.name; + if (n === "Map" || n === "Set") return _Array$from(o); + if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return arrayLikeToArray(o, minLen); +} +module.exports = _unsupportedIterableToArray, module.exports.__esModule = true, module.exports["default"] = module.exports; + +/***/ }), + /***/ 1907: /***/ ((module) => { @@ -26032,7 +26504,7 @@ module.exports = JSON.parse('[[[0,44],"disallowed_STD3_valid"],[[45,46],"valid"] /******/ // startup /******/ // Load entry module and return exports /******/ // This entry module is referenced by other modules so it can't be inlined -/******/ var __webpack_exports__ = __nccwpck_require__(8935); +/******/ var __webpack_exports__ = __nccwpck_require__(2389); /******/ module.exports = __webpack_exports__; /******/ /******/ })()