auto-commit for cec575c0-476c-4bef-83da-9ee19fcf043c

This commit is contained in:
emergent-agent-e1
2025-11-08 10:07:13 +00:00
parent e576e8b1ef
commit 8ed8fb904f
2784 changed files with 2784 additions and 0 deletions
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
{"dependencies":[{"name":"tslib","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":3,"column":16,"index":93},"end":{"line":3,"column":32,"index":109}}],"key":"vm88vOsSPZItrLOmMEyUuGkd1y4=","exportNames":["*"],"imports":1}},{"name":"./drr.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":4,"column":21,"index":132},"end":{"line":4,"column":40,"index":151}}],"key":"RJIkLfUM9OQlmo1PwR9tS45OvJo=","exportNames":["*"],"imports":1}},{"name":"./memo.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":5,"column":21,"index":184},"end":{"line":5,"column":41,"index":204}}],"key":"M0PnyZHO8GQjaQfs9fvCZFj2ReY=","exportNames":["*"],"imports":1}},{"name":"./refCountDelay.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":6,"column":21,"index":237},"end":{"line":6,"column":50,"index":266}}],"key":"VuWnqgomkKMC7whrmKJkXTcWhik=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n Object.defineProperty(exports, \"__esModule\", {\n value: true\n });\n var tslib_1 = require(_dependencyMap[0], \"tslib\");\n tslib_1.__exportStar(require(_dependencyMap[1], \"./drr.js\"), exports);\n tslib_1.__exportStar(require(_dependencyMap[2], \"./memo.js\"), exports);\n tslib_1.__exportStar(require(_dependencyMap[3], \"./refCountDelay.js\"), exports);\n});","lineCount":11,"map":[[2,2,1,0],[2,14,1,12],[4,2,2,0,"Object"],[4,8,2,6],[4,9,2,7,"defineProperty"],[4,23,2,21],[4,24,2,22,"exports"],[4,31,2,29],[4,33,2,31],[4,45,2,43],[4,47,2,45],[5,4,2,47,"value"],[5,9,2,52],[5,11,2,54],[6,2,2,59],[6,3,2,60],[6,4,2,61],[7,2,3,0],[7,6,3,6,"tslib_1"],[7,13,3,13],[7,16,3,16,"require"],[7,23,3,23],[7,24,3,23,"_dependencyMap"],[7,38,3,23],[7,50,3,31],[7,51,3,32],[8,2,4,0,"tslib_1"],[8,9,4,7],[8,10,4,8,"__exportStar"],[8,22,4,20],[8,23,4,21,"require"],[8,30,4,28],[8,31,4,28,"_dependencyMap"],[8,45,4,28],[8,60,4,39],[8,61,4,40],[8,63,4,42,"exports"],[8,70,4,49],[8,71,4,50],[9,2,5,0,"tslib_1"],[9,9,5,7],[9,10,5,8,"__exportStar"],[9,22,5,20],[9,23,5,21,"require"],[9,30,5,28],[9,31,5,28,"_dependencyMap"],[9,45,5,28],[9,61,5,40],[9,62,5,41],[9,64,5,43,"exports"],[9,71,5,50],[9,72,5,51],[10,2,6,0,"tslib_1"],[10,9,6,7],[10,10,6,8,"__exportStar"],[10,22,6,20],[10,23,6,21,"require"],[10,30,6,28],[10,31,6,28,"_dependencyMap"],[10,45,6,28],[10,70,6,49],[10,71,6,50],[10,73,6,52,"exports"],[10,80,6,59],[10,81,6,60],[11,0,6,61],[11,3]],"functionMap":{"names":["<global>"],"mappings":"AAA"},"hasCjsExports":false},"type":"js/module"}]}
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
{"dependencies":[{"name":"../u8a/eq.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":4,"column":16,"index":120},"end":{"line":4,"column":39,"index":143}}],"key":"OmM6CbvOWZU4Y32F3tMYZeFvdAc=","exportNames":["*"],"imports":1}},{"name":"./u8a.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":5,"column":17,"index":162},"end":{"line":5,"column":36,"index":181}}],"key":"DSv8TXMLYjJA4pNNnZgSQ7jiUn4=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n Object.defineProperty(exports, \"__esModule\", {\n value: true\n });\n exports.isRiscV = isRiscV;\n var eq_js_1 = require(_dependencyMap[0], \"../u8a/eq.js\");\n var u8a_js_1 = require(_dependencyMap[1], \"./u8a.js\");\n var ELF_MAGIC = new Uint8Array([0x7f, 0x45, 0x4c, 0x46]); // ELF magic bytes: 0x7f, 'E', 'L', 'F'\n var PVM_MAGIC = new Uint8Array([0x50, 0x56, 0x4d, 0x00]); // 'P', 'V', 'M', 0x00\n /**\n * @name isRiscV\n * @summary Tests if the input has a RISC-V header\n * @description\n * Checks to see if the input Uint8Array contains a valid RISC-V header\n */\n function isRiscV(bytes) {\n if ((0, u8a_js_1.isU8a)(bytes)) {\n var start = bytes.subarray(0, 4);\n return (0, eq_js_1.u8aEq)(start, PVM_MAGIC) || (0, eq_js_1.u8aEq)(start, ELF_MAGIC);\n }\n return false;\n }\n});","lineCount":25,"map":[[2,2,1,0],[2,14,1,12],[4,2,2,0,"Object"],[4,8,2,6],[4,9,2,7,"defineProperty"],[4,23,2,21],[4,24,2,22,"exports"],[4,31,2,29],[4,33,2,31],[4,45,2,43],[4,47,2,45],[5,4,2,47,"value"],[5,9,2,52],[5,11,2,54],[6,2,2,59],[6,3,2,60],[6,4,2,61],[7,2,3,0,"exports"],[7,9,3,7],[7,10,3,8,"isRiscV"],[7,17,3,15],[7,20,3,18,"isRiscV"],[7,27,3,25],[8,2,4,0],[8,6,4,6,"eq_js_1"],[8,13,4,13],[8,16,4,16,"require"],[8,23,4,23],[8,24,4,23,"_dependencyMap"],[8,38,4,23],[8,57,4,38],[8,58,4,39],[9,2,5,0],[9,6,5,6,"u8a_js_1"],[9,14,5,14],[9,17,5,17,"require"],[9,24,5,24],[9,25,5,24,"_dependencyMap"],[9,39,5,24],[9,54,5,35],[9,55,5,36],[10,2,6,0],[10,6,6,6,"ELF_MAGIC"],[10,15,6,15],[10,18,6,18],[10,22,6,22,"Uint8Array"],[10,32,6,32],[10,33,6,33],[10,34,6,34],[10,38,6,38],[10,40,6,40],[10,44,6,44],[10,46,6,46],[10,50,6,50],[10,52,6,52],[10,56,6,56],[10,57,6,57],[10,58,6,58],[10,59,6,59],[10,60,6,60],[11,2,7,0],[11,6,7,6,"PVM_MAGIC"],[11,15,7,15],[11,18,7,18],[11,22,7,22,"Uint8Array"],[11,32,7,32],[11,33,7,33],[11,34,7,34],[11,38,7,38],[11,40,7,40],[11,44,7,44],[11,46,7,46],[11,50,7,50],[11,52,7,52],[11,56,7,56],[11,57,7,57],[11,58,7,58],[11,59,7,59],[11,60,7,60],[12,2,8,0],[13,0,9,0],[14,0,10,0],[15,0,11,0],[16,0,12,0],[17,0,13,0],[18,2,14,0],[18,11,14,9,"isRiscV"],[18,18,14,16,"isRiscV"],[18,19,14,17,"bytes"],[18,24,14,22],[18,26,14,24],[19,4,15,4],[19,8,15,8],[19,9,15,9],[19,10,15,10],[19,12,15,12,"u8a_js_1"],[19,20,15,20],[19,21,15,21,"isU8a"],[19,26,15,26],[19,28,15,28,"bytes"],[19,33,15,33],[19,34,15,34],[19,36,15,36],[20,6,16,8],[20,10,16,14,"start"],[20,15,16,19],[20,18,16,22,"bytes"],[20,23,16,27],[20,24,16,28,"subarray"],[20,32,16,36],[20,33,16,37],[20,34,16,38],[20,36,16,40],[20,37,16,41],[20,38,16,42],[21,6,17,8],[21,13,17,15],[21,14,17,16],[21,15,17,17],[21,17,17,19,"eq_js_1"],[21,24,17,26],[21,25,17,27,"u8aEq"],[21,30,17,32],[21,32,17,34,"start"],[21,37,17,39],[21,39,17,41,"PVM_MAGIC"],[21,48,17,50],[21,49,17,51],[21,53,17,55],[21,54,17,56],[21,55,17,57],[21,57,17,59,"eq_js_1"],[21,64,17,66],[21,65,17,67,"u8aEq"],[21,70,17,72],[21,72,17,74,"start"],[21,77,17,79],[21,79,17,81,"ELF_MAGIC"],[21,88,17,90],[21,89,17,91],[22,4,18,4],[23,4,19,4],[23,11,19,11],[23,16,19,16],[24,2,20,0],[25,0,20,1],[25,3]],"functionMap":{"names":["<global>","isRiscV"],"mappings":"AAA;ACa;CDM"},"hasCjsExports":true},"type":"js/module"}]}
@@ -0,0 +1 @@
{"dependencies":[{"name":"../blake2/index.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":4,"column":19,"index":121},"end":{"line":4,"column":48,"index":150}}],"key":"YR0jBqQR+TA3PQ9TFXUfji1WaVo=","exportNames":["*"],"imports":1}},{"name":"../keccak/index.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":5,"column":19,"index":171},"end":{"line":5,"column":48,"index":200}}],"key":"9nQlM848DtQehnP9/NVIHJWoLxU=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n Object.defineProperty(exports, \"__esModule\", {\n value: true\n });\n exports.hasher = hasher;\n var index_js_1 = require(_dependencyMap[0], \"../blake2/index.js\");\n var index_js_2 = require(_dependencyMap[1], \"../keccak/index.js\");\n function hasher(hashType, data, onlyJs) {\n return hashType === 'keccak' ? (0, index_js_2.keccakAsU8a)(data, undefined, onlyJs) : (0, index_js_1.blake2AsU8a)(data, undefined, undefined, onlyJs);\n }\n});","lineCount":13,"map":[[2,2,1,0],[2,14,1,12],[4,2,2,0,"Object"],[4,8,2,6],[4,9,2,7,"defineProperty"],[4,23,2,21],[4,24,2,22,"exports"],[4,31,2,29],[4,33,2,31],[4,45,2,43],[4,47,2,45],[5,4,2,47,"value"],[5,9,2,52],[5,11,2,54],[6,2,2,59],[6,3,2,60],[6,4,2,61],[7,2,3,0,"exports"],[7,9,3,7],[7,10,3,8,"hasher"],[7,16,3,14],[7,19,3,17,"hasher"],[7,25,3,23],[8,2,4,0],[8,6,4,6,"index_js_1"],[8,16,4,16],[8,19,4,19,"require"],[8,26,4,26],[8,27,4,26,"_dependencyMap"],[8,41,4,26],[8,66,4,47],[8,67,4,48],[9,2,5,0],[9,6,5,6,"index_js_2"],[9,16,5,16],[9,19,5,19,"require"],[9,26,5,26],[9,27,5,26,"_dependencyMap"],[9,41,5,26],[9,66,5,47],[9,67,5,48],[10,2,6,0],[10,11,6,9,"hasher"],[10,17,6,15,"hasher"],[10,18,6,16,"hashType"],[10,26,6,24],[10,28,6,26,"data"],[10,32,6,30],[10,34,6,32,"onlyJs"],[10,40,6,38],[10,42,6,40],[11,4,7,4],[11,11,7,11,"hashType"],[11,19,7,19],[11,24,7,24],[11,32,7,32],[11,35,8,10],[11,36,8,11],[11,37,8,12],[11,39,8,14,"index_js_2"],[11,49,8,24],[11,50,8,25,"keccakAsU8a"],[11,61,8,36],[11,63,8,38,"data"],[11,67,8,42],[11,69,8,44,"undefined"],[11,78,8,53],[11,80,8,55,"onlyJs"],[11,86,8,61],[11,87,8,62],[11,90,9,10],[11,91,9,11],[11,92,9,12],[11,94,9,14,"index_js_1"],[11,104,9,24],[11,105,9,25,"blake2AsU8a"],[11,116,9,36],[11,118,9,38,"data"],[11,122,9,42],[11,124,9,44,"undefined"],[11,133,9,53],[11,135,9,55,"undefined"],[11,144,9,64],[11,146,9,66,"onlyJs"],[11,152,9,72],[11,153,9,73],[12,2,10,0],[13,0,10,1],[13,3]],"functionMap":{"names":["<global>","hasher"],"mappings":"AAA;ACK;CDI"},"hasCjsExports":true},"type":"js/module"}]}
@@ -0,0 +1 @@
{"dependencies":[],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n Object.defineProperty(exports, \"__esModule\", {\n value: true\n });\n exports.createNotification = exports.nextNotification = exports.errorNotification = exports.COMPLETE_NOTIFICATION = void 0;\n exports.COMPLETE_NOTIFICATION = function () {\n return createNotification('C', undefined, undefined);\n }();\n function errorNotification(error) {\n return createNotification('E', undefined, error);\n }\n exports.errorNotification = errorNotification;\n function nextNotification(value) {\n return createNotification('N', value, undefined);\n }\n exports.nextNotification = nextNotification;\n function createNotification(kind, value, error) {\n return {\n kind: kind,\n value: value,\n error: error\n };\n }\n exports.createNotification = createNotification;\n});","lineCount":27,"map":[[2,2,1,0],[2,14,1,12],[4,2,2,0,"Object"],[4,8,2,6],[4,9,2,7,"defineProperty"],[4,23,2,21],[4,24,2,22,"exports"],[4,31,2,29],[4,33,2,31],[4,45,2,43],[4,47,2,45],[5,4,2,47,"value"],[5,9,2,52],[5,11,2,54],[6,2,2,59],[6,3,2,60],[6,4,2,61],[7,2,3,0,"exports"],[7,9,3,7],[7,10,3,8,"createNotification"],[7,28,3,26],[7,31,3,29,"exports"],[7,38,3,36],[7,39,3,37,"nextNotification"],[7,55,3,53],[7,58,3,56,"exports"],[7,65,3,63],[7,66,3,64,"errorNotification"],[7,83,3,81],[7,86,3,84,"exports"],[7,93,3,91],[7,94,3,92,"COMPLETE_NOTIFICATION"],[7,115,3,113],[7,118,3,116],[7,123,3,121],[7,124,3,122],[8,2,4,0,"exports"],[8,9,4,7],[8,10,4,8,"COMPLETE_NOTIFICATION"],[8,31,4,29],[8,34,4,33],[8,46,4,45],[9,4,4,47],[9,11,4,54,"createNotification"],[9,29,4,72],[9,30,4,73],[9,33,4,76],[9,35,4,78,"undefined"],[9,44,4,87],[9,46,4,89,"undefined"],[9,55,4,98],[9,56,4,99],[10,2,4,101],[10,3,4,102],[10,4,4,104],[10,5,4,105],[11,2,5,0],[11,11,5,9,"errorNotification"],[11,28,5,26,"errorNotification"],[11,29,5,27,"error"],[11,34,5,32],[11,36,5,34],[12,4,6,4],[12,11,6,11,"createNotification"],[12,29,6,29],[12,30,6,30],[12,33,6,33],[12,35,6,35,"undefined"],[12,44,6,44],[12,46,6,46,"error"],[12,51,6,51],[12,52,6,52],[13,2,7,0],[14,2,8,0,"exports"],[14,9,8,7],[14,10,8,8,"errorNotification"],[14,27,8,25],[14,30,8,28,"errorNotification"],[14,47,8,45],[15,2,9,0],[15,11,9,9,"nextNotification"],[15,27,9,25,"nextNotification"],[15,28,9,26,"value"],[15,33,9,31],[15,35,9,33],[16,4,10,4],[16,11,10,11,"createNotification"],[16,29,10,29],[16,30,10,30],[16,33,10,33],[16,35,10,35,"value"],[16,40,10,40],[16,42,10,42,"undefined"],[16,51,10,51],[16,52,10,52],[17,2,11,0],[18,2,12,0,"exports"],[18,9,12,7],[18,10,12,8,"nextNotification"],[18,26,12,24],[18,29,12,27,"nextNotification"],[18,45,12,43],[19,2,13,0],[19,11,13,9,"createNotification"],[19,29,13,27,"createNotification"],[19,30,13,28,"kind"],[19,34,13,32],[19,36,13,34,"value"],[19,41,13,39],[19,43,13,41,"error"],[19,48,13,46],[19,50,13,48],[20,4,14,4],[20,11,14,11],[21,6,15,8,"kind"],[21,10,15,12],[21,12,15,14,"kind"],[21,16,15,18],[22,6,16,8,"value"],[22,11,16,13],[22,13,16,15,"value"],[22,18,16,20],[23,6,17,8,"error"],[23,11,17,13],[23,13,17,15,"error"],[24,4,18,4],[24,5,18,5],[25,2,19,0],[26,2,20,0,"exports"],[26,9,20,7],[26,10,20,8,"createNotification"],[26,28,20,26],[26,31,20,29,"createNotification"],[26,49,20,47],[27,0,20,48],[27,3]],"functionMap":{"names":["<global>","<anonymous>","errorNotification","nextNotification","createNotification"],"mappings":"AAA;iCCG,qED;AEC;CFE;AGE;CHE;AIE;CJM"},"hasCjsExports":true},"type":"js/module"}]}
@@ -0,0 +1 @@
{"dependencies":[{"name":"tslib","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":4,"column":16,"index":139},"end":{"line":4,"column":32,"index":155}}],"key":"vm88vOsSPZItrLOmMEyUuGkd1y4=","exportNames":["*"],"imports":1}},{"name":"./all.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":5,"column":17,"index":174},"end":{"line":5,"column":36,"index":193}}],"key":"M65qxOjUxD1jp7g+tcCEX7hAqRY=","exportNames":["*"],"imports":1}},{"name":"./account.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":7,"column":21,"index":320},"end":{"line":7,"column":44,"index":343}}],"key":"d1J3uJlkd7TxKqHuvCXbI8b+m1Y=","exportNames":["*"],"imports":1}},{"name":"./votingBalances.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":8,"column":21,"index":376},"end":{"line":8,"column":51,"index":406}}],"key":"QwyrL5yV4SF+u16XNyxRSeK6mMc=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n Object.defineProperty(exports, \"__esModule\", {\n value: true\n });\n exports.votingBalance = exports.all = void 0;\n var tslib_1 = require(_dependencyMap[0], \"tslib\");\n var all_js_1 = require(_dependencyMap[1], \"./all.js\");\n Object.defineProperty(exports, \"all\", {\n enumerable: true,\n get: function get() {\n return all_js_1.all;\n }\n });\n tslib_1.__exportStar(require(_dependencyMap[2], \"./account.js\"), exports);\n tslib_1.__exportStar(require(_dependencyMap[3], \"./votingBalances.js\"), exports);\n /**\n * @name votingBalance\n * @param {( AccountId | string )} address An accounts Id in different formats.\n * @returns An object containing the results of various balance queries\n * @example\n * <BR>\n *\n * ```javascript\n * const ALICE = 'F7Hs';\n *\n * api.derive.balances.votingBalance(ALICE, ({ accountId, lockedBalance }) => {\n * console.log(`The account ${accountId} has a locked balance ${lockedBalance} units.`);\n * });\n * ```\n */\n var votingBalance = all_js_1.all;\n exports.votingBalance = votingBalance;\n});","lineCount":35,"map":[[2,2,1,0],[2,14,1,12],[4,2,2,0,"Object"],[4,8,2,6],[4,9,2,7,"defineProperty"],[4,23,2,21],[4,24,2,22,"exports"],[4,31,2,29],[4,33,2,31],[4,45,2,43],[4,47,2,45],[5,4,2,47,"value"],[5,9,2,52],[5,11,2,54],[6,2,2,59],[6,3,2,60],[6,4,2,61],[7,2,3,0,"exports"],[7,9,3,7],[7,10,3,8,"votingBalance"],[7,23,3,21],[7,26,3,24,"exports"],[7,33,3,31],[7,34,3,32,"all"],[7,37,3,35],[7,40,3,38],[7,45,3,43],[7,46,3,44],[8,2,4,0],[8,6,4,6,"tslib_1"],[8,13,4,13],[8,16,4,16,"require"],[8,23,4,23],[8,24,4,23,"_dependencyMap"],[8,38,4,23],[8,50,4,31],[8,51,4,32],[9,2,5,0],[9,6,5,6,"all_js_1"],[9,14,5,14],[9,17,5,17,"require"],[9,24,5,24],[9,25,5,24,"_dependencyMap"],[9,39,5,24],[9,54,5,35],[9,55,5,36],[10,2,6,0,"Object"],[10,8,6,6],[10,9,6,7,"defineProperty"],[10,23,6,21],[10,24,6,22,"exports"],[10,31,6,29],[10,33,6,31],[10,38,6,36],[10,40,6,38],[11,4,6,40,"enumerable"],[11,14,6,50],[11,16,6,52],[11,20,6,56],[12,4,6,58,"get"],[12,7,6,61],[12,9,6,63],[12,18,6,58,"get"],[12,21,6,61,"get"],[12,22,6,61],[12,24,6,75],[13,6,6,77],[13,13,6,84,"all_js_1"],[13,21,6,92],[13,22,6,93,"all"],[13,25,6,96],[14,4,6,98],[15,2,6,100],[15,3,6,101],[15,4,6,102],[16,2,7,0,"tslib_1"],[16,9,7,7],[16,10,7,8,"__exportStar"],[16,22,7,20],[16,23,7,21,"require"],[16,30,7,28],[16,31,7,28,"_dependencyMap"],[16,45,7,28],[16,64,7,43],[16,65,7,44],[16,67,7,46,"exports"],[16,74,7,53],[16,75,7,54],[17,2,8,0,"tslib_1"],[17,9,8,7],[17,10,8,8,"__exportStar"],[17,22,8,20],[17,23,8,21,"require"],[17,30,8,28],[17,31,8,28,"_dependencyMap"],[17,45,8,28],[17,71,8,50],[17,72,8,51],[17,74,8,53,"exports"],[17,81,8,60],[17,82,8,61],[18,2,9,0],[19,0,10,0],[20,0,11,0],[21,0,12,0],[22,0,13,0],[23,0,14,0],[24,0,15,0],[25,0,16,0],[26,0,17,0],[27,0,18,0],[28,0,19,0],[29,0,20,0],[30,0,21,0],[31,0,22,0],[32,0,23,0],[33,2,24,0],[33,6,24,6,"votingBalance"],[33,19,24,19],[33,22,24,22,"all_js_1"],[33,30,24,30],[33,31,24,31,"all"],[33,34,24,34],[34,2,25,0,"exports"],[34,9,25,7],[34,10,25,8,"votingBalance"],[34,23,25,21],[34,26,25,24,"votingBalance"],[34,39,25,37],[35,0,25,38],[35,3]],"functionMap":{"names":["<global>","Object.defineProperty$argument_2.get"],"mappings":"AAA;+DCK,oCD"},"hasCjsExports":true},"type":"js/module"}]}
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
{"dependencies":[{"name":"@polkadot/x-textdecoder","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":3,"column":24,"index":101},"end":{"line":3,"column":58,"index":135}}],"key":"jhoOyeBficgOTtSqXBXdmOV+yy8=","exportNames":["*"],"imports":1}},{"name":"@polkadot/x-textencoder","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":4,"column":24,"index":161},"end":{"line":4,"column":58,"index":195}}],"key":"OqERfkDoMyT6OgnmmKGdOc0Wpl8=","exportNames":["*"],"imports":1}},{"name":"./detectPackage.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":5,"column":27,"index":224},"end":{"line":5,"column":56,"index":253}}],"key":"cP56ypz+wc1jLj3tBGAFmQz0F+Q=","exportNames":["*"],"imports":1}},{"name":"./packageInfo.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":6,"column":25,"index":280},"end":{"line":6,"column":52,"index":307}}],"key":"Ffmb0bdQh5N+BVJ7J3zvmqqfh9A=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n Object.defineProperty(exports, \"__esModule\", {\n value: true\n });\n var x_textdecoder_1 = require(_dependencyMap[0], \"@polkadot/x-textdecoder\");\n var x_textencoder_1 = require(_dependencyMap[1], \"@polkadot/x-textencoder\");\n var detectPackage_js_1 = require(_dependencyMap[2], \"./detectPackage.js\");\n var packageInfo_js_1 = require(_dependencyMap[3], \"./packageInfo.js\");\n (0, detectPackage_js_1.detectPackage)(packageInfo_js_1.packageInfo, null, [x_textdecoder_1.packageInfo, x_textencoder_1.packageInfo]);\n});","lineCount":12,"map":[[2,2,1,0],[2,14,1,12],[4,2,2,0,"Object"],[4,8,2,6],[4,9,2,7,"defineProperty"],[4,23,2,21],[4,24,2,22,"exports"],[4,31,2,29],[4,33,2,31],[4,45,2,43],[4,47,2,45],[5,4,2,47,"value"],[5,9,2,52],[5,11,2,54],[6,2,2,59],[6,3,2,60],[6,4,2,61],[7,2,3,0],[7,6,3,6,"x_textdecoder_1"],[7,21,3,21],[7,24,3,24,"require"],[7,31,3,31],[7,32,3,31,"_dependencyMap"],[7,46,3,31],[7,76,3,57],[7,77,3,58],[8,2,4,0],[8,6,4,6,"x_textencoder_1"],[8,21,4,21],[8,24,4,24,"require"],[8,31,4,31],[8,32,4,31,"_dependencyMap"],[8,46,4,31],[8,76,4,57],[8,77,4,58],[9,2,5,0],[9,6,5,6,"detectPackage_js_1"],[9,24,5,24],[9,27,5,27,"require"],[9,34,5,34],[9,35,5,34,"_dependencyMap"],[9,49,5,34],[9,74,5,55],[9,75,5,56],[10,2,6,0],[10,6,6,6,"packageInfo_js_1"],[10,22,6,22],[10,25,6,25,"require"],[10,32,6,32],[10,33,6,32,"_dependencyMap"],[10,47,6,32],[10,70,6,51],[10,71,6,52],[11,2,7,0],[11,3,7,1],[11,4,7,2],[11,6,7,4,"detectPackage_js_1"],[11,24,7,22],[11,25,7,23,"detectPackage"],[11,38,7,36],[11,40,7,38,"packageInfo_js_1"],[11,56,7,54],[11,57,7,55,"packageInfo"],[11,68,7,66],[11,70,7,68],[11,74,7,72],[11,76,7,74],[11,77,7,75,"x_textdecoder_1"],[11,92,7,90],[11,93,7,91,"packageInfo"],[11,104,7,102],[11,106,7,104,"x_textencoder_1"],[11,121,7,119],[11,122,7,120,"packageInfo"],[11,133,7,131],[11,134,7,132],[11,135,7,133],[12,0,7,134],[12,3]],"functionMap":{"names":["<global>"],"mappings":"AAA"},"hasCjsExports":false},"type":"js/module"}]}
@@ -0,0 +1 @@
{"dependencies":[{"name":"../util/EmptyError","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":4,"column":19,"index":127},"end":{"line":4,"column":48,"index":156}}],"key":"bmd4/FitT0H4WOqsRg0pJ7ZtnvU=","exportNames":["*"],"imports":1}},{"name":"../util/lift","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":5,"column":13,"index":171},"end":{"line":5,"column":36,"index":194}}],"key":"QCxE0PdfaUm4cT9qPVYaaaoo46A=","exportNames":["*"],"imports":1}},{"name":"./OperatorSubscriber","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":6,"column":27,"index":223},"end":{"line":6,"column":58,"index":254}}],"key":"5a4JxA+rxI0MIxewBKZddpWmHrQ=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n Object.defineProperty(exports, \"__esModule\", {\n value: true\n });\n exports.throwIfEmpty = void 0;\n var EmptyError_1 = require(_dependencyMap[0], \"../util/EmptyError\");\n var lift_1 = require(_dependencyMap[1], \"../util/lift\");\n var OperatorSubscriber_1 = require(_dependencyMap[2], \"./OperatorSubscriber\");\n function throwIfEmpty(errorFactory) {\n if (errorFactory === void 0) {\n errorFactory = defaultErrorFactory;\n }\n return lift_1.operate(function (source, subscriber) {\n var hasValue = false;\n source.subscribe(OperatorSubscriber_1.createOperatorSubscriber(subscriber, function (value) {\n hasValue = true;\n subscriber.next(value);\n }, function () {\n return hasValue ? subscriber.complete() : subscriber.error(errorFactory());\n }));\n });\n }\n exports.throwIfEmpty = throwIfEmpty;\n function defaultErrorFactory() {\n return new EmptyError_1.EmptyError();\n }\n});","lineCount":29,"map":[[2,2,1,0],[2,14,1,12],[4,2,2,0,"Object"],[4,8,2,6],[4,9,2,7,"defineProperty"],[4,23,2,21],[4,24,2,22,"exports"],[4,31,2,29],[4,33,2,31],[4,45,2,43],[4,47,2,45],[5,4,2,47,"value"],[5,9,2,52],[5,11,2,54],[6,2,2,59],[6,3,2,60],[6,4,2,61],[7,2,3,0,"exports"],[7,9,3,7],[7,10,3,8,"throwIfEmpty"],[7,22,3,20],[7,25,3,23],[7,30,3,28],[7,31,3,29],[8,2,4,0],[8,6,4,4,"EmptyError_1"],[8,18,4,16],[8,21,4,19,"require"],[8,28,4,26],[8,29,4,26,"_dependencyMap"],[8,43,4,26],[8,68,4,47],[8,69,4,48],[9,2,5,0],[9,6,5,4,"lift_1"],[9,12,5,10],[9,15,5,13,"require"],[9,22,5,20],[9,23,5,20,"_dependencyMap"],[9,37,5,20],[9,56,5,35],[9,57,5,36],[10,2,6,0],[10,6,6,4,"OperatorSubscriber_1"],[10,26,6,24],[10,29,6,27,"require"],[10,36,6,34],[10,37,6,34,"_dependencyMap"],[10,51,6,34],[10,78,6,57],[10,79,6,58],[11,2,7,0],[11,11,7,9,"throwIfEmpty"],[11,23,7,21,"throwIfEmpty"],[11,24,7,22,"errorFactory"],[11,36,7,34],[11,38,7,36],[12,4,8,4],[12,8,8,8,"errorFactory"],[12,20,8,20],[12,25,8,25],[12,30,8,30],[12,31,8,31],[12,33,8,33],[13,6,8,35,"errorFactory"],[13,18,8,47],[13,21,8,50,"defaultErrorFactory"],[13,40,8,69],[14,4,8,71],[15,4,9,4],[15,11,9,11,"lift_1"],[15,17,9,17],[15,18,9,18,"operate"],[15,25,9,25],[15,26,9,26],[15,36,9,36,"source"],[15,42,9,42],[15,44,9,44,"subscriber"],[15,54,9,54],[15,56,9,56],[16,6,10,8],[16,10,10,12,"hasValue"],[16,18,10,20],[16,21,10,23],[16,26,10,28],[17,6,11,8,"source"],[17,12,11,14],[17,13,11,15,"subscribe"],[17,22,11,24],[17,23,11,25,"OperatorSubscriber_1"],[17,43,11,45],[17,44,11,46,"createOperatorSubscriber"],[17,68,11,70],[17,69,11,71,"subscriber"],[17,79,11,81],[17,81,11,83],[17,91,11,93,"value"],[17,96,11,98],[17,98,11,100],[18,8,12,12,"hasValue"],[18,16,12,20],[18,19,12,23],[18,23,12,27],[19,8,13,12,"subscriber"],[19,18,13,22],[19,19,13,23,"next"],[19,23,13,27],[19,24,13,28,"value"],[19,29,13,33],[19,30,13,34],[20,6,14,8],[20,7,14,9],[20,9,14,11],[20,21,14,23],[21,8,14,25],[21,15,14,33,"hasValue"],[21,23,14,41],[21,26,14,44,"subscriber"],[21,36,14,54],[21,37,14,55,"complete"],[21,45,14,63],[21,46,14,64],[21,47,14,65],[21,50,14,68,"subscriber"],[21,60,14,78],[21,61,14,79,"error"],[21,66,14,84],[21,67,14,85,"errorFactory"],[21,79,14,97],[21,80,14,98],[21,81,14,99],[21,82,14,100],[22,6,14,103],[22,7,14,104],[22,8,14,105],[22,9,14,106],[23,4,15,4],[23,5,15,5],[23,6,15,6],[24,2,16,0],[25,2,17,0,"exports"],[25,9,17,7],[25,10,17,8,"throwIfEmpty"],[25,22,17,20],[25,25,17,23,"throwIfEmpty"],[25,37,17,35],[26,2,18,0],[26,11,18,9,"defaultErrorFactory"],[26,30,18,28,"defaultErrorFactory"],[26,31,18,28],[26,33,18,31],[27,4,19,4],[27,11,19,11],[27,15,19,15,"EmptyError_1"],[27,27,19,27],[27,28,19,28,"EmptyError"],[27,38,19,38],[27,39,19,39],[27,40,19,40],[28,2,20,0],[29,0,20,1],[29,3]],"functionMap":{"names":["<global>","throwIfEmpty","lift_1.operate$argument_0","OperatorSubscriber_1.createOperatorSubscriber$argument_1","OperatorSubscriber_1.createOperatorSubscriber$argument_2","defaultErrorFactory"],"mappings":"AAA;ACM;0BCE;mFCE;SDG,EE,6FF;KDC;CDC;AKE;CLE"},"hasCjsExports":true},"type":"js/module"}]}
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long