mainnet-js 2.2.6 → 2.2.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.html +1 -1
- package/dist/{mainnet-2.2.6.js → mainnet-2.2.7.js} +1 -1
- package/dist/module/wallet/Bcmr.d.ts.map +1 -1
- package/dist/module/wallet/Bcmr.js +1 -4
- package/dist/module/wallet/Bcmr.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/wallet/Bcmr.ts +1 -6
package/dist/index.html
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="utf-8">
|
|
5
5
|
<title>The Empty Mainnet App</title>
|
|
6
|
-
<meta name="viewport" content="width=device-width, initial-scale=1"><script defer src="mainnet-2.2.
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1"><script defer src="mainnet-2.2.7.js"></script></head>
|
|
7
7
|
<body><script>document.addEventListener("DOMContentLoaded", async (event) => Object.assign(globalThis, await __mainnetPromise))</script>
|
|
8
8
|
</body>
|
|
9
9
|
</html>
|
|
@@ -1114,7 +1114,7 @@ eval("__webpack_require__.a(module, async (__webpack_handle_async_dependencies__
|
|
|
1114
1114
|
\****************************/
|
|
1115
1115
|
/***/ ((module, __webpack_exports__, __webpack_require__) => {
|
|
1116
1116
|
|
|
1117
|
-
eval("__webpack_require__.a(module, async (__webpack_handle_async_dependencies__, __webpack_async_result__) => { try {\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"BCMR\": () => (/* binding */ BCMR)\n/* harmony export */ });\n/* harmony import */ var _bitauth_libauth__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @bitauth/libauth */ \"../../node_modules/@bitauth/libauth/build/lib/format/hex.js\");\n/* harmony import */ var _bitauth_libauth__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @bitauth/libauth */ \"../../node_modules/@bitauth/libauth/build/lib/crypto/default-crypto-instances.js\");\n/* harmony import */ var _bitauth_libauth__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @bitauth/libauth */ \"../../node_modules/@bitauth/libauth/build/lib/format/utf8.js\");\n/* harmony import */ var _bitauth_libauth__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @bitauth/libauth */ \"../../node_modules/@bitauth/libauth/build/lib/message/transaction-encoding.js\");\n/* harmony import */ var _interface_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../interface.js */ \"./src/interface.ts\");\n/* harmony import */ var _network_Connection_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../network/Connection.js */ \"./src/network/Connection.ts\");\n/* harmony import */ var _model_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./model.js */ \"./src/wallet/model.ts\");\nvar __webpack_async_dependencies__ = __webpack_handle_async_dependencies__([_bitauth_libauth__WEBPACK_IMPORTED_MODULE_1__, _model_js__WEBPACK_IMPORTED_MODULE_3__, _network_Connection_js__WEBPACK_IMPORTED_MODULE_5__, _bitauth_libauth__WEBPACK_IMPORTED_MODULE_6__]);\n([_bitauth_libauth__WEBPACK_IMPORTED_MODULE_1__, _model_js__WEBPACK_IMPORTED_MODULE_3__, _network_Connection_js__WEBPACK_IMPORTED_MODULE_5__, _bitauth_libauth__WEBPACK_IMPORTED_MODULE_6__] = __webpack_async_dependencies__.then ? (await __webpack_async_dependencies__)() : __webpack_async_dependencies__);\n\n\n\n\n// Implementation of CHIP-BCMR v2.0.0-draft, refer to https://github.com/bitjson/chip-bcmr\nclass BCMR {\n static getRegistries() {\n return this.metadataRegistries;\n }\n static resetRegistries() {\n this.metadataRegistries = [];\n }\n /**\n * fetchMetadataRegistry Fetch the BCMR registry JSON file from a remote URI, optionally verifying its content hash\n *\n * @param {string} uri URI of the registry to fetch from\n * @param {string?} contentHash SHA256 hash of the resource the `uri` parameter points at.\n * If specified, calculates the hash of the data fetched from `uri` and matches it with provided one.\n * Yields an error upon mismatch.\n *\n * @returns {Registry} resolved registry\n */\n static async fetchMetadataRegistry(uri, contentHash) {\n if (uri.indexOf(\"https://\") < 0) {\n uri = `https://${uri}`;\n }\n // content hashes HTTPS Publication Outputs per spec\n if (contentHash) {\n // request as text and verify hash\n const response = await fetch(uri);\n const data = await response.text();\n const hash = (0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_0__.binToHex)(_bitauth_libauth__WEBPACK_IMPORTED_MODULE_1__.sha256.hash((0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_2__.utf8ToBin)(data)));\n if (contentHash != hash) {\n throw new Error(`Content hash mismatch for URI: ${uri}\\nreceived: ${hash}\\nrequired: ${contentHash}`);\n }\n return JSON.parse(data);\n }\n // request as JSON\n const response = await fetch(uri);\n const data = await response.json();\n return data;\n }\n /**\n * addMetadataRegistry Add the metadata registry to the list of tracked registries\n *\n * @param {Registry} registry Registry object per schema specification, see https://raw.githubusercontent.com/bitjson/chip-bcmr/master/bcmr-v1.schema.json\n *\n */\n static addMetadataRegistry(registry) {\n if (this.metadataRegistries.some((val) => JSON.stringify(val) === JSON.stringify(registry))) {\n return;\n }\n this.metadataRegistries.push(registry);\n }\n /**\n * addMetadataRegistryFromUri Add the metadata registry by fetching a JSON file from a remote URI, optionally verifying its content hash\n *\n * @param {string} uri URI of the registry to fetch from\n * @param {string?} contentHash SHA256 hash of the resource the `uri` parameter points at.\n * If specified, calculates the hash of the data fetched from `uri` and matches it with provided one.\n * Yields an error upon mismatch.\n *\n */\n static async addMetadataRegistryFromUri(uri, contentHash) {\n const registry = await this.fetchMetadataRegistry(uri, contentHash);\n this.addMetadataRegistry(registry);\n }\n // helper function to enforce the constraints on the 0th output, decode the BCMR's OP_RETURN data\n // returns resolved AuthChainElement\n static makeAuthChainElement(rawTx, hash) {\n let opReturns;\n let spends0thOutput = false;\n if (rawTx.hasOwnProperty(\"vout\")) {\n const electrumTransaction = rawTx;\n opReturns = electrumTransaction.vout\n .filter((val) => val.scriptPubKey.type === \"nulldata\")\n .map((val) => val.scriptPubKey.hex);\n spends0thOutput = electrumTransaction.vin.some((val) => val.vout === 0);\n }\n else {\n const libauthTransaction = rawTx;\n opReturns = libauthTransaction.outputs\n .map((val) => (0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_0__.binToHex)(val.lockingBytecode))\n .filter((val) => val.indexOf(\"6a\") === 0);\n spends0thOutput = libauthTransaction.inputs.some((val) => val.outpointIndex === 0);\n }\n if (!spends0thOutput) {\n throw new Error(\"Invalid authchain transaction (does not spend 0th output of previous transaction)\");\n }\n const bcmrOpReturns = opReturns.filter((val) => val.indexOf(\"6a0442434d52\") === 0 ||\n val.indexOf(\"6a4c0442434d52\") === 0 ||\n val.indexOf(\"6a4d040042434d52\") === 0 ||\n val.indexOf(\"6a4e0400000042434d52\") === 0);\n if (bcmrOpReturns.length === 0) {\n return {\n txHash: hash,\n contentHash: \"\",\n uris: [],\n httpsUrl: \"\",\n };\n }\n const opReturnHex = opReturns[0];\n const chunks = _model_js__WEBPACK_IMPORTED_MODULE_3__.OpReturnData.parseBinary((0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_0__.hexToBin)(opReturnHex));\n if (chunks.length < 2) {\n throw new Error(`Malformed BCMR output: ${opReturnHex}`);\n }\n const result = {\n txHash: hash,\n contentHash: \"\",\n uris: [],\n httpsUrl: \"\",\n };\n if (chunks.length === 2) {\n // IPFS Publication Output\n result.contentHash = (0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_0__.binToHex)(chunks[1]);\n const ipfsCid = (0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_2__.binToUtf8)(chunks[1]);\n result.uris = [`ipfs://${ipfsCid}`];\n result.httpsUrl = `https://dweb.link/ipfs/${ipfsCid}`;\n }\n else {\n // URI Publication Output\n // content hash is in OP_SHA256 byte order per spec\n result.contentHash = (0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_0__.binToHex)(chunks[1].slice());\n const uris = chunks.slice(2);\n for (const uri of uris) {\n const uriString = (0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_2__.binToUtf8)(uri);\n result.uris.push(uriString);\n if (result.httpsUrl) {\n continue;\n }\n if (uriString.indexOf(\"ipfs://\") === 0) {\n const ipfsCid = uriString.replace(\"ipfs://\", \"\");\n result.httpsUrl = `https://dweb.link/ipfs/${ipfsCid}`;\n }\n else if (uriString.indexOf(\"https://\") === 0) {\n result.httpsUrl = uriString;\n }\n else if (uriString.indexOf(\"https://\") === -1) {\n result.httpsUrl = uriString;\n // case for domain name specifier, like example.com\n if (uriString.indexOf(\"/\") === -1) {\n const parts = uriString.toLowerCase().split(\".\");\n if (!(parts?.[0]?.indexOf(\"baf\") === 0 && parts?.[1] === \"ipfs\")) {\n result.httpsUrl = `${result.httpsUrl}/.well-known/bitcoin-cash-metadata-registry.json`;\n }\n }\n result.httpsUrl = `https://${result.httpsUrl}`;\n }\n else {\n throw new Error(`Unsupported uri type: ${uriString}`);\n }\n }\n }\n return result;\n }\n /**\n * buildAuthChain Build an authchain - Zeroth-Descendant Transaction Chain, refer to https://github.com/bitjson/chip-bcmr#zeroth-descendant-transaction-chains\n * The authchain in this implementation is specific to resolve to a valid metadata registry\n *\n * @param {string} options.transactionHash (required) transaction hash from which to build the auth chain\n * @param {Network?} options.network (default=mainnet) network to query the data from\n * @param {boolean?} options.resolveBase (default=false) boolean flag to indicate that autchain building should resolve and verify elements back to base or be stopped at this exact chain element\n * @param {boolean?} options.followToHead (default=true) boolean flag to indicate that autchain building should progress to head or be stopped at this exact chain element\n * @param {ElectrumRawTransaction?} options.rawTx cached raw transaction obtained previously, spares a Fulcrum call\n * @param {TxI[]?} options.historyCache cached address history to be reused if authchain building proceeds with the same address, spares a flurry of Fulcrum calls\n *\n * @returns {AuthChain} returns the resolved authchain\n */\n static async buildAuthChain(options) {\n if (options.network === undefined) {\n options.network = _interface_js__WEBPACK_IMPORTED_MODULE_4__.Network.MAINNET;\n }\n if (options.followToHead === undefined) {\n options.followToHead = true;\n }\n if (options.resolveBase === undefined) {\n options.resolveBase = false;\n }\n const provider = (await (0,_network_Connection_js__WEBPACK_IMPORTED_MODULE_5__.initProvider)(options.network));\n if (options.rawTx === undefined) {\n options.rawTx = await provider.getRawTransactionObject(options.transactionHash);\n }\n // figure out the autchain by moving towards authhead\n const getAuthChainChild = async () => {\n const history = options.historyCache ||\n (await provider.getHistory(options.rawTx.vout[0].scriptPubKey.addresses[0]));\n const thisTx = history.find((val) => val.tx_hash === options.transactionHash);\n let filteredHistory = history.filter((val) => val.height > 0\n ? val.height >= thisTx.height || val.height <= 0\n : val.height <= 0 && val.tx_hash !== thisTx.tx_hash);\n for (const historyTx of filteredHistory) {\n const historyRawTx = await provider.getRawTransactionObject(historyTx.tx_hash);\n const authChainVin = historyRawTx.vin.find((val) => val.txid === options.transactionHash && val.vout === 0);\n // if we've found continuation of authchain, we shall recurse into it\n if (authChainVin) {\n // reuse queried address history if the next element in chain is the same address\n const historyCache = options.rawTx.vout[0].scriptPubKey.addresses[0] ===\n historyRawTx.vout[0].scriptPubKey.addresses[0]\n ? filteredHistory\n : undefined;\n // combine the authchain element with the rest obtained\n return { rawTx: historyRawTx, historyCache };\n }\n }\n return undefined;\n };\n // make authchain element and combine with the rest obtained\n let element;\n try {\n element = BCMR.makeAuthChainElement(options.rawTx, options.rawTx.hash);\n }\n catch (error) {\n // special case for cashtoken authchain lookup by categoryId - allow to fail first lookup and inspect the genesis transaction\n // follow authchain to head and look for BCMR outputs\n const child = await getAuthChainChild();\n if (child) {\n return await BCMR.buildAuthChain({\n ...options,\n transactionHash: child.rawTx.hash,\n rawTx: child.rawTx,\n historyCache: child.historyCache,\n });\n }\n else {\n throw error;\n }\n }\n let chainBase = [];\n if (options.resolveBase) {\n // check for accelerated path if \"authchain\" extension is in registry\n const registry = await this.fetchMetadataRegistry(element.httpsUrl, element.contentHash);\n if (registry.extensions &&\n registry.extensions[\"authchain\"] &&\n Object.keys(registry.extensions[\"authchain\"]).length) {\n const chainTxArray = Object.values(registry.extensions[\"authchain\"]);\n chainBase = chainTxArray\n .map((tx) => {\n const transactionBin = (0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_0__.hexToBin)(tx);\n const decoded = (0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_6__.decodeTransaction)(transactionBin);\n if (typeof decoded === \"string\") {\n throw new Error(`Error decoding transaction ${JSON.stringify(tx)}, ${decoded}`);\n }\n const hash = (0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_0__.binToHex)(_bitauth_libauth__WEBPACK_IMPORTED_MODULE_1__.sha256.hash(_bitauth_libauth__WEBPACK_IMPORTED_MODULE_1__.sha256.hash(transactionBin)).reverse());\n return { decoded, hash };\n })\n .map(({ decoded, hash }) => BCMR.makeAuthChainElement(decoded, hash));\n }\n else {\n // simply go back in history towards authhead\n let stop = false;\n let tx = { ...options.rawTx };\n let maxElements = 10;\n while (stop == false || maxElements === 0) {\n const vin = tx.vin.find((val) => val.vout === 0);\n tx = await provider.getRawTransactionObject(vin.txid);\n try {\n const pastElement = BCMR.makeAuthChainElement(tx, tx.hash);\n chainBase.unshift(pastElement);\n maxElements--;\n }\n catch {\n stop = true;\n }\n }\n }\n }\n // if we follow to head, we need to locate the next transaction spending our 0th output\n // and repeat the building process recursively\n if (options.followToHead) {\n const child = await getAuthChainChild();\n if (child) {\n const chainHead = await BCMR.buildAuthChain({\n transactionHash: child.rawTx.hash,\n network: options.network,\n rawTx: child.rawTx,\n historyCache: child.historyCache,\n followToHead: options.followToHead,\n resolveBase: false,\n });\n // combine the authchain element with the rest obtained\n return [...chainBase, element, ...chainHead].filter((val) => val.httpsUrl.length);\n }\n }\n // return the last chain element (or the only found in an edge case)\n return [...chainBase, element].filter((val) => val.httpsUrl.length);\n }\n /**\n * fetchAuthChainFromChaingraph Fetch the authchain information from a trusted external indexer\n * The authchain in this implementation is specific to resolve to a valid metadata registry\n *\n * @param {string} options.chaingraphUrl (required) URL of a chaingraph indexer instance to fetch info from\n * @param {string} options.transactionHash (required) transaction hash from which to build the auth chain\n * @param {string?} options.network (default=undefined) network to query the data from, specific to the queried instance,\n * can be 'mainnet', 'chipnet', or anything else.\n * if left undefined all chaingraph transactions will be looked at, disregarding the chain\n *\n * @returns {AuthChain} returns the resolved authchain\n */\n static async fetchAuthChainFromChaingraph(options) {\n if (!options.chaingraphUrl) {\n throw new Error(\"Provide `chaingraphUrl` param.\");\n }\n const response = await fetch(options.chaingraphUrl, {\n method: \"POST\",\n headers: {\n Accept: \"*/*\",\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n operationName: null,\n variables: {},\n query: `\n{\n transaction(\n where: {\n hash:{_eq:\"\\\\\\\\x${options.transactionHash}\"},\n ${options.network\n ? `node_validation_timeline:{node:{name:{_ilike:\"%${options.network}%\"}}}`\n : \"\"}\n }\n ) {\n hash\n authchains {\n authchain_length\n migrations(\n where: {\n transaction: {\n outputs: { locking_bytecode_pattern: { _like: \"6a04%\" } }\n }\n }\n ) {\n transaction {\n hash\n inputs(where:{ outpoint_index: { _eq:\"0\" } }){\n outpoint_index\n }\n outputs(where: { locking_bytecode_pattern: { _like: \"6a04%\" } }) {\n output_index\n locking_bytecode\n }\n }\n }\n }\n }\n}`,\n }),\n });\n const responseData = await response.json();\n const result = [];\n const migrations = responseData.data.transaction[0]?.authchains[0].migrations;\n if (!migrations) {\n return result;\n }\n for (const migration of migrations) {\n const transaction = migration.transaction[0];\n if (!transaction) {\n continue;\n }\n transaction.inputs.forEach((input) => (input.outpointIndex = Number(input.outpoint_index)));\n transaction.outputs.forEach((output) => {\n output.outputIndex = Number(output.output_index);\n output.lockingBytecode = (0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_0__.hexToBin)(output.locking_bytecode.replace(\"\\\\x\", \"\"));\n });\n const txHash = transaction.hash.replace(\"\\\\x\", \"\");\n result.push(BCMR.makeAuthChainElement(transaction, txHash));\n }\n return result.filter((element) => element.contentHash.length && element.httpsUrl.length);\n }\n /**\n * addMetadataRegistryAuthChain Add BCMR metadata registry by resolving an authchain\n *\n * @param {string} options.transactionHash (required) transaction hash from which to build the auth chain\n * @param {Network?} options.network (default=mainnet) network to query the data from\n * @param {boolean?} options.followToHead (default=true) boolean flag to indicate that autchain building should progress to head (most recent registry version) or be stopped at this exact chain element\n * @param {ElectrumRawTransaction?} options.rawTx cached raw transaction obtained previously, spares a Fulcrum call\n *\n * @returns {AuthChain} returns the resolved authchain\n */\n static async addMetadataRegistryAuthChain(options) {\n const authChain = await this.buildAuthChain({\n ...options,\n resolveBase: false,\n });\n if (!authChain.length) {\n throw new Error(`There were no BCMR entries in the resolved authchain ${JSON.stringify(authChain, null, 2)}`);\n }\n const registry = await this.fetchMetadataRegistry(authChain.reverse()[0].httpsUrl);\n this.addMetadataRegistry(registry);\n return authChain;\n }\n /**\n * getTokenInfo Return the token info (or the identity snapshot as per spec)\n *\n * @param {string} tokenId token id to look up\n *\n * @returns {IdentitySnapshot?} return the info for the token found, otherwise undefined\n */\n static getTokenInfo(tokenId) {\n for (const registry of this.metadataRegistries.slice().reverse()) {\n const history = registry.identities?.[tokenId];\n if (!history) {\n continue;\n }\n const latestIdentityIndex = Object.keys(history)[0];\n if (latestIdentityIndex === undefined) {\n continue;\n }\n return history[latestIdentityIndex];\n }\n return undefined;\n }\n}\n// List of tracked registries\nBCMR.metadataRegistries = [];\n\n__webpack_async_result__();\n} catch(e) { __webpack_async_result__(e); } });\n\n//# sourceURL=webpack://mainnet-js/./src/wallet/Bcmr.ts?");
|
|
1117
|
+
eval("__webpack_require__.a(module, async (__webpack_handle_async_dependencies__, __webpack_async_result__) => { try {\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"BCMR\": () => (/* binding */ BCMR)\n/* harmony export */ });\n/* harmony import */ var _bitauth_libauth__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @bitauth/libauth */ \"../../node_modules/@bitauth/libauth/build/lib/format/hex.js\");\n/* harmony import */ var _bitauth_libauth__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @bitauth/libauth */ \"../../node_modules/@bitauth/libauth/build/lib/crypto/default-crypto-instances.js\");\n/* harmony import */ var _bitauth_libauth__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @bitauth/libauth */ \"../../node_modules/@bitauth/libauth/build/lib/format/utf8.js\");\n/* harmony import */ var _bitauth_libauth__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @bitauth/libauth */ \"../../node_modules/@bitauth/libauth/build/lib/message/transaction-encoding.js\");\n/* harmony import */ var _interface_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../interface.js */ \"./src/interface.ts\");\n/* harmony import */ var _network_Connection_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../network/Connection.js */ \"./src/network/Connection.ts\");\n/* harmony import */ var _model_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./model.js */ \"./src/wallet/model.ts\");\nvar __webpack_async_dependencies__ = __webpack_handle_async_dependencies__([_bitauth_libauth__WEBPACK_IMPORTED_MODULE_1__, _model_js__WEBPACK_IMPORTED_MODULE_3__, _network_Connection_js__WEBPACK_IMPORTED_MODULE_5__, _bitauth_libauth__WEBPACK_IMPORTED_MODULE_6__]);\n([_bitauth_libauth__WEBPACK_IMPORTED_MODULE_1__, _model_js__WEBPACK_IMPORTED_MODULE_3__, _network_Connection_js__WEBPACK_IMPORTED_MODULE_5__, _bitauth_libauth__WEBPACK_IMPORTED_MODULE_6__] = __webpack_async_dependencies__.then ? (await __webpack_async_dependencies__)() : __webpack_async_dependencies__);\n\n\n\n\n// Implementation of CHIP-BCMR v2.0.0-draft, refer to https://github.com/bitjson/chip-bcmr\nclass BCMR {\n static getRegistries() {\n return this.metadataRegistries;\n }\n static resetRegistries() {\n this.metadataRegistries = [];\n }\n /**\n * fetchMetadataRegistry Fetch the BCMR registry JSON file from a remote URI, optionally verifying its content hash\n *\n * @param {string} uri URI of the registry to fetch from\n * @param {string?} contentHash SHA256 hash of the resource the `uri` parameter points at.\n * If specified, calculates the hash of the data fetched from `uri` and matches it with provided one.\n * Yields an error upon mismatch.\n *\n * @returns {Registry} resolved registry\n */\n static async fetchMetadataRegistry(uri, contentHash) {\n if (uri.indexOf(\"https://\") < 0) {\n uri = `https://${uri}`;\n }\n // content hashes HTTPS Publication Outputs per spec\n if (contentHash) {\n // request as text and verify hash\n const response = await fetch(uri);\n const data = await response.text();\n const hash = (0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_0__.binToHex)(_bitauth_libauth__WEBPACK_IMPORTED_MODULE_1__.sha256.hash((0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_2__.utf8ToBin)(data)));\n if (contentHash != hash) {\n throw new Error(`Content hash mismatch for URI: ${uri}\\nreceived: ${hash}\\nrequired: ${contentHash}`);\n }\n return JSON.parse(data);\n }\n // request as JSON\n const response = await fetch(uri);\n const data = await response.json();\n return data;\n }\n /**\n * addMetadataRegistry Add the metadata registry to the list of tracked registries\n *\n * @param {Registry} registry Registry object per schema specification, see https://raw.githubusercontent.com/bitjson/chip-bcmr/master/bcmr-v1.schema.json\n *\n */\n static addMetadataRegistry(registry) {\n if (this.metadataRegistries.some((val) => JSON.stringify(val) === JSON.stringify(registry))) {\n return;\n }\n this.metadataRegistries.push(registry);\n }\n /**\n * addMetadataRegistryFromUri Add the metadata registry by fetching a JSON file from a remote URI, optionally verifying its content hash\n *\n * @param {string} uri URI of the registry to fetch from\n * @param {string?} contentHash SHA256 hash of the resource the `uri` parameter points at.\n * If specified, calculates the hash of the data fetched from `uri` and matches it with provided one.\n * Yields an error upon mismatch.\n *\n */\n static async addMetadataRegistryFromUri(uri, contentHash) {\n const registry = await this.fetchMetadataRegistry(uri, contentHash);\n this.addMetadataRegistry(registry);\n }\n // helper function to enforce the constraints on the 0th output, decode the BCMR's OP_RETURN data\n // returns resolved AuthChainElement\n static makeAuthChainElement(rawTx, hash) {\n let opReturns;\n let spends0thOutput = false;\n if (rawTx.hasOwnProperty(\"vout\")) {\n const electrumTransaction = rawTx;\n opReturns = electrumTransaction.vout\n .filter((val) => val.scriptPubKey.type === \"nulldata\")\n .map((val) => val.scriptPubKey.hex);\n spends0thOutput = electrumTransaction.vin.some((val) => val.vout === 0);\n }\n else {\n const libauthTransaction = rawTx;\n opReturns = libauthTransaction.outputs\n .map((val) => (0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_0__.binToHex)(val.lockingBytecode))\n .filter((val) => val.indexOf(\"6a\") === 0);\n spends0thOutput = libauthTransaction.inputs.some((val) => val.outpointIndex === 0);\n }\n if (!spends0thOutput) {\n throw new Error(\"Invalid authchain transaction (does not spend 0th output of previous transaction)\");\n }\n const bcmrOpReturns = opReturns.filter((val) => val.indexOf(\"6a0442434d52\") === 0 ||\n val.indexOf(\"6a4c0442434d52\") === 0 ||\n val.indexOf(\"6a4d040042434d52\") === 0 ||\n val.indexOf(\"6a4e0400000042434d52\") === 0);\n if (bcmrOpReturns.length === 0) {\n return {\n txHash: hash,\n contentHash: \"\",\n uris: [],\n httpsUrl: \"\",\n };\n }\n const opReturnHex = opReturns[0];\n const chunks = _model_js__WEBPACK_IMPORTED_MODULE_3__.OpReturnData.parseBinary((0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_0__.hexToBin)(opReturnHex));\n if (chunks.length < 2) {\n throw new Error(`Malformed BCMR output: ${opReturnHex}`);\n }\n const result = {\n txHash: hash,\n contentHash: \"\",\n uris: [],\n httpsUrl: \"\",\n };\n if (chunks.length === 2) {\n // IPFS Publication Output\n result.contentHash = (0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_0__.binToHex)(chunks[1]);\n const ipfsCid = (0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_2__.binToUtf8)(chunks[1]);\n result.uris = [`ipfs://${ipfsCid}`];\n result.httpsUrl = `https://dweb.link/ipfs/${ipfsCid}`;\n }\n else {\n // URI Publication Output\n // content hash is in OP_SHA256 byte order per spec\n result.contentHash = (0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_0__.binToHex)(chunks[1].slice());\n const uris = chunks.slice(2);\n for (const uri of uris) {\n const uriString = (0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_2__.binToUtf8)(uri);\n result.uris.push(uriString);\n if (result.httpsUrl) {\n continue;\n }\n if (uriString.indexOf(\"ipfs://\") === 0) {\n const ipfsCid = uriString.replace(\"ipfs://\", \"\");\n result.httpsUrl = `https://dweb.link/ipfs/${ipfsCid}`;\n }\n else if (uriString.indexOf(\"https://\") === 0) {\n result.httpsUrl = uriString;\n }\n else if (uriString.indexOf(\"https://\") === -1) {\n result.httpsUrl = uriString;\n // case for domain name specifier, like example.com\n if (uriString.indexOf(\"/\") === -1) {\n const parts = uriString.toLowerCase().split(\".\");\n if (!(parts?.[0]?.indexOf(\"baf\") === 0 && parts?.[1] === \"ipfs\")) {\n result.httpsUrl = `${result.httpsUrl}/.well-known/bitcoin-cash-metadata-registry.json`;\n }\n }\n result.httpsUrl = `https://${result.httpsUrl}`;\n }\n else {\n throw new Error(`Unsupported uri type: ${uriString}`);\n }\n }\n }\n return result;\n }\n /**\n * buildAuthChain Build an authchain - Zeroth-Descendant Transaction Chain, refer to https://github.com/bitjson/chip-bcmr#zeroth-descendant-transaction-chains\n * The authchain in this implementation is specific to resolve to a valid metadata registry\n *\n * @param {string} options.transactionHash (required) transaction hash from which to build the auth chain\n * @param {Network?} options.network (default=mainnet) network to query the data from\n * @param {boolean?} options.resolveBase (default=false) boolean flag to indicate that autchain building should resolve and verify elements back to base or be stopped at this exact chain element\n * @param {boolean?} options.followToHead (default=true) boolean flag to indicate that autchain building should progress to head or be stopped at this exact chain element\n * @param {ElectrumRawTransaction?} options.rawTx cached raw transaction obtained previously, spares a Fulcrum call\n * @param {TxI[]?} options.historyCache cached address history to be reused if authchain building proceeds with the same address, spares a flurry of Fulcrum calls\n *\n * @returns {AuthChain} returns the resolved authchain\n */\n static async buildAuthChain(options) {\n if (options.network === undefined) {\n options.network = _interface_js__WEBPACK_IMPORTED_MODULE_4__.Network.MAINNET;\n }\n if (options.followToHead === undefined) {\n options.followToHead = true;\n }\n if (options.resolveBase === undefined) {\n options.resolveBase = false;\n }\n const provider = (await (0,_network_Connection_js__WEBPACK_IMPORTED_MODULE_5__.initProvider)(options.network));\n if (options.rawTx === undefined) {\n options.rawTx = await provider.getRawTransactionObject(options.transactionHash);\n }\n // figure out the autchain by moving towards authhead\n const getAuthChainChild = async () => {\n const history = options.historyCache ||\n (await provider.getHistory(options.rawTx.vout[0].scriptPubKey.addresses[0]));\n const thisTx = history.find((val) => val.tx_hash === options.transactionHash);\n let filteredHistory = history.filter((val) => val.height > 0\n ? val.height >= thisTx.height || val.height <= 0\n : val.height <= 0 && val.tx_hash !== thisTx.tx_hash);\n for (const historyTx of filteredHistory) {\n const historyRawTx = await provider.getRawTransactionObject(historyTx.tx_hash);\n const authChainVin = historyRawTx.vin.find((val) => val.txid === options.transactionHash && val.vout === 0);\n // if we've found continuation of authchain, we shall recurse into it\n if (authChainVin) {\n // reuse queried address history if the next element in chain is the same address\n const historyCache = options.rawTx.vout[0].scriptPubKey.addresses[0] ===\n historyRawTx.vout[0].scriptPubKey.addresses[0]\n ? filteredHistory\n : undefined;\n // combine the authchain element with the rest obtained\n return { rawTx: historyRawTx, historyCache };\n }\n }\n return undefined;\n };\n // make authchain element and combine with the rest obtained\n let element;\n try {\n element = BCMR.makeAuthChainElement(options.rawTx, options.rawTx.hash);\n }\n catch (error) {\n // special case for cashtoken authchain lookup by categoryId - allow to fail first lookup and inspect the genesis transaction\n // follow authchain to head and look for BCMR outputs\n const child = await getAuthChainChild();\n if (child) {\n return await BCMR.buildAuthChain({\n ...options,\n transactionHash: child.rawTx.hash,\n rawTx: child.rawTx,\n historyCache: child.historyCache,\n });\n }\n else {\n throw error;\n }\n }\n let chainBase = [];\n if (options.resolveBase) {\n // check for accelerated path if \"authchain\" extension is in registry\n const registry = await this.fetchMetadataRegistry(element.httpsUrl, element.contentHash);\n if (registry.extensions &&\n registry.extensions[\"authchain\"] &&\n Object.keys(registry.extensions[\"authchain\"]).length) {\n const chainTxArray = Object.values(registry.extensions[\"authchain\"]);\n chainBase = chainTxArray\n .map((tx) => {\n const transactionBin = (0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_0__.hexToBin)(tx);\n const decoded = (0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_6__.decodeTransaction)(transactionBin);\n if (typeof decoded === \"string\") {\n throw new Error(`Error decoding transaction ${JSON.stringify(tx)}, ${decoded}`);\n }\n const hash = (0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_0__.binToHex)(_bitauth_libauth__WEBPACK_IMPORTED_MODULE_1__.sha256.hash(_bitauth_libauth__WEBPACK_IMPORTED_MODULE_1__.sha256.hash(transactionBin)).reverse());\n return { decoded, hash };\n })\n .map(({ decoded, hash }) => BCMR.makeAuthChainElement(decoded, hash));\n }\n else {\n // simply go back in history towards authhead\n let stop = false;\n let tx = { ...options.rawTx };\n let maxElements = 10;\n while (stop == false || maxElements === 0) {\n const vin = tx.vin.find((val) => val.vout === 0);\n tx = await provider.getRawTransactionObject(vin.txid);\n try {\n const pastElement = BCMR.makeAuthChainElement(tx, tx.hash);\n chainBase.unshift(pastElement);\n maxElements--;\n }\n catch {\n stop = true;\n }\n }\n }\n }\n // if we follow to head, we need to locate the next transaction spending our 0th output\n // and repeat the building process recursively\n if (options.followToHead) {\n const child = await getAuthChainChild();\n if (child) {\n const chainHead = await BCMR.buildAuthChain({\n transactionHash: child.rawTx.hash,\n network: options.network,\n rawTx: child.rawTx,\n historyCache: child.historyCache,\n followToHead: options.followToHead,\n resolveBase: false,\n });\n // combine the authchain element with the rest obtained\n return [...chainBase, element, ...chainHead].filter((val) => val.httpsUrl.length);\n }\n }\n // return the last chain element (or the only found in an edge case)\n return [...chainBase, element].filter((val) => val.httpsUrl.length);\n }\n /**\n * fetchAuthChainFromChaingraph Fetch the authchain information from a trusted external indexer\n * The authchain in this implementation is specific to resolve to a valid metadata registry\n *\n * @param {string} options.chaingraphUrl (required) URL of a chaingraph indexer instance to fetch info from\n * @param {string} options.transactionHash (required) transaction hash from which to build the auth chain\n * @param {string?} options.network (default=undefined) network to query the data from, specific to the queried instance,\n * can be 'mainnet', 'chipnet', or anything else.\n * if left undefined all chaingraph transactions will be looked at, disregarding the chain\n *\n * @returns {AuthChain} returns the resolved authchain\n */\n static async fetchAuthChainFromChaingraph(options) {\n if (!options.chaingraphUrl) {\n throw new Error(\"Provide `chaingraphUrl` param.\");\n }\n const response = await fetch(options.chaingraphUrl, {\n method: \"POST\",\n headers: {\n Accept: \"*/*\",\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n operationName: null,\n variables: {},\n query: `\n{\n transaction(\n where: {\n hash:{_eq:\"\\\\\\\\x${options.transactionHash}\"}\n }\n ) {\n hash\n authchains {\n authchain_length\n migrations(\n where: {\n transaction: {\n outputs: { locking_bytecode_pattern: { _like: \"6a04%\" } }\n }\n }\n ) {\n transaction {\n hash\n inputs(where:{ outpoint_index: { _eq:\"0\" } }){\n outpoint_index\n }\n outputs(where: { locking_bytecode_pattern: { _like: \"6a04%\" } }) {\n output_index\n locking_bytecode\n }\n }\n }\n }\n }\n}`,\n }),\n });\n const responseData = await response.json();\n const result = [];\n const migrations = responseData.data.transaction[0]?.authchains[0].migrations;\n if (!migrations) {\n return result;\n }\n for (const migration of migrations) {\n const transaction = migration.transaction[0];\n if (!transaction) {\n continue;\n }\n transaction.inputs.forEach((input) => (input.outpointIndex = Number(input.outpoint_index)));\n transaction.outputs.forEach((output) => {\n output.outputIndex = Number(output.output_index);\n output.lockingBytecode = (0,_bitauth_libauth__WEBPACK_IMPORTED_MODULE_0__.hexToBin)(output.locking_bytecode.replace(\"\\\\x\", \"\"));\n });\n const txHash = transaction.hash.replace(\"\\\\x\", \"\");\n result.push(BCMR.makeAuthChainElement(transaction, txHash));\n }\n return result.filter((element) => element.contentHash.length && element.httpsUrl.length);\n }\n /**\n * addMetadataRegistryAuthChain Add BCMR metadata registry by resolving an authchain\n *\n * @param {string} options.transactionHash (required) transaction hash from which to build the auth chain\n * @param {Network?} options.network (default=mainnet) network to query the data from\n * @param {boolean?} options.followToHead (default=true) boolean flag to indicate that autchain building should progress to head (most recent registry version) or be stopped at this exact chain element\n * @param {ElectrumRawTransaction?} options.rawTx cached raw transaction obtained previously, spares a Fulcrum call\n *\n * @returns {AuthChain} returns the resolved authchain\n */\n static async addMetadataRegistryAuthChain(options) {\n const authChain = await this.buildAuthChain({\n ...options,\n resolveBase: false,\n });\n if (!authChain.length) {\n throw new Error(`There were no BCMR entries in the resolved authchain ${JSON.stringify(authChain, null, 2)}`);\n }\n const registry = await this.fetchMetadataRegistry(authChain.reverse()[0].httpsUrl);\n this.addMetadataRegistry(registry);\n return authChain;\n }\n /**\n * getTokenInfo Return the token info (or the identity snapshot as per spec)\n *\n * @param {string} tokenId token id to look up\n *\n * @returns {IdentitySnapshot?} return the info for the token found, otherwise undefined\n */\n static getTokenInfo(tokenId) {\n for (const registry of this.metadataRegistries.slice().reverse()) {\n const history = registry.identities?.[tokenId];\n if (!history) {\n continue;\n }\n const latestIdentityIndex = Object.keys(history)[0];\n if (latestIdentityIndex === undefined) {\n continue;\n }\n return history[latestIdentityIndex];\n }\n return undefined;\n }\n}\n// List of tracked registries\nBCMR.metadataRegistries = [];\n\n__webpack_async_result__();\n} catch(e) { __webpack_async_result__(e); } });\n\n//# sourceURL=webpack://mainnet-js/./src/wallet/Bcmr.ts?");
|
|
1118
1118
|
|
|
1119
1119
|
/***/ }),
|
|
1120
1120
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Bcmr.d.ts","sourceRoot":"","sources":["../../../src/wallet/Bcmr.ts"],"names":[],"mappings":"AAAA,OAAO,EAML,WAAW,EAEZ,MAAM,kBAAkB,CAAC;AAC1B,OAAO,EAAE,OAAO,EAAE,GAAG,EAAE,MAAM,iBAAiB,CAAC;AAE/C,OAAO,EAAE,sBAAsB,EAAE,MAAM,yBAAyB,CAAC;AACjE,OAAO,EAAE,gBAAgB,EAAE,QAAQ,EAAE,MAAM,qBAAqB,CAAC;AAIjE,MAAM,WAAW,gBAAgB;IAC/B,MAAM,EAAE,MAAM,CAAC;IACf,WAAW,EAAE,MAAM,CAAC;IACpB,IAAI,EAAE,MAAM,EAAE,CAAC;IACf,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED,oBAAY,SAAS,GAAG,gBAAgB,EAAE,CAAC;AAG3C,qBAAa,IAAI;IAEf,OAAc,kBAAkB,EAAE,QAAQ,EAAE,CAAM;WAEpC,aAAa,IAAI,QAAQ,EAAE;WAI3B,eAAe,IAAI,IAAI;IAIrC;;;;;;;;;OASG;WACiB,qBAAqB,CACvC,GAAG,EAAE,MAAM,EACX,WAAW,CAAC,EAAE,MAAM,GACnB,OAAO,CAAC,QAAQ,CAAC;IA0BpB;;;;;OAKG;WACW,mBAAmB,CAAC,QAAQ,EAAE,QAAQ,GAAG,IAAI;IAW3D;;;;;;;;OAQG;WACiB,0BAA0B,CAC5C,GAAG,EAAE,MAAM,EACX,WAAW,CAAC,EAAE,MAAM,GACnB,OAAO,CAAC,IAAI,CAAC;WAOF,oBAAoB,CAChC,KAAK,EAAE,sBAAsB,GAAG,WAAW,EAC3C,IAAI,EAAE,MAAM,GACX,gBAAgB;IAqGnB;;;;;;;;;;;;OAYG;WACiB,cAAc,CAAC,OAAO,EAAE;QAC1C,eAAe,EAAE,MAAM,CAAC;QACxB,OAAO,CAAC,EAAE,OAAO,CAAC;QAClB,WAAW,CAAC,EAAE,OAAO,CAAC;QACtB,YAAY,CAAC,EAAE,OAAO,CAAC;QACvB,KAAK,CAAC,EAAE,sBAAsB,CAAC;QAC/B,YAAY,CAAC,EAAE,GAAG,EAAE,CAAC;KACtB,GAAG,OAAO,CAAC,SAAS,CAAC;IA6JtB;;;;;;;;;;;OAWG;WACiB,4BAA4B,CAAC,OAAO,EAAE;QACxD,aAAa,EAAE,MAAM,CAAC;QACtB,eAAe,EAAE,MAAM,CAAC;QACxB,OAAO,CAAC,EAAE,MAAM,CAAC;KAClB,GAAG,OAAO,CAAC,SAAS,CAAC;
|
|
1
|
+
{"version":3,"file":"Bcmr.d.ts","sourceRoot":"","sources":["../../../src/wallet/Bcmr.ts"],"names":[],"mappings":"AAAA,OAAO,EAML,WAAW,EAEZ,MAAM,kBAAkB,CAAC;AAC1B,OAAO,EAAE,OAAO,EAAE,GAAG,EAAE,MAAM,iBAAiB,CAAC;AAE/C,OAAO,EAAE,sBAAsB,EAAE,MAAM,yBAAyB,CAAC;AACjE,OAAO,EAAE,gBAAgB,EAAE,QAAQ,EAAE,MAAM,qBAAqB,CAAC;AAIjE,MAAM,WAAW,gBAAgB;IAC/B,MAAM,EAAE,MAAM,CAAC;IACf,WAAW,EAAE,MAAM,CAAC;IACpB,IAAI,EAAE,MAAM,EAAE,CAAC;IACf,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED,oBAAY,SAAS,GAAG,gBAAgB,EAAE,CAAC;AAG3C,qBAAa,IAAI;IAEf,OAAc,kBAAkB,EAAE,QAAQ,EAAE,CAAM;WAEpC,aAAa,IAAI,QAAQ,EAAE;WAI3B,eAAe,IAAI,IAAI;IAIrC;;;;;;;;;OASG;WACiB,qBAAqB,CACvC,GAAG,EAAE,MAAM,EACX,WAAW,CAAC,EAAE,MAAM,GACnB,OAAO,CAAC,QAAQ,CAAC;IA0BpB;;;;;OAKG;WACW,mBAAmB,CAAC,QAAQ,EAAE,QAAQ,GAAG,IAAI;IAW3D;;;;;;;;OAQG;WACiB,0BAA0B,CAC5C,GAAG,EAAE,MAAM,EACX,WAAW,CAAC,EAAE,MAAM,GACnB,OAAO,CAAC,IAAI,CAAC;WAOF,oBAAoB,CAChC,KAAK,EAAE,sBAAsB,GAAG,WAAW,EAC3C,IAAI,EAAE,MAAM,GACX,gBAAgB;IAqGnB;;;;;;;;;;;;OAYG;WACiB,cAAc,CAAC,OAAO,EAAE;QAC1C,eAAe,EAAE,MAAM,CAAC;QACxB,OAAO,CAAC,EAAE,OAAO,CAAC;QAClB,WAAW,CAAC,EAAE,OAAO,CAAC;QACtB,YAAY,CAAC,EAAE,OAAO,CAAC;QACvB,KAAK,CAAC,EAAE,sBAAsB,CAAC;QAC/B,YAAY,CAAC,EAAE,GAAG,EAAE,CAAC;KACtB,GAAG,OAAO,CAAC,SAAS,CAAC;IA6JtB;;;;;;;;;;;OAWG;WACiB,4BAA4B,CAAC,OAAO,EAAE;QACxD,aAAa,EAAE,MAAM,CAAC;QACtB,eAAe,EAAE,MAAM,CAAC;QACxB,OAAO,CAAC,EAAE,MAAM,CAAC;KAClB,GAAG,OAAO,CAAC,SAAS,CAAC;IAkFtB;;;;;;;;;OASG;WACiB,4BAA4B,CAAC,OAAO,EAAE;QACxD,eAAe,EAAE,MAAM,CAAC;QACxB,OAAO,CAAC,EAAE,OAAO,CAAC;QAClB,YAAY,CAAC,EAAE,OAAO,CAAC;QACvB,KAAK,CAAC,EAAE,sBAAsB,CAAC;KAChC,GAAG,OAAO,CAAC,SAAS,CAAC;IAwBtB;;;;;;OAMG;WACW,YAAY,CAAC,OAAO,EAAE,MAAM,GAAG,gBAAgB,GAAG,SAAS;CAgB1E"}
|
|
@@ -313,10 +313,7 @@ export class BCMR {
|
|
|
313
313
|
{
|
|
314
314
|
transaction(
|
|
315
315
|
where: {
|
|
316
|
-
hash:{_eq:"\\\\x${options.transactionHash}"}
|
|
317
|
-
${options.network
|
|
318
|
-
? `node_validation_timeline:{node:{name:{_ilike:"%${options.network}%"}}}`
|
|
319
|
-
: ""}
|
|
316
|
+
hash:{_eq:"\\\\x${options.transactionHash}"}
|
|
320
317
|
}
|
|
321
318
|
) {
|
|
322
319
|
hash
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Bcmr.js","sourceRoot":"","sources":["../../../src/wallet/Bcmr.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"Bcmr.js","sourceRoot":"","sources":["../../../src/wallet/Bcmr.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.webworker.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../src/chain.ts","../../../node_modules/@bitauth/libauth/build/lib/address/base58-address.d.ts","../../../node_modules/@bitauth/libauth/build/lib/address/bech32.d.ts","../../../node_modules/@bitauth/libauth/build/lib/address/cash-address.d.ts","../../../node_modules/@bitauth/libauth/build/lib/address/locking-bytecode.d.ts","../../../node_modules/@bitauth/libauth/build/lib/address/address.d.ts","../../../node_modules/@bitauth/libauth/build/lib/bin/hashes.d.ts","../../../node_modules/@bitauth/libauth/build/lib/bin/ripemd160/ripemd160.base64.d.ts","../../../node_modules/@bitauth/libauth/build/lib/bin/secp256k1/secp256k1-wasm-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/bin/secp256k1/secp256k1-wasm.d.ts","../../../node_modules/@bitauth/libauth/build/lib/bin/sha1/sha1.base64.d.ts","../../../node_modules/@bitauth/libauth/build/lib/bin/sha256/sha256.base64.d.ts","../../../node_modules/@bitauth/libauth/build/lib/bin/sha512/sha512.base64.d.ts","../../../node_modules/@bitauth/libauth/build/lib/bin/bin.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/combinations.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/sha1.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/sha256.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/sha512.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/ripemd160.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/secp256k1-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/default-crypto-instances.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/hmac.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/secp256k1.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/crypto.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/base-convert.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/base64.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/bin-string.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/error.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/hex.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/log.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/number.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/read.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/time.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/type-utils.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/utf8.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/format.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/hd-key.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/key-utils.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/wallet-import-format.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/key.d.ts","../../../node_modules/@bitauth/libauth/build/lib/language/compile.d.ts","../../../node_modules/@bitauth/libauth/build/lib/language/language-utils.d.ts","../../../node_modules/@bitauth/libauth/build/lib/language/language-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/language/parse.d.ts","../../../node_modules/@bitauth/libauth/build/lib/language/reduce.d.ts","../../../node_modules/@bitauth/libauth/build/lib/language/resolve.d.ts","../../../node_modules/@bitauth/libauth/build/lib/language/language.d.ts","../../../node_modules/@bitauth/libauth/build/lib/message/read-components.d.ts","../../../node_modules/@bitauth/libauth/build/lib/message/transaction-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/message/transaction-encoding.d.ts","../../../node_modules/@bitauth/libauth/build/lib/message/message.d.ts","../../../node_modules/@bitauth/libauth/build/lib/schema/authentication-template.d.ts","../../../node_modules/@bitauth/libauth/build/lib/schema/schema.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/compiler-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/compiler-bch/compiler-bch.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/compiler-defaults.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/compiler-operation-helpers.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/compiler-operations.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/compiler-utils.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/scenarios.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/p2pkh-utils.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/standard/p2pkh.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/standard/standard.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/template-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/compiler.d.ts","../../../node_modules/@bitauth/libauth/build/lib/transaction/generate-transaction.d.ts","../../../node_modules/@bitauth/libauth/build/lib/transaction/transaction.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec-descriptions.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec-instruction-set.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec-opcodes.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/virtual-machine.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/vm-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec-vm.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/fixtures/satoshi-client/bitcoin-satoshi-utils.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2022/bch-2022-descriptions.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2022/bch-2022-errors.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2022/bch-2022-instruction-set.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2022/bch-2022-opcodes.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2022/bch-2022-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2022/bch-2022-vm.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2022/bch-2022.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/signing-serialization.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-consensus.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-crypto.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-descriptions.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-errors.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-instruction-set.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-opcodes.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-tokens.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-vm.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/chips/bch-chips-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/chips/bch-chips-crypto.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/chips/bch-chips-descriptions.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/chips/bch-chips-errors.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/chips/bch-chips-instruction-set.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/arithmetic.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/bitwise.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/consensus.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/combinators.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/common-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/crypto.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/encoding.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/errors.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/flow-control.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/format.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/inspection.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/instruction-sets-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/instruction-sets-utils.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/nop.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/push.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/stack.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/time.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/common.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/chips/bch-chips-loops.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/chips/bch-chips-opcodes.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/chips/bch-chips-vm.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/chips/bch-chips.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/btc/btc-descriptions.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/btc/btc-opcodes.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/btc/btc-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/btc/btc.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/instruction-sets.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/vm.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vmb-tests/bch-vmb-test-utils.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vmb-tests/vmb-tests.d.ts","../../../node_modules/@bitauth/libauth/build/lib/lib.d.ts","../../../node_modules/@bitauth/libauth/build/index.d.ts","../../../node_modules/@types/node/ts4.8/assert.d.ts","../../../node_modules/@types/node/ts4.8/assert/strict.d.ts","../../../node_modules/@types/node/ts4.8/globals.d.ts","../../../node_modules/@types/node/ts4.8/async_hooks.d.ts","../../../node_modules/@types/node/ts4.8/buffer.d.ts","../../../node_modules/@types/node/ts4.8/child_process.d.ts","../../../node_modules/@types/node/ts4.8/cluster.d.ts","../../../node_modules/@types/node/ts4.8/console.d.ts","../../../node_modules/@types/node/ts4.8/constants.d.ts","../../../node_modules/@types/node/ts4.8/crypto.d.ts","../../../node_modules/@types/node/ts4.8/dgram.d.ts","../../../node_modules/@types/node/ts4.8/diagnostics_channel.d.ts","../../../node_modules/@types/node/ts4.8/dns.d.ts","../../../node_modules/@types/node/ts4.8/dns/promises.d.ts","../../../node_modules/@types/node/ts4.8/domain.d.ts","../../../node_modules/@types/node/ts4.8/dom-events.d.ts","../../../node_modules/@types/node/ts4.8/events.d.ts","../../../node_modules/@types/node/ts4.8/fs.d.ts","../../../node_modules/@types/node/ts4.8/fs/promises.d.ts","../../../node_modules/@types/node/ts4.8/http.d.ts","../../../node_modules/@types/node/ts4.8/http2.d.ts","../../../node_modules/@types/node/ts4.8/https.d.ts","../../../node_modules/@types/node/ts4.8/inspector.d.ts","../../../node_modules/@types/node/ts4.8/module.d.ts","../../../node_modules/@types/node/ts4.8/net.d.ts","../../../node_modules/@types/node/ts4.8/os.d.ts","../../../node_modules/@types/node/ts4.8/path.d.ts","../../../node_modules/@types/node/ts4.8/perf_hooks.d.ts","../../../node_modules/@types/node/ts4.8/process.d.ts","../../../node_modules/@types/node/ts4.8/punycode.d.ts","../../../node_modules/@types/node/ts4.8/querystring.d.ts","../../../node_modules/@types/node/ts4.8/readline.d.ts","../../../node_modules/@types/node/ts4.8/readline/promises.d.ts","../../../node_modules/@types/node/ts4.8/repl.d.ts","../../../node_modules/@types/node/ts4.8/stream.d.ts","../../../node_modules/@types/node/ts4.8/stream/promises.d.ts","../../../node_modules/@types/node/ts4.8/stream/consumers.d.ts","../../../node_modules/@types/node/ts4.8/stream/web.d.ts","../../../node_modules/@types/node/ts4.8/string_decoder.d.ts","../../../node_modules/@types/node/ts4.8/test.d.ts","../../../node_modules/@types/node/ts4.8/timers.d.ts","../../../node_modules/@types/node/ts4.8/timers/promises.d.ts","../../../node_modules/@types/node/ts4.8/tls.d.ts","../../../node_modules/@types/node/ts4.8/trace_events.d.ts","../../../node_modules/@types/node/ts4.8/tty.d.ts","../../../node_modules/@types/node/ts4.8/url.d.ts","../../../node_modules/@types/node/ts4.8/util.d.ts","../../../node_modules/@types/node/ts4.8/v8.d.ts","../../../node_modules/@types/node/ts4.8/vm.d.ts","../../../node_modules/@types/node/ts4.8/wasi.d.ts","../../../node_modules/@types/node/ts4.8/worker_threads.d.ts","../../../node_modules/@types/node/ts4.8/zlib.d.ts","../../../node_modules/@types/node/ts4.8/globals.global.d.ts","../../../node_modules/@types/node/ts4.8/index.d.ts","../../../node_modules/bip39/types/_wordlists.d.ts","../../../node_modules/bip39/types/index.d.ts","../src/enum.ts","../src/interface.ts","../src/wallet/enum.ts","../src/qr/interface.ts","../../../node_modules/@types/ws/index.d.ts","../../../node_modules/isomorphic-ws/index.d.ts","../../../node_modules/async-mutex/lib/MutexInterface.d.ts","../../../node_modules/async-mutex/lib/Mutex.d.ts","../../../node_modules/async-mutex/lib/SemaphoreInterface.d.ts","../../../node_modules/async-mutex/lib/Semaphore.d.ts","../../../node_modules/async-mutex/lib/withTimeout.d.ts","../../../node_modules/async-mutex/lib/tryAcquire.d.ts","../../../node_modules/async-mutex/lib/errors.d.ts","../../../node_modules/async-mutex/lib/index.d.ts","../../../node_modules/electrum-cash/dist/index.d.ts","../src/network/interface.ts","../src/util/floor.ts","../src/constant.ts","../src/util/getRuntimePlatform.ts","../src/db/interface.ts","../src/db/ExchangeRateProvider.ts","../src/rate/ExchangeRate.ts","../src/util/sanitizeUnit.ts","../src/util/balanceObjectFromSatoshi.ts","../src/wallet/interface.ts","../src/db/StorageProvider.ts","../src/db/index.ts","../src/util/base64.ts","../src/qr/Qr.ts","../src/wallet/Base.ts","../src/config.ts","../src/util/hash160.ts","../src/util/deriveCashaddr.ts","../src/wallet/model.ts","../src/transaction/allocateFee.ts","../src/util/amountInSatoshi.ts","../src/util/sumSendRequestAmounts.ts","../src/util/sumUtxoValue.ts","../src/transaction/Wif.ts","../src/util/asSendRequestObject.ts","../src/util/checkWifNetwork.ts","../src/util/derivePublicKeyHash.ts","../src/util/checkForEmptySeed.ts","../src/network/constant.ts","../src/network/NetworkProvider.ts","../src/network/getRelayFeeCache.ts","../src/util/transaction.ts","../src/wallet/Util.ts","../src/util/delay.ts","../src/network/ElectrumNetworkProvider.ts","../src/util/satoshiToAmount.ts","../src/util/convert.ts","../src/util/deriveNetwork.ts","../src/util/getAddrsByXpubKey.ts","../src/util/getUsdRate.ts","../src/util/sanitizeAddress.ts","../src/util/randomInt.ts","../src/util/getXPubKey.ts","../src/util/randomValues.ts","../src/util/index.ts","../src/network/configuration.ts","../src/network/util.ts","../src/network/default.ts","../src/network/Connection.ts","../src/network/index.ts","../src/util/randomBytes.ts","../src/message/interface.ts","../src/message/signed.ts","../src/message/index.ts","../src/history/interface.ts","../src/history/electrumTransformer.ts","../src/wallet/bcmr-v2.schema.ts","../src/wallet/Bcmr.ts","../src/util/checkUtxos.ts","../src/wallet/Wif.ts","../src/wallet/createWallet.ts","../src/cli.ts","../src/test/fetch.ts","../src/test/expect.ts","../src/util/browserNotSupported.ts","../src/mine/mine.ts","../src/mine/index.ts","../src/libauth.ts","../src/index.ts","../src/util/deriveLockscript.ts","../src/util/eventsource.ts","../../../node_modules/@types/jest/node_modules/@jest/expect-utils/build/index.d.ts","../../../node_modules/@types/jest/node_modules/chalk/index.d.ts","../../../node_modules/@types/jest/node_modules/@sinclair/typebox/typebox.d.ts","../../../node_modules/@types/jest/node_modules/@jest/schemas/build/index.d.ts","../../../node_modules/@types/jest/node_modules/pretty-format/build/index.d.ts","../../../node_modules/@types/jest/node_modules/jest-diff/build/index.d.ts","../../../node_modules/@types/jest/node_modules/jest-matcher-utils/build/index.d.ts","../../../node_modules/@types/jest/node_modules/expect/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts"],"fileInfos":[{"version":"aa9fb4c70f369237c2f45f9d969c9a59e0eae9a192962eb48581fe864aa609db","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"e54c8715a4954cfdc66cd69489f2b725c09ebf37492dbd91cff0a1688b1159e8","affectsGlobalScope":true},{"version":"28ab3a152fefb456d9ca44de158f3239ca0d03c1a4db6d645c51b837f1f9ee02","affectsGlobalScope":true},{"version":"51b8b27c21c066bf877646e320bf6a722b80d1ade65e686923cd9d4494aef1ca","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"2c8c5ee58f30e7c944e04ab1fb5506fdbb4dd507c9efa6972cf4b91cec90c503","affectsGlobalScope":true},{"version":"2bb4b3927299434052b37851a47bf5c39764f2ba88a888a107b32262e9292b7c","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"93544ca2f26a48716c1b6c5091842cad63129daac422dfa4bc52460465f22bb1","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"7435b75fdf3509622e79622dbe5091cf4b09688410ee2034e4fc17d0c99d0862","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"9f1817f7c3f02f6d56e0f403b927e90bb133f371dcebc36fa7d6d208ef6899da","affectsGlobalScope":true},{"version":"4632665b87204bb1caa8b44d165bce0c50dfab177df5b561b345a567cabacf9a","affectsGlobalScope":true},"3b9e1093810740229d6e7192880c5f29a0aa676f1886d57ffba1d4286c3592f6","f9f790e57d3e54a951f58ef7847a0761433c8fc020ba56181e0a0b1cb3edfac3","9d7c06936c2b731734059e575cf7930aa028487722593fb176f4d64de9fdfb8c","5afea36bfebe56bd19e43900b94fda8c5ac31409de197832ae006c0120d54122","5dd455bedf7b5f7a5d8ccc17323761ac73ab5a93a7af0a595297b90c33bd9d8e","95ab2fe99faa3e25ff8eb9408451730506d4686dce877a96db073f62f9368932","685f0aa21c1d14d184fbaf5327c390c465d26a0a08e64975764f2b073601bd76","9a18b997370e8442ed2fe2e7e60180f21d2a3e46e45f443784709eec8284f2e4","31ed1f61639da39a41255b3608ebada3c6101ae1bd07ecf67d61605bab1c2c7f","3c863e6ccce69483eedb3d505701a957c51af40859c7b19a4558836b1321a892","a3cc420b6dbdfc0245da4e0d837c339c3f9b6bed2efaa2e26dd8bbe4060cef41","6857d9f06f38c5a8d5bf2a0e8326b978b4876031a3c1f47665876c3daa94522d","a240ea9a3333d3630ce06bf128d796a233df1147bb3cbda86a2b74a584e7f6ea","4419778f6c54c431a8156c7de194ebb9e0876709a8cfc12d40502b0dd1019244","3c2e9fd191f39682dd1c5a8bf30ea2e639a12dcda5ef0f57f05c84f17a88bc4e","39541b2c269eff86c2792b6ca162e6fdc861d388e7d3d19f7831d9179c362d7c","20a4eb5bc4d45e0f1e5a0f40da4da7a850cb87098be0e65ea09313f9f38ca495","36b664ce956bec5150c15ea3763a4a5b0af8c305a10ec7a45d584885280cc893","34e612720139dfd4e4529140bb1fd41ac57dfeb9ac0760857d765211498729dd","f4123d3203f9caa925d3068da188cc867cafe29d4660456a9f322833fa0c80a2","ada1dc76e297e7fee41eb083b3a60fb54bd7e729ed68732a6ce5d0e88140dae1","b3876d5830d84c781ac4a7482c06887cfd90c3409af82fc29ec20375d38fb217","874f6101540444f6cb89a7d7447f664ee7c42f50e790ec1432cbbc14fd56159e","e3dd6f5b25d26f229efb106789189628ec8186cc28e3d58783426e18baff9c53","4fbc35a02a0687614b042fa52a46ac1ae7c1bfce68f0aaaad8b5a76a7777edf5","66fc3f87542bc556b590a4f4177c22490c117fc96eab69bda2e9e0c445eb5cc2","1293901b689c514fafaf7f9ff9eff109b25f32fdbf64bc7fe8da561d473d2091","bc82f26edea61e61473470eb7cbbe76b815cc27dcc6aa1b6d3fad86add81fc17","9b45c8fb886e1feee2bee6ff97b84bd10cda89f2b8cff54d27cda826d3609a72","9b15c2754d92c35fc53e42ba771e32b2038d8d72408f4704c8daab757043e4dc","294e7339aaee5e008a3e892318487b1970ceee107c1cd68a0f81533369b1430d","584a7cabf27eef35ca78f5c66e9606440faafdef157eec243c6c672f808dce00","a7920efa08217d3175420b88117e78fb8f2dfb1de498b3ec294048861675e07b","0aec829b11c3834d2fb9245945eb5549446f8e1c1ae94b0ab167e44bd7d438e4","15ac5424c6183bd167314972be53111b50fa3945c6f004ecae5aef42d1e03d76","428565fe14b2bb1e0780087739e6a568b102e449da66c2ba4ae8fb6293e7f06c","ea08b8cd81c90c218ba3f04cdb2e7c87ee8c427b4c544911095a9304dc5e9f52","e0713f909b03190f011a3d4266e7bdf0f313d6e5fc600d95638083380139663d","f7bdf7751b647cb56d24e19b46540812deb89163f43434d6b842377e1ba15279","0708c284b3603bfe7f7946709a8b62f1b81d987b7e301fd8fc5312d8d085abab","6f34c20edf7ec48f4db7cf4417d06e6a8f712ed7f38386c6b9c8243e5aecc4d0","aa1c6664820510d6009e5172f2c9b013f8d1c9bd94796eb66d5553c5ddfaeb1f","07b0c184ae96b59f4126a3ef4eced70ccb5462090c6a123921227b8fb7c1d2e0","5e6a8186fc4d3d31fb0c1ca5087e846378d3302f5905a8ccc2ab243ffa10f94b","5d08773a7f13c36508ce760c3517a8afab5c5a5f551ca39ad41683930bfda66c","9577c23d43c81fe2e66373ee377b5ed32e10f2774653dc2384c4cbc7ce329982","e312e6add715ec2e97e938409478d9017d6c91f4487ce6e4aa2709e60f67cd95","f1909b1623b22940bbb7be98cbfac6d24a34d0c510dde3df5564404064e3e7fd","02c03fc5fc14f75802bd70c8297d1e4a6f18dbcc02a1699591c9e4c0135c5de0","5a86e2cbfe51de88bdf32cebe82aa0ed049f6edba3a2c757312cab3c37f29ade","c2a227bd507cac7fdbdb2f5375e3b05f6f28f7e247244c52c81229942d5989aa","28aa20795a164add6b9e7443535f34939ea1e9c27719bfa0db96225881d47bbc","9e334139506c8742da707999ab4c169d4f04085288700d28419c439f38342ae1","680cbca33c1438c1f5de005564302ef57d679b54303d794663dceb180be4a0f0","2877475d53a76cf91e2336f8347a8fb00c9d1eac85a059058c5b027d74822960","f871d624e9cec46e63399c74deb15c183c50390d1e9755130717fef36396bf2d","6850411b8d4bf4c5f950fc182f17a58ebeea0173d0395591761b40904006c788","be150501ccabade2b0280d5be03c766f39381e51d5739e04f5656df4080e8487","fa81e6ab7fc27f43789b878e4bab158e12ff31748d6652724ef09e3053815c69","71f0af94667eb3d33e61a5f7e8d20c8259158871ba332ed370421c867fc8d64c","929cd9e3bae21fddffa7c5b813561e18ec6f3e88c02fa750313e709a7201ebc2","afd6e503a3873ec9c12e57ef614f3a87d57bd88301247498c45afd992a4b7b98","5e9004c2aba118299bcc17d5d115044512faa9bd814417e3239e8b53f83ff5d3","f67509d8eac18dd03a6598a9b428dcd09ef04487b31dd8226b5b2ba67588205c","387ba24cca9932007dfa86415d59e2ffc6ff6a35d5e0e1cde27f1ad01b91b9bf","7d24e31d9b3cb94992a45d71918940cfc0f04e1aab36acff1f1e88d825e95f45","29c97e978dd0682439d4109094dff72ec8707906786343f6ba6f6f82f9260f75","d2dec72e158cf166711a3009180d25ad363fe4cad0178020098aa5e08c4842e7","5e3f8d4b99733c1365ad9f07ba62f7604e6ede0bf94632e1710590fbf5503d0f","f5d8843fd8c6d4aacea9792e8c0ffb47e82c81523b65690fb7a21a76c19a2ae9","339f71322345c9caf86730e90e74a9cc865134cced1d9954b1ff7fbe0da98639","5929ad11c6a01e61924e690bc5da6030e6568e6a9afa22d2e3e9ffd6e5ff5da1","9fdbb2de7d996d633c1e8b15e81598cc03b78d189c502f508405e01065d150b2","76278ca7d48a20284bb7d2852ed2afbe46b47e621d51703499f9934193aacfd4","7560b7502c10ebdf0d07ae7f83567a25f0e18501541a761f5456039a75fdca34","a6d5464c400860c746d59538eeac8aba030bd286a30382cb35ffa180bb45360b","882c65b85e101318cb241a04d9f6098f40f81f60969dc23ed43eca93aa208756","9b9ab0f61e1a9d1544cce8f6a898a67fcb398e7a2916c8f7bff196aeacaa42a1","70c76a6057c1bc0bba81bbfe37dd4bfb5d3ec470779543cf4265bacc8bc34fde","7f45c53d713e44a39ce9715516a742401ec67ca64d28e89800a1087b413bea11","fce8fdfd2fad64fd92d00849d61517872d7ffe130683216530ed80aa87c0d4ed","9d04be61d449837d03f2f2c6cb45862e01ecf27f2d9e9e649381923ec2ef183d","e7ef7f20139a8e1107206b6ebca0aeaf5afc106fdcd3320f72d8fa1aa6b8b376","6e30db287568ec99d3f9a9f13a250b8713c08f7e80258b00525118983f75b0a4","d1b9f9d3112a2a61002f35217328c4f9d8c855c97a7bffb3c07064e5d75bcdb2","d92b44ee50805ae18826ccbb6626a8956d1ad4030776e9d8d6665ac4b25594c2","9dbb17d8dd416cd59de116f60c92da5cd5a330657e4b1288ae1667f64ac976ed","c383e01b0a485533eacc2ece74da9806d24c2b04d3a78c0e88bbc170a26e948b","1ae78536a74e399118a613e2733285b11dc319385b205b91be0a2e3191fe2254","84f19808fafe26e154c513ae796980485e314327069d04239b4e3241adf5ff97","17f12aca109be03c5bdf67e1c7071c0ca86066806f373efe1706a6fbc760b705","fbbe6400d3c632bd8ec78c6c2e52f9f12a5730f1239850360b57c437af85efce","b84133cb67d1fef4258fb16730f559491d5d461a9846179f064b976eca2450f9","a4f479167a2b60f44d277e0e95ac7406391a32871d452c952963833288161e34","8db5ba8ae3754a488df8a62b76c8eade022c7931b4603f21f8691a7aa44e08cb","ae4ab429f512d21fb3ed429b3ca544a3568790f24a5450a9e1533b1b610ef26e","d3fda3824d4c8d8d37be73e0429c11a3521739a542b075ed44adb322fddcd7a6","811bf83a1de5e46170eab4fae912a4d33cc7a4f783a20b1e28d4c82bb75de9b7","0783408c38ff652538a7a6dd5a86121b88412589375480fa572d042c17ae0186","4dbbe40419e9749d380d28e2f25a1f806c5a7a405aa0308a178d750464b79dd7","9ff98cf113c2e37f217778541e2fdb9c2be84388a1d270eaa902c9aae61d7212","7e547303b50679bb7c97614c0040f2996d4e201b1e9ad7f19e10c0b59fc81c49","e50a6ce0708ba6bbe0907c3604aa1b461dbfc4f1960f7d29b7c3f6dbb7ecfa38","77e86cbec6fbdbc4c06163499aa24b76925613a174600cd0e14744712c1ffa71","beac06589b709b31baeaeb90f771868216b57549407a4a71abc1d858bc7ed9d8","de02780fe1506e22f50235523d193dea6689d947a356433eca7df4f4356d4476","33f9ba19058820c381b3ee185014b0014f73c692e00615afce686084af7195c6","8e1b0ebe06b33c85e728f3efa21804bfe177b25446da845c7ba2c91990e50ba4","91d0e80aae82040fc4d320d415f7118cc304bfd4e81fc20cd435921bd12913d0","bc492678c5eaa9363984d6c66b787720ced87d01882c702b040ce5b58cfc325f","84f688f194236138f32c258dc6fa571dbeeb80d5b0fce573fd91e325b13e846e","9f1fe22bca3d154b2eeb89900eeb6e35106e15a6e2bf53cd1fb00c024c002324","30c0316a4f23ab0b7f58fc049117d2ab4cc34e1d5b716ec13819a6d6e6537fb4","c6b147e0c606a69c2ca70917679f98e4cd2f52762c183a12c70d146f2c20a873","e9d90b998bf4224d53354910a8b649b26d96fdde74bfd860da416d6cc0a47afd","3d5839dcc56fa931ef88d454b74e117800c8b9e6c70dd5ccf61dd0dcb76fb187","d88cf5d04730fed67895c3aa49431184a184391a969cca50417edc68c37bd348","b2cfcb267f3ad6d48aa0b9c7a1146f63984f5ea1cd8dd63527eaf1738c713fca","45c971b451ed5d9aa8d2bb3cf052e74f1d5af0e644aa419d46008e2909c1c1d8","dbdcd6590670ad0392ddcdb9ddcd53eb9e3e4c5db174e6a03355609e29ea690e","5f439f9b428b4819042db3c9cd2ebc1d01227821c75c0d8416456781635996d5","89a092a002b46691edb0ac7b0d2785a1f2536547a98b06805a0ea8f7149e192c","3e827bec7f0ff866a5ea09daaa116c115157cdc536a24e698f190de52e322c93","c0c81406c104bf1aecd935b2947171b283ff3b153d539193b3151d54ecbed1b2","ffeebf5bab849797873e4a1e203f15c8a9ca1ef9ffff26b9cd7441d4ea19041c","490e36ecada1b2924a08a79137a30a4180ba888a4ad0099e0525ca80dd5c3502","63ed116bb4b5070309de7daa1a3b111d4ea67e485258ed82806130e59df74421","1d4dd1f50665186141bb602fd5a627f3d54343666f34c6eb6fec33cb8c906700","88879e7ee08b5a1b91368a17bb94e40526de99c36ab6d59a9e9f4beb7e571425","9ef9b3e43e4c3c092943fa1792c867fc4fee2bd1bbe54e6e91d6ce8bcccb0dd0","7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"02873d070f9cb79f50833fbf4a9a27ac578a2edf8ddb8421eba1b37faba83bfb","affectsGlobalScope":true},"21a167fec8f933752fb8157f06d28fab6817af3ad9b0bdb1908a10762391eab9",{"version":"c0db280fa6b09d7b8d6720a19a47f485956a41ee0e6914f1b704033eb69c6058","affectsGlobalScope":true},"0c0cee62cb619aed81133b904f644515ba3064487002a7da83fd8aa07b1b4abd","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","afcc1c426b76db7ec80e563d4fb0ba9e6bcc6e63c2d7e9342e649dc56d26347f","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","75ecef44f126e2ae018b4abbd85b6e8a2e2ba1638ebec56cc64274643ce3567b","f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true},"cec36af22f514322f870e81d30675c78df82ae8bf4863f5fd4e4424c040c678d","d903fafe96674bc0b2ac38a5be4a8fc07b14c2548d1cdb165a80ea24c44c0c54","b01a80007e448d035a16c74b5c95a5405b2e81b12fabcf18b75aa9eb9ef28990","04eb6578a588d6a46f50299b55f30e3a04ef27d0c5a46c57d8fcc211cd530faa","dbe5aa5a5dd8bd1c6a8d11b1310c3f0cdabaacc78a37b394a8c7b14faeb5fb84","2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"d4ac44f01d42f541631c5fc88d0ed8efac29a3a3ad9a745d9fd58f8b61ed132e","7c013aa892414a7fdcfd861ae524a668eaa3ede8c7c0acafaf611948122c8d93","b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30",{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true},{"version":"b3624aed92dab6da8484280d3cb3e2f4130ec3f4ef3f8201c95144ae9e898bb6","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","3163f47436da41706c6e2b3c1511f3b7cce9f9f3905b2f3e01246c48b4ba7d14","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","213fc4f2b172d8beb74b77d7c1b41488d67348066d185e4263470cbb010cd6e8",{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","4c8525f256873c7ba3135338c647eaf0ca7115a1a2805ae2d0056629461186ce","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true},{"version":"f7db71191aa7aac5d6bc927ed6e7075c2763d22c7238227ec0c63c8cf5cb6a8b","affectsGlobalScope":true},"06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","ec4bd1b200670fb567920db572d6701ed42a9641d09c4ff6869768c8f81b404c","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa",{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true},"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"652ee9c5103e89102d87bc20d167a02a0e3e5e53665674466c8cfea8a9e418c7","b50dc1eb21ae0cf50fdad3a52298af07a6c5aa681c55ecc68b45362294dc3972","2403a8e0780ec6f1e95f3a4f922eafdda29da975f0bffe7e35cad640b333247c","aa88fdf791a8ba56cf4e6d02fe429c5b04ce2503fe086f7e6e9f81531aeed3c1","3ded69a25b2b449fda06c6bb0e32fe4d12ba9de48dc13301da84dc0895374c6e","ca83a3200101528e59cc12cf22abe8eb9cf2a3b5bafa9a7bf8606562816d20df","94b86c9db78a81e040d2dafc1f7a8c3b9e70a24c222a845371fb1baa9eb132c6","bc81aff061c53a7140270555f4b22da4ecfe8601e8027cf5aa175fbdc7927c31","1442a75050bad91356b11dcea6dfb877154d1f2e00f863a9b17ba5e903659503","fb14266ae4070bd16db6b071e98887452bc359695c40742e38515a89dbc80a63","4a24d83c0d8f489465c4d38ed9fd87121c8a2cf50c47efe09c2eca93d39fa908","c052e32b9de53cd2596f196a0901801961bd7a31be9fac4ac2f117e4103e3a07","b15cdbb45919bc3b8e6b6f962d65382e85061d70bc26a968604f3dce4ad3a891","d6b58d955981bc1742501b792f1ab9f4cba0c4611f28dcf1c99376c1c33c9f9c","f0b9f6d5db82c3d1679f71b187c4451dbc2875ba734ce416a4804ad47390970a","a5c38939c3e22954a7166d80ab931ac6757283737b000f1e6dc924c6f4402b88","31a863da9da2a3edec16665695bdbc3134e853195f82dafec58e98c8e1bb3119","da728b7b918be9cbef6143a1f30563c8582b4801057777f383569c474fca4088","364c0af9dcfed9dc5a2467f1e30ba9e6b8c931e26d77fc78ed3fdeb96ac0dd96","547bf5974369e3ff85eee157cbc94a69ce177b218cf0586ab93731491c6fc5ae","5a0666d3bfaf3edcedd72e0a0819d7ad2128009acfe9d68f76b827872ffaca57","03058ca16f42d0a619f6faa3848096bcf5c5bb3382d12aae23c78a1e17888b31","e6bef70114b74828a98d49720fb98184c8faa2655801f7ff1d5399c14c8c4572","ef86c33a91aac82d86ae26dd7d5b049e094f1c9eed121375575e93a5217b4e0b","c01f626bffcdd96006259ee0d673d94cba9d196d2767aa194222971c3454686f","40871fe15e2ecf88714da0847588959d7049d34709a5c4f9f2584d8cdbda2874","2e3778314a396a2943ca5fcb1a2ada99127991eae68a3d6e054580f6e71f5f97","28497c60d13fd82b60e60b73b981fe229c74092b59d6379580ef0cff46746688","3b02d05d77deca903c41e78d5041412327ea7465543ee3484cefba51f33ba0dd","61bf0f4302ee1e5e4b2d037c7de82ce8410560dc61fcdadd1a1d4f016b99134c","2a851f3adebd931ec949cd374ce0ab05d59dae3cfe3a56300cb0f55c1b933213","367ab90a74f5c19abff93dfee24d933cb672c0d875e4ac95708703871be5707f","b5e855c95cc415765bf0cee8805edd2e6836f1e94207b9ea9da1d22b9590d3ea","07319d086eb114973ae76560b021df33c2b4d7dfde77867a29836ac7619768d0","ea38212c34e9ef0d803a4629c30d3808f984dbb8c8da792ec9dfc4cb4da07e46","653dbe1b437d6689e22c5d642b9439b3dd2c1cb138f56e19c4f6112ea812da2c","f382b47fc400a4f75c52fcefd6fb393c6f3fc85249bb87fd5678b01812d098f1","11c97f2e856596a67d789fc11e7edde7efbca3dfeb040543c3a52d4b12a5b258","a02e23dbe281ff7810e9e24bd3bf554aa69ac685f4893538bc6d01063bf444d1","5337bd9cee8222598bab8f01a140dcd030d567da487fb6418b849fb2455cfc25","3c0e17e33d3a5b3d2d74140c6b7f2a3d0d138d6b7579f22fb2761a2473b2d41c","86b3daf9ab347895482c127a5f80698d01bca9290ed3c63530f3d0f8ad3134ae","535c495248be283cce05bff71f4ebecc3c712ca7d4ef6735b143426b333e8083","1376fcb20905de176bd02c73f5fdd6dc0366d36d60725eec51273b30df79792c","19c2bc5072ded03c0e230bbf1560ffdb38ccde0ff19e640ba6ae9d4a067dec81","65d024d0983f35187ad678059a2815d98e4ba112575b597b0b4ee4b58a83fcb7","4897607f6544b9aba89c61ec30d0ff3b5089f082363034854c5acac847f8313a","992a7cc898964f2a4108222528adedc5473820c0d64fbda3a1c9aeb21a03d809","919f2cfcc5ffb092f09f8808b61d052b24a0a8548a5c07b4de8b5c492cf6ccc7","1d6800aeb28b8beac0b5f3fef6a481574d71919ecdb7075af52f88e1e28f9b71","e819b95115697c7ff89b83967da07287630837761c5cc2738ccc2a170971d4c4","ca29c120c816120222d7561cd221c6aad4af304cf06e234bc16a6ea59022878c","9c423c54bbf8ba1dc9fe8dd139d21e15f8ecebfa5b0e7c8d8f44aca266810099","b13986569a88ac17de80fc1ffa0860d0636051e91733437140bf399d56b26047","0d40cf3f6a3b799381e8e2aed00a6e8451e4b8e553e3f2b2415b4625c47ba9c3","22738c10c5a0c76db18caef6741ef17031642fd6a46f02989f5116dcea307f9e","6cf703a66860b2f1a58044937d9d59cf6c18551f56795d2f0b68a8f1da0f241b","bbf28aac6fc307a3925db448f87dc5e8d85b4806d9cead36f8776d77afa0b00f","fb724c133584a056c6d715ce5275bfa294e2378c8bacc28e9ecac1acd5e73717","3c681eacf1fbea01429d3c78f93dda4954109d3300b19a11c343f3583e607fb9","61d5ceb43470315ebaccc58a015eaf09754ea24459ce403a090ac64d3a00d941","3af0990420f89ab85b4bccff233385bf66fd1eb01bf691dfe31372c92a9f39c2","70b9caf34bb172722956a061e3a385a081f05a3e0d567176eff875372ce8049c","97ca28b5c460096532d75a9ce804407b96690b160fcda292fd662025d7484ef5","04ac11c12401bcc89f5ff15c93d5c6f9d38418d2cd6826e3a5aab9fa871ba6ad","d036f28759fdaacdf83649323db2a672d3649189e2f30f0a157606e96bad9787","2db56aa2c1cc6a1f505922bdfad8bdb849d52c89eb0bfb8294dc5642fb3da17f","c64f62cc96dd5380c4902be9ca310530316bb7c9f84ceafccd611b640f763608","f7a76e04d55272e70d5e4aa916062f943870ac3253d495e1bfc3fd8bf2678769","8d64013482f7244d852587624cdc453d8940291bd8cc365844fc90688e1fc15c","c6d1267fc1c14484cb320fadee1b0fad9f4f1ad0620c23fee7dabcc72738c514","12aa9c803cd79a739aa663156f39131869a41388bf253e3b51f0f61f98a07663","be92647dfc052cf320b5ac0bf79ac1df11c0b77cc6f0b1bf5be7dce314a7db68","ea4f5a4451505cad589168e6a31fa0fe6f5cff894cea623c531cd2dece0a4776","1a159891a2340adfb2c31ed2fc626212feb08f10a57b1b2238f3c24f06e7a3b8","93398a0d76a5b12c8f753bce31d30a308e28c8491f7091b7258a52fcdd9b3c1b","6fd4d80e2c39c989d12ed03b97aef7f3503c9e20e87b0991e9cadc7e5dcbe41a","0a404e1089ad818585af89ebe894edc2e30102455759fe5ffc851abe57dd4d45","1dea9c7b5a574fb1d3c09a436e69aa874c9bd734a9ad9e19ecccdb8ee10d0739","8a20e1c333c6bc8a051a6408d5e24684383a8fa89f832f0475d12070220f8023","76200cf7360c740003e6b8912707413864a14022c2eb1aa387d9f693108ab3f6","889b4beefc59797c39dd56afbd7a441c95a55d64ada2640ed7537ffff93c3d43","d5ace6192178d45de42affa439c12585d4fe6aa51ec198da3261d64ce7f6897d","fc9c075827b48e02faa76886d02294f5c81446872aa715cb246c31180896914c","030e1fcbaf536940f6facf8677ff38f729b5574cfa6ebfcd6d354054ffd104af","c340b3d2b89e11d45944896444a83992fe9612eb3f9b66d26ce4d94b6fafbd3c","b9644ecef562c8e160f503fe461225631bea29c8d7bbd6af2b573c0abdd70fa8","cf8888dcc41b068af7a630cbfffccf68ce6f2ffb5413fda9ec562ca0493f8752","7bd5d8c3532aa28239678b30c08a3084912b8c1f1c68d524aa3c1e32bacbb6a6","a7321c0e96eecb19dcbf178493836474cef21ee3f9345384ce9d74e4be31228d","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","3054ef91b855e005b9c4681399e9d64d2a7b07a22d539314d794f09e53b876a7","427ce5854885cfc34387e09de05c1d5c1acf94c2143e1693f1d9ff54880573e7","bed2c4f96fab3348be4a34d88dcb12578c1b2475b07c6acd369e99e227718d81","e3ba509d3dce019b3190ceb2f3fc88e2610ab717122dabd91a9efaa37804040d","9ac9b7b349a96ff204f4172183cca1672cc402e1ee7277bfcdec96c000b7d818","ac127e4c6f2b5220b293cc9d2e64ba49781225b792a51cda50f3db8eafba550c",{"version":"f5e277afc658b3fefe1e9d06f3018416ea92f3e094bc21d38517f7f36627a5e4","affectsGlobalScope":true}],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"declarationMap":true,"downlevelIteration":true,"esModuleInterop":true,"module":99,"noFallthroughCasesInSwitch":true,"noImplicitAny":false,"noImplicitReturns":true,"noImplicitThis":true,"noUnusedLocals":false,"noUnusedParameters":false,"outDir":"./module","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"strictNullChecks":true,"strictPropertyInitialization":false,"target":99,"useDefineForClassFields":false},"fileIdsList":[[169,217],[42,43,44,45,217],[42,44,169,217],[47,48,50,51,52,53,217],[217],[49,217],[94,169,217],[94,95,96,97,98,99,100,101,103,104,217],[102,217],[55,56,57,58,59,60,61,62,63,217],[56,57,58,59,60,217],[65,66,67,68,69,70,71,72,73,74,75,217],[77,78,79,217],[81,82,83,84,85,86,217],[83,169,217],[46,54,64,76,80,87,91,93,105,107,166,168,217],[88,89,90,217],[89,169,217],[92,217],[106,217],[112,113,217],[117,118,119,120,121,122,217],[124,217],[125,126,127,128,129,130,131,132,217],[134,169,217],[156,169,217],[112,113,134,217],[134,135,136,137,138,157,158,159,217],[161,162,163,217],[141,169,217],[124,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,217],[113,169,217],[116,123,133,156,160,164,217],[108,109,110,111,114,115,217],[112,113,165,217],[167,217],[217,317,320],[217,315],[217,313,319],[217,317],[217,314,318],[217,316],[171,217],[174,217],[175,180,208,217],[176,187,188,195,205,216,217],[176,177,187,195,217],[178,217],[179,180,188,196,217],[180,205,213,217],[181,183,187,195,217],[182,217],[183,184,217],[187,217],[185,187,217],[187,188,189,205,216,217],[187,188,189,202,205,208,217],[217,221],[190,195,205,216,217],[187,188,190,191,195,205,213,216,217],[190,192,205,213,216,217],[171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223],[187,193,217],[194,216,217],[183,187,195,205,217],[196,217],[197,217],[174,198,217],[199,215,217,221],[200,217],[201,217],[187,202,203,217],[202,204,217,219],[175,187,205,206,207,208,217],[175,205,207,217],[205,206,217],[208,217],[209,217],[187,211,212,217],[211,212,217],[180,195,205,213,217],[214,217],[195,215,217],[175,190,201,216,217],[180,217],[205,217,218],[217,219],[217,220],[175,180,187,189,198,205,216,217,219,221],[205,217,222],[187,190,192,195,205,213,216,217,222,224],[217,233],[217,235],[217,233,234,235,236,237,238,239],[217,233,235],[217,224,225],[187,195,217,224,231,232,240],[217,231],[217,229,302],[217,246],[217,246,252],[170,217],[41,170,217,227,243,268,271,278,296],[217,227],[217,227,228,229,230,244,251,253,255,256,257,260,286,287,291,293,294,299,301,302,304,305,308,309],[217,293,294],[170,217,258,268,293],[217,307],[176,217,306],[170,217,227,228,270,271,289],[217,228,241,242,251,271,273,275],[217,228],[217,228,270,286],[217,241],[217,228,241,242,270,271,276,287,288],[41,217,270,271],[217,242,271,276,289,290],[217,228,241],[217,241,242],[217,230,254],[217,244,245,247],[170,217,228,229,244,260,261,262,263,264],[217,229,244,260],[41,217,227,248,249],[170,217,227,260],[41,217,227,243,248,249],[217,245],[217,228,301],[217,262,277],[170,217,258],[217,227,268],[217,248],[170,217,245,248,249,250,254,258,259,262,264,266,268,275,278,279,280,281,282,283,284,285],[180,217,245],[217,268],[217,260,262],[217,227,229,230,245,251,253,255],[170,217,228,242,260,276,290,298],[41,170,217,242,273,301],[170,217,226,227,228,229,230,242,244,249,250,251,255,256,257,259,260,262,263,264,265,266,267,268,269,272,274,276,284,291,292,295,296,297,298,299,300],[217,227,251,256,301],[217,227,228,229,230,242,250],[170,217,227,228,244,249,250,257,259]],"referencedMap":[[170,1],[46,2],[42,1],[43,1],[44,1],[45,3],[54,4],[47,5],[48,5],[49,5],[50,6],[51,5],[52,5],[53,5],[95,7],[96,5],[97,7],[98,7],[94,1],[99,1],[105,8],[101,1],[100,7],[102,1],[103,9],[104,5],[55,1],[64,10],[61,11],[62,1],[59,1],[60,5],[63,1],[56,1],[57,1],[58,1],[65,5],[66,5],[67,5],[68,5],[76,12],[69,5],[70,5],[71,1],[72,5],[73,5],[74,5],[75,5],[77,1],[78,5],[80,13],[79,1],[81,1],[83,1],[82,1],[87,14],[84,1],[85,1],[86,15],[169,16],[91,17],[88,1],[90,18],[89,1],[92,1],[93,19],[106,1],[107,20],[117,5],[118,5],[119,1],[120,5],[121,1],[122,21],[123,22],[125,23],[126,1],[127,5],[128,5],[129,1],[130,5],[131,1],[132,21],[133,24],[135,25],[136,5],[137,5],[138,1],[157,26],[158,5],[134,1],[159,27],[160,28],[161,5],[162,5],[163,1],[164,29],[139,1],[140,1],[142,30],[143,1],[156,31],[141,23],[144,1],[145,5],[146,1],[147,1],[148,1],[149,32],[150,5],[151,1],[152,1],[153,30],[124,1],[154,1],[155,1],[165,33],[115,5],[108,5],[109,1],[110,5],[111,5],[114,21],[116,34],[112,1],[113,1],[166,35],[167,1],[168,36],[321,37],[313,5],[316,38],[315,5],[314,5],[320,39],[318,40],[319,41],[317,42],[171,43],[172,43],[174,44],[175,45],[176,46],[177,47],[178,48],[179,49],[180,50],[181,51],[182,52],[183,53],[184,53],[186,54],[185,55],[187,54],[188,56],[189,57],[173,58],[223,5],[190,59],[191,60],[192,61],[224,62],[193,63],[194,64],[195,65],[196,66],[197,67],[198,68],[199,69],[200,70],[201,71],[202,72],[203,72],[204,73],[205,74],[207,75],[206,76],[208,77],[209,78],[210,5],[211,79],[212,80],[213,81],[214,82],[215,83],[216,84],[217,85],[218,86],[219,87],[220,88],[221,89],[222,90],[231,91],[234,92],[233,5],[236,93],[235,5],[239,5],[240,94],[238,95],[237,95],[225,5],[226,96],[241,97],[232,98],[8,5],[11,5],[10,5],[2,5],[12,5],[13,5],[14,5],[15,5],[16,5],[17,5],[18,5],[19,5],[3,5],[4,5],[23,5],[20,5],[21,5],[22,5],[24,5],[25,5],[26,5],[5,5],[27,5],[28,5],[29,5],[30,5],[6,5],[31,5],[32,5],[33,5],[34,5],[7,5],[39,5],[35,5],[36,5],[37,5],[38,5],[1,5],[40,5],[9,5],[41,5],[303,99],[257,5],[244,5],[247,100],[252,100],[253,101],[246,5],[227,102],[297,103],[296,104],[310,105],[228,102],[309,102],[295,106],[293,5],[294,107],[308,108],[307,109],[290,110],[276,111],[271,112],[287,113],[270,114],[289,115],[272,116],[291,117],[242,118],[288,119],[255,120],[230,5],[248,121],[305,5],[304,5],[265,122],[261,123],[262,124],[266,125],[250,126],[254,102],[306,127],[269,102],[300,128],[267,104],[278,129],[275,5],[259,130],[311,102],[279,131],[268,102],[312,127],[243,5],[280,130],[245,5],[281,132],[284,102],[258,102],[286,133],[292,134],[283,5],[285,134],[282,135],[249,104],[277,124],[263,136],[264,112],[273,102],[256,137],[299,138],[274,139],[301,140],[298,5],[302,141],[229,5],[251,142],[260,143]],"exportedModulesMap":[[170,1],[46,2],[42,1],[43,1],[44,1],[45,3],[54,4],[47,5],[48,5],[49,5],[50,6],[51,5],[52,5],[53,5],[95,7],[96,5],[97,7],[98,7],[94,1],[99,1],[105,8],[101,1],[100,7],[102,1],[103,9],[104,5],[55,1],[64,10],[61,11],[62,1],[59,1],[60,5],[63,1],[56,1],[57,1],[58,1],[65,5],[66,5],[67,5],[68,5],[76,12],[69,5],[70,5],[71,1],[72,5],[73,5],[74,5],[75,5],[77,1],[78,5],[80,13],[79,1],[81,1],[83,1],[82,1],[87,14],[84,1],[85,1],[86,15],[169,16],[91,17],[88,1],[90,18],[89,1],[92,1],[93,19],[106,1],[107,20],[117,5],[118,5],[119,1],[120,5],[121,1],[122,21],[123,22],[125,23],[126,1],[127,5],[128,5],[129,1],[130,5],[131,1],[132,21],[133,24],[135,25],[136,5],[137,5],[138,1],[157,26],[158,5],[134,1],[159,27],[160,28],[161,5],[162,5],[163,1],[164,29],[139,1],[140,1],[142,30],[143,1],[156,31],[141,23],[144,1],[145,5],[146,1],[147,1],[148,1],[149,32],[150,5],[151,1],[152,1],[153,30],[124,1],[154,1],[155,1],[165,33],[115,5],[108,5],[109,1],[110,5],[111,5],[114,21],[116,34],[112,1],[113,1],[166,35],[167,1],[168,36],[321,37],[313,5],[316,38],[315,5],[314,5],[320,39],[318,40],[319,41],[317,42],[171,43],[172,43],[174,44],[175,45],[176,46],[177,47],[178,48],[179,49],[180,50],[181,51],[182,52],[183,53],[184,53],[186,54],[185,55],[187,54],[188,56],[189,57],[173,58],[223,5],[190,59],[191,60],[192,61],[224,62],[193,63],[194,64],[195,65],[196,66],[197,67],[198,68],[199,69],[200,70],[201,71],[202,72],[203,72],[204,73],[205,74],[207,75],[206,76],[208,77],[209,78],[210,5],[211,79],[212,80],[213,81],[214,82],[215,83],[216,84],[217,85],[218,86],[219,87],[220,88],[221,89],[222,90],[231,91],[234,92],[233,5],[236,93],[235,5],[239,5],[240,94],[238,95],[237,95],[225,5],[226,96],[241,97],[232,98],[8,5],[11,5],[10,5],[2,5],[12,5],[13,5],[14,5],[15,5],[16,5],[17,5],[18,5],[19,5],[3,5],[4,5],[23,5],[20,5],[21,5],[22,5],[24,5],[25,5],[26,5],[5,5],[27,5],[28,5],[29,5],[30,5],[6,5],[31,5],[32,5],[33,5],[34,5],[7,5],[39,5],[35,5],[36,5],[37,5],[38,5],[1,5],[40,5],[9,5],[41,5],[303,99],[257,5],[244,5],[247,100],[252,100],[253,101],[246,5],[227,102],[297,103],[296,104],[310,105],[228,102],[309,102],[295,106],[293,5],[294,107],[308,108],[307,109],[290,110],[276,111],[271,112],[287,113],[270,114],[289,115],[272,116],[291,117],[242,118],[288,119],[255,120],[230,5],[248,121],[305,5],[304,5],[265,122],[261,123],[262,124],[266,125],[250,126],[254,102],[306,127],[269,102],[300,128],[267,104],[278,129],[275,5],[259,130],[311,102],[279,131],[268,102],[312,127],[243,5],[280,130],[245,5],[281,132],[284,102],[258,102],[286,133],[292,134],[283,5],[285,134],[282,135],[249,104],[277,124],[263,136],[264,112],[273,102],[256,137],[299,138],[274,139],[301,140],[298,5],[302,141],[229,5],[251,142],[260,143]],"semanticDiagnosticsPerFile":[170,46,42,43,44,45,54,47,48,49,50,51,52,53,95,96,97,98,94,99,105,101,100,102,103,104,55,64,61,62,59,60,63,56,57,58,65,66,67,68,76,69,70,71,72,73,74,75,77,78,80,79,81,83,82,87,84,85,86,169,91,88,90,89,92,93,106,107,117,118,119,120,121,122,123,125,126,127,128,129,130,131,132,133,135,136,137,138,157,158,134,159,160,161,162,163,164,139,140,142,143,156,141,144,145,146,147,148,149,150,151,152,153,124,154,155,165,115,108,109,110,111,114,116,112,113,166,167,168,321,313,316,315,314,320,318,319,317,171,172,174,175,176,177,178,179,180,181,182,183,184,186,185,187,188,189,173,223,190,191,192,224,193,194,195,196,197,198,199,200,201,202,203,204,205,207,206,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,231,234,233,236,235,239,240,238,237,225,226,241,232,8,11,10,2,12,13,14,15,16,17,18,19,3,4,23,20,21,22,24,25,26,5,27,28,29,30,6,31,32,33,34,7,39,35,36,37,38,1,40,9,41,303,257,244,247,252,253,246,227,297,296,310,228,309,295,293,294,308,307,290,276,271,287,270,289,272,291,242,288,255,230,248,305,304,265,261,262,266,250,254,306,269,300,267,278,275,259,311,279,268,312,243,280,245,281,284,258,286,292,283,285,282,249,277,263,264,273,256,299,274,301,298,302,229,251,260]},"version":"4.4.3"}
|
|
1
|
+
{"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.webworker.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../src/chain.ts","../../../node_modules/@bitauth/libauth/build/lib/address/base58-address.d.ts","../../../node_modules/@bitauth/libauth/build/lib/address/bech32.d.ts","../../../node_modules/@bitauth/libauth/build/lib/address/cash-address.d.ts","../../../node_modules/@bitauth/libauth/build/lib/address/locking-bytecode.d.ts","../../../node_modules/@bitauth/libauth/build/lib/address/address.d.ts","../../../node_modules/@bitauth/libauth/build/lib/bin/hashes.d.ts","../../../node_modules/@bitauth/libauth/build/lib/bin/ripemd160/ripemd160.base64.d.ts","../../../node_modules/@bitauth/libauth/build/lib/bin/secp256k1/secp256k1-wasm-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/bin/secp256k1/secp256k1-wasm.d.ts","../../../node_modules/@bitauth/libauth/build/lib/bin/sha1/sha1.base64.d.ts","../../../node_modules/@bitauth/libauth/build/lib/bin/sha256/sha256.base64.d.ts","../../../node_modules/@bitauth/libauth/build/lib/bin/sha512/sha512.base64.d.ts","../../../node_modules/@bitauth/libauth/build/lib/bin/bin.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/combinations.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/sha1.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/sha256.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/sha512.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/ripemd160.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/secp256k1-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/default-crypto-instances.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/hmac.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/secp256k1.d.ts","../../../node_modules/@bitauth/libauth/build/lib/crypto/crypto.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/base-convert.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/base64.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/bin-string.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/error.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/hex.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/log.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/number.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/read.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/time.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/type-utils.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/utf8.d.ts","../../../node_modules/@bitauth/libauth/build/lib/format/format.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/hd-key.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/key-utils.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/wallet-import-format.d.ts","../../../node_modules/@bitauth/libauth/build/lib/key/key.d.ts","../../../node_modules/@bitauth/libauth/build/lib/language/compile.d.ts","../../../node_modules/@bitauth/libauth/build/lib/language/language-utils.d.ts","../../../node_modules/@bitauth/libauth/build/lib/language/language-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/language/parse.d.ts","../../../node_modules/@bitauth/libauth/build/lib/language/reduce.d.ts","../../../node_modules/@bitauth/libauth/build/lib/language/resolve.d.ts","../../../node_modules/@bitauth/libauth/build/lib/language/language.d.ts","../../../node_modules/@bitauth/libauth/build/lib/message/read-components.d.ts","../../../node_modules/@bitauth/libauth/build/lib/message/transaction-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/message/transaction-encoding.d.ts","../../../node_modules/@bitauth/libauth/build/lib/message/message.d.ts","../../../node_modules/@bitauth/libauth/build/lib/schema/authentication-template.d.ts","../../../node_modules/@bitauth/libauth/build/lib/schema/schema.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/compiler-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/compiler-bch/compiler-bch.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/compiler-defaults.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/compiler-operation-helpers.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/compiler-operations.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/compiler-utils.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/scenarios.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/p2pkh-utils.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/standard/p2pkh.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/standard/standard.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/template-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/compiler/compiler.d.ts","../../../node_modules/@bitauth/libauth/build/lib/transaction/generate-transaction.d.ts","../../../node_modules/@bitauth/libauth/build/lib/transaction/transaction.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec-descriptions.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec-instruction-set.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec-opcodes.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/virtual-machine.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/vm-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec-vm.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/fixtures/satoshi-client/bitcoin-satoshi-utils.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/xec/xec.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2022/bch-2022-descriptions.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2022/bch-2022-errors.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2022/bch-2022-instruction-set.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2022/bch-2022-opcodes.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2022/bch-2022-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2022/bch-2022-vm.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2022/bch-2022.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/signing-serialization.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-consensus.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-crypto.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-descriptions.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-errors.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-instruction-set.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-opcodes.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-tokens.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023-vm.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/2023/bch-2023.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/chips/bch-chips-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/chips/bch-chips-crypto.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/chips/bch-chips-descriptions.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/chips/bch-chips-errors.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/chips/bch-chips-instruction-set.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/arithmetic.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/bitwise.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/consensus.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/combinators.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/common-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/crypto.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/encoding.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/errors.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/flow-control.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/format.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/inspection.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/instruction-sets-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/instruction-sets-utils.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/nop.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/push.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/stack.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/time.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/common/common.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/chips/bch-chips-loops.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/chips/bch-chips-opcodes.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/chips/bch-chips-vm.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/bch/chips/bch-chips.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/btc/btc-descriptions.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/btc/btc-opcodes.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/btc/btc-types.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/btc/btc.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/instruction-sets/instruction-sets.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vm/vm.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vmb-tests/bch-vmb-test-utils.d.ts","../../../node_modules/@bitauth/libauth/build/lib/vmb-tests/vmb-tests.d.ts","../../../node_modules/@bitauth/libauth/build/lib/lib.d.ts","../../../node_modules/@bitauth/libauth/build/index.d.ts","../../../node_modules/@types/node/ts4.8/assert.d.ts","../../../node_modules/@types/node/ts4.8/assert/strict.d.ts","../../../node_modules/@types/node/ts4.8/globals.d.ts","../../../node_modules/@types/node/ts4.8/async_hooks.d.ts","../../../node_modules/@types/node/ts4.8/buffer.d.ts","../../../node_modules/@types/node/ts4.8/child_process.d.ts","../../../node_modules/@types/node/ts4.8/cluster.d.ts","../../../node_modules/@types/node/ts4.8/console.d.ts","../../../node_modules/@types/node/ts4.8/constants.d.ts","../../../node_modules/@types/node/ts4.8/crypto.d.ts","../../../node_modules/@types/node/ts4.8/dgram.d.ts","../../../node_modules/@types/node/ts4.8/diagnostics_channel.d.ts","../../../node_modules/@types/node/ts4.8/dns.d.ts","../../../node_modules/@types/node/ts4.8/dns/promises.d.ts","../../../node_modules/@types/node/ts4.8/domain.d.ts","../../../node_modules/@types/node/ts4.8/dom-events.d.ts","../../../node_modules/@types/node/ts4.8/events.d.ts","../../../node_modules/@types/node/ts4.8/fs.d.ts","../../../node_modules/@types/node/ts4.8/fs/promises.d.ts","../../../node_modules/@types/node/ts4.8/http.d.ts","../../../node_modules/@types/node/ts4.8/http2.d.ts","../../../node_modules/@types/node/ts4.8/https.d.ts","../../../node_modules/@types/node/ts4.8/inspector.d.ts","../../../node_modules/@types/node/ts4.8/module.d.ts","../../../node_modules/@types/node/ts4.8/net.d.ts","../../../node_modules/@types/node/ts4.8/os.d.ts","../../../node_modules/@types/node/ts4.8/path.d.ts","../../../node_modules/@types/node/ts4.8/perf_hooks.d.ts","../../../node_modules/@types/node/ts4.8/process.d.ts","../../../node_modules/@types/node/ts4.8/punycode.d.ts","../../../node_modules/@types/node/ts4.8/querystring.d.ts","../../../node_modules/@types/node/ts4.8/readline.d.ts","../../../node_modules/@types/node/ts4.8/readline/promises.d.ts","../../../node_modules/@types/node/ts4.8/repl.d.ts","../../../node_modules/@types/node/ts4.8/stream.d.ts","../../../node_modules/@types/node/ts4.8/stream/promises.d.ts","../../../node_modules/@types/node/ts4.8/stream/consumers.d.ts","../../../node_modules/@types/node/ts4.8/stream/web.d.ts","../../../node_modules/@types/node/ts4.8/string_decoder.d.ts","../../../node_modules/@types/node/ts4.8/test.d.ts","../../../node_modules/@types/node/ts4.8/timers.d.ts","../../../node_modules/@types/node/ts4.8/timers/promises.d.ts","../../../node_modules/@types/node/ts4.8/tls.d.ts","../../../node_modules/@types/node/ts4.8/trace_events.d.ts","../../../node_modules/@types/node/ts4.8/tty.d.ts","../../../node_modules/@types/node/ts4.8/url.d.ts","../../../node_modules/@types/node/ts4.8/util.d.ts","../../../node_modules/@types/node/ts4.8/v8.d.ts","../../../node_modules/@types/node/ts4.8/vm.d.ts","../../../node_modules/@types/node/ts4.8/wasi.d.ts","../../../node_modules/@types/node/ts4.8/worker_threads.d.ts","../../../node_modules/@types/node/ts4.8/zlib.d.ts","../../../node_modules/@types/node/ts4.8/globals.global.d.ts","../../../node_modules/@types/node/ts4.8/index.d.ts","../../../node_modules/bip39/types/_wordlists.d.ts","../../../node_modules/bip39/types/index.d.ts","../src/enum.ts","../src/interface.ts","../src/wallet/enum.ts","../src/qr/interface.ts","../../../node_modules/@types/ws/index.d.ts","../../../node_modules/isomorphic-ws/index.d.ts","../../../node_modules/async-mutex/lib/MutexInterface.d.ts","../../../node_modules/async-mutex/lib/Mutex.d.ts","../../../node_modules/async-mutex/lib/SemaphoreInterface.d.ts","../../../node_modules/async-mutex/lib/Semaphore.d.ts","../../../node_modules/async-mutex/lib/withTimeout.d.ts","../../../node_modules/async-mutex/lib/tryAcquire.d.ts","../../../node_modules/async-mutex/lib/errors.d.ts","../../../node_modules/async-mutex/lib/index.d.ts","../../../node_modules/electrum-cash/dist/index.d.ts","../src/network/interface.ts","../src/util/floor.ts","../src/constant.ts","../src/util/getRuntimePlatform.ts","../src/db/interface.ts","../src/db/ExchangeRateProvider.ts","../src/rate/ExchangeRate.ts","../src/util/sanitizeUnit.ts","../src/util/balanceObjectFromSatoshi.ts","../src/wallet/interface.ts","../src/db/StorageProvider.ts","../src/db/index.ts","../src/util/base64.ts","../src/qr/Qr.ts","../src/wallet/Base.ts","../src/config.ts","../src/util/hash160.ts","../src/util/deriveCashaddr.ts","../src/wallet/model.ts","../src/transaction/allocateFee.ts","../src/util/amountInSatoshi.ts","../src/util/sumSendRequestAmounts.ts","../src/util/sumUtxoValue.ts","../src/transaction/Wif.ts","../src/util/asSendRequestObject.ts","../src/util/checkWifNetwork.ts","../src/util/derivePublicKeyHash.ts","../src/util/checkForEmptySeed.ts","../src/network/constant.ts","../src/network/NetworkProvider.ts","../src/network/getRelayFeeCache.ts","../src/util/transaction.ts","../src/wallet/Util.ts","../src/util/delay.ts","../src/network/ElectrumNetworkProvider.ts","../src/util/satoshiToAmount.ts","../src/util/convert.ts","../src/util/deriveNetwork.ts","../src/util/getAddrsByXpubKey.ts","../src/util/getUsdRate.ts","../src/util/sanitizeAddress.ts","../src/util/randomInt.ts","../src/util/getXPubKey.ts","../src/util/randomValues.ts","../src/util/index.ts","../src/network/configuration.ts","../src/network/util.ts","../src/network/default.ts","../src/network/Connection.ts","../src/network/index.ts","../src/util/randomBytes.ts","../src/message/interface.ts","../src/message/signed.ts","../src/message/index.ts","../src/history/interface.ts","../src/history/electrumTransformer.ts","../src/wallet/bcmr-v2.schema.ts","../src/wallet/Bcmr.ts","../src/util/checkUtxos.ts","../src/wallet/Wif.ts","../src/wallet/createWallet.ts","../src/cli.ts","../src/test/fetch.ts","../src/test/expect.ts","../src/util/browserNotSupported.ts","../src/mine/mine.ts","../src/mine/index.ts","../src/libauth.ts","../src/index.ts","../src/util/deriveLockscript.ts","../src/util/eventsource.ts","../../../node_modules/@types/jest/node_modules/@jest/expect-utils/build/index.d.ts","../../../node_modules/@types/jest/node_modules/chalk/index.d.ts","../../../node_modules/@types/jest/node_modules/@sinclair/typebox/typebox.d.ts","../../../node_modules/@types/jest/node_modules/@jest/schemas/build/index.d.ts","../../../node_modules/@types/jest/node_modules/pretty-format/build/index.d.ts","../../../node_modules/@types/jest/node_modules/jest-diff/build/index.d.ts","../../../node_modules/@types/jest/node_modules/jest-matcher-utils/build/index.d.ts","../../../node_modules/@types/jest/node_modules/expect/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts"],"fileInfos":[{"version":"aa9fb4c70f369237c2f45f9d969c9a59e0eae9a192962eb48581fe864aa609db","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"e54c8715a4954cfdc66cd69489f2b725c09ebf37492dbd91cff0a1688b1159e8","affectsGlobalScope":true},{"version":"28ab3a152fefb456d9ca44de158f3239ca0d03c1a4db6d645c51b837f1f9ee02","affectsGlobalScope":true},{"version":"51b8b27c21c066bf877646e320bf6a722b80d1ade65e686923cd9d4494aef1ca","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"2c8c5ee58f30e7c944e04ab1fb5506fdbb4dd507c9efa6972cf4b91cec90c503","affectsGlobalScope":true},{"version":"2bb4b3927299434052b37851a47bf5c39764f2ba88a888a107b32262e9292b7c","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"93544ca2f26a48716c1b6c5091842cad63129daac422dfa4bc52460465f22bb1","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"7435b75fdf3509622e79622dbe5091cf4b09688410ee2034e4fc17d0c99d0862","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"9f1817f7c3f02f6d56e0f403b927e90bb133f371dcebc36fa7d6d208ef6899da","affectsGlobalScope":true},{"version":"4632665b87204bb1caa8b44d165bce0c50dfab177df5b561b345a567cabacf9a","affectsGlobalScope":true},"3b9e1093810740229d6e7192880c5f29a0aa676f1886d57ffba1d4286c3592f6","f9f790e57d3e54a951f58ef7847a0761433c8fc020ba56181e0a0b1cb3edfac3","9d7c06936c2b731734059e575cf7930aa028487722593fb176f4d64de9fdfb8c","5afea36bfebe56bd19e43900b94fda8c5ac31409de197832ae006c0120d54122","5dd455bedf7b5f7a5d8ccc17323761ac73ab5a93a7af0a595297b90c33bd9d8e","95ab2fe99faa3e25ff8eb9408451730506d4686dce877a96db073f62f9368932","685f0aa21c1d14d184fbaf5327c390c465d26a0a08e64975764f2b073601bd76","9a18b997370e8442ed2fe2e7e60180f21d2a3e46e45f443784709eec8284f2e4","31ed1f61639da39a41255b3608ebada3c6101ae1bd07ecf67d61605bab1c2c7f","3c863e6ccce69483eedb3d505701a957c51af40859c7b19a4558836b1321a892","a3cc420b6dbdfc0245da4e0d837c339c3f9b6bed2efaa2e26dd8bbe4060cef41","6857d9f06f38c5a8d5bf2a0e8326b978b4876031a3c1f47665876c3daa94522d","a240ea9a3333d3630ce06bf128d796a233df1147bb3cbda86a2b74a584e7f6ea","4419778f6c54c431a8156c7de194ebb9e0876709a8cfc12d40502b0dd1019244","3c2e9fd191f39682dd1c5a8bf30ea2e639a12dcda5ef0f57f05c84f17a88bc4e","39541b2c269eff86c2792b6ca162e6fdc861d388e7d3d19f7831d9179c362d7c","20a4eb5bc4d45e0f1e5a0f40da4da7a850cb87098be0e65ea09313f9f38ca495","36b664ce956bec5150c15ea3763a4a5b0af8c305a10ec7a45d584885280cc893","34e612720139dfd4e4529140bb1fd41ac57dfeb9ac0760857d765211498729dd","f4123d3203f9caa925d3068da188cc867cafe29d4660456a9f322833fa0c80a2","ada1dc76e297e7fee41eb083b3a60fb54bd7e729ed68732a6ce5d0e88140dae1","b3876d5830d84c781ac4a7482c06887cfd90c3409af82fc29ec20375d38fb217","874f6101540444f6cb89a7d7447f664ee7c42f50e790ec1432cbbc14fd56159e","e3dd6f5b25d26f229efb106789189628ec8186cc28e3d58783426e18baff9c53","4fbc35a02a0687614b042fa52a46ac1ae7c1bfce68f0aaaad8b5a76a7777edf5","66fc3f87542bc556b590a4f4177c22490c117fc96eab69bda2e9e0c445eb5cc2","1293901b689c514fafaf7f9ff9eff109b25f32fdbf64bc7fe8da561d473d2091","bc82f26edea61e61473470eb7cbbe76b815cc27dcc6aa1b6d3fad86add81fc17","9b45c8fb886e1feee2bee6ff97b84bd10cda89f2b8cff54d27cda826d3609a72","9b15c2754d92c35fc53e42ba771e32b2038d8d72408f4704c8daab757043e4dc","294e7339aaee5e008a3e892318487b1970ceee107c1cd68a0f81533369b1430d","584a7cabf27eef35ca78f5c66e9606440faafdef157eec243c6c672f808dce00","a7920efa08217d3175420b88117e78fb8f2dfb1de498b3ec294048861675e07b","0aec829b11c3834d2fb9245945eb5549446f8e1c1ae94b0ab167e44bd7d438e4","15ac5424c6183bd167314972be53111b50fa3945c6f004ecae5aef42d1e03d76","428565fe14b2bb1e0780087739e6a568b102e449da66c2ba4ae8fb6293e7f06c","ea08b8cd81c90c218ba3f04cdb2e7c87ee8c427b4c544911095a9304dc5e9f52","e0713f909b03190f011a3d4266e7bdf0f313d6e5fc600d95638083380139663d","f7bdf7751b647cb56d24e19b46540812deb89163f43434d6b842377e1ba15279","0708c284b3603bfe7f7946709a8b62f1b81d987b7e301fd8fc5312d8d085abab","6f34c20edf7ec48f4db7cf4417d06e6a8f712ed7f38386c6b9c8243e5aecc4d0","aa1c6664820510d6009e5172f2c9b013f8d1c9bd94796eb66d5553c5ddfaeb1f","07b0c184ae96b59f4126a3ef4eced70ccb5462090c6a123921227b8fb7c1d2e0","5e6a8186fc4d3d31fb0c1ca5087e846378d3302f5905a8ccc2ab243ffa10f94b","5d08773a7f13c36508ce760c3517a8afab5c5a5f551ca39ad41683930bfda66c","9577c23d43c81fe2e66373ee377b5ed32e10f2774653dc2384c4cbc7ce329982","e312e6add715ec2e97e938409478d9017d6c91f4487ce6e4aa2709e60f67cd95","f1909b1623b22940bbb7be98cbfac6d24a34d0c510dde3df5564404064e3e7fd","02c03fc5fc14f75802bd70c8297d1e4a6f18dbcc02a1699591c9e4c0135c5de0","5a86e2cbfe51de88bdf32cebe82aa0ed049f6edba3a2c757312cab3c37f29ade","c2a227bd507cac7fdbdb2f5375e3b05f6f28f7e247244c52c81229942d5989aa","28aa20795a164add6b9e7443535f34939ea1e9c27719bfa0db96225881d47bbc","9e334139506c8742da707999ab4c169d4f04085288700d28419c439f38342ae1","680cbca33c1438c1f5de005564302ef57d679b54303d794663dceb180be4a0f0","2877475d53a76cf91e2336f8347a8fb00c9d1eac85a059058c5b027d74822960","f871d624e9cec46e63399c74deb15c183c50390d1e9755130717fef36396bf2d","6850411b8d4bf4c5f950fc182f17a58ebeea0173d0395591761b40904006c788","be150501ccabade2b0280d5be03c766f39381e51d5739e04f5656df4080e8487","fa81e6ab7fc27f43789b878e4bab158e12ff31748d6652724ef09e3053815c69","71f0af94667eb3d33e61a5f7e8d20c8259158871ba332ed370421c867fc8d64c","929cd9e3bae21fddffa7c5b813561e18ec6f3e88c02fa750313e709a7201ebc2","afd6e503a3873ec9c12e57ef614f3a87d57bd88301247498c45afd992a4b7b98","5e9004c2aba118299bcc17d5d115044512faa9bd814417e3239e8b53f83ff5d3","f67509d8eac18dd03a6598a9b428dcd09ef04487b31dd8226b5b2ba67588205c","387ba24cca9932007dfa86415d59e2ffc6ff6a35d5e0e1cde27f1ad01b91b9bf","7d24e31d9b3cb94992a45d71918940cfc0f04e1aab36acff1f1e88d825e95f45","29c97e978dd0682439d4109094dff72ec8707906786343f6ba6f6f82f9260f75","d2dec72e158cf166711a3009180d25ad363fe4cad0178020098aa5e08c4842e7","5e3f8d4b99733c1365ad9f07ba62f7604e6ede0bf94632e1710590fbf5503d0f","f5d8843fd8c6d4aacea9792e8c0ffb47e82c81523b65690fb7a21a76c19a2ae9","339f71322345c9caf86730e90e74a9cc865134cced1d9954b1ff7fbe0da98639","5929ad11c6a01e61924e690bc5da6030e6568e6a9afa22d2e3e9ffd6e5ff5da1","9fdbb2de7d996d633c1e8b15e81598cc03b78d189c502f508405e01065d150b2","76278ca7d48a20284bb7d2852ed2afbe46b47e621d51703499f9934193aacfd4","7560b7502c10ebdf0d07ae7f83567a25f0e18501541a761f5456039a75fdca34","a6d5464c400860c746d59538eeac8aba030bd286a30382cb35ffa180bb45360b","882c65b85e101318cb241a04d9f6098f40f81f60969dc23ed43eca93aa208756","9b9ab0f61e1a9d1544cce8f6a898a67fcb398e7a2916c8f7bff196aeacaa42a1","70c76a6057c1bc0bba81bbfe37dd4bfb5d3ec470779543cf4265bacc8bc34fde","7f45c53d713e44a39ce9715516a742401ec67ca64d28e89800a1087b413bea11","fce8fdfd2fad64fd92d00849d61517872d7ffe130683216530ed80aa87c0d4ed","9d04be61d449837d03f2f2c6cb45862e01ecf27f2d9e9e649381923ec2ef183d","e7ef7f20139a8e1107206b6ebca0aeaf5afc106fdcd3320f72d8fa1aa6b8b376","6e30db287568ec99d3f9a9f13a250b8713c08f7e80258b00525118983f75b0a4","d1b9f9d3112a2a61002f35217328c4f9d8c855c97a7bffb3c07064e5d75bcdb2","d92b44ee50805ae18826ccbb6626a8956d1ad4030776e9d8d6665ac4b25594c2","9dbb17d8dd416cd59de116f60c92da5cd5a330657e4b1288ae1667f64ac976ed","c383e01b0a485533eacc2ece74da9806d24c2b04d3a78c0e88bbc170a26e948b","1ae78536a74e399118a613e2733285b11dc319385b205b91be0a2e3191fe2254","84f19808fafe26e154c513ae796980485e314327069d04239b4e3241adf5ff97","17f12aca109be03c5bdf67e1c7071c0ca86066806f373efe1706a6fbc760b705","fbbe6400d3c632bd8ec78c6c2e52f9f12a5730f1239850360b57c437af85efce","b84133cb67d1fef4258fb16730f559491d5d461a9846179f064b976eca2450f9","a4f479167a2b60f44d277e0e95ac7406391a32871d452c952963833288161e34","8db5ba8ae3754a488df8a62b76c8eade022c7931b4603f21f8691a7aa44e08cb","ae4ab429f512d21fb3ed429b3ca544a3568790f24a5450a9e1533b1b610ef26e","d3fda3824d4c8d8d37be73e0429c11a3521739a542b075ed44adb322fddcd7a6","811bf83a1de5e46170eab4fae912a4d33cc7a4f783a20b1e28d4c82bb75de9b7","0783408c38ff652538a7a6dd5a86121b88412589375480fa572d042c17ae0186","4dbbe40419e9749d380d28e2f25a1f806c5a7a405aa0308a178d750464b79dd7","9ff98cf113c2e37f217778541e2fdb9c2be84388a1d270eaa902c9aae61d7212","7e547303b50679bb7c97614c0040f2996d4e201b1e9ad7f19e10c0b59fc81c49","e50a6ce0708ba6bbe0907c3604aa1b461dbfc4f1960f7d29b7c3f6dbb7ecfa38","77e86cbec6fbdbc4c06163499aa24b76925613a174600cd0e14744712c1ffa71","beac06589b709b31baeaeb90f771868216b57549407a4a71abc1d858bc7ed9d8","de02780fe1506e22f50235523d193dea6689d947a356433eca7df4f4356d4476","33f9ba19058820c381b3ee185014b0014f73c692e00615afce686084af7195c6","8e1b0ebe06b33c85e728f3efa21804bfe177b25446da845c7ba2c91990e50ba4","91d0e80aae82040fc4d320d415f7118cc304bfd4e81fc20cd435921bd12913d0","bc492678c5eaa9363984d6c66b787720ced87d01882c702b040ce5b58cfc325f","84f688f194236138f32c258dc6fa571dbeeb80d5b0fce573fd91e325b13e846e","9f1fe22bca3d154b2eeb89900eeb6e35106e15a6e2bf53cd1fb00c024c002324","30c0316a4f23ab0b7f58fc049117d2ab4cc34e1d5b716ec13819a6d6e6537fb4","c6b147e0c606a69c2ca70917679f98e4cd2f52762c183a12c70d146f2c20a873","e9d90b998bf4224d53354910a8b649b26d96fdde74bfd860da416d6cc0a47afd","3d5839dcc56fa931ef88d454b74e117800c8b9e6c70dd5ccf61dd0dcb76fb187","d88cf5d04730fed67895c3aa49431184a184391a969cca50417edc68c37bd348","b2cfcb267f3ad6d48aa0b9c7a1146f63984f5ea1cd8dd63527eaf1738c713fca","45c971b451ed5d9aa8d2bb3cf052e74f1d5af0e644aa419d46008e2909c1c1d8","dbdcd6590670ad0392ddcdb9ddcd53eb9e3e4c5db174e6a03355609e29ea690e","5f439f9b428b4819042db3c9cd2ebc1d01227821c75c0d8416456781635996d5","89a092a002b46691edb0ac7b0d2785a1f2536547a98b06805a0ea8f7149e192c","3e827bec7f0ff866a5ea09daaa116c115157cdc536a24e698f190de52e322c93","c0c81406c104bf1aecd935b2947171b283ff3b153d539193b3151d54ecbed1b2","ffeebf5bab849797873e4a1e203f15c8a9ca1ef9ffff26b9cd7441d4ea19041c","490e36ecada1b2924a08a79137a30a4180ba888a4ad0099e0525ca80dd5c3502","63ed116bb4b5070309de7daa1a3b111d4ea67e485258ed82806130e59df74421","1d4dd1f50665186141bb602fd5a627f3d54343666f34c6eb6fec33cb8c906700","88879e7ee08b5a1b91368a17bb94e40526de99c36ab6d59a9e9f4beb7e571425","9ef9b3e43e4c3c092943fa1792c867fc4fee2bd1bbe54e6e91d6ce8bcccb0dd0","7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"02873d070f9cb79f50833fbf4a9a27ac578a2edf8ddb8421eba1b37faba83bfb","affectsGlobalScope":true},"21a167fec8f933752fb8157f06d28fab6817af3ad9b0bdb1908a10762391eab9",{"version":"c0db280fa6b09d7b8d6720a19a47f485956a41ee0e6914f1b704033eb69c6058","affectsGlobalScope":true},"0c0cee62cb619aed81133b904f644515ba3064487002a7da83fd8aa07b1b4abd","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","afcc1c426b76db7ec80e563d4fb0ba9e6bcc6e63c2d7e9342e649dc56d26347f","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","75ecef44f126e2ae018b4abbd85b6e8a2e2ba1638ebec56cc64274643ce3567b","f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true},"cec36af22f514322f870e81d30675c78df82ae8bf4863f5fd4e4424c040c678d","d903fafe96674bc0b2ac38a5be4a8fc07b14c2548d1cdb165a80ea24c44c0c54","b01a80007e448d035a16c74b5c95a5405b2e81b12fabcf18b75aa9eb9ef28990","04eb6578a588d6a46f50299b55f30e3a04ef27d0c5a46c57d8fcc211cd530faa","dbe5aa5a5dd8bd1c6a8d11b1310c3f0cdabaacc78a37b394a8c7b14faeb5fb84","2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"d4ac44f01d42f541631c5fc88d0ed8efac29a3a3ad9a745d9fd58f8b61ed132e","7c013aa892414a7fdcfd861ae524a668eaa3ede8c7c0acafaf611948122c8d93","b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30",{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true},{"version":"b3624aed92dab6da8484280d3cb3e2f4130ec3f4ef3f8201c95144ae9e898bb6","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","3163f47436da41706c6e2b3c1511f3b7cce9f9f3905b2f3e01246c48b4ba7d14","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","213fc4f2b172d8beb74b77d7c1b41488d67348066d185e4263470cbb010cd6e8",{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","4c8525f256873c7ba3135338c647eaf0ca7115a1a2805ae2d0056629461186ce","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true},{"version":"f7db71191aa7aac5d6bc927ed6e7075c2763d22c7238227ec0c63c8cf5cb6a8b","affectsGlobalScope":true},"06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","ec4bd1b200670fb567920db572d6701ed42a9641d09c4ff6869768c8f81b404c","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa",{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true},"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"652ee9c5103e89102d87bc20d167a02a0e3e5e53665674466c8cfea8a9e418c7","b50dc1eb21ae0cf50fdad3a52298af07a6c5aa681c55ecc68b45362294dc3972","2403a8e0780ec6f1e95f3a4f922eafdda29da975f0bffe7e35cad640b333247c","aa88fdf791a8ba56cf4e6d02fe429c5b04ce2503fe086f7e6e9f81531aeed3c1","3ded69a25b2b449fda06c6bb0e32fe4d12ba9de48dc13301da84dc0895374c6e","ca83a3200101528e59cc12cf22abe8eb9cf2a3b5bafa9a7bf8606562816d20df","94b86c9db78a81e040d2dafc1f7a8c3b9e70a24c222a845371fb1baa9eb132c6","bc81aff061c53a7140270555f4b22da4ecfe8601e8027cf5aa175fbdc7927c31","1442a75050bad91356b11dcea6dfb877154d1f2e00f863a9b17ba5e903659503","fb14266ae4070bd16db6b071e98887452bc359695c40742e38515a89dbc80a63","4a24d83c0d8f489465c4d38ed9fd87121c8a2cf50c47efe09c2eca93d39fa908","c052e32b9de53cd2596f196a0901801961bd7a31be9fac4ac2f117e4103e3a07","b15cdbb45919bc3b8e6b6f962d65382e85061d70bc26a968604f3dce4ad3a891","d6b58d955981bc1742501b792f1ab9f4cba0c4611f28dcf1c99376c1c33c9f9c","f0b9f6d5db82c3d1679f71b187c4451dbc2875ba734ce416a4804ad47390970a","a5c38939c3e22954a7166d80ab931ac6757283737b000f1e6dc924c6f4402b88","31a863da9da2a3edec16665695bdbc3134e853195f82dafec58e98c8e1bb3119","da728b7b918be9cbef6143a1f30563c8582b4801057777f383569c474fca4088","364c0af9dcfed9dc5a2467f1e30ba9e6b8c931e26d77fc78ed3fdeb96ac0dd96","547bf5974369e3ff85eee157cbc94a69ce177b218cf0586ab93731491c6fc5ae","5a0666d3bfaf3edcedd72e0a0819d7ad2128009acfe9d68f76b827872ffaca57","03058ca16f42d0a619f6faa3848096bcf5c5bb3382d12aae23c78a1e17888b31","e6bef70114b74828a98d49720fb98184c8faa2655801f7ff1d5399c14c8c4572","ef86c33a91aac82d86ae26dd7d5b049e094f1c9eed121375575e93a5217b4e0b","c01f626bffcdd96006259ee0d673d94cba9d196d2767aa194222971c3454686f","40871fe15e2ecf88714da0847588959d7049d34709a5c4f9f2584d8cdbda2874","2e3778314a396a2943ca5fcb1a2ada99127991eae68a3d6e054580f6e71f5f97","28497c60d13fd82b60e60b73b981fe229c74092b59d6379580ef0cff46746688","3b02d05d77deca903c41e78d5041412327ea7465543ee3484cefba51f33ba0dd","61bf0f4302ee1e5e4b2d037c7de82ce8410560dc61fcdadd1a1d4f016b99134c","2a851f3adebd931ec949cd374ce0ab05d59dae3cfe3a56300cb0f55c1b933213","367ab90a74f5c19abff93dfee24d933cb672c0d875e4ac95708703871be5707f","b5e855c95cc415765bf0cee8805edd2e6836f1e94207b9ea9da1d22b9590d3ea","07319d086eb114973ae76560b021df33c2b4d7dfde77867a29836ac7619768d0","ea38212c34e9ef0d803a4629c30d3808f984dbb8c8da792ec9dfc4cb4da07e46","653dbe1b437d6689e22c5d642b9439b3dd2c1cb138f56e19c4f6112ea812da2c","f382b47fc400a4f75c52fcefd6fb393c6f3fc85249bb87fd5678b01812d098f1","11c97f2e856596a67d789fc11e7edde7efbca3dfeb040543c3a52d4b12a5b258","a02e23dbe281ff7810e9e24bd3bf554aa69ac685f4893538bc6d01063bf444d1","5337bd9cee8222598bab8f01a140dcd030d567da487fb6418b849fb2455cfc25","3c0e17e33d3a5b3d2d74140c6b7f2a3d0d138d6b7579f22fb2761a2473b2d41c","86b3daf9ab347895482c127a5f80698d01bca9290ed3c63530f3d0f8ad3134ae","535c495248be283cce05bff71f4ebecc3c712ca7d4ef6735b143426b333e8083","1376fcb20905de176bd02c73f5fdd6dc0366d36d60725eec51273b30df79792c","19c2bc5072ded03c0e230bbf1560ffdb38ccde0ff19e640ba6ae9d4a067dec81","65d024d0983f35187ad678059a2815d98e4ba112575b597b0b4ee4b58a83fcb7","4897607f6544b9aba89c61ec30d0ff3b5089f082363034854c5acac847f8313a","992a7cc898964f2a4108222528adedc5473820c0d64fbda3a1c9aeb21a03d809","919f2cfcc5ffb092f09f8808b61d052b24a0a8548a5c07b4de8b5c492cf6ccc7","1d6800aeb28b8beac0b5f3fef6a481574d71919ecdb7075af52f88e1e28f9b71","e819b95115697c7ff89b83967da07287630837761c5cc2738ccc2a170971d4c4","ca29c120c816120222d7561cd221c6aad4af304cf06e234bc16a6ea59022878c","9c423c54bbf8ba1dc9fe8dd139d21e15f8ecebfa5b0e7c8d8f44aca266810099","b13986569a88ac17de80fc1ffa0860d0636051e91733437140bf399d56b26047","0d40cf3f6a3b799381e8e2aed00a6e8451e4b8e553e3f2b2415b4625c47ba9c3","22738c10c5a0c76db18caef6741ef17031642fd6a46f02989f5116dcea307f9e","6cf703a66860b2f1a58044937d9d59cf6c18551f56795d2f0b68a8f1da0f241b","bbf28aac6fc307a3925db448f87dc5e8d85b4806d9cead36f8776d77afa0b00f","fb724c133584a056c6d715ce5275bfa294e2378c8bacc28e9ecac1acd5e73717","3c681eacf1fbea01429d3c78f93dda4954109d3300b19a11c343f3583e607fb9","61d5ceb43470315ebaccc58a015eaf09754ea24459ce403a090ac64d3a00d941","3af0990420f89ab85b4bccff233385bf66fd1eb01bf691dfe31372c92a9f39c2","70b9caf34bb172722956a061e3a385a081f05a3e0d567176eff875372ce8049c","97ca28b5c460096532d75a9ce804407b96690b160fcda292fd662025d7484ef5","04ac11c12401bcc89f5ff15c93d5c6f9d38418d2cd6826e3a5aab9fa871ba6ad","d036f28759fdaacdf83649323db2a672d3649189e2f30f0a157606e96bad9787","2db56aa2c1cc6a1f505922bdfad8bdb849d52c89eb0bfb8294dc5642fb3da17f","c64f62cc96dd5380c4902be9ca310530316bb7c9f84ceafccd611b640f763608","f7a76e04d55272e70d5e4aa916062f943870ac3253d495e1bfc3fd8bf2678769","8d64013482f7244d852587624cdc453d8940291bd8cc365844fc90688e1fc15c","c6d1267fc1c14484cb320fadee1b0fad9f4f1ad0620c23fee7dabcc72738c514","12aa9c803cd79a739aa663156f39131869a41388bf253e3b51f0f61f98a07663","be92647dfc052cf320b5ac0bf79ac1df11c0b77cc6f0b1bf5be7dce314a7db68","ea4f5a4451505cad589168e6a31fa0fe6f5cff894cea623c531cd2dece0a4776","1a159891a2340adfb2c31ed2fc626212feb08f10a57b1b2238f3c24f06e7a3b8","fb60616c1ea763b8500f095795bd6007d78d532425857193c0fa43356d4a3a0d","6fd4d80e2c39c989d12ed03b97aef7f3503c9e20e87b0991e9cadc7e5dcbe41a","0a404e1089ad818585af89ebe894edc2e30102455759fe5ffc851abe57dd4d45","1dea9c7b5a574fb1d3c09a436e69aa874c9bd734a9ad9e19ecccdb8ee10d0739","8a20e1c333c6bc8a051a6408d5e24684383a8fa89f832f0475d12070220f8023","76200cf7360c740003e6b8912707413864a14022c2eb1aa387d9f693108ab3f6","889b4beefc59797c39dd56afbd7a441c95a55d64ada2640ed7537ffff93c3d43","d5ace6192178d45de42affa439c12585d4fe6aa51ec198da3261d64ce7f6897d","fc9c075827b48e02faa76886d02294f5c81446872aa715cb246c31180896914c","030e1fcbaf536940f6facf8677ff38f729b5574cfa6ebfcd6d354054ffd104af","c340b3d2b89e11d45944896444a83992fe9612eb3f9b66d26ce4d94b6fafbd3c","b9644ecef562c8e160f503fe461225631bea29c8d7bbd6af2b573c0abdd70fa8","cf8888dcc41b068af7a630cbfffccf68ce6f2ffb5413fda9ec562ca0493f8752","7bd5d8c3532aa28239678b30c08a3084912b8c1f1c68d524aa3c1e32bacbb6a6","a7321c0e96eecb19dcbf178493836474cef21ee3f9345384ce9d74e4be31228d","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","3054ef91b855e005b9c4681399e9d64d2a7b07a22d539314d794f09e53b876a7","427ce5854885cfc34387e09de05c1d5c1acf94c2143e1693f1d9ff54880573e7","bed2c4f96fab3348be4a34d88dcb12578c1b2475b07c6acd369e99e227718d81","e3ba509d3dce019b3190ceb2f3fc88e2610ab717122dabd91a9efaa37804040d","9ac9b7b349a96ff204f4172183cca1672cc402e1ee7277bfcdec96c000b7d818","ac127e4c6f2b5220b293cc9d2e64ba49781225b792a51cda50f3db8eafba550c",{"version":"f5e277afc658b3fefe1e9d06f3018416ea92f3e094bc21d38517f7f36627a5e4","affectsGlobalScope":true}],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"declarationMap":true,"downlevelIteration":true,"esModuleInterop":true,"module":99,"noFallthroughCasesInSwitch":true,"noImplicitAny":false,"noImplicitReturns":true,"noImplicitThis":true,"noUnusedLocals":false,"noUnusedParameters":false,"outDir":"./module","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"strictNullChecks":true,"strictPropertyInitialization":false,"target":99,"useDefineForClassFields":false},"fileIdsList":[[169,217],[42,43,44,45,217],[42,44,169,217],[47,48,50,51,52,53,217],[217],[49,217],[94,169,217],[94,95,96,97,98,99,100,101,103,104,217],[102,217],[55,56,57,58,59,60,61,62,63,217],[56,57,58,59,60,217],[65,66,67,68,69,70,71,72,73,74,75,217],[77,78,79,217],[81,82,83,84,85,86,217],[83,169,217],[46,54,64,76,80,87,91,93,105,107,166,168,217],[88,89,90,217],[89,169,217],[92,217],[106,217],[112,113,217],[117,118,119,120,121,122,217],[124,217],[125,126,127,128,129,130,131,132,217],[134,169,217],[156,169,217],[112,113,134,217],[134,135,136,137,138,157,158,159,217],[161,162,163,217],[141,169,217],[124,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,217],[113,169,217],[116,123,133,156,160,164,217],[108,109,110,111,114,115,217],[112,113,165,217],[167,217],[217,317,320],[217,315],[217,313,319],[217,317],[217,314,318],[217,316],[171,217],[174,217],[175,180,208,217],[176,187,188,195,205,216,217],[176,177,187,195,217],[178,217],[179,180,188,196,217],[180,205,213,217],[181,183,187,195,217],[182,217],[183,184,217],[187,217],[185,187,217],[187,188,189,205,216,217],[187,188,189,202,205,208,217],[217,221],[190,195,205,216,217],[187,188,190,191,195,205,213,216,217],[190,192,205,213,216,217],[171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223],[187,193,217],[194,216,217],[183,187,195,205,217],[196,217],[197,217],[174,198,217],[199,215,217,221],[200,217],[201,217],[187,202,203,217],[202,204,217,219],[175,187,205,206,207,208,217],[175,205,207,217],[205,206,217],[208,217],[209,217],[187,211,212,217],[211,212,217],[180,195,205,213,217],[214,217],[195,215,217],[175,190,201,216,217],[180,217],[205,217,218],[217,219],[217,220],[175,180,187,189,198,205,216,217,219,221],[205,217,222],[187,190,192,195,205,213,216,217,222,224],[217,233],[217,235],[217,233,234,235,236,237,238,239],[217,233,235],[217,224,225],[187,195,217,224,231,232,240],[217,231],[217,229,302],[217,246],[217,246,252],[170,217],[41,170,217,227,243,268,271,278,296],[217,227],[217,227,228,229,230,244,251,253,255,256,257,260,286,287,291,293,294,299,301,302,304,305,308,309],[217,293,294],[170,217,258,268,293],[217,307],[176,217,306],[170,217,227,228,270,271,289],[217,228,241,242,251,271,273,275],[217,228],[217,228,270,286],[217,241],[217,228,241,242,270,271,276,287,288],[41,217,270,271],[217,242,271,276,289,290],[217,228,241],[217,241,242],[217,230,254],[217,244,245,247],[170,217,228,229,244,260,261,262,263,264],[217,229,244,260],[41,217,227,248,249],[170,217,227,260],[41,217,227,243,248,249],[217,245],[217,228,301],[217,262,277],[170,217,258],[217,227,268],[217,248],[170,217,245,248,249,250,254,258,259,262,264,266,268,275,278,279,280,281,282,283,284,285],[180,217,245],[217,268],[217,260,262],[217,227,229,230,245,251,253,255],[170,217,228,242,260,276,290,298],[41,170,217,242,273,301],[170,217,226,227,228,229,230,242,244,249,250,251,255,256,257,259,260,262,263,264,265,266,267,268,269,272,274,276,284,291,292,295,296,297,298,299,300],[217,227,251,256,301],[217,227,228,229,230,242,250],[170,217,227,228,244,249,250,257,259]],"referencedMap":[[170,1],[46,2],[42,1],[43,1],[44,1],[45,3],[54,4],[47,5],[48,5],[49,5],[50,6],[51,5],[52,5],[53,5],[95,7],[96,5],[97,7],[98,7],[94,1],[99,1],[105,8],[101,1],[100,7],[102,1],[103,9],[104,5],[55,1],[64,10],[61,11],[62,1],[59,1],[60,5],[63,1],[56,1],[57,1],[58,1],[65,5],[66,5],[67,5],[68,5],[76,12],[69,5],[70,5],[71,1],[72,5],[73,5],[74,5],[75,5],[77,1],[78,5],[80,13],[79,1],[81,1],[83,1],[82,1],[87,14],[84,1],[85,1],[86,15],[169,16],[91,17],[88,1],[90,18],[89,1],[92,1],[93,19],[106,1],[107,20],[117,5],[118,5],[119,1],[120,5],[121,1],[122,21],[123,22],[125,23],[126,1],[127,5],[128,5],[129,1],[130,5],[131,1],[132,21],[133,24],[135,25],[136,5],[137,5],[138,1],[157,26],[158,5],[134,1],[159,27],[160,28],[161,5],[162,5],[163,1],[164,29],[139,1],[140,1],[142,30],[143,1],[156,31],[141,23],[144,1],[145,5],[146,1],[147,1],[148,1],[149,32],[150,5],[151,1],[152,1],[153,30],[124,1],[154,1],[155,1],[165,33],[115,5],[108,5],[109,1],[110,5],[111,5],[114,21],[116,34],[112,1],[113,1],[166,35],[167,1],[168,36],[321,37],[313,5],[316,38],[315,5],[314,5],[320,39],[318,40],[319,41],[317,42],[171,43],[172,43],[174,44],[175,45],[176,46],[177,47],[178,48],[179,49],[180,50],[181,51],[182,52],[183,53],[184,53],[186,54],[185,55],[187,54],[188,56],[189,57],[173,58],[223,5],[190,59],[191,60],[192,61],[224,62],[193,63],[194,64],[195,65],[196,66],[197,67],[198,68],[199,69],[200,70],[201,71],[202,72],[203,72],[204,73],[205,74],[207,75],[206,76],[208,77],[209,78],[210,5],[211,79],[212,80],[213,81],[214,82],[215,83],[216,84],[217,85],[218,86],[219,87],[220,88],[221,89],[222,90],[231,91],[234,92],[233,5],[236,93],[235,5],[239,5],[240,94],[238,95],[237,95],[225,5],[226,96],[241,97],[232,98],[8,5],[11,5],[10,5],[2,5],[12,5],[13,5],[14,5],[15,5],[16,5],[17,5],[18,5],[19,5],[3,5],[4,5],[23,5],[20,5],[21,5],[22,5],[24,5],[25,5],[26,5],[5,5],[27,5],[28,5],[29,5],[30,5],[6,5],[31,5],[32,5],[33,5],[34,5],[7,5],[39,5],[35,5],[36,5],[37,5],[38,5],[1,5],[40,5],[9,5],[41,5],[303,99],[257,5],[244,5],[247,100],[252,100],[253,101],[246,5],[227,102],[297,103],[296,104],[310,105],[228,102],[309,102],[295,106],[293,5],[294,107],[308,108],[307,109],[290,110],[276,111],[271,112],[287,113],[270,114],[289,115],[272,116],[291,117],[242,118],[288,119],[255,120],[230,5],[248,121],[305,5],[304,5],[265,122],[261,123],[262,124],[266,125],[250,126],[254,102],[306,127],[269,102],[300,128],[267,104],[278,129],[275,5],[259,130],[311,102],[279,131],[268,102],[312,127],[243,5],[280,130],[245,5],[281,132],[284,102],[258,102],[286,133],[292,134],[283,5],[285,134],[282,135],[249,104],[277,124],[263,136],[264,112],[273,102],[256,137],[299,138],[274,139],[301,140],[298,5],[302,141],[229,5],[251,142],[260,143]],"exportedModulesMap":[[170,1],[46,2],[42,1],[43,1],[44,1],[45,3],[54,4],[47,5],[48,5],[49,5],[50,6],[51,5],[52,5],[53,5],[95,7],[96,5],[97,7],[98,7],[94,1],[99,1],[105,8],[101,1],[100,7],[102,1],[103,9],[104,5],[55,1],[64,10],[61,11],[62,1],[59,1],[60,5],[63,1],[56,1],[57,1],[58,1],[65,5],[66,5],[67,5],[68,5],[76,12],[69,5],[70,5],[71,1],[72,5],[73,5],[74,5],[75,5],[77,1],[78,5],[80,13],[79,1],[81,1],[83,1],[82,1],[87,14],[84,1],[85,1],[86,15],[169,16],[91,17],[88,1],[90,18],[89,1],[92,1],[93,19],[106,1],[107,20],[117,5],[118,5],[119,1],[120,5],[121,1],[122,21],[123,22],[125,23],[126,1],[127,5],[128,5],[129,1],[130,5],[131,1],[132,21],[133,24],[135,25],[136,5],[137,5],[138,1],[157,26],[158,5],[134,1],[159,27],[160,28],[161,5],[162,5],[163,1],[164,29],[139,1],[140,1],[142,30],[143,1],[156,31],[141,23],[144,1],[145,5],[146,1],[147,1],[148,1],[149,32],[150,5],[151,1],[152,1],[153,30],[124,1],[154,1],[155,1],[165,33],[115,5],[108,5],[109,1],[110,5],[111,5],[114,21],[116,34],[112,1],[113,1],[166,35],[167,1],[168,36],[321,37],[313,5],[316,38],[315,5],[314,5],[320,39],[318,40],[319,41],[317,42],[171,43],[172,43],[174,44],[175,45],[176,46],[177,47],[178,48],[179,49],[180,50],[181,51],[182,52],[183,53],[184,53],[186,54],[185,55],[187,54],[188,56],[189,57],[173,58],[223,5],[190,59],[191,60],[192,61],[224,62],[193,63],[194,64],[195,65],[196,66],[197,67],[198,68],[199,69],[200,70],[201,71],[202,72],[203,72],[204,73],[205,74],[207,75],[206,76],[208,77],[209,78],[210,5],[211,79],[212,80],[213,81],[214,82],[215,83],[216,84],[217,85],[218,86],[219,87],[220,88],[221,89],[222,90],[231,91],[234,92],[233,5],[236,93],[235,5],[239,5],[240,94],[238,95],[237,95],[225,5],[226,96],[241,97],[232,98],[8,5],[11,5],[10,5],[2,5],[12,5],[13,5],[14,5],[15,5],[16,5],[17,5],[18,5],[19,5],[3,5],[4,5],[23,5],[20,5],[21,5],[22,5],[24,5],[25,5],[26,5],[5,5],[27,5],[28,5],[29,5],[30,5],[6,5],[31,5],[32,5],[33,5],[34,5],[7,5],[39,5],[35,5],[36,5],[37,5],[38,5],[1,5],[40,5],[9,5],[41,5],[303,99],[257,5],[244,5],[247,100],[252,100],[253,101],[246,5],[227,102],[297,103],[296,104],[310,105],[228,102],[309,102],[295,106],[293,5],[294,107],[308,108],[307,109],[290,110],[276,111],[271,112],[287,113],[270,114],[289,115],[272,116],[291,117],[242,118],[288,119],[255,120],[230,5],[248,121],[305,5],[304,5],[265,122],[261,123],[262,124],[266,125],[250,126],[254,102],[306,127],[269,102],[300,128],[267,104],[278,129],[275,5],[259,130],[311,102],[279,131],[268,102],[312,127],[243,5],[280,130],[245,5],[281,132],[284,102],[258,102],[286,133],[292,134],[283,5],[285,134],[282,135],[249,104],[277,124],[263,136],[264,112],[273,102],[256,137],[299,138],[274,139],[301,140],[298,5],[302,141],[229,5],[251,142],[260,143]],"semanticDiagnosticsPerFile":[170,46,42,43,44,45,54,47,48,49,50,51,52,53,95,96,97,98,94,99,105,101,100,102,103,104,55,64,61,62,59,60,63,56,57,58,65,66,67,68,76,69,70,71,72,73,74,75,77,78,80,79,81,83,82,87,84,85,86,169,91,88,90,89,92,93,106,107,117,118,119,120,121,122,123,125,126,127,128,129,130,131,132,133,135,136,137,138,157,158,134,159,160,161,162,163,164,139,140,142,143,156,141,144,145,146,147,148,149,150,151,152,153,124,154,155,165,115,108,109,110,111,114,116,112,113,166,167,168,321,313,316,315,314,320,318,319,317,171,172,174,175,176,177,178,179,180,181,182,183,184,186,185,187,188,189,173,223,190,191,192,224,193,194,195,196,197,198,199,200,201,202,203,204,205,207,206,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,231,234,233,236,235,239,240,238,237,225,226,241,232,8,11,10,2,12,13,14,15,16,17,18,19,3,4,23,20,21,22,24,25,26,5,27,28,29,30,6,31,32,33,34,7,39,35,36,37,38,1,40,9,41,303,257,244,247,252,253,246,227,297,296,310,228,309,295,293,294,308,307,290,276,271,287,270,289,272,291,242,288,255,230,248,305,304,265,261,262,266,250,254,306,269,300,267,278,275,259,311,279,268,312,243,280,245,281,284,258,286,292,283,285,282,249,277,263,264,273,256,299,274,301,298,302,229,251,260]},"version":"4.4.3"}
|
package/package.json
CHANGED
package/src/wallet/Bcmr.ts
CHANGED
|
@@ -426,12 +426,7 @@ export class BCMR {
|
|
|
426
426
|
{
|
|
427
427
|
transaction(
|
|
428
428
|
where: {
|
|
429
|
-
hash:{_eq:"\\\\x${options.transactionHash}"}
|
|
430
|
-
${
|
|
431
|
-
options.network
|
|
432
|
-
? `node_validation_timeline:{node:{name:{_ilike:"%${options.network}%"}}}`
|
|
433
|
-
: ""
|
|
434
|
-
}
|
|
429
|
+
hash:{_eq:"\\\\x${options.transactionHash}"}
|
|
435
430
|
}
|
|
436
431
|
) {
|
|
437
432
|
hash
|