Files
pezkuwi-mobile-app/frontend/.metro-cache/cache/0c/56a128ed0b63d0bd5624dfa99d48a13edd280ac2c00ce6dc676d8d26d957d97560ed28
T
2025-10-24 02:46:57 +00:00

1 line
46 KiB
Plaintext

{"dependencies":[],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n Object.defineProperty(exports, '__esModule', {\n value: true\n });\n exports.naclSecretbox = naclSecretbox;\n exports.naclSecretboxOpen = naclSecretboxOpen;\n /* eslint-disable brace-style,camelcase,comma-spacing,curly,one-var,padding-line-between-statements,space-infix-ops */\n function L32(x, c) {\n return x << c | x >>> 32 - c;\n }\n function ld32(x, i) {\n let u = x[i + 3] & 0xff;\n u = u << 8 | x[i + 2] & 0xff;\n u = u << 8 | x[i + 1] & 0xff;\n return u << 8 | x[i + 0] & 0xff;\n }\n function st32(x, j, u) {\n for (let i = 0; i < 4; i++) {\n x[j + i] = u & 255;\n u >>>= 8;\n }\n }\n function vn(x, xi, y, yi, n) {\n let d = 0;\n for (let i = 0; i < n; i++) d |= x[xi + i] ^ y[yi + i];\n return (1 & d - 1 >>> 8) - 1;\n }\n function core(out, inp, k, c, h) {\n const w = new Uint32Array(16),\n x = new Uint32Array(16),\n y = new Uint32Array(16),\n t = new Uint32Array(4);\n let i, j, m;\n for (i = 0; i < 4; i++) {\n x[5 * i] = ld32(c, 4 * i);\n x[1 + i] = ld32(k, 4 * i);\n x[6 + i] = ld32(inp, 4 * i);\n x[11 + i] = ld32(k, 16 + 4 * i);\n }\n for (i = 0; i < 16; i++) y[i] = x[i];\n for (i = 0; i < 20; i++) {\n for (j = 0; j < 4; j++) {\n for (m = 0; m < 4; m++) t[m] = x[(5 * j + 4 * m) % 16];\n t[1] ^= L32(t[0] + t[3] | 0, 7);\n t[2] ^= L32(t[1] + t[0] | 0, 9);\n t[3] ^= L32(t[2] + t[1] | 0, 13);\n t[0] ^= L32(t[3] + t[2] | 0, 18);\n for (m = 0; m < 4; m++) w[4 * j + (j + m) % 4] = t[m];\n }\n for (m = 0; m < 16; m++) x[m] = w[m];\n }\n if (h) {\n for (i = 0; i < 16; i++) x[i] = x[i] + y[i] | 0;\n for (i = 0; i < 4; i++) {\n x[5 * i] = x[5 * i] - ld32(c, 4 * i) | 0;\n x[6 + i] = x[6 + i] - ld32(inp, 4 * i) | 0;\n }\n for (i = 0; i < 4; i++) {\n st32(out, 4 * i, x[5 * i]);\n st32(out, 16 + 4 * i, x[6 + i]);\n }\n } else {\n for (i = 0; i < 16; i++) st32(out, 4 * i, x[i] + y[i] | 0);\n }\n }\n const sigma = new Uint8Array([101, 120, 112, 97, 110, 100, 32, 51, 50, 45, 98, 121, 116, 101, 32, 107]);\n function crypto_stream_salsa20_xor(c, cpos, m, mpos, b, n, k) {\n const z = new Uint8Array(16),\n x = new Uint8Array(64);\n let u, i;\n if (!b) return 0;\n for (i = 0; i < 16; i++) z[i] = 0;\n for (i = 0; i < 8; i++) z[i] = n[i];\n while (b >= 64) {\n core(x, z, k, sigma, false);\n for (i = 0; i < 64; i++) c[cpos + i] = (m ? m[mpos + i] : 0) ^ x[i];\n u = 1;\n for (i = 8; i < 16; i++) {\n u = u + (z[i] & 0xff) | 0;\n z[i] = u & 0xff;\n u >>>= 8;\n }\n b -= 64;\n cpos += 64;\n if (m) mpos += 64;\n }\n if (b > 0) {\n core(x, z, k, sigma, false);\n for (i = 0; i < b; i++) c[cpos + i] = (m ? m[mpos + i] : 0) ^ x[i];\n }\n return 0;\n }\n function crypto_stream_xor(c, cpos, m, mpos, d, n, k) {\n const s = new Uint8Array(32);\n core(s, n, k, sigma, true);\n return crypto_stream_salsa20_xor(c, cpos, m, mpos, d, n.subarray(16), s);\n }\n function add1305(h, c) {\n let u = 0;\n for (let j = 0; j < 17; j++) {\n u = u + (h[j] + c[j] | 0) | 0;\n h[j] = u & 255;\n u >>>= 8;\n }\n }\n const minusp = new Uint32Array([5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 252]);\n function crypto_onetimeauth(out, outpos, m, mpos, n, k) {\n let i, j, u;\n const x = new Uint32Array(17),\n r = new Uint32Array(17),\n h = new Uint32Array(17),\n c = new Uint32Array(17),\n g = new Uint32Array(17);\n for (j = 0; j < 17; j++) r[j] = h[j] = 0;\n for (j = 0; j < 16; j++) r[j] = k[j];\n r[3] &= 15;\n r[4] &= 252;\n r[7] &= 15;\n r[8] &= 252;\n r[11] &= 15;\n r[12] &= 252;\n r[15] &= 15;\n while (n > 0) {\n for (j = 0; j < 17; j++) c[j] = 0;\n for (j = 0; j < 16 && j < n; ++j) c[j] = m[mpos + j];\n c[j] = 1;\n mpos += j;\n n -= j;\n add1305(h, c);\n for (i = 0; i < 17; i++) {\n x[i] = 0;\n for (j = 0; j < 17; j++) x[i] = x[i] + h[j] * (j <= i ? r[i - j] : 320 * r[i + 17 - j] | 0) | 0 | 0;\n }\n for (i = 0; i < 17; i++) h[i] = x[i];\n u = 0;\n for (j = 0; j < 16; j++) {\n u = u + h[j] | 0;\n h[j] = u & 255;\n u >>>= 8;\n }\n u = u + h[16] | 0;\n h[16] = u & 3;\n u = 5 * (u >>> 2) | 0;\n for (j = 0; j < 16; j++) {\n u = u + h[j] | 0;\n h[j] = u & 255;\n u >>>= 8;\n }\n u = u + h[16] | 0;\n h[16] = u;\n }\n for (j = 0; j < 17; j++) g[j] = h[j];\n add1305(h, minusp);\n const s = -(h[16] >>> 7) | 0;\n for (j = 0; j < 17; j++) h[j] ^= s & (g[j] ^ h[j]);\n for (j = 0; j < 16; j++) c[j] = k[j + 16];\n c[16] = 0;\n add1305(h, c);\n for (j = 0; j < 16; j++) out[outpos + j] = h[j];\n return 0;\n }\n function crypto_onetimeauth_verify(h, hpos, m, mpos, n, k) {\n const x = new Uint8Array(16);\n crypto_onetimeauth(x, 0, m, mpos, n, k);\n return vn(h, hpos, x, 0, 16);\n }\n function crypto_secretbox(c, m, d, n, k) {\n if (d < 32) return -1;\n crypto_stream_xor(c, 0, m, 0, d, n, k);\n crypto_onetimeauth(c, 16, c, 32, d - 32, c);\n for (let i = 0; i < 16; i++) c[i] = 0;\n return 0;\n }\n function crypto_secretbox_open(m, c, d, n, k) {\n const x = new Uint8Array(32);\n if (d < 32) return -1;\n crypto_stream_xor(x, 0, null, 0, 32, n, k);\n if (crypto_onetimeauth_verify(c, 16, c, 32, d - 32, x) !== 0) return -1;\n crypto_stream_xor(m, 0, c, 0, d, n, k);\n for (let i = 0; i < 32; i++) m[i] = 0;\n return 0;\n }\n const crypto_secretbox_KEYBYTES = 32;\n const crypto_secretbox_NONCEBYTES = 24;\n const crypto_secretbox_ZEROBYTES = 32;\n const crypto_secretbox_BOXZEROBYTES = 16;\n function checkLengths(k, n) {\n if (k.length !== crypto_secretbox_KEYBYTES) throw new Error('bad key size');\n if (n.length !== crypto_secretbox_NONCEBYTES) throw new Error('bad nonce size');\n }\n function checkArrayTypes(...args) {\n for (let i = 0, count = args.length; i < count; i++) {\n if (!(args[i] instanceof Uint8Array)) throw new TypeError('unexpected type, use Uint8Array');\n }\n }\n function naclSecretbox(msg, nonce, key) {\n checkArrayTypes(msg, nonce, key);\n checkLengths(key, nonce);\n const m = new Uint8Array(crypto_secretbox_ZEROBYTES + msg.length);\n const c = new Uint8Array(m.length);\n for (let i = 0; i < msg.length; i++) m[i + crypto_secretbox_ZEROBYTES] = msg[i];\n crypto_secretbox(c, m, m.length, nonce, key);\n return c.subarray(crypto_secretbox_BOXZEROBYTES);\n }\n function naclSecretboxOpen(box, nonce, key) {\n checkArrayTypes(box, nonce, key);\n checkLengths(key, nonce);\n const c = new Uint8Array(crypto_secretbox_BOXZEROBYTES + box.length);\n const m = new Uint8Array(c.length);\n for (let i = 0; i < box.length; i++) c[i + crypto_secretbox_BOXZEROBYTES] = box[i];\n if (c.length < 32) return null;\n if (crypto_secretbox_open(m, c, c.length, nonce, key) !== 0) return null;\n return m.subarray(crypto_secretbox_ZEROBYTES);\n }\n});","lineCount":217,"map":[[7,2,212,0,"exports"],[7,9,212,0],[7,10,212,0,"naclSecretbox"],[7,23,212,0],[7,26,212,0,"naclSecretbox"],[7,39,212,0],[8,2,222,0,"exports"],[8,9,222,0],[8,10,222,0,"naclSecretboxOpen"],[8,27,222,0],[8,30,222,0,"naclSecretboxOpen"],[8,47,222,0],[9,2,1,0],[10,2,2,0],[10,11,2,9,"L32"],[10,14,2,12,"L32"],[10,15,2,13,"x"],[10,16,2,14],[10,18,2,16,"c"],[10,19,2,17],[10,21,2,19],[11,4,2,21],[11,11,2,29,"x"],[11,12,2,30],[11,16,2,34,"c"],[11,17,2,35],[11,20,2,40,"x"],[11,21,2,41],[11,26,2,47],[11,28,2,49],[11,31,2,52,"c"],[11,32,2,55],[12,2,2,57],[13,2,3,0],[13,11,3,9,"ld32"],[13,15,3,13,"ld32"],[13,16,3,14,"x"],[13,17,3,15],[13,19,3,17,"i"],[13,20,3,18],[13,22,3,20],[14,4,4,4],[14,8,4,8,"u"],[14,9,4,9],[14,12,4,12,"x"],[14,13,4,13],[14,14,4,14,"i"],[14,15,4,15],[14,18,4,18],[14,19,4,19],[14,20,4,20],[14,23,4,23],[14,27,4,27],[15,4,5,4,"u"],[15,5,5,5],[15,8,5,9,"u"],[15,9,5,10],[15,13,5,14],[15,14,5,15],[15,17,5,20,"x"],[15,18,5,21],[15,19,5,22,"i"],[15,20,5,23],[15,23,5,26],[15,24,5,27],[15,25,5,28],[15,28,5,31],[15,32,5,36],[16,4,6,4,"u"],[16,5,6,5],[16,8,6,9,"u"],[16,9,6,10],[16,13,6,14],[16,14,6,15],[16,17,6,20,"x"],[16,18,6,21],[16,19,6,22,"i"],[16,20,6,23],[16,23,6,26],[16,24,6,27],[16,25,6,28],[16,28,6,31],[16,32,6,36],[17,4,7,4],[17,11,7,12,"u"],[17,12,7,13],[17,16,7,17],[17,17,7,18],[17,20,7,23,"x"],[17,21,7,24],[17,22,7,25,"i"],[17,23,7,26],[17,26,7,29],[17,27,7,30],[17,28,7,31],[17,31,7,34],[17,35,7,39],[18,2,8,0],[19,2,9,0],[19,11,9,9,"st32"],[19,15,9,13,"st32"],[19,16,9,14,"x"],[19,17,9,15],[19,19,9,17,"j"],[19,20,9,18],[19,22,9,20,"u"],[19,23,9,21],[19,25,9,23],[20,4,10,4],[20,9,10,9],[20,13,10,13,"i"],[20,14,10,14],[20,17,10,17],[20,18,10,18],[20,20,10,20,"i"],[20,21,10,21],[20,24,10,24],[20,25,10,25],[20,27,10,27,"i"],[20,28,10,28],[20,30,10,30],[20,32,10,32],[21,6,11,8,"x"],[21,7,11,9],[21,8,11,10,"j"],[21,9,11,11],[21,12,11,14,"i"],[21,13,11,15],[21,14,11,16],[21,17,11,19,"u"],[21,18,11,20],[21,21,11,23],[21,24,11,26],[22,6,12,8,"u"],[22,7,12,9],[22,13,12,15],[22,14,12,16],[23,4,13,4],[24,2,14,0],[25,2,15,0],[25,11,15,9,"vn"],[25,13,15,11,"vn"],[25,14,15,12,"x"],[25,15,15,13],[25,17,15,15,"xi"],[25,19,15,17],[25,21,15,19,"y"],[25,22,15,20],[25,24,15,22,"yi"],[25,26,15,24],[25,28,15,26,"n"],[25,29,15,27],[25,31,15,29],[26,4,16,4],[26,8,16,8,"d"],[26,9,16,9],[26,12,16,12],[26,13,16,13],[27,4,17,4],[27,9,17,9],[27,13,17,13,"i"],[27,14,17,14],[27,17,17,17],[27,18,17,18],[27,20,17,20,"i"],[27,21,17,21],[27,24,17,24,"n"],[27,25,17,25],[27,27,17,27,"i"],[27,28,17,28],[27,30,17,30],[27,32,18,8,"d"],[27,33,18,9],[27,37,18,13,"x"],[27,38,18,14],[27,39,18,15,"xi"],[27,41,18,17],[27,44,18,20,"i"],[27,45,18,21],[27,46,18,22],[27,49,18,25,"y"],[27,50,18,26],[27,51,18,27,"yi"],[27,53,18,29],[27,56,18,32,"i"],[27,57,18,33],[27,58,18,34],[28,4,19,4],[28,11,19,11],[28,12,19,12],[28,13,19,13],[28,16,19,18,"d"],[28,17,19,19],[28,20,19,22],[28,21,19,23],[28,26,19,29],[28,27,19,31],[28,31,19,35],[28,32,19,36],[29,2,20,0],[30,2,21,0],[30,11,21,9,"core"],[30,15,21,13,"core"],[30,16,21,14,"out"],[30,19,21,17],[30,21,21,19,"inp"],[30,24,21,22],[30,26,21,24,"k"],[30,27,21,25],[30,29,21,27,"c"],[30,30,21,28],[30,32,21,30,"h"],[30,33,21,31],[30,35,21,33],[31,4,22,4],[31,10,22,10,"w"],[31,11,22,11],[31,14,22,14],[31,18,22,18,"Uint32Array"],[31,29,22,29],[31,30,22,30],[31,32,22,32],[31,33,22,33],[32,6,22,35,"x"],[32,7,22,36],[32,10,22,39],[32,14,22,43,"Uint32Array"],[32,25,22,54],[32,26,22,55],[32,28,22,57],[32,29,22,58],[33,6,22,60,"y"],[33,7,22,61],[33,10,22,64],[33,14,22,68,"Uint32Array"],[33,25,22,79],[33,26,22,80],[33,28,22,82],[33,29,22,83],[34,6,22,85,"t"],[34,7,22,86],[34,10,22,89],[34,14,22,93,"Uint32Array"],[34,25,22,104],[34,26,22,105],[34,27,22,106],[34,28,22,107],[35,4,23,4],[35,8,23,8,"i"],[35,9,23,9],[35,11,23,11,"j"],[35,12,23,12],[35,14,23,14,"m"],[35,15,23,15],[36,4,24,4],[36,9,24,9,"i"],[36,10,24,10],[36,13,24,13],[36,14,24,14],[36,16,24,16,"i"],[36,17,24,17],[36,20,24,20],[36,21,24,21],[36,23,24,23,"i"],[36,24,24,24],[36,26,24,26],[36,28,24,28],[37,6,25,8,"x"],[37,7,25,9],[37,8,25,10],[37,9,25,11],[37,12,25,14,"i"],[37,13,25,15],[37,14,25,16],[37,17,25,19,"ld32"],[37,21,25,23],[37,22,25,24,"c"],[37,23,25,25],[37,25,25,27],[37,26,25,28],[37,29,25,31,"i"],[37,30,25,32],[37,31,25,33],[38,6,26,8,"x"],[38,7,26,9],[38,8,26,10],[38,9,26,11],[38,12,26,14,"i"],[38,13,26,15],[38,14,26,16],[38,17,26,19,"ld32"],[38,21,26,23],[38,22,26,24,"k"],[38,23,26,25],[38,25,26,27],[38,26,26,28],[38,29,26,31,"i"],[38,30,26,32],[38,31,26,33],[39,6,27,8,"x"],[39,7,27,9],[39,8,27,10],[39,9,27,11],[39,12,27,14,"i"],[39,13,27,15],[39,14,27,16],[39,17,27,19,"ld32"],[39,21,27,23],[39,22,27,24,"inp"],[39,25,27,27],[39,27,27,29],[39,28,27,30],[39,31,27,33,"i"],[39,32,27,34],[39,33,27,35],[40,6,28,8,"x"],[40,7,28,9],[40,8,28,10],[40,10,28,12],[40,13,28,15,"i"],[40,14,28,16],[40,15,28,17],[40,18,28,20,"ld32"],[40,22,28,24],[40,23,28,25,"k"],[40,24,28,26],[40,26,28,28],[40,28,28,30],[40,31,28,33],[40,32,28,34],[40,35,28,37,"i"],[40,36,28,38],[40,37,28,39],[41,4,29,4],[42,4,30,4],[42,9,30,9,"i"],[42,10,30,10],[42,13,30,13],[42,14,30,14],[42,16,30,16,"i"],[42,17,30,17],[42,20,30,20],[42,22,30,22],[42,24,30,24,"i"],[42,25,30,25],[42,27,30,27],[42,29,31,8,"y"],[42,30,31,9],[42,31,31,10,"i"],[42,32,31,11],[42,33,31,12],[42,36,31,15,"x"],[42,37,31,16],[42,38,31,17,"i"],[42,39,31,18],[42,40,31,19],[43,4,32,4],[43,9,32,9,"i"],[43,10,32,10],[43,13,32,13],[43,14,32,14],[43,16,32,16,"i"],[43,17,32,17],[43,20,32,20],[43,22,32,22],[43,24,32,24,"i"],[43,25,32,25],[43,27,32,27],[43,29,32,29],[44,6,33,8],[44,11,33,13,"j"],[44,12,33,14],[44,15,33,17],[44,16,33,18],[44,18,33,20,"j"],[44,19,33,21],[44,22,33,24],[44,23,33,25],[44,25,33,27,"j"],[44,26,33,28],[44,28,33,30],[44,30,33,32],[45,8,34,12],[45,13,34,17,"m"],[45,14,34,18],[45,17,34,21],[45,18,34,22],[45,20,34,24,"m"],[45,21,34,25],[45,24,34,28],[45,25,34,29],[45,27,34,31,"m"],[45,28,34,32],[45,30,34,34],[45,32,35,16,"t"],[45,33,35,17],[45,34,35,18,"m"],[45,35,35,19],[45,36,35,20],[45,39,35,23,"x"],[45,40,35,24],[45,41,35,25],[45,42,35,26],[45,43,35,27],[45,46,35,30,"j"],[45,47,35,31],[45,50,35,34],[45,51,35,35],[45,54,35,38,"m"],[45,55,35,39],[45,59,35,43],[45,61,35,45],[45,62,35,46],[46,8,36,12,"t"],[46,9,36,13],[46,10,36,14],[46,11,36,15],[46,12,36,16],[46,16,36,20,"L32"],[46,19,36,23],[46,20,36,25,"t"],[46,21,36,26],[46,22,36,27],[46,23,36,28],[46,24,36,29],[46,27,36,32,"t"],[46,28,36,33],[46,29,36,34],[46,30,36,35],[46,31,36,36],[46,34,36,40],[46,35,36,41],[46,37,36,43],[46,38,36,44],[46,39,36,45],[47,8,37,12,"t"],[47,9,37,13],[47,10,37,14],[47,11,37,15],[47,12,37,16],[47,16,37,20,"L32"],[47,19,37,23],[47,20,37,25,"t"],[47,21,37,26],[47,22,37,27],[47,23,37,28],[47,24,37,29],[47,27,37,32,"t"],[47,28,37,33],[47,29,37,34],[47,30,37,35],[47,31,37,36],[47,34,37,40],[47,35,37,41],[47,37,37,43],[47,38,37,44],[47,39,37,45],[48,8,38,12,"t"],[48,9,38,13],[48,10,38,14],[48,11,38,15],[48,12,38,16],[48,16,38,20,"L32"],[48,19,38,23],[48,20,38,25,"t"],[48,21,38,26],[48,22,38,27],[48,23,38,28],[48,24,38,29],[48,27,38,32,"t"],[48,28,38,33],[48,29,38,34],[48,30,38,35],[48,31,38,36],[48,34,38,40],[48,35,38,41],[48,37,38,43],[48,39,38,45],[48,40,38,46],[49,8,39,12,"t"],[49,9,39,13],[49,10,39,14],[49,11,39,15],[49,12,39,16],[49,16,39,20,"L32"],[49,19,39,23],[49,20,39,25,"t"],[49,21,39,26],[49,22,39,27],[49,23,39,28],[49,24,39,29],[49,27,39,32,"t"],[49,28,39,33],[49,29,39,34],[49,30,39,35],[49,31,39,36],[49,34,39,40],[49,35,39,41],[49,37,39,43],[49,39,39,45],[49,40,39,46],[50,8,40,12],[50,13,40,17,"m"],[50,14,40,18],[50,17,40,21],[50,18,40,22],[50,20,40,24,"m"],[50,21,40,25],[50,24,40,28],[50,25,40,29],[50,27,40,31,"m"],[50,28,40,32],[50,30,40,34],[50,32,41,16,"w"],[50,33,41,17],[50,34,41,18],[50,35,41,19],[50,38,41,22,"j"],[50,39,41,23],[50,42,41,26],[50,43,41,27,"j"],[50,44,41,28],[50,47,41,31,"m"],[50,48,41,32],[50,52,41,36],[50,53,41,37],[50,54,41,38],[50,57,41,41,"t"],[50,58,41,42],[50,59,41,43,"m"],[50,60,41,44],[50,61,41,45],[51,6,42,8],[52,6,43,8],[52,11,43,13,"m"],[52,12,43,14],[52,15,43,17],[52,16,43,18],[52,18,43,20,"m"],[52,19,43,21],[52,22,43,24],[52,24,43,26],[52,26,43,28,"m"],[52,27,43,29],[52,29,43,31],[52,31,44,12,"x"],[52,32,44,13],[52,33,44,14,"m"],[52,34,44,15],[52,35,44,16],[52,38,44,19,"w"],[52,39,44,20],[52,40,44,21,"m"],[52,41,44,22],[52,42,44,23],[53,4,45,4],[54,4,46,4],[54,8,46,8,"h"],[54,9,46,9],[54,11,46,11],[55,6,47,8],[55,11,47,13,"i"],[55,12,47,14],[55,15,47,17],[55,16,47,18],[55,18,47,20,"i"],[55,19,47,21],[55,22,47,24],[55,24,47,26],[55,26,47,28,"i"],[55,27,47,29],[55,29,47,31],[55,31,48,12,"x"],[55,32,48,13],[55,33,48,14,"i"],[55,34,48,15],[55,35,48,16],[55,38,48,20,"x"],[55,39,48,21],[55,40,48,22,"i"],[55,41,48,23],[55,42,48,24],[55,45,48,27,"y"],[55,46,48,28],[55,47,48,29,"i"],[55,48,48,30],[55,49,48,31],[55,52,48,35],[55,53,48,36],[56,6,49,8],[56,11,49,13,"i"],[56,12,49,14],[56,15,49,17],[56,16,49,18],[56,18,49,20,"i"],[56,19,49,21],[56,22,49,24],[56,23,49,25],[56,25,49,27,"i"],[56,26,49,28],[56,28,49,30],[56,30,49,32],[57,8,50,12,"x"],[57,9,50,13],[57,10,50,14],[57,11,50,15],[57,14,50,18,"i"],[57,15,50,19],[57,16,50,20],[57,19,50,24,"x"],[57,20,50,25],[57,21,50,26],[57,22,50,27],[57,25,50,30,"i"],[57,26,50,31],[57,27,50,32],[57,30,50,35,"ld32"],[57,34,50,39],[57,35,50,40,"c"],[57,36,50,41],[57,38,50,43],[57,39,50,44],[57,42,50,47,"i"],[57,43,50,48],[57,44,50,49],[57,47,50,53],[57,48,50,54],[58,8,51,12,"x"],[58,9,51,13],[58,10,51,14],[58,11,51,15],[58,14,51,18,"i"],[58,15,51,19],[58,16,51,20],[58,19,51,24,"x"],[58,20,51,25],[58,21,51,26],[58,22,51,27],[58,25,51,30,"i"],[58,26,51,31],[58,27,51,32],[58,30,51,35,"ld32"],[58,34,51,39],[58,35,51,40,"inp"],[58,38,51,43],[58,40,51,45],[58,41,51,46],[58,44,51,49,"i"],[58,45,51,50],[58,46,51,51],[58,49,51,55],[58,50,51,56],[59,6,52,8],[60,6,53,8],[60,11,53,13,"i"],[60,12,53,14],[60,15,53,17],[60,16,53,18],[60,18,53,20,"i"],[60,19,53,21],[60,22,53,24],[60,23,53,25],[60,25,53,27,"i"],[60,26,53,28],[60,28,53,30],[60,30,53,32],[61,8,54,12,"st32"],[61,12,54,16],[61,13,54,17,"out"],[61,16,54,20],[61,18,54,22],[61,19,54,23],[61,22,54,26,"i"],[61,23,54,27],[61,25,54,29,"x"],[61,26,54,30],[61,27,54,31],[61,28,54,32],[61,31,54,35,"i"],[61,32,54,36],[61,33,54,37],[61,34,54,38],[62,8,55,12,"st32"],[62,12,55,16],[62,13,55,17,"out"],[62,16,55,20],[62,18,55,22],[62,20,55,24],[62,23,55,27],[62,24,55,28],[62,27,55,31,"i"],[62,28,55,32],[62,30,55,34,"x"],[62,31,55,35],[62,32,55,36],[62,33,55,37],[62,36,55,40,"i"],[62,37,55,41],[62,38,55,42],[62,39,55,43],[63,6,56,8],[64,4,57,4],[64,5,57,5],[64,11,58,9],[65,6,59,8],[65,11,59,13,"i"],[65,12,59,14],[65,15,59,17],[65,16,59,18],[65,18,59,20,"i"],[65,19,59,21],[65,22,59,24],[65,24,59,26],[65,26,59,28,"i"],[65,27,59,29],[65,29,59,31],[65,31,60,12,"st32"],[65,35,60,16],[65,36,60,17,"out"],[65,39,60,20],[65,41,60,22],[65,42,60,23],[65,45,60,26,"i"],[65,46,60,27],[65,48,60,30,"x"],[65,49,60,31],[65,50,60,32,"i"],[65,51,60,33],[65,52,60,34],[65,55,60,37,"y"],[65,56,60,38],[65,57,60,39,"i"],[65,58,60,40],[65,59,60,41],[65,62,60,45],[65,63,60,46],[65,64,60,47],[66,4,61,4],[67,2,62,0],[68,2,63,0],[68,8,63,6,"sigma"],[68,13,63,11],[68,16,63,14],[68,20,63,18,"Uint8Array"],[68,30,63,28],[68,31,63,29],[68,32,63,30],[68,35,63,33],[68,37,63,35],[68,40,63,38],[68,42,63,40],[68,45,63,43],[68,47,63,45],[68,49,63,47],[68,51,63,49],[68,54,63,52],[68,56,63,54],[68,59,63,57],[68,61,63,59],[68,63,63,61],[68,65,63,63],[68,67,63,65],[68,69,63,67],[68,71,63,69],[68,73,63,71],[68,75,63,73],[68,77,63,75],[68,79,63,77],[68,81,63,79],[68,84,63,82],[68,86,63,84],[68,89,63,87],[68,91,63,89],[68,94,63,92],[68,96,63,94],[68,98,63,96],[68,100,63,98],[68,103,63,101],[68,104,63,102],[68,105,63,103],[69,2,64,0],[69,11,64,9,"crypto_stream_salsa20_xor"],[69,36,64,34,"crypto_stream_salsa20_xor"],[69,37,64,35,"c"],[69,38,64,36],[69,40,64,38,"cpos"],[69,44,64,42],[69,46,64,44,"m"],[69,47,64,45],[69,49,64,47,"mpos"],[69,53,64,51],[69,55,64,53,"b"],[69,56,64,54],[69,58,64,56,"n"],[69,59,64,57],[69,61,64,59,"k"],[69,62,64,60],[69,64,64,62],[70,4,65,4],[70,10,65,10,"z"],[70,11,65,11],[70,14,65,14],[70,18,65,18,"Uint8Array"],[70,28,65,28],[70,29,65,29],[70,31,65,31],[70,32,65,32],[71,6,65,34,"x"],[71,7,65,35],[71,10,65,38],[71,14,65,42,"Uint8Array"],[71,24,65,52],[71,25,65,53],[71,27,65,55],[71,28,65,56],[72,4,66,4],[72,8,66,8,"u"],[72,9,66,9],[72,11,66,11,"i"],[72,12,66,12],[73,4,67,4],[73,8,67,8],[73,9,67,9,"b"],[73,10,67,10],[73,12,68,8],[73,19,68,15],[73,20,68,16],[74,4,69,4],[74,9,69,9,"i"],[74,10,69,10],[74,13,69,13],[74,14,69,14],[74,16,69,16,"i"],[74,17,69,17],[74,20,69,20],[74,22,69,22],[74,24,69,24,"i"],[74,25,69,25],[74,27,69,27],[74,29,70,8,"z"],[74,30,70,9],[74,31,70,10,"i"],[74,32,70,11],[74,33,70,12],[74,36,70,15],[74,37,70,16],[75,4,71,4],[75,9,71,9,"i"],[75,10,71,10],[75,13,71,13],[75,14,71,14],[75,16,71,16,"i"],[75,17,71,17],[75,20,71,20],[75,21,71,21],[75,23,71,23,"i"],[75,24,71,24],[75,26,71,26],[75,28,72,8,"z"],[75,29,72,9],[75,30,72,10,"i"],[75,31,72,11],[75,32,72,12],[75,35,72,15,"n"],[75,36,72,16],[75,37,72,17,"i"],[75,38,72,18],[75,39,72,19],[76,4,73,4],[76,11,73,11,"b"],[76,12,73,12],[76,16,73,16],[76,18,73,18],[76,20,73,20],[77,6,74,8,"core"],[77,10,74,12],[77,11,74,13,"x"],[77,12,74,14],[77,14,74,16,"z"],[77,15,74,17],[77,17,74,19,"k"],[77,18,74,20],[77,20,74,22,"sigma"],[77,25,74,27],[77,27,74,29],[77,32,74,34],[77,33,74,35],[78,6,75,8],[78,11,75,13,"i"],[78,12,75,14],[78,15,75,17],[78,16,75,18],[78,18,75,20,"i"],[78,19,75,21],[78,22,75,24],[78,24,75,26],[78,26,75,28,"i"],[78,27,75,29],[78,29,75,31],[78,31,76,12,"c"],[78,32,76,13],[78,33,76,14,"cpos"],[78,37,76,18],[78,40,76,21,"i"],[78,41,76,22],[78,42,76,23],[78,45,76,26],[78,46,76,27,"m"],[78,47,76,28],[78,50,76,31,"m"],[78,51,76,32],[78,52,76,33,"mpos"],[78,56,76,37],[78,59,76,40,"i"],[78,60,76,41],[78,61,76,42],[78,64,76,45],[78,65,76,46],[78,69,76,50,"x"],[78,70,76,51],[78,71,76,52,"i"],[78,72,76,53],[78,73,76,54],[79,6,77,8,"u"],[79,7,77,9],[79,10,77,12],[79,11,77,13],[80,6,78,8],[80,11,78,13,"i"],[80,12,78,14],[80,15,78,17],[80,16,78,18],[80,18,78,20,"i"],[80,19,78,21],[80,22,78,24],[80,24,78,26],[80,26,78,28,"i"],[80,27,78,29],[80,29,78,31],[80,31,78,33],[81,8,79,12,"u"],[81,9,79,13],[81,12,79,16,"u"],[81,13,79,17],[81,17,79,21,"z"],[81,18,79,22],[81,19,79,23,"i"],[81,20,79,24],[81,21,79,25],[81,24,79,28],[81,28,79,32],[81,29,79,33],[81,32,79,36],[81,33,79,37],[82,8,80,12,"z"],[82,9,80,13],[82,10,80,14,"i"],[82,11,80,15],[82,12,80,16],[82,15,80,19,"u"],[82,16,80,20],[82,19,80,23],[82,23,80,27],[83,8,81,12,"u"],[83,9,81,13],[83,15,81,19],[83,16,81,20],[84,6,82,8],[85,6,83,8,"b"],[85,7,83,9],[85,11,83,13],[85,13,83,15],[86,6,84,8,"cpos"],[86,10,84,12],[86,14,84,16],[86,16,84,18],[87,6,85,8],[87,10,85,12,"m"],[87,11,85,13],[87,13,86,12,"mpos"],[87,17,86,16],[87,21,86,20],[87,23,86,22],[88,4,87,4],[89,4,88,4],[89,8,88,8,"b"],[89,9,88,9],[89,12,88,12],[89,13,88,13],[89,15,88,15],[90,6,89,8,"core"],[90,10,89,12],[90,11,89,13,"x"],[90,12,89,14],[90,14,89,16,"z"],[90,15,89,17],[90,17,89,19,"k"],[90,18,89,20],[90,20,89,22,"sigma"],[90,25,89,27],[90,27,89,29],[90,32,89,34],[90,33,89,35],[91,6,90,8],[91,11,90,13,"i"],[91,12,90,14],[91,15,90,17],[91,16,90,18],[91,18,90,20,"i"],[91,19,90,21],[91,22,90,24,"b"],[91,23,90,25],[91,25,90,27,"i"],[91,26,90,28],[91,28,90,30],[91,30,91,12,"c"],[91,31,91,13],[91,32,91,14,"cpos"],[91,36,91,18],[91,39,91,21,"i"],[91,40,91,22],[91,41,91,23],[91,44,91,26],[91,45,91,27,"m"],[91,46,91,28],[91,49,91,31,"m"],[91,50,91,32],[91,51,91,33,"mpos"],[91,55,91,37],[91,58,91,40,"i"],[91,59,91,41],[91,60,91,42],[91,63,91,45],[91,64,91,46],[91,68,91,50,"x"],[91,69,91,51],[91,70,91,52,"i"],[91,71,91,53],[91,72,91,54],[92,4,92,4],[93,4,93,4],[93,11,93,11],[93,12,93,12],[94,2,94,0],[95,2,95,0],[95,11,95,9,"crypto_stream_xor"],[95,28,95,26,"crypto_stream_xor"],[95,29,95,27,"c"],[95,30,95,28],[95,32,95,30,"cpos"],[95,36,95,34],[95,38,95,36,"m"],[95,39,95,37],[95,41,95,39,"mpos"],[95,45,95,43],[95,47,95,45,"d"],[95,48,95,46],[95,50,95,48,"n"],[95,51,95,49],[95,53,95,51,"k"],[95,54,95,52],[95,56,95,54],[96,4,96,4],[96,10,96,10,"s"],[96,11,96,11],[96,14,96,14],[96,18,96,18,"Uint8Array"],[96,28,96,28],[96,29,96,29],[96,31,96,31],[96,32,96,32],[97,4,97,4,"core"],[97,8,97,8],[97,9,97,9,"s"],[97,10,97,10],[97,12,97,12,"n"],[97,13,97,13],[97,15,97,15,"k"],[97,16,97,16],[97,18,97,18,"sigma"],[97,23,97,23],[97,25,97,25],[97,29,97,29],[97,30,97,30],[98,4,98,4],[98,11,98,11,"crypto_stream_salsa20_xor"],[98,36,98,36],[98,37,98,37,"c"],[98,38,98,38],[98,40,98,40,"cpos"],[98,44,98,44],[98,46,98,46,"m"],[98,47,98,47],[98,49,98,49,"mpos"],[98,53,98,53],[98,55,98,55,"d"],[98,56,98,56],[98,58,98,58,"n"],[98,59,98,59],[98,60,98,60,"subarray"],[98,68,98,68],[98,69,98,69],[98,71,98,71],[98,72,98,72],[98,74,98,74,"s"],[98,75,98,75],[98,76,98,76],[99,2,99,0],[100,2,100,0],[100,11,100,9,"add1305"],[100,18,100,16,"add1305"],[100,19,100,17,"h"],[100,20,100,18],[100,22,100,20,"c"],[100,23,100,21],[100,25,100,23],[101,4,101,4],[101,8,101,8,"u"],[101,9,101,9],[101,12,101,12],[101,13,101,13],[102,4,102,4],[102,9,102,9],[102,13,102,13,"j"],[102,14,102,14],[102,17,102,17],[102,18,102,18],[102,20,102,20,"j"],[102,21,102,21],[102,24,102,24],[102,26,102,26],[102,28,102,28,"j"],[102,29,102,29],[102,31,102,31],[102,33,102,33],[103,6,103,8,"u"],[103,7,103,9],[103,10,103,13,"u"],[103,11,103,14],[103,15,103,19,"h"],[103,16,103,20],[103,17,103,21,"j"],[103,18,103,22],[103,19,103,23],[103,22,103,26,"c"],[103,23,103,27],[103,24,103,28,"j"],[103,25,103,29],[103,26,103,30],[103,29,103,34],[103,30,103,35],[103,31,103,36],[103,34,103,40],[103,35,103,41],[104,6,104,8,"h"],[104,7,104,9],[104,8,104,10,"j"],[104,9,104,11],[104,10,104,12],[104,13,104,15,"u"],[104,14,104,16],[104,17,104,19],[104,20,104,22],[105,6,105,8,"u"],[105,7,105,9],[105,13,105,15],[105,14,105,16],[106,4,106,4],[107,2,107,0],[108,2,108,0],[108,8,108,6,"minusp"],[108,14,108,12],[108,17,108,15],[108,21,108,19,"Uint32Array"],[108,32,108,30],[108,33,108,31],[108,34,108,32],[108,35,108,33],[108,37,108,35],[108,38,108,36],[108,40,108,38],[108,41,108,39],[108,43,108,41],[108,44,108,42],[108,46,108,44],[108,47,108,45],[108,49,108,47],[108,50,108,48],[108,52,108,50],[108,53,108,51],[108,55,108,53],[108,56,108,54],[108,58,108,56],[108,59,108,57],[108,61,108,59],[108,62,108,60],[108,64,108,62],[108,65,108,63],[108,67,108,65],[108,68,108,66],[108,70,108,68],[108,71,108,69],[108,73,108,71],[108,74,108,72],[108,76,108,74],[108,77,108,75],[108,79,108,77],[108,80,108,78],[108,82,108,80],[108,85,108,83],[108,86,108,84],[108,87,108,85],[109,2,109,0],[109,11,109,9,"crypto_onetimeauth"],[109,29,109,27,"crypto_onetimeauth"],[109,30,109,28,"out"],[109,33,109,31],[109,35,109,33,"outpos"],[109,41,109,39],[109,43,109,41,"m"],[109,44,109,42],[109,46,109,44,"mpos"],[109,50,109,48],[109,52,109,50,"n"],[109,53,109,51],[109,55,109,53,"k"],[109,56,109,54],[109,58,109,56],[110,4,110,4],[110,8,110,8,"i"],[110,9,110,9],[110,11,110,11,"j"],[110,12,110,12],[110,14,110,14,"u"],[110,15,110,15],[111,4,111,4],[111,10,111,10,"x"],[111,11,111,11],[111,14,111,14],[111,18,111,18,"Uint32Array"],[111,29,111,29],[111,30,111,30],[111,32,111,32],[111,33,111,33],[112,6,111,35,"r"],[112,7,111,36],[112,10,111,39],[112,14,111,43,"Uint32Array"],[112,25,111,54],[112,26,111,55],[112,28,111,57],[112,29,111,58],[113,6,111,60,"h"],[113,7,111,61],[113,10,111,64],[113,14,111,68,"Uint32Array"],[113,25,111,79],[113,26,111,80],[113,28,111,82],[113,29,111,83],[114,6,111,85,"c"],[114,7,111,86],[114,10,111,89],[114,14,111,93,"Uint32Array"],[114,25,111,104],[114,26,111,105],[114,28,111,107],[114,29,111,108],[115,6,111,110,"g"],[115,7,111,111],[115,10,111,114],[115,14,111,118,"Uint32Array"],[115,25,111,129],[115,26,111,130],[115,28,111,132],[115,29,111,133],[116,4,112,4],[116,9,112,9,"j"],[116,10,112,10],[116,13,112,13],[116,14,112,14],[116,16,112,16,"j"],[116,17,112,17],[116,20,112,20],[116,22,112,22],[116,24,112,24,"j"],[116,25,112,25],[116,27,112,27],[116,29,113,8,"r"],[116,30,113,9],[116,31,113,10,"j"],[116,32,113,11],[116,33,113,12],[116,36,113,15,"h"],[116,37,113,16],[116,38,113,17,"j"],[116,39,113,18],[116,40,113,19],[116,43,113,22],[116,44,113,23],[117,4,114,4],[117,9,114,9,"j"],[117,10,114,10],[117,13,114,13],[117,14,114,14],[117,16,114,16,"j"],[117,17,114,17],[117,20,114,20],[117,22,114,22],[117,24,114,24,"j"],[117,25,114,25],[117,27,114,27],[117,29,115,8,"r"],[117,30,115,9],[117,31,115,10,"j"],[117,32,115,11],[117,33,115,12],[117,36,115,15,"k"],[117,37,115,16],[117,38,115,17,"j"],[117,39,115,18],[117,40,115,19],[118,4,116,4,"r"],[118,5,116,5],[118,6,116,6],[118,7,116,7],[118,8,116,8],[118,12,116,12],[118,14,116,14],[119,4,117,4,"r"],[119,5,117,5],[119,6,117,6],[119,7,117,7],[119,8,117,8],[119,12,117,12],[119,15,117,15],[120,4,118,4,"r"],[120,5,118,5],[120,6,118,6],[120,7,118,7],[120,8,118,8],[120,12,118,12],[120,14,118,14],[121,4,119,4,"r"],[121,5,119,5],[121,6,119,6],[121,7,119,7],[121,8,119,8],[121,12,119,12],[121,15,119,15],[122,4,120,4,"r"],[122,5,120,5],[122,6,120,6],[122,8,120,8],[122,9,120,9],[122,13,120,13],[122,15,120,15],[123,4,121,4,"r"],[123,5,121,5],[123,6,121,6],[123,8,121,8],[123,9,121,9],[123,13,121,13],[123,16,121,16],[124,4,122,4,"r"],[124,5,122,5],[124,6,122,6],[124,8,122,8],[124,9,122,9],[124,13,122,13],[124,15,122,15],[125,4,123,4],[125,11,123,11,"n"],[125,12,123,12],[125,15,123,15],[125,16,123,16],[125,18,123,18],[126,6,124,8],[126,11,124,13,"j"],[126,12,124,14],[126,15,124,17],[126,16,124,18],[126,18,124,20,"j"],[126,19,124,21],[126,22,124,24],[126,24,124,26],[126,26,124,28,"j"],[126,27,124,29],[126,29,124,31],[126,31,125,12,"c"],[126,32,125,13],[126,33,125,14,"j"],[126,34,125,15],[126,35,125,16],[126,38,125,19],[126,39,125,20],[127,6,126,8],[127,11,126,13,"j"],[127,12,126,14],[127,15,126,17],[127,16,126,18],[127,18,126,21,"j"],[127,19,126,22],[127,22,126,25],[127,24,126,27],[127,28,126,33,"j"],[127,29,126,34],[127,32,126,37,"n"],[127,33,126,39],[127,35,126,41],[127,37,126,43,"j"],[127,38,126,44],[127,40,127,12,"c"],[127,41,127,13],[127,42,127,14,"j"],[127,43,127,15],[127,44,127,16],[127,47,127,19,"m"],[127,48,127,20],[127,49,127,21,"mpos"],[127,53,127,25],[127,56,127,28,"j"],[127,57,127,29],[127,58,127,30],[128,6,128,8,"c"],[128,7,128,9],[128,8,128,10,"j"],[128,9,128,11],[128,10,128,12],[128,13,128,15],[128,14,128,16],[129,6,129,8,"mpos"],[129,10,129,12],[129,14,129,16,"j"],[129,15,129,17],[130,6,130,8,"n"],[130,7,130,9],[130,11,130,13,"j"],[130,12,130,14],[131,6,131,8,"add1305"],[131,13,131,15],[131,14,131,16,"h"],[131,15,131,17],[131,17,131,19,"c"],[131,18,131,20],[131,19,131,21],[132,6,132,8],[132,11,132,13,"i"],[132,12,132,14],[132,15,132,17],[132,16,132,18],[132,18,132,20,"i"],[132,19,132,21],[132,22,132,24],[132,24,132,26],[132,26,132,28,"i"],[132,27,132,29],[132,29,132,31],[132,31,132,33],[133,8,133,12,"x"],[133,9,133,13],[133,10,133,14,"i"],[133,11,133,15],[133,12,133,16],[133,15,133,19],[133,16,133,20],[134,8,134,12],[134,13,134,17,"j"],[134,14,134,18],[134,17,134,21],[134,18,134,22],[134,20,134,24,"j"],[134,21,134,25],[134,24,134,28],[134,26,134,30],[134,28,134,32,"j"],[134,29,134,33],[134,31,134,35],[134,33,135,16,"x"],[134,34,135,17],[134,35,135,18,"i"],[134,36,135,19],[134,37,135,20],[134,40,135,24,"x"],[134,41,135,25],[134,42,135,26,"i"],[134,43,135,27],[134,44,135,28],[134,47,135,32,"h"],[134,48,135,33],[134,49,135,34,"j"],[134,50,135,35],[134,51,135,36],[134,55,135,41,"j"],[134,56,135,42],[134,60,135,46,"i"],[134,61,135,47],[134,64,135,51,"r"],[134,65,135,52],[134,66,135,53,"i"],[134,67,135,54],[134,70,135,57,"j"],[134,71,135,58],[134,72,135,59],[134,75,135,64],[134,78,135,67],[134,81,135,70,"r"],[134,82,135,71],[134,83,135,72,"i"],[134,84,135,73],[134,87,135,76],[134,89,135,78],[134,92,135,81,"j"],[134,93,135,82],[134,94,135,83],[134,97,135,87],[134,98,135,89],[134,99,135,91],[134,102,135,94],[134,103,135,95],[134,106,135,99],[134,107,135,100],[135,6,136,8],[136,6,137,8],[136,11,137,13,"i"],[136,12,137,14],[136,15,137,17],[136,16,137,18],[136,18,137,20,"i"],[136,19,137,21],[136,22,137,24],[136,24,137,26],[136,26,137,28,"i"],[136,27,137,29],[136,29,137,31],[136,31,138,12,"h"],[136,32,138,13],[136,33,138,14,"i"],[136,34,138,15],[136,35,138,16],[136,38,138,19,"x"],[136,39,138,20],[136,40,138,21,"i"],[136,41,138,22],[136,42,138,23],[137,6,139,8,"u"],[137,7,139,9],[137,10,139,12],[137,11,139,13],[138,6,140,8],[138,11,140,13,"j"],[138,12,140,14],[138,15,140,17],[138,16,140,18],[138,18,140,20,"j"],[138,19,140,21],[138,22,140,24],[138,24,140,26],[138,26,140,28,"j"],[138,27,140,29],[138,29,140,31],[138,31,140,33],[139,8,141,12,"u"],[139,9,141,13],[139,12,141,17,"u"],[139,13,141,18],[139,16,141,21,"h"],[139,17,141,22],[139,18,141,23,"j"],[139,19,141,24],[139,20,141,25],[139,23,141,29],[139,24,141,30],[140,8,142,12,"h"],[140,9,142,13],[140,10,142,14,"j"],[140,11,142,15],[140,12,142,16],[140,15,142,19,"u"],[140,16,142,20],[140,19,142,23],[140,22,142,26],[141,8,143,12,"u"],[141,9,143,13],[141,15,143,19],[141,16,143,20],[142,6,144,8],[143,6,145,8,"u"],[143,7,145,9],[143,10,145,13,"u"],[143,11,145,14],[143,14,145,17,"h"],[143,15,145,18],[143,16,145,19],[143,18,145,21],[143,19,145,22],[143,22,145,26],[143,23,145,27],[144,6,146,8,"h"],[144,7,146,9],[144,8,146,10],[144,10,146,12],[144,11,146,13],[144,14,146,16,"u"],[144,15,146,17],[144,18,146,20],[144,19,146,21],[145,6,147,8,"u"],[145,7,147,9],[145,10,147,13],[145,11,147,14],[145,15,147,18,"u"],[145,16,147,19],[145,21,147,24],[145,22,147,25],[145,23,147,26],[145,26,147,30],[145,27,147,31],[146,6,148,8],[146,11,148,13,"j"],[146,12,148,14],[146,15,148,17],[146,16,148,18],[146,18,148,20,"j"],[146,19,148,21],[146,22,148,24],[146,24,148,26],[146,26,148,28,"j"],[146,27,148,29],[146,29,148,31],[146,31,148,33],[147,8,149,12,"u"],[147,9,149,13],[147,12,149,17,"u"],[147,13,149,18],[147,16,149,21,"h"],[147,17,149,22],[147,18,149,23,"j"],[147,19,149,24],[147,20,149,25],[147,23,149,29],[147,24,149,30],[148,8,150,12,"h"],[148,9,150,13],[148,10,150,14,"j"],[148,11,150,15],[148,12,150,16],[148,15,150,19,"u"],[148,16,150,20],[148,19,150,23],[148,22,150,26],[149,8,151,12,"u"],[149,9,151,13],[149,15,151,19],[149,16,151,20],[150,6,152,8],[151,6,153,8,"u"],[151,7,153,9],[151,10,153,13,"u"],[151,11,153,14],[151,14,153,17,"h"],[151,15,153,18],[151,16,153,19],[151,18,153,21],[151,19,153,22],[151,22,153,26],[151,23,153,27],[152,6,154,8,"h"],[152,7,154,9],[152,8,154,10],[152,10,154,12],[152,11,154,13],[152,14,154,16,"u"],[152,15,154,17],[153,4,155,4],[154,4,156,4],[154,9,156,9,"j"],[154,10,156,10],[154,13,156,13],[154,14,156,14],[154,16,156,16,"j"],[154,17,156,17],[154,20,156,20],[154,22,156,22],[154,24,156,24,"j"],[154,25,156,25],[154,27,156,27],[154,29,157,8,"g"],[154,30,157,9],[154,31,157,10,"j"],[154,32,157,11],[154,33,157,12],[154,36,157,15,"h"],[154,37,157,16],[154,38,157,17,"j"],[154,39,157,18],[154,40,157,19],[155,4,158,4,"add1305"],[155,11,158,11],[155,12,158,12,"h"],[155,13,158,13],[155,15,158,15,"minusp"],[155,21,158,21],[155,22,158,22],[156,4,159,4],[156,10,159,10,"s"],[156,11,159,11],[156,14,159,15],[156,16,159,17,"h"],[156,17,159,18],[156,18,159,19],[156,20,159,21],[156,21,159,22],[156,26,159,27],[156,27,159,28],[156,28,159,29],[156,31,159,32],[156,32,159,34],[157,4,160,4],[157,9,160,9,"j"],[157,10,160,10],[157,13,160,13],[157,14,160,14],[157,16,160,16,"j"],[157,17,160,17],[157,20,160,20],[157,22,160,22],[157,24,160,24,"j"],[157,25,160,25],[157,27,160,27],[157,29,161,8,"h"],[157,30,161,9],[157,31,161,10,"j"],[157,32,161,11],[157,33,161,12],[157,37,161,16,"s"],[157,38,161,17],[157,42,161,21,"g"],[157,43,161,22],[157,44,161,23,"j"],[157,45,161,24],[157,46,161,25],[157,49,161,28,"h"],[157,50,161,29],[157,51,161,30,"j"],[157,52,161,31],[157,53,161,32],[157,54,161,33],[158,4,162,4],[158,9,162,9,"j"],[158,10,162,10],[158,13,162,13],[158,14,162,14],[158,16,162,16,"j"],[158,17,162,17],[158,20,162,20],[158,22,162,22],[158,24,162,24,"j"],[158,25,162,25],[158,27,162,27],[158,29,163,8,"c"],[158,30,163,9],[158,31,163,10,"j"],[158,32,163,11],[158,33,163,12],[158,36,163,15,"k"],[158,37,163,16],[158,38,163,17,"j"],[158,39,163,18],[158,42,163,21],[158,44,163,23],[158,45,163,24],[159,4,164,4,"c"],[159,5,164,5],[159,6,164,6],[159,8,164,8],[159,9,164,9],[159,12,164,12],[159,13,164,13],[160,4,165,4,"add1305"],[160,11,165,11],[160,12,165,12,"h"],[160,13,165,13],[160,15,165,15,"c"],[160,16,165,16],[160,17,165,17],[161,4,166,4],[161,9,166,9,"j"],[161,10,166,10],[161,13,166,13],[161,14,166,14],[161,16,166,16,"j"],[161,17,166,17],[161,20,166,20],[161,22,166,22],[161,24,166,24,"j"],[161,25,166,25],[161,27,166,27],[161,29,167,8,"out"],[161,32,167,11],[161,33,167,12,"outpos"],[161,39,167,18],[161,42,167,21,"j"],[161,43,167,22],[161,44,167,23],[161,47,167,26,"h"],[161,48,167,27],[161,49,167,28,"j"],[161,50,167,29],[161,51,167,30],[162,4,168,4],[162,11,168,11],[162,12,168,12],[163,2,169,0],[164,2,170,0],[164,11,170,9,"crypto_onetimeauth_verify"],[164,36,170,34,"crypto_onetimeauth_verify"],[164,37,170,35,"h"],[164,38,170,36],[164,40,170,38,"hpos"],[164,44,170,42],[164,46,170,44,"m"],[164,47,170,45],[164,49,170,47,"mpos"],[164,53,170,51],[164,55,170,53,"n"],[164,56,170,54],[164,58,170,56,"k"],[164,59,170,57],[164,61,170,59],[165,4,171,4],[165,10,171,10,"x"],[165,11,171,11],[165,14,171,14],[165,18,171,18,"Uint8Array"],[165,28,171,28],[165,29,171,29],[165,31,171,31],[165,32,171,32],[166,4,172,4,"crypto_onetimeauth"],[166,22,172,22],[166,23,172,23,"x"],[166,24,172,24],[166,26,172,26],[166,27,172,27],[166,29,172,29,"m"],[166,30,172,30],[166,32,172,32,"mpos"],[166,36,172,36],[166,38,172,38,"n"],[166,39,172,39],[166,41,172,41,"k"],[166,42,172,42],[166,43,172,43],[167,4,173,4],[167,11,173,11,"vn"],[167,13,173,13],[167,14,173,14,"h"],[167,15,173,15],[167,17,173,17,"hpos"],[167,21,173,21],[167,23,173,23,"x"],[167,24,173,24],[167,26,173,26],[167,27,173,27],[167,29,173,29],[167,31,173,31],[167,32,173,32],[168,2,174,0],[169,2,175,0],[169,11,175,9,"crypto_secretbox"],[169,27,175,25,"crypto_secretbox"],[169,28,175,26,"c"],[169,29,175,27],[169,31,175,29,"m"],[169,32,175,30],[169,34,175,32,"d"],[169,35,175,33],[169,37,175,35,"n"],[169,38,175,36],[169,40,175,38,"k"],[169,41,175,39],[169,43,175,41],[170,4,176,4],[170,8,176,8,"d"],[170,9,176,9],[170,12,176,12],[170,14,176,14],[170,16,177,8],[170,23,177,15],[170,24,177,16],[170,25,177,17],[171,4,178,4,"crypto_stream_xor"],[171,21,178,21],[171,22,178,22,"c"],[171,23,178,23],[171,25,178,25],[171,26,178,26],[171,28,178,28,"m"],[171,29,178,29],[171,31,178,31],[171,32,178,32],[171,34,178,34,"d"],[171,35,178,35],[171,37,178,37,"n"],[171,38,178,38],[171,40,178,40,"k"],[171,41,178,41],[171,42,178,42],[172,4,179,4,"crypto_onetimeauth"],[172,22,179,22],[172,23,179,23,"c"],[172,24,179,24],[172,26,179,26],[172,28,179,28],[172,30,179,30,"c"],[172,31,179,31],[172,33,179,33],[172,35,179,35],[172,37,179,37,"d"],[172,38,179,38],[172,41,179,41],[172,43,179,43],[172,45,179,45,"c"],[172,46,179,46],[172,47,179,47],[173,4,180,4],[173,9,180,9],[173,13,180,13,"i"],[173,14,180,14],[173,17,180,17],[173,18,180,18],[173,20,180,20,"i"],[173,21,180,21],[173,24,180,24],[173,26,180,26],[173,28,180,28,"i"],[173,29,180,29],[173,31,180,31],[173,33,181,8,"c"],[173,34,181,9],[173,35,181,10,"i"],[173,36,181,11],[173,37,181,12],[173,40,181,15],[173,41,181,16],[174,4,182,4],[174,11,182,11],[174,12,182,12],[175,2,183,0],[176,2,184,0],[176,11,184,9,"crypto_secretbox_open"],[176,32,184,30,"crypto_secretbox_open"],[176,33,184,31,"m"],[176,34,184,32],[176,36,184,34,"c"],[176,37,184,35],[176,39,184,37,"d"],[176,40,184,38],[176,42,184,40,"n"],[176,43,184,41],[176,45,184,43,"k"],[176,46,184,44],[176,48,184,46],[177,4,185,4],[177,10,185,10,"x"],[177,11,185,11],[177,14,185,14],[177,18,185,18,"Uint8Array"],[177,28,185,28],[177,29,185,29],[177,31,185,31],[177,32,185,32],[178,4,186,4],[178,8,186,8,"d"],[178,9,186,9],[178,12,186,12],[178,14,186,14],[178,16,187,8],[178,23,187,15],[178,24,187,16],[178,25,187,17],[179,4,188,4,"crypto_stream_xor"],[179,21,188,21],[179,22,188,22,"x"],[179,23,188,23],[179,25,188,25],[179,26,188,26],[179,28,188,28],[179,32,188,32],[179,34,188,34],[179,35,188,35],[179,37,188,37],[179,39,188,39],[179,41,188,41,"n"],[179,42,188,42],[179,44,188,44,"k"],[179,45,188,45],[179,46,188,46],[180,4,189,4],[180,8,189,8,"crypto_onetimeauth_verify"],[180,33,189,33],[180,34,189,34,"c"],[180,35,189,35],[180,37,189,37],[180,39,189,39],[180,41,189,41,"c"],[180,42,189,42],[180,44,189,44],[180,46,189,46],[180,48,189,48,"d"],[180,49,189,49],[180,52,189,52],[180,54,189,54],[180,56,189,56,"x"],[180,57,189,57],[180,58,189,58],[180,63,189,63],[180,64,189,64],[180,66,190,8],[180,73,190,15],[180,74,190,16],[180,75,190,17],[181,4,191,4,"crypto_stream_xor"],[181,21,191,21],[181,22,191,22,"m"],[181,23,191,23],[181,25,191,25],[181,26,191,26],[181,28,191,28,"c"],[181,29,191,29],[181,31,191,31],[181,32,191,32],[181,34,191,34,"d"],[181,35,191,35],[181,37,191,37,"n"],[181,38,191,38],[181,40,191,40,"k"],[181,41,191,41],[181,42,191,42],[182,4,192,4],[182,9,192,9],[182,13,192,13,"i"],[182,14,192,14],[182,17,192,17],[182,18,192,18],[182,20,192,20,"i"],[182,21,192,21],[182,24,192,24],[182,26,192,26],[182,28,192,28,"i"],[182,29,192,29],[182,31,192,31],[182,33,193,8,"m"],[182,34,193,9],[182,35,193,10,"i"],[182,36,193,11],[182,37,193,12],[182,40,193,15],[182,41,193,16],[183,4,194,4],[183,11,194,11],[183,12,194,12],[184,2,195,0],[185,2,196,0],[185,8,196,6,"crypto_secretbox_KEYBYTES"],[185,33,196,31],[185,36,196,34],[185,38,196,36],[186,2,197,0],[186,8,197,6,"crypto_secretbox_NONCEBYTES"],[186,35,197,33],[186,38,197,36],[186,40,197,38],[187,2,198,0],[187,8,198,6,"crypto_secretbox_ZEROBYTES"],[187,34,198,32],[187,37,198,35],[187,39,198,37],[188,2,199,0],[188,8,199,6,"crypto_secretbox_BOXZEROBYTES"],[188,37,199,35],[188,40,199,38],[188,42,199,40],[189,2,200,0],[189,11,200,9,"checkLengths"],[189,23,200,21,"checkLengths"],[189,24,200,22,"k"],[189,25,200,23],[189,27,200,25,"n"],[189,28,200,26],[189,30,200,28],[190,4,201,4],[190,8,201,8,"k"],[190,9,201,9],[190,10,201,10,"length"],[190,16,201,16],[190,21,201,21,"crypto_secretbox_KEYBYTES"],[190,46,201,46],[190,48,202,8],[190,54,202,14],[190,58,202,18,"Error"],[190,63,202,23],[190,64,202,24],[190,78,202,38],[190,79,202,39],[191,4,203,4],[191,8,203,8,"n"],[191,9,203,9],[191,10,203,10,"length"],[191,16,203,16],[191,21,203,21,"crypto_secretbox_NONCEBYTES"],[191,48,203,48],[191,50,204,8],[191,56,204,14],[191,60,204,18,"Error"],[191,65,204,23],[191,66,204,24],[191,82,204,40],[191,83,204,41],[192,2,205,0],[193,2,206,0],[193,11,206,9,"checkArrayTypes"],[193,26,206,24,"checkArrayTypes"],[193,27,206,25],[193,30,206,28,"args"],[193,34,206,32],[193,36,206,34],[194,4,207,4],[194,9,207,9],[194,13,207,13,"i"],[194,14,207,14],[194,17,207,17],[194,18,207,18],[194,20,207,20,"count"],[194,25,207,25],[194,28,207,28,"args"],[194,32,207,32],[194,33,207,33,"length"],[194,39,207,39],[194,41,207,41,"i"],[194,42,207,42],[194,45,207,45,"count"],[194,50,207,50],[194,52,207,52,"i"],[194,53,207,53],[194,55,207,55],[194,57,207,57],[195,6,208,8],[195,10,208,12],[195,12,208,14,"args"],[195,16,208,18],[195,17,208,19,"i"],[195,18,208,20],[195,19,208,21],[195,31,208,33,"Uint8Array"],[195,41,208,43],[195,42,208,44],[195,44,209,12],[195,50,209,18],[195,54,209,22,"TypeError"],[195,63,209,31],[195,64,209,32],[195,97,209,65],[195,98,209,66],[196,4,210,4],[197,2,211,0],[198,2,212,7],[198,11,212,16,"naclSecretbox"],[198,24,212,29,"naclSecretbox"],[198,25,212,30,"msg"],[198,28,212,33],[198,30,212,35,"nonce"],[198,35,212,40],[198,37,212,42,"key"],[198,40,212,45],[198,42,212,47],[199,4,213,4,"checkArrayTypes"],[199,19,213,19],[199,20,213,20,"msg"],[199,23,213,23],[199,25,213,25,"nonce"],[199,30,213,30],[199,32,213,32,"key"],[199,35,213,35],[199,36,213,36],[200,4,214,4,"checkLengths"],[200,16,214,16],[200,17,214,17,"key"],[200,20,214,20],[200,22,214,22,"nonce"],[200,27,214,27],[200,28,214,28],[201,4,215,4],[201,10,215,10,"m"],[201,11,215,11],[201,14,215,14],[201,18,215,18,"Uint8Array"],[201,28,215,28],[201,29,215,29,"crypto_secretbox_ZEROBYTES"],[201,55,215,55],[201,58,215,58,"msg"],[201,61,215,61],[201,62,215,62,"length"],[201,68,215,68],[201,69,215,69],[202,4,216,4],[202,10,216,10,"c"],[202,11,216,11],[202,14,216,14],[202,18,216,18,"Uint8Array"],[202,28,216,28],[202,29,216,29,"m"],[202,30,216,30],[202,31,216,31,"length"],[202,37,216,37],[202,38,216,38],[203,4,217,4],[203,9,217,9],[203,13,217,13,"i"],[203,14,217,14],[203,17,217,17],[203,18,217,18],[203,20,217,20,"i"],[203,21,217,21],[203,24,217,24,"msg"],[203,27,217,27],[203,28,217,28,"length"],[203,34,217,34],[203,36,217,36,"i"],[203,37,217,37],[203,39,217,39],[203,41,218,8,"m"],[203,42,218,9],[203,43,218,10,"i"],[203,44,218,11],[203,47,218,14,"crypto_secretbox_ZEROBYTES"],[203,73,218,40],[203,74,218,41],[203,77,218,44,"msg"],[203,80,218,47],[203,81,218,48,"i"],[203,82,218,49],[203,83,218,50],[204,4,219,4,"crypto_secretbox"],[204,20,219,20],[204,21,219,21,"c"],[204,22,219,22],[204,24,219,24,"m"],[204,25,219,25],[204,27,219,27,"m"],[204,28,219,28],[204,29,219,29,"length"],[204,35,219,35],[204,37,219,37,"nonce"],[204,42,219,42],[204,44,219,44,"key"],[204,47,219,47],[204,48,219,48],[205,4,220,4],[205,11,220,11,"c"],[205,12,220,12],[205,13,220,13,"subarray"],[205,21,220,21],[205,22,220,22,"crypto_secretbox_BOXZEROBYTES"],[205,51,220,51],[205,52,220,52],[206,2,221,0],[207,2,222,7],[207,11,222,16,"naclSecretboxOpen"],[207,28,222,33,"naclSecretboxOpen"],[207,29,222,34,"box"],[207,32,222,37],[207,34,222,39,"nonce"],[207,39,222,44],[207,41,222,46,"key"],[207,44,222,49],[207,46,222,51],[208,4,223,4,"checkArrayTypes"],[208,19,223,19],[208,20,223,20,"box"],[208,23,223,23],[208,25,223,25,"nonce"],[208,30,223,30],[208,32,223,32,"key"],[208,35,223,35],[208,36,223,36],[209,4,224,4,"checkLengths"],[209,16,224,16],[209,17,224,17,"key"],[209,20,224,20],[209,22,224,22,"nonce"],[209,27,224,27],[209,28,224,28],[210,4,225,4],[210,10,225,10,"c"],[210,11,225,11],[210,14,225,14],[210,18,225,18,"Uint8Array"],[210,28,225,28],[210,29,225,29,"crypto_secretbox_BOXZEROBYTES"],[210,58,225,58],[210,61,225,61,"box"],[210,64,225,64],[210,65,225,65,"length"],[210,71,225,71],[210,72,225,72],[211,4,226,4],[211,10,226,10,"m"],[211,11,226,11],[211,14,226,14],[211,18,226,18,"Uint8Array"],[211,28,226,28],[211,29,226,29,"c"],[211,30,226,30],[211,31,226,31,"length"],[211,37,226,37],[211,38,226,38],[212,4,227,4],[212,9,227,9],[212,13,227,13,"i"],[212,14,227,14],[212,17,227,17],[212,18,227,18],[212,20,227,20,"i"],[212,21,227,21],[212,24,227,24,"box"],[212,27,227,27],[212,28,227,28,"length"],[212,34,227,34],[212,36,227,36,"i"],[212,37,227,37],[212,39,227,39],[212,41,228,8,"c"],[212,42,228,9],[212,43,228,10,"i"],[212,44,228,11],[212,47,228,14,"crypto_secretbox_BOXZEROBYTES"],[212,76,228,43],[212,77,228,44],[212,80,228,47,"box"],[212,83,228,50],[212,84,228,51,"i"],[212,85,228,52],[212,86,228,53],[213,4,229,4],[213,8,229,8,"c"],[213,9,229,9],[213,10,229,10,"length"],[213,16,229,16],[213,19,229,19],[213,21,229,21],[213,23,230,8],[213,30,230,15],[213,34,230,19],[214,4,231,4],[214,8,231,8,"crypto_secretbox_open"],[214,29,231,29],[214,30,231,30,"m"],[214,31,231,31],[214,33,231,33,"c"],[214,34,231,34],[214,36,231,36,"c"],[214,37,231,37],[214,38,231,38,"length"],[214,44,231,44],[214,46,231,46,"nonce"],[214,51,231,51],[214,53,231,53,"key"],[214,56,231,56],[214,57,231,57],[214,62,231,62],[214,63,231,63],[214,65,232,8],[214,72,232,15],[214,76,232,19],[215,4,233,4],[215,11,233,11,"m"],[215,12,233,12],[215,13,233,13,"subarray"],[215,21,233,21],[215,22,233,22,"crypto_secretbox_ZEROBYTES"],[215,48,233,48],[215,49,233,49],[216,2,234,0],[217,0,234,1],[217,3]],"functionMap":{"names":["<global>","L32","ld32","st32","vn","core","crypto_stream_salsa20_xor","crypto_stream_xor","add1305","crypto_onetimeauth","crypto_onetimeauth_verify","crypto_secretbox","crypto_secretbox_open","checkLengths","checkArrayTypes","naclSecretbox","naclSecretboxOpen"],"mappings":"AAA;ACC,0DD;AEC;CFK;AGC;CHK;AIC;CJK;AKC;CLyC;AME;CN8B;AOC;CPI;AQC;CRO;ASE;CT4D;AUC;CVI;AWC;CXQ;AYC;CZW;AaK;CbK;AcC;CdK;OeC;CfS;OgBC;ChBY"},"hasCjsExports":false},"type":"js/module"}]}