@solibo/solibo-sdk 1.0.23 → 1.0.25-SNAPSHOT
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/KmLogging-logging.js +291 -5
- package/KmLogging-logging.js.map +1 -1
- package/Kotlin-DateTime-library-kotlinx-datetime.js +7250 -5
- package/Kotlin-DateTime-library-kotlinx-datetime.js.map +1 -1
- package/KotlinBigInteger-bignum.js +5989 -5
- package/KotlinBigInteger-bignum.js.map +1 -1
- package/MultiplatformSettings-multiplatform-settings-no-arg.js +19 -5
- package/MultiplatformSettings-multiplatform-settings-no-arg.js.map +1 -1
- package/MultiplatformSettings-multiplatform-settings.js +72 -5
- package/MultiplatformSettings-multiplatform-settings.js.map +1 -1
- package/Stately-stately-concurrency.js +27 -5
- package/Stately-stately-concurrency.js.map +1 -1
- package/cryptography-kotlin-cryptography-bigint.js +244 -5
- package/cryptography-kotlin-cryptography-bigint.js.map +1 -1
- package/cryptography-kotlin-cryptography-core.js +957 -60
- package/cryptography-kotlin-cryptography-core.js.map +1 -1
- package/cryptography-kotlin-cryptography-provider-base.js +67 -5
- package/cryptography-kotlin-cryptography-provider-base.js.map +1 -1
- package/cryptography-kotlin-cryptography-provider-webcrypto.js +1151 -13
- package/cryptography-kotlin-cryptography-provider-webcrypto.js.map +1 -1
- package/cryptography-kotlin-cryptography-random.js +77 -8
- package/cryptography-kotlin-cryptography-random.js.map +1 -1
- package/cryptography-kotlin-cryptography-serialization-asn1-modules.js +705 -5
- package/cryptography-kotlin-cryptography-serialization-asn1-modules.js.map +1 -1
- package/cryptography-kotlin-cryptography-serialization-asn1.js +1417 -5
- package/cryptography-kotlin-cryptography-serialization-asn1.js.map +1 -1
- package/cryptography-kotlin-cryptography-serialization-pem.js +155 -5
- package/cryptography-kotlin-cryptography-serialization-pem.js.map +1 -1
- package/kotlin-kotlin-stdlib.js +16616 -1222
- package/kotlin-kotlin-stdlib.js.map +1 -1
- package/kotlinx-atomicfu.js +187 -8
- package/kotlinx-atomicfu.js.map +1 -1
- package/kotlinx-browser.js +19 -0
- package/kotlinx-browser.js.map +1 -0
- package/kotlinx-coroutines-core.js +9817 -5
- package/kotlinx-coroutines-core.js.map +1 -1
- package/kotlinx-io-kotlinx-io-bytestring.js +204 -5
- package/kotlinx-io-kotlinx-io-bytestring.js.map +1 -1
- package/kotlinx-io-kotlinx-io-core.js +2025 -5
- package/kotlinx-io-kotlinx-io-core.js.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-core.js +6048 -5
- package/kotlinx-serialization-kotlinx-serialization-core.js.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-json.js +5073 -5
- package/kotlinx-serialization-kotlinx-serialization-json.js.map +1 -1
- package/ktor-ktor-client-auth.js +1500 -5
- package/ktor-ktor-client-auth.js.map +1 -1
- package/ktor-ktor-client-content-negotiation.js +757 -5
- package/ktor-ktor-client-content-negotiation.js.map +1 -1
- package/ktor-ktor-client-core.js +13613 -36
- package/ktor-ktor-client-core.js.map +1 -1
- package/ktor-ktor-client-logging.js +3276 -5
- package/ktor-ktor-client-logging.js.map +1 -1
- package/ktor-ktor-events.js +84 -5
- package/ktor-ktor-events.js.map +1 -1
- package/ktor-ktor-http-cio.js +2261 -5
- package/ktor-ktor-http-cio.js.map +1 -1
- package/ktor-ktor-http.js +5127 -5
- package/ktor-ktor-http.js.map +1 -1
- package/ktor-ktor-io.js +3510 -5
- package/ktor-ktor-io.js.map +1 -1
- package/ktor-ktor-serialization-kotlinx-json.js +57 -5
- package/ktor-ktor-serialization-kotlinx-json.js.map +1 -1
- package/ktor-ktor-serialization-kotlinx.js +855 -5
- package/ktor-ktor-serialization-kotlinx.js.map +1 -1
- package/ktor-ktor-serialization.js +369 -5
- package/ktor-ktor-serialization.js.map +1 -1
- package/ktor-ktor-utils.js +3610 -5
- package/ktor-ktor-utils.js.map +1 -1
- package/ktor-ktor-websockets.js +2542 -5
- package/ktor-ktor-websockets.js.map +1 -1
- package/package.json +1 -1
- package/solibo-sdk-sdk-home-api.js +5027 -5
- package/solibo-sdk-sdk-home-api.js.map +1 -1
- package/solibo-sdk-sdk.d.ts +118 -0
- package/solibo-sdk-sdk.js +6900 -4
- package/solibo-sdk-sdk.js.map +1 -1
|
@@ -1,13 +1,252 @@
|
|
|
1
1
|
(function (factory) {
|
|
2
2
|
if (typeof define === 'function' && define.amd)
|
|
3
|
-
define(['exports'], factory);
|
|
3
|
+
define(['exports', './kotlinx-serialization-kotlinx-serialization-core.js', './kotlin-kotlin-stdlib.js'], factory);
|
|
4
4
|
else if (typeof exports === 'object')
|
|
5
|
-
factory(module.exports);
|
|
6
|
-
else
|
|
7
|
-
|
|
8
|
-
|
|
5
|
+
factory(module.exports, require('./kotlinx-serialization-kotlinx-serialization-core.js'), require('./kotlin-kotlin-stdlib.js'));
|
|
6
|
+
else {
|
|
7
|
+
if (typeof globalThis['kotlinx-serialization-kotlinx-serialization-core'] === 'undefined') {
|
|
8
|
+
throw new Error("Error loading module 'cryptography-kotlin-cryptography-bigint'. Its dependency 'kotlinx-serialization-kotlinx-serialization-core' was not found. Please, check whether 'kotlinx-serialization-kotlinx-serialization-core' is loaded prior to 'cryptography-kotlin-cryptography-bigint'.");
|
|
9
|
+
}
|
|
10
|
+
if (typeof globalThis['kotlin-kotlin-stdlib'] === 'undefined') {
|
|
11
|
+
throw new Error("Error loading module 'cryptography-kotlin-cryptography-bigint'. Its dependency 'kotlin-kotlin-stdlib' was not found. Please, check whether 'kotlin-kotlin-stdlib' is loaded prior to 'cryptography-kotlin-cryptography-bigint'.");
|
|
12
|
+
}
|
|
13
|
+
globalThis['cryptography-kotlin-cryptography-bigint'] = factory(typeof globalThis['cryptography-kotlin-cryptography-bigint'] === 'undefined' ? {} : globalThis['cryptography-kotlin-cryptography-bigint'], globalThis['kotlinx-serialization-kotlinx-serialization-core'], globalThis['kotlin-kotlin-stdlib']);
|
|
14
|
+
}
|
|
15
|
+
}(function (_, kotlin_org_jetbrains_kotlinx_kotlinx_serialization_core, kotlin_kotlin) {
|
|
9
16
|
'use strict';
|
|
17
|
+
//region block: imports
|
|
18
|
+
var STRING_getInstance = kotlin_org_jetbrains_kotlinx_kotlinx_serialization_core.$_$.g;
|
|
19
|
+
var PrimitiveSerialDescriptor = kotlin_org_jetbrains_kotlinx_kotlinx_serialization_core.$_$.f1;
|
|
20
|
+
var protoOf = kotlin_kotlin.$_$.fd;
|
|
21
|
+
var THROW_CCE = kotlin_kotlin.$_$.di;
|
|
22
|
+
var KSerializer = kotlin_org_jetbrains_kotlinx_kotlinx_serialization_core.$_$.o2;
|
|
23
|
+
var initMetadataForObject = kotlin_kotlin.$_$.lc;
|
|
24
|
+
var VOID = kotlin_kotlin.$_$.c;
|
|
25
|
+
var arrayCopy = kotlin_kotlin.$_$.e6;
|
|
26
|
+
var Unit_instance = kotlin_kotlin.$_$.p5;
|
|
27
|
+
var initMetadataForCompanion = kotlin_kotlin.$_$.gc;
|
|
28
|
+
var Number_0 = kotlin_kotlin.$_$.zh;
|
|
29
|
+
var toByte = kotlin_kotlin.$_$.gg;
|
|
30
|
+
var toShort = kotlin_kotlin.$_$.rg;
|
|
31
|
+
var toInt = kotlin_kotlin.$_$.mg;
|
|
32
|
+
var toLong = kotlin_kotlin.$_$.pg;
|
|
33
|
+
var getStringHashCode = kotlin_kotlin.$_$.dc;
|
|
34
|
+
var Comparable = kotlin_kotlin.$_$.ph;
|
|
35
|
+
var initMetadataForClass = kotlin_kotlin.$_$.fc;
|
|
36
|
+
var toString = kotlin_kotlin.$_$.id;
|
|
37
|
+
var IllegalArgumentException_init_$Create$ = kotlin_kotlin.$_$.q1;
|
|
38
|
+
var toHexString = kotlin_kotlin.$_$.kg;
|
|
39
|
+
var isBlank = kotlin_kotlin.$_$.bf;
|
|
40
|
+
var IllegalStateException_init_$Create$ = kotlin_kotlin.$_$.u1;
|
|
41
|
+
var toByte_0 = kotlin_kotlin.$_$.gd;
|
|
42
|
+
var hexToByteArray = kotlin_kotlin.$_$.xe;
|
|
43
|
+
//endregion
|
|
10
44
|
//region block: pre-declaration
|
|
45
|
+
initMetadataForObject(BigIntAsStringSerializer, 'BigIntAsStringSerializer', VOID, VOID, [KSerializer]);
|
|
46
|
+
initMetadataForCompanion(Companion);
|
|
47
|
+
initMetadataForClass(BigInt_0, 'BigInt', VOID, Number_0, [Number_0, Comparable], VOID, VOID, {0: BigIntAsStringSerializer_getInstance});
|
|
48
|
+
//endregion
|
|
49
|
+
function BigIntAsStringSerializer() {
|
|
50
|
+
BigIntAsStringSerializer_instance = this;
|
|
51
|
+
this.x7r_1 = PrimitiveSerialDescriptor('BigInt', STRING_getInstance());
|
|
52
|
+
}
|
|
53
|
+
protoOf(BigIntAsStringSerializer).v1y = function () {
|
|
54
|
+
return this.x7r_1;
|
|
55
|
+
};
|
|
56
|
+
protoOf(BigIntAsStringSerializer).y7r = function (encoder, value) {
|
|
57
|
+
encoder.n23(value.toString());
|
|
58
|
+
};
|
|
59
|
+
protoOf(BigIntAsStringSerializer).i1z = function (encoder, value) {
|
|
60
|
+
return this.y7r(encoder, value instanceof BigInt_0 ? value : THROW_CCE());
|
|
61
|
+
};
|
|
62
|
+
protoOf(BigIntAsStringSerializer).j1z = function (decoder) {
|
|
63
|
+
return toBigInt_3(decoder.f22());
|
|
64
|
+
};
|
|
65
|
+
var BigIntAsStringSerializer_instance;
|
|
66
|
+
function BigIntAsStringSerializer_getInstance() {
|
|
67
|
+
if (BigIntAsStringSerializer_instance == null)
|
|
68
|
+
new BigIntAsStringSerializer();
|
|
69
|
+
return BigIntAsStringSerializer_instance;
|
|
70
|
+
}
|
|
71
|
+
function encodeToByteArray(_this__u8e3s4) {
|
|
72
|
+
var positive = _this__u8e3s4.a7s(0) >= 0;
|
|
73
|
+
var bytes = positive ? encodeToByteArray$decodeFromHex(_this__u8e3s4.z7r_1.toString(16)) : invertTwoComplement(encodeToByteArray$decodeFromHex(jsBigIntNegate(_this__u8e3s4.z7r_1).toString(16)));
|
|
74
|
+
var firstBytePositive = bytes[0] >= 0;
|
|
75
|
+
if (positive === firstBytePositive)
|
|
76
|
+
return bytes;
|
|
77
|
+
// Inline function 'kotlin.also' call
|
|
78
|
+
var this_0 = new Int8Array(bytes.length + 1 | 0);
|
|
79
|
+
this_0[0] = positive ? 0 : -1;
|
|
80
|
+
// Inline function 'kotlin.collections.copyInto' call
|
|
81
|
+
var endIndex = bytes.length;
|
|
82
|
+
// Inline function 'kotlin.js.unsafeCast' call
|
|
83
|
+
// Inline function 'kotlin.js.asDynamic' call
|
|
84
|
+
var tmp = bytes;
|
|
85
|
+
// Inline function 'kotlin.js.unsafeCast' call
|
|
86
|
+
// Inline function 'kotlin.js.asDynamic' call
|
|
87
|
+
arrayCopy(tmp, this_0, 1, 0, endIndex);
|
|
88
|
+
return this_0;
|
|
89
|
+
}
|
|
90
|
+
function Companion() {
|
|
91
|
+
Companion_instance = this;
|
|
92
|
+
this.b7s_1 = new BigInt_0(BigInt(0));
|
|
93
|
+
}
|
|
94
|
+
protoOf(Companion).q67 = function () {
|
|
95
|
+
return BigIntAsStringSerializer_getInstance();
|
|
96
|
+
};
|
|
97
|
+
var Companion_instance;
|
|
98
|
+
function Companion_getInstance() {
|
|
99
|
+
if (Companion_instance == null)
|
|
100
|
+
new Companion();
|
|
101
|
+
return Companion_instance;
|
|
102
|
+
}
|
|
103
|
+
function BigInt_0(jsBigInt) {
|
|
104
|
+
Companion_getInstance();
|
|
105
|
+
Number_0.call(this);
|
|
106
|
+
this.z7r_1 = jsBigInt;
|
|
107
|
+
}
|
|
108
|
+
protoOf(BigInt_0).a7s = function (other) {
|
|
109
|
+
return this.c7s(toBigInt(other));
|
|
110
|
+
};
|
|
111
|
+
protoOf(BigInt_0).c7s = function (other) {
|
|
112
|
+
return jsBigIntCompareTo(this.z7r_1, other.z7r_1);
|
|
113
|
+
};
|
|
114
|
+
protoOf(BigInt_0).d = function (other) {
|
|
115
|
+
return this.c7s(other instanceof BigInt_0 ? other : THROW_CCE());
|
|
116
|
+
};
|
|
117
|
+
protoOf(BigInt_0).d7s = function () {
|
|
118
|
+
return toByte(jsBigIntAsInt(this.z7r_1, 8).toString());
|
|
119
|
+
};
|
|
120
|
+
protoOf(BigInt_0).e7s = function () {
|
|
121
|
+
return toShort(jsBigIntAsInt(this.z7r_1, 16).toString());
|
|
122
|
+
};
|
|
123
|
+
protoOf(BigInt_0).f7s = function () {
|
|
124
|
+
return toInt(jsBigIntAsInt(this.z7r_1, 32).toString());
|
|
125
|
+
};
|
|
126
|
+
protoOf(BigInt_0).g7s = function () {
|
|
127
|
+
return toLong(jsBigIntAsInt(this.z7r_1, 64).toString());
|
|
128
|
+
};
|
|
129
|
+
protoOf(BigInt_0).toString = function () {
|
|
130
|
+
return this.z7r_1.toString();
|
|
131
|
+
};
|
|
132
|
+
protoOf(BigInt_0).hashCode = function () {
|
|
133
|
+
return getStringHashCode(this.z7r_1.toString(36));
|
|
134
|
+
};
|
|
135
|
+
protoOf(BigInt_0).equals = function (other) {
|
|
136
|
+
if (!(other instanceof BigInt_0))
|
|
137
|
+
return false;
|
|
138
|
+
return jsBigIntEquals(this.z7r_1, other.z7r_1);
|
|
139
|
+
};
|
|
140
|
+
function decodeToBigInt(_this__u8e3s4) {
|
|
141
|
+
// Inline function 'kotlin.collections.isNotEmpty' call
|
|
142
|
+
// Inline function 'kotlin.collections.isEmpty' call
|
|
143
|
+
// Inline function 'kotlin.require' call
|
|
144
|
+
if (!!(_this__u8e3s4.length === 0)) {
|
|
145
|
+
var message = 'empty array';
|
|
146
|
+
throw IllegalArgumentException_init_$Create$(toString(message));
|
|
147
|
+
}
|
|
148
|
+
if (_this__u8e3s4.length === 1 && _this__u8e3s4[0] === 0)
|
|
149
|
+
return Companion_getInstance().b7s_1;
|
|
150
|
+
var positive = _this__u8e3s4[0] >= 0;
|
|
151
|
+
var tmp;
|
|
152
|
+
if (positive) {
|
|
153
|
+
tmp = BigInt('0x' + toHexString(_this__u8e3s4));
|
|
154
|
+
} else {
|
|
155
|
+
// Inline function 'kotlin.collections.copyOf' call
|
|
156
|
+
// Inline function 'kotlin.js.asDynamic' call
|
|
157
|
+
var tmp$ret$5 = _this__u8e3s4.slice();
|
|
158
|
+
tmp = jsBigIntNegate(BigInt('0x' + toHexString(invertTwoComplement(tmp$ret$5))));
|
|
159
|
+
}
|
|
160
|
+
var jsBigInt = tmp;
|
|
161
|
+
return new BigInt_0(jsBigInt);
|
|
162
|
+
}
|
|
163
|
+
function toBigInt(_this__u8e3s4) {
|
|
164
|
+
return _this__u8e3s4 === 0 ? Companion_getInstance().b7s_1 : new BigInt_0(BigInt(_this__u8e3s4));
|
|
165
|
+
}
|
|
166
|
+
function toBigInt_0(_this__u8e3s4) {
|
|
167
|
+
return toBigInt(_this__u8e3s4);
|
|
168
|
+
}
|
|
169
|
+
function toBigInt_1(_this__u8e3s4) {
|
|
170
|
+
return toBigInt(_this__u8e3s4);
|
|
171
|
+
}
|
|
172
|
+
function toBigInt_2(_this__u8e3s4) {
|
|
173
|
+
return _this__u8e3s4 === 0n ? Companion_getInstance().b7s_1 : new BigInt_0(BigInt(_this__u8e3s4.toString()));
|
|
174
|
+
}
|
|
175
|
+
function toBigInt_3(_this__u8e3s4) {
|
|
176
|
+
// Inline function 'kotlin.text.isNotBlank' call
|
|
177
|
+
// Inline function 'kotlin.check' call
|
|
178
|
+
if (!!isBlank(_this__u8e3s4)) {
|
|
179
|
+
var message = 'empty or blank string';
|
|
180
|
+
throw IllegalStateException_init_$Create$(toString(message));
|
|
181
|
+
}
|
|
182
|
+
return new BigInt_0(BigInt(_this__u8e3s4));
|
|
183
|
+
}
|
|
184
|
+
function invertTwoComplement(_this__u8e3s4) {
|
|
185
|
+
var tmp$ret$1;
|
|
186
|
+
$l$block: {
|
|
187
|
+
// Inline function 'kotlin.collections.indexOfLast' call
|
|
188
|
+
var inductionVariable = _this__u8e3s4.length - 1 | 0;
|
|
189
|
+
if (0 <= inductionVariable)
|
|
190
|
+
do {
|
|
191
|
+
var index = inductionVariable;
|
|
192
|
+
inductionVariable = inductionVariable + -1 | 0;
|
|
193
|
+
if (!(_this__u8e3s4[index] === 0)) {
|
|
194
|
+
tmp$ret$1 = index;
|
|
195
|
+
break $l$block;
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
while (0 <= inductionVariable);
|
|
199
|
+
tmp$ret$1 = -1;
|
|
200
|
+
}
|
|
201
|
+
var firstNonZeroFromEnd = tmp$ret$1;
|
|
202
|
+
// Inline function 'kotlin.repeat' call
|
|
203
|
+
var times = _this__u8e3s4.length;
|
|
204
|
+
var inductionVariable_0 = 0;
|
|
205
|
+
if (inductionVariable_0 < times)
|
|
206
|
+
do {
|
|
207
|
+
var index_0 = inductionVariable_0;
|
|
208
|
+
inductionVariable_0 = inductionVariable_0 + 1 | 0;
|
|
209
|
+
var negated = ~_this__u8e3s4[index_0];
|
|
210
|
+
_this__u8e3s4[index_0] = toByte_0(index_0 < firstNonZeroFromEnd ? negated : negated + 1 | 0);
|
|
211
|
+
}
|
|
212
|
+
while (inductionVariable_0 < times);
|
|
213
|
+
return _this__u8e3s4;
|
|
214
|
+
}
|
|
215
|
+
function encodeToByteArray$decodeFromHex(_this__u8e3s4) {
|
|
216
|
+
return hexToByteArray((_this__u8e3s4.length % 2 | 0) === 0 ? _this__u8e3s4 : '0' + _this__u8e3s4);
|
|
217
|
+
}
|
|
218
|
+
function jsBigIntNegate(value) {
|
|
219
|
+
// Inline function 'kotlin.js.unsafeCast' call
|
|
220
|
+
return -value;
|
|
221
|
+
}
|
|
222
|
+
function jsBigIntCompareTo(a, b) {
|
|
223
|
+
// Inline function 'kotlin.js.unsafeCast' call
|
|
224
|
+
return function () {
|
|
225
|
+
if (a < b)
|
|
226
|
+
return -1;
|
|
227
|
+
if (a > b)
|
|
228
|
+
return 1;
|
|
229
|
+
return 0;
|
|
230
|
+
}();
|
|
231
|
+
}
|
|
232
|
+
function jsBigIntAsInt(value, bits) {
|
|
233
|
+
// Inline function 'kotlin.js.unsafeCast' call
|
|
234
|
+
return BigInt.asIntN(bits, value);
|
|
235
|
+
}
|
|
236
|
+
function jsBigIntEquals(a, b) {
|
|
237
|
+
// Inline function 'kotlin.js.unsafeCast' call
|
|
238
|
+
return a === b;
|
|
239
|
+
}
|
|
240
|
+
//region block: exports
|
|
241
|
+
_.$_$ = _.$_$ || {};
|
|
242
|
+
_.$_$.a = BigInt_0;
|
|
243
|
+
_.$_$.b = decodeToBigInt;
|
|
244
|
+
_.$_$.c = encodeToByteArray;
|
|
245
|
+
_.$_$.d = toBigInt;
|
|
246
|
+
_.$_$.e = toBigInt_0;
|
|
247
|
+
_.$_$.f = toBigInt_2;
|
|
248
|
+
_.$_$.g = toBigInt_1;
|
|
249
|
+
_.$_$.h = Companion_getInstance;
|
|
11
250
|
//endregion
|
|
12
251
|
return _;
|
|
13
252
|
}));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":[],"sourcesContent":[],"ignoreList":[],"x_google_ignoreList":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../cryptography-kotlin/cryptography-kotlin/cryptography-bigint/src/commonMain/kotlin/BigIntSerializers.kt","../../../../../../../../../cryptography-kotlin/cryptography-kotlin/cryptography-bigint/src/jsAndWasmJsMain/kotlin/BigInt.jsAndWasmJs.kt","src/kotlin/util/Standard.kt","js/src/generated/_ArraysJs.kt","src/kotlin/util/Preconditions.kt","common/src/generated/_Arrays.kt","src/kotlin/text/Strings.kt","../../../../../../../../../cryptography-kotlin/cryptography-kotlin/cryptography-bigint/src/jsMain/kotlin/JsBigInt.js.kt","JsBigInt.js.kt"],"sourcesContent":[null,null,null,null,null,null,null,null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["<init>","<get-descriptor>","serialize","encoder","value","deserialize","decoder","encodeToByteArray","<this>","positive","bytes","firstBytePositive","serializer","jsBigInt","compareTo","other","toByte","toShort","toInt","toLong","toString","hashCode","equals","decodeToBigInt","message","toBigInt","invertTwoComplement","index","firstNonZeroFromEnd","negated","encodeToByteArray$decodeFromHex","jsBigIntNegate","jsBigIntCompareTo","a","b","jsBigIntAsInt","bits","jsBigIntEquals"],"mappings":"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"}
|