@private.me/xbind 1.3.0 → 1.3.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/dist-standalone/_deps/crypto/base64.js +183 -170
- package/dist-standalone/_deps/crypto/cjs/base64.js +653 -91
- package/dist-standalone/_deps/crypto/cjs/errors.js +658 -102
- package/dist-standalone/_deps/crypto/cjs/hmac.js +468 -66
- package/dist-standalone/_deps/crypto/cjs/index.js +848 -82
- package/dist-standalone/_deps/crypto/cjs/package.json +1 -0
- package/dist-standalone/_deps/crypto/cjs/padding.js +504 -50
- package/dist-standalone/_deps/crypto/cjs/share-header.js +369 -65
- package/dist-standalone/_deps/crypto/cjs/shares.js +865 -143
- package/dist-standalone/_deps/crypto/cjs/tlv.js +1005 -183
- package/dist-standalone/_deps/crypto/cjs/uuid.js +437 -55
- package/dist-standalone/_deps/crypto/cjs/verify.js +414 -24
- package/dist-standalone/_deps/crypto/cjs/xorida.js +888 -186
- package/dist-standalone/_deps/crypto/errors.js +179 -89
- package/dist-standalone/_deps/crypto/hmac.js +129 -61
- package/dist-standalone/_deps/crypto/index.js +140 -40
- package/dist-standalone/_deps/crypto/padding.js +151 -45
- package/dist-standalone/_deps/crypto/share-header.js +89 -60
- package/dist-standalone/_deps/crypto/shares.js +280 -133
- package/dist-standalone/_deps/crypto/tlv.js +348 -179
- package/dist-standalone/_deps/crypto/uuid.js +130 -50
- package/dist-standalone/_deps/crypto/verify.js +71 -15
- package/dist-standalone/_deps/crypto/xorida.js +332 -181
- package/dist-standalone/_deps/shared/cjs/errors.js +572 -208
- package/dist-standalone/_deps/shared/cjs/index.js +443 -85
- package/dist-standalone/_deps/shared/cjs/types.js +284 -57
- package/dist-standalone/_deps/shared/errors.js +192 -199
- package/dist-standalone/_deps/shared/index.js +48 -51
- package/dist-standalone/_deps/shared/types.js +56 -57
- package/dist-standalone/_deps/ux-helpers/cjs/errors.js +1 -1
- package/dist-standalone/_deps/ux-helpers/cjs/pagination.js +1 -1
- package/dist-standalone/_deps/ux-helpers/cjs/progress.js +1 -1
- package/dist-standalone/_deps/ux-helpers/cjs/search.js +1 -1
- package/dist-standalone/_deps/ux-helpers/errors.js +1 -1
- package/dist-standalone/_deps/ux-helpers/pagination.js +1 -1
- package/dist-standalone/_deps/ux-helpers/progress.js +1 -1
- package/dist-standalone/_deps/ux-helpers/search.js +1 -1
- package/dist-standalone/_deps/xchange/auto-accept.js +1 -1
- package/dist-standalone/_deps/xchange/cjs/auto-accept.js +1 -1
- package/dist-standalone/_deps/xchange/cjs/errors.js +1 -1
- package/dist-standalone/_deps/xchange/cjs/index.js +1 -1
- package/dist-standalone/_deps/xchange/cjs/invite-client.js +1 -1
- package/dist-standalone/_deps/xchange/cjs/lazy-init.js +1 -1
- package/dist-standalone/_deps/xchange/cjs/trust-integration.js +1 -1
- package/dist-standalone/_deps/xchange/cjs/xchange.js +1 -1
- package/dist-standalone/_deps/xchange/errors.js +1 -1
- package/dist-standalone/_deps/xchange/index.js +1 -1
- package/dist-standalone/_deps/xchange/invite-client.js +1 -1
- package/dist-standalone/_deps/xchange/lazy-init.js +1 -1
- package/dist-standalone/_deps/xchange/trust-integration.js +1 -1
- package/dist-standalone/_deps/xchange/xchange.js +1 -1
- package/dist-standalone/_deps/xregistry/cjs/discovery.js +1 -1
- package/dist-standalone/_deps/xregistry/cjs/errors.js +1 -1
- package/dist-standalone/_deps/xregistry/cjs/index.js +1 -1
- package/dist-standalone/_deps/xregistry/cjs/registry.js +1 -1
- package/dist-standalone/_deps/xregistry/cjs/schema.js +1 -1
- package/dist-standalone/_deps/xregistry/cjs/types.js +1 -1
- package/dist-standalone/_deps/xregistry/discovery.js +1 -1
- package/dist-standalone/_deps/xregistry/errors.js +1 -1
- package/dist-standalone/_deps/xregistry/index.js +1 -1
- package/dist-standalone/_deps/xregistry/registry.js +1 -1
- package/dist-standalone/_deps/xregistry/schema.js +1 -1
- package/dist-standalone/_deps/xregistry/types.js +1 -1
- package/dist-standalone/cjs/identity.js +2 -3
- package/dist-standalone/identity.js +2 -3
- package/package.json +2 -1
- package/share1.dat +0 -0
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# @private.me/xbind
|
|
2
2
|
|
|
3
3
|

