{"dependencies":[{"name":"@polkadot/util","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":1,"column":0,"index":0},"end":{"line":1,"column":175,"index":175}}],"key":"ISHU1ovvPMrCldqRjtd1JhW9dyo=","exportNames":["*"],"imports":1}},{"name":"../utils/index.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":2,"column":0,"index":176},"end":{"line":2,"column":49,"index":225}}],"key":"yx9DX+1vet++JoKlU5V/nikNahM=","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 Object.defineProperty(exports, \"CodecSet\", {\n enumerable: true,\n get: function () {\n return CodecSet;\n }\n });\n var _polkadotUtil = require(_dependencyMap[0], \"@polkadot/util\");\n var _utilsIndexJs = require(_dependencyMap[1], \"../utils/index.js\");\n function encodeSet(setValues, values) {\n const encoded = new _polkadotUtil.BN(0);\n for (let i = 0, count = values.length; i < count; i++) {\n encoded.ior((0, _polkadotUtil.bnToBn)(setValues[values[i]] || 0));\n }\n return encoded;\n }\n /** @internal */\n function decodeSetArray(setValues, values) {\n const count = values.length;\n const result = new Array(count);\n for (let i = 0; i < count; i++) {\n const key = values[i];\n if ((0, _polkadotUtil.isUndefined)(setValues[key])) {\n throw new Error(`Set: Invalid key '${key}' passed to Set, allowed ${Object.keys(setValues).join(', ')}`);\n }\n result[i] = key;\n }\n return result;\n }\n /** @internal */\n function decodeSetNumber(setValues, _value) {\n const bn = (0, _polkadotUtil.bnToBn)(_value);\n const keys = Object.keys(setValues);\n const result = [];\n for (let i = 0, count = keys.length; i < count; i++) {\n const key = keys[i];\n if (bn.and((0, _polkadotUtil.bnToBn)(setValues[key])).eq((0, _polkadotUtil.bnToBn)(setValues[key]))) {\n result.push(key);\n }\n }\n const computed = encodeSet(setValues, result);\n if (!bn.eq(computed)) {\n throw new Error(`Set: Mismatch decoding '${bn.toString()}', computed as '${computed.toString()}' with ${result.join(', ')}`);\n }\n return result;\n }\n /** @internal */\n function decodeSet(setValues, value = 0, bitLength) {\n if (bitLength % 8 !== 0) {\n throw new Error(`Expected valid bitLength, power of 8, found ${bitLength}`);\n }\n const byteLength = bitLength / 8;\n if ((0, _polkadotUtil.isU8a)(value)) {\n return value.length === 0 ? [] : decodeSetNumber(setValues, (0, _polkadotUtil.u8aToBn)(value.subarray(0, byteLength), {\n isLe: true\n }));\n } else if ((0, _polkadotUtil.isString)(value)) {\n return decodeSet(setValues, (0, _polkadotUtil.u8aToU8a)(value), byteLength);\n } else if (value instanceof Set || Array.isArray(value)) {\n const input = Array.isArray(value) ? value : [...value.values()];\n return decodeSetArray(setValues, input);\n }\n return decodeSetNumber(setValues, value);\n }\n /**\n * @name Set\n * @description\n * An Set is an array of string values, represented an an encoded type by\n * a bitwise representation of the values.\n */\n class CodecSet extends Set {\n #allowed;\n #byteLength;\n constructor(registry, setValues, value, bitLength = 8) {\n super(decodeSet(setValues, value, bitLength));\n this.registry = registry;\n this.#allowed = setValues;\n this.#byteLength = bitLength / 8;\n }\n static with(values, bitLength) {\n var _Class;\n return _Class = class extends CodecSet {\n constructor(registry, value) {\n super(registry, values, value, bitLength);\n }\n }, (() => {\n const keys = Object.keys(values);\n const count = keys.length;\n const isKeys = new Array(count);\n for (let i = 0; i < count; i++) {\n isKeys[i] = `is${(0, _polkadotUtil.stringPascalCase)(keys[i])}`;\n }\n (0, _polkadotUtil.objectProperties)(_Class.prototype, isKeys, (_, i, self) => self.strings.includes(keys[i]));\n })(), _Class;\n }\n /**\n * @description The length of the value when encoded as a Uint8Array\n */\n get encodedLength() {\n return this.#byteLength;\n }\n /**\n * @description returns a hash of the contents\n */\n get hash() {\n return this.registry.hash(this.toU8a());\n }\n /**\n * @description true is the Set contains no values\n */\n get isEmpty() {\n return this.size === 0;\n }\n /**\n * @description The actual set values as a string[]\n */\n get strings() {\n return [...super.values()];\n }\n /**\n * @description The encoded value for the set members\n */\n get valueEncoded() {\n return encodeSet(this.#allowed, this.strings);\n }\n /**\n * @description adds a value to the Set (extended to allow for validity checking)\n */\n add = key => {\n // ^^^ add = () property done to assign this instance's this, otherwise Set.add creates \"some\" chaos\n // we have the isUndefined(this._setValues) in here as well, add is used internally\n // in the Set constructor (so it is undefined at this point, and should allow)\n if (this.#allowed && (0, _polkadotUtil.isUndefined)(this.#allowed[key])) {\n throw new Error(`Set: Invalid key '${key}' on add`);\n }\n super.add(key);\n return this;\n };\n /**\n * @description Compares the value of the input to see if there is a match\n */\n eq(other) {\n if (Array.isArray(other)) {\n // we don't actually care about the order, sort the values\n return (0, _utilsIndexJs.compareArray)(this.strings.sort(), other.sort());\n } else if (other instanceof Set) {\n return this.eq([...other.values()]);\n } else if ((0, _polkadotUtil.isNumber)(other) || (0, _polkadotUtil.isBn)(other)) {\n return this.valueEncoded.eq((0, _polkadotUtil.bnToBn)(other));\n }\n return false;\n }\n /**\n * @description Returns a breakdown of the hex encoding for this Codec\n */\n inspect() {\n return {\n outer: [this.toU8a()]\n };\n }\n /**\n * @description Returns a hex string representation of the value\n */\n toHex() {\n return (0, _polkadotUtil.u8aToHex)(this.toU8a());\n }\n /**\n * @description Converts the Object to to a human-friendly JSON, with additional fields, expansion and formatting of information\n */\n toHuman() {\n return this.toJSON();\n }\n /**\n * @description Converts the Object to JSON, typically used for RPC transfers\n */\n toJSON() {\n return this.strings;\n }\n /**\n * @description The encoded value for the set members\n */\n toNumber() {\n return this.valueEncoded.toNumber();\n }\n /**\n * @description Converts the value in a best-fit primitive form\n */\n toPrimitive() {\n return this.toJSON();\n }\n /**\n * @description Returns the base runtime type name for this instance\n */\n toRawType() {\n return (0, _polkadotUtil.stringify)({\n _set: this.#allowed\n });\n }\n /**\n * @description Returns the string representation of the value\n */\n toString() {\n return `[${this.strings.join(', ')}]`;\n }\n /**\n * @description Encodes the value as a Uint8Array as per the SCALE specifications\n */\n toU8a(_isBare) {\n return (0, _polkadotUtil.bnToU8a)(this.valueEncoded, {\n bitLength: this.#byteLength * 8,\n isLe: true\n });\n }\n }\n});","lineCount":220,"map":[[7,2,68,0,"Object"],[7,8,68,0],[7,9,68,0,"defineProperty"],[7,23,68,0],[7,24,68,0,"exports"],[7,31,68,0],[8,4,68,0,"enumerable"],[8,14,68,0],[9,4,68,0,"get"],[9,7,68,0],[9,18,68,0,"get"],[9,19,68,0],[10,6,68,0],[10,13,68,0,"CodecSet"],[10,21,68,0],[11,4,68,0],[12,2,68,0],[13,2,1,0],[13,6,1,0,"_polkadotUtil"],[13,19,1,0],[13,22,1,0,"require"],[13,29,1,0],[13,30,1,0,"_dependencyMap"],[13,44,1,0],[14,2,2,0],[14,6,2,0,"_utilsIndexJs"],[14,19,2,0],[14,22,2,0,"require"],[14,29,2,0],[14,30,2,0,"_dependencyMap"],[14,44,2,0],[15,2,3,0],[15,11,3,9,"encodeSet"],[15,20,3,18,"encodeSet"],[15,21,3,19,"setValues"],[15,30,3,28],[15,32,3,30,"values"],[15,38,3,36],[15,40,3,38],[16,4,4,4],[16,10,4,10,"encoded"],[16,17,4,17],[16,20,4,20],[16,24,4,24,"BN"],[16,37,4,26],[16,38,4,26,"BN"],[16,40,4,26],[16,41,4,27],[16,42,4,28],[16,43,4,29],[17,4,5,4],[17,9,5,9],[17,13,5,13,"i"],[17,14,5,14],[17,17,5,17],[17,18,5,18],[17,20,5,20,"count"],[17,25,5,25],[17,28,5,28,"values"],[17,34,5,34],[17,35,5,35,"length"],[17,41,5,41],[17,43,5,43,"i"],[17,44,5,44],[17,47,5,47,"count"],[17,52,5,52],[17,54,5,54,"i"],[17,55,5,55],[17,57,5,57],[17,59,5,59],[18,6,6,8,"encoded"],[18,13,6,15],[18,14,6,16,"ior"],[18,17,6,19],[18,18,6,20],[18,22,6,20,"bnToBn"],[18,35,6,26],[18,36,6,26,"bnToBn"],[18,42,6,26],[18,44,6,27,"setValues"],[18,53,6,36],[18,54,6,37,"values"],[18,60,6,43],[18,61,6,44,"i"],[18,62,6,45],[18,63,6,46],[18,64,6,47],[18,68,6,51],[18,69,6,52],[18,70,6,53],[18,71,6,54],[19,4,7,4],[20,4,8,4],[20,11,8,11,"encoded"],[20,18,8,18],[21,2,9,0],[22,2,10,0],[23,2,11,0],[23,11,11,9,"decodeSetArray"],[23,25,11,23,"decodeSetArray"],[23,26,11,24,"setValues"],[23,35,11,33],[23,37,11,35,"values"],[23,43,11,41],[23,45,11,43],[24,4,12,4],[24,10,12,10,"count"],[24,15,12,15],[24,18,12,18,"values"],[24,24,12,24],[24,25,12,25,"length"],[24,31,12,31],[25,4,13,4],[25,10,13,10,"result"],[25,16,13,16],[25,19,13,19],[25,23,13,23,"Array"],[25,28,13,28],[25,29,13,29,"count"],[25,34,13,34],[25,35,13,35],[26,4,14,4],[26,9,14,9],[26,13,14,13,"i"],[26,14,14,14],[26,17,14,17],[26,18,14,18],[26,20,14,20,"i"],[26,21,14,21],[26,24,14,24,"count"],[26,29,14,29],[26,31,14,31,"i"],[26,32,14,32],[26,34,14,34],[26,36,14,36],[27,6,15,8],[27,12,15,14,"key"],[27,15,15,17],[27,18,15,20,"values"],[27,24,15,26],[27,25,15,27,"i"],[27,26,15,28],[27,27,15,29],[28,6,16,8],[28,10,16,12],[28,14,16,12,"isUndefined"],[28,27,16,23],[28,28,16,23,"isUndefined"],[28,39,16,23],[28,41,16,24,"setValues"],[28,50,16,33],[28,51,16,34,"key"],[28,54,16,37],[28,55,16,38],[28,56,16,39],[28,58,16,41],[29,8,17,12],[29,14,17,18],[29,18,17,22,"Error"],[29,23,17,27],[29,24,17,28],[29,45,17,49,"key"],[29,48,17,52],[29,76,17,80,"Object"],[29,82,17,86],[29,83,17,87,"keys"],[29,87,17,91],[29,88,17,92,"setValues"],[29,97,17,101],[29,98,17,102],[29,99,17,103,"join"],[29,103,17,107],[29,104,17,108],[29,108,17,112],[29,109,17,113],[29,111,17,115],[29,112,17,116],[30,6,18,8],[31,6,19,8,"result"],[31,12,19,14],[31,13,19,15,"i"],[31,14,19,16],[31,15,19,17],[31,18,19,20,"key"],[31,21,19,23],[32,4,20,4],[33,4,21,4],[33,11,21,11,"result"],[33,17,21,17],[34,2,22,0],[35,2,23,0],[36,2,24,0],[36,11,24,9,"decodeSetNumber"],[36,26,24,24,"decodeSetNumber"],[36,27,24,25,"setValues"],[36,36,24,34],[36,38,24,36,"_value"],[36,44,24,42],[36,46,24,44],[37,4,25,4],[37,10,25,10,"bn"],[37,12,25,12],[37,15,25,15],[37,19,25,15,"bnToBn"],[37,32,25,21],[37,33,25,21,"bnToBn"],[37,39,25,21],[37,41,25,22,"_value"],[37,47,25,28],[37,48,25,29],[38,4,26,4],[38,10,26,10,"keys"],[38,14,26,14],[38,17,26,17,"Object"],[38,23,26,23],[38,24,26,24,"keys"],[38,28,26,28],[38,29,26,29,"setValues"],[38,38,26,38],[38,39,26,39],[39,4,27,4],[39,10,27,10,"result"],[39,16,27,16],[39,19,27,19],[39,21,27,21],[40,4,28,4],[40,9,28,9],[40,13,28,13,"i"],[40,14,28,14],[40,17,28,17],[40,18,28,18],[40,20,28,20,"count"],[40,25,28,25],[40,28,28,28,"keys"],[40,32,28,32],[40,33,28,33,"length"],[40,39,28,39],[40,41,28,41,"i"],[40,42,28,42],[40,45,28,45,"count"],[40,50,28,50],[40,52,28,52,"i"],[40,53,28,53],[40,55,28,55],[40,57,28,57],[41,6,29,8],[41,12,29,14,"key"],[41,15,29,17],[41,18,29,20,"keys"],[41,22,29,24],[41,23,29,25,"i"],[41,24,29,26],[41,25,29,27],[42,6,30,8],[42,10,30,12,"bn"],[42,12,30,14],[42,13,30,15,"and"],[42,16,30,18],[42,17,30,19],[42,21,30,19,"bnToBn"],[42,34,30,25],[42,35,30,25,"bnToBn"],[42,41,30,25],[42,43,30,26,"setValues"],[42,52,30,35],[42,53,30,36,"key"],[42,56,30,39],[42,57,30,40],[42,58,30,41],[42,59,30,42],[42,60,30,43,"eq"],[42,62,30,45],[42,63,30,46],[42,67,30,46,"bnToBn"],[42,80,30,52],[42,81,30,52,"bnToBn"],[42,87,30,52],[42,89,30,53,"setValues"],[42,98,30,62],[42,99,30,63,"key"],[42,102,30,66],[42,103,30,67],[42,104,30,68],[42,105,30,69],[42,107,30,71],[43,8,31,12,"result"],[43,14,31,18],[43,15,31,19,"push"],[43,19,31,23],[43,20,31,24,"key"],[43,23,31,27],[43,24,31,28],[44,6,32,8],[45,4,33,4],[46,4,34,4],[46,10,34,10,"computed"],[46,18,34,18],[46,21,34,21,"encodeSet"],[46,30,34,30],[46,31,34,31,"setValues"],[46,40,34,40],[46,42,34,42,"result"],[46,48,34,48],[46,49,34,49],[47,4,35,4],[47,8,35,8],[47,9,35,9,"bn"],[47,11,35,11],[47,12,35,12,"eq"],[47,14,35,14],[47,15,35,15,"computed"],[47,23,35,23],[47,24,35,24],[47,26,35,26],[48,6,36,8],[48,12,36,14],[48,16,36,18,"Error"],[48,21,36,23],[48,22,36,24],[48,49,36,51,"bn"],[48,51,36,53],[48,52,36,54,"toString"],[48,60,36,62],[48,61,36,63],[48,62,36,64],[48,81,36,83,"computed"],[48,89,36,91],[48,90,36,92,"toString"],[48,98,36,100],[48,99,36,101],[48,100,36,102],[48,110,36,112,"result"],[48,116,36,118],[48,117,36,119,"join"],[48,121,36,123],[48,122,36,124],[48,126,36,128],[48,127,36,129],[48,129,36,131],[48,130,36,132],[49,4,37,4],[50,4,38,4],[50,11,38,11,"result"],[50,17,38,17],[51,2,39,0],[52,2,40,0],[53,2,41,0],[53,11,41,9,"decodeSet"],[53,20,41,18,"decodeSet"],[53,21,41,19,"setValues"],[53,30,41,28],[53,32,41,30,"value"],[53,37,41,35],[53,40,41,38],[53,41,41,39],[53,43,41,41,"bitLength"],[53,52,41,50],[53,54,41,52],[54,4,42,4],[54,8,42,8,"bitLength"],[54,17,42,17],[54,20,42,20],[54,21,42,21],[54,26,42,26],[54,27,42,27],[54,29,42,29],[55,6,43,8],[55,12,43,14],[55,16,43,18,"Error"],[55,21,43,23],[55,22,43,24],[55,69,43,71,"bitLength"],[55,78,43,80],[55,80,43,82],[55,81,43,83],[56,4,44,4],[57,4,45,4],[57,10,45,10,"byteLength"],[57,20,45,20],[57,23,45,23,"bitLength"],[57,32,45,32],[57,35,45,35],[57,36,45,36],[58,4,46,4],[58,8,46,8],[58,12,46,8,"isU8a"],[58,25,46,13],[58,26,46,13,"isU8a"],[58,31,46,13],[58,33,46,14,"value"],[58,38,46,19],[58,39,46,20],[58,41,46,22],[59,6,47,8],[59,13,47,15,"value"],[59,18,47,20],[59,19,47,21,"length"],[59,25,47,27],[59,30,47,32],[59,31,47,33],[59,34,48,14],[59,36,48,16],[59,39,49,14,"decodeSetNumber"],[59,54,49,29],[59,55,49,30,"setValues"],[59,64,49,39],[59,66,49,41],[59,70,49,41,"u8aToBn"],[59,83,49,48],[59,84,49,48,"u8aToBn"],[59,91,49,48],[59,93,49,49,"value"],[59,98,49,54],[59,99,49,55,"subarray"],[59,107,49,63],[59,108,49,64],[59,109,49,65],[59,111,49,67,"byteLength"],[59,121,49,77],[59,122,49,78],[59,124,49,80],[60,8,49,82,"isLe"],[60,12,49,86],[60,14,49,88],[61,6,49,93],[61,7,49,94],[61,8,49,95],[61,9,49,96],[62,4,50,4],[62,5,50,5],[62,11,51,9],[62,15,51,13],[62,19,51,13,"isString"],[62,32,51,21],[62,33,51,21,"isString"],[62,41,51,21],[62,43,51,22,"value"],[62,48,51,27],[62,49,51,28],[62,51,51,30],[63,6,52,8],[63,13,52,15,"decodeSet"],[63,22,52,24],[63,23,52,25,"setValues"],[63,32,52,34],[63,34,52,36],[63,38,52,36,"u8aToU8a"],[63,51,52,44],[63,52,52,44,"u8aToU8a"],[63,60,52,44],[63,62,52,45,"value"],[63,67,52,50],[63,68,52,51],[63,70,52,53,"byteLength"],[63,80,52,63],[63,81,52,64],[64,4,53,4],[64,5,53,5],[64,11,54,9],[64,15,54,13,"value"],[64,20,54,18],[64,32,54,30,"Set"],[64,35,54,33],[64,39,54,37,"Array"],[64,44,54,42],[64,45,54,43,"isArray"],[64,52,54,50],[64,53,54,51,"value"],[64,58,54,56],[64,59,54,57],[64,61,54,59],[65,6,55,8],[65,12,55,14,"input"],[65,17,55,19],[65,20,55,22,"Array"],[65,25,55,27],[65,26,55,28,"isArray"],[65,33,55,35],[65,34,55,36,"value"],[65,39,55,41],[65,40,55,42],[65,43,56,14,"value"],[65,48,56,19],[65,51,57,14],[65,52,57,15],[65,55,57,18,"value"],[65,60,57,23],[65,61,57,24,"values"],[65,67,57,30],[65,68,57,31],[65,69,57,32],[65,70,57,33],[66,6,58,8],[66,13,58,15,"decodeSetArray"],[66,27,58,29],[66,28,58,30,"setValues"],[66,37,58,39],[66,39,58,41,"input"],[66,44,58,46],[66,45,58,47],[67,4,59,4],[68,4,60,4],[68,11,60,11,"decodeSetNumber"],[68,26,60,26],[68,27,60,27,"setValues"],[68,36,60,36],[68,38,60,38,"value"],[68,43,60,43],[68,44,60,44],[69,2,61,0],[70,2,62,0],[71,0,63,0],[72,0,64,0],[73,0,65,0],[74,0,66,0],[75,0,67,0],[76,2,68,7],[76,8,68,13,"CodecSet"],[76,16,68,21],[76,25,68,30,"Set"],[76,28,68,33],[76,29,68,34],[77,4,73,4],[77,5,73,5,"allowed"],[77,12,73,12],[78,4,74,4],[78,5,74,5,"byteLength"],[78,15,74,15],[79,4,75,4,"constructor"],[79,15,75,15,"constructor"],[79,16,75,16,"registry"],[79,24,75,24],[79,26,75,26,"setValues"],[79,35,75,35],[79,37,75,37,"value"],[79,42,75,42],[79,44,75,44,"bitLength"],[79,53,75,53],[79,56,75,56],[79,57,75,57],[79,59,75,59],[80,6,76,8],[80,11,76,13],[80,12,76,14,"decodeSet"],[80,21,76,23],[80,22,76,24,"setValues"],[80,31,76,33],[80,33,76,35,"value"],[80,38,76,40],[80,40,76,42,"bitLength"],[80,49,76,51],[80,50,76,52],[80,51,76,53],[81,6,77,8],[81,10,77,12],[81,11,77,13,"registry"],[81,19,77,21],[81,22,77,24,"registry"],[81,30,77,32],[82,6,78,8],[82,10,78,12],[82,11,78,13],[82,12,78,14,"allowed"],[82,19,78,21],[82,22,78,24,"setValues"],[82,31,78,33],[83,6,79,8],[83,10,79,12],[83,11,79,13],[83,12,79,14,"byteLength"],[83,22,79,24],[83,25,79,27,"bitLength"],[83,34,79,36],[83,37,79,39],[83,38,79,40],[84,4,80,4],[85,4,81,4],[85,11,81,11,"with"],[85,15,81,15,"with"],[85,16,81,16,"values"],[85,22,81,22],[85,24,81,24,"bitLength"],[85,33,81,33],[85,35,81,35],[86,6,81,35],[86,10,81,35,"_Class"],[86,16,81,35],[87,6,82,8],[87,13,82,8,"_Class"],[87,19,82,8],[87,22,82,15],[87,36,82,29,"CodecSet"],[87,44,82,37],[87,45,82,38],[88,8,92,12,"constructor"],[88,19,92,23,"constructor"],[88,20,92,24,"registry"],[88,28,92,32],[88,30,92,34,"value"],[88,35,92,39],[88,37,92,41],[89,10,93,16],[89,15,93,21],[89,16,93,22,"registry"],[89,24,93,30],[89,26,93,32,"values"],[89,32,93,38],[89,34,93,40,"value"],[89,39,93,45],[89,41,93,47,"bitLength"],[89,50,93,56],[89,51,93,57],[90,8,94,12],[91,6,95,8],[91,7,95,9],[92,8,84,16],[92,14,84,22,"keys"],[92,18,84,26],[92,21,84,29,"Object"],[92,27,84,35],[92,28,84,36,"keys"],[92,32,84,40],[92,33,84,41,"values"],[92,39,84,47],[92,40,84,48],[93,8,85,16],[93,14,85,22,"count"],[93,19,85,27],[93,22,85,30,"keys"],[93,26,85,34],[93,27,85,35,"length"],[93,33,85,41],[94,8,86,16],[94,14,86,22,"isKeys"],[94,20,86,28],[94,23,86,31],[94,27,86,35,"Array"],[94,32,86,40],[94,33,86,41,"count"],[94,38,86,46],[94,39,86,47],[95,8,87,16],[95,13,87,21],[95,17,87,25,"i"],[95,18,87,26],[95,21,87,29],[95,22,87,30],[95,24,87,32,"i"],[95,25,87,33],[95,28,87,36,"count"],[95,33,87,41],[95,35,87,43,"i"],[95,36,87,44],[95,38,87,46],[95,40,87,48],[96,10,88,20,"isKeys"],[96,16,88,26],[96,17,88,27,"i"],[96,18,88,28],[96,19,88,29],[96,22,88,32],[96,27,88,37],[96,31,88,37,"stringPascalCase"],[96,44,88,53],[96,45,88,53,"stringPascalCase"],[96,61,88,53],[96,63,88,54,"keys"],[96,67,88,58],[96,68,88,59,"i"],[96,69,88,60],[96,70,88,61],[96,71,88,62],[96,73,88,64],[97,8,89,16],[98,8,90,16],[98,12,90,16,"objectProperties"],[98,25,90,32],[98,26,90,32,"objectProperties"],[98,42,90,32],[98,44,90,33,"_Class"],[98,50,90,33],[98,51,90,38,"prototype"],[98,60,90,47],[98,62,90,49,"isKeys"],[98,68,90,55],[98,70,90,57],[98,71,90,58,"_"],[98,72,90,59],[98,74,90,61,"i"],[98,75,90,62],[98,77,90,64,"self"],[98,81,90,68],[98,86,90,73,"self"],[98,90,90,77],[98,91,90,78,"strings"],[98,98,90,85],[98,99,90,86,"includes"],[98,107,90,94],[98,108,90,95,"keys"],[98,112,90,99],[98,113,90,100,"i"],[98,114,90,101],[98,115,90,102],[98,116,90,103],[98,117,90,104],[99,6,90,105],[99,12,90,105,"_Class"],[99,18,90,105],[100,4,96,4],[101,4,97,4],[102,0,98,0],[103,0,99,0],[104,4,100,4],[104,8,100,8,"encodedLength"],[104,21,100,21,"encodedLength"],[104,22,100,21],[104,24,100,24],[105,6,101,8],[105,13,101,15],[105,17,101,19],[105,18,101,20],[105,19,101,21,"byteLength"],[105,29,101,31],[106,4,102,4],[107,4,103,4],[108,0,104,0],[109,0,105,0],[110,4,106,4],[110,8,106,8,"hash"],[110,12,106,12,"hash"],[110,13,106,12],[110,15,106,15],[111,6,107,8],[111,13,107,15],[111,17,107,19],[111,18,107,20,"registry"],[111,26,107,28],[111,27,107,29,"hash"],[111,31,107,33],[111,32,107,34],[111,36,107,38],[111,37,107,39,"toU8a"],[111,42,107,44],[111,43,107,45],[111,44,107,46],[111,45,107,47],[112,4,108,4],[113,4,109,4],[114,0,110,0],[115,0,111,0],[116,4,112,4],[116,8,112,8,"isEmpty"],[116,15,112,15,"isEmpty"],[116,16,112,15],[116,18,112,18],[117,6,113,8],[117,13,113,15],[117,17,113,19],[117,18,113,20,"size"],[117,22,113,24],[117,27,113,29],[117,28,113,30],[118,4,114,4],[119,4,115,4],[120,0,116,0],[121,0,117,0],[122,4,118,4],[122,8,118,8,"strings"],[122,15,118,15,"strings"],[122,16,118,15],[122,18,118,18],[123,6,119,8],[123,13,119,15],[123,14,119,16],[123,17,119,19],[123,22,119,24],[123,23,119,25,"values"],[123,29,119,31],[123,30,119,32],[123,31,119,33],[123,32,119,34],[124,4,120,4],[125,4,121,4],[126,0,122,0],[127,0,123,0],[128,4,124,4],[128,8,124,8,"valueEncoded"],[128,20,124,20,"valueEncoded"],[128,21,124,20],[128,23,124,23],[129,6,125,8],[129,13,125,15,"encodeSet"],[129,22,125,24],[129,23,125,25],[129,27,125,29],[129,28,125,30],[129,29,125,31,"allowed"],[129,36,125,38],[129,38,125,40],[129,42,125,44],[129,43,125,45,"strings"],[129,50,125,52],[129,51,125,53],[130,4,126,4],[131,4,127,4],[132,0,128,0],[133,0,129,0],[134,4,130,4,"add"],[134,7,130,7],[134,10,130,11,"key"],[134,13,130,14],[134,17,130,19],[135,6,131,8],[136,6,132,8],[137,6,133,8],[138,6,134,8],[138,10,134,12],[138,14,134,16],[138,15,134,17],[138,16,134,18,"allowed"],[138,23,134,25],[138,27,134,29],[138,31,134,29,"isUndefined"],[138,44,134,40],[138,45,134,40,"isUndefined"],[138,56,134,40],[138,58,134,41],[138,62,134,45],[138,63,134,46],[138,64,134,47,"allowed"],[138,71,134,54],[138,72,134,55,"key"],[138,75,134,58],[138,76,134,59],[138,77,134,60],[138,79,134,62],[139,8,135,12],[139,14,135,18],[139,18,135,22,"Error"],[139,23,135,27],[139,24,135,28],[139,45,135,49,"key"],[139,48,135,52],[139,58,135,62],[139,59,135,63],[140,6,136,8],[141,6,137,8],[141,11,137,13],[141,12,137,14,"add"],[141,15,137,17],[141,16,137,18,"key"],[141,19,137,21],[141,20,137,22],[142,6,138,8],[142,13,138,15],[142,17,138,19],[143,4,139,4],[143,5,139,5],[144,4,140,4],[145,0,141,0],[146,0,142,0],[147,4,143,4,"eq"],[147,6,143,6,"eq"],[147,7,143,7,"other"],[147,12,143,12],[147,14,143,14],[148,6,144,8],[148,10,144,12,"Array"],[148,15,144,17],[148,16,144,18,"isArray"],[148,23,144,25],[148,24,144,26,"other"],[148,29,144,31],[148,30,144,32],[148,32,144,34],[149,8,145,12],[150,8,146,12],[150,15,146,19],[150,19,146,19,"compareArray"],[150,32,146,31],[150,33,146,31,"compareArray"],[150,45,146,31],[150,47,146,32],[150,51,146,36],[150,52,146,37,"strings"],[150,59,146,44],[150,60,146,45,"sort"],[150,64,146,49],[150,65,146,50],[150,66,146,51],[150,68,146,53,"other"],[150,73,146,58],[150,74,146,59,"sort"],[150,78,146,63],[150,79,146,64],[150,80,146,65],[150,81,146,66],[151,6,147,8],[151,7,147,9],[151,13,148,13],[151,17,148,17,"other"],[151,22,148,22],[151,34,148,34,"Set"],[151,37,148,37],[151,39,148,39],[152,8,149,12],[152,15,149,19],[152,19,149,23],[152,20,149,24,"eq"],[152,22,149,26],[152,23,149,27],[152,24,149,28],[152,27,149,31,"other"],[152,32,149,36],[152,33,149,37,"values"],[152,39,149,43],[152,40,149,44],[152,41,149,45],[152,42,149,46],[152,43,149,47],[153,6,150,8],[153,7,150,9],[153,13,151,13],[153,17,151,17],[153,21,151,17,"isNumber"],[153,34,151,25],[153,35,151,25,"isNumber"],[153,43,151,25],[153,45,151,26,"other"],[153,50,151,31],[153,51,151,32],[153,55,151,36],[153,59,151,36,"isBn"],[153,72,151,40],[153,73,151,40,"isBn"],[153,77,151,40],[153,79,151,41,"other"],[153,84,151,46],[153,85,151,47],[153,87,151,49],[154,8,152,12],[154,15,152,19],[154,19,152,23],[154,20,152,24,"valueEncoded"],[154,32,152,36],[154,33,152,37,"eq"],[154,35,152,39],[154,36,152,40],[154,40,152,40,"bnToBn"],[154,53,152,46],[154,54,152,46,"bnToBn"],[154,60,152,46],[154,62,152,47,"other"],[154,67,152,52],[154,68,152,53],[154,69,152,54],[155,6,153,8],[156,6,154,8],[156,13,154,15],[156,18,154,20],[157,4,155,4],[158,4,156,4],[159,0,157,0],[160,0,158,0],[161,4,159,4,"inspect"],[161,11,159,11,"inspect"],[161,12,159,11],[161,14,159,14],[162,6,160,8],[162,13,160,15],[163,8,161,12,"outer"],[163,13,161,17],[163,15,161,19],[163,16,161,20],[163,20,161,24],[163,21,161,25,"toU8a"],[163,26,161,30],[163,27,161,31],[163,28,161,32],[164,6,162,8],[164,7,162,9],[165,4,163,4],[166,4,164,4],[167,0,165,0],[168,0,166,0],[169,4,167,4,"toHex"],[169,9,167,9,"toHex"],[169,10,167,9],[169,12,167,12],[170,6,168,8],[170,13,168,15],[170,17,168,15,"u8aToHex"],[170,30,168,23],[170,31,168,23,"u8aToHex"],[170,39,168,23],[170,41,168,24],[170,45,168,28],[170,46,168,29,"toU8a"],[170,51,168,34],[170,52,168,35],[170,53,168,36],[170,54,168,37],[171,4,169,4],[172,4,170,4],[173,0,171,0],[174,0,172,0],[175,4,173,4,"toHuman"],[175,11,173,11,"toHuman"],[175,12,173,11],[175,14,173,14],[176,6,174,8],[176,13,174,15],[176,17,174,19],[176,18,174,20,"toJSON"],[176,24,174,26],[176,25,174,27],[176,26,174,28],[177,4,175,4],[178,4,176,4],[179,0,177,0],[180,0,178,0],[181,4,179,4,"toJSON"],[181,10,179,10,"toJSON"],[181,11,179,10],[181,13,179,13],[182,6,180,8],[182,13,180,15],[182,17,180,19],[182,18,180,20,"strings"],[182,25,180,27],[183,4,181,4],[184,4,182,4],[185,0,183,0],[186,0,184,0],[187,4,185,4,"toNumber"],[187,12,185,12,"toNumber"],[187,13,185,12],[187,15,185,15],[188,6,186,8],[188,13,186,15],[188,17,186,19],[188,18,186,20,"valueEncoded"],[188,30,186,32],[188,31,186,33,"toNumber"],[188,39,186,41],[188,40,186,42],[188,41,186,43],[189,4,187,4],[190,4,188,4],[191,0,189,0],[192,0,190,0],[193,4,191,4,"toPrimitive"],[193,15,191,15,"toPrimitive"],[193,16,191,15],[193,18,191,18],[194,6,192,8],[194,13,192,15],[194,17,192,19],[194,18,192,20,"toJSON"],[194,24,192,26],[194,25,192,27],[194,26,192,28],[195,4,193,4],[196,4,194,4],[197,0,195,0],[198,0,196,0],[199,4,197,4,"toRawType"],[199,13,197,13,"toRawType"],[199,14,197,13],[199,16,197,16],[200,6,198,8],[200,13,198,15],[200,17,198,15,"stringify"],[200,30,198,24],[200,31,198,24,"stringify"],[200,40,198,24],[200,42,198,25],[201,8,198,27,"_set"],[201,12,198,31],[201,14,198,33],[201,18,198,37],[201,19,198,38],[201,20,198,39,"allowed"],[202,6,198,47],[202,7,198,48],[202,8,198,49],[203,4,199,4],[204,4,200,4],[205,0,201,0],[206,0,202,0],[207,4,203,4,"toString"],[207,12,203,12,"toString"],[207,13,203,12],[207,15,203,15],[208,6,204,8],[208,13,204,15],[208,17,204,19],[208,21,204,23],[208,22,204,24,"strings"],[208,29,204,31],[208,30,204,32,"join"],[208,34,204,36],[208,35,204,37],[208,39,204,41],[208,40,204,42],[208,43,204,45],[209,4,205,4],[210,4,206,4],[211,0,207,0],[212,0,208,0],[213,4,209,4,"toU8a"],[213,9,209,9,"toU8a"],[213,10,209,10,"_isBare"],[213,17,209,17],[213,19,209,19],[214,6,210,8],[214,13,210,15],[214,17,210,15,"bnToU8a"],[214,30,210,22],[214,31,210,22,"bnToU8a"],[214,38,210,22],[214,40,210,23],[214,44,210,27],[214,45,210,28,"valueEncoded"],[214,57,210,40],[214,59,210,42],[215,8,211,12,"bitLength"],[215,17,211,21],[215,19,211,23],[215,23,211,27],[215,24,211,28],[215,25,211,29,"byteLength"],[215,35,211,39],[215,38,211,42],[215,39,211,43],[216,8,212,12,"isLe"],[216,12,212,16],[216,14,212,18],[217,6,213,8],[217,7,213,9],[217,8,213,10],[218,4,214,4],[219,2,215,0],[220,0,215,1],[220,3]],"functionMap":{"names":["","encodeSet","decodeSetArray","decodeSetNumber","decodeSet","CodecSet","CodecSet#constructor","CodecSet._with","","objectProperties$argument_2","constructor","CodecSet#get__encodedLength","CodecSet#get__hash","CodecSet#get__isEmpty","CodecSet#get__strings","CodecSet#get__valueEncoded","CodecSet#add","CodecSet#eq","CodecSet#inspect","CodecSet#toHex","CodecSet#toHuman","CodecSet#toJSON","CodecSet#toNumber","CodecSet#toPrimitive","CodecSet#toRawType","CodecSet#toString","CodecSet#toU8a"],"mappings":"AAA;ACE;CDM;AEE;CFW;AGE;CHe;AIE;CJoB;OKO;ICO;KDK;IEC;eCC;yDCQ,8CD;YEE;aFE;SDC;KFC;IMI;KNE;IOI;KPE;IQI;KRE;ISI;KTE;IUI;KVE;UWI;KXS;IYI;KZY;IaI;KbI;IcI;KdE;IeI;KfE;IgBI;KhBE;IiBI;KjBE;IkBI;KlBE;ImBI;KnBE;IoBI;KpBE;IqBI;KrBK;CLC"},"hasCjsExports":false},"type":"js/module"}]}