{"dependencies":[{"name":"./_blake.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":6,"column":0,"index":161},"end":{"line":6,"column":47,"index":208}}],"key":"0TznBSPDU6bpMf5tsIVlafG9nrI=","exportNames":["*"],"imports":1}},{"name":"./_md.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":7,"column":0,"index":209},"end":{"line":7,"column":37,"index":246}}],"key":"tB4HJk8bCOTtPJTmRAwfZxSLt28=","exportNames":["*"],"imports":1}},{"name":"./_u64.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":8,"column":0,"index":247},"end":{"line":8,"column":33,"index":280}}],"key":"GukG3QMbB1Oc+ks9LWMbKqlyW/E=","exportNames":["*"],"imports":1}},{"name":"./utils.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":10,"column":0,"index":300},"end":{"line":10,"column":130,"index":430}}],"key":"NIaSEHO1E48gsZc7jH9Ex1xTHgE=","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 function _interopNamespace(e) {\n if (e && e.__esModule) return e;\n var n = {};\n if (e) Object.keys(e).forEach(function (k) {\n var d = Object.getOwnPropertyDescriptor(e, k);\n Object.defineProperty(n, k, d.get ? d : {\n enumerable: true,\n get: function () {\n return e[k];\n }\n });\n });\n n.default = e;\n return n;\n }\n Object.defineProperty(exports, \"BLAKE2\", {\n enumerable: true,\n get: function () {\n return BLAKE2;\n }\n });\n Object.defineProperty(exports, \"BLAKE2b\", {\n enumerable: true,\n get: function () {\n return BLAKE2b;\n }\n });\n Object.defineProperty(exports, \"blake2b\", {\n enumerable: true,\n get: function () {\n return blake2b;\n }\n });\n exports.compress = compress;\n Object.defineProperty(exports, \"BLAKE2s\", {\n enumerable: true,\n get: function () {\n return BLAKE2s;\n }\n });\n Object.defineProperty(exports, \"blake2s\", {\n enumerable: true,\n get: function () {\n return blake2s;\n }\n });\n var _blakeJs = require(_dependencyMap[0], \"./_blake.js\");\n var _mdJs = require(_dependencyMap[1], \"./_md.js\");\n var _u64Js = require(_dependencyMap[2], \"./_u64.js\");\n var u64 = _interopNamespace(_u64Js);\n var _utilsJs = require(_dependencyMap[3], \"./utils.js\");\n /**\n * blake2b (64-bit) & blake2s (8 to 32-bit) hash functions.\n * b could have been faster, but there is no fast u64 in js, so s is 1.5x faster.\n * @module\n */\n\n // prettier-ignore\n\n // Same as SHA512_IV, but swapped endianness: LE instead of BE. iv[1] is iv[0], etc.\n const B2B_IV = /* @__PURE__ */Uint32Array.from([0xf3bcc908, 0x6a09e667, 0x84caa73b, 0xbb67ae85, 0xfe94f82b, 0x3c6ef372, 0x5f1d36f1, 0xa54ff53a, 0xade682d1, 0x510e527f, 0x2b3e6c1f, 0x9b05688c, 0xfb41bd6b, 0x1f83d9ab, 0x137e2179, 0x5be0cd19]);\n // Temporary buffer\n const BBUF = /* @__PURE__ */new Uint32Array(32);\n // Mixing function G splitted in two halfs\n function G1b(a, b, c, d, msg, x) {\n // NOTE: V is LE here\n const Xl = msg[x],\n Xh = msg[x + 1]; // prettier-ignore\n let Al = BBUF[2 * a],\n Ah = BBUF[2 * a + 1]; // prettier-ignore\n let Bl = BBUF[2 * b],\n Bh = BBUF[2 * b + 1]; // prettier-ignore\n let Cl = BBUF[2 * c],\n Ch = BBUF[2 * c + 1]; // prettier-ignore\n let Dl = BBUF[2 * d],\n Dh = BBUF[2 * d + 1]; // prettier-ignore\n // v[a] = (v[a] + v[b] + x) | 0;\n let ll = u64.add3L(Al, Bl, Xl);\n Ah = u64.add3H(ll, Ah, Bh, Xh);\n Al = ll | 0;\n // v[d] = rotr(v[d] ^ v[a], 32)\n ({\n Dh,\n Dl\n } = {\n Dh: Dh ^ Ah,\n Dl: Dl ^ Al\n });\n ({\n Dh,\n Dl\n } = {\n Dh: u64.rotr32H(Dh, Dl),\n Dl: u64.rotr32L(Dh, Dl)\n });\n // v[c] = (v[c] + v[d]) | 0;\n ({\n h: Ch,\n l: Cl\n } = u64.add(Ch, Cl, Dh, Dl));\n // v[b] = rotr(v[b] ^ v[c], 24)\n ({\n Bh,\n Bl\n } = {\n Bh: Bh ^ Ch,\n Bl: Bl ^ Cl\n });\n ({\n Bh,\n Bl\n } = {\n Bh: u64.rotrSH(Bh, Bl, 24),\n Bl: u64.rotrSL(Bh, Bl, 24)\n });\n BBUF[2 * a] = Al, BBUF[2 * a + 1] = Ah;\n BBUF[2 * b] = Bl, BBUF[2 * b + 1] = Bh;\n BBUF[2 * c] = Cl, BBUF[2 * c + 1] = Ch;\n BBUF[2 * d] = Dl, BBUF[2 * d + 1] = Dh;\n }\n function G2b(a, b, c, d, msg, x) {\n // NOTE: V is LE here\n const Xl = msg[x],\n Xh = msg[x + 1]; // prettier-ignore\n let Al = BBUF[2 * a],\n Ah = BBUF[2 * a + 1]; // prettier-ignore\n let Bl = BBUF[2 * b],\n Bh = BBUF[2 * b + 1]; // prettier-ignore\n let Cl = BBUF[2 * c],\n Ch = BBUF[2 * c + 1]; // prettier-ignore\n let Dl = BBUF[2 * d],\n Dh = BBUF[2 * d + 1]; // prettier-ignore\n // v[a] = (v[a] + v[b] + x) | 0;\n let ll = u64.add3L(Al, Bl, Xl);\n Ah = u64.add3H(ll, Ah, Bh, Xh);\n Al = ll | 0;\n // v[d] = rotr(v[d] ^ v[a], 16)\n ({\n Dh,\n Dl\n } = {\n Dh: Dh ^ Ah,\n Dl: Dl ^ Al\n });\n ({\n Dh,\n Dl\n } = {\n Dh: u64.rotrSH(Dh, Dl, 16),\n Dl: u64.rotrSL(Dh, Dl, 16)\n });\n // v[c] = (v[c] + v[d]) | 0;\n ({\n h: Ch,\n l: Cl\n } = u64.add(Ch, Cl, Dh, Dl));\n // v[b] = rotr(v[b] ^ v[c], 63)\n ({\n Bh,\n Bl\n } = {\n Bh: Bh ^ Ch,\n Bl: Bl ^ Cl\n });\n ({\n Bh,\n Bl\n } = {\n Bh: u64.rotrBH(Bh, Bl, 63),\n Bl: u64.rotrBL(Bh, Bl, 63)\n });\n BBUF[2 * a] = Al, BBUF[2 * a + 1] = Ah;\n BBUF[2 * b] = Bl, BBUF[2 * b + 1] = Bh;\n BBUF[2 * c] = Cl, BBUF[2 * c + 1] = Ch;\n BBUF[2 * d] = Dl, BBUF[2 * d + 1] = Dh;\n }\n function checkBlake2Opts(outputLen, opts = {}, keyLen, saltLen, persLen) {\n (0, _utilsJs.anumber)(keyLen);\n if (outputLen < 0 || outputLen > keyLen) throw new Error('outputLen bigger than keyLen');\n const {\n key,\n salt,\n personalization\n } = opts;\n if (key !== undefined && (key.length < 1 || key.length > keyLen)) throw new Error('key length must be undefined or 1..' + keyLen);\n if (salt !== undefined && salt.length !== saltLen) throw new Error('salt must be undefined or ' + saltLen);\n if (personalization !== undefined && personalization.length !== persLen) throw new Error('personalization must be undefined or ' + persLen);\n }\n /** Class, from which others are subclassed. */\n class BLAKE2 extends _utilsJs.Hash {\n constructor(blockLen, outputLen) {\n super();\n this.finished = false;\n this.destroyed = false;\n this.length = 0;\n this.pos = 0;\n (0, _utilsJs.anumber)(blockLen);\n (0, _utilsJs.anumber)(outputLen);\n this.blockLen = blockLen;\n this.outputLen = outputLen;\n this.buffer = new Uint8Array(blockLen);\n this.buffer32 = (0, _utilsJs.u32)(this.buffer);\n }\n update(data) {\n (0, _utilsJs.aexists)(this);\n data = (0, _utilsJs.toBytes)(data);\n (0, _utilsJs.abytes)(data);\n // Main difference with other hashes: there is flag for last block,\n // so we cannot process current block before we know that there\n // is the next one. This significantly complicates logic and reduces ability\n // to do zero-copy processing\n const {\n blockLen,\n buffer,\n buffer32\n } = this;\n const len = data.length;\n const offset = data.byteOffset;\n const buf = data.buffer;\n for (let pos = 0; pos < len;) {\n // If buffer is full and we still have input (don't process last block, same as blake2s)\n if (this.pos === blockLen) {\n (0, _utilsJs.swap32IfBE)(buffer32);\n this.compress(buffer32, 0, false);\n (0, _utilsJs.swap32IfBE)(buffer32);\n this.pos = 0;\n }\n const take = Math.min(blockLen - this.pos, len - pos);\n const dataOffset = offset + pos;\n // full block && aligned to 4 bytes && not last in input\n if (take === blockLen && !(dataOffset % 4) && pos + take < len) {\n const data32 = new Uint32Array(buf, dataOffset, Math.floor((len - pos) / 4));\n (0, _utilsJs.swap32IfBE)(data32);\n for (let pos32 = 0; pos + blockLen < len; pos32 += buffer32.length, pos += blockLen) {\n this.length += blockLen;\n this.compress(data32, pos32, false);\n }\n (0, _utilsJs.swap32IfBE)(data32);\n continue;\n }\n buffer.set(data.subarray(pos, pos + take), this.pos);\n this.pos += take;\n this.length += take;\n pos += take;\n }\n return this;\n }\n digestInto(out) {\n (0, _utilsJs.aexists)(this);\n (0, _utilsJs.aoutput)(out, this);\n const {\n pos,\n buffer32\n } = this;\n this.finished = true;\n // Padding\n (0, _utilsJs.clean)(this.buffer.subarray(pos));\n (0, _utilsJs.swap32IfBE)(buffer32);\n this.compress(buffer32, 0, true);\n (0, _utilsJs.swap32IfBE)(buffer32);\n const out32 = (0, _utilsJs.u32)(out);\n this.get().forEach((v, i) => out32[i] = (0, _utilsJs.swap8IfBE)(v));\n }\n digest() {\n const {\n buffer,\n outputLen\n } = this;\n this.digestInto(buffer);\n const res = buffer.slice(0, outputLen);\n this.destroy();\n return res;\n }\n _cloneInto(to) {\n const {\n buffer,\n length,\n finished,\n destroyed,\n outputLen,\n pos\n } = this;\n to || (to = new this.constructor({\n dkLen: outputLen\n }));\n to.set(...this.get());\n to.buffer.set(buffer);\n to.destroyed = destroyed;\n to.finished = finished;\n to.length = length;\n to.pos = pos;\n // @ts-ignore\n to.outputLen = outputLen;\n return to;\n }\n clone() {\n return this._cloneInto();\n }\n }\n class BLAKE2b extends BLAKE2 {\n constructor(opts = {}) {\n const olen = opts.dkLen === undefined ? 64 : opts.dkLen;\n super(128, olen);\n // Same as SHA-512, but LE\n this.v0l = B2B_IV[0] | 0;\n this.v0h = B2B_IV[1] | 0;\n this.v1l = B2B_IV[2] | 0;\n this.v1h = B2B_IV[3] | 0;\n this.v2l = B2B_IV[4] | 0;\n this.v2h = B2B_IV[5] | 0;\n this.v3l = B2B_IV[6] | 0;\n this.v3h = B2B_IV[7] | 0;\n this.v4l = B2B_IV[8] | 0;\n this.v4h = B2B_IV[9] | 0;\n this.v5l = B2B_IV[10] | 0;\n this.v5h = B2B_IV[11] | 0;\n this.v6l = B2B_IV[12] | 0;\n this.v6h = B2B_IV[13] | 0;\n this.v7l = B2B_IV[14] | 0;\n this.v7h = B2B_IV[15] | 0;\n checkBlake2Opts(olen, opts, 64, 16, 16);\n let {\n key,\n personalization,\n salt\n } = opts;\n let keyLength = 0;\n if (key !== undefined) {\n key = (0, _utilsJs.toBytes)(key);\n keyLength = key.length;\n }\n this.v0l ^= this.outputLen | keyLength << 8 | 0x01 << 16 | 0x01 << 24;\n if (salt !== undefined) {\n salt = (0, _utilsJs.toBytes)(salt);\n const slt = (0, _utilsJs.u32)(salt);\n this.v4l ^= (0, _utilsJs.swap8IfBE)(slt[0]);\n this.v4h ^= (0, _utilsJs.swap8IfBE)(slt[1]);\n this.v5l ^= (0, _utilsJs.swap8IfBE)(slt[2]);\n this.v5h ^= (0, _utilsJs.swap8IfBE)(slt[3]);\n }\n if (personalization !== undefined) {\n personalization = (0, _utilsJs.toBytes)(personalization);\n const pers = (0, _utilsJs.u32)(personalization);\n this.v6l ^= (0, _utilsJs.swap8IfBE)(pers[0]);\n this.v6h ^= (0, _utilsJs.swap8IfBE)(pers[1]);\n this.v7l ^= (0, _utilsJs.swap8IfBE)(pers[2]);\n this.v7h ^= (0, _utilsJs.swap8IfBE)(pers[3]);\n }\n if (key !== undefined) {\n // Pad to blockLen and update\n const tmp = new Uint8Array(this.blockLen);\n tmp.set(key);\n this.update(tmp);\n }\n }\n // prettier-ignore\n get() {\n let {\n v0l,\n v0h,\n v1l,\n v1h,\n v2l,\n v2h,\n v3l,\n v3h,\n v4l,\n v4h,\n v5l,\n v5h,\n v6l,\n v6h,\n v7l,\n v7h\n } = this;\n return [v0l, v0h, v1l, v1h, v2l, v2h, v3l, v3h, v4l, v4h, v5l, v5h, v6l, v6h, v7l, v7h];\n }\n // prettier-ignore\n set(v0l, v0h, v1l, v1h, v2l, v2h, v3l, v3h, v4l, v4h, v5l, v5h, v6l, v6h, v7l, v7h) {\n this.v0l = v0l | 0;\n this.v0h = v0h | 0;\n this.v1l = v1l | 0;\n this.v1h = v1h | 0;\n this.v2l = v2l | 0;\n this.v2h = v2h | 0;\n this.v3l = v3l | 0;\n this.v3h = v3h | 0;\n this.v4l = v4l | 0;\n this.v4h = v4h | 0;\n this.v5l = v5l | 0;\n this.v5h = v5h | 0;\n this.v6l = v6l | 0;\n this.v6h = v6h | 0;\n this.v7l = v7l | 0;\n this.v7h = v7h | 0;\n }\n compress(msg, offset, isLast) {\n this.get().forEach((v, i) => BBUF[i] = v); // First half from state.\n BBUF.set(B2B_IV, 16); // Second half from IV.\n let {\n h,\n l\n } = u64.fromBig(BigInt(this.length));\n BBUF[24] = B2B_IV[8] ^ l; // Low word of the offset.\n BBUF[25] = B2B_IV[9] ^ h; // High word.\n // Invert all bits for last block\n if (isLast) {\n BBUF[28] = ~BBUF[28];\n BBUF[29] = ~BBUF[29];\n }\n let j = 0;\n const s = _blakeJs.BSIGMA;\n for (let i = 0; i < 12; i++) {\n G1b(0, 4, 8, 12, msg, offset + 2 * s[j++]);\n G2b(0, 4, 8, 12, msg, offset + 2 * s[j++]);\n G1b(1, 5, 9, 13, msg, offset + 2 * s[j++]);\n G2b(1, 5, 9, 13, msg, offset + 2 * s[j++]);\n G1b(2, 6, 10, 14, msg, offset + 2 * s[j++]);\n G2b(2, 6, 10, 14, msg, offset + 2 * s[j++]);\n G1b(3, 7, 11, 15, msg, offset + 2 * s[j++]);\n G2b(3, 7, 11, 15, msg, offset + 2 * s[j++]);\n G1b(0, 5, 10, 15, msg, offset + 2 * s[j++]);\n G2b(0, 5, 10, 15, msg, offset + 2 * s[j++]);\n G1b(1, 6, 11, 12, msg, offset + 2 * s[j++]);\n G2b(1, 6, 11, 12, msg, offset + 2 * s[j++]);\n G1b(2, 7, 8, 13, msg, offset + 2 * s[j++]);\n G2b(2, 7, 8, 13, msg, offset + 2 * s[j++]);\n G1b(3, 4, 9, 14, msg, offset + 2 * s[j++]);\n G2b(3, 4, 9, 14, msg, offset + 2 * s[j++]);\n }\n this.v0l ^= BBUF[0] ^ BBUF[16];\n this.v0h ^= BBUF[1] ^ BBUF[17];\n this.v1l ^= BBUF[2] ^ BBUF[18];\n this.v1h ^= BBUF[3] ^ BBUF[19];\n this.v2l ^= BBUF[4] ^ BBUF[20];\n this.v2h ^= BBUF[5] ^ BBUF[21];\n this.v3l ^= BBUF[6] ^ BBUF[22];\n this.v3h ^= BBUF[7] ^ BBUF[23];\n this.v4l ^= BBUF[8] ^ BBUF[24];\n this.v4h ^= BBUF[9] ^ BBUF[25];\n this.v5l ^= BBUF[10] ^ BBUF[26];\n this.v5h ^= BBUF[11] ^ BBUF[27];\n this.v6l ^= BBUF[12] ^ BBUF[28];\n this.v6h ^= BBUF[13] ^ BBUF[29];\n this.v7l ^= BBUF[14] ^ BBUF[30];\n this.v7h ^= BBUF[15] ^ BBUF[31];\n (0, _utilsJs.clean)(BBUF);\n }\n destroy() {\n this.destroyed = true;\n (0, _utilsJs.clean)(this.buffer32);\n this.set(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);\n }\n }\n /**\n * Blake2b hash function. 64-bit. 1.5x slower than blake2s in JS.\n * @param msg - message that would be hashed\n * @param opts - dkLen output length, key for MAC mode, salt, personalization\n */\n const blake2b = /* @__PURE__ */(0, _utilsJs.createOptHasher)(opts => new BLAKE2b(opts));\n // prettier-ignore\n function compress(s, offset, msg, rounds, v0, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15) {\n let j = 0;\n for (let i = 0; i < rounds; i++) {\n ({\n a: v0,\n b: v4,\n c: v8,\n d: v12\n } = (0, _blakeJs.G1s)(v0, v4, v8, v12, msg[offset + s[j++]]));\n ({\n a: v0,\n b: v4,\n c: v8,\n d: v12\n } = (0, _blakeJs.G2s)(v0, v4, v8, v12, msg[offset + s[j++]]));\n ({\n a: v1,\n b: v5,\n c: v9,\n d: v13\n } = (0, _blakeJs.G1s)(v1, v5, v9, v13, msg[offset + s[j++]]));\n ({\n a: v1,\n b: v5,\n c: v9,\n d: v13\n } = (0, _blakeJs.G2s)(v1, v5, v9, v13, msg[offset + s[j++]]));\n ({\n a: v2,\n b: v6,\n c: v10,\n d: v14\n } = (0, _blakeJs.G1s)(v2, v6, v10, v14, msg[offset + s[j++]]));\n ({\n a: v2,\n b: v6,\n c: v10,\n d: v14\n } = (0, _blakeJs.G2s)(v2, v6, v10, v14, msg[offset + s[j++]]));\n ({\n a: v3,\n b: v7,\n c: v11,\n d: v15\n } = (0, _blakeJs.G1s)(v3, v7, v11, v15, msg[offset + s[j++]]));\n ({\n a: v3,\n b: v7,\n c: v11,\n d: v15\n } = (0, _blakeJs.G2s)(v3, v7, v11, v15, msg[offset + s[j++]]));\n ({\n a: v0,\n b: v5,\n c: v10,\n d: v15\n } = (0, _blakeJs.G1s)(v0, v5, v10, v15, msg[offset + s[j++]]));\n ({\n a: v0,\n b: v5,\n c: v10,\n d: v15\n } = (0, _blakeJs.G2s)(v0, v5, v10, v15, msg[offset + s[j++]]));\n ({\n a: v1,\n b: v6,\n c: v11,\n d: v12\n } = (0, _blakeJs.G1s)(v1, v6, v11, v12, msg[offset + s[j++]]));\n ({\n a: v1,\n b: v6,\n c: v11,\n d: v12\n } = (0, _blakeJs.G2s)(v1, v6, v11, v12, msg[offset + s[j++]]));\n ({\n a: v2,\n b: v7,\n c: v8,\n d: v13\n } = (0, _blakeJs.G1s)(v2, v7, v8, v13, msg[offset + s[j++]]));\n ({\n a: v2,\n b: v7,\n c: v8,\n d: v13\n } = (0, _blakeJs.G2s)(v2, v7, v8, v13, msg[offset + s[j++]]));\n ({\n a: v3,\n b: v4,\n c: v9,\n d: v14\n } = (0, _blakeJs.G1s)(v3, v4, v9, v14, msg[offset + s[j++]]));\n ({\n a: v3,\n b: v4,\n c: v9,\n d: v14\n } = (0, _blakeJs.G2s)(v3, v4, v9, v14, msg[offset + s[j++]]));\n }\n return {\n v0,\n v1,\n v2,\n v3,\n v4,\n v5,\n v6,\n v7,\n v8,\n v9,\n v10,\n v11,\n v12,\n v13,\n v14,\n v15\n };\n }\n const B2S_IV = _mdJs.SHA256_IV;\n class BLAKE2s extends BLAKE2 {\n constructor(opts = {}) {\n const olen = opts.dkLen === undefined ? 32 : opts.dkLen;\n super(64, olen);\n // Internal state, same as SHA-256\n this.v0 = B2S_IV[0] | 0;\n this.v1 = B2S_IV[1] | 0;\n this.v2 = B2S_IV[2] | 0;\n this.v3 = B2S_IV[3] | 0;\n this.v4 = B2S_IV[4] | 0;\n this.v5 = B2S_IV[5] | 0;\n this.v6 = B2S_IV[6] | 0;\n this.v7 = B2S_IV[7] | 0;\n checkBlake2Opts(olen, opts, 32, 8, 8);\n let {\n key,\n personalization,\n salt\n } = opts;\n let keyLength = 0;\n if (key !== undefined) {\n key = (0, _utilsJs.toBytes)(key);\n keyLength = key.length;\n }\n this.v0 ^= this.outputLen | keyLength << 8 | 0x01 << 16 | 0x01 << 24;\n if (salt !== undefined) {\n salt = (0, _utilsJs.toBytes)(salt);\n const slt = (0, _utilsJs.u32)(salt);\n this.v4 ^= (0, _utilsJs.swap8IfBE)(slt[0]);\n this.v5 ^= (0, _utilsJs.swap8IfBE)(slt[1]);\n }\n if (personalization !== undefined) {\n personalization = (0, _utilsJs.toBytes)(personalization);\n const pers = (0, _utilsJs.u32)(personalization);\n this.v6 ^= (0, _utilsJs.swap8IfBE)(pers[0]);\n this.v7 ^= (0, _utilsJs.swap8IfBE)(pers[1]);\n }\n if (key !== undefined) {\n // Pad to blockLen and update\n (0, _utilsJs.abytes)(key);\n const tmp = new Uint8Array(this.blockLen);\n tmp.set(key);\n this.update(tmp);\n }\n }\n get() {\n const {\n v0,\n v1,\n v2,\n v3,\n v4,\n v5,\n v6,\n v7\n } = this;\n return [v0, v1, v2, v3, v4, v5, v6, v7];\n }\n // prettier-ignore\n set(v0, v1, v2, v3, v4, v5, v6, v7) {\n this.v0 = v0 | 0;\n this.v1 = v1 | 0;\n this.v2 = v2 | 0;\n this.v3 = v3 | 0;\n this.v4 = v4 | 0;\n this.v5 = v5 | 0;\n this.v6 = v6 | 0;\n this.v7 = v7 | 0;\n }\n compress(msg, offset, isLast) {\n const {\n h,\n l\n } = u64.fromBig(BigInt(this.length));\n // prettier-ignore\n const {\n v0,\n v1,\n v2,\n v3,\n v4,\n v5,\n v6,\n v7,\n v8,\n v9,\n v10,\n v11,\n v12,\n v13,\n v14,\n v15\n } = compress(_blakeJs.BSIGMA, offset, msg, 10, this.v0, this.v1, this.v2, this.v3, this.v4, this.v5, this.v6, this.v7, B2S_IV[0], B2S_IV[1], B2S_IV[2], B2S_IV[3], l ^ B2S_IV[4], h ^ B2S_IV[5], isLast ? ~B2S_IV[6] : B2S_IV[6], B2S_IV[7]);\n this.v0 ^= v0 ^ v8;\n this.v1 ^= v1 ^ v9;\n this.v2 ^= v2 ^ v10;\n this.v3 ^= v3 ^ v11;\n this.v4 ^= v4 ^ v12;\n this.v5 ^= v5 ^ v13;\n this.v6 ^= v6 ^ v14;\n this.v7 ^= v7 ^ v15;\n }\n destroy() {\n this.destroyed = true;\n (0, _utilsJs.clean)(this.buffer32);\n this.set(0, 0, 0, 0, 0, 0, 0, 0);\n }\n }\n /**\n * Blake2s hash function. Focuses on 8-bit to 32-bit platforms. 1.5x faster than blake2b in JS.\n * @param msg - message that would be hashed\n * @param opts - dkLen output length, key for MAC mode, salt, personalization\n */\n const blake2s = /* @__PURE__ */(0, _utilsJs.createOptHasher)(opts => new BLAKE2s(opts));\n});","lineCount":702,"map":[[22,2,80,0,"Object"],[22,8,80,0],[22,9,80,0,"defineProperty"],[22,23,80,0],[22,24,80,0,"exports"],[22,31,80,0],[23,4,80,0,"enumerable"],[23,14,80,0],[24,4,80,0,"get"],[24,7,80,0],[24,18,80,0,"get"],[24,19,80,0],[25,6,80,0],[25,13,80,0,"BLAKE2"],[25,19,80,0],[26,4,80,0],[27,2,80,0],[28,2,171,0,"Object"],[28,8,171,0],[28,9,171,0,"defineProperty"],[28,23,171,0],[28,24,171,0,"exports"],[28,31,171,0],[29,4,171,0,"enumerable"],[29,14,171,0],[30,4,171,0,"get"],[30,7,171,0],[30,18,171,0,"get"],[30,19,171,0],[31,6,171,0],[31,13,171,0,"BLAKE2b"],[31,20,171,0],[32,4,171,0],[33,2,171,0],[34,2,307,0,"Object"],[34,8,307,0],[34,9,307,0,"defineProperty"],[34,23,307,0],[34,24,307,0,"exports"],[34,31,307,0],[35,4,307,0,"enumerable"],[35,14,307,0],[36,4,307,0,"get"],[36,7,307,0],[36,18,307,0,"get"],[36,19,307,0],[37,6,307,0],[37,13,307,0,"blake2b"],[37,20,307,0],[38,4,307,0],[39,2,307,0],[40,2,309,0,"exports"],[40,9,309,0],[40,10,309,0,"compress"],[40,18,309,0],[40,21,309,0,"compress"],[40,29,309,0],[41,2,332,0,"Object"],[41,8,332,0],[41,9,332,0,"defineProperty"],[41,23,332,0],[41,24,332,0,"exports"],[41,31,332,0],[42,4,332,0,"enumerable"],[42,14,332,0],[43,4,332,0,"get"],[43,7,332,0],[43,18,332,0,"get"],[43,19,332,0],[44,6,332,0],[44,13,332,0,"BLAKE2s"],[44,20,332,0],[45,4,332,0],[46,2,332,0],[47,2,412,0,"Object"],[47,8,412,0],[47,9,412,0,"defineProperty"],[47,23,412,0],[47,24,412,0,"exports"],[47,31,412,0],[48,4,412,0,"enumerable"],[48,14,412,0],[49,4,412,0,"get"],[49,7,412,0],[49,18,412,0,"get"],[49,19,412,0],[50,6,412,0],[50,13,412,0,"blake2s"],[50,20,412,0],[51,4,412,0],[52,2,412,0],[53,2,6,0],[53,6,6,0,"_blakeJs"],[53,14,6,0],[53,17,6,0,"require"],[53,24,6,0],[53,25,6,0,"_dependencyMap"],[53,39,6,0],[54,2,7,0],[54,6,7,0,"_mdJs"],[54,11,7,0],[54,14,7,0,"require"],[54,21,7,0],[54,22,7,0,"_dependencyMap"],[54,36,7,0],[55,2,8,0],[55,6,8,0,"_u64Js"],[55,12,8,0],[55,15,8,0,"require"],[55,22,8,0],[55,23,8,0,"_dependencyMap"],[55,37,8,0],[56,2,8,0],[56,6,8,0,"u64"],[56,9,8,0],[56,12,8,0,"_interopNamespace"],[56,29,8,0],[56,30,8,0,"_u64Js"],[56,36,8,0],[57,2,10,0],[57,6,10,0,"_utilsJs"],[57,14,10,0],[57,17,10,0,"require"],[57,24,10,0],[57,25,10,0,"_dependencyMap"],[57,39,10,0],[58,2,1,0],[59,0,2,0],[60,0,3,0],[61,0,4,0],[62,0,5,0],[64,2,9,0],[66,2,11,0],[67,2,12,0],[67,8,12,6,"B2B_IV"],[67,14,12,12],[67,17,12,15],[67,32,12,31,"Uint32Array"],[67,43,12,42],[67,44,12,43,"from"],[67,48,12,47],[67,49,12,48],[67,50,13,4],[67,60,13,14],[67,62,13,16],[67,72,13,26],[67,74,13,28],[67,84,13,38],[67,86,13,40],[67,96,13,50],[67,98,13,52],[67,108,13,62],[67,110,13,64],[67,120,13,74],[67,122,13,76],[67,132,13,86],[67,134,13,88],[67,144,13,98],[67,146,14,4],[67,156,14,14],[67,158,14,16],[67,168,14,26],[67,170,14,28],[67,180,14,38],[67,182,14,40],[67,192,14,50],[67,194,14,52],[67,204,14,62],[67,206,14,64],[67,216,14,74],[67,218,14,76],[67,228,14,86],[67,230,14,88],[67,240,14,98],[67,241,15,1],[67,242,15,2],[68,2,16,0],[69,2,17,0],[69,8,17,6,"BBUF"],[69,12,17,10],[69,15,17,13],[69,30,17,29],[69,34,17,33,"Uint32Array"],[69,45,17,44],[69,46,17,45],[69,48,17,47],[69,49,17,48],[70,2,18,0],[71,2,19,0],[71,11,19,9,"G1b"],[71,14,19,12,"G1b"],[71,15,19,13,"a"],[71,16,19,14],[71,18,19,16,"b"],[71,19,19,17],[71,21,19,19,"c"],[71,22,19,20],[71,24,19,22,"d"],[71,25,19,23],[71,27,19,25,"msg"],[71,30,19,28],[71,32,19,30,"x"],[71,33,19,31],[71,35,19,33],[72,4,20,4],[73,4,21,4],[73,10,21,10,"Xl"],[73,12,21,12],[73,15,21,15,"msg"],[73,18,21,18],[73,19,21,19,"x"],[73,20,21,20],[73,21,21,21],[74,6,21,23,"Xh"],[74,8,21,25],[74,11,21,28,"msg"],[74,14,21,31],[74,15,21,32,"x"],[74,16,21,33],[74,19,21,36],[74,20,21,37],[74,21,21,38],[74,22,21,39],[74,23,21,40],[75,4,22,4],[75,8,22,8,"Al"],[75,10,22,10],[75,13,22,13,"BBUF"],[75,17,22,17],[75,18,22,18],[75,19,22,19],[75,22,22,22,"a"],[75,23,22,23],[75,24,22,24],[76,6,22,26,"Ah"],[76,8,22,28],[76,11,22,31,"BBUF"],[76,15,22,35],[76,16,22,36],[76,17,22,37],[76,20,22,40,"a"],[76,21,22,41],[76,24,22,44],[76,25,22,45],[76,26,22,46],[76,27,22,47],[76,28,22,48],[77,4,23,4],[77,8,23,8,"Bl"],[77,10,23,10],[77,13,23,13,"BBUF"],[77,17,23,17],[77,18,23,18],[77,19,23,19],[77,22,23,22,"b"],[77,23,23,23],[77,24,23,24],[78,6,23,26,"Bh"],[78,8,23,28],[78,11,23,31,"BBUF"],[78,15,23,35],[78,16,23,36],[78,17,23,37],[78,20,23,40,"b"],[78,21,23,41],[78,24,23,44],[78,25,23,45],[78,26,23,46],[78,27,23,47],[78,28,23,48],[79,4,24,4],[79,8,24,8,"Cl"],[79,10,24,10],[79,13,24,13,"BBUF"],[79,17,24,17],[79,18,24,18],[79,19,24,19],[79,22,24,22,"c"],[79,23,24,23],[79,24,24,24],[80,6,24,26,"Ch"],[80,8,24,28],[80,11,24,31,"BBUF"],[80,15,24,35],[80,16,24,36],[80,17,24,37],[80,20,24,40,"c"],[80,21,24,41],[80,24,24,44],[80,25,24,45],[80,26,24,46],[80,27,24,47],[80,28,24,48],[81,4,25,4],[81,8,25,8,"Dl"],[81,10,25,10],[81,13,25,13,"BBUF"],[81,17,25,17],[81,18,25,18],[81,19,25,19],[81,22,25,22,"d"],[81,23,25,23],[81,24,25,24],[82,6,25,26,"Dh"],[82,8,25,28],[82,11,25,31,"BBUF"],[82,15,25,35],[82,16,25,36],[82,17,25,37],[82,20,25,40,"d"],[82,21,25,41],[82,24,25,44],[82,25,25,45],[82,26,25,46],[82,27,25,47],[82,28,25,48],[83,4,26,4],[84,4,27,4],[84,8,27,8,"ll"],[84,10,27,10],[84,13,27,13,"u64"],[84,16,27,16],[84,17,27,17,"add3L"],[84,22,27,22],[84,23,27,23,"Al"],[84,25,27,25],[84,27,27,27,"Bl"],[84,29,27,29],[84,31,27,31,"Xl"],[84,33,27,33],[84,34,27,34],[85,4,28,4,"Ah"],[85,6,28,6],[85,9,28,9,"u64"],[85,12,28,12],[85,13,28,13,"add3H"],[85,18,28,18],[85,19,28,19,"ll"],[85,21,28,21],[85,23,28,23,"Ah"],[85,25,28,25],[85,27,28,27,"Bh"],[85,29,28,29],[85,31,28,31,"Xh"],[85,33,28,33],[85,34,28,34],[86,4,29,4,"Al"],[86,6,29,6],[86,9,29,9,"ll"],[86,11,29,11],[86,14,29,14],[86,15,29,15],[87,4,30,4],[88,4,31,4],[88,5,31,5],[89,6,31,7,"Dh"],[89,8,31,9],[90,6,31,11,"Dl"],[91,4,31,14],[91,5,31,15],[91,8,31,18],[92,6,31,20,"Dh"],[92,8,31,22],[92,10,31,24,"Dh"],[92,12,31,26],[92,15,31,29,"Ah"],[92,17,31,31],[93,6,31,33,"Dl"],[93,8,31,35],[93,10,31,37,"Dl"],[93,12,31,39],[93,15,31,42,"Al"],[94,4,31,45],[94,5,31,46],[95,4,32,4],[95,5,32,5],[96,6,32,7,"Dh"],[96,8,32,9],[97,6,32,11,"Dl"],[98,4,32,14],[98,5,32,15],[98,8,32,18],[99,6,32,20,"Dh"],[99,8,32,22],[99,10,32,24,"u64"],[99,13,32,27],[99,14,32,28,"rotr32H"],[99,21,32,35],[99,22,32,36,"Dh"],[99,24,32,38],[99,26,32,40,"Dl"],[99,28,32,42],[99,29,32,43],[100,6,32,45,"Dl"],[100,8,32,47],[100,10,32,49,"u64"],[100,13,32,52],[100,14,32,53,"rotr32L"],[100,21,32,60],[100,22,32,61,"Dh"],[100,24,32,63],[100,26,32,65,"Dl"],[100,28,32,67],[101,4,32,69],[101,5,32,70],[102,4,33,4],[103,4,34,4],[103,5,34,5],[104,6,34,7,"h"],[104,7,34,8],[104,9,34,10,"Ch"],[104,11,34,12],[105,6,34,14,"l"],[105,7,34,15],[105,9,34,17,"Cl"],[106,4,34,20],[106,5,34,21],[106,8,34,24,"u64"],[106,11,34,27],[106,12,34,28,"add"],[106,15,34,31],[106,16,34,32,"Ch"],[106,18,34,34],[106,20,34,36,"Cl"],[106,22,34,38],[106,24,34,40,"Dh"],[106,26,34,42],[106,28,34,44,"Dl"],[106,30,34,46],[106,31,34,47],[107,4,35,4],[108,4,36,4],[108,5,36,5],[109,6,36,7,"Bh"],[109,8,36,9],[110,6,36,11,"Bl"],[111,4,36,14],[111,5,36,15],[111,8,36,18],[112,6,36,20,"Bh"],[112,8,36,22],[112,10,36,24,"Bh"],[112,12,36,26],[112,15,36,29,"Ch"],[112,17,36,31],[113,6,36,33,"Bl"],[113,8,36,35],[113,10,36,37,"Bl"],[113,12,36,39],[113,15,36,42,"Cl"],[114,4,36,45],[114,5,36,46],[115,4,37,4],[115,5,37,5],[116,6,37,7,"Bh"],[116,8,37,9],[117,6,37,11,"Bl"],[118,4,37,14],[118,5,37,15],[118,8,37,18],[119,6,37,20,"Bh"],[119,8,37,22],[119,10,37,24,"u64"],[119,13,37,27],[119,14,37,28,"rotrSH"],[119,20,37,34],[119,21,37,35,"Bh"],[119,23,37,37],[119,25,37,39,"Bl"],[119,27,37,41],[119,29,37,43],[119,31,37,45],[119,32,37,46],[120,6,37,48,"Bl"],[120,8,37,50],[120,10,37,52,"u64"],[120,13,37,55],[120,14,37,56,"rotrSL"],[120,20,37,62],[120,21,37,63,"Bh"],[120,23,37,65],[120,25,37,67,"Bl"],[120,27,37,69],[120,29,37,71],[120,31,37,73],[121,4,37,75],[121,5,37,76],[122,4,38,5,"BBUF"],[122,8,38,9],[122,9,38,10],[122,10,38,11],[122,13,38,14,"a"],[122,14,38,15],[122,15,38,16],[122,18,38,19,"Al"],[122,20,38,21],[122,22,38,25,"BBUF"],[122,26,38,29],[122,27,38,30],[122,28,38,31],[122,31,38,34,"a"],[122,32,38,35],[122,35,38,38],[122,36,38,39],[122,37,38,40],[122,40,38,43,"Ah"],[122,42,38,46],[123,4,39,5,"BBUF"],[123,8,39,9],[123,9,39,10],[123,10,39,11],[123,13,39,14,"b"],[123,14,39,15],[123,15,39,16],[123,18,39,19,"Bl"],[123,20,39,21],[123,22,39,25,"BBUF"],[123,26,39,29],[123,27,39,30],[123,28,39,31],[123,31,39,34,"b"],[123,32,39,35],[123,35,39,38],[123,36,39,39],[123,37,39,40],[123,40,39,43,"Bh"],[123,42,39,46],[124,4,40,5,"BBUF"],[124,8,40,9],[124,9,40,10],[124,10,40,11],[124,13,40,14,"c"],[124,14,40,15],[124,15,40,16],[124,18,40,19,"Cl"],[124,20,40,21],[124,22,40,25,"BBUF"],[124,26,40,29],[124,27,40,30],[124,28,40,31],[124,31,40,34,"c"],[124,32,40,35],[124,35,40,38],[124,36,40,39],[124,37,40,40],[124,40,40,43,"Ch"],[124,42,40,46],[125,4,41,5,"BBUF"],[125,8,41,9],[125,9,41,10],[125,10,41,11],[125,13,41,14,"d"],[125,14,41,15],[125,15,41,16],[125,18,41,19,"Dl"],[125,20,41,21],[125,22,41,25,"BBUF"],[125,26,41,29],[125,27,41,30],[125,28,41,31],[125,31,41,34,"d"],[125,32,41,35],[125,35,41,38],[125,36,41,39],[125,37,41,40],[125,40,41,43,"Dh"],[125,42,41,46],[126,2,42,0],[127,2,43,0],[127,11,43,9,"G2b"],[127,14,43,12,"G2b"],[127,15,43,13,"a"],[127,16,43,14],[127,18,43,16,"b"],[127,19,43,17],[127,21,43,19,"c"],[127,22,43,20],[127,24,43,22,"d"],[127,25,43,23],[127,27,43,25,"msg"],[127,30,43,28],[127,32,43,30,"x"],[127,33,43,31],[127,35,43,33],[128,4,44,4],[129,4,45,4],[129,10,45,10,"Xl"],[129,12,45,12],[129,15,45,15,"msg"],[129,18,45,18],[129,19,45,19,"x"],[129,20,45,20],[129,21,45,21],[130,6,45,23,"Xh"],[130,8,45,25],[130,11,45,28,"msg"],[130,14,45,31],[130,15,45,32,"x"],[130,16,45,33],[130,19,45,36],[130,20,45,37],[130,21,45,38],[130,22,45,39],[130,23,45,40],[131,4,46,4],[131,8,46,8,"Al"],[131,10,46,10],[131,13,46,13,"BBUF"],[131,17,46,17],[131,18,46,18],[131,19,46,19],[131,22,46,22,"a"],[131,23,46,23],[131,24,46,24],[132,6,46,26,"Ah"],[132,8,46,28],[132,11,46,31,"BBUF"],[132,15,46,35],[132,16,46,36],[132,17,46,37],[132,20,46,40,"a"],[132,21,46,41],[132,24,46,44],[132,25,46,45],[132,26,46,46],[132,27,46,47],[132,28,46,48],[133,4,47,4],[133,8,47,8,"Bl"],[133,10,47,10],[133,13,47,13,"BBUF"],[133,17,47,17],[133,18,47,18],[133,19,47,19],[133,22,47,22,"b"],[133,23,47,23],[133,24,47,24],[134,6,47,26,"Bh"],[134,8,47,28],[134,11,47,31,"BBUF"],[134,15,47,35],[134,16,47,36],[134,17,47,37],[134,20,47,40,"b"],[134,21,47,41],[134,24,47,44],[134,25,47,45],[134,26,47,46],[134,27,47,47],[134,28,47,48],[135,4,48,4],[135,8,48,8,"Cl"],[135,10,48,10],[135,13,48,13,"BBUF"],[135,17,48,17],[135,18,48,18],[135,19,48,19],[135,22,48,22,"c"],[135,23,48,23],[135,24,48,24],[136,6,48,26,"Ch"],[136,8,48,28],[136,11,48,31,"BBUF"],[136,15,48,35],[136,16,48,36],[136,17,48,37],[136,20,48,40,"c"],[136,21,48,41],[136,24,48,44],[136,25,48,45],[136,26,48,46],[136,27,48,47],[136,28,48,48],[137,4,49,4],[137,8,49,8,"Dl"],[137,10,49,10],[137,13,49,13,"BBUF"],[137,17,49,17],[137,18,49,18],[137,19,49,19],[137,22,49,22,"d"],[137,23,49,23],[137,24,49,24],[138,6,49,26,"Dh"],[138,8,49,28],[138,11,49,31,"BBUF"],[138,15,49,35],[138,16,49,36],[138,17,49,37],[138,20,49,40,"d"],[138,21,49,41],[138,24,49,44],[138,25,49,45],[138,26,49,46],[138,27,49,47],[138,28,49,48],[139,4,50,4],[140,4,51,4],[140,8,51,8,"ll"],[140,10,51,10],[140,13,51,13,"u64"],[140,16,51,16],[140,17,51,17,"add3L"],[140,22,51,22],[140,23,51,23,"Al"],[140,25,51,25],[140,27,51,27,"Bl"],[140,29,51,29],[140,31,51,31,"Xl"],[140,33,51,33],[140,34,51,34],[141,4,52,4,"Ah"],[141,6,52,6],[141,9,52,9,"u64"],[141,12,52,12],[141,13,52,13,"add3H"],[141,18,52,18],[141,19,52,19,"ll"],[141,21,52,21],[141,23,52,23,"Ah"],[141,25,52,25],[141,27,52,27,"Bh"],[141,29,52,29],[141,31,52,31,"Xh"],[141,33,52,33],[141,34,52,34],[142,4,53,4,"Al"],[142,6,53,6],[142,9,53,9,"ll"],[142,11,53,11],[142,14,53,14],[142,15,53,15],[143,4,54,4],[144,4,55,4],[144,5,55,5],[145,6,55,7,"Dh"],[145,8,55,9],[146,6,55,11,"Dl"],[147,4,55,14],[147,5,55,15],[147,8,55,18],[148,6,55,20,"Dh"],[148,8,55,22],[148,10,55,24,"Dh"],[148,12,55,26],[148,15,55,29,"Ah"],[148,17,55,31],[149,6,55,33,"Dl"],[149,8,55,35],[149,10,55,37,"Dl"],[149,12,55,39],[149,15,55,42,"Al"],[150,4,55,45],[150,5,55,46],[151,4,56,4],[151,5,56,5],[152,6,56,7,"Dh"],[152,8,56,9],[153,6,56,11,"Dl"],[154,4,56,14],[154,5,56,15],[154,8,56,18],[155,6,56,20,"Dh"],[155,8,56,22],[155,10,56,24,"u64"],[155,13,56,27],[155,14,56,28,"rotrSH"],[155,20,56,34],[155,21,56,35,"Dh"],[155,23,56,37],[155,25,56,39,"Dl"],[155,27,56,41],[155,29,56,43],[155,31,56,45],[155,32,56,46],[156,6,56,48,"Dl"],[156,8,56,50],[156,10,56,52,"u64"],[156,13,56,55],[156,14,56,56,"rotrSL"],[156,20,56,62],[156,21,56,63,"Dh"],[156,23,56,65],[156,25,56,67,"Dl"],[156,27,56,69],[156,29,56,71],[156,31,56,73],[157,4,56,75],[157,5,56,76],[158,4,57,4],[159,4,58,4],[159,5,58,5],[160,6,58,7,"h"],[160,7,58,8],[160,9,58,10,"Ch"],[160,11,58,12],[161,6,58,14,"l"],[161,7,58,15],[161,9,58,17,"Cl"],[162,4,58,20],[162,5,58,21],[162,8,58,24,"u64"],[162,11,58,27],[162,12,58,28,"add"],[162,15,58,31],[162,16,58,32,"Ch"],[162,18,58,34],[162,20,58,36,"Cl"],[162,22,58,38],[162,24,58,40,"Dh"],[162,26,58,42],[162,28,58,44,"Dl"],[162,30,58,46],[162,31,58,47],[163,4,59,4],[164,4,60,4],[164,5,60,5],[165,6,60,7,"Bh"],[165,8,60,9],[166,6,60,11,"Bl"],[167,4,60,14],[167,5,60,15],[167,8,60,18],[168,6,60,20,"Bh"],[168,8,60,22],[168,10,60,24,"Bh"],[168,12,60,26],[168,15,60,29,"Ch"],[168,17,60,31],[169,6,60,33,"Bl"],[169,8,60,35],[169,10,60,37,"Bl"],[169,12,60,39],[169,15,60,42,"Cl"],[170,4,60,45],[170,5,60,46],[171,4,61,4],[171,5,61,5],[172,6,61,7,"Bh"],[172,8,61,9],[173,6,61,11,"Bl"],[174,4,61,14],[174,5,61,15],[174,8,61,18],[175,6,61,20,"Bh"],[175,8,61,22],[175,10,61,24,"u64"],[175,13,61,27],[175,14,61,28,"rotrBH"],[175,20,61,34],[175,21,61,35,"Bh"],[175,23,61,37],[175,25,61,39,"Bl"],[175,27,61,41],[175,29,61,43],[175,31,61,45],[175,32,61,46],[176,6,61,48,"Bl"],[176,8,61,50],[176,10,61,52,"u64"],[176,13,61,55],[176,14,61,56,"rotrBL"],[176,20,61,62],[176,21,61,63,"Bh"],[176,23,61,65],[176,25,61,67,"Bl"],[176,27,61,69],[176,29,61,71],[176,31,61,73],[177,4,61,75],[177,5,61,76],[178,4,62,5,"BBUF"],[178,8,62,9],[178,9,62,10],[178,10,62,11],[178,13,62,14,"a"],[178,14,62,15],[178,15,62,16],[178,18,62,19,"Al"],[178,20,62,21],[178,22,62,25,"BBUF"],[178,26,62,29],[178,27,62,30],[178,28,62,31],[178,31,62,34,"a"],[178,32,62,35],[178,35,62,38],[178,36,62,39],[178,37,62,40],[178,40,62,43,"Ah"],[178,42,62,46],[179,4,63,5,"BBUF"],[179,8,63,9],[179,9,63,10],[179,10,63,11],[179,13,63,14,"b"],[179,14,63,15],[179,15,63,16],[179,18,63,19,"Bl"],[179,20,63,21],[179,22,63,25,"BBUF"],[179,26,63,29],[179,27,63,30],[179,28,63,31],[179,31,63,34,"b"],[179,32,63,35],[179,35,63,38],[179,36,63,39],[179,37,63,40],[179,40,63,43,"Bh"],[179,42,63,46],[180,4,64,5,"BBUF"],[180,8,64,9],[180,9,64,10],[180,10,64,11],[180,13,64,14,"c"],[180,14,64,15],[180,15,64,16],[180,18,64,19,"Cl"],[180,20,64,21],[180,22,64,25,"BBUF"],[180,26,64,29],[180,27,64,30],[180,28,64,31],[180,31,64,34,"c"],[180,32,64,35],[180,35,64,38],[180,36,64,39],[180,37,64,40],[180,40,64,43,"Ch"],[180,42,64,46],[181,4,65,5,"BBUF"],[181,8,65,9],[181,9,65,10],[181,10,65,11],[181,13,65,14,"d"],[181,14,65,15],[181,15,65,16],[181,18,65,19,"Dl"],[181,20,65,21],[181,22,65,25,"BBUF"],[181,26,65,29],[181,27,65,30],[181,28,65,31],[181,31,65,34,"d"],[181,32,65,35],[181,35,65,38],[181,36,65,39],[181,37,65,40],[181,40,65,43,"Dh"],[181,42,65,46],[182,2,66,0],[183,2,67,0],[183,11,67,9,"checkBlake2Opts"],[183,26,67,24,"checkBlake2Opts"],[183,27,67,25,"outputLen"],[183,36,67,34],[183,38,67,36,"opts"],[183,42,67,40],[183,45,67,43],[183,46,67,44],[183,47,67,45],[183,49,67,47,"keyLen"],[183,55,67,53],[183,57,67,55,"saltLen"],[183,64,67,62],[183,66,67,64,"persLen"],[183,73,67,71],[183,75,67,73],[184,4,68,4],[184,8,68,4,"anumber"],[184,16,68,11],[184,17,68,11,"anumber"],[184,24,68,11],[184,26,68,12,"keyLen"],[184,32,68,18],[184,33,68,19],[185,4,69,4],[185,8,69,8,"outputLen"],[185,17,69,17],[185,20,69,20],[185,21,69,21],[185,25,69,25,"outputLen"],[185,34,69,34],[185,37,69,37,"keyLen"],[185,43,69,43],[185,45,70,8],[185,51,70,14],[185,55,70,18,"Error"],[185,60,70,23],[185,61,70,24],[185,91,70,54],[185,92,70,55],[186,4,71,4],[186,10,71,10],[187,6,71,12,"key"],[187,9,71,15],[188,6,71,17,"salt"],[188,10,71,21],[189,6,71,23,"personalization"],[190,4,71,39],[190,5,71,40],[190,8,71,43,"opts"],[190,12,71,47],[191,4,72,4],[191,8,72,8,"key"],[191,11,72,11],[191,16,72,16,"undefined"],[191,25,72,25],[191,30,72,30,"key"],[191,33,72,33],[191,34,72,34,"length"],[191,40,72,40],[191,43,72,43],[191,44,72,44],[191,48,72,48,"key"],[191,51,72,51],[191,52,72,52,"length"],[191,58,72,58],[191,61,72,61,"keyLen"],[191,67,72,67],[191,68,72,68],[191,70,73,8],[191,76,73,14],[191,80,73,18,"Error"],[191,85,73,23],[191,86,73,24],[191,123,73,61],[191,126,73,64,"keyLen"],[191,132,73,70],[191,133,73,71],[192,4,74,4],[192,8,74,8,"salt"],[192,12,74,12],[192,17,74,17,"undefined"],[192,26,74,26],[192,30,74,30,"salt"],[192,34,74,34],[192,35,74,35,"length"],[192,41,74,41],[192,46,74,46,"saltLen"],[192,53,74,53],[192,55,75,8],[192,61,75,14],[192,65,75,18,"Error"],[192,70,75,23],[192,71,75,24],[192,99,75,52],[192,102,75,55,"saltLen"],[192,109,75,62],[192,110,75,63],[193,4,76,4],[193,8,76,8,"personalization"],[193,23,76,23],[193,28,76,28,"undefined"],[193,37,76,37],[193,41,76,41,"personalization"],[193,56,76,56],[193,57,76,57,"length"],[193,63,76,63],[193,68,76,68,"persLen"],[193,75,76,75],[193,77,77,8],[193,83,77,14],[193,87,77,18,"Error"],[193,92,77,23],[193,93,77,24],[193,132,77,63],[193,135,77,66,"persLen"],[193,142,77,73],[193,143,77,74],[194,2,78,0],[195,2,79,0],[196,2,80,7],[196,8,80,13,"BLAKE2"],[196,14,80,19],[196,23,80,28,"Hash"],[196,31,80,32],[196,32,80,32,"Hash"],[196,36,80,32],[196,37,80,33],[197,4,81,4,"constructor"],[197,15,81,15,"constructor"],[197,16,81,16,"blockLen"],[197,24,81,24],[197,26,81,26,"outputLen"],[197,35,81,35],[197,37,81,37],[198,6,82,8],[198,11,82,13],[198,12,82,14],[198,13,82,15],[199,6,83,8],[199,10,83,12],[199,11,83,13,"finished"],[199,19,83,21],[199,22,83,24],[199,27,83,29],[200,6,84,8],[200,10,84,12],[200,11,84,13,"destroyed"],[200,20,84,22],[200,23,84,25],[200,28,84,30],[201,6,85,8],[201,10,85,12],[201,11,85,13,"length"],[201,17,85,19],[201,20,85,22],[201,21,85,23],[202,6,86,8],[202,10,86,12],[202,11,86,13,"pos"],[202,14,86,16],[202,17,86,19],[202,18,86,20],[203,6,87,8],[203,10,87,8,"anumber"],[203,18,87,15],[203,19,87,15,"anumber"],[203,26,87,15],[203,28,87,16,"blockLen"],[203,36,87,24],[203,37,87,25],[204,6,88,8],[204,10,88,8,"anumber"],[204,18,88,15],[204,19,88,15,"anumber"],[204,26,88,15],[204,28,88,16,"outputLen"],[204,37,88,25],[204,38,88,26],[205,6,89,8],[205,10,89,12],[205,11,89,13,"blockLen"],[205,19,89,21],[205,22,89,24,"blockLen"],[205,30,89,32],[206,6,90,8],[206,10,90,12],[206,11,90,13,"outputLen"],[206,20,90,22],[206,23,90,25,"outputLen"],[206,32,90,34],[207,6,91,8],[207,10,91,12],[207,11,91,13,"buffer"],[207,17,91,19],[207,20,91,22],[207,24,91,26,"Uint8Array"],[207,34,91,36],[207,35,91,37,"blockLen"],[207,43,91,45],[207,44,91,46],[208,6,92,8],[208,10,92,12],[208,11,92,13,"buffer32"],[208,19,92,21],[208,22,92,24],[208,26,92,24,"u32"],[208,34,92,27],[208,35,92,27,"u32"],[208,38,92,27],[208,40,92,28],[208,44,92,32],[208,45,92,33,"buffer"],[208,51,92,39],[208,52,92,40],[209,4,93,4],[210,4,94,4,"update"],[210,10,94,10,"update"],[210,11,94,11,"data"],[210,15,94,15],[210,17,94,17],[211,6,95,8],[211,10,95,8,"aexists"],[211,18,95,15],[211,19,95,15,"aexists"],[211,26,95,15],[211,28,95,16],[211,32,95,20],[211,33,95,21],[212,6,96,8,"data"],[212,10,96,12],[212,13,96,15],[212,17,96,15,"toBytes"],[212,25,96,22],[212,26,96,22,"toBytes"],[212,33,96,22],[212,35,96,23,"data"],[212,39,96,27],[212,40,96,28],[213,6,97,8],[213,10,97,8,"abytes"],[213,18,97,14],[213,19,97,14,"abytes"],[213,25,97,14],[213,27,97,15,"data"],[213,31,97,19],[213,32,97,20],[214,6,98,8],[215,6,99,8],[216,6,100,8],[217,6,101,8],[218,6,102,8],[218,12,102,14],[219,8,102,16,"blockLen"],[219,16,102,24],[220,8,102,26,"buffer"],[220,14,102,32],[221,8,102,34,"buffer32"],[222,6,102,43],[222,7,102,44],[222,10,102,47],[222,14,102,51],[223,6,103,8],[223,12,103,14,"len"],[223,15,103,17],[223,18,103,20,"data"],[223,22,103,24],[223,23,103,25,"length"],[223,29,103,31],[224,6,104,8],[224,12,104,14,"offset"],[224,18,104,20],[224,21,104,23,"data"],[224,25,104,27],[224,26,104,28,"byteOffset"],[224,36,104,38],[225,6,105,8],[225,12,105,14,"buf"],[225,15,105,17],[225,18,105,20,"data"],[225,22,105,24],[225,23,105,25,"buffer"],[225,29,105,31],[226,6,106,8],[226,11,106,13],[226,15,106,17,"pos"],[226,18,106,20],[226,21,106,23],[226,22,106,24],[226,24,106,26,"pos"],[226,27,106,29],[226,30,106,32,"len"],[226,33,106,35],[226,36,106,38],[227,8,107,12],[228,8,108,12],[228,12,108,16],[228,16,108,20],[228,17,108,21,"pos"],[228,20,108,24],[228,25,108,29,"blockLen"],[228,33,108,37],[228,35,108,39],[229,10,109,16],[229,14,109,16,"swap32IfBE"],[229,22,109,26],[229,23,109,26,"swap32IfBE"],[229,33,109,26],[229,35,109,27,"buffer32"],[229,43,109,35],[229,44,109,36],[230,10,110,16],[230,14,110,20],[230,15,110,21,"compress"],[230,23,110,29],[230,24,110,30,"buffer32"],[230,32,110,38],[230,34,110,40],[230,35,110,41],[230,37,110,43],[230,42,110,48],[230,43,110,49],[231,10,111,16],[231,14,111,16,"swap32IfBE"],[231,22,111,26],[231,23,111,26,"swap32IfBE"],[231,33,111,26],[231,35,111,27,"buffer32"],[231,43,111,35],[231,44,111,36],[232,10,112,16],[232,14,112,20],[232,15,112,21,"pos"],[232,18,112,24],[232,21,112,27],[232,22,112,28],[233,8,113,12],[234,8,114,12],[234,14,114,18,"take"],[234,18,114,22],[234,21,114,25,"Math"],[234,25,114,29],[234,26,114,30,"min"],[234,29,114,33],[234,30,114,34,"blockLen"],[234,38,114,42],[234,41,114,45],[234,45,114,49],[234,46,114,50,"pos"],[234,49,114,53],[234,51,114,55,"len"],[234,54,114,58],[234,57,114,61,"pos"],[234,60,114,64],[234,61,114,65],[235,8,115,12],[235,14,115,18,"dataOffset"],[235,24,115,28],[235,27,115,31,"offset"],[235,33,115,37],[235,36,115,40,"pos"],[235,39,115,43],[236,8,116,12],[237,8,117,12],[237,12,117,16,"take"],[237,16,117,20],[237,21,117,25,"blockLen"],[237,29,117,33],[237,33,117,37],[237,35,117,39,"dataOffset"],[237,45,117,49],[237,48,117,52],[237,49,117,53],[237,50,117,54],[237,54,117,58,"pos"],[237,57,117,61],[237,60,117,64,"take"],[237,64,117,68],[237,67,117,71,"len"],[237,70,117,74],[237,72,117,76],[238,10,118,16],[238,16,118,22,"data32"],[238,22,118,28],[238,25,118,31],[238,29,118,35,"Uint32Array"],[238,40,118,46],[238,41,118,47,"buf"],[238,44,118,50],[238,46,118,52,"dataOffset"],[238,56,118,62],[238,58,118,64,"Math"],[238,62,118,68],[238,63,118,69,"floor"],[238,68,118,74],[238,69,118,75],[238,70,118,76,"len"],[238,73,118,79],[238,76,118,82,"pos"],[238,79,118,85],[238,83,118,89],[238,84,118,90],[238,85,118,91],[238,86,118,92],[239,10,119,16],[239,14,119,16,"swap32IfBE"],[239,22,119,26],[239,23,119,26,"swap32IfBE"],[239,33,119,26],[239,35,119,27,"data32"],[239,41,119,33],[239,42,119,34],[240,10,120,16],[240,15,120,21],[240,19,120,25,"pos32"],[240,24,120,30],[240,27,120,33],[240,28,120,34],[240,30,120,36,"pos"],[240,33,120,39],[240,36,120,42,"blockLen"],[240,44,120,50],[240,47,120,53,"len"],[240,50,120,56],[240,52,120,58,"pos32"],[240,57,120,63],[240,61,120,67,"buffer32"],[240,69,120,75],[240,70,120,76,"length"],[240,76,120,82],[240,78,120,84,"pos"],[240,81,120,87],[240,85,120,91,"blockLen"],[240,93,120,99],[240,95,120,101],[241,12,121,20],[241,16,121,24],[241,17,121,25,"length"],[241,23,121,31],[241,27,121,35,"blockLen"],[241,35,121,43],[242,12,122,20],[242,16,122,24],[242,17,122,25,"compress"],[242,25,122,33],[242,26,122,34,"data32"],[242,32,122,40],[242,34,122,42,"pos32"],[242,39,122,47],[242,41,122,49],[242,46,122,54],[242,47,122,55],[243,10,123,16],[244,10,124,16],[244,14,124,16,"swap32IfBE"],[244,22,124,26],[244,23,124,26,"swap32IfBE"],[244,33,124,26],[244,35,124,27,"data32"],[244,41,124,33],[244,42,124,34],[245,10,125,16],[246,8,126,12],[247,8,127,12,"buffer"],[247,14,127,18],[247,15,127,19,"set"],[247,18,127,22],[247,19,127,23,"data"],[247,23,127,27],[247,24,127,28,"subarray"],[247,32,127,36],[247,33,127,37,"pos"],[247,36,127,40],[247,38,127,42,"pos"],[247,41,127,45],[247,44,127,48,"take"],[247,48,127,52],[247,49,127,53],[247,51,127,55],[247,55,127,59],[247,56,127,60,"pos"],[247,59,127,63],[247,60,127,64],[248,8,128,12],[248,12,128,16],[248,13,128,17,"pos"],[248,16,128,20],[248,20,128,24,"take"],[248,24,128,28],[249,8,129,12],[249,12,129,16],[249,13,129,17,"length"],[249,19,129,23],[249,23,129,27,"take"],[249,27,129,31],[250,8,130,12,"pos"],[250,11,130,15],[250,15,130,19,"take"],[250,19,130,23],[251,6,131,8],[252,6,132,8],[252,13,132,15],[252,17,132,19],[253,4,133,4],[254,4,134,4,"digestInto"],[254,14,134,14,"digestInto"],[254,15,134,15,"out"],[254,18,134,18],[254,20,134,20],[255,6,135,8],[255,10,135,8,"aexists"],[255,18,135,15],[255,19,135,15,"aexists"],[255,26,135,15],[255,28,135,16],[255,32,135,20],[255,33,135,21],[256,6,136,8],[256,10,136,8,"aoutput"],[256,18,136,15],[256,19,136,15,"aoutput"],[256,26,136,15],[256,28,136,16,"out"],[256,31,136,19],[256,33,136,21],[256,37,136,25],[256,38,136,26],[257,6,137,8],[257,12,137,14],[258,8,137,16,"pos"],[258,11,137,19],[259,8,137,21,"buffer32"],[260,6,137,30],[260,7,137,31],[260,10,137,34],[260,14,137,38],[261,6,138,8],[261,10,138,12],[261,11,138,13,"finished"],[261,19,138,21],[261,22,138,24],[261,26,138,28],[262,6,139,8],[263,6,140,8],[263,10,140,8,"clean"],[263,18,140,13],[263,19,140,13,"clean"],[263,24,140,13],[263,26,140,14],[263,30,140,18],[263,31,140,19,"buffer"],[263,37,140,25],[263,38,140,26,"subarray"],[263,46,140,34],[263,47,140,35,"pos"],[263,50,140,38],[263,51,140,39],[263,52,140,40],[264,6,141,8],[264,10,141,8,"swap32IfBE"],[264,18,141,18],[264,19,141,18,"swap32IfBE"],[264,29,141,18],[264,31,141,19,"buffer32"],[264,39,141,27],[264,40,141,28],[265,6,142,8],[265,10,142,12],[265,11,142,13,"compress"],[265,19,142,21],[265,20,142,22,"buffer32"],[265,28,142,30],[265,30,142,32],[265,31,142,33],[265,33,142,35],[265,37,142,39],[265,38,142,40],[266,6,143,8],[266,10,143,8,"swap32IfBE"],[266,18,143,18],[266,19,143,18,"swap32IfBE"],[266,29,143,18],[266,31,143,19,"buffer32"],[266,39,143,27],[266,40,143,28],[267,6,144,8],[267,12,144,14,"out32"],[267,17,144,19],[267,20,144,22],[267,24,144,22,"u32"],[267,32,144,25],[267,33,144,25,"u32"],[267,36,144,25],[267,38,144,26,"out"],[267,41,144,29],[267,42,144,30],[268,6,145,8],[268,10,145,12],[268,11,145,13,"get"],[268,14,145,16],[268,15,145,17],[268,16,145,18],[268,17,145,19,"forEach"],[268,24,145,26],[268,25,145,27],[268,26,145,28,"v"],[268,27,145,29],[268,29,145,31,"i"],[268,30,145,32],[268,35,145,38,"out32"],[268,40,145,43],[268,41,145,44,"i"],[268,42,145,45],[268,43,145,46],[268,46,145,49],[268,50,145,49,"swap8IfBE"],[268,58,145,58],[268,59,145,58,"swap8IfBE"],[268,68,145,58],[268,70,145,59,"v"],[268,71,145,60],[268,72,145,62],[268,73,145,63],[269,4,146,4],[270,4,147,4,"digest"],[270,10,147,10,"digest"],[270,11,147,10],[270,13,147,13],[271,6,148,8],[271,12,148,14],[272,8,148,16,"buffer"],[272,14,148,22],[273,8,148,24,"outputLen"],[274,6,148,34],[274,7,148,35],[274,10,148,38],[274,14,148,42],[275,6,149,8],[275,10,149,12],[275,11,149,13,"digestInto"],[275,21,149,23],[275,22,149,24,"buffer"],[275,28,149,30],[275,29,149,31],[276,6,150,8],[276,12,150,14,"res"],[276,15,150,17],[276,18,150,20,"buffer"],[276,24,150,26],[276,25,150,27,"slice"],[276,30,150,32],[276,31,150,33],[276,32,150,34],[276,34,150,36,"outputLen"],[276,43,150,45],[276,44,150,46],[277,6,151,8],[277,10,151,12],[277,11,151,13,"destroy"],[277,18,151,20],[277,19,151,21],[277,20,151,22],[278,6,152,8],[278,13,152,15,"res"],[278,16,152,18],[279,4,153,4],[280,4,154,4,"_cloneInto"],[280,14,154,14,"_cloneInto"],[280,15,154,15,"to"],[280,17,154,17],[280,19,154,19],[281,6,155,8],[281,12,155,14],[282,8,155,16,"buffer"],[282,14,155,22],[283,8,155,24,"length"],[283,14,155,30],[284,8,155,32,"finished"],[284,16,155,40],[285,8,155,42,"destroyed"],[285,17,155,51],[286,8,155,53,"outputLen"],[286,17,155,62],[287,8,155,64,"pos"],[288,6,155,68],[288,7,155,69],[288,10,155,72],[288,14,155,76],[289,6,156,8,"to"],[289,8,156,10],[289,13,156,15,"to"],[289,15,156,17],[289,18,156,20],[289,22,156,24],[289,26,156,28],[289,27,156,29,"constructor"],[289,38,156,40],[289,39,156,41],[290,8,156,43,"dkLen"],[290,13,156,48],[290,15,156,50,"outputLen"],[291,6,156,60],[291,7,156,61],[291,8,156,62],[291,9,156,63],[292,6,157,8,"to"],[292,8,157,10],[292,9,157,11,"set"],[292,12,157,14],[292,13,157,15],[292,16,157,18],[292,20,157,22],[292,21,157,23,"get"],[292,24,157,26],[292,25,157,27],[292,26,157,28],[292,27,157,29],[293,6,158,8,"to"],[293,8,158,10],[293,9,158,11,"buffer"],[293,15,158,17],[293,16,158,18,"set"],[293,19,158,21],[293,20,158,22,"buffer"],[293,26,158,28],[293,27,158,29],[294,6,159,8,"to"],[294,8,159,10],[294,9,159,11,"destroyed"],[294,18,159,20],[294,21,159,23,"destroyed"],[294,30,159,32],[295,6,160,8,"to"],[295,8,160,10],[295,9,160,11,"finished"],[295,17,160,19],[295,20,160,22,"finished"],[295,28,160,30],[296,6,161,8,"to"],[296,8,161,10],[296,9,161,11,"length"],[296,15,161,17],[296,18,161,20,"length"],[296,24,161,26],[297,6,162,8,"to"],[297,8,162,10],[297,9,162,11,"pos"],[297,12,162,14],[297,15,162,17,"pos"],[297,18,162,20],[298,6,163,8],[299,6,164,8,"to"],[299,8,164,10],[299,9,164,11,"outputLen"],[299,18,164,20],[299,21,164,23,"outputLen"],[299,30,164,32],[300,6,165,8],[300,13,165,15,"to"],[300,15,165,17],[301,4,166,4],[302,4,167,4,"clone"],[302,9,167,9,"clone"],[302,10,167,9],[302,12,167,12],[303,6,168,8],[303,13,168,15],[303,17,168,19],[303,18,168,20,"_cloneInto"],[303,28,168,30],[303,29,168,31],[303,30,168,32],[304,4,169,4],[305,2,170,0],[306,2,171,7],[306,8,171,13,"BLAKE2b"],[306,15,171,20],[306,24,171,29,"BLAKE2"],[306,30,171,35],[306,31,171,36],[307,4,172,4,"constructor"],[307,15,172,15,"constructor"],[307,16,172,16,"opts"],[307,20,172,20],[307,23,172,23],[307,24,172,24],[307,25,172,25],[307,27,172,27],[308,6,173,8],[308,12,173,14,"olen"],[308,16,173,18],[308,19,173,21,"opts"],[308,23,173,25],[308,24,173,26,"dkLen"],[308,29,173,31],[308,34,173,36,"undefined"],[308,43,173,45],[308,46,173,48],[308,48,173,50],[308,51,173,53,"opts"],[308,55,173,57],[308,56,173,58,"dkLen"],[308,61,173,63],[309,6,174,8],[309,11,174,13],[309,12,174,14],[309,15,174,17],[309,17,174,19,"olen"],[309,21,174,23],[309,22,174,24],[310,6,175,8],[311,6,176,8],[311,10,176,12],[311,11,176,13,"v0l"],[311,14,176,16],[311,17,176,19,"B2B_IV"],[311,23,176,25],[311,24,176,26],[311,25,176,27],[311,26,176,28],[311,29,176,31],[311,30,176,32],[312,6,177,8],[312,10,177,12],[312,11,177,13,"v0h"],[312,14,177,16],[312,17,177,19,"B2B_IV"],[312,23,177,25],[312,24,177,26],[312,25,177,27],[312,26,177,28],[312,29,177,31],[312,30,177,32],[313,6,178,8],[313,10,178,12],[313,11,178,13,"v1l"],[313,14,178,16],[313,17,178,19,"B2B_IV"],[313,23,178,25],[313,24,178,26],[313,25,178,27],[313,26,178,28],[313,29,178,31],[313,30,178,32],[314,6,179,8],[314,10,179,12],[314,11,179,13,"v1h"],[314,14,179,16],[314,17,179,19,"B2B_IV"],[314,23,179,25],[314,24,179,26],[314,25,179,27],[314,26,179,28],[314,29,179,31],[314,30,179,32],[315,6,180,8],[315,10,180,12],[315,11,180,13,"v2l"],[315,14,180,16],[315,17,180,19,"B2B_IV"],[315,23,180,25],[315,24,180,26],[315,25,180,27],[315,26,180,28],[315,29,180,31],[315,30,180,32],[316,6,181,8],[316,10,181,12],[316,11,181,13,"v2h"],[316,14,181,16],[316,17,181,19,"B2B_IV"],[316,23,181,25],[316,24,181,26],[316,25,181,27],[316,26,181,28],[316,29,181,31],[316,30,181,32],[317,6,182,8],[317,10,182,12],[317,11,182,13,"v3l"],[317,14,182,16],[317,17,182,19,"B2B_IV"],[317,23,182,25],[317,24,182,26],[317,25,182,27],[317,26,182,28],[317,29,182,31],[317,30,182,32],[318,6,183,8],[318,10,183,12],[318,11,183,13,"v3h"],[318,14,183,16],[318,17,183,19,"B2B_IV"],[318,23,183,25],[318,24,183,26],[318,25,183,27],[318,26,183,28],[318,29,183,31],[318,30,183,32],[319,6,184,8],[319,10,184,12],[319,11,184,13,"v4l"],[319,14,184,16],[319,17,184,19,"B2B_IV"],[319,23,184,25],[319,24,184,26],[319,25,184,27],[319,26,184,28],[319,29,184,31],[319,30,184,32],[320,6,185,8],[320,10,185,12],[320,11,185,13,"v4h"],[320,14,185,16],[320,17,185,19,"B2B_IV"],[320,23,185,25],[320,24,185,26],[320,25,185,27],[320,26,185,28],[320,29,185,31],[320,30,185,32],[321,6,186,8],[321,10,186,12],[321,11,186,13,"v5l"],[321,14,186,16],[321,17,186,19,"B2B_IV"],[321,23,186,25],[321,24,186,26],[321,26,186,28],[321,27,186,29],[321,30,186,32],[321,31,186,33],[322,6,187,8],[322,10,187,12],[322,11,187,13,"v5h"],[322,14,187,16],[322,17,187,19,"B2B_IV"],[322,23,187,25],[322,24,187,26],[322,26,187,28],[322,27,187,29],[322,30,187,32],[322,31,187,33],[323,6,188,8],[323,10,188,12],[323,11,188,13,"v6l"],[323,14,188,16],[323,17,188,19,"B2B_IV"],[323,23,188,25],[323,24,188,26],[323,26,188,28],[323,27,188,29],[323,30,188,32],[323,31,188,33],[324,6,189,8],[324,10,189,12],[324,11,189,13,"v6h"],[324,14,189,16],[324,17,189,19,"B2B_IV"],[324,23,189,25],[324,24,189,26],[324,26,189,28],[324,27,189,29],[324,30,189,32],[324,31,189,33],[325,6,190,8],[325,10,190,12],[325,11,190,13,"v7l"],[325,14,190,16],[325,17,190,19,"B2B_IV"],[325,23,190,25],[325,24,190,26],[325,26,190,28],[325,27,190,29],[325,30,190,32],[325,31,190,33],[326,6,191,8],[326,10,191,12],[326,11,191,13,"v7h"],[326,14,191,16],[326,17,191,19,"B2B_IV"],[326,23,191,25],[326,24,191,26],[326,26,191,28],[326,27,191,29],[326,30,191,32],[326,31,191,33],[327,6,192,8,"checkBlake2Opts"],[327,21,192,23],[327,22,192,24,"olen"],[327,26,192,28],[327,28,192,30,"opts"],[327,32,192,34],[327,34,192,36],[327,36,192,38],[327,38,192,40],[327,40,192,42],[327,42,192,44],[327,44,192,46],[327,45,192,47],[328,6,193,8],[328,10,193,12],[329,8,193,14,"key"],[329,11,193,17],[330,8,193,19,"personalization"],[330,23,193,34],[331,8,193,36,"salt"],[332,6,193,41],[332,7,193,42],[332,10,193,45,"opts"],[332,14,193,49],[333,6,194,8],[333,10,194,12,"keyLength"],[333,19,194,21],[333,22,194,24],[333,23,194,25],[334,6,195,8],[334,10,195,12,"key"],[334,13,195,15],[334,18,195,20,"undefined"],[334,27,195,29],[334,29,195,31],[335,8,196,12,"key"],[335,11,196,15],[335,14,196,18],[335,18,196,18,"toBytes"],[335,26,196,25],[335,27,196,25,"toBytes"],[335,34,196,25],[335,36,196,26,"key"],[335,39,196,29],[335,40,196,30],[336,8,197,12,"keyLength"],[336,17,197,21],[336,20,197,24,"key"],[336,23,197,27],[336,24,197,28,"length"],[336,30,197,34],[337,6,198,8],[338,6,199,8],[338,10,199,12],[338,11,199,13,"v0l"],[338,14,199,16],[338,18,199,20],[338,22,199,24],[338,23,199,25,"outputLen"],[338,32,199,34],[338,35,199,38,"keyLength"],[338,44,199,47],[338,48,199,51],[338,49,199,53],[338,52,199,57],[338,56,199,61],[338,60,199,65],[338,62,199,68],[338,65,199,72],[338,69,199,76],[338,73,199,80],[338,75,199,83],[339,6,200,8],[339,10,200,12,"salt"],[339,14,200,16],[339,19,200,21,"undefined"],[339,28,200,30],[339,30,200,32],[340,8,201,12,"salt"],[340,12,201,16],[340,15,201,19],[340,19,201,19,"toBytes"],[340,27,201,26],[340,28,201,26,"toBytes"],[340,35,201,26],[340,37,201,27,"salt"],[340,41,201,31],[340,42,201,32],[341,8,202,12],[341,14,202,18,"slt"],[341,17,202,21],[341,20,202,24],[341,24,202,24,"u32"],[341,32,202,27],[341,33,202,27,"u32"],[341,36,202,27],[341,38,202,28,"salt"],[341,42,202,32],[341,43,202,33],[342,8,203,12],[342,12,203,16],[342,13,203,17,"v4l"],[342,16,203,20],[342,20,203,24],[342,24,203,24,"swap8IfBE"],[342,32,203,33],[342,33,203,33,"swap8IfBE"],[342,42,203,33],[342,44,203,34,"slt"],[342,47,203,37],[342,48,203,38],[342,49,203,39],[342,50,203,40],[342,51,203,41],[343,8,204,12],[343,12,204,16],[343,13,204,17,"v4h"],[343,16,204,20],[343,20,204,24],[343,24,204,24,"swap8IfBE"],[343,32,204,33],[343,33,204,33,"swap8IfBE"],[343,42,204,33],[343,44,204,34,"slt"],[343,47,204,37],[343,48,204,38],[343,49,204,39],[343,50,204,40],[343,51,204,41],[344,8,205,12],[344,12,205,16],[344,13,205,17,"v5l"],[344,16,205,20],[344,20,205,24],[344,24,205,24,"swap8IfBE"],[344,32,205,33],[344,33,205,33,"swap8IfBE"],[344,42,205,33],[344,44,205,34,"slt"],[344,47,205,37],[344,48,205,38],[344,49,205,39],[344,50,205,40],[344,51,205,41],[345,8,206,12],[345,12,206,16],[345,13,206,17,"v5h"],[345,16,206,20],[345,20,206,24],[345,24,206,24,"swap8IfBE"],[345,32,206,33],[345,33,206,33,"swap8IfBE"],[345,42,206,33],[345,44,206,34,"slt"],[345,47,206,37],[345,48,206,38],[345,49,206,39],[345,50,206,40],[345,51,206,41],[346,6,207,8],[347,6,208,8],[347,10,208,12,"personalization"],[347,25,208,27],[347,30,208,32,"undefined"],[347,39,208,41],[347,41,208,43],[348,8,209,12,"personalization"],[348,23,209,27],[348,26,209,30],[348,30,209,30,"toBytes"],[348,38,209,37],[348,39,209,37,"toBytes"],[348,46,209,37],[348,48,209,38,"personalization"],[348,63,209,53],[348,64,209,54],[349,8,210,12],[349,14,210,18,"pers"],[349,18,210,22],[349,21,210,25],[349,25,210,25,"u32"],[349,33,210,28],[349,34,210,28,"u32"],[349,37,210,28],[349,39,210,29,"personalization"],[349,54,210,44],[349,55,210,45],[350,8,211,12],[350,12,211,16],[350,13,211,17,"v6l"],[350,16,211,20],[350,20,211,24],[350,24,211,24,"swap8IfBE"],[350,32,211,33],[350,33,211,33,"swap8IfBE"],[350,42,211,33],[350,44,211,34,"pers"],[350,48,211,38],[350,49,211,39],[350,50,211,40],[350,51,211,41],[350,52,211,42],[351,8,212,12],[351,12,212,16],[351,13,212,17,"v6h"],[351,16,212,20],[351,20,212,24],[351,24,212,24,"swap8IfBE"],[351,32,212,33],[351,33,212,33,"swap8IfBE"],[351,42,212,33],[351,44,212,34,"pers"],[351,48,212,38],[351,49,212,39],[351,50,212,40],[351,51,212,41],[351,52,212,42],[352,8,213,12],[352,12,213,16],[352,13,213,17,"v7l"],[352,16,213,20],[352,20,213,24],[352,24,213,24,"swap8IfBE"],[352,32,213,33],[352,33,213,33,"swap8IfBE"],[352,42,213,33],[352,44,213,34,"pers"],[352,48,213,38],[352,49,213,39],[352,50,213,40],[352,51,213,41],[352,52,213,42],[353,8,214,12],[353,12,214,16],[353,13,214,17,"v7h"],[353,16,214,20],[353,20,214,24],[353,24,214,24,"swap8IfBE"],[353,32,214,33],[353,33,214,33,"swap8IfBE"],[353,42,214,33],[353,44,214,34,"pers"],[353,48,214,38],[353,49,214,39],[353,50,214,40],[353,51,214,41],[353,52,214,42],[354,6,215,8],[355,6,216,8],[355,10,216,12,"key"],[355,13,216,15],[355,18,216,20,"undefined"],[355,27,216,29],[355,29,216,31],[356,8,217,12],[357,8,218,12],[357,14,218,18,"tmp"],[357,17,218,21],[357,20,218,24],[357,24,218,28,"Uint8Array"],[357,34,218,38],[357,35,218,39],[357,39,218,43],[357,40,218,44,"blockLen"],[357,48,218,52],[357,49,218,53],[358,8,219,12,"tmp"],[358,11,219,15],[358,12,219,16,"set"],[358,15,219,19],[358,16,219,20,"key"],[358,19,219,23],[358,20,219,24],[359,8,220,12],[359,12,220,16],[359,13,220,17,"update"],[359,19,220,23],[359,20,220,24,"tmp"],[359,23,220,27],[359,24,220,28],[360,6,221,8],[361,4,222,4],[362,4,223,4],[363,4,224,4,"get"],[363,7,224,7,"get"],[363,8,224,7],[363,10,224,10],[364,6,225,8],[364,10,225,12],[365,8,225,14,"v0l"],[365,11,225,17],[366,8,225,19,"v0h"],[366,11,225,22],[367,8,225,24,"v1l"],[367,11,225,27],[368,8,225,29,"v1h"],[368,11,225,32],[369,8,225,34,"v2l"],[369,11,225,37],[370,8,225,39,"v2h"],[370,11,225,42],[371,8,225,44,"v3l"],[371,11,225,47],[372,8,225,49,"v3h"],[372,11,225,52],[373,8,225,54,"v4l"],[373,11,225,57],[374,8,225,59,"v4h"],[374,11,225,62],[375,8,225,64,"v5l"],[375,11,225,67],[376,8,225,69,"v5h"],[376,11,225,72],[377,8,225,74,"v6l"],[377,11,225,77],[378,8,225,79,"v6h"],[378,11,225,82],[379,8,225,84,"v7l"],[379,11,225,87],[380,8,225,89,"v7h"],[381,6,225,93],[381,7,225,94],[381,10,225,97],[381,14,225,101],[382,6,226,8],[382,13,226,15],[382,14,226,16,"v0l"],[382,17,226,19],[382,19,226,21,"v0h"],[382,22,226,24],[382,24,226,26,"v1l"],[382,27,226,29],[382,29,226,31,"v1h"],[382,32,226,34],[382,34,226,36,"v2l"],[382,37,226,39],[382,39,226,41,"v2h"],[382,42,226,44],[382,44,226,46,"v3l"],[382,47,226,49],[382,49,226,51,"v3h"],[382,52,226,54],[382,54,226,56,"v4l"],[382,57,226,59],[382,59,226,61,"v4h"],[382,62,226,64],[382,64,226,66,"v5l"],[382,67,226,69],[382,69,226,71,"v5h"],[382,72,226,74],[382,74,226,76,"v6l"],[382,77,226,79],[382,79,226,81,"v6h"],[382,82,226,84],[382,84,226,86,"v7l"],[382,87,226,89],[382,89,226,91,"v7h"],[382,92,226,94],[382,93,226,95],[383,4,227,4],[384,4,228,4],[385,4,229,4,"set"],[385,7,229,7,"set"],[385,8,229,8,"v0l"],[385,11,229,11],[385,13,229,13,"v0h"],[385,16,229,16],[385,18,229,18,"v1l"],[385,21,229,21],[385,23,229,23,"v1h"],[385,26,229,26],[385,28,229,28,"v2l"],[385,31,229,31],[385,33,229,33,"v2h"],[385,36,229,36],[385,38,229,38,"v3l"],[385,41,229,41],[385,43,229,43,"v3h"],[385,46,229,46],[385,48,229,48,"v4l"],[385,51,229,51],[385,53,229,53,"v4h"],[385,56,229,56],[385,58,229,58,"v5l"],[385,61,229,61],[385,63,229,63,"v5h"],[385,66,229,66],[385,68,229,68,"v6l"],[385,71,229,71],[385,73,229,73,"v6h"],[385,76,229,76],[385,78,229,78,"v7l"],[385,81,229,81],[385,83,229,83,"v7h"],[385,86,229,86],[385,88,229,88],[386,6,230,8],[386,10,230,12],[386,11,230,13,"v0l"],[386,14,230,16],[386,17,230,19,"v0l"],[386,20,230,22],[386,23,230,25],[386,24,230,26],[387,6,231,8],[387,10,231,12],[387,11,231,13,"v0h"],[387,14,231,16],[387,17,231,19,"v0h"],[387,20,231,22],[387,23,231,25],[387,24,231,26],[388,6,232,8],[388,10,232,12],[388,11,232,13,"v1l"],[388,14,232,16],[388,17,232,19,"v1l"],[388,20,232,22],[388,23,232,25],[388,24,232,26],[389,6,233,8],[389,10,233,12],[389,11,233,13,"v1h"],[389,14,233,16],[389,17,233,19,"v1h"],[389,20,233,22],[389,23,233,25],[389,24,233,26],[390,6,234,8],[390,10,234,12],[390,11,234,13,"v2l"],[390,14,234,16],[390,17,234,19,"v2l"],[390,20,234,22],[390,23,234,25],[390,24,234,26],[391,6,235,8],[391,10,235,12],[391,11,235,13,"v2h"],[391,14,235,16],[391,17,235,19,"v2h"],[391,20,235,22],[391,23,235,25],[391,24,235,26],[392,6,236,8],[392,10,236,12],[392,11,236,13,"v3l"],[392,14,236,16],[392,17,236,19,"v3l"],[392,20,236,22],[392,23,236,25],[392,24,236,26],[393,6,237,8],[393,10,237,12],[393,11,237,13,"v3h"],[393,14,237,16],[393,17,237,19,"v3h"],[393,20,237,22],[393,23,237,25],[393,24,237,26],[394,6,238,8],[394,10,238,12],[394,11,238,13,"v4l"],[394,14,238,16],[394,17,238,19,"v4l"],[394,20,238,22],[394,23,238,25],[394,24,238,26],[395,6,239,8],[395,10,239,12],[395,11,239,13,"v4h"],[395,14,239,16],[395,17,239,19,"v4h"],[395,20,239,22],[395,23,239,25],[395,24,239,26],[396,6,240,8],[396,10,240,12],[396,11,240,13,"v5l"],[396,14,240,16],[396,17,240,19,"v5l"],[396,20,240,22],[396,23,240,25],[396,24,240,26],[397,6,241,8],[397,10,241,12],[397,11,241,13,"v5h"],[397,14,241,16],[397,17,241,19,"v5h"],[397,20,241,22],[397,23,241,25],[397,24,241,26],[398,6,242,8],[398,10,242,12],[398,11,242,13,"v6l"],[398,14,242,16],[398,17,242,19,"v6l"],[398,20,242,22],[398,23,242,25],[398,24,242,26],[399,6,243,8],[399,10,243,12],[399,11,243,13,"v6h"],[399,14,243,16],[399,17,243,19,"v6h"],[399,20,243,22],[399,23,243,25],[399,24,243,26],[400,6,244,8],[400,10,244,12],[400,11,244,13,"v7l"],[400,14,244,16],[400,17,244,19,"v7l"],[400,20,244,22],[400,23,244,25],[400,24,244,26],[401,6,245,8],[401,10,245,12],[401,11,245,13,"v7h"],[401,14,245,16],[401,17,245,19,"v7h"],[401,20,245,22],[401,23,245,25],[401,24,245,26],[402,4,246,4],[403,4,247,4,"compress"],[403,12,247,12,"compress"],[403,13,247,13,"msg"],[403,16,247,16],[403,18,247,18,"offset"],[403,24,247,24],[403,26,247,26,"isLast"],[403,32,247,32],[403,34,247,34],[404,6,248,8],[404,10,248,12],[404,11,248,13,"get"],[404,14,248,16],[404,15,248,17],[404,16,248,18],[404,17,248,19,"forEach"],[404,24,248,26],[404,25,248,27],[404,26,248,28,"v"],[404,27,248,29],[404,29,248,31,"i"],[404,30,248,32],[404,35,248,38,"BBUF"],[404,39,248,42],[404,40,248,43,"i"],[404,41,248,44],[404,42,248,45],[404,45,248,48,"v"],[404,46,248,50],[404,47,248,51],[404,48,248,52],[404,49,248,53],[405,6,249,8,"BBUF"],[405,10,249,12],[405,11,249,13,"set"],[405,14,249,16],[405,15,249,17,"B2B_IV"],[405,21,249,23],[405,23,249,25],[405,25,249,27],[405,26,249,28],[405,27,249,29],[405,28,249,30],[406,6,250,8],[406,10,250,12],[407,8,250,14,"h"],[407,9,250,15],[408,8,250,17,"l"],[409,6,250,19],[409,7,250,20],[409,10,250,23,"u64"],[409,13,250,26],[409,14,250,27,"fromBig"],[409,21,250,34],[409,22,250,35,"BigInt"],[409,28,250,41],[409,29,250,42],[409,33,250,46],[409,34,250,47,"length"],[409,40,250,53],[409,41,250,54],[409,42,250,55],[410,6,251,8,"BBUF"],[410,10,251,12],[410,11,251,13],[410,13,251,15],[410,14,251,16],[410,17,251,19,"B2B_IV"],[410,23,251,25],[410,24,251,26],[410,25,251,27],[410,26,251,28],[410,29,251,31,"l"],[410,30,251,32],[410,31,251,33],[410,32,251,34],[411,6,252,8,"BBUF"],[411,10,252,12],[411,11,252,13],[411,13,252,15],[411,14,252,16],[411,17,252,19,"B2B_IV"],[411,23,252,25],[411,24,252,26],[411,25,252,27],[411,26,252,28],[411,29,252,31,"h"],[411,30,252,32],[411,31,252,33],[411,32,252,34],[412,6,253,8],[413,6,254,8],[413,10,254,12,"isLast"],[413,16,254,18],[413,18,254,20],[414,8,255,12,"BBUF"],[414,12,255,16],[414,13,255,17],[414,15,255,19],[414,16,255,20],[414,19,255,23],[414,20,255,24,"BBUF"],[414,24,255,28],[414,25,255,29],[414,27,255,31],[414,28,255,32],[415,8,256,12,"BBUF"],[415,12,256,16],[415,13,256,17],[415,15,256,19],[415,16,256,20],[415,19,256,23],[415,20,256,24,"BBUF"],[415,24,256,28],[415,25,256,29],[415,27,256,31],[415,28,256,32],[416,6,257,8],[417,6,258,8],[417,10,258,12,"j"],[417,11,258,13],[417,14,258,16],[417,15,258,17],[418,6,259,8],[418,12,259,14,"s"],[418,13,259,15],[418,16,259,18,"BSIGMA"],[418,24,259,24],[418,25,259,24,"BSIGMA"],[418,31,259,24],[419,6,260,8],[419,11,260,13],[419,15,260,17,"i"],[419,16,260,18],[419,19,260,21],[419,20,260,22],[419,22,260,24,"i"],[419,23,260,25],[419,26,260,28],[419,28,260,30],[419,30,260,32,"i"],[419,31,260,33],[419,33,260,35],[419,35,260,37],[420,8,261,12,"G1b"],[420,11,261,15],[420,12,261,16],[420,13,261,17],[420,15,261,19],[420,16,261,20],[420,18,261,22],[420,19,261,23],[420,21,261,25],[420,23,261,27],[420,25,261,29,"msg"],[420,28,261,32],[420,30,261,34,"offset"],[420,36,261,40],[420,39,261,43],[420,40,261,44],[420,43,261,47,"s"],[420,44,261,48],[420,45,261,49,"j"],[420,46,261,50],[420,48,261,52],[420,49,261,53],[420,50,261,54],[421,8,262,12,"G2b"],[421,11,262,15],[421,12,262,16],[421,13,262,17],[421,15,262,19],[421,16,262,20],[421,18,262,22],[421,19,262,23],[421,21,262,25],[421,23,262,27],[421,25,262,29,"msg"],[421,28,262,32],[421,30,262,34,"offset"],[421,36,262,40],[421,39,262,43],[421,40,262,44],[421,43,262,47,"s"],[421,44,262,48],[421,45,262,49,"j"],[421,46,262,50],[421,48,262,52],[421,49,262,53],[421,50,262,54],[422,8,263,12,"G1b"],[422,11,263,15],[422,12,263,16],[422,13,263,17],[422,15,263,19],[422,16,263,20],[422,18,263,22],[422,19,263,23],[422,21,263,25],[422,23,263,27],[422,25,263,29,"msg"],[422,28,263,32],[422,30,263,34,"offset"],[422,36,263,40],[422,39,263,43],[422,40,263,44],[422,43,263,47,"s"],[422,44,263,48],[422,45,263,49,"j"],[422,46,263,50],[422,48,263,52],[422,49,263,53],[422,50,263,54],[423,8,264,12,"G2b"],[423,11,264,15],[423,12,264,16],[423,13,264,17],[423,15,264,19],[423,16,264,20],[423,18,264,22],[423,19,264,23],[423,21,264,25],[423,23,264,27],[423,25,264,29,"msg"],[423,28,264,32],[423,30,264,34,"offset"],[423,36,264,40],[423,39,264,43],[423,40,264,44],[423,43,264,47,"s"],[423,44,264,48],[423,45,264,49,"j"],[423,46,264,50],[423,48,264,52],[423,49,264,53],[423,50,264,54],[424,8,265,12,"G1b"],[424,11,265,15],[424,12,265,16],[424,13,265,17],[424,15,265,19],[424,16,265,20],[424,18,265,22],[424,20,265,24],[424,22,265,26],[424,24,265,28],[424,26,265,30,"msg"],[424,29,265,33],[424,31,265,35,"offset"],[424,37,265,41],[424,40,265,44],[424,41,265,45],[424,44,265,48,"s"],[424,45,265,49],[424,46,265,50,"j"],[424,47,265,51],[424,49,265,53],[424,50,265,54],[424,51,265,55],[425,8,266,12,"G2b"],[425,11,266,15],[425,12,266,16],[425,13,266,17],[425,15,266,19],[425,16,266,20],[425,18,266,22],[425,20,266,24],[425,22,266,26],[425,24,266,28],[425,26,266,30,"msg"],[425,29,266,33],[425,31,266,35,"offset"],[425,37,266,41],[425,40,266,44],[425,41,266,45],[425,44,266,48,"s"],[425,45,266,49],[425,46,266,50,"j"],[425,47,266,51],[425,49,266,53],[425,50,266,54],[425,51,266,55],[426,8,267,12,"G1b"],[426,11,267,15],[426,12,267,16],[426,13,267,17],[426,15,267,19],[426,16,267,20],[426,18,267,22],[426,20,267,24],[426,22,267,26],[426,24,267,28],[426,26,267,30,"msg"],[426,29,267,33],[426,31,267,35,"offset"],[426,37,267,41],[426,40,267,44],[426,41,267,45],[426,44,267,48,"s"],[426,45,267,49],[426,46,267,50,"j"],[426,47,267,51],[426,49,267,53],[426,50,267,54],[426,51,267,55],[427,8,268,12,"G2b"],[427,11,268,15],[427,12,268,16],[427,13,268,17],[427,15,268,19],[427,16,268,20],[427,18,268,22],[427,20,268,24],[427,22,268,26],[427,24,268,28],[427,26,268,30,"msg"],[427,29,268,33],[427,31,268,35,"offset"],[427,37,268,41],[427,40,268,44],[427,41,268,45],[427,44,268,48,"s"],[427,45,268,49],[427,46,268,50,"j"],[427,47,268,51],[427,49,268,53],[427,50,268,54],[427,51,268,55],[428,8,269,12,"G1b"],[428,11,269,15],[428,12,269,16],[428,13,269,17],[428,15,269,19],[428,16,269,20],[428,18,269,22],[428,20,269,24],[428,22,269,26],[428,24,269,28],[428,26,269,30,"msg"],[428,29,269,33],[428,31,269,35,"offset"],[428,37,269,41],[428,40,269,44],[428,41,269,45],[428,44,269,48,"s"],[428,45,269,49],[428,46,269,50,"j"],[428,47,269,51],[428,49,269,53],[428,50,269,54],[428,51,269,55],[429,8,270,12,"G2b"],[429,11,270,15],[429,12,270,16],[429,13,270,17],[429,15,270,19],[429,16,270,20],[429,18,270,22],[429,20,270,24],[429,22,270,26],[429,24,270,28],[429,26,270,30,"msg"],[429,29,270,33],[429,31,270,35,"offset"],[429,37,270,41],[429,40,270,44],[429,41,270,45],[429,44,270,48,"s"],[429,45,270,49],[429,46,270,50,"j"],[429,47,270,51],[429,49,270,53],[429,50,270,54],[429,51,270,55],[430,8,271,12,"G1b"],[430,11,271,15],[430,12,271,16],[430,13,271,17],[430,15,271,19],[430,16,271,20],[430,18,271,22],[430,20,271,24],[430,22,271,26],[430,24,271,28],[430,26,271,30,"msg"],[430,29,271,33],[430,31,271,35,"offset"],[430,37,271,41],[430,40,271,44],[430,41,271,45],[430,44,271,48,"s"],[430,45,271,49],[430,46,271,50,"j"],[430,47,271,51],[430,49,271,53],[430,50,271,54],[430,51,271,55],[431,8,272,12,"G2b"],[431,11,272,15],[431,12,272,16],[431,13,272,17],[431,15,272,19],[431,16,272,20],[431,18,272,22],[431,20,272,24],[431,22,272,26],[431,24,272,28],[431,26,272,30,"msg"],[431,29,272,33],[431,31,272,35,"offset"],[431,37,272,41],[431,40,272,44],[431,41,272,45],[431,44,272,48,"s"],[431,45,272,49],[431,46,272,50,"j"],[431,47,272,51],[431,49,272,53],[431,50,272,54],[431,51,272,55],[432,8,273,12,"G1b"],[432,11,273,15],[432,12,273,16],[432,13,273,17],[432,15,273,19],[432,16,273,20],[432,18,273,22],[432,19,273,23],[432,21,273,25],[432,23,273,27],[432,25,273,29,"msg"],[432,28,273,32],[432,30,273,34,"offset"],[432,36,273,40],[432,39,273,43],[432,40,273,44],[432,43,273,47,"s"],[432,44,273,48],[432,45,273,49,"j"],[432,46,273,50],[432,48,273,52],[432,49,273,53],[432,50,273,54],[433,8,274,12,"G2b"],[433,11,274,15],[433,12,274,16],[433,13,274,17],[433,15,274,19],[433,16,274,20],[433,18,274,22],[433,19,274,23],[433,21,274,25],[433,23,274,27],[433,25,274,29,"msg"],[433,28,274,32],[433,30,274,34,"offset"],[433,36,274,40],[433,39,274,43],[433,40,274,44],[433,43,274,47,"s"],[433,44,274,48],[433,45,274,49,"j"],[433,46,274,50],[433,48,274,52],[433,49,274,53],[433,50,274,54],[434,8,275,12,"G1b"],[434,11,275,15],[434,12,275,16],[434,13,275,17],[434,15,275,19],[434,16,275,20],[434,18,275,22],[434,19,275,23],[434,21,275,25],[434,23,275,27],[434,25,275,29,"msg"],[434,28,275,32],[434,30,275,34,"offset"],[434,36,275,40],[434,39,275,43],[434,40,275,44],[434,43,275,47,"s"],[434,44,275,48],[434,45,275,49,"j"],[434,46,275,50],[434,48,275,52],[434,49,275,53],[434,50,275,54],[435,8,276,12,"G2b"],[435,11,276,15],[435,12,276,16],[435,13,276,17],[435,15,276,19],[435,16,276,20],[435,18,276,22],[435,19,276,23],[435,21,276,25],[435,23,276,27],[435,25,276,29,"msg"],[435,28,276,32],[435,30,276,34,"offset"],[435,36,276,40],[435,39,276,43],[435,40,276,44],[435,43,276,47,"s"],[435,44,276,48],[435,45,276,49,"j"],[435,46,276,50],[435,48,276,52],[435,49,276,53],[435,50,276,54],[436,6,277,8],[437,6,278,8],[437,10,278,12],[437,11,278,13,"v0l"],[437,14,278,16],[437,18,278,20,"BBUF"],[437,22,278,24],[437,23,278,25],[437,24,278,26],[437,25,278,27],[437,28,278,30,"BBUF"],[437,32,278,34],[437,33,278,35],[437,35,278,37],[437,36,278,38],[438,6,279,8],[438,10,279,12],[438,11,279,13,"v0h"],[438,14,279,16],[438,18,279,20,"BBUF"],[438,22,279,24],[438,23,279,25],[438,24,279,26],[438,25,279,27],[438,28,279,30,"BBUF"],[438,32,279,34],[438,33,279,35],[438,35,279,37],[438,36,279,38],[439,6,280,8],[439,10,280,12],[439,11,280,13,"v1l"],[439,14,280,16],[439,18,280,20,"BBUF"],[439,22,280,24],[439,23,280,25],[439,24,280,26],[439,25,280,27],[439,28,280,30,"BBUF"],[439,32,280,34],[439,33,280,35],[439,35,280,37],[439,36,280,38],[440,6,281,8],[440,10,281,12],[440,11,281,13,"v1h"],[440,14,281,16],[440,18,281,20,"BBUF"],[440,22,281,24],[440,23,281,25],[440,24,281,26],[440,25,281,27],[440,28,281,30,"BBUF"],[440,32,281,34],[440,33,281,35],[440,35,281,37],[440,36,281,38],[441,6,282,8],[441,10,282,12],[441,11,282,13,"v2l"],[441,14,282,16],[441,18,282,20,"BBUF"],[441,22,282,24],[441,23,282,25],[441,24,282,26],[441,25,282,27],[441,28,282,30,"BBUF"],[441,32,282,34],[441,33,282,35],[441,35,282,37],[441,36,282,38],[442,6,283,8],[442,10,283,12],[442,11,283,13,"v2h"],[442,14,283,16],[442,18,283,20,"BBUF"],[442,22,283,24],[442,23,283,25],[442,24,283,26],[442,25,283,27],[442,28,283,30,"BBUF"],[442,32,283,34],[442,33,283,35],[442,35,283,37],[442,36,283,38],[443,6,284,8],[443,10,284,12],[443,11,284,13,"v3l"],[443,14,284,16],[443,18,284,20,"BBUF"],[443,22,284,24],[443,23,284,25],[443,24,284,26],[443,25,284,27],[443,28,284,30,"BBUF"],[443,32,284,34],[443,33,284,35],[443,35,284,37],[443,36,284,38],[444,6,285,8],[444,10,285,12],[444,11,285,13,"v3h"],[444,14,285,16],[444,18,285,20,"BBUF"],[444,22,285,24],[444,23,285,25],[444,24,285,26],[444,25,285,27],[444,28,285,30,"BBUF"],[444,32,285,34],[444,33,285,35],[444,35,285,37],[444,36,285,38],[445,6,286,8],[445,10,286,12],[445,11,286,13,"v4l"],[445,14,286,16],[445,18,286,20,"BBUF"],[445,22,286,24],[445,23,286,25],[445,24,286,26],[445,25,286,27],[445,28,286,30,"BBUF"],[445,32,286,34],[445,33,286,35],[445,35,286,37],[445,36,286,38],[446,6,287,8],[446,10,287,12],[446,11,287,13,"v4h"],[446,14,287,16],[446,18,287,20,"BBUF"],[446,22,287,24],[446,23,287,25],[446,24,287,26],[446,25,287,27],[446,28,287,30,"BBUF"],[446,32,287,34],[446,33,287,35],[446,35,287,37],[446,36,287,38],[447,6,288,8],[447,10,288,12],[447,11,288,13,"v5l"],[447,14,288,16],[447,18,288,20,"BBUF"],[447,22,288,24],[447,23,288,25],[447,25,288,27],[447,26,288,28],[447,29,288,31,"BBUF"],[447,33,288,35],[447,34,288,36],[447,36,288,38],[447,37,288,39],[448,6,289,8],[448,10,289,12],[448,11,289,13,"v5h"],[448,14,289,16],[448,18,289,20,"BBUF"],[448,22,289,24],[448,23,289,25],[448,25,289,27],[448,26,289,28],[448,29,289,31,"BBUF"],[448,33,289,35],[448,34,289,36],[448,36,289,38],[448,37,289,39],[449,6,290,8],[449,10,290,12],[449,11,290,13,"v6l"],[449,14,290,16],[449,18,290,20,"BBUF"],[449,22,290,24],[449,23,290,25],[449,25,290,27],[449,26,290,28],[449,29,290,31,"BBUF"],[449,33,290,35],[449,34,290,36],[449,36,290,38],[449,37,290,39],[450,6,291,8],[450,10,291,12],[450,11,291,13,"v6h"],[450,14,291,16],[450,18,291,20,"BBUF"],[450,22,291,24],[450,23,291,25],[450,25,291,27],[450,26,291,28],[450,29,291,31,"BBUF"],[450,33,291,35],[450,34,291,36],[450,36,291,38],[450,37,291,39],[451,6,292,8],[451,10,292,12],[451,11,292,13,"v7l"],[451,14,292,16],[451,18,292,20,"BBUF"],[451,22,292,24],[451,23,292,25],[451,25,292,27],[451,26,292,28],[451,29,292,31,"BBUF"],[451,33,292,35],[451,34,292,36],[451,36,292,38],[451,37,292,39],[452,6,293,8],[452,10,293,12],[452,11,293,13,"v7h"],[452,14,293,16],[452,18,293,20,"BBUF"],[452,22,293,24],[452,23,293,25],[452,25,293,27],[452,26,293,28],[452,29,293,31,"BBUF"],[452,33,293,35],[452,34,293,36],[452,36,293,38],[452,37,293,39],[453,6,294,8],[453,10,294,8,"clean"],[453,18,294,13],[453,19,294,13,"clean"],[453,24,294,13],[453,26,294,14,"BBUF"],[453,30,294,18],[453,31,294,19],[454,4,295,4],[455,4,296,4,"destroy"],[455,11,296,11,"destroy"],[455,12,296,11],[455,14,296,14],[456,6,297,8],[456,10,297,12],[456,11,297,13,"destroyed"],[456,20,297,22],[456,23,297,25],[456,27,297,29],[457,6,298,8],[457,10,298,8,"clean"],[457,18,298,13],[457,19,298,13,"clean"],[457,24,298,13],[457,26,298,14],[457,30,298,18],[457,31,298,19,"buffer32"],[457,39,298,27],[457,40,298,28],[458,6,299,8],[458,10,299,12],[458,11,299,13,"set"],[458,14,299,16],[458,15,299,17],[458,16,299,18],[458,18,299,20],[458,19,299,21],[458,21,299,23],[458,22,299,24],[458,24,299,26],[458,25,299,27],[458,27,299,29],[458,28,299,30],[458,30,299,32],[458,31,299,33],[458,33,299,35],[458,34,299,36],[458,36,299,38],[458,37,299,39],[458,39,299,41],[458,40,299,42],[458,42,299,44],[458,43,299,45],[458,45,299,47],[458,46,299,48],[458,48,299,50],[458,49,299,51],[458,51,299,53],[458,52,299,54],[458,54,299,56],[458,55,299,57],[458,57,299,59],[458,58,299,60],[458,60,299,62],[458,61,299,63],[458,62,299,64],[459,4,300,4],[460,2,301,0],[461,2,302,0],[462,0,303,0],[463,0,304,0],[464,0,305,0],[465,0,306,0],[466,2,307,7],[466,8,307,13,"blake2b"],[466,15,307,20],[466,18,307,23],[466,33,307,39],[466,37,307,39,"createOptHasher"],[466,45,307,54],[466,46,307,54,"createOptHasher"],[466,61,307,54],[466,63,307,56,"opts"],[466,67,307,60],[466,71,307,65],[466,75,307,69,"BLAKE2b"],[466,82,307,76],[466,83,307,77,"opts"],[466,87,307,81],[466,88,307,82],[466,89,307,83],[467,2,308,0],[468,2,309,7],[468,11,309,16,"compress"],[468,19,309,24,"compress"],[468,20,309,25,"s"],[468,21,309,26],[468,23,309,28,"offset"],[468,29,309,34],[468,31,309,36,"msg"],[468,34,309,39],[468,36,309,41,"rounds"],[468,42,309,47],[468,44,309,49,"v0"],[468,46,309,51],[468,48,309,53,"v1"],[468,50,309,55],[468,52,309,57,"v2"],[468,54,309,59],[468,56,309,61,"v3"],[468,58,309,63],[468,60,309,65,"v4"],[468,62,309,67],[468,64,309,69,"v5"],[468,66,309,71],[468,68,309,73,"v6"],[468,70,309,75],[468,72,309,77,"v7"],[468,74,309,79],[468,76,309,81,"v8"],[468,78,309,83],[468,80,309,85,"v9"],[468,82,309,87],[468,84,309,89,"v10"],[468,87,309,92],[468,89,309,94,"v11"],[468,92,309,97],[468,94,309,99,"v12"],[468,97,309,102],[468,99,309,104,"v13"],[468,102,309,107],[468,104,309,109,"v14"],[468,107,309,112],[468,109,309,114,"v15"],[468,112,309,117],[468,114,309,119],[469,4,310,4],[469,8,310,8,"j"],[469,9,310,9],[469,12,310,12],[469,13,310,13],[470,4,311,4],[470,9,311,9],[470,13,311,13,"i"],[470,14,311,14],[470,17,311,17],[470,18,311,18],[470,20,311,20,"i"],[470,21,311,21],[470,24,311,24,"rounds"],[470,30,311,30],[470,32,311,32,"i"],[470,33,311,33],[470,35,311,35],[470,37,311,37],[471,6,312,8],[471,7,312,9],[472,8,312,11,"a"],[472,9,312,12],[472,11,312,14,"v0"],[472,13,312,16],[473,8,312,18,"b"],[473,9,312,19],[473,11,312,21,"v4"],[473,13,312,23],[474,8,312,25,"c"],[474,9,312,26],[474,11,312,28,"v8"],[474,13,312,30],[475,8,312,32,"d"],[475,9,312,33],[475,11,312,35,"v12"],[476,6,312,39],[476,7,312,40],[476,10,312,43],[476,14,312,43,"G1s"],[476,22,312,46],[476,23,312,46,"G1s"],[476,26,312,46],[476,28,312,47,"v0"],[476,30,312,49],[476,32,312,51,"v4"],[476,34,312,53],[476,36,312,55,"v8"],[476,38,312,57],[476,40,312,59,"v12"],[476,43,312,62],[476,45,312,64,"msg"],[476,48,312,67],[476,49,312,68,"offset"],[476,55,312,74],[476,58,312,77,"s"],[476,59,312,78],[476,60,312,79,"j"],[476,61,312,80],[476,63,312,82],[476,64,312,83],[476,65,312,84],[476,66,312,85],[477,6,313,8],[477,7,313,9],[478,8,313,11,"a"],[478,9,313,12],[478,11,313,14,"v0"],[478,13,313,16],[479,8,313,18,"b"],[479,9,313,19],[479,11,313,21,"v4"],[479,13,313,23],[480,8,313,25,"c"],[480,9,313,26],[480,11,313,28,"v8"],[480,13,313,30],[481,8,313,32,"d"],[481,9,313,33],[481,11,313,35,"v12"],[482,6,313,39],[482,7,313,40],[482,10,313,43],[482,14,313,43,"G2s"],[482,22,313,46],[482,23,313,46,"G2s"],[482,26,313,46],[482,28,313,47,"v0"],[482,30,313,49],[482,32,313,51,"v4"],[482,34,313,53],[482,36,313,55,"v8"],[482,38,313,57],[482,40,313,59,"v12"],[482,43,313,62],[482,45,313,64,"msg"],[482,48,313,67],[482,49,313,68,"offset"],[482,55,313,74],[482,58,313,77,"s"],[482,59,313,78],[482,60,313,79,"j"],[482,61,313,80],[482,63,313,82],[482,64,313,83],[482,65,313,84],[482,66,313,85],[483,6,314,8],[483,7,314,9],[484,8,314,11,"a"],[484,9,314,12],[484,11,314,14,"v1"],[484,13,314,16],[485,8,314,18,"b"],[485,9,314,19],[485,11,314,21,"v5"],[485,13,314,23],[486,8,314,25,"c"],[486,9,314,26],[486,11,314,28,"v9"],[486,13,314,30],[487,8,314,32,"d"],[487,9,314,33],[487,11,314,35,"v13"],[488,6,314,39],[488,7,314,40],[488,10,314,43],[488,14,314,43,"G1s"],[488,22,314,46],[488,23,314,46,"G1s"],[488,26,314,46],[488,28,314,47,"v1"],[488,30,314,49],[488,32,314,51,"v5"],[488,34,314,53],[488,36,314,55,"v9"],[488,38,314,57],[488,40,314,59,"v13"],[488,43,314,62],[488,45,314,64,"msg"],[488,48,314,67],[488,49,314,68,"offset"],[488,55,314,74],[488,58,314,77,"s"],[488,59,314,78],[488,60,314,79,"j"],[488,61,314,80],[488,63,314,82],[488,64,314,83],[488,65,314,84],[488,66,314,85],[489,6,315,8],[489,7,315,9],[490,8,315,11,"a"],[490,9,315,12],[490,11,315,14,"v1"],[490,13,315,16],[491,8,315,18,"b"],[491,9,315,19],[491,11,315,21,"v5"],[491,13,315,23],[492,8,315,25,"c"],[492,9,315,26],[492,11,315,28,"v9"],[492,13,315,30],[493,8,315,32,"d"],[493,9,315,33],[493,11,315,35,"v13"],[494,6,315,39],[494,7,315,40],[494,10,315,43],[494,14,315,43,"G2s"],[494,22,315,46],[494,23,315,46,"G2s"],[494,26,315,46],[494,28,315,47,"v1"],[494,30,315,49],[494,32,315,51,"v5"],[494,34,315,53],[494,36,315,55,"v9"],[494,38,315,57],[494,40,315,59,"v13"],[494,43,315,62],[494,45,315,64,"msg"],[494,48,315,67],[494,49,315,68,"offset"],[494,55,315,74],[494,58,315,77,"s"],[494,59,315,78],[494,60,315,79,"j"],[494,61,315,80],[494,63,315,82],[494,64,315,83],[494,65,315,84],[494,66,315,85],[495,6,316,8],[495,7,316,9],[496,8,316,11,"a"],[496,9,316,12],[496,11,316,14,"v2"],[496,13,316,16],[497,8,316,18,"b"],[497,9,316,19],[497,11,316,21,"v6"],[497,13,316,23],[498,8,316,25,"c"],[498,9,316,26],[498,11,316,28,"v10"],[498,14,316,31],[499,8,316,33,"d"],[499,9,316,34],[499,11,316,36,"v14"],[500,6,316,40],[500,7,316,41],[500,10,316,44],[500,14,316,44,"G1s"],[500,22,316,47],[500,23,316,47,"G1s"],[500,26,316,47],[500,28,316,48,"v2"],[500,30,316,50],[500,32,316,52,"v6"],[500,34,316,54],[500,36,316,56,"v10"],[500,39,316,59],[500,41,316,61,"v14"],[500,44,316,64],[500,46,316,66,"msg"],[500,49,316,69],[500,50,316,70,"offset"],[500,56,316,76],[500,59,316,79,"s"],[500,60,316,80],[500,61,316,81,"j"],[500,62,316,82],[500,64,316,84],[500,65,316,85],[500,66,316,86],[500,67,316,87],[501,6,317,8],[501,7,317,9],[502,8,317,11,"a"],[502,9,317,12],[502,11,317,14,"v2"],[502,13,317,16],[503,8,317,18,"b"],[503,9,317,19],[503,11,317,21,"v6"],[503,13,317,23],[504,8,317,25,"c"],[504,9,317,26],[504,11,317,28,"v10"],[504,14,317,31],[505,8,317,33,"d"],[505,9,317,34],[505,11,317,36,"v14"],[506,6,317,40],[506,7,317,41],[506,10,317,44],[506,14,317,44,"G2s"],[506,22,317,47],[506,23,317,47,"G2s"],[506,26,317,47],[506,28,317,48,"v2"],[506,30,317,50],[506,32,317,52,"v6"],[506,34,317,54],[506,36,317,56,"v10"],[506,39,317,59],[506,41,317,61,"v14"],[506,44,317,64],[506,46,317,66,"msg"],[506,49,317,69],[506,50,317,70,"offset"],[506,56,317,76],[506,59,317,79,"s"],[506,60,317,80],[506,61,317,81,"j"],[506,62,317,82],[506,64,317,84],[506,65,317,85],[506,66,317,86],[506,67,317,87],[507,6,318,8],[507,7,318,9],[508,8,318,11,"a"],[508,9,318,12],[508,11,318,14,"v3"],[508,13,318,16],[509,8,318,18,"b"],[509,9,318,19],[509,11,318,21,"v7"],[509,13,318,23],[510,8,318,25,"c"],[510,9,318,26],[510,11,318,28,"v11"],[510,14,318,31],[511,8,318,33,"d"],[511,9,318,34],[511,11,318,36,"v15"],[512,6,318,40],[512,7,318,41],[512,10,318,44],[512,14,318,44,"G1s"],[512,22,318,47],[512,23,318,47,"G1s"],[512,26,318,47],[512,28,318,48,"v3"],[512,30,318,50],[512,32,318,52,"v7"],[512,34,318,54],[512,36,318,56,"v11"],[512,39,318,59],[512,41,318,61,"v15"],[512,44,318,64],[512,46,318,66,"msg"],[512,49,318,69],[512,50,318,70,"offset"],[512,56,318,76],[512,59,318,79,"s"],[512,60,318,80],[512,61,318,81,"j"],[512,62,318,82],[512,64,318,84],[512,65,318,85],[512,66,318,86],[512,67,318,87],[513,6,319,8],[513,7,319,9],[514,8,319,11,"a"],[514,9,319,12],[514,11,319,14,"v3"],[514,13,319,16],[515,8,319,18,"b"],[515,9,319,19],[515,11,319,21,"v7"],[515,13,319,23],[516,8,319,25,"c"],[516,9,319,26],[516,11,319,28,"v11"],[516,14,319,31],[517,8,319,33,"d"],[517,9,319,34],[517,11,319,36,"v15"],[518,6,319,40],[518,7,319,41],[518,10,319,44],[518,14,319,44,"G2s"],[518,22,319,47],[518,23,319,47,"G2s"],[518,26,319,47],[518,28,319,48,"v3"],[518,30,319,50],[518,32,319,52,"v7"],[518,34,319,54],[518,36,319,56,"v11"],[518,39,319,59],[518,41,319,61,"v15"],[518,44,319,64],[518,46,319,66,"msg"],[518,49,319,69],[518,50,319,70,"offset"],[518,56,319,76],[518,59,319,79,"s"],[518,60,319,80],[518,61,319,81,"j"],[518,62,319,82],[518,64,319,84],[518,65,319,85],[518,66,319,86],[518,67,319,87],[519,6,320,8],[519,7,320,9],[520,8,320,11,"a"],[520,9,320,12],[520,11,320,14,"v0"],[520,13,320,16],[521,8,320,18,"b"],[521,9,320,19],[521,11,320,21,"v5"],[521,13,320,23],[522,8,320,25,"c"],[522,9,320,26],[522,11,320,28,"v10"],[522,14,320,31],[523,8,320,33,"d"],[523,9,320,34],[523,11,320,36,"v15"],[524,6,320,40],[524,7,320,41],[524,10,320,44],[524,14,320,44,"G1s"],[524,22,320,47],[524,23,320,47,"G1s"],[524,26,320,47],[524,28,320,48,"v0"],[524,30,320,50],[524,32,320,52,"v5"],[524,34,320,54],[524,36,320,56,"v10"],[524,39,320,59],[524,41,320,61,"v15"],[524,44,320,64],[524,46,320,66,"msg"],[524,49,320,69],[524,50,320,70,"offset"],[524,56,320,76],[524,59,320,79,"s"],[524,60,320,80],[524,61,320,81,"j"],[524,62,320,82],[524,64,320,84],[524,65,320,85],[524,66,320,86],[524,67,320,87],[525,6,321,8],[525,7,321,9],[526,8,321,11,"a"],[526,9,321,12],[526,11,321,14,"v0"],[526,13,321,16],[527,8,321,18,"b"],[527,9,321,19],[527,11,321,21,"v5"],[527,13,321,23],[528,8,321,25,"c"],[528,9,321,26],[528,11,321,28,"v10"],[528,14,321,31],[529,8,321,33,"d"],[529,9,321,34],[529,11,321,36,"v15"],[530,6,321,40],[530,7,321,41],[530,10,321,44],[530,14,321,44,"G2s"],[530,22,321,47],[530,23,321,47,"G2s"],[530,26,321,47],[530,28,321,48,"v0"],[530,30,321,50],[530,32,321,52,"v5"],[530,34,321,54],[530,36,321,56,"v10"],[530,39,321,59],[530,41,321,61,"v15"],[530,44,321,64],[530,46,321,66,"msg"],[530,49,321,69],[530,50,321,70,"offset"],[530,56,321,76],[530,59,321,79,"s"],[530,60,321,80],[530,61,321,81,"j"],[530,62,321,82],[530,64,321,84],[530,65,321,85],[530,66,321,86],[530,67,321,87],[531,6,322,8],[531,7,322,9],[532,8,322,11,"a"],[532,9,322,12],[532,11,322,14,"v1"],[532,13,322,16],[533,8,322,18,"b"],[533,9,322,19],[533,11,322,21,"v6"],[533,13,322,23],[534,8,322,25,"c"],[534,9,322,26],[534,11,322,28,"v11"],[534,14,322,31],[535,8,322,33,"d"],[535,9,322,34],[535,11,322,36,"v12"],[536,6,322,40],[536,7,322,41],[536,10,322,44],[536,14,322,44,"G1s"],[536,22,322,47],[536,23,322,47,"G1s"],[536,26,322,47],[536,28,322,48,"v1"],[536,30,322,50],[536,32,322,52,"v6"],[536,34,322,54],[536,36,322,56,"v11"],[536,39,322,59],[536,41,322,61,"v12"],[536,44,322,64],[536,46,322,66,"msg"],[536,49,322,69],[536,50,322,70,"offset"],[536,56,322,76],[536,59,322,79,"s"],[536,60,322,80],[536,61,322,81,"j"],[536,62,322,82],[536,64,322,84],[536,65,322,85],[536,66,322,86],[536,67,322,87],[537,6,323,8],[537,7,323,9],[538,8,323,11,"a"],[538,9,323,12],[538,11,323,14,"v1"],[538,13,323,16],[539,8,323,18,"b"],[539,9,323,19],[539,11,323,21,"v6"],[539,13,323,23],[540,8,323,25,"c"],[540,9,323,26],[540,11,323,28,"v11"],[540,14,323,31],[541,8,323,33,"d"],[541,9,323,34],[541,11,323,36,"v12"],[542,6,323,40],[542,7,323,41],[542,10,323,44],[542,14,323,44,"G2s"],[542,22,323,47],[542,23,323,47,"G2s"],[542,26,323,47],[542,28,323,48,"v1"],[542,30,323,50],[542,32,323,52,"v6"],[542,34,323,54],[542,36,323,56,"v11"],[542,39,323,59],[542,41,323,61,"v12"],[542,44,323,64],[542,46,323,66,"msg"],[542,49,323,69],[542,50,323,70,"offset"],[542,56,323,76],[542,59,323,79,"s"],[542,60,323,80],[542,61,323,81,"j"],[542,62,323,82],[542,64,323,84],[542,65,323,85],[542,66,323,86],[542,67,323,87],[543,6,324,8],[543,7,324,9],[544,8,324,11,"a"],[544,9,324,12],[544,11,324,14,"v2"],[544,13,324,16],[545,8,324,18,"b"],[545,9,324,19],[545,11,324,21,"v7"],[545,13,324,23],[546,8,324,25,"c"],[546,9,324,26],[546,11,324,28,"v8"],[546,13,324,30],[547,8,324,32,"d"],[547,9,324,33],[547,11,324,35,"v13"],[548,6,324,39],[548,7,324,40],[548,10,324,43],[548,14,324,43,"G1s"],[548,22,324,46],[548,23,324,46,"G1s"],[548,26,324,46],[548,28,324,47,"v2"],[548,30,324,49],[548,32,324,51,"v7"],[548,34,324,53],[548,36,324,55,"v8"],[548,38,324,57],[548,40,324,59,"v13"],[548,43,324,62],[548,45,324,64,"msg"],[548,48,324,67],[548,49,324,68,"offset"],[548,55,324,74],[548,58,324,77,"s"],[548,59,324,78],[548,60,324,79,"j"],[548,61,324,80],[548,63,324,82],[548,64,324,83],[548,65,324,84],[548,66,324,85],[549,6,325,8],[549,7,325,9],[550,8,325,11,"a"],[550,9,325,12],[550,11,325,14,"v2"],[550,13,325,16],[551,8,325,18,"b"],[551,9,325,19],[551,11,325,21,"v7"],[551,13,325,23],[552,8,325,25,"c"],[552,9,325,26],[552,11,325,28,"v8"],[552,13,325,30],[553,8,325,32,"d"],[553,9,325,33],[553,11,325,35,"v13"],[554,6,325,39],[554,7,325,40],[554,10,325,43],[554,14,325,43,"G2s"],[554,22,325,46],[554,23,325,46,"G2s"],[554,26,325,46],[554,28,325,47,"v2"],[554,30,325,49],[554,32,325,51,"v7"],[554,34,325,53],[554,36,325,55,"v8"],[554,38,325,57],[554,40,325,59,"v13"],[554,43,325,62],[554,45,325,64,"msg"],[554,48,325,67],[554,49,325,68,"offset"],[554,55,325,74],[554,58,325,77,"s"],[554,59,325,78],[554,60,325,79,"j"],[554,61,325,80],[554,63,325,82],[554,64,325,83],[554,65,325,84],[554,66,325,85],[555,6,326,8],[555,7,326,9],[556,8,326,11,"a"],[556,9,326,12],[556,11,326,14,"v3"],[556,13,326,16],[557,8,326,18,"b"],[557,9,326,19],[557,11,326,21,"v4"],[557,13,326,23],[558,8,326,25,"c"],[558,9,326,26],[558,11,326,28,"v9"],[558,13,326,30],[559,8,326,32,"d"],[559,9,326,33],[559,11,326,35,"v14"],[560,6,326,39],[560,7,326,40],[560,10,326,43],[560,14,326,43,"G1s"],[560,22,326,46],[560,23,326,46,"G1s"],[560,26,326,46],[560,28,326,47,"v3"],[560,30,326,49],[560,32,326,51,"v4"],[560,34,326,53],[560,36,326,55,"v9"],[560,38,326,57],[560,40,326,59,"v14"],[560,43,326,62],[560,45,326,64,"msg"],[560,48,326,67],[560,49,326,68,"offset"],[560,55,326,74],[560,58,326,77,"s"],[560,59,326,78],[560,60,326,79,"j"],[560,61,326,80],[560,63,326,82],[560,64,326,83],[560,65,326,84],[560,66,326,85],[561,6,327,8],[561,7,327,9],[562,8,327,11,"a"],[562,9,327,12],[562,11,327,14,"v3"],[562,13,327,16],[563,8,327,18,"b"],[563,9,327,19],[563,11,327,21,"v4"],[563,13,327,23],[564,8,327,25,"c"],[564,9,327,26],[564,11,327,28,"v9"],[564,13,327,30],[565,8,327,32,"d"],[565,9,327,33],[565,11,327,35,"v14"],[566,6,327,39],[566,7,327,40],[566,10,327,43],[566,14,327,43,"G2s"],[566,22,327,46],[566,23,327,46,"G2s"],[566,26,327,46],[566,28,327,47,"v3"],[566,30,327,49],[566,32,327,51,"v4"],[566,34,327,53],[566,36,327,55,"v9"],[566,38,327,57],[566,40,327,59,"v14"],[566,43,327,62],[566,45,327,64,"msg"],[566,48,327,67],[566,49,327,68,"offset"],[566,55,327,74],[566,58,327,77,"s"],[566,59,327,78],[566,60,327,79,"j"],[566,61,327,80],[566,63,327,82],[566,64,327,83],[566,65,327,84],[566,66,327,85],[567,4,328,4],[568,4,329,4],[568,11,329,11],[569,6,329,13,"v0"],[569,8,329,15],[570,6,329,17,"v1"],[570,8,329,19],[571,6,329,21,"v2"],[571,8,329,23],[572,6,329,25,"v3"],[572,8,329,27],[573,6,329,29,"v4"],[573,8,329,31],[574,6,329,33,"v5"],[574,8,329,35],[575,6,329,37,"v6"],[575,8,329,39],[576,6,329,41,"v7"],[576,8,329,43],[577,6,329,45,"v8"],[577,8,329,47],[578,6,329,49,"v9"],[578,8,329,51],[579,6,329,53,"v10"],[579,9,329,56],[580,6,329,58,"v11"],[580,9,329,61],[581,6,329,63,"v12"],[581,9,329,66],[582,6,329,68,"v13"],[582,9,329,71],[583,6,329,73,"v14"],[583,9,329,76],[584,6,329,78,"v15"],[585,4,329,82],[585,5,329,83],[586,2,330,0],[587,2,331,0],[587,8,331,6,"B2S_IV"],[587,14,331,12],[587,17,331,15,"SHA256_IV"],[587,22,331,24],[587,23,331,24,"SHA256_IV"],[587,32,331,24],[588,2,332,7],[588,8,332,13,"BLAKE2s"],[588,15,332,20],[588,24,332,29,"BLAKE2"],[588,30,332,35],[588,31,332,36],[589,4,333,4,"constructor"],[589,15,333,15,"constructor"],[589,16,333,16,"opts"],[589,20,333,20],[589,23,333,23],[589,24,333,24],[589,25,333,25],[589,27,333,27],[590,6,334,8],[590,12,334,14,"olen"],[590,16,334,18],[590,19,334,21,"opts"],[590,23,334,25],[590,24,334,26,"dkLen"],[590,29,334,31],[590,34,334,36,"undefined"],[590,43,334,45],[590,46,334,48],[590,48,334,50],[590,51,334,53,"opts"],[590,55,334,57],[590,56,334,58,"dkLen"],[590,61,334,63],[591,6,335,8],[591,11,335,13],[591,12,335,14],[591,14,335,16],[591,16,335,18,"olen"],[591,20,335,22],[591,21,335,23],[592,6,336,8],[593,6,337,8],[593,10,337,12],[593,11,337,13,"v0"],[593,13,337,15],[593,16,337,18,"B2S_IV"],[593,22,337,24],[593,23,337,25],[593,24,337,26],[593,25,337,27],[593,28,337,30],[593,29,337,31],[594,6,338,8],[594,10,338,12],[594,11,338,13,"v1"],[594,13,338,15],[594,16,338,18,"B2S_IV"],[594,22,338,24],[594,23,338,25],[594,24,338,26],[594,25,338,27],[594,28,338,30],[594,29,338,31],[595,6,339,8],[595,10,339,12],[595,11,339,13,"v2"],[595,13,339,15],[595,16,339,18,"B2S_IV"],[595,22,339,24],[595,23,339,25],[595,24,339,26],[595,25,339,27],[595,28,339,30],[595,29,339,31],[596,6,340,8],[596,10,340,12],[596,11,340,13,"v3"],[596,13,340,15],[596,16,340,18,"B2S_IV"],[596,22,340,24],[596,23,340,25],[596,24,340,26],[596,25,340,27],[596,28,340,30],[596,29,340,31],[597,6,341,8],[597,10,341,12],[597,11,341,13,"v4"],[597,13,341,15],[597,16,341,18,"B2S_IV"],[597,22,341,24],[597,23,341,25],[597,24,341,26],[597,25,341,27],[597,28,341,30],[597,29,341,31],[598,6,342,8],[598,10,342,12],[598,11,342,13,"v5"],[598,13,342,15],[598,16,342,18,"B2S_IV"],[598,22,342,24],[598,23,342,25],[598,24,342,26],[598,25,342,27],[598,28,342,30],[598,29,342,31],[599,6,343,8],[599,10,343,12],[599,11,343,13,"v6"],[599,13,343,15],[599,16,343,18,"B2S_IV"],[599,22,343,24],[599,23,343,25],[599,24,343,26],[599,25,343,27],[599,28,343,30],[599,29,343,31],[600,6,344,8],[600,10,344,12],[600,11,344,13,"v7"],[600,13,344,15],[600,16,344,18,"B2S_IV"],[600,22,344,24],[600,23,344,25],[600,24,344,26],[600,25,344,27],[600,28,344,30],[600,29,344,31],[601,6,345,8,"checkBlake2Opts"],[601,21,345,23],[601,22,345,24,"olen"],[601,26,345,28],[601,28,345,30,"opts"],[601,32,345,34],[601,34,345,36],[601,36,345,38],[601,38,345,40],[601,39,345,41],[601,41,345,43],[601,42,345,44],[601,43,345,45],[602,6,346,8],[602,10,346,12],[603,8,346,14,"key"],[603,11,346,17],[604,8,346,19,"personalization"],[604,23,346,34],[605,8,346,36,"salt"],[606,6,346,41],[606,7,346,42],[606,10,346,45,"opts"],[606,14,346,49],[607,6,347,8],[607,10,347,12,"keyLength"],[607,19,347,21],[607,22,347,24],[607,23,347,25],[608,6,348,8],[608,10,348,12,"key"],[608,13,348,15],[608,18,348,20,"undefined"],[608,27,348,29],[608,29,348,31],[609,8,349,12,"key"],[609,11,349,15],[609,14,349,18],[609,18,349,18,"toBytes"],[609,26,349,25],[609,27,349,25,"toBytes"],[609,34,349,25],[609,36,349,26,"key"],[609,39,349,29],[609,40,349,30],[610,8,350,12,"keyLength"],[610,17,350,21],[610,20,350,24,"key"],[610,23,350,27],[610,24,350,28,"length"],[610,30,350,34],[611,6,351,8],[612,6,352,8],[612,10,352,12],[612,11,352,13,"v0"],[612,13,352,15],[612,17,352,19],[612,21,352,23],[612,22,352,24,"outputLen"],[612,31,352,33],[612,34,352,37,"keyLength"],[612,43,352,46],[612,47,352,50],[612,48,352,52],[612,51,352,56],[612,55,352,60],[612,59,352,64],[612,61,352,67],[612,64,352,71],[612,68,352,75],[612,72,352,79],[612,74,352,82],[613,6,353,8],[613,10,353,12,"salt"],[613,14,353,16],[613,19,353,21,"undefined"],[613,28,353,30],[613,30,353,32],[614,8,354,12,"salt"],[614,12,354,16],[614,15,354,19],[614,19,354,19,"toBytes"],[614,27,354,26],[614,28,354,26,"toBytes"],[614,35,354,26],[614,37,354,27,"salt"],[614,41,354,31],[614,42,354,32],[615,8,355,12],[615,14,355,18,"slt"],[615,17,355,21],[615,20,355,24],[615,24,355,24,"u32"],[615,32,355,27],[615,33,355,27,"u32"],[615,36,355,27],[615,38,355,28,"salt"],[615,42,355,32],[615,43,355,33],[616,8,356,12],[616,12,356,16],[616,13,356,17,"v4"],[616,15,356,19],[616,19,356,23],[616,23,356,23,"swap8IfBE"],[616,31,356,32],[616,32,356,32,"swap8IfBE"],[616,41,356,32],[616,43,356,33,"slt"],[616,46,356,36],[616,47,356,37],[616,48,356,38],[616,49,356,39],[616,50,356,40],[617,8,357,12],[617,12,357,16],[617,13,357,17,"v5"],[617,15,357,19],[617,19,357,23],[617,23,357,23,"swap8IfBE"],[617,31,357,32],[617,32,357,32,"swap8IfBE"],[617,41,357,32],[617,43,357,33,"slt"],[617,46,357,36],[617,47,357,37],[617,48,357,38],[617,49,357,39],[617,50,357,40],[618,6,358,8],[619,6,359,8],[619,10,359,12,"personalization"],[619,25,359,27],[619,30,359,32,"undefined"],[619,39,359,41],[619,41,359,43],[620,8,360,12,"personalization"],[620,23,360,27],[620,26,360,30],[620,30,360,30,"toBytes"],[620,38,360,37],[620,39,360,37,"toBytes"],[620,46,360,37],[620,48,360,38,"personalization"],[620,63,360,53],[620,64,360,54],[621,8,361,12],[621,14,361,18,"pers"],[621,18,361,22],[621,21,361,25],[621,25,361,25,"u32"],[621,33,361,28],[621,34,361,28,"u32"],[621,37,361,28],[621,39,361,29,"personalization"],[621,54,361,44],[621,55,361,45],[622,8,362,12],[622,12,362,16],[622,13,362,17,"v6"],[622,15,362,19],[622,19,362,23],[622,23,362,23,"swap8IfBE"],[622,31,362,32],[622,32,362,32,"swap8IfBE"],[622,41,362,32],[622,43,362,33,"pers"],[622,47,362,37],[622,48,362,38],[622,49,362,39],[622,50,362,40],[622,51,362,41],[623,8,363,12],[623,12,363,16],[623,13,363,17,"v7"],[623,15,363,19],[623,19,363,23],[623,23,363,23,"swap8IfBE"],[623,31,363,32],[623,32,363,32,"swap8IfBE"],[623,41,363,32],[623,43,363,33,"pers"],[623,47,363,37],[623,48,363,38],[623,49,363,39],[623,50,363,40],[623,51,363,41],[624,6,364,8],[625,6,365,8],[625,10,365,12,"key"],[625,13,365,15],[625,18,365,20,"undefined"],[625,27,365,29],[625,29,365,31],[626,8,366,12],[627,8,367,12],[627,12,367,12,"abytes"],[627,20,367,18],[627,21,367,18,"abytes"],[627,27,367,18],[627,29,367,19,"key"],[627,32,367,22],[627,33,367,23],[628,8,368,12],[628,14,368,18,"tmp"],[628,17,368,21],[628,20,368,24],[628,24,368,28,"Uint8Array"],[628,34,368,38],[628,35,368,39],[628,39,368,43],[628,40,368,44,"blockLen"],[628,48,368,52],[628,49,368,53],[629,8,369,12,"tmp"],[629,11,369,15],[629,12,369,16,"set"],[629,15,369,19],[629,16,369,20,"key"],[629,19,369,23],[629,20,369,24],[630,8,370,12],[630,12,370,16],[630,13,370,17,"update"],[630,19,370,23],[630,20,370,24,"tmp"],[630,23,370,27],[630,24,370,28],[631,6,371,8],[632,4,372,4],[633,4,373,4,"get"],[633,7,373,7,"get"],[633,8,373,7],[633,10,373,10],[634,6,374,8],[634,12,374,14],[635,8,374,16,"v0"],[635,10,374,18],[636,8,374,20,"v1"],[636,10,374,22],[637,8,374,24,"v2"],[637,10,374,26],[638,8,374,28,"v3"],[638,10,374,30],[639,8,374,32,"v4"],[639,10,374,34],[640,8,374,36,"v5"],[640,10,374,38],[641,8,374,40,"v6"],[641,10,374,42],[642,8,374,44,"v7"],[643,6,374,47],[643,7,374,48],[643,10,374,51],[643,14,374,55],[644,6,375,8],[644,13,375,15],[644,14,375,16,"v0"],[644,16,375,18],[644,18,375,20,"v1"],[644,20,375,22],[644,22,375,24,"v2"],[644,24,375,26],[644,26,375,28,"v3"],[644,28,375,30],[644,30,375,32,"v4"],[644,32,375,34],[644,34,375,36,"v5"],[644,36,375,38],[644,38,375,40,"v6"],[644,40,375,42],[644,42,375,44,"v7"],[644,44,375,46],[644,45,375,47],[645,4,376,4],[646,4,377,4],[647,4,378,4,"set"],[647,7,378,7,"set"],[647,8,378,8,"v0"],[647,10,378,10],[647,12,378,12,"v1"],[647,14,378,14],[647,16,378,16,"v2"],[647,18,378,18],[647,20,378,20,"v3"],[647,22,378,22],[647,24,378,24,"v4"],[647,26,378,26],[647,28,378,28,"v5"],[647,30,378,30],[647,32,378,32,"v6"],[647,34,378,34],[647,36,378,36,"v7"],[647,38,378,38],[647,40,378,40],[648,6,379,8],[648,10,379,12],[648,11,379,13,"v0"],[648,13,379,15],[648,16,379,18,"v0"],[648,18,379,20],[648,21,379,23],[648,22,379,24],[649,6,380,8],[649,10,380,12],[649,11,380,13,"v1"],[649,13,380,15],[649,16,380,18,"v1"],[649,18,380,20],[649,21,380,23],[649,22,380,24],[650,6,381,8],[650,10,381,12],[650,11,381,13,"v2"],[650,13,381,15],[650,16,381,18,"v2"],[650,18,381,20],[650,21,381,23],[650,22,381,24],[651,6,382,8],[651,10,382,12],[651,11,382,13,"v3"],[651,13,382,15],[651,16,382,18,"v3"],[651,18,382,20],[651,21,382,23],[651,22,382,24],[652,6,383,8],[652,10,383,12],[652,11,383,13,"v4"],[652,13,383,15],[652,16,383,18,"v4"],[652,18,383,20],[652,21,383,23],[652,22,383,24],[653,6,384,8],[653,10,384,12],[653,11,384,13,"v5"],[653,13,384,15],[653,16,384,18,"v5"],[653,18,384,20],[653,21,384,23],[653,22,384,24],[654,6,385,8],[654,10,385,12],[654,11,385,13,"v6"],[654,13,385,15],[654,16,385,18,"v6"],[654,18,385,20],[654,21,385,23],[654,22,385,24],[655,6,386,8],[655,10,386,12],[655,11,386,13,"v7"],[655,13,386,15],[655,16,386,18,"v7"],[655,18,386,20],[655,21,386,23],[655,22,386,24],[656,4,387,4],[657,4,388,4,"compress"],[657,12,388,12,"compress"],[657,13,388,13,"msg"],[657,16,388,16],[657,18,388,18,"offset"],[657,24,388,24],[657,26,388,26,"isLast"],[657,32,388,32],[657,34,388,34],[658,6,389,8],[658,12,389,14],[659,8,389,16,"h"],[659,9,389,17],[660,8,389,19,"l"],[661,6,389,21],[661,7,389,22],[661,10,389,25,"u64"],[661,13,389,28],[661,14,389,29,"fromBig"],[661,21,389,36],[661,22,389,37,"BigInt"],[661,28,389,43],[661,29,389,44],[661,33,389,48],[661,34,389,49,"length"],[661,40,389,55],[661,41,389,56],[661,42,389,57],[662,6,390,8],[663,6,391,8],[663,12,391,14],[664,8,391,16,"v0"],[664,10,391,18],[665,8,391,20,"v1"],[665,10,391,22],[666,8,391,24,"v2"],[666,10,391,26],[667,8,391,28,"v3"],[667,10,391,30],[668,8,391,32,"v4"],[668,10,391,34],[669,8,391,36,"v5"],[669,10,391,38],[670,8,391,40,"v6"],[670,10,391,42],[671,8,391,44,"v7"],[671,10,391,46],[672,8,391,48,"v8"],[672,10,391,50],[673,8,391,52,"v9"],[673,10,391,54],[674,8,391,56,"v10"],[674,11,391,59],[675,8,391,61,"v11"],[675,11,391,64],[676,8,391,66,"v12"],[676,11,391,69],[677,8,391,71,"v13"],[677,11,391,74],[678,8,391,76,"v14"],[678,11,391,79],[679,8,391,81,"v15"],[680,6,391,85],[680,7,391,86],[680,10,391,89,"compress"],[680,18,391,97],[680,19,391,98,"BSIGMA"],[680,27,391,104],[680,28,391,104,"BSIGMA"],[680,34,391,104],[680,36,391,106,"offset"],[680,42,391,112],[680,44,391,114,"msg"],[680,47,391,117],[680,49,391,119],[680,51,391,121],[680,53,391,123],[680,57,391,127],[680,58,391,128,"v0"],[680,60,391,130],[680,62,391,132],[680,66,391,136],[680,67,391,137,"v1"],[680,69,391,139],[680,71,391,141],[680,75,391,145],[680,76,391,146,"v2"],[680,78,391,148],[680,80,391,150],[680,84,391,154],[680,85,391,155,"v3"],[680,87,391,157],[680,89,391,159],[680,93,391,163],[680,94,391,164,"v4"],[680,96,391,166],[680,98,391,168],[680,102,391,172],[680,103,391,173,"v5"],[680,105,391,175],[680,107,391,177],[680,111,391,181],[680,112,391,182,"v6"],[680,114,391,184],[680,116,391,186],[680,120,391,190],[680,121,391,191,"v7"],[680,123,391,193],[680,125,391,195,"B2S_IV"],[680,131,391,201],[680,132,391,202],[680,133,391,203],[680,134,391,204],[680,136,391,206,"B2S_IV"],[680,142,391,212],[680,143,391,213],[680,144,391,214],[680,145,391,215],[680,147,391,217,"B2S_IV"],[680,153,391,223],[680,154,391,224],[680,155,391,225],[680,156,391,226],[680,158,391,228,"B2S_IV"],[680,164,391,234],[680,165,391,235],[680,166,391,236],[680,167,391,237],[680,169,391,239,"l"],[680,170,391,240],[680,173,391,243,"B2S_IV"],[680,179,391,249],[680,180,391,250],[680,181,391,251],[680,182,391,252],[680,184,391,254,"h"],[680,185,391,255],[680,188,391,258,"B2S_IV"],[680,194,391,264],[680,195,391,265],[680,196,391,266],[680,197,391,267],[680,199,391,269,"isLast"],[680,205,391,275],[680,208,391,278],[680,209,391,279,"B2S_IV"],[680,215,391,285],[680,216,391,286],[680,217,391,287],[680,218,391,288],[680,221,391,291,"B2S_IV"],[680,227,391,297],[680,228,391,298],[680,229,391,299],[680,230,391,300],[680,232,391,302,"B2S_IV"],[680,238,391,308],[680,239,391,309],[680,240,391,310],[680,241,391,311],[680,242,391,312],[681,6,392,8],[681,10,392,12],[681,11,392,13,"v0"],[681,13,392,15],[681,17,392,19,"v0"],[681,19,392,21],[681,22,392,24,"v8"],[681,24,392,26],[682,6,393,8],[682,10,393,12],[682,11,393,13,"v1"],[682,13,393,15],[682,17,393,19,"v1"],[682,19,393,21],[682,22,393,24,"v9"],[682,24,393,26],[683,6,394,8],[683,10,394,12],[683,11,394,13,"v2"],[683,13,394,15],[683,17,394,19,"v2"],[683,19,394,21],[683,22,394,24,"v10"],[683,25,394,27],[684,6,395,8],[684,10,395,12],[684,11,395,13,"v3"],[684,13,395,15],[684,17,395,19,"v3"],[684,19,395,21],[684,22,395,24,"v11"],[684,25,395,27],[685,6,396,8],[685,10,396,12],[685,11,396,13,"v4"],[685,13,396,15],[685,17,396,19,"v4"],[685,19,396,21],[685,22,396,24,"v12"],[685,25,396,27],[686,6,397,8],[686,10,397,12],[686,11,397,13,"v5"],[686,13,397,15],[686,17,397,19,"v5"],[686,19,397,21],[686,22,397,24,"v13"],[686,25,397,27],[687,6,398,8],[687,10,398,12],[687,11,398,13,"v6"],[687,13,398,15],[687,17,398,19,"v6"],[687,19,398,21],[687,22,398,24,"v14"],[687,25,398,27],[688,6,399,8],[688,10,399,12],[688,11,399,13,"v7"],[688,13,399,15],[688,17,399,19,"v7"],[688,19,399,21],[688,22,399,24,"v15"],[688,25,399,27],[689,4,400,4],[690,4,401,4,"destroy"],[690,11,401,11,"destroy"],[690,12,401,11],[690,14,401,14],[691,6,402,8],[691,10,402,12],[691,11,402,13,"destroyed"],[691,20,402,22],[691,23,402,25],[691,27,402,29],[692,6,403,8],[692,10,403,8,"clean"],[692,18,403,13],[692,19,403,13,"clean"],[692,24,403,13],[692,26,403,14],[692,30,403,18],[692,31,403,19,"buffer32"],[692,39,403,27],[692,40,403,28],[693,6,404,8],[693,10,404,12],[693,11,404,13,"set"],[693,14,404,16],[693,15,404,17],[693,16,404,18],[693,18,404,20],[693,19,404,21],[693,21,404,23],[693,22,404,24],[693,24,404,26],[693,25,404,27],[693,27,404,29],[693,28,404,30],[693,30,404,32],[693,31,404,33],[693,33,404,35],[693,34,404,36],[693,36,404,38],[693,37,404,39],[693,38,404,40],[694,4,405,4],[695,2,406,0],[696,2,407,0],[697,0,408,0],[698,0,409,0],[699,0,410,0],[700,0,411,0],[701,2,412,7],[701,8,412,13,"blake2s"],[701,15,412,20],[701,18,412,23],[701,33,412,39],[701,37,412,39,"createOptHasher"],[701,45,412,54],[701,46,412,54,"createOptHasher"],[701,61,412,54],[701,63,412,56,"opts"],[701,67,412,60],[701,71,412,65],[701,75,412,69,"BLAKE2s"],[701,82,412,76],[701,83,412,77,"opts"],[701,87,412,81],[701,88,412,82],[701,89,412,83],[702,0,412,84],[702,3]],"functionMap":{"names":["","G1b","G2b","checkBlake2Opts","BLAKE2","BLAKE2#constructor","BLAKE2#update","BLAKE2#digestInto","get.forEach$argument_0","BLAKE2#digest","BLAKE2#_cloneInto","BLAKE2#clone","BLAKE2b","BLAKE2b#constructor","BLAKE2b#get","BLAKE2b#set","BLAKE2b#compress","BLAKE2b#destroy","createOptHasher$argument_0","compress","BLAKE2s","BLAKE2s#constructor","BLAKE2s#get","BLAKE2s#set","BLAKE2s#compress","BLAKE2s#destroy"],"mappings":"AAA;ACkB;CDuB;AEC;CFuB;AGC;CHW;OIE;ICC;KDY;IEC;KFuC;IGC;2BCW,mCD;KHC;IKC;KLM;IMC;KNY;IOC;KPE;CJC;OYC;ICC;KDkD;IEE;KFG;IGE;KHiB;IIC;2BRC,uBQ;KJ+C;IKC;KLI;CZC;uDkBM,2BlB;OmBE;CnBqB;OoBE;ICC;KDuC;IEC;KFG;IGE;KHS;IIC;KJY;IKC;KLI;CpBC;uDkBM,2BlB"},"hasCjsExports":false},"type":"js/module"}]}