|
|
4
|
-

|
|
5
5
|

|
|
6
6
|

|
|
7
7
|

|
|
@@ -12,7 +12,7 @@ Build AI agents that communicate securely using ML-DSA-65 DID identity, ML-KEM-7
|
|
|
12
12
|
|
|
13
13
|
Part of the **Private.Me** platform—where APIs have keys, but ACIs have identity.
|
|
14
14
|
|
|
15
|
-
**Version 1.3.
|
|
15
|
+
**Version 1.3.5** — **Critical Fix:** ML-KEM key generation is now deterministic from seed (uses `deriveKeyPair()` per FIPS 203). Previous versions had non-deterministic ML-KEM keys which broke `identityFromSeed()` device recovery - registered ML-KEM keys would never match re-derived identity, causing v3 envelope decryption to silently fail. This was the #1 P0 bug reported by early customers. **All users must upgrade immediately.** Previous v1.3.0 (Session 157): v12.0 Deployment Identity with 4-layer Share 2 validation.
|
|
16
16
|
|
|
17
17
|
## Install
|
|
18
18
|
|
|
@@ -1,209 +1,222 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
const
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
1
|
+
function a0_0x1a56(_0x117fe5, _0x2d1341) {
|
|
2
|
+
_0x117fe5 = _0x117fe5 - 0x137;
|
|
3
|
+
const _0x1feac7 = a0_0x1fea();
|
|
4
|
+
let _0x1a56c9 = _0x1feac7[_0x117fe5];
|
|
5
|
+
if (a0_0x1a56['MLtNOO'] === undefined) {
|
|
6
|
+
var _0x12ed9d = function (_0x52f94e) {
|
|
7
|
+
const _0x285d42 = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';
|
|
8
|
+
let _0x220f0f = '', _0x126d3b = '';
|
|
9
|
+
for (let _0x72b6b7 = 0x0, _0x4d0738, _0x3e902c, _0x1471ac = 0x0; _0x3e902c = _0x52f94e['charAt'](_0x1471ac++); ~_0x3e902c && (_0x4d0738 = _0x72b6b7 % 0x4 ? _0x4d0738 * 0x40 + _0x3e902c : _0x3e902c, _0x72b6b7++ % 0x4) ? _0x220f0f += String['fromCharCode'](0xff & _0x4d0738 >> (-0x2 * _0x72b6b7 & 0x6)) : 0x0) {
|
|
10
|
+
_0x3e902c = _0x285d42['indexOf'](_0x3e902c);
|
|
11
|
+
}
|
|
12
|
+
for (let _0x3503b2 = 0x0, _0x5ec380 = _0x220f0f['length']; _0x3503b2 < _0x5ec380; _0x3503b2++) {
|
|
13
|
+
_0x126d3b += '%' + ('00' + _0x220f0f['charCodeAt'](_0x3503b2)['toString'](0x10))['slice'](-0x2);
|
|
14
|
+
}
|
|
15
|
+
return decodeURIComponent(_0x126d3b);
|
|
16
|
+
};
|
|
17
|
+
a0_0x1a56['HKytOx'] = _0x12ed9d, a0_0x1a56['FOcusJ'] = {}, a0_0x1a56['MLtNOO'] = !![];
|
|
18
|
+
}
|
|
19
|
+
const _0x7c7f86 = _0x1feac7[0x0], _0x46e4cd = _0x117fe5 + _0x7c7f86, _0x536556 = a0_0x1a56['FOcusJ'][_0x46e4cd];
|
|
20
|
+
return !_0x536556 ? (_0x1a56c9 = a0_0x1a56['HKytOx'](_0x1a56c9), a0_0x1a56['FOcusJ'][_0x46e4cd] = _0x1a56c9) : _0x1a56c9 = _0x536556, _0x1a56c9;
|
|
21
|
+
}
|
|
22
|
+
function a0_0x1fea() {
|
|
23
|
+
const _0x10e439 = [
|
|
24
|
+
'nJf4rMLLtNa',
|
|
25
|
+
'mZiXmdjtug5hwvC',
|
|
26
|
+
'z0LOuKi',
|
|
27
|
+
'v256tvG',
|
|
28
|
+
't3Dprg0',
|
|
29
|
+
'mtC1mNjlEhv5DG',
|
|
30
|
+
'swzXrLC',
|
|
31
|
+
'ndy1mdeYBfzxugT1',
|
|
32
|
+
'C1fvywO',
|
|
33
|
+
'wKLsDvq',
|
|
34
|
+
'C1r0r0m',
|
|
35
|
+
'sMHPB2e',
|
|
36
|
+
'CvLewe4',
|
|
37
|
+
'mtmXmJmWmZvIqwHZCxK',
|
|
38
|
+
'BgvUz3rO',
|
|
39
|
+
'z0Hdsg4',
|
|
40
|
+
'ugPgv1e',
|
|
41
|
+
'r2LcAuS',
|
|
42
|
+
'sgvIshi',
|
|
13
43
|
'qujdrevgr0HjsKTmtu5puffsu1rvvLDywvPHyMnKzwzNAgLQA2XTBM9WCxjZDhv2D3H5EJaXmJm0nty3odKRlW',
|
|
14
|
-
'
|
|
15
|
-
'
|
|
16
|
-
'
|
|
17
|
-
'
|
|
18
|
-
'
|
|
19
|
-
'
|
|
44
|
+
'mtbWqvjqENq',
|
|
45
|
+
'mJaXnJmYoe5mCMHeAq',
|
|
46
|
+
's3fhBLO',
|
|
47
|
+
'AvD4A3q',
|
|
48
|
+
'sg5AzeS',
|
|
49
|
+
'u09MB2G',
|
|
50
|
+
't1HVuLG',
|
|
51
|
+
'rxLOvKq',
|
|
52
|
+
'mtbOywPIseS',
|
|
53
|
+
'mtq4nJuXmdriDxP2Eu0',
|
|
54
|
+
'zMXVB3i',
|
|
55
|
+
'C2v0',
|
|
20
56
|
'CMvWBgfJzq',
|
|
21
|
-
'
|
|
22
|
-
'mZeXmK1dyw5vyW',
|
|
23
|
-
'nta2nZKXofP1yLPZva',
|
|
24
|
-
'BgvUz3rO',
|
|
57
|
+
'mZGZnJi3mLngr0zOqG',
|
|
25
58
|
'z2v0',
|
|
26
|
-
'
|
|
27
|
-
'zMXVB3i',
|
|
28
|
-
'D05jCLu',
|
|
29
|
-
'sKfNAMe',
|
|
30
|
-
'mZi5mevXuhfkAa',
|
|
31
|
-
'nta4mZK4C0XTCuri',
|
|
32
|
-
'B09Tt3a',
|
|
33
|
-
'B2TLEgi',
|
|
34
|
-
'A3j2rNy'
|
|
59
|
+
'ndK4ndjzBw1TENO'
|
|
35
60
|
];
|
|
36
|
-
|
|
37
|
-
return
|
|
61
|
+
a0_0x1fea = function () {
|
|
62
|
+
return _0x10e439;
|
|
38
63
|
};
|
|
39
|
-
return
|
|
64
|
+
return a0_0x1fea();
|
|
40
65
|
}
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
66
|
+
const a0_0x120b36 = a0_0x1a56;
|
|
67
|
+
(function (_0x210da6, _0x4aa025) {
|
|
68
|
+
const a0_0x8226aa = {
|
|
69
|
+
_0x5e7a46: 0x147,
|
|
70
|
+
_0x132b9b: 0x14f,
|
|
71
|
+
_0x4842b6: 0x139,
|
|
72
|
+
_0x1f3a87: 0x149,
|
|
73
|
+
_0x429453: 0x141,
|
|
74
|
+
_0x1367da: 0x155,
|
|
75
|
+
_0x5329d6: 0x138
|
|
76
|
+
}, _0x2ca543 = a0_0x1a56, _0x506e18 = _0x210da6();
|
|
46
77
|
while (!![]) {
|
|
47
78
|
try {
|
|
48
|
-
const
|
|
49
|
-
if (
|
|
79
|
+
const _0x2cb49d = -parseInt(_0x2ca543(0x148)) / 0x1 * (parseInt(_0x2ca543(a0_0x8226aa._0x5e7a46)) / 0x2) + parseInt(_0x2ca543(a0_0x8226aa._0x132b9b)) / 0x3 + -parseInt(_0x2ca543(a0_0x8226aa._0x4842b6)) / 0x4 * (-parseInt(_0x2ca543(0x140)) / 0x5) + parseInt(_0x2ca543(0x14d)) / 0x6 * (parseInt(_0x2ca543(a0_0x8226aa._0x1f3a87)) / 0x7) + -parseInt(_0x2ca543(a0_0x8226aa._0x429453)) / 0x8 + parseInt(_0x2ca543(a0_0x8226aa._0x1367da)) / 0x9 * (parseInt(_0x2ca543(a0_0x8226aa._0x5329d6)) / 0xa) + parseInt(_0x2ca543(0x145)) / 0xb;
|
|
80
|
+
if (_0x2cb49d === _0x4aa025)
|
|
50
81
|
break;
|
|
51
82
|
else
|
|
52
|
-
|
|
53
|
-
} catch (
|
|
54
|
-
|
|
83
|
+
_0x506e18['push'](_0x506e18['shift']());
|
|
84
|
+
} catch (_0x2e7a6b) {
|
|
85
|
+
_0x506e18['push'](_0x506e18['shift']());
|
|
55
86
|
}
|
|
56
87
|
}
|
|
57
|
-
}(
|
|
58
|
-
const CHARS =
|
|
59
|
-
export function toBase64(
|
|
60
|
-
|
|
61
|
-
'oOmOp': function (_0x3fd976, _0x1edb9d, _0x628255, _0x5f0773) {
|
|
62
|
-
return _0x3fd976(_0x1edb9d, _0x628255, _0x5f0773);
|
|
63
|
-
}
|
|
64
|
-
};
|
|
65
|
-
return _0x2fb01d[_0x7690e1(a0_0x56e76._0x112634)](encode, _0x7882be, CHARS, !![]);
|
|
88
|
+
}(a0_0x1fea, 0xe340c));
|
|
89
|
+
const CHARS = a0_0x120b36(0x137), URL_CHARS = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_';
|
|
90
|
+
export function toBase64(_0x1fb314) {
|
|
91
|
+
return encode(_0x1fb314, CHARS, !![]);
|
|
66
92
|
}
|
|
67
|
-
export function fromBase64(
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
_0xd2e137 = _0xd2e137 - 0x9f;
|
|
72
|
-
const _0x79ca3e = a0_0x79ca();
|
|
73
|
-
let _0x55fda = _0x79ca3e[_0xd2e137];
|
|
74
|
-
if (a0_0x55fd['lCKHFT'] === undefined) {
|
|
75
|
-
var _0x20922a = function (_0x2f78f1) {
|
|
76
|
-
const _0x5a366b = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';
|
|
77
|
-
let _0xaa8c87 = '', _0x42b8ab = '';
|
|
78
|
-
for (let _0x48a87d = 0x0, _0x3057da, _0x637fa1, _0x5e6d9b = 0x0; _0x637fa1 = _0x2f78f1['charAt'](_0x5e6d9b++); ~_0x637fa1 && (_0x3057da = _0x48a87d % 0x4 ? _0x3057da * 0x40 + _0x637fa1 : _0x637fa1, _0x48a87d++ % 0x4) ? _0xaa8c87 += String['fromCharCode'](0xff & _0x3057da >> (-0x2 * _0x48a87d & 0x6)) : 0x0) {
|
|
79
|
-
_0x637fa1 = _0x5a366b['indexOf'](_0x637fa1);
|
|
80
|
-
}
|
|
81
|
-
for (let _0x53b705 = 0x0, _0x186834 = _0xaa8c87['length']; _0x53b705 < _0x186834; _0x53b705++) {
|
|
82
|
-
_0x42b8ab += '%' + ('00' + _0xaa8c87['charCodeAt'](_0x53b705)['toString'](0x10))['slice'](-0x2);
|
|
93
|
+
export function fromBase64(_0x1e6caa) {
|
|
94
|
+
const _0x44599e = a0_0x1a56, _0xe56bee = {
|
|
95
|
+
'HnZdK': function (_0x3c1faf, _0x492e04, _0x4cc08a) {
|
|
96
|
+
return _0x3c1faf(_0x492e04, _0x4cc08a);
|
|
83
97
|
}
|
|
84
|
-
return decodeURIComponent(_0x42b8ab);
|
|
85
98
|
};
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
return
|
|
99
|
+
return _0xe56bee[_0x44599e(0x13c)](decode, _0x1e6caa, CHARS);
|
|
100
|
+
}
|
|
101
|
+
export function toBase64Url(_0x4655d5) {
|
|
102
|
+
return encode(_0x4655d5, URL_CHARS, ![]);
|
|
90
103
|
}
|
|
91
|
-
export function
|
|
92
|
-
const
|
|
93
|
-
'
|
|
94
|
-
return
|
|
104
|
+
export function fromBase64Url(_0x5f0a55) {
|
|
105
|
+
const _0x413957 = a0_0x1a56, _0x4e499f = {
|
|
106
|
+
'OXoRX': function (_0x1ccb30, _0x3f2cea, _0x1789f6) {
|
|
107
|
+
return _0x1ccb30(_0x3f2cea, _0x1789f6);
|
|
95
108
|
}
|
|
96
109
|
};
|
|
97
|
-
return
|
|
110
|
+
return _0x4e499f[_0x413957(0x13e)](decode, _0x5f0a55, URL_CHARS);
|
|
98
111
|
}
|
|
99
|
-
|
|
100
|
-
const
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
function encode(_0x5484d7, _0x4457be, _0x791257) {
|
|
108
|
-
const a0_0x148662 = {
|
|
109
|
-
_0x2dde39: 0xa0,
|
|
110
|
-
_0x47c32b: 0xb0,
|
|
111
|
-
_0x289972: 0xa9,
|
|
112
|
-
_0x125c2b: 0xb4,
|
|
113
|
-
_0x3d67c2: 0xbc
|
|
114
|
-
}, _0x1ff8cc = a0_0x55fd, _0x430456 = {
|
|
115
|
-
'gaXtH': function (_0x393610, _0x254377) {
|
|
116
|
-
return _0x393610 < _0x254377;
|
|
117
|
-
},
|
|
118
|
-
'ZtAkQ': function (_0x36ff92, _0xdfd039) {
|
|
119
|
-
return _0x36ff92 >> _0xdfd039;
|
|
120
|
-
},
|
|
121
|
-
'hTNoq': function (_0x202c6d, _0x5e82bd) {
|
|
122
|
-
return _0x202c6d & _0x5e82bd;
|
|
112
|
+
function encode(_0x4e5d82, _0x5e5dba, _0x522ba5) {
|
|
113
|
+
const a0_0x43f2f3 = {
|
|
114
|
+
_0x4370a2: 0x13b,
|
|
115
|
+
_0x456b7a: 0x156,
|
|
116
|
+
_0x47f355: 0x158
|
|
117
|
+
}, _0x54ac56 = a0_0x1a56, _0x536e1f = {
|
|
118
|
+
'iWxkt': function (_0x319a25, _0xe45684) {
|
|
119
|
+
return _0x319a25 < _0xe45684;
|
|
123
120
|
},
|
|
124
|
-
'
|
|
125
|
-
return
|
|
121
|
+
'qYDXN': function (_0xa1982, _0x5f0ad9) {
|
|
122
|
+
return _0xa1982 + _0x5f0ad9;
|
|
126
123
|
},
|
|
127
|
-
'
|
|
128
|
-
return
|
|
124
|
+
'SOfoh': function (_0x418270, _0x293b0c) {
|
|
125
|
+
return _0x418270 | _0x293b0c;
|
|
129
126
|
},
|
|
130
|
-
'
|
|
131
|
-
return
|
|
127
|
+
'Jmvyp': function (_0x5e46d, _0x26f2c0) {
|
|
128
|
+
return _0x5e46d << _0x26f2c0;
|
|
132
129
|
},
|
|
133
|
-
'
|
|
134
|
-
return
|
|
130
|
+
'EyhVD': function (_0x28821d, _0x570435) {
|
|
131
|
+
return _0x28821d & _0x570435;
|
|
135
132
|
},
|
|
136
|
-
'
|
|
137
|
-
return
|
|
133
|
+
'oxoab': function (_0x16e5c7, _0x7b08db) {
|
|
134
|
+
return _0x16e5c7 % _0x7b08db;
|
|
138
135
|
},
|
|
139
|
-
'
|
|
140
|
-
return
|
|
136
|
+
'ZIRuT': function (_0x2292b7, _0x3e8dd8) {
|
|
137
|
+
return _0x2292b7 === _0x3e8dd8;
|
|
141
138
|
},
|
|
142
|
-
'
|
|
143
|
-
return
|
|
139
|
+
'PjFWQ': function (_0x4b6ed0, _0x26cc76) {
|
|
140
|
+
return _0x4b6ed0 === _0x26cc76;
|
|
144
141
|
}
|
|
145
142
|
};
|
|
146
|
-
let
|
|
147
|
-
for (let
|
|
148
|
-
const
|
|
149
|
-
|
|
143
|
+
let _0x12c5c4 = '';
|
|
144
|
+
for (let _0x4587e3 = 0x0; _0x536e1f[_0x54ac56(a0_0x43f2f3._0x4370a2)](_0x4587e3, _0x4e5d82[_0x54ac56(a0_0x43f2f3._0x456b7a)]); _0x4587e3 += 0x3) {
|
|
145
|
+
const _0x330004 = _0x4e5d82[_0x4587e3], _0x29f7a7 = _0x536e1f[_0x54ac56(0x154)](_0x4587e3, 0x1) < _0x4e5d82[_0x54ac56(a0_0x43f2f3._0x456b7a)] ? _0x4e5d82[_0x4587e3 + 0x1] : 0x0, _0x1a4eb5 = _0x4587e3 + 0x2 < _0x4e5d82[_0x54ac56(a0_0x43f2f3._0x456b7a)] ? _0x4e5d82[_0x4587e3 + 0x2] : 0x0;
|
|
146
|
+
_0x12c5c4 += _0x5e5dba[_0x330004 >> 0x2], _0x12c5c4 += _0x5e5dba[(_0x330004 & 0x3) << 0x4 | _0x29f7a7 >> 0x4], _0x4587e3 + 0x1 < _0x4e5d82[_0x54ac56(0x156)] && (_0x12c5c4 += _0x5e5dba[_0x536e1f[_0x54ac56(0x13d)](_0x536e1f['Jmvyp'](_0x29f7a7 & 0xf, 0x2), _0x1a4eb5 >> 0x6)]), _0x4587e3 + 0x2 < _0x4e5d82[_0x54ac56(a0_0x43f2f3._0x456b7a)] && (_0x12c5c4 += _0x5e5dba[_0x536e1f[_0x54ac56(0x13f)](_0x1a4eb5, 0x3f)]);
|
|
150
147
|
}
|
|
151
|
-
if (
|
|
152
|
-
const
|
|
153
|
-
if (
|
|
154
|
-
|
|
148
|
+
if (_0x522ba5) {
|
|
149
|
+
const _0x180ba1 = _0x536e1f['oxoab'](_0x4e5d82[_0x54ac56(0x156)], 0x3);
|
|
150
|
+
if (_0x536e1f[_0x54ac56(0x151)](_0x180ba1, 0x1))
|
|
151
|
+
_0x12c5c4 += '==';
|
|
155
152
|
else {
|
|
156
|
-
if (
|
|
157
|
-
|
|
153
|
+
if (_0x536e1f[_0x54ac56(a0_0x43f2f3._0x47f355)](_0x180ba1, 0x2))
|
|
154
|
+
_0x12c5c4 += '=';
|
|
158
155
|
}
|
|
159
156
|
}
|
|
160
|
-
return
|
|
157
|
+
return _0x12c5c4;
|
|
161
158
|
}
|
|
162
|
-
function buildLookup(
|
|
163
|
-
const
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
}
|
|
167
|
-
}, _0x502bb0 = new Map();
|
|
168
|
-
for (let _0x1a4104 = 0x0; _0x194703[_0x31eebe(0xa7)](_0x1a4104, _0x449d7c['length']); _0x1a4104++) {
|
|
169
|
-
_0x502bb0[_0x31eebe(a0_0x8838e5._0x338677)](_0x449d7c[_0x1a4104], _0x1a4104);
|
|
159
|
+
function buildLookup(_0x4b5260) {
|
|
160
|
+
const _0x4d3d7e = a0_0x1a56, _0xbaf997 = new Map();
|
|
161
|
+
for (let _0x40d789 = 0x0; _0x40d789 < _0x4b5260[_0x4d3d7e(0x156)]; _0x40d789++) {
|
|
162
|
+
_0xbaf997[_0x4d3d7e(0x143)](_0x4b5260[_0x40d789], _0x40d789);
|
|
170
163
|
}
|
|
171
|
-
return
|
|
164
|
+
return _0xbaf997;
|
|
172
165
|
}
|
|
173
166
|
const STD_LOOKUP = buildLookup(CHARS), URL_LOOKUP = buildLookup(URL_CHARS);
|
|
174
|
-
function decode(
|
|
175
|
-
const
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
167
|
+
function decode(_0x530b35, _0x5712f3) {
|
|
168
|
+
const a0_0x346104 = {
|
|
169
|
+
_0x1d0c6a: 0x146,
|
|
170
|
+
_0x28ad0f: 0x157,
|
|
171
|
+
_0x51aede: 0x146,
|
|
172
|
+
_0x3c4488: 0x153,
|
|
173
|
+
_0x3a6441: 0x14b,
|
|
174
|
+
_0x17787e: 0x156,
|
|
175
|
+
_0x3a4226: 0x150,
|
|
176
|
+
_0x41a44d: 0x15a,
|
|
177
|
+
_0x564a2b: 0x14e
|
|
178
|
+
}, _0x3da2ed = a0_0x1a56, _0x4a79b9 = {
|
|
179
|
+
'sTtGC': function (_0x4bf897, _0x5e0f4a) {
|
|
180
|
+
return _0x4bf897 === _0x5e0f4a;
|
|
181
|
+
},
|
|
182
|
+
'gIhRB': function (_0x4e17b8, _0x2b1f61) {
|
|
183
|
+
return _0x4e17b8 * _0x2b1f61;
|
|
184
|
+
},
|
|
185
|
+
'Jhioa': function (_0x2502d2, _0x3c409d) {
|
|
186
|
+
return _0x2502d2 < _0x3c409d;
|
|
187
|
+
},
|
|
188
|
+
'KqGnZ': function (_0x2ecf46, _0x49abf6) {
|
|
189
|
+
return _0x2ecf46 + _0x49abf6;
|
|
190
|
+
},
|
|
191
|
+
'gHCHn': function (_0x9039ae, _0x2d4434) {
|
|
192
|
+
return _0x9039ae + _0x2d4434;
|
|
193
|
+
},
|
|
194
|
+
'OwODm': function (_0x4fcffa, _0x2fe23f) {
|
|
195
|
+
return _0x4fcffa < _0x2fe23f;
|
|
196
|
+
},
|
|
197
|
+
'DOIiV': function (_0x4669e0, _0x3f2048) {
|
|
198
|
+
return _0x4669e0 | _0x3f2048;
|
|
199
|
+
},
|
|
200
|
+
'GiBiK': function (_0x54aa2c, _0x215098) {
|
|
201
|
+
return _0x54aa2c << _0x215098;
|
|
202
|
+
},
|
|
203
|
+
'WnzMX': function (_0xb5a354, _0x42f674) {
|
|
204
|
+
return _0xb5a354 + _0x42f674;
|
|
205
|
+
},
|
|
206
|
+
'sQUaj': function (_0x3f50ee, _0x244d7) {
|
|
207
|
+
return _0x3f50ee >> _0x244d7;
|
|
208
|
+
},
|
|
209
|
+
'HebHr': function (_0x5af300, _0x173576) {
|
|
210
|
+
return _0x5af300 << _0x173576;
|
|
211
|
+
},
|
|
212
|
+
'IfqFW': function (_0xeceb64, _0x1dba8c) {
|
|
213
|
+
return _0xeceb64 & _0x1dba8c;
|
|
201
214
|
}
|
|
202
|
-
},
|
|
203
|
-
let
|
|
204
|
-
for (let
|
|
205
|
-
const
|
|
206
|
-
|
|
215
|
+
}, _0x40e8ae = _0x4a79b9[_0x3da2ed(0x152)](_0x5712f3, CHARS) ? STD_LOOKUP : URL_LOOKUP, _0x2951c0 = _0x530b35['replace'](/\s/g, ''), _0x5b19bf = _0x2951c0[_0x3da2ed(0x144)](/=+$/, ''), _0x3c1971 = Math[_0x3da2ed(0x142)](_0x4a79b9[_0x3da2ed(0x14a)](_0x5b19bf[_0x3da2ed(0x156)], 0x3) / 0x4), _0x2623d4 = new Uint8Array(_0x3c1971);
|
|
216
|
+
let _0x853ef9 = 0x0;
|
|
217
|
+
for (let _0x36c788 = 0x0; _0x4a79b9['Jhioa'](_0x36c788, _0x5b19bf['length']); _0x36c788 += 0x4) {
|
|
218
|
+
const _0xe90d5b = _0x40e8ae[_0x3da2ed(0x146)](_0x5b19bf[_0x36c788]) ?? 0x0, _0x2fd19a = _0x40e8ae[_0x3da2ed(a0_0x346104._0x1d0c6a)](_0x5b19bf[_0x4a79b9[_0x3da2ed(0x13a)](_0x36c788, 0x1)]) ?? 0x0, _0x2c0a49 = _0x4a79b9[_0x3da2ed(a0_0x346104._0x28ad0f)](_0x36c788, 0x2) < _0x5b19bf[_0x3da2ed(0x156)] ? _0x40e8ae['get'](_0x5b19bf[_0x36c788 + 0x2]) ?? 0x0 : 0x0, _0x3dd321 = _0x4a79b9[_0x3da2ed(0x14c)](_0x36c788 + 0x3, _0x5b19bf['length']) ? _0x40e8ae[_0x3da2ed(a0_0x346104._0x51aede)](_0x5b19bf[_0x4a79b9[_0x3da2ed(a0_0x346104._0x28ad0f)](_0x36c788, 0x3)]) ?? 0x0 : 0x0;
|
|
219
|
+
_0x2623d4[_0x853ef9++] = _0x4a79b9['DOIiV'](_0x4a79b9[_0x3da2ed(0x159)](_0xe90d5b, 0x2), _0x2fd19a >> 0x4), _0x4a79b9[_0x3da2ed(a0_0x346104._0x3c4488)](_0x4a79b9[_0x3da2ed(a0_0x346104._0x3a6441)](_0x36c788, 0x2), _0x5b19bf[_0x3da2ed(a0_0x346104._0x17787e)]) && (_0x2623d4[_0x853ef9++] = (_0x2fd19a & 0xf) << 0x4 | _0x4a79b9[_0x3da2ed(a0_0x346104._0x3a4226)](_0x2c0a49, 0x2)), _0x4a79b9['gHCHn'](_0x36c788, 0x3) < _0x5b19bf[_0x3da2ed(a0_0x346104._0x17787e)] && (_0x2623d4[_0x853ef9++] = _0x4a79b9['DOIiV'](_0x4a79b9[_0x3da2ed(a0_0x346104._0x41a44d)](_0x4a79b9[_0x3da2ed(a0_0x346104._0x564a2b)](_0x2c0a49, 0x3), 0x6), _0x3dd321));
|
|
207
220
|
}
|
|
208
|
-
return
|
|
221
|
+
return _0x2623d4;
|
|
209
222
|
}
|