mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 18:01:02 +00:00
1 line
50 KiB
Plaintext
1 line
50 KiB
Plaintext
{"dependencies":[{"name":"./pbkdf2.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":5,"column":0,"index":95},"end":{"line":5,"column":37,"index":132}}],"key":"U9tsoXYW9pZps4pMreIiuI5y/ys=","exportNames":["*"],"imports":1}},{"name":"./sha2.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":6,"column":0,"index":133},"end":{"line":6,"column":35,"index":168}}],"key":"lKTaC3MvELA7sywLq2YhVgUqgUU=","exportNames":["*"],"imports":1}},{"name":"./utils.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":8,"column":0,"index":188},"end":{"line":8,"column":89,"index":277}}],"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 exports.scrypt = scrypt;\n exports.scryptAsync = scryptAsync;\n var _pbkdf2Js = require(_dependencyMap[0], \"./pbkdf2.js\");\n var _sha2Js = require(_dependencyMap[1], \"./sha2.js\");\n var _utilsJs = require(_dependencyMap[2], \"./utils.js\");\n /**\n * RFC 7914 Scrypt KDF. Can be used to create a key from password and salt.\n * @module\n */\n\n // prettier-ignore\n\n // The main Scrypt loop: uses Salsa extensively.\n // Six versions of the function were tried, this is the fastest one.\n // prettier-ignore\n function XorAndSalsa(prev, pi, input, ii, out, oi) {\n // Based on https://cr.yp.to/salsa20.html\n // Xor blocks\n let y00 = prev[pi++] ^ input[ii++],\n y01 = prev[pi++] ^ input[ii++];\n let y02 = prev[pi++] ^ input[ii++],\n y03 = prev[pi++] ^ input[ii++];\n let y04 = prev[pi++] ^ input[ii++],\n y05 = prev[pi++] ^ input[ii++];\n let y06 = prev[pi++] ^ input[ii++],\n y07 = prev[pi++] ^ input[ii++];\n let y08 = prev[pi++] ^ input[ii++],\n y09 = prev[pi++] ^ input[ii++];\n let y10 = prev[pi++] ^ input[ii++],\n y11 = prev[pi++] ^ input[ii++];\n let y12 = prev[pi++] ^ input[ii++],\n y13 = prev[pi++] ^ input[ii++];\n let y14 = prev[pi++] ^ input[ii++],\n y15 = prev[pi++] ^ input[ii++];\n // Save state to temporary variables (salsa)\n let x00 = y00,\n x01 = y01,\n x02 = y02,\n x03 = y03,\n x04 = y04,\n x05 = y05,\n x06 = y06,\n x07 = y07,\n x08 = y08,\n x09 = y09,\n x10 = y10,\n x11 = y11,\n x12 = y12,\n x13 = y13,\n x14 = y14,\n x15 = y15;\n // Main loop (salsa)\n for (let i = 0; i < 8; i += 2) {\n x04 ^= (0, _utilsJs.rotl)(x00 + x12 | 0, 7);\n x08 ^= (0, _utilsJs.rotl)(x04 + x00 | 0, 9);\n x12 ^= (0, _utilsJs.rotl)(x08 + x04 | 0, 13);\n x00 ^= (0, _utilsJs.rotl)(x12 + x08 | 0, 18);\n x09 ^= (0, _utilsJs.rotl)(x05 + x01 | 0, 7);\n x13 ^= (0, _utilsJs.rotl)(x09 + x05 | 0, 9);\n x01 ^= (0, _utilsJs.rotl)(x13 + x09 | 0, 13);\n x05 ^= (0, _utilsJs.rotl)(x01 + x13 | 0, 18);\n x14 ^= (0, _utilsJs.rotl)(x10 + x06 | 0, 7);\n x02 ^= (0, _utilsJs.rotl)(x14 + x10 | 0, 9);\n x06 ^= (0, _utilsJs.rotl)(x02 + x14 | 0, 13);\n x10 ^= (0, _utilsJs.rotl)(x06 + x02 | 0, 18);\n x03 ^= (0, _utilsJs.rotl)(x15 + x11 | 0, 7);\n x07 ^= (0, _utilsJs.rotl)(x03 + x15 | 0, 9);\n x11 ^= (0, _utilsJs.rotl)(x07 + x03 | 0, 13);\n x15 ^= (0, _utilsJs.rotl)(x11 + x07 | 0, 18);\n x01 ^= (0, _utilsJs.rotl)(x00 + x03 | 0, 7);\n x02 ^= (0, _utilsJs.rotl)(x01 + x00 | 0, 9);\n x03 ^= (0, _utilsJs.rotl)(x02 + x01 | 0, 13);\n x00 ^= (0, _utilsJs.rotl)(x03 + x02 | 0, 18);\n x06 ^= (0, _utilsJs.rotl)(x05 + x04 | 0, 7);\n x07 ^= (0, _utilsJs.rotl)(x06 + x05 | 0, 9);\n x04 ^= (0, _utilsJs.rotl)(x07 + x06 | 0, 13);\n x05 ^= (0, _utilsJs.rotl)(x04 + x07 | 0, 18);\n x11 ^= (0, _utilsJs.rotl)(x10 + x09 | 0, 7);\n x08 ^= (0, _utilsJs.rotl)(x11 + x10 | 0, 9);\n x09 ^= (0, _utilsJs.rotl)(x08 + x11 | 0, 13);\n x10 ^= (0, _utilsJs.rotl)(x09 + x08 | 0, 18);\n x12 ^= (0, _utilsJs.rotl)(x15 + x14 | 0, 7);\n x13 ^= (0, _utilsJs.rotl)(x12 + x15 | 0, 9);\n x14 ^= (0, _utilsJs.rotl)(x13 + x12 | 0, 13);\n x15 ^= (0, _utilsJs.rotl)(x14 + x13 | 0, 18);\n }\n // Write output (salsa)\n out[oi++] = y00 + x00 | 0;\n out[oi++] = y01 + x01 | 0;\n out[oi++] = y02 + x02 | 0;\n out[oi++] = y03 + x03 | 0;\n out[oi++] = y04 + x04 | 0;\n out[oi++] = y05 + x05 | 0;\n out[oi++] = y06 + x06 | 0;\n out[oi++] = y07 + x07 | 0;\n out[oi++] = y08 + x08 | 0;\n out[oi++] = y09 + x09 | 0;\n out[oi++] = y10 + x10 | 0;\n out[oi++] = y11 + x11 | 0;\n out[oi++] = y12 + x12 | 0;\n out[oi++] = y13 + x13 | 0;\n out[oi++] = y14 + x14 | 0;\n out[oi++] = y15 + x15 | 0;\n }\n function BlockMix(input, ii, out, oi, r) {\n // The block B is r 128-byte chunks (which is equivalent of 2r 64-byte chunks)\n let head = oi + 0;\n let tail = oi + 16 * r;\n for (let i = 0; i < 16; i++) out[tail + i] = input[ii + (2 * r - 1) * 16 + i]; // X ← B[2r−1]\n for (let i = 0; i < r; i++, head += 16, ii += 16) {\n // We write odd & even Yi at same time. Even: 0bXXXXX0 Odd: 0bXXXXX1\n XorAndSalsa(out, tail, input, ii, out, head); // head[i] = Salsa(blockIn[2*i] ^ tail[i-1])\n if (i > 0) tail += 16; // First iteration overwrites tmp value in tail\n XorAndSalsa(out, head, input, ii += 16, out, tail); // tail[i] = Salsa(blockIn[2*i+1] ^ head[i])\n }\n }\n // Common prologue and epilogue for sync/async functions\n function scryptInit(password, salt, _opts) {\n // Maxmem - 1GB+1KB by default\n const opts = (0, _utilsJs.checkOpts)({\n dkLen: 32,\n asyncTick: 10,\n maxmem: 1024 ** 3 + 1024\n }, _opts);\n const {\n N,\n r,\n p,\n dkLen,\n asyncTick,\n maxmem,\n onProgress\n } = opts;\n (0, _utilsJs.anumber)(N);\n (0, _utilsJs.anumber)(r);\n (0, _utilsJs.anumber)(p);\n (0, _utilsJs.anumber)(dkLen);\n (0, _utilsJs.anumber)(asyncTick);\n (0, _utilsJs.anumber)(maxmem);\n if (onProgress !== undefined && typeof onProgress !== 'function') throw new Error('progressCb should be function');\n const blockSize = 128 * r;\n const blockSize32 = blockSize / 4;\n // Max N is 2^32 (Integrify is 32-bit). Real limit is 2^22: JS engines Uint8Array limit is 4GB in 2024.\n // Spec check `N >= 2^(blockSize / 8)` is not done for compat with popular libs,\n // which used incorrect r: 1, p: 8. Also, the check seems to be a spec error:\n // https://www.rfc-editor.org/errata_search.php?rfc=7914\n const pow32 = Math.pow(2, 32);\n if (N <= 1 || (N & N - 1) !== 0 || N > pow32) {\n throw new Error('Scrypt: N must be larger than 1, a power of 2, and less than 2^32');\n }\n if (p < 0 || p > (pow32 - 1) * 32 / blockSize) {\n throw new Error('Scrypt: p must be a positive integer less than or equal to ((2^32 - 1) * 32) / (128 * r)');\n }\n if (dkLen < 0 || dkLen > (pow32 - 1) * 32) {\n throw new Error('Scrypt: dkLen should be positive integer less than or equal to (2^32 - 1) * 32');\n }\n const memUsed = blockSize * (N + p);\n if (memUsed > maxmem) {\n throw new Error('Scrypt: memused is bigger than maxMem. Expected 128 * r * (N + p) > maxmem of ' + maxmem);\n }\n // [B0...Bp−1] ← PBKDF2HMAC-SHA256(Passphrase, Salt, 1, blockSize*ParallelizationFactor)\n // Since it has only one iteration there is no reason to use async variant\n const B = (0, _pbkdf2Js.pbkdf2)(_sha2Js.sha256, password, salt, {\n c: 1,\n dkLen: blockSize * p\n });\n const B32 = (0, _utilsJs.u32)(B);\n // Re-used between parallel iterations. Array(iterations) of B\n const V = (0, _utilsJs.u32)(new Uint8Array(blockSize * N));\n const tmp = (0, _utilsJs.u32)(new Uint8Array(blockSize));\n let blockMixCb = () => {};\n if (onProgress) {\n const totalBlockMix = 2 * N * p;\n // Invoke callback if progress changes from 10.01 to 10.02\n // Allows to draw smooth progress bar on up to 8K screen\n const callbackPer = Math.max(Math.floor(totalBlockMix / 10000), 1);\n let blockMixCnt = 0;\n blockMixCb = () => {\n blockMixCnt++;\n if (onProgress && (!(blockMixCnt % callbackPer) || blockMixCnt === totalBlockMix)) onProgress(blockMixCnt / totalBlockMix);\n };\n }\n return {\n N,\n r,\n p,\n dkLen,\n blockSize32,\n V,\n B32,\n B,\n tmp,\n blockMixCb,\n asyncTick\n };\n }\n function scryptOutput(password, dkLen, B, V, tmp) {\n const res = (0, _pbkdf2Js.pbkdf2)(_sha2Js.sha256, password, B, {\n c: 1,\n dkLen\n });\n (0, _utilsJs.clean)(B, V, tmp);\n return res;\n }\n /**\n * Scrypt KDF from RFC 7914.\n * @param password - pass\n * @param salt - salt\n * @param opts - parameters\n * - `N` is cpu/mem work factor (power of 2 e.g. 2**18)\n * - `r` is block size (8 is common), fine-tunes sequential memory read size and performance\n * - `p` is parallelization factor (1 is common)\n * - `dkLen` is output key length in bytes e.g. 32.\n * - `asyncTick` - (default: 10) max time in ms for which async function can block execution\n * - `maxmem` - (default: `1024 ** 3 + 1024` aka 1GB+1KB). A limit that the app could use for scrypt\n * - `onProgress` - callback function that would be executed for progress report\n * @returns Derived key\n * @example\n * scrypt('password', 'salt', { N: 2**18, r: 8, p: 1, dkLen: 32 });\n */\n function scrypt(password, salt, opts) {\n const {\n N,\n r,\n p,\n dkLen,\n blockSize32,\n V,\n B32,\n B,\n tmp,\n blockMixCb\n } = scryptInit(password, salt, opts);\n (0, _utilsJs.swap32IfBE)(B32);\n for (let pi = 0; pi < p; pi++) {\n const Pi = blockSize32 * pi;\n for (let i = 0; i < blockSize32; i++) V[i] = B32[Pi + i]; // V[0] = B[i]\n for (let i = 0, pos = 0; i < N - 1; i++) {\n BlockMix(V, pos, V, pos += blockSize32, r); // V[i] = BlockMix(V[i-1]);\n blockMixCb();\n }\n BlockMix(V, (N - 1) * blockSize32, B32, Pi, r); // Process last element\n blockMixCb();\n for (let i = 0; i < N; i++) {\n // First u32 of the last 64-byte block (u32 is LE)\n const j = B32[Pi + blockSize32 - 16] % N; // j = Integrify(X) % iterations\n for (let k = 0; k < blockSize32; k++) tmp[k] = B32[Pi + k] ^ V[j * blockSize32 + k]; // tmp = B ^ V[j]\n BlockMix(tmp, 0, B32, Pi, r); // B = BlockMix(B ^ V[j])\n blockMixCb();\n }\n }\n (0, _utilsJs.swap32IfBE)(B32);\n return scryptOutput(password, dkLen, B, V, tmp);\n }\n /**\n * Scrypt KDF from RFC 7914. Async version.\n * @example\n * await scryptAsync('password', 'salt', { N: 2**18, r: 8, p: 1, dkLen: 32 });\n */\n async function scryptAsync(password, salt, opts) {\n const {\n N,\n r,\n p,\n dkLen,\n blockSize32,\n V,\n B32,\n B,\n tmp,\n blockMixCb,\n asyncTick\n } = scryptInit(password, salt, opts);\n (0, _utilsJs.swap32IfBE)(B32);\n for (let pi = 0; pi < p; pi++) {\n const Pi = blockSize32 * pi;\n for (let i = 0; i < blockSize32; i++) V[i] = B32[Pi + i]; // V[0] = B[i]\n let pos = 0;\n await (0, _utilsJs.asyncLoop)(N - 1, asyncTick, () => {\n BlockMix(V, pos, V, pos += blockSize32, r); // V[i] = BlockMix(V[i-1]);\n blockMixCb();\n });\n BlockMix(V, (N - 1) * blockSize32, B32, Pi, r); // Process last element\n blockMixCb();\n await (0, _utilsJs.asyncLoop)(N, asyncTick, () => {\n // First u32 of the last 64-byte block (u32 is LE)\n const j = B32[Pi + blockSize32 - 16] % N; // j = Integrify(X) % iterations\n for (let k = 0; k < blockSize32; k++) tmp[k] = B32[Pi + k] ^ V[j * blockSize32 + k]; // tmp = B ^ V[j]\n BlockMix(tmp, 0, B32, Pi, r); // B = BlockMix(B ^ V[j])\n blockMixCb();\n });\n }\n (0, _utilsJs.swap32IfBE)(B32);\n return scryptOutput(password, dkLen, B, V, tmp);\n }\n});","lineCount":302,"map":[[7,2,172,0,"exports"],[7,9,172,0],[7,10,172,0,"scrypt"],[7,16,172,0],[7,19,172,0,"scrypt"],[7,25,172,0],[8,2,202,0,"exports"],[8,9,202,0],[8,10,202,0,"scryptAsync"],[8,21,202,0],[8,24,202,0,"scryptAsync"],[8,35,202,0],[9,2,5,0],[9,6,5,0,"_pbkdf2Js"],[9,15,5,0],[9,18,5,0,"require"],[9,25,5,0],[9,26,5,0,"_dependencyMap"],[9,40,5,0],[10,2,6,0],[10,6,6,0,"_sha2Js"],[10,13,6,0],[10,16,6,0,"require"],[10,23,6,0],[10,24,6,0,"_dependencyMap"],[10,38,6,0],[11,2,8,0],[11,6,8,0,"_utilsJs"],[11,14,8,0],[11,17,8,0,"require"],[11,24,8,0],[11,25,8,0,"_dependencyMap"],[11,39,8,0],[12,2,1,0],[13,0,2,0],[14,0,3,0],[15,0,4,0],[17,2,7,0],[19,2,9,0],[20,2,10,0],[21,2,11,0],[22,2,12,0],[22,11,12,9,"XorAndSalsa"],[22,22,12,20,"XorAndSalsa"],[22,23,12,21,"prev"],[22,27,12,25],[22,29,12,27,"pi"],[22,31,12,29],[22,33,12,31,"input"],[22,38,12,36],[22,40,12,38,"ii"],[22,42,12,40],[22,44,12,42,"out"],[22,47,12,45],[22,49,12,47,"oi"],[22,51,12,49],[22,53,12,51],[23,4,13,4],[24,4,14,4],[25,4,15,4],[25,8,15,8,"y00"],[25,11,15,11],[25,14,15,14,"prev"],[25,18,15,18],[25,19,15,19,"pi"],[25,21,15,21],[25,23,15,23],[25,24,15,24],[25,27,15,27,"input"],[25,32,15,32],[25,33,15,33,"ii"],[25,35,15,35],[25,37,15,37],[25,38,15,38],[26,6,15,40,"y01"],[26,9,15,43],[26,12,15,46,"prev"],[26,16,15,50],[26,17,15,51,"pi"],[26,19,15,53],[26,21,15,55],[26,22,15,56],[26,25,15,59,"input"],[26,30,15,64],[26,31,15,65,"ii"],[26,33,15,67],[26,35,15,69],[26,36,15,70],[27,4,16,4],[27,8,16,8,"y02"],[27,11,16,11],[27,14,16,14,"prev"],[27,18,16,18],[27,19,16,19,"pi"],[27,21,16,21],[27,23,16,23],[27,24,16,24],[27,27,16,27,"input"],[27,32,16,32],[27,33,16,33,"ii"],[27,35,16,35],[27,37,16,37],[27,38,16,38],[28,6,16,40,"y03"],[28,9,16,43],[28,12,16,46,"prev"],[28,16,16,50],[28,17,16,51,"pi"],[28,19,16,53],[28,21,16,55],[28,22,16,56],[28,25,16,59,"input"],[28,30,16,64],[28,31,16,65,"ii"],[28,33,16,67],[28,35,16,69],[28,36,16,70],[29,4,17,4],[29,8,17,8,"y04"],[29,11,17,11],[29,14,17,14,"prev"],[29,18,17,18],[29,19,17,19,"pi"],[29,21,17,21],[29,23,17,23],[29,24,17,24],[29,27,17,27,"input"],[29,32,17,32],[29,33,17,33,"ii"],[29,35,17,35],[29,37,17,37],[29,38,17,38],[30,6,17,40,"y05"],[30,9,17,43],[30,12,17,46,"prev"],[30,16,17,50],[30,17,17,51,"pi"],[30,19,17,53],[30,21,17,55],[30,22,17,56],[30,25,17,59,"input"],[30,30,17,64],[30,31,17,65,"ii"],[30,33,17,67],[30,35,17,69],[30,36,17,70],[31,4,18,4],[31,8,18,8,"y06"],[31,11,18,11],[31,14,18,14,"prev"],[31,18,18,18],[31,19,18,19,"pi"],[31,21,18,21],[31,23,18,23],[31,24,18,24],[31,27,18,27,"input"],[31,32,18,32],[31,33,18,33,"ii"],[31,35,18,35],[31,37,18,37],[31,38,18,38],[32,6,18,40,"y07"],[32,9,18,43],[32,12,18,46,"prev"],[32,16,18,50],[32,17,18,51,"pi"],[32,19,18,53],[32,21,18,55],[32,22,18,56],[32,25,18,59,"input"],[32,30,18,64],[32,31,18,65,"ii"],[32,33,18,67],[32,35,18,69],[32,36,18,70],[33,4,19,4],[33,8,19,8,"y08"],[33,11,19,11],[33,14,19,14,"prev"],[33,18,19,18],[33,19,19,19,"pi"],[33,21,19,21],[33,23,19,23],[33,24,19,24],[33,27,19,27,"input"],[33,32,19,32],[33,33,19,33,"ii"],[33,35,19,35],[33,37,19,37],[33,38,19,38],[34,6,19,40,"y09"],[34,9,19,43],[34,12,19,46,"prev"],[34,16,19,50],[34,17,19,51,"pi"],[34,19,19,53],[34,21,19,55],[34,22,19,56],[34,25,19,59,"input"],[34,30,19,64],[34,31,19,65,"ii"],[34,33,19,67],[34,35,19,69],[34,36,19,70],[35,4,20,4],[35,8,20,8,"y10"],[35,11,20,11],[35,14,20,14,"prev"],[35,18,20,18],[35,19,20,19,"pi"],[35,21,20,21],[35,23,20,23],[35,24,20,24],[35,27,20,27,"input"],[35,32,20,32],[35,33,20,33,"ii"],[35,35,20,35],[35,37,20,37],[35,38,20,38],[36,6,20,40,"y11"],[36,9,20,43],[36,12,20,46,"prev"],[36,16,20,50],[36,17,20,51,"pi"],[36,19,20,53],[36,21,20,55],[36,22,20,56],[36,25,20,59,"input"],[36,30,20,64],[36,31,20,65,"ii"],[36,33,20,67],[36,35,20,69],[36,36,20,70],[37,4,21,4],[37,8,21,8,"y12"],[37,11,21,11],[37,14,21,14,"prev"],[37,18,21,18],[37,19,21,19,"pi"],[37,21,21,21],[37,23,21,23],[37,24,21,24],[37,27,21,27,"input"],[37,32,21,32],[37,33,21,33,"ii"],[37,35,21,35],[37,37,21,37],[37,38,21,38],[38,6,21,40,"y13"],[38,9,21,43],[38,12,21,46,"prev"],[38,16,21,50],[38,17,21,51,"pi"],[38,19,21,53],[38,21,21,55],[38,22,21,56],[38,25,21,59,"input"],[38,30,21,64],[38,31,21,65,"ii"],[38,33,21,67],[38,35,21,69],[38,36,21,70],[39,4,22,4],[39,8,22,8,"y14"],[39,11,22,11],[39,14,22,14,"prev"],[39,18,22,18],[39,19,22,19,"pi"],[39,21,22,21],[39,23,22,23],[39,24,22,24],[39,27,22,27,"input"],[39,32,22,32],[39,33,22,33,"ii"],[39,35,22,35],[39,37,22,37],[39,38,22,38],[40,6,22,40,"y15"],[40,9,22,43],[40,12,22,46,"prev"],[40,16,22,50],[40,17,22,51,"pi"],[40,19,22,53],[40,21,22,55],[40,22,22,56],[40,25,22,59,"input"],[40,30,22,64],[40,31,22,65,"ii"],[40,33,22,67],[40,35,22,69],[40,36,22,70],[41,4,23,4],[42,4,24,4],[42,8,24,8,"x00"],[42,11,24,11],[42,14,24,14,"y00"],[42,17,24,17],[43,6,24,19,"x01"],[43,9,24,22],[43,12,24,25,"y01"],[43,15,24,28],[44,6,24,30,"x02"],[44,9,24,33],[44,12,24,36,"y02"],[44,15,24,39],[45,6,24,41,"x03"],[45,9,24,44],[45,12,24,47,"y03"],[45,15,24,50],[46,6,24,52,"x04"],[46,9,24,55],[46,12,24,58,"y04"],[46,15,24,61],[47,6,24,63,"x05"],[47,9,24,66],[47,12,24,69,"y05"],[47,15,24,72],[48,6,24,74,"x06"],[48,9,24,77],[48,12,24,80,"y06"],[48,15,24,83],[49,6,24,85,"x07"],[49,9,24,88],[49,12,24,91,"y07"],[49,15,24,94],[50,6,24,96,"x08"],[50,9,24,99],[50,12,24,102,"y08"],[50,15,24,105],[51,6,24,107,"x09"],[51,9,24,110],[51,12,24,113,"y09"],[51,15,24,116],[52,6,24,118,"x10"],[52,9,24,121],[52,12,24,124,"y10"],[52,15,24,127],[53,6,24,129,"x11"],[53,9,24,132],[53,12,24,135,"y11"],[53,15,24,138],[54,6,24,140,"x12"],[54,9,24,143],[54,12,24,146,"y12"],[54,15,24,149],[55,6,24,151,"x13"],[55,9,24,154],[55,12,24,157,"y13"],[55,15,24,160],[56,6,24,162,"x14"],[56,9,24,165],[56,12,24,168,"y14"],[56,15,24,171],[57,6,24,173,"x15"],[57,9,24,176],[57,12,24,179,"y15"],[57,15,24,182],[58,4,25,4],[59,4,26,4],[59,9,26,9],[59,13,26,13,"i"],[59,14,26,14],[59,17,26,17],[59,18,26,18],[59,20,26,20,"i"],[59,21,26,21],[59,24,26,24],[59,25,26,25],[59,27,26,27,"i"],[59,28,26,28],[59,32,26,32],[59,33,26,33],[59,35,26,35],[60,6,27,8,"x04"],[60,9,27,11],[60,13,27,15],[60,17,27,15,"rotl"],[60,25,27,19],[60,26,27,19,"rotl"],[60,30,27,19],[60,32,27,20,"x00"],[60,35,27,23],[60,38,27,26,"x12"],[60,41,27,29],[60,44,27,32],[60,45,27,33],[60,47,27,35],[60,48,27,36],[60,49,27,37],[61,6,28,8,"x08"],[61,9,28,11],[61,13,28,15],[61,17,28,15,"rotl"],[61,25,28,19],[61,26,28,19,"rotl"],[61,30,28,19],[61,32,28,20,"x04"],[61,35,28,23],[61,38,28,26,"x00"],[61,41,28,29],[61,44,28,32],[61,45,28,33],[61,47,28,35],[61,48,28,36],[61,49,28,37],[62,6,29,8,"x12"],[62,9,29,11],[62,13,29,15],[62,17,29,15,"rotl"],[62,25,29,19],[62,26,29,19,"rotl"],[62,30,29,19],[62,32,29,20,"x08"],[62,35,29,23],[62,38,29,26,"x04"],[62,41,29,29],[62,44,29,32],[62,45,29,33],[62,47,29,35],[62,49,29,37],[62,50,29,38],[63,6,30,8,"x00"],[63,9,30,11],[63,13,30,15],[63,17,30,15,"rotl"],[63,25,30,19],[63,26,30,19,"rotl"],[63,30,30,19],[63,32,30,20,"x12"],[63,35,30,23],[63,38,30,26,"x08"],[63,41,30,29],[63,44,30,32],[63,45,30,33],[63,47,30,35],[63,49,30,37],[63,50,30,38],[64,6,31,8,"x09"],[64,9,31,11],[64,13,31,15],[64,17,31,15,"rotl"],[64,25,31,19],[64,26,31,19,"rotl"],[64,30,31,19],[64,32,31,20,"x05"],[64,35,31,23],[64,38,31,26,"x01"],[64,41,31,29],[64,44,31,32],[64,45,31,33],[64,47,31,35],[64,48,31,36],[64,49,31,37],[65,6,32,8,"x13"],[65,9,32,11],[65,13,32,15],[65,17,32,15,"rotl"],[65,25,32,19],[65,26,32,19,"rotl"],[65,30,32,19],[65,32,32,20,"x09"],[65,35,32,23],[65,38,32,26,"x05"],[65,41,32,29],[65,44,32,32],[65,45,32,33],[65,47,32,35],[65,48,32,36],[65,49,32,37],[66,6,33,8,"x01"],[66,9,33,11],[66,13,33,15],[66,17,33,15,"rotl"],[66,25,33,19],[66,26,33,19,"rotl"],[66,30,33,19],[66,32,33,20,"x13"],[66,35,33,23],[66,38,33,26,"x09"],[66,41,33,29],[66,44,33,32],[66,45,33,33],[66,47,33,35],[66,49,33,37],[66,50,33,38],[67,6,34,8,"x05"],[67,9,34,11],[67,13,34,15],[67,17,34,15,"rotl"],[67,25,34,19],[67,26,34,19,"rotl"],[67,30,34,19],[67,32,34,20,"x01"],[67,35,34,23],[67,38,34,26,"x13"],[67,41,34,29],[67,44,34,32],[67,45,34,33],[67,47,34,35],[67,49,34,37],[67,50,34,38],[68,6,35,8,"x14"],[68,9,35,11],[68,13,35,15],[68,17,35,15,"rotl"],[68,25,35,19],[68,26,35,19,"rotl"],[68,30,35,19],[68,32,35,20,"x10"],[68,35,35,23],[68,38,35,26,"x06"],[68,41,35,29],[68,44,35,32],[68,45,35,33],[68,47,35,35],[68,48,35,36],[68,49,35,37],[69,6,36,8,"x02"],[69,9,36,11],[69,13,36,15],[69,17,36,15,"rotl"],[69,25,36,19],[69,26,36,19,"rotl"],[69,30,36,19],[69,32,36,20,"x14"],[69,35,36,23],[69,38,36,26,"x10"],[69,41,36,29],[69,44,36,32],[69,45,36,33],[69,47,36,35],[69,48,36,36],[69,49,36,37],[70,6,37,8,"x06"],[70,9,37,11],[70,13,37,15],[70,17,37,15,"rotl"],[70,25,37,19],[70,26,37,19,"rotl"],[70,30,37,19],[70,32,37,20,"x02"],[70,35,37,23],[70,38,37,26,"x14"],[70,41,37,29],[70,44,37,32],[70,45,37,33],[70,47,37,35],[70,49,37,37],[70,50,37,38],[71,6,38,8,"x10"],[71,9,38,11],[71,13,38,15],[71,17,38,15,"rotl"],[71,25,38,19],[71,26,38,19,"rotl"],[71,30,38,19],[71,32,38,20,"x06"],[71,35,38,23],[71,38,38,26,"x02"],[71,41,38,29],[71,44,38,32],[71,45,38,33],[71,47,38,35],[71,49,38,37],[71,50,38,38],[72,6,39,8,"x03"],[72,9,39,11],[72,13,39,15],[72,17,39,15,"rotl"],[72,25,39,19],[72,26,39,19,"rotl"],[72,30,39,19],[72,32,39,20,"x15"],[72,35,39,23],[72,38,39,26,"x11"],[72,41,39,29],[72,44,39,32],[72,45,39,33],[72,47,39,35],[72,48,39,36],[72,49,39,37],[73,6,40,8,"x07"],[73,9,40,11],[73,13,40,15],[73,17,40,15,"rotl"],[73,25,40,19],[73,26,40,19,"rotl"],[73,30,40,19],[73,32,40,20,"x03"],[73,35,40,23],[73,38,40,26,"x15"],[73,41,40,29],[73,44,40,32],[73,45,40,33],[73,47,40,35],[73,48,40,36],[73,49,40,37],[74,6,41,8,"x11"],[74,9,41,11],[74,13,41,15],[74,17,41,15,"rotl"],[74,25,41,19],[74,26,41,19,"rotl"],[74,30,41,19],[74,32,41,20,"x07"],[74,35,41,23],[74,38,41,26,"x03"],[74,41,41,29],[74,44,41,32],[74,45,41,33],[74,47,41,35],[74,49,41,37],[74,50,41,38],[75,6,42,8,"x15"],[75,9,42,11],[75,13,42,15],[75,17,42,15,"rotl"],[75,25,42,19],[75,26,42,19,"rotl"],[75,30,42,19],[75,32,42,20,"x11"],[75,35,42,23],[75,38,42,26,"x07"],[75,41,42,29],[75,44,42,32],[75,45,42,33],[75,47,42,35],[75,49,42,37],[75,50,42,38],[76,6,43,8,"x01"],[76,9,43,11],[76,13,43,15],[76,17,43,15,"rotl"],[76,25,43,19],[76,26,43,19,"rotl"],[76,30,43,19],[76,32,43,20,"x00"],[76,35,43,23],[76,38,43,26,"x03"],[76,41,43,29],[76,44,43,32],[76,45,43,33],[76,47,43,35],[76,48,43,36],[76,49,43,37],[77,6,44,8,"x02"],[77,9,44,11],[77,13,44,15],[77,17,44,15,"rotl"],[77,25,44,19],[77,26,44,19,"rotl"],[77,30,44,19],[77,32,44,20,"x01"],[77,35,44,23],[77,38,44,26,"x00"],[77,41,44,29],[77,44,44,32],[77,45,44,33],[77,47,44,35],[77,48,44,36],[77,49,44,37],[78,6,45,8,"x03"],[78,9,45,11],[78,13,45,15],[78,17,45,15,"rotl"],[78,25,45,19],[78,26,45,19,"rotl"],[78,30,45,19],[78,32,45,20,"x02"],[78,35,45,23],[78,38,45,26,"x01"],[78,41,45,29],[78,44,45,32],[78,45,45,33],[78,47,45,35],[78,49,45,37],[78,50,45,38],[79,6,46,8,"x00"],[79,9,46,11],[79,13,46,15],[79,17,46,15,"rotl"],[79,25,46,19],[79,26,46,19,"rotl"],[79,30,46,19],[79,32,46,20,"x03"],[79,35,46,23],[79,38,46,26,"x02"],[79,41,46,29],[79,44,46,32],[79,45,46,33],[79,47,46,35],[79,49,46,37],[79,50,46,38],[80,6,47,8,"x06"],[80,9,47,11],[80,13,47,15],[80,17,47,15,"rotl"],[80,25,47,19],[80,26,47,19,"rotl"],[80,30,47,19],[80,32,47,20,"x05"],[80,35,47,23],[80,38,47,26,"x04"],[80,41,47,29],[80,44,47,32],[80,45,47,33],[80,47,47,35],[80,48,47,36],[80,49,47,37],[81,6,48,8,"x07"],[81,9,48,11],[81,13,48,15],[81,17,48,15,"rotl"],[81,25,48,19],[81,26,48,19,"rotl"],[81,30,48,19],[81,32,48,20,"x06"],[81,35,48,23],[81,38,48,26,"x05"],[81,41,48,29],[81,44,48,32],[81,45,48,33],[81,47,48,35],[81,48,48,36],[81,49,48,37],[82,6,49,8,"x04"],[82,9,49,11],[82,13,49,15],[82,17,49,15,"rotl"],[82,25,49,19],[82,26,49,19,"rotl"],[82,30,49,19],[82,32,49,20,"x07"],[82,35,49,23],[82,38,49,26,"x06"],[82,41,49,29],[82,44,49,32],[82,45,49,33],[82,47,49,35],[82,49,49,37],[82,50,49,38],[83,6,50,8,"x05"],[83,9,50,11],[83,13,50,15],[83,17,50,15,"rotl"],[83,25,50,19],[83,26,50,19,"rotl"],[83,30,50,19],[83,32,50,20,"x04"],[83,35,50,23],[83,38,50,26,"x07"],[83,41,50,29],[83,44,50,32],[83,45,50,33],[83,47,50,35],[83,49,50,37],[83,50,50,38],[84,6,51,8,"x11"],[84,9,51,11],[84,13,51,15],[84,17,51,15,"rotl"],[84,25,51,19],[84,26,51,19,"rotl"],[84,30,51,19],[84,32,51,20,"x10"],[84,35,51,23],[84,38,51,26,"x09"],[84,41,51,29],[84,44,51,32],[84,45,51,33],[84,47,51,35],[84,48,51,36],[84,49,51,37],[85,6,52,8,"x08"],[85,9,52,11],[85,13,52,15],[85,17,52,15,"rotl"],[85,25,52,19],[85,26,52,19,"rotl"],[85,30,52,19],[85,32,52,20,"x11"],[85,35,52,23],[85,38,52,26,"x10"],[85,41,52,29],[85,44,52,32],[85,45,52,33],[85,47,52,35],[85,48,52,36],[85,49,52,37],[86,6,53,8,"x09"],[86,9,53,11],[86,13,53,15],[86,17,53,15,"rotl"],[86,25,53,19],[86,26,53,19,"rotl"],[86,30,53,19],[86,32,53,20,"x08"],[86,35,53,23],[86,38,53,26,"x11"],[86,41,53,29],[86,44,53,32],[86,45,53,33],[86,47,53,35],[86,49,53,37],[86,50,53,38],[87,6,54,8,"x10"],[87,9,54,11],[87,13,54,15],[87,17,54,15,"rotl"],[87,25,54,19],[87,26,54,19,"rotl"],[87,30,54,19],[87,32,54,20,"x09"],[87,35,54,23],[87,38,54,26,"x08"],[87,41,54,29],[87,44,54,32],[87,45,54,33],[87,47,54,35],[87,49,54,37],[87,50,54,38],[88,6,55,8,"x12"],[88,9,55,11],[88,13,55,15],[88,17,55,15,"rotl"],[88,25,55,19],[88,26,55,19,"rotl"],[88,30,55,19],[88,32,55,20,"x15"],[88,35,55,23],[88,38,55,26,"x14"],[88,41,55,29],[88,44,55,32],[88,45,55,33],[88,47,55,35],[88,48,55,36],[88,49,55,37],[89,6,56,8,"x13"],[89,9,56,11],[89,13,56,15],[89,17,56,15,"rotl"],[89,25,56,19],[89,26,56,19,"rotl"],[89,30,56,19],[89,32,56,20,"x12"],[89,35,56,23],[89,38,56,26,"x15"],[89,41,56,29],[89,44,56,32],[89,45,56,33],[89,47,56,35],[89,48,56,36],[89,49,56,37],[90,6,57,8,"x14"],[90,9,57,11],[90,13,57,15],[90,17,57,15,"rotl"],[90,25,57,19],[90,26,57,19,"rotl"],[90,30,57,19],[90,32,57,20,"x13"],[90,35,57,23],[90,38,57,26,"x12"],[90,41,57,29],[90,44,57,32],[90,45,57,33],[90,47,57,35],[90,49,57,37],[90,50,57,38],[91,6,58,8,"x15"],[91,9,58,11],[91,13,58,15],[91,17,58,15,"rotl"],[91,25,58,19],[91,26,58,19,"rotl"],[91,30,58,19],[91,32,58,20,"x14"],[91,35,58,23],[91,38,58,26,"x13"],[91,41,58,29],[91,44,58,32],[91,45,58,33],[91,47,58,35],[91,49,58,37],[91,50,58,38],[92,4,59,4],[93,4,60,4],[94,4,61,4,"out"],[94,7,61,7],[94,8,61,8,"oi"],[94,10,61,10],[94,12,61,12],[94,13,61,13],[94,16,61,17,"y00"],[94,19,61,20],[94,22,61,23,"x00"],[94,25,61,26],[94,28,61,30],[94,29,61,31],[95,4,62,4,"out"],[95,7,62,7],[95,8,62,8,"oi"],[95,10,62,10],[95,12,62,12],[95,13,62,13],[95,16,62,17,"y01"],[95,19,62,20],[95,22,62,23,"x01"],[95,25,62,26],[95,28,62,30],[95,29,62,31],[96,4,63,4,"out"],[96,7,63,7],[96,8,63,8,"oi"],[96,10,63,10],[96,12,63,12],[96,13,63,13],[96,16,63,17,"y02"],[96,19,63,20],[96,22,63,23,"x02"],[96,25,63,26],[96,28,63,30],[96,29,63,31],[97,4,64,4,"out"],[97,7,64,7],[97,8,64,8,"oi"],[97,10,64,10],[97,12,64,12],[97,13,64,13],[97,16,64,17,"y03"],[97,19,64,20],[97,22,64,23,"x03"],[97,25,64,26],[97,28,64,30],[97,29,64,31],[98,4,65,4,"out"],[98,7,65,7],[98,8,65,8,"oi"],[98,10,65,10],[98,12,65,12],[98,13,65,13],[98,16,65,17,"y04"],[98,19,65,20],[98,22,65,23,"x04"],[98,25,65,26],[98,28,65,30],[98,29,65,31],[99,4,66,4,"out"],[99,7,66,7],[99,8,66,8,"oi"],[99,10,66,10],[99,12,66,12],[99,13,66,13],[99,16,66,17,"y05"],[99,19,66,20],[99,22,66,23,"x05"],[99,25,66,26],[99,28,66,30],[99,29,66,31],[100,4,67,4,"out"],[100,7,67,7],[100,8,67,8,"oi"],[100,10,67,10],[100,12,67,12],[100,13,67,13],[100,16,67,17,"y06"],[100,19,67,20],[100,22,67,23,"x06"],[100,25,67,26],[100,28,67,30],[100,29,67,31],[101,4,68,4,"out"],[101,7,68,7],[101,8,68,8,"oi"],[101,10,68,10],[101,12,68,12],[101,13,68,13],[101,16,68,17,"y07"],[101,19,68,20],[101,22,68,23,"x07"],[101,25,68,26],[101,28,68,30],[101,29,68,31],[102,4,69,4,"out"],[102,7,69,7],[102,8,69,8,"oi"],[102,10,69,10],[102,12,69,12],[102,13,69,13],[102,16,69,17,"y08"],[102,19,69,20],[102,22,69,23,"x08"],[102,25,69,26],[102,28,69,30],[102,29,69,31],[103,4,70,4,"out"],[103,7,70,7],[103,8,70,8,"oi"],[103,10,70,10],[103,12,70,12],[103,13,70,13],[103,16,70,17,"y09"],[103,19,70,20],[103,22,70,23,"x09"],[103,25,70,26],[103,28,70,30],[103,29,70,31],[104,4,71,4,"out"],[104,7,71,7],[104,8,71,8,"oi"],[104,10,71,10],[104,12,71,12],[104,13,71,13],[104,16,71,17,"y10"],[104,19,71,20],[104,22,71,23,"x10"],[104,25,71,26],[104,28,71,30],[104,29,71,31],[105,4,72,4,"out"],[105,7,72,7],[105,8,72,8,"oi"],[105,10,72,10],[105,12,72,12],[105,13,72,13],[105,16,72,17,"y11"],[105,19,72,20],[105,22,72,23,"x11"],[105,25,72,26],[105,28,72,30],[105,29,72,31],[106,4,73,4,"out"],[106,7,73,7],[106,8,73,8,"oi"],[106,10,73,10],[106,12,73,12],[106,13,73,13],[106,16,73,17,"y12"],[106,19,73,20],[106,22,73,23,"x12"],[106,25,73,26],[106,28,73,30],[106,29,73,31],[107,4,74,4,"out"],[107,7,74,7],[107,8,74,8,"oi"],[107,10,74,10],[107,12,74,12],[107,13,74,13],[107,16,74,17,"y13"],[107,19,74,20],[107,22,74,23,"x13"],[107,25,74,26],[107,28,74,30],[107,29,74,31],[108,4,75,4,"out"],[108,7,75,7],[108,8,75,8,"oi"],[108,10,75,10],[108,12,75,12],[108,13,75,13],[108,16,75,17,"y14"],[108,19,75,20],[108,22,75,23,"x14"],[108,25,75,26],[108,28,75,30],[108,29,75,31],[109,4,76,4,"out"],[109,7,76,7],[109,8,76,8,"oi"],[109,10,76,10],[109,12,76,12],[109,13,76,13],[109,16,76,17,"y15"],[109,19,76,20],[109,22,76,23,"x15"],[109,25,76,26],[109,28,76,30],[109,29,76,31],[110,2,77,0],[111,2,78,0],[111,11,78,9,"BlockMix"],[111,19,78,17,"BlockMix"],[111,20,78,18,"input"],[111,25,78,23],[111,27,78,25,"ii"],[111,29,78,27],[111,31,78,29,"out"],[111,34,78,32],[111,36,78,34,"oi"],[111,38,78,36],[111,40,78,38,"r"],[111,41,78,39],[111,43,78,41],[112,4,79,4],[113,4,80,4],[113,8,80,8,"head"],[113,12,80,12],[113,15,80,15,"oi"],[113,17,80,17],[113,20,80,20],[113,21,80,21],[114,4,81,4],[114,8,81,8,"tail"],[114,12,81,12],[114,15,81,15,"oi"],[114,17,81,17],[114,20,81,20],[114,22,81,22],[114,25,81,25,"r"],[114,26,81,26],[115,4,82,4],[115,9,82,9],[115,13,82,13,"i"],[115,14,82,14],[115,17,82,17],[115,18,82,18],[115,20,82,20,"i"],[115,21,82,21],[115,24,82,24],[115,26,82,26],[115,28,82,28,"i"],[115,29,82,29],[115,31,82,31],[115,33,83,8,"out"],[115,36,83,11],[115,37,83,12,"tail"],[115,41,83,16],[115,44,83,19,"i"],[115,45,83,20],[115,46,83,21],[115,49,83,24,"input"],[115,54,83,29],[115,55,83,30,"ii"],[115,57,83,32],[115,60,83,35],[115,61,83,36],[115,62,83,37],[115,65,83,40,"r"],[115,66,83,41],[115,69,83,44],[115,70,83,45],[115,74,83,49],[115,76,83,51],[115,79,83,54,"i"],[115,80,83,55],[115,81,83,56],[115,82,83,57],[115,83,83,58],[116,4,84,4],[116,9,84,9],[116,13,84,13,"i"],[116,14,84,14],[116,17,84,17],[116,18,84,18],[116,20,84,20,"i"],[116,21,84,21],[116,24,84,24,"r"],[116,25,84,25],[116,27,84,27,"i"],[116,28,84,28],[116,30,84,30],[116,32,84,32,"head"],[116,36,84,36],[116,40,84,40],[116,42,84,42],[116,44,84,44,"ii"],[116,46,84,46],[116,50,84,50],[116,52,84,52],[116,54,84,54],[117,6,85,8],[118,6,86,8,"XorAndSalsa"],[118,17,86,19],[118,18,86,20,"out"],[118,21,86,23],[118,23,86,25,"tail"],[118,27,86,29],[118,29,86,31,"input"],[118,34,86,36],[118,36,86,38,"ii"],[118,38,86,40],[118,40,86,42,"out"],[118,43,86,45],[118,45,86,47,"head"],[118,49,86,51],[118,50,86,52],[118,51,86,53],[118,52,86,54],[119,6,87,8],[119,10,87,12,"i"],[119,11,87,13],[119,14,87,16],[119,15,87,17],[119,17,88,12,"tail"],[119,21,88,16],[119,25,88,20],[119,27,88,22],[119,28,88,23],[119,29,88,24],[120,6,89,8,"XorAndSalsa"],[120,17,89,19],[120,18,89,20,"out"],[120,21,89,23],[120,23,89,25,"head"],[120,27,89,29],[120,29,89,31,"input"],[120,34,89,36],[120,36,89,39,"ii"],[120,38,89,41],[120,42,89,45],[120,44,89,47],[120,46,89,50,"out"],[120,49,89,53],[120,51,89,55,"tail"],[120,55,89,59],[120,56,89,60],[120,57,89,61],[120,58,89,62],[121,4,90,4],[122,2,91,0],[123,2,92,0],[124,2,93,0],[124,11,93,9,"scryptInit"],[124,21,93,19,"scryptInit"],[124,22,93,20,"password"],[124,30,93,28],[124,32,93,30,"salt"],[124,36,93,34],[124,38,93,36,"_opts"],[124,43,93,41],[124,45,93,43],[125,4,94,4],[126,4,95,4],[126,10,95,10,"opts"],[126,14,95,14],[126,17,95,17],[126,21,95,17,"checkOpts"],[126,29,95,26],[126,30,95,26,"checkOpts"],[126,39,95,26],[126,41,95,27],[127,6,96,8,"dkLen"],[127,11,96,13],[127,13,96,15],[127,15,96,17],[128,6,97,8,"asyncTick"],[128,15,97,17],[128,17,97,19],[128,19,97,21],[129,6,98,8,"maxmem"],[129,12,98,14],[129,14,98,16],[129,18,98,20],[129,22,98,24],[129,23,98,25],[129,26,98,28],[130,4,99,4],[130,5,99,5],[130,7,99,7,"_opts"],[130,12,99,12],[130,13,99,13],[131,4,100,4],[131,10,100,10],[132,6,100,12,"N"],[132,7,100,13],[133,6,100,15,"r"],[133,7,100,16],[134,6,100,18,"p"],[134,7,100,19],[135,6,100,21,"dkLen"],[135,11,100,26],[136,6,100,28,"asyncTick"],[136,15,100,37],[137,6,100,39,"maxmem"],[137,12,100,45],[138,6,100,47,"onProgress"],[139,4,100,58],[139,5,100,59],[139,8,100,62,"opts"],[139,12,100,66],[140,4,101,4],[140,8,101,4,"anumber"],[140,16,101,11],[140,17,101,11,"anumber"],[140,24,101,11],[140,26,101,12,"N"],[140,27,101,13],[140,28,101,14],[141,4,102,4],[141,8,102,4,"anumber"],[141,16,102,11],[141,17,102,11,"anumber"],[141,24,102,11],[141,26,102,12,"r"],[141,27,102,13],[141,28,102,14],[142,4,103,4],[142,8,103,4,"anumber"],[142,16,103,11],[142,17,103,11,"anumber"],[142,24,103,11],[142,26,103,12,"p"],[142,27,103,13],[142,28,103,14],[143,4,104,4],[143,8,104,4,"anumber"],[143,16,104,11],[143,17,104,11,"anumber"],[143,24,104,11],[143,26,104,12,"dkLen"],[143,31,104,17],[143,32,104,18],[144,4,105,4],[144,8,105,4,"anumber"],[144,16,105,11],[144,17,105,11,"anumber"],[144,24,105,11],[144,26,105,12,"asyncTick"],[144,35,105,21],[144,36,105,22],[145,4,106,4],[145,8,106,4,"anumber"],[145,16,106,11],[145,17,106,11,"anumber"],[145,24,106,11],[145,26,106,12,"maxmem"],[145,32,106,18],[145,33,106,19],[146,4,107,4],[146,8,107,8,"onProgress"],[146,18,107,18],[146,23,107,23,"undefined"],[146,32,107,32],[146,36,107,36],[146,43,107,43,"onProgress"],[146,53,107,53],[146,58,107,58],[146,68,107,68],[146,70,108,8],[146,76,108,14],[146,80,108,18,"Error"],[146,85,108,23],[146,86,108,24],[146,117,108,55],[146,118,108,56],[147,4,109,4],[147,10,109,10,"blockSize"],[147,19,109,19],[147,22,109,22],[147,25,109,25],[147,28,109,28,"r"],[147,29,109,29],[148,4,110,4],[148,10,110,10,"blockSize32"],[148,21,110,21],[148,24,110,24,"blockSize"],[148,33,110,33],[148,36,110,36],[148,37,110,37],[149,4,111,4],[150,4,112,4],[151,4,113,4],[152,4,114,4],[153,4,115,4],[153,10,115,10,"pow32"],[153,15,115,15],[153,18,115,18,"Math"],[153,22,115,22],[153,23,115,23,"pow"],[153,26,115,26],[153,27,115,27],[153,28,115,28],[153,30,115,30],[153,32,115,32],[153,33,115,33],[154,4,116,4],[154,8,116,8,"N"],[154,9,116,9],[154,13,116,13],[154,14,116,14],[154,18,116,18],[154,19,116,19,"N"],[154,20,116,20],[154,23,116,24,"N"],[154,24,116,25],[154,27,116,28],[154,28,116,30],[154,34,116,36],[154,35,116,37],[154,39,116,41,"N"],[154,40,116,42],[154,43,116,45,"pow32"],[154,48,116,50],[154,50,116,52],[155,6,117,8],[155,12,117,14],[155,16,117,18,"Error"],[155,21,117,23],[155,22,117,24],[155,89,117,91],[155,90,117,92],[156,4,118,4],[157,4,119,4],[157,8,119,8,"p"],[157,9,119,9],[157,12,119,12],[157,13,119,13],[157,17,119,17,"p"],[157,18,119,18],[157,21,119,22],[157,22,119,23,"pow32"],[157,27,119,28],[157,30,119,31],[157,31,119,32],[157,35,119,36],[157,37,119,38],[157,40,119,42,"blockSize"],[157,49,119,51],[157,51,119,53],[158,6,120,8],[158,12,120,14],[158,16,120,18,"Error"],[158,21,120,23],[158,22,120,24],[158,112,120,114],[158,113,120,115],[159,4,121,4],[160,4,122,4],[160,8,122,8,"dkLen"],[160,13,122,13],[160,16,122,16],[160,17,122,17],[160,21,122,21,"dkLen"],[160,26,122,26],[160,29,122,29],[160,30,122,30,"pow32"],[160,35,122,35],[160,38,122,38],[160,39,122,39],[160,43,122,43],[160,45,122,45],[160,47,122,47],[161,6,123,8],[161,12,123,14],[161,16,123,18,"Error"],[161,21,123,23],[161,22,123,24],[161,102,123,104],[161,103,123,105],[162,4,124,4],[163,4,125,4],[163,10,125,10,"memUsed"],[163,17,125,17],[163,20,125,20,"blockSize"],[163,29,125,29],[163,33,125,33,"N"],[163,34,125,34],[163,37,125,37,"p"],[163,38,125,38],[163,39,125,39],[164,4,126,4],[164,8,126,8,"memUsed"],[164,15,126,15],[164,18,126,18,"maxmem"],[164,24,126,24],[164,26,126,26],[165,6,127,8],[165,12,127,14],[165,16,127,18,"Error"],[165,21,127,23],[165,22,127,24],[165,102,127,104],[165,105,127,107,"maxmem"],[165,111,127,113],[165,112,127,114],[166,4,128,4],[167,4,129,4],[168,4,130,4],[169,4,131,4],[169,10,131,10,"B"],[169,11,131,11],[169,14,131,14],[169,18,131,14,"pbkdf2"],[169,27,131,20],[169,28,131,20,"pbkdf2"],[169,34,131,20],[169,36,131,21,"sha256"],[169,43,131,27],[169,44,131,27,"sha256"],[169,50,131,27],[169,52,131,29,"password"],[169,60,131,37],[169,62,131,39,"salt"],[169,66,131,43],[169,68,131,45],[170,6,131,47,"c"],[170,7,131,48],[170,9,131,50],[170,10,131,51],[171,6,131,53,"dkLen"],[171,11,131,58],[171,13,131,60,"blockSize"],[171,22,131,69],[171,25,131,72,"p"],[172,4,131,74],[172,5,131,75],[172,6,131,76],[173,4,132,4],[173,10,132,10,"B32"],[173,13,132,13],[173,16,132,16],[173,20,132,16,"u32"],[173,28,132,19],[173,29,132,19,"u32"],[173,32,132,19],[173,34,132,20,"B"],[173,35,132,21],[173,36,132,22],[174,4,133,4],[175,4,134,4],[175,10,134,10,"V"],[175,11,134,11],[175,14,134,14],[175,18,134,14,"u32"],[175,26,134,17],[175,27,134,17,"u32"],[175,30,134,17],[175,32,134,18],[175,36,134,22,"Uint8Array"],[175,46,134,32],[175,47,134,33,"blockSize"],[175,56,134,42],[175,59,134,45,"N"],[175,60,134,46],[175,61,134,47],[175,62,134,48],[176,4,135,4],[176,10,135,10,"tmp"],[176,13,135,13],[176,16,135,16],[176,20,135,16,"u32"],[176,28,135,19],[176,29,135,19,"u32"],[176,32,135,19],[176,34,135,20],[176,38,135,24,"Uint8Array"],[176,48,135,34],[176,49,135,35,"blockSize"],[176,58,135,44],[176,59,135,45],[176,60,135,46],[177,4,136,4],[177,8,136,8,"blockMixCb"],[177,18,136,18],[177,21,136,21,"blockMixCb"],[177,22,136,21],[177,27,136,27],[177,28,136,29],[177,29,136,30],[178,4,137,4],[178,8,137,8,"onProgress"],[178,18,137,18],[178,20,137,20],[179,6,138,8],[179,12,138,14,"totalBlockMix"],[179,25,138,27],[179,28,138,30],[179,29,138,31],[179,32,138,34,"N"],[179,33,138,35],[179,36,138,38,"p"],[179,37,138,39],[180,6,139,8],[181,6,140,8],[182,6,141,8],[182,12,141,14,"callbackPer"],[182,23,141,25],[182,26,141,28,"Math"],[182,30,141,32],[182,31,141,33,"max"],[182,34,141,36],[182,35,141,37,"Math"],[182,39,141,41],[182,40,141,42,"floor"],[182,45,141,47],[182,46,141,48,"totalBlockMix"],[182,59,141,61],[182,62,141,64],[182,67,141,69],[182,68,141,70],[182,70,141,72],[182,71,141,73],[182,72,141,74],[183,6,142,8],[183,10,142,12,"blockMixCnt"],[183,21,142,23],[183,24,142,26],[183,25,142,27],[184,6,143,8,"blockMixCb"],[184,16,143,18],[184,19,143,21,"blockMixCb"],[184,20,143,21],[184,25,143,27],[185,8,144,12,"blockMixCnt"],[185,19,144,23],[185,21,144,25],[186,8,145,12],[186,12,145,16,"onProgress"],[186,22,145,26],[186,27,145,31],[186,29,145,33,"blockMixCnt"],[186,40,145,44],[186,43,145,47,"callbackPer"],[186,54,145,58],[186,55,145,59],[186,59,145,63,"blockMixCnt"],[186,70,145,74],[186,75,145,79,"totalBlockMix"],[186,88,145,92],[186,89,145,93],[186,91,146,16,"onProgress"],[186,101,146,26],[186,102,146,27,"blockMixCnt"],[186,113,146,38],[186,116,146,41,"totalBlockMix"],[186,129,146,54],[186,130,146,55],[187,6,147,8],[187,7,147,9],[188,4,148,4],[189,4,149,4],[189,11,149,11],[190,6,149,13,"N"],[190,7,149,14],[191,6,149,16,"r"],[191,7,149,17],[192,6,149,19,"p"],[192,7,149,20],[193,6,149,22,"dkLen"],[193,11,149,27],[194,6,149,29,"blockSize32"],[194,17,149,40],[195,6,149,42,"V"],[195,7,149,43],[196,6,149,45,"B32"],[196,9,149,48],[197,6,149,50,"B"],[197,7,149,51],[198,6,149,53,"tmp"],[198,9,149,56],[199,6,149,58,"blockMixCb"],[199,16,149,68],[200,6,149,70,"asyncTick"],[201,4,149,80],[201,5,149,81],[202,2,150,0],[203,2,151,0],[203,11,151,9,"scryptOutput"],[203,23,151,21,"scryptOutput"],[203,24,151,22,"password"],[203,32,151,30],[203,34,151,32,"dkLen"],[203,39,151,37],[203,41,151,39,"B"],[203,42,151,40],[203,44,151,42,"V"],[203,45,151,43],[203,47,151,45,"tmp"],[203,50,151,48],[203,52,151,50],[204,4,152,4],[204,10,152,10,"res"],[204,13,152,13],[204,16,152,16],[204,20,152,16,"pbkdf2"],[204,29,152,22],[204,30,152,22,"pbkdf2"],[204,36,152,22],[204,38,152,23,"sha256"],[204,45,152,29],[204,46,152,29,"sha256"],[204,52,152,29],[204,54,152,31,"password"],[204,62,152,39],[204,64,152,41,"B"],[204,65,152,42],[204,67,152,44],[205,6,152,46,"c"],[205,7,152,47],[205,9,152,49],[205,10,152,50],[206,6,152,52,"dkLen"],[207,4,152,58],[207,5,152,59],[207,6,152,60],[208,4,153,4],[208,8,153,4,"clean"],[208,16,153,9],[208,17,153,9,"clean"],[208,22,153,9],[208,24,153,10,"B"],[208,25,153,11],[208,27,153,13,"V"],[208,28,153,14],[208,30,153,16,"tmp"],[208,33,153,19],[208,34,153,20],[209,4,154,4],[209,11,154,11,"res"],[209,14,154,14],[210,2,155,0],[211,2,156,0],[212,0,157,0],[213,0,158,0],[214,0,159,0],[215,0,160,0],[216,0,161,0],[217,0,162,0],[218,0,163,0],[219,0,164,0],[220,0,165,0],[221,0,166,0],[222,0,167,0],[223,0,168,0],[224,0,169,0],[225,0,170,0],[226,0,171,0],[227,2,172,7],[227,11,172,16,"scrypt"],[227,17,172,22,"scrypt"],[227,18,172,23,"password"],[227,26,172,31],[227,28,172,33,"salt"],[227,32,172,37],[227,34,172,39,"opts"],[227,38,172,43],[227,40,172,45],[228,4,173,4],[228,10,173,10],[229,6,173,12,"N"],[229,7,173,13],[230,6,173,15,"r"],[230,7,173,16],[231,6,173,18,"p"],[231,7,173,19],[232,6,173,21,"dkLen"],[232,11,173,26],[233,6,173,28,"blockSize32"],[233,17,173,39],[234,6,173,41,"V"],[234,7,173,42],[235,6,173,44,"B32"],[235,9,173,47],[236,6,173,49,"B"],[236,7,173,50],[237,6,173,52,"tmp"],[237,9,173,55],[238,6,173,57,"blockMixCb"],[239,4,173,68],[239,5,173,69],[239,8,173,72,"scryptInit"],[239,18,173,82],[239,19,173,83,"password"],[239,27,173,91],[239,29,173,93,"salt"],[239,33,173,97],[239,35,173,99,"opts"],[239,39,173,103],[239,40,173,104],[240,4,174,4],[240,8,174,4,"swap32IfBE"],[240,16,174,14],[240,17,174,14,"swap32IfBE"],[240,27,174,14],[240,29,174,15,"B32"],[240,32,174,18],[240,33,174,19],[241,4,175,4],[241,9,175,9],[241,13,175,13,"pi"],[241,15,175,15],[241,18,175,18],[241,19,175,19],[241,21,175,21,"pi"],[241,23,175,23],[241,26,175,26,"p"],[241,27,175,27],[241,29,175,29,"pi"],[241,31,175,31],[241,33,175,33],[241,35,175,35],[242,6,176,8],[242,12,176,14,"Pi"],[242,14,176,16],[242,17,176,19,"blockSize32"],[242,28,176,30],[242,31,176,33,"pi"],[242,33,176,35],[243,6,177,8],[243,11,177,13],[243,15,177,17,"i"],[243,16,177,18],[243,19,177,21],[243,20,177,22],[243,22,177,24,"i"],[243,23,177,25],[243,26,177,28,"blockSize32"],[243,37,177,39],[243,39,177,41,"i"],[243,40,177,42],[243,42,177,44],[243,44,178,12,"V"],[243,45,178,13],[243,46,178,14,"i"],[243,47,178,15],[243,48,178,16],[243,51,178,19,"B32"],[243,54,178,22],[243,55,178,23,"Pi"],[243,57,178,25],[243,60,178,28,"i"],[243,61,178,29],[243,62,178,30],[243,63,178,31],[243,64,178,32],[244,6,179,8],[244,11,179,13],[244,15,179,17,"i"],[244,16,179,18],[244,19,179,21],[244,20,179,22],[244,22,179,24,"pos"],[244,25,179,27],[244,28,179,30],[244,29,179,31],[244,31,179,33,"i"],[244,32,179,34],[244,35,179,37,"N"],[244,36,179,38],[244,39,179,41],[244,40,179,42],[244,42,179,44,"i"],[244,43,179,45],[244,45,179,47],[244,47,179,49],[245,8,180,12,"BlockMix"],[245,16,180,20],[245,17,180,21,"V"],[245,18,180,22],[245,20,180,24,"pos"],[245,23,180,27],[245,25,180,29,"V"],[245,26,180,30],[245,28,180,33,"pos"],[245,31,180,36],[245,35,180,40,"blockSize32"],[245,46,180,51],[245,48,180,54,"r"],[245,49,180,55],[245,50,180,56],[245,51,180,57],[245,52,180,58],[246,8,181,12,"blockMixCb"],[246,18,181,22],[246,19,181,23],[246,20,181,24],[247,6,182,8],[248,6,183,8,"BlockMix"],[248,14,183,16],[248,15,183,17,"V"],[248,16,183,18],[248,18,183,20],[248,19,183,21,"N"],[248,20,183,22],[248,23,183,25],[248,24,183,26],[248,28,183,30,"blockSize32"],[248,39,183,41],[248,41,183,43,"B32"],[248,44,183,46],[248,46,183,48,"Pi"],[248,48,183,50],[248,50,183,52,"r"],[248,51,183,53],[248,52,183,54],[248,53,183,55],[248,54,183,56],[249,6,184,8,"blockMixCb"],[249,16,184,18],[249,17,184,19],[249,18,184,20],[250,6,185,8],[250,11,185,13],[250,15,185,17,"i"],[250,16,185,18],[250,19,185,21],[250,20,185,22],[250,22,185,24,"i"],[250,23,185,25],[250,26,185,28,"N"],[250,27,185,29],[250,29,185,31,"i"],[250,30,185,32],[250,32,185,34],[250,34,185,36],[251,8,186,12],[252,8,187,12],[252,14,187,18,"j"],[252,15,187,19],[252,18,187,22,"B32"],[252,21,187,25],[252,22,187,26,"Pi"],[252,24,187,28],[252,27,187,31,"blockSize32"],[252,38,187,42],[252,41,187,45],[252,43,187,47],[252,44,187,48],[252,47,187,51,"N"],[252,48,187,52],[252,49,187,53],[252,50,187,54],[253,8,188,12],[253,13,188,17],[253,17,188,21,"k"],[253,18,188,22],[253,21,188,25],[253,22,188,26],[253,24,188,28,"k"],[253,25,188,29],[253,28,188,32,"blockSize32"],[253,39,188,43],[253,41,188,45,"k"],[253,42,188,46],[253,44,188,48],[253,46,189,16,"tmp"],[253,49,189,19],[253,50,189,20,"k"],[253,51,189,21],[253,52,189,22],[253,55,189,25,"B32"],[253,58,189,28],[253,59,189,29,"Pi"],[253,61,189,31],[253,64,189,34,"k"],[253,65,189,35],[253,66,189,36],[253,69,189,39,"V"],[253,70,189,40],[253,71,189,41,"j"],[253,72,189,42],[253,75,189,45,"blockSize32"],[253,86,189,56],[253,89,189,59,"k"],[253,90,189,60],[253,91,189,61],[253,92,189,62],[253,93,189,63],[254,8,190,12,"BlockMix"],[254,16,190,20],[254,17,190,21,"tmp"],[254,20,190,24],[254,22,190,26],[254,23,190,27],[254,25,190,29,"B32"],[254,28,190,32],[254,30,190,34,"Pi"],[254,32,190,36],[254,34,190,38,"r"],[254,35,190,39],[254,36,190,40],[254,37,190,41],[254,38,190,42],[255,8,191,12,"blockMixCb"],[255,18,191,22],[255,19,191,23],[255,20,191,24],[256,6,192,8],[257,4,193,4],[258,4,194,4],[258,8,194,4,"swap32IfBE"],[258,16,194,14],[258,17,194,14,"swap32IfBE"],[258,27,194,14],[258,29,194,15,"B32"],[258,32,194,18],[258,33,194,19],[259,4,195,4],[259,11,195,11,"scryptOutput"],[259,23,195,23],[259,24,195,24,"password"],[259,32,195,32],[259,34,195,34,"dkLen"],[259,39,195,39],[259,41,195,41,"B"],[259,42,195,42],[259,44,195,44,"V"],[259,45,195,45],[259,47,195,47,"tmp"],[259,50,195,50],[259,51,195,51],[260,2,196,0],[261,2,197,0],[262,0,198,0],[263,0,199,0],[264,0,200,0],[265,0,201,0],[266,2,202,7],[266,17,202,22,"scryptAsync"],[266,28,202,33,"scryptAsync"],[266,29,202,34,"password"],[266,37,202,42],[266,39,202,44,"salt"],[266,43,202,48],[266,45,202,50,"opts"],[266,49,202,54],[266,51,202,56],[267,4,203,4],[267,10,203,10],[268,6,203,12,"N"],[268,7,203,13],[269,6,203,15,"r"],[269,7,203,16],[270,6,203,18,"p"],[270,7,203,19],[271,6,203,21,"dkLen"],[271,11,203,26],[272,6,203,28,"blockSize32"],[272,17,203,39],[273,6,203,41,"V"],[273,7,203,42],[274,6,203,44,"B32"],[274,9,203,47],[275,6,203,49,"B"],[275,7,203,50],[276,6,203,52,"tmp"],[276,9,203,55],[277,6,203,57,"blockMixCb"],[277,16,203,67],[278,6,203,69,"asyncTick"],[279,4,203,79],[279,5,203,80],[279,8,203,83,"scryptInit"],[279,18,203,93],[279,19,203,94,"password"],[279,27,203,102],[279,29,203,104,"salt"],[279,33,203,108],[279,35,203,110,"opts"],[279,39,203,114],[279,40,203,115],[280,4,204,4],[280,8,204,4,"swap32IfBE"],[280,16,204,14],[280,17,204,14,"swap32IfBE"],[280,27,204,14],[280,29,204,15,"B32"],[280,32,204,18],[280,33,204,19],[281,4,205,4],[281,9,205,9],[281,13,205,13,"pi"],[281,15,205,15],[281,18,205,18],[281,19,205,19],[281,21,205,21,"pi"],[281,23,205,23],[281,26,205,26,"p"],[281,27,205,27],[281,29,205,29,"pi"],[281,31,205,31],[281,33,205,33],[281,35,205,35],[282,6,206,8],[282,12,206,14,"Pi"],[282,14,206,16],[282,17,206,19,"blockSize32"],[282,28,206,30],[282,31,206,33,"pi"],[282,33,206,35],[283,6,207,8],[283,11,207,13],[283,15,207,17,"i"],[283,16,207,18],[283,19,207,21],[283,20,207,22],[283,22,207,24,"i"],[283,23,207,25],[283,26,207,28,"blockSize32"],[283,37,207,39],[283,39,207,41,"i"],[283,40,207,42],[283,42,207,44],[283,44,208,12,"V"],[283,45,208,13],[283,46,208,14,"i"],[283,47,208,15],[283,48,208,16],[283,51,208,19,"B32"],[283,54,208,22],[283,55,208,23,"Pi"],[283,57,208,25],[283,60,208,28,"i"],[283,61,208,29],[283,62,208,30],[283,63,208,31],[283,64,208,32],[284,6,209,8],[284,10,209,12,"pos"],[284,13,209,15],[284,16,209,18],[284,17,209,19],[285,6,210,8],[285,12,210,14],[285,16,210,14,"asyncLoop"],[285,24,210,23],[285,25,210,23,"asyncLoop"],[285,34,210,23],[285,36,210,24,"N"],[285,37,210,25],[285,40,210,28],[285,41,210,29],[285,43,210,31,"asyncTick"],[285,52,210,40],[285,54,210,42],[285,60,210,48],[286,8,211,12,"BlockMix"],[286,16,211,20],[286,17,211,21,"V"],[286,18,211,22],[286,20,211,24,"pos"],[286,23,211,27],[286,25,211,29,"V"],[286,26,211,30],[286,28,211,33,"pos"],[286,31,211,36],[286,35,211,40,"blockSize32"],[286,46,211,51],[286,48,211,54,"r"],[286,49,211,55],[286,50,211,56],[286,51,211,57],[286,52,211,58],[287,8,212,12,"blockMixCb"],[287,18,212,22],[287,19,212,23],[287,20,212,24],[288,6,213,8],[288,7,213,9],[288,8,213,10],[289,6,214,8,"BlockMix"],[289,14,214,16],[289,15,214,17,"V"],[289,16,214,18],[289,18,214,20],[289,19,214,21,"N"],[289,20,214,22],[289,23,214,25],[289,24,214,26],[289,28,214,30,"blockSize32"],[289,39,214,41],[289,41,214,43,"B32"],[289,44,214,46],[289,46,214,48,"Pi"],[289,48,214,50],[289,50,214,52,"r"],[289,51,214,53],[289,52,214,54],[289,53,214,55],[289,54,214,56],[290,6,215,8,"blockMixCb"],[290,16,215,18],[290,17,215,19],[290,18,215,20],[291,6,216,8],[291,12,216,14],[291,16,216,14,"asyncLoop"],[291,24,216,23],[291,25,216,23,"asyncLoop"],[291,34,216,23],[291,36,216,24,"N"],[291,37,216,25],[291,39,216,27,"asyncTick"],[291,48,216,36],[291,50,216,38],[291,56,216,44],[292,8,217,12],[293,8,218,12],[293,14,218,18,"j"],[293,15,218,19],[293,18,218,22,"B32"],[293,21,218,25],[293,22,218,26,"Pi"],[293,24,218,28],[293,27,218,31,"blockSize32"],[293,38,218,42],[293,41,218,45],[293,43,218,47],[293,44,218,48],[293,47,218,51,"N"],[293,48,218,52],[293,49,218,53],[293,50,218,54],[294,8,219,12],[294,13,219,17],[294,17,219,21,"k"],[294,18,219,22],[294,21,219,25],[294,22,219,26],[294,24,219,28,"k"],[294,25,219,29],[294,28,219,32,"blockSize32"],[294,39,219,43],[294,41,219,45,"k"],[294,42,219,46],[294,44,219,48],[294,46,220,16,"tmp"],[294,49,220,19],[294,50,220,20,"k"],[294,51,220,21],[294,52,220,22],[294,55,220,25,"B32"],[294,58,220,28],[294,59,220,29,"Pi"],[294,61,220,31],[294,64,220,34,"k"],[294,65,220,35],[294,66,220,36],[294,69,220,39,"V"],[294,70,220,40],[294,71,220,41,"j"],[294,72,220,42],[294,75,220,45,"blockSize32"],[294,86,220,56],[294,89,220,59,"k"],[294,90,220,60],[294,91,220,61],[294,92,220,62],[294,93,220,63],[295,8,221,12,"BlockMix"],[295,16,221,20],[295,17,221,21,"tmp"],[295,20,221,24],[295,22,221,26],[295,23,221,27],[295,25,221,29,"B32"],[295,28,221,32],[295,30,221,34,"Pi"],[295,32,221,36],[295,34,221,38,"r"],[295,35,221,39],[295,36,221,40],[295,37,221,41],[295,38,221,42],[296,8,222,12,"blockMixCb"],[296,18,222,22],[296,19,222,23],[296,20,222,24],[297,6,223,8],[297,7,223,9],[297,8,223,10],[298,4,224,4],[299,4,225,4],[299,8,225,4,"swap32IfBE"],[299,16,225,14],[299,17,225,14,"swap32IfBE"],[299,27,225,14],[299,29,225,15,"B32"],[299,32,225,18],[299,33,225,19],[300,4,226,4],[300,11,226,11,"scryptOutput"],[300,23,226,23],[300,24,226,24,"password"],[300,32,226,32],[300,34,226,34,"dkLen"],[300,39,226,39],[300,41,226,41,"B"],[300,42,226,42],[300,44,226,44,"V"],[300,45,226,45],[300,47,226,47,"tmp"],[300,50,226,50],[300,51,226,51],[301,2,227,0],[302,0,227,1],[302,3]],"functionMap":{"names":["<global>","XorAndSalsa","BlockMix","scryptInit","blockMixCb","scryptOutput","scrypt","scryptAsync","asyncLoop$argument_2"],"mappings":"AAA;ACW;CDiE;AEC;CFa;AGE;qBC2C,SD;qBCO;SDI;CHG;AKC;CLI;OMiB;CNwB;OOM;0CCQ;SDG;sCCG;SDO;CPI"},"hasCjsExports":false},"type":"js/module"}]} |