Files
pezkuwi-mobile-app/frontend/.metro-cache/cache/34/f14fd6a546fbd9c1fe267aba16e69398f22309d81495911cd0db32ee717c7ed358cf44
T
2025-10-24 02:48:32 +00:00

1 line
18 KiB
Plaintext

{"dependencies":[{"name":"rxjs","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":1,"column":0,"index":0},"end":{"line":1,"column":106,"index":106}}],"key":"PnOMrhZAPWoeW3ygrvUJ7ff768Y=","exportNames":["*"],"imports":1}},{"name":"@polkadot/util","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":2,"column":0,"index":107},"end":{"line":2,"column":68,"index":175}}],"key":"ISHU1ovvPMrCldqRjtd1JhW9dyo=","exportNames":["*"],"imports":1}},{"name":"../util/index.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":3,"column":0,"index":176},"end":{"line":3,"column":40,"index":216}}],"key":"GRJlO1cmIj14nBxcasNpiq30og4=","exportNames":["*"],"imports":1}},{"name":"./util.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":4,"column":0,"index":217},"end":{"line":4,"column":47,"index":264}}],"key":"+UpHPazG/Yk8JnTjB6d2Eo+vUl4=","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.contributions = contributions;\n var _rxjs = require(_dependencyMap[0], \"rxjs\");\n var _polkadotUtil = require(_dependencyMap[1], \"@polkadot/util\");\n var _utilIndexJs = require(_dependencyMap[2], \"../util/index.js\");\n var _utilJs = require(_dependencyMap[3], \"./util.js\");\n const PAGE_SIZE_K = 1000; // limit aligned with the 1k on the node (trie lookups are heavy)\n function _getUpdates(api, paraId) {\n let added = [];\n let removed = [];\n return api.query.system.events().pipe((0, _rxjs.switchMap)(events => {\n const changes = (0, _utilJs.extractContributed)(paraId, events);\n if (changes.added.length || changes.removed.length) {\n added = added.concat(...changes.added);\n removed = removed.concat(...changes.removed);\n return (0, _rxjs.of)({\n added,\n addedDelta: changes.added,\n blockHash: events.createdAtHash?.toHex() || '-',\n removed,\n removedDelta: changes.removed\n });\n }\n return _rxjs.EMPTY;\n }), (0, _rxjs.startWith)({\n added,\n addedDelta: [],\n blockHash: '-',\n removed,\n removedDelta: []\n }));\n }\n function _eventTriggerAll(api, paraId) {\n return api.query.system.events().pipe((0, _rxjs.switchMap)(events => {\n const items = events.filter(({\n event: {\n data: [eventParaId],\n method,\n section\n }\n }) => section === 'crowdloan' && ['AllRefunded', 'Dissolved', 'PartiallyRefunded'].includes(method) && eventParaId.eq(paraId));\n return items.length ? (0, _rxjs.of)(events.createdAtHash?.toHex() || '-') : _rxjs.EMPTY;\n }), (0, _rxjs.startWith)('-'));\n }\n function _getKeysPaged(api, childKey) {\n const subject = new _rxjs.BehaviorSubject(undefined);\n return subject.pipe((0, _rxjs.switchMap)(startKey => api.rpc.childstate.getKeysPaged(childKey, '0x', PAGE_SIZE_K, startKey)), (0, _rxjs.tap)(keys => {\n (0, _polkadotUtil.nextTick)(() => {\n keys.length === PAGE_SIZE_K ? subject.next(keys[PAGE_SIZE_K - 1].toHex()) : subject.complete();\n });\n }), (0, _rxjs.toArray)(),\n // toArray since we want to startSubject to be completed\n (0, _rxjs.map)(keyArr => (0, _polkadotUtil.arrayFlatten)(keyArr)));\n }\n function _getAll(api, paraId, childKey) {\n return _eventTriggerAll(api, paraId).pipe((0, _rxjs.switchMap)(() => (0, _polkadotUtil.isFunction)(api.rpc.childstate.getKeysPaged) ? _getKeysPaged(api, childKey) : api.rpc.childstate.getKeys(childKey, '0x')), (0, _rxjs.map)(keys => keys.map(k => k.toHex())));\n }\n function _contributions(api, paraId, childKey) {\n return (0, _rxjs.combineLatest)([_getAll(api, paraId, childKey), _getUpdates(api, paraId)]).pipe((0, _rxjs.map)(([keys, {\n added,\n blockHash,\n removed\n }]) => {\n const contributorsMap = {};\n keys.forEach(k => {\n contributorsMap[k] = true;\n });\n added.forEach(k => {\n contributorsMap[k] = true;\n });\n removed.forEach(k => {\n delete contributorsMap[k];\n });\n return {\n blockHash,\n contributorsHex: Object.keys(contributorsMap)\n };\n }));\n }\n /**\n * @name contributions\n * @description Retrieves all contributions for a given parachain crowdloan.\n * @param {string | number | BN} paraId The parachain ID for which contributions are being queried.\n * @example\n * ```javascript\n * const contributions = await api.derive.crowdloan.contributions(3369);\n * console.log(\"Contributions:\", contributions);\n * ```\n */\n function contributions(instanceId, api) {\n return (0, _utilIndexJs.memo)(instanceId, paraId => api.derive.crowdloan.childKey(paraId).pipe((0, _rxjs.switchMap)(childKey => childKey ? _contributions(api, paraId, childKey) : (0, _rxjs.of)({\n blockHash: '-',\n contributorsHex: []\n }))));\n }\n});","lineCount":101,"map":[[7,2,76,0,"exports"],[7,9,76,0],[7,10,76,0,"contributions"],[7,23,76,0],[7,26,76,0,"contributions"],[7,39,76,0],[8,2,1,0],[8,6,1,0,"_rxjs"],[8,11,1,0],[8,14,1,0,"require"],[8,21,1,0],[8,22,1,0,"_dependencyMap"],[8,36,1,0],[9,2,2,0],[9,6,2,0,"_polkadotUtil"],[9,19,2,0],[9,22,2,0,"require"],[9,29,2,0],[9,30,2,0,"_dependencyMap"],[9,44,2,0],[10,2,3,0],[10,6,3,0,"_utilIndexJs"],[10,18,3,0],[10,21,3,0,"require"],[10,28,3,0],[10,29,3,0,"_dependencyMap"],[10,43,3,0],[11,2,4,0],[11,6,4,0,"_utilJs"],[11,13,4,0],[11,16,4,0,"require"],[11,23,4,0],[11,24,4,0,"_dependencyMap"],[11,38,4,0],[12,2,5,0],[12,8,5,6,"PAGE_SIZE_K"],[12,19,5,17],[12,22,5,20],[12,26,5,24],[12,27,5,25],[12,28,5,26],[13,2,6,0],[13,11,6,9,"_getUpdates"],[13,22,6,20,"_getUpdates"],[13,23,6,21,"api"],[13,26,6,24],[13,28,6,26,"paraId"],[13,34,6,32],[13,36,6,34],[14,4,7,4],[14,8,7,8,"added"],[14,13,7,13],[14,16,7,16],[14,18,7,18],[15,4,8,4],[15,8,8,8,"removed"],[15,15,8,15],[15,18,8,18],[15,20,8,20],[16,4,9,4],[16,11,9,11,"api"],[16,14,9,14],[16,15,9,15,"query"],[16,20,9,20],[16,21,9,21,"system"],[16,27,9,27],[16,28,9,28,"events"],[16,34,9,34],[16,35,9,35],[16,36,9,36],[16,37,9,37,"pipe"],[16,41,9,41],[16,42,9,42],[16,46,9,42,"switchMap"],[16,51,9,51],[16,52,9,51,"switchMap"],[16,61,9,51],[16,63,9,53,"events"],[16,69,9,59],[16,73,9,64],[17,6,10,8],[17,12,10,14,"changes"],[17,19,10,21],[17,22,10,24],[17,26,10,24,"extractContributed"],[17,33,10,42],[17,34,10,42,"extractContributed"],[17,52,10,42],[17,54,10,43,"paraId"],[17,60,10,49],[17,62,10,51,"events"],[17,68,10,57],[17,69,10,58],[18,6,11,8],[18,10,11,12,"changes"],[18,17,11,19],[18,18,11,20,"added"],[18,23,11,25],[18,24,11,26,"length"],[18,30,11,32],[18,34,11,36,"changes"],[18,41,11,43],[18,42,11,44,"removed"],[18,49,11,51],[18,50,11,52,"length"],[18,56,11,58],[18,58,11,60],[19,8,12,12,"added"],[19,13,12,17],[19,16,12,20,"added"],[19,21,12,25],[19,22,12,26,"concat"],[19,28,12,32],[19,29,12,33],[19,32,12,36,"changes"],[19,39,12,43],[19,40,12,44,"added"],[19,45,12,49],[19,46,12,50],[20,8,13,12,"removed"],[20,15,13,19],[20,18,13,22,"removed"],[20,25,13,29],[20,26,13,30,"concat"],[20,32,13,36],[20,33,13,37],[20,36,13,40,"changes"],[20,43,13,47],[20,44,13,48,"removed"],[20,51,13,55],[20,52,13,56],[21,8,14,12],[21,15,14,19],[21,19,14,19,"of"],[21,24,14,21],[21,25,14,21,"of"],[21,27,14,21],[21,29,14,22],[22,10,14,24,"added"],[22,15,14,29],[23,10,14,31,"addedDelta"],[23,20,14,41],[23,22,14,43,"changes"],[23,29,14,50],[23,30,14,51,"added"],[23,35,14,56],[24,10,14,58,"blockHash"],[24,19,14,67],[24,21,14,69,"events"],[24,27,14,75],[24,28,14,76,"createdAtHash"],[24,41,14,89],[24,43,14,91,"toHex"],[24,48,14,96],[24,49,14,97],[24,50,14,98],[24,54,14,102],[24,57,14,105],[25,10,14,107,"removed"],[25,17,14,114],[26,10,14,116,"removedDelta"],[26,22,14,128],[26,24,14,130,"changes"],[26,31,14,137],[26,32,14,138,"removed"],[27,8,14,146],[27,9,14,147],[27,10,14,148],[28,6,15,8],[29,6,16,8],[29,13,16,15,"EMPTY"],[29,18,16,20],[29,19,16,20,"EMPTY"],[29,24,16,20],[30,4,17,4],[30,5,17,5],[30,6,17,6],[30,8,17,8],[30,12,17,8,"startWith"],[30,17,17,17],[30,18,17,17,"startWith"],[30,27,17,17],[30,29,17,18],[31,6,17,20,"added"],[31,11,17,25],[32,6,17,27,"addedDelta"],[32,16,17,37],[32,18,17,39],[32,20,17,41],[33,6,17,43,"blockHash"],[33,15,17,52],[33,17,17,54],[33,20,17,57],[34,6,17,59,"removed"],[34,13,17,66],[35,6,17,68,"removedDelta"],[35,18,17,80],[35,20,17,82],[36,4,17,85],[36,5,17,86],[36,6,17,87],[36,7,17,88],[37,2,18,0],[38,2,19,0],[38,11,19,9,"_eventTriggerAll"],[38,27,19,25,"_eventTriggerAll"],[38,28,19,26,"api"],[38,31,19,29],[38,33,19,31,"paraId"],[38,39,19,37],[38,41,19,39],[39,4,20,4],[39,11,20,11,"api"],[39,14,20,14],[39,15,20,15,"query"],[39,20,20,20],[39,21,20,21,"system"],[39,27,20,27],[39,28,20,28,"events"],[39,34,20,34],[39,35,20,35],[39,36,20,36],[39,37,20,37,"pipe"],[39,41,20,41],[39,42,20,42],[39,46,20,42,"switchMap"],[39,51,20,51],[39,52,20,51,"switchMap"],[39,61,20,51],[39,63,20,53,"events"],[39,69,20,59],[39,73,20,64],[40,6,21,8],[40,12,21,14,"items"],[40,17,21,19],[40,20,21,22,"events"],[40,26,21,28],[40,27,21,29,"filter"],[40,33,21,35],[40,34,21,36],[40,35,21,37],[41,8,21,39,"event"],[41,13,21,44],[41,15,21,46],[42,10,21,48,"data"],[42,14,21,52],[42,16,21,54],[42,17,21,55,"eventParaId"],[42,28,21,66],[42,29,21,67],[43,10,21,69,"method"],[43,16,21,75],[44,10,21,77,"section"],[45,8,21,85],[46,6,21,87],[46,7,21,88],[46,12,21,93,"section"],[46,19,21,100],[46,24,21,105],[46,35,21,116],[46,39,22,12],[46,40,22,13],[46,53,22,26],[46,55,22,28],[46,66,22,39],[46,68,22,41],[46,87,22,60],[46,88,22,61],[46,89,22,62,"includes"],[46,97,22,70],[46,98,22,71,"method"],[46,104,22,77],[46,105,22,78],[46,109,23,12,"eventParaId"],[46,120,23,23],[46,121,23,24,"eq"],[46,123,23,26],[46,124,23,27,"paraId"],[46,130,23,33],[46,131,23,34],[46,132,23,35],[47,6,24,8],[47,13,24,15,"items"],[47,18,24,20],[47,19,24,21,"length"],[47,25,24,27],[47,28,25,14],[47,32,25,14,"of"],[47,37,25,16],[47,38,25,16,"of"],[47,40,25,16],[47,42,25,17,"events"],[47,48,25,23],[47,49,25,24,"createdAtHash"],[47,62,25,37],[47,64,25,39,"toHex"],[47,69,25,44],[47,70,25,45],[47,71,25,46],[47,75,25,50],[47,78,25,53],[47,79,25,54],[47,82,26,14,"EMPTY"],[47,87,26,19],[47,88,26,19,"EMPTY"],[47,93,26,19],[48,4,27,4],[48,5,27,5],[48,6,27,6],[48,8,27,8],[48,12,27,8,"startWith"],[48,17,27,17],[48,18,27,17,"startWith"],[48,27,27,17],[48,29,27,18],[48,32,27,21],[48,33,27,22],[48,34,27,23],[49,2,28,0],[50,2,29,0],[50,11,29,9,"_getKeysPaged"],[50,24,29,22,"_getKeysPaged"],[50,25,29,23,"api"],[50,28,29,26],[50,30,29,28,"childKey"],[50,38,29,36],[50,40,29,38],[51,4,30,4],[51,10,30,10,"subject"],[51,17,30,17],[51,20,30,20],[51,24,30,24,"BehaviorSubject"],[51,29,30,39],[51,30,30,39,"BehaviorSubject"],[51,45,30,39],[51,46,30,40,"undefined"],[51,55,30,49],[51,56,30,50],[52,4,31,4],[52,11,31,11,"subject"],[52,18,31,18],[52,19,31,19,"pipe"],[52,23,31,23],[52,24,31,24],[52,28,31,24,"switchMap"],[52,33,31,33],[52,34,31,33,"switchMap"],[52,43,31,33],[52,45,31,35,"startKey"],[52,53,31,43],[52,57,31,48,"api"],[52,60,31,51],[52,61,31,52,"rpc"],[52,64,31,55],[52,65,31,56,"childstate"],[52,75,31,66],[52,76,31,67,"getKeysPaged"],[52,88,31,79],[52,89,31,80,"childKey"],[52,97,31,88],[52,99,31,90],[52,103,31,94],[52,105,31,96,"PAGE_SIZE_K"],[52,116,31,107],[52,118,31,109,"startKey"],[52,126,31,117],[52,127,31,118],[52,128,31,119],[52,130,31,121],[52,134,31,121,"tap"],[52,139,31,124],[52,140,31,124,"tap"],[52,143,31,124],[52,145,31,126,"keys"],[52,149,31,130],[52,153,31,135],[53,6,32,8],[53,10,32,8,"nextTick"],[53,23,32,16],[53,24,32,16,"nextTick"],[53,32,32,16],[53,34,32,17],[53,40,32,23],[54,8,33,12,"keys"],[54,12,33,16],[54,13,33,17,"length"],[54,19,33,23],[54,24,33,28,"PAGE_SIZE_K"],[54,35,33,39],[54,38,34,18,"subject"],[54,45,34,25],[54,46,34,26,"next"],[54,50,34,30],[54,51,34,31,"keys"],[54,55,34,35],[54,56,34,36,"PAGE_SIZE_K"],[54,67,34,47],[54,70,34,50],[54,71,34,51],[54,72,34,52],[54,73,34,53,"toHex"],[54,78,34,58],[54,79,34,59],[54,80,34,60],[54,81,34,61],[54,84,35,18,"subject"],[54,91,35,25],[54,92,35,26,"complete"],[54,100,35,34],[54,101,35,35],[54,102,35,36],[55,6,36,8],[55,7,36,9],[55,8,36,10],[56,4,37,4],[56,5,37,5],[56,6,37,6],[56,8,37,8],[56,12,37,8,"toArray"],[56,17,37,15],[56,18,37,15,"toArray"],[56,25,37,15],[56,27,37,16],[56,28,37,17],[57,4,37,19],[58,4,38,4],[58,8,38,4,"map"],[58,13,38,7],[58,14,38,7,"map"],[58,17,38,7],[58,19,38,9,"keyArr"],[58,25,38,15],[58,29,38,20],[58,33,38,20,"arrayFlatten"],[58,46,38,32],[58,47,38,32,"arrayFlatten"],[58,59,38,32],[58,61,38,33,"keyArr"],[58,67,38,39],[58,68,38,40],[58,69,38,41],[58,70,38,42],[59,2,39,0],[60,2,40,0],[60,11,40,9,"_getAll"],[60,18,40,16,"_getAll"],[60,19,40,17,"api"],[60,22,40,20],[60,24,40,22,"paraId"],[60,30,40,28],[60,32,40,30,"childKey"],[60,40,40,38],[60,42,40,40],[61,4,41,4],[61,11,41,11,"_eventTriggerAll"],[61,27,41,27],[61,28,41,28,"api"],[61,31,41,31],[61,33,41,33,"paraId"],[61,39,41,39],[61,40,41,40],[61,41,41,41,"pipe"],[61,45,41,45],[61,46,41,46],[61,50,41,46,"switchMap"],[61,55,41,55],[61,56,41,55,"switchMap"],[61,65,41,55],[61,67,41,56],[61,73,41,62],[61,77,41,62,"isFunction"],[61,90,41,72],[61,91,41,72,"isFunction"],[61,101,41,72],[61,103,41,73,"api"],[61,106,41,76],[61,107,41,77,"rpc"],[61,110,41,80],[61,111,41,81,"childstate"],[61,121,41,91],[61,122,41,92,"getKeysPaged"],[61,134,41,104],[61,135,41,105],[61,138,42,10,"_getKeysPaged"],[61,151,42,23],[61,152,42,24,"api"],[61,155,42,27],[61,157,42,29,"childKey"],[61,165,42,37],[61,166,42,38],[61,169,43,10,"api"],[61,172,43,13],[61,173,43,14,"rpc"],[61,176,43,17],[61,177,43,18,"childstate"],[61,187,43,28],[61,188,43,29,"getKeys"],[61,195,43,36],[61,196,43,37,"childKey"],[61,204,43,45],[61,206,43,47],[61,210,43,51],[61,211,43,52],[61,212,43,53],[61,214,43,55],[61,218,43,55,"map"],[61,223,43,58],[61,224,43,58,"map"],[61,227,43,58],[61,229,43,60,"keys"],[61,233,43,64],[61,237,43,69,"keys"],[61,241,43,73],[61,242,43,74,"map"],[61,245,43,77],[61,246,43,79,"k"],[61,247,43,80],[61,251,43,85,"k"],[61,252,43,86],[61,253,43,87,"toHex"],[61,258,43,92],[61,259,43,93],[61,260,43,94],[61,261,43,95],[61,262,43,96],[61,263,43,97],[62,2,44,0],[63,2,45,0],[63,11,45,9,"_contributions"],[63,25,45,23,"_contributions"],[63,26,45,24,"api"],[63,29,45,27],[63,31,45,29,"paraId"],[63,37,45,35],[63,39,45,37,"childKey"],[63,47,45,45],[63,49,45,47],[64,4,46,4],[64,11,46,11],[64,15,46,11,"combineLatest"],[64,20,46,24],[64,21,46,24,"combineLatest"],[64,34,46,24],[64,36,46,25],[64,37,47,8,"_getAll"],[64,44,47,15],[64,45,47,16,"api"],[64,48,47,19],[64,50,47,21,"paraId"],[64,56,47,27],[64,58,47,29,"childKey"],[64,66,47,37],[64,67,47,38],[64,69,48,8,"_getUpdates"],[64,80,48,19],[64,81,48,20,"api"],[64,84,48,23],[64,86,48,25,"paraId"],[64,92,48,31],[64,93,48,32],[64,94,49,5],[64,95,49,6],[64,96,49,7,"pipe"],[64,100,49,11],[64,101,49,12],[64,105,49,12,"map"],[64,110,49,15],[64,111,49,15,"map"],[64,114,49,15],[64,116,49,16],[64,117,49,17],[64,118,49,18,"keys"],[64,122,49,22],[64,124,49,24],[65,6,49,26,"added"],[65,11,49,31],[66,6,49,33,"blockHash"],[66,15,49,42],[67,6,49,44,"removed"],[68,4,49,52],[68,5,49,53],[68,6,49,54],[68,11,49,59],[69,6,50,8],[69,12,50,14,"contributorsMap"],[69,27,50,29],[69,30,50,32],[69,31,50,33],[69,32,50,34],[70,6,51,8,"keys"],[70,10,51,12],[70,11,51,13,"forEach"],[70,18,51,20],[70,19,51,22,"k"],[70,20,51,23],[70,24,51,28],[71,8,52,12,"contributorsMap"],[71,23,52,27],[71,24,52,28,"k"],[71,25,52,29],[71,26,52,30],[71,29,52,33],[71,33,52,37],[72,6,53,8],[72,7,53,9],[72,8,53,10],[73,6,54,8,"added"],[73,11,54,13],[73,12,54,14,"forEach"],[73,19,54,21],[73,20,54,23,"k"],[73,21,54,24],[73,25,54,29],[74,8,55,12,"contributorsMap"],[74,23,55,27],[74,24,55,28,"k"],[74,25,55,29],[74,26,55,30],[74,29,55,33],[74,33,55,37],[75,6,56,8],[75,7,56,9],[75,8,56,10],[76,6,57,8,"removed"],[76,13,57,15],[76,14,57,16,"forEach"],[76,21,57,23],[76,22,57,25,"k"],[76,23,57,26],[76,27,57,31],[77,8,58,12],[77,15,58,19,"contributorsMap"],[77,30,58,34],[77,31,58,35,"k"],[77,32,58,36],[77,33,58,37],[78,6,59,8],[78,7,59,9],[78,8,59,10],[79,6,60,8],[79,13,60,15],[80,8,61,12,"blockHash"],[80,17,61,21],[81,8,62,12,"contributorsHex"],[81,23,62,27],[81,25,62,29,"Object"],[81,31,62,35],[81,32,62,36,"keys"],[81,36,62,40],[81,37,62,41,"contributorsMap"],[81,52,62,56],[82,6,63,8],[82,7,63,9],[83,4,64,4],[83,5,64,5],[83,6,64,6],[83,7,64,7],[84,2,65,0],[85,2,66,0],[86,0,67,0],[87,0,68,0],[88,0,69,0],[89,0,70,0],[90,0,71,0],[91,0,72,0],[92,0,73,0],[93,0,74,0],[94,0,75,0],[95,2,76,7],[95,11,76,16,"contributions"],[95,24,76,29,"contributions"],[95,25,76,30,"instanceId"],[95,35,76,40],[95,37,76,42,"api"],[95,40,76,45],[95,42,76,47],[96,4,77,4],[96,11,77,11],[96,15,77,11,"memo"],[96,27,77,15],[96,28,77,15,"memo"],[96,32,77,15],[96,34,77,16,"instanceId"],[96,44,77,26],[96,46,77,29,"paraId"],[96,52,77,35],[96,56,77,40,"api"],[96,59,77,43],[96,60,77,44,"derive"],[96,66,77,50],[96,67,77,51,"crowdloan"],[96,76,77,60],[96,77,77,61,"childKey"],[96,85,77,69],[96,86,77,70,"paraId"],[96,92,77,76],[96,93,77,77],[96,94,77,78,"pipe"],[96,98,77,82],[96,99,77,83],[96,103,77,83,"switchMap"],[96,108,77,92],[96,109,77,92,"switchMap"],[96,118,77,92],[96,120,77,94,"childKey"],[96,128,77,102],[96,132,77,107,"childKey"],[96,140,77,115],[96,143,78,10,"_contributions"],[96,157,78,24],[96,158,78,25,"api"],[96,161,78,28],[96,163,78,30,"paraId"],[96,169,78,36],[96,171,78,38,"childKey"],[96,179,78,46],[96,180,78,47],[96,183,79,10],[96,187,79,10,"of"],[96,192,79,12],[96,193,79,12,"of"],[96,195,79,12],[96,197,79,13],[97,6,79,15,"blockHash"],[97,15,79,24],[97,17,79,26],[97,20,79,29],[98,6,79,31,"contributorsHex"],[98,21,79,46],[98,23,79,48],[99,4,79,51],[99,5,79,52],[99,6,79,53],[99,7,79,54],[99,8,79,55],[99,9,79,56],[100,2,80,0],[101,0,80,1],[101,3]],"functionMap":{"names":["<global>","_getUpdates","switchMap$argument_0","_eventTriggerAll","events.filter$argument_0","_getKeysPaged","tap$argument_0","nextTick$argument_0","map$argument_0","_getAll","keys.map$argument_0","_contributions","keys.forEach$argument_0","added.forEach$argument_0","removed.forEach$argument_0","contributions","memo$argument_1"],"mappings":"AAA;ACK;oDCG;KDQ;CDC;AGC;oDDC;oCEC;kCFE;KCI;CHC;AKC;kCHE,oFG,OC;iBCC;SDI;KDC;QGC,gCH;CLC;ASC;wDPC;oDOE,OD,mBE,gBF,CC;CTC;AWC;gBHI;qBIE;SJE;sBKC;SLE;wBMC;SNE;KGK;CXC;OeW;4BCC,iEd;qDcE,ED;CfC"},"hasCjsExports":false},"type":"js/module"}]}