client_plugin_logic_deb 1.8.356 → 1.8.357
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/Kosi-Kaverit-kaverit.js +11 -11
- package/Kosi-Kodein-kodein-di.js +35 -35
- package/Kotlin-DateTime-library-kotlinx-datetime.js +72 -72
- package/Logic_Debertz-client_plugin.js +2306 -2306
- package/Logic_Debertz-core.js +256 -221
- package/Logic_Debertz-core.js.map +1 -1
- package/Logic_Debertz-engine.js +4185 -3973
- package/Logic_Debertz-engine.js.map +1 -1
- package/Logic_Debertz-game_client.js +6383 -6384
- package/Logic_Debertz-game_client.js.map +1 -1
- package/Logic_Debertz-game_server.js +809 -809
- package/Logic_Debertz-game_server.js.map +1 -1
- package/error-library-error.js +5 -5
- package/kotlin-kotlin-stdlib.js +294 -266
- package/kotlin-kotlin-stdlib.js.map +1 -1
- package/kotlinx-atomicfu.js +5 -5
- package/kotlinx-coroutines-core.js +67 -67
- package/kotlinx-coroutines-core.js.map +1 -1
- package/kotlinx-io-kotlinx-io-core.js +25 -25
- package/kotlinx-serialization-kotlinx-serialization-core.js +71 -71
- package/kotlinx-serialization-kotlinx-serialization-json.js +77 -77
- package/ktor-ktor-client-content-negotiation.js +20 -20
- package/ktor-ktor-client-core.js +57 -57
- package/ktor-ktor-client-logging.js +23 -23
- package/ktor-ktor-events.js +5 -5
- package/ktor-ktor-http.js +69 -69
- package/ktor-ktor-io.js +45 -45
- package/ktor-ktor-serialization-kotlinx.js +14 -14
- package/ktor-ktor-serialization.js +15 -15
- package/ktor-ktor-utils.js +43 -43
- package/ktor-ktor-websockets.js +13 -13
- package/package.json +1 -1
- package/random-library-crypto-rand.js +11 -11
- package/random-library-secure-random.js +5 -5
- package/raspberry-cardgame-lib-core.js +35 -35
- package/raspberry-cardgame-lib-logger.js +13 -13
- package/raspberry-cardgame-lib-random.js +35 -35
- package/uuid.js +12 -12
package/kotlin-kotlin-stdlib.js
CHANGED
|
@@ -109,8 +109,8 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
109
109
|
}
|
|
110
110
|
initMetadataForInterface(KtSet, 'Set', VOID, VOID, [Collection]);
|
|
111
111
|
initMetadataForInterface(MutableIterable, 'MutableIterable');
|
|
112
|
-
initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet,
|
|
113
|
-
initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList,
|
|
112
|
+
initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet, MutableIterable, Collection]);
|
|
113
|
+
initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList, MutableIterable, Collection]);
|
|
114
114
|
initMetadataForCompanion(Companion_1);
|
|
115
115
|
initMetadataForInterface(Entry, 'Entry');
|
|
116
116
|
initMetadataForCompanion(Companion_2);
|
|
@@ -140,7 +140,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
140
140
|
initMetadataForInterface(Comparator, 'Comparator');
|
|
141
141
|
initMetadataForObject(Unit, 'Unit');
|
|
142
142
|
initMetadataForClass(AbstractCollection, 'AbstractCollection', VOID, VOID, [Collection]);
|
|
143
|
-
initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [AbstractCollection,
|
|
143
|
+
initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [AbstractCollection, MutableIterable, Collection]);
|
|
144
144
|
initMetadataForClass(IteratorImpl, 'IteratorImpl');
|
|
145
145
|
initMetadataForClass(ListIteratorImpl, 'ListIteratorImpl', VOID, IteratorImpl);
|
|
146
146
|
initMetadataForClass(AbstractMutableList, 'AbstractMutableList', VOID, AbstractMutableCollection, [AbstractMutableCollection, KtMutableList]);
|
|
@@ -153,7 +153,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
153
153
|
initMetadataForClass(ArrayList, 'ArrayList', ArrayList_init_$Create$, AbstractMutableList, [AbstractMutableList, KtMutableList, RandomAccess]);
|
|
154
154
|
initMetadataForClass(HashMap, 'HashMap', HashMap_init_$Create$, AbstractMutableMap, [AbstractMutableMap, KtMutableMap]);
|
|
155
155
|
initMetadataForClass(HashMapKeys, 'HashMapKeys', VOID, AbstractMutableSet, [KtMutableSet, AbstractMutableSet]);
|
|
156
|
-
initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [
|
|
156
|
+
initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [MutableIterable, Collection, AbstractMutableCollection]);
|
|
157
157
|
initMetadataForClass(HashMapEntrySetBase, 'HashMapEntrySetBase', VOID, AbstractMutableSet, [KtMutableSet, AbstractMutableSet]);
|
|
158
158
|
initMetadataForClass(HashMapEntrySet, 'HashMapEntrySet', VOID, HashMapEntrySetBase);
|
|
159
159
|
initMetadataForClass(HashMapKeysDefault$iterator$1);
|
|
@@ -1022,6 +1022,30 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
1022
1022
|
}
|
|
1023
1023
|
return count === 0 ? NaN : sum / count;
|
|
1024
1024
|
}
|
|
1025
|
+
function minOrNull(_this__u8e3s4) {
|
|
1026
|
+
var iterator = _this__u8e3s4.j();
|
|
1027
|
+
if (!iterator.k())
|
|
1028
|
+
return null;
|
|
1029
|
+
var min = iterator.l();
|
|
1030
|
+
while (iterator.k()) {
|
|
1031
|
+
var e = iterator.l();
|
|
1032
|
+
if (compareTo(min, e) > 0)
|
|
1033
|
+
min = e;
|
|
1034
|
+
}
|
|
1035
|
+
return min;
|
|
1036
|
+
}
|
|
1037
|
+
function maxOrNull(_this__u8e3s4) {
|
|
1038
|
+
var iterator = _this__u8e3s4.j();
|
|
1039
|
+
if (!iterator.k())
|
|
1040
|
+
return null;
|
|
1041
|
+
var max = iterator.l();
|
|
1042
|
+
while (iterator.k()) {
|
|
1043
|
+
var e = iterator.l();
|
|
1044
|
+
if (compareTo(max, e) < 0)
|
|
1045
|
+
max = e;
|
|
1046
|
+
}
|
|
1047
|
+
return max;
|
|
1048
|
+
}
|
|
1025
1049
|
function toList_0(_this__u8e3s4) {
|
|
1026
1050
|
if (isInterface(_this__u8e3s4, Collection)) {
|
|
1027
1051
|
var tmp;
|
|
@@ -1183,18 +1207,6 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
1183
1207
|
return single;
|
|
1184
1208
|
}
|
|
1185
1209
|
}
|
|
1186
|
-
function minOrNull(_this__u8e3s4) {
|
|
1187
|
-
var iterator = _this__u8e3s4.j();
|
|
1188
|
-
if (!iterator.k())
|
|
1189
|
-
return null;
|
|
1190
|
-
var min = iterator.l();
|
|
1191
|
-
while (iterator.k()) {
|
|
1192
|
-
var e = iterator.l();
|
|
1193
|
-
if (compareTo(min, e) > 0)
|
|
1194
|
-
min = e;
|
|
1195
|
-
}
|
|
1196
|
-
return min;
|
|
1197
|
-
}
|
|
1198
1210
|
function dropLast(_this__u8e3s4, n) {
|
|
1199
1211
|
// Inline function 'kotlin.require' call
|
|
1200
1212
|
if (!(n >= 0)) {
|
|
@@ -1299,6 +1311,18 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
1299
1311
|
function coerceAtLeast(_this__u8e3s4, minimumValue) {
|
|
1300
1312
|
return _this__u8e3s4 < minimumValue ? minimumValue : _this__u8e3s4;
|
|
1301
1313
|
}
|
|
1314
|
+
function coerceAtLeast_0(_this__u8e3s4, minimumValue) {
|
|
1315
|
+
return _this__u8e3s4 < minimumValue ? minimumValue : _this__u8e3s4;
|
|
1316
|
+
}
|
|
1317
|
+
function coerceIn_0(_this__u8e3s4, minimumValue, maximumValue) {
|
|
1318
|
+
if (minimumValue > maximumValue)
|
|
1319
|
+
throw IllegalArgumentException_init_$Create$_0('Cannot coerce value to an empty range: maximum ' + maximumValue + ' is less than minimum ' + minimumValue + '.');
|
|
1320
|
+
if (_this__u8e3s4 < minimumValue)
|
|
1321
|
+
return minimumValue;
|
|
1322
|
+
if (_this__u8e3s4 > maximumValue)
|
|
1323
|
+
return maximumValue;
|
|
1324
|
+
return _this__u8e3s4;
|
|
1325
|
+
}
|
|
1302
1326
|
function contains_5(_this__u8e3s4, value) {
|
|
1303
1327
|
// Inline function 'kotlin.let' call
|
|
1304
1328
|
var it = toIntExactOrNull(value);
|
|
@@ -1310,7 +1334,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
1310
1334
|
function coerceAtMost(_this__u8e3s4, maximumValue) {
|
|
1311
1335
|
return _this__u8e3s4 > maximumValue ? maximumValue : _this__u8e3s4;
|
|
1312
1336
|
}
|
|
1313
|
-
function
|
|
1337
|
+
function coerceIn_1(_this__u8e3s4, minimumValue, maximumValue) {
|
|
1314
1338
|
if (minimumValue > maximumValue)
|
|
1315
1339
|
throw IllegalArgumentException_init_$Create$_0('Cannot coerce value to an empty range: maximum ' + maximumValue + ' is less than minimum ' + minimumValue + '.');
|
|
1316
1340
|
if (_this__u8e3s4 < minimumValue)
|
|
@@ -1319,15 +1343,15 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
1319
1343
|
return maximumValue;
|
|
1320
1344
|
return _this__u8e3s4;
|
|
1321
1345
|
}
|
|
1322
|
-
function
|
|
1346
|
+
function coerceIn_2(_this__u8e3s4, range) {
|
|
1323
1347
|
if (isInterface(range, ClosedFloatingPointRange)) {
|
|
1324
|
-
return
|
|
1348
|
+
return coerceIn_3(_this__u8e3s4, range);
|
|
1325
1349
|
}
|
|
1326
1350
|
if (range.p())
|
|
1327
1351
|
throw IllegalArgumentException_init_$Create$_0('Cannot coerce value to an empty range: ' + toString_1(range) + '.');
|
|
1328
1352
|
return _this__u8e3s4.z(range.g1()) < 0 ? range.g1() : _this__u8e3s4.z(range.f1()) > 0 ? range.f1() : _this__u8e3s4;
|
|
1329
1353
|
}
|
|
1330
|
-
function
|
|
1354
|
+
function coerceIn_3(_this__u8e3s4, range) {
|
|
1331
1355
|
if (range.p())
|
|
1332
1356
|
throw IllegalArgumentException_init_$Create$_0('Cannot coerce value to an empty range: ' + toString_1(range) + '.');
|
|
1333
1357
|
return range.h1(_this__u8e3s4, range.g1()) && !range.h1(range.g1(), _this__u8e3s4) ? range.g1() : range.h1(range.f1(), _this__u8e3s4) && !range.h1(_this__u8e3s4, range.f1()) ? range.f1() : _this__u8e3s4;
|
|
@@ -12742,7 +12766,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
12742
12766
|
function DelimitedRangesSequence$iterator$1(this$0) {
|
|
12743
12767
|
this.tk_1 = this$0;
|
|
12744
12768
|
this.ok_1 = -1;
|
|
12745
|
-
this.pk_1 =
|
|
12769
|
+
this.pk_1 = coerceIn_1(this$0.vk_1, 0, charSequenceLength(this$0.uk_1));
|
|
12746
12770
|
this.qk_1 = this.pk_1;
|
|
12747
12771
|
this.rk_1 = null;
|
|
12748
12772
|
this.sk_1 = 0;
|
|
@@ -13111,7 +13135,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
13111
13135
|
tmp_5 = false;
|
|
13112
13136
|
}
|
|
13113
13137
|
if (tmp_5) {
|
|
13114
|
-
tmp_4 = durationOfMillis(
|
|
13138
|
+
tmp_4 = durationOfMillis(coerceIn_2(totalMillis, (new Long(1, -1073741824)).i3(new Long(-1, 1073741823))));
|
|
13115
13139
|
} else {
|
|
13116
13140
|
tmp_4 = imul(get_sign(value), get_sign_0(scale)) > 0 ? Companion_getInstance_23().bl_1 : Companion_getInstance_23().cl_1;
|
|
13117
13141
|
}
|
|
@@ -13124,7 +13148,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
13124
13148
|
var tmp_6;
|
|
13125
13149
|
// Inline function 'kotlin.Long.div' call
|
|
13126
13150
|
if (result.c3(toLong(scale)).equals(value)) {
|
|
13127
|
-
tmp_6 = durationOfMillis(
|
|
13151
|
+
tmp_6 = durationOfMillis(coerceIn_2(result, (new Long(1, -1073741824)).i3(new Long(-1, 1073741823))));
|
|
13128
13152
|
} else {
|
|
13129
13153
|
tmp_6 = imul(get_sign(value), get_sign_0(scale)) > 0 ? Companion_getInstance_23().bl_1 : Companion_getInstance_23().cl_1;
|
|
13130
13154
|
}
|
|
@@ -16320,249 +16344,253 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
16320
16344
|
_.$_$.n8 = mapCapacity;
|
|
16321
16345
|
_.$_$.o8 = mapOf;
|
|
16322
16346
|
_.$_$.p8 = mapOf_0;
|
|
16323
|
-
_.$_$.q8 =
|
|
16324
|
-
_.$_$.r8 =
|
|
16325
|
-
_.$_$.s8 =
|
|
16326
|
-
_.$_$.t8 =
|
|
16327
|
-
_.$_$.u8 =
|
|
16328
|
-
_.$_$.v8 =
|
|
16329
|
-
_.$_$.w8 =
|
|
16330
|
-
_.$_$.x8 =
|
|
16331
|
-
_.$_$.y8 =
|
|
16332
|
-
_.$_$.z8 =
|
|
16333
|
-
_.$_$.a9 =
|
|
16334
|
-
_.$_$.b9 =
|
|
16335
|
-
_.$_$.c9 =
|
|
16336
|
-
_.$_$.d9 =
|
|
16337
|
-
_.$_$.e9 =
|
|
16338
|
-
_.$_$.f9 =
|
|
16339
|
-
_.$_$.g9 =
|
|
16340
|
-
_.$_$.h9 =
|
|
16341
|
-
_.$_$.i9 =
|
|
16342
|
-
_.$_$.j9 =
|
|
16343
|
-
_.$_$.k9 =
|
|
16344
|
-
_.$_$.l9 =
|
|
16345
|
-
_.$_$.m9 =
|
|
16346
|
-
_.$_$.n9 =
|
|
16347
|
-
_.$_$.o9 =
|
|
16348
|
-
_.$_$.p9 =
|
|
16349
|
-
_.$_$.q9 =
|
|
16350
|
-
_.$_$.r9 =
|
|
16351
|
-
_.$_$.s9 =
|
|
16352
|
-
_.$_$.t9 =
|
|
16353
|
-
_.$_$.u9 =
|
|
16354
|
-
_.$_$.v9 =
|
|
16355
|
-
_.$_$.w9 =
|
|
16356
|
-
_.$_$.x9 =
|
|
16357
|
-
_.$_$.y9 =
|
|
16358
|
-
_.$_$.z9 =
|
|
16359
|
-
_.$_$.aa =
|
|
16360
|
-
_.$_$.ba =
|
|
16361
|
-
_.$_$.ca =
|
|
16362
|
-
_.$_$.da =
|
|
16363
|
-
_.$_$.ea =
|
|
16364
|
-
_.$_$.fa =
|
|
16365
|
-
_.$_$.ga =
|
|
16366
|
-
_.$_$.ha =
|
|
16367
|
-
_.$_$.ia =
|
|
16368
|
-
_.$_$.ja =
|
|
16369
|
-
_.$_$.ka =
|
|
16370
|
-
_.$_$.la =
|
|
16371
|
-
_.$_$.ma =
|
|
16372
|
-
_.$_$.na =
|
|
16373
|
-
_.$_$.oa =
|
|
16374
|
-
_.$_$.pa =
|
|
16375
|
-
_.$_$.qa =
|
|
16376
|
-
_.$_$.ra =
|
|
16377
|
-
_.$_$.sa =
|
|
16378
|
-
_.$_$.ta =
|
|
16379
|
-
_.$_$.ua =
|
|
16380
|
-
_.$_$.va =
|
|
16381
|
-
_.$_$.wa =
|
|
16382
|
-
_.$_$.xa =
|
|
16383
|
-
_.$_$.ya =
|
|
16384
|
-
_.$_$.za =
|
|
16385
|
-
_.$_$.ab =
|
|
16386
|
-
_.$_$.bb =
|
|
16387
|
-
_.$_$.cb =
|
|
16388
|
-
_.$_$.db =
|
|
16389
|
-
_.$_$.eb =
|
|
16390
|
-
_.$_$.fb =
|
|
16391
|
-
_.$_$.gb =
|
|
16392
|
-
_.$_$.hb =
|
|
16393
|
-
_.$_$.ib =
|
|
16394
|
-
_.$_$.jb =
|
|
16395
|
-
_.$_$.kb =
|
|
16396
|
-
_.$_$.lb =
|
|
16397
|
-
_.$_$.mb =
|
|
16398
|
-
_.$_$.nb =
|
|
16399
|
-
_.$_$.ob =
|
|
16400
|
-
_.$_$.pb =
|
|
16401
|
-
_.$_$.qb =
|
|
16402
|
-
_.$_$.rb =
|
|
16403
|
-
_.$_$.sb =
|
|
16404
|
-
_.$_$.tb =
|
|
16405
|
-
_.$_$.ub =
|
|
16406
|
-
_.$_$.vb =
|
|
16407
|
-
_.$_$.wb =
|
|
16408
|
-
_.$_$.xb =
|
|
16409
|
-
_.$_$.yb =
|
|
16410
|
-
_.$_$.zb =
|
|
16411
|
-
_.$_$.ac =
|
|
16412
|
-
_.$_$.bc =
|
|
16413
|
-
_.$_$.cc =
|
|
16414
|
-
_.$_$.dc =
|
|
16415
|
-
_.$_$.ec =
|
|
16416
|
-
_.$_$.fc =
|
|
16417
|
-
_.$_$.gc =
|
|
16418
|
-
_.$_$.hc =
|
|
16419
|
-
_.$_$.ic =
|
|
16420
|
-
_.$_$.jc =
|
|
16421
|
-
_.$_$.kc =
|
|
16422
|
-
_.$_$.lc =
|
|
16423
|
-
_.$_$.mc =
|
|
16424
|
-
_.$_$.nc =
|
|
16425
|
-
_.$_$.oc =
|
|
16426
|
-
_.$_$.pc =
|
|
16427
|
-
_.$_$.qc =
|
|
16428
|
-
_.$_$.rc =
|
|
16429
|
-
_.$_$.sc =
|
|
16430
|
-
_.$_$.tc =
|
|
16431
|
-
_.$_$.uc =
|
|
16432
|
-
_.$_$.vc =
|
|
16433
|
-
_.$_$.wc =
|
|
16434
|
-
_.$_$.xc =
|
|
16435
|
-
_.$_$.yc =
|
|
16436
|
-
_.$_$.zc =
|
|
16437
|
-
_.$_$.ad =
|
|
16438
|
-
_.$_$.bd =
|
|
16439
|
-
_.$_$.cd =
|
|
16440
|
-
_.$_$.dd =
|
|
16441
|
-
_.$_$.ed =
|
|
16442
|
-
_.$_$.fd =
|
|
16443
|
-
_.$_$.gd =
|
|
16444
|
-
_.$_$.hd =
|
|
16445
|
-
_.$_$.id =
|
|
16446
|
-
_.$_$.jd =
|
|
16447
|
-
_.$_$.kd =
|
|
16448
|
-
_.$_$.ld =
|
|
16449
|
-
_.$_$.md =
|
|
16450
|
-
_.$_$.nd =
|
|
16451
|
-
_.$_$.od =
|
|
16452
|
-
_.$_$.pd =
|
|
16453
|
-
_.$_$.qd =
|
|
16454
|
-
_.$_$.rd =
|
|
16455
|
-
_.$_$.sd =
|
|
16456
|
-
_.$_$.td =
|
|
16457
|
-
_.$_$.ud =
|
|
16458
|
-
_.$_$.vd =
|
|
16459
|
-
_.$_$.wd =
|
|
16460
|
-
_.$_$.xd =
|
|
16461
|
-
_.$_$.yd =
|
|
16462
|
-
_.$_$.zd =
|
|
16463
|
-
_.$_$.ae =
|
|
16464
|
-
_.$_$.be =
|
|
16465
|
-
_.$_$.ce =
|
|
16466
|
-
_.$_$.de =
|
|
16467
|
-
_.$_$.ee =
|
|
16468
|
-
_.$_$.fe =
|
|
16469
|
-
_.$_$.ge =
|
|
16470
|
-
_.$_$.he =
|
|
16471
|
-
_.$_$.ie =
|
|
16472
|
-
_.$_$.je =
|
|
16473
|
-
_.$_$.ke =
|
|
16474
|
-
_.$_$.le =
|
|
16475
|
-
_.$_$.me =
|
|
16476
|
-
_.$_$.ne =
|
|
16477
|
-
_.$_$.oe =
|
|
16478
|
-
_.$_$.pe =
|
|
16479
|
-
_.$_$.qe =
|
|
16480
|
-
_.$_$.re =
|
|
16481
|
-
_.$_$.se =
|
|
16482
|
-
_.$_$.te =
|
|
16483
|
-
_.$_$.ue =
|
|
16484
|
-
_.$_$.ve =
|
|
16485
|
-
_.$_$.we =
|
|
16486
|
-
_.$_$.xe =
|
|
16487
|
-
_.$_$.ye =
|
|
16488
|
-
_.$_$.ze =
|
|
16489
|
-
_.$_$.af =
|
|
16490
|
-
_.$_$.bf =
|
|
16491
|
-
_.$_$.cf =
|
|
16492
|
-
_.$_$.df =
|
|
16493
|
-
_.$_$.ef =
|
|
16494
|
-
_.$_$.ff =
|
|
16495
|
-
_.$_$.gf =
|
|
16496
|
-
_.$_$.hf =
|
|
16497
|
-
_.$_$.if =
|
|
16498
|
-
_.$_$.jf =
|
|
16499
|
-
_.$_$.kf =
|
|
16500
|
-
_.$_$.lf =
|
|
16501
|
-
_.$_$.mf =
|
|
16502
|
-
_.$_$.nf =
|
|
16503
|
-
_.$_$.of =
|
|
16504
|
-
_.$_$.pf =
|
|
16505
|
-
_.$_$.qf =
|
|
16506
|
-
_.$_$.rf =
|
|
16507
|
-
_.$_$.sf =
|
|
16508
|
-
_.$_$.tf =
|
|
16509
|
-
_.$_$.uf =
|
|
16510
|
-
_.$_$.vf =
|
|
16511
|
-
_.$_$.wf =
|
|
16512
|
-
_.$_$.xf =
|
|
16513
|
-
_.$_$.yf =
|
|
16514
|
-
_.$_$.zf =
|
|
16515
|
-
_.$_$.ag =
|
|
16516
|
-
_.$_$.bg =
|
|
16517
|
-
_.$_$.cg =
|
|
16518
|
-
_.$_$.dg =
|
|
16519
|
-
_.$_$.eg =
|
|
16520
|
-
_.$_$.fg =
|
|
16521
|
-
_.$_$.gg =
|
|
16522
|
-
_.$_$.hg =
|
|
16523
|
-
_.$_$.ig =
|
|
16524
|
-
_.$_$.jg =
|
|
16525
|
-
_.$_$.kg =
|
|
16526
|
-
_.$_$.lg =
|
|
16527
|
-
_.$_$.mg =
|
|
16528
|
-
_.$_$.ng =
|
|
16529
|
-
_.$_$.og =
|
|
16530
|
-
_.$_$.pg =
|
|
16531
|
-
_.$_$.qg =
|
|
16532
|
-
_.$_$.rg =
|
|
16533
|
-
_.$_$.sg =
|
|
16534
|
-
_.$_$.tg =
|
|
16535
|
-
_.$_$.ug =
|
|
16536
|
-
_.$_$.vg =
|
|
16537
|
-
_.$_$.wg =
|
|
16538
|
-
_.$_$.xg =
|
|
16539
|
-
_.$_$.yg =
|
|
16540
|
-
_.$_$.zg =
|
|
16541
|
-
_.$_$.ah =
|
|
16542
|
-
_.$_$.bh =
|
|
16543
|
-
_.$_$.ch =
|
|
16544
|
-
_.$_$.dh =
|
|
16545
|
-
_.$_$.eh =
|
|
16546
|
-
_.$_$.fh =
|
|
16547
|
-
_.$_$.gh =
|
|
16548
|
-
_.$_$.hh =
|
|
16549
|
-
_.$_$.ih =
|
|
16550
|
-
_.$_$.jh =
|
|
16551
|
-
_.$_$.kh =
|
|
16552
|
-
_.$_$.lh =
|
|
16553
|
-
_.$_$.mh =
|
|
16554
|
-
_.$_$.nh =
|
|
16555
|
-
_.$_$.oh =
|
|
16556
|
-
_.$_$.ph =
|
|
16557
|
-
_.$_$.qh =
|
|
16558
|
-
_.$_$.rh =
|
|
16559
|
-
_.$_$.sh =
|
|
16560
|
-
_.$_$.th =
|
|
16561
|
-
_.$_$.uh =
|
|
16562
|
-
_.$_$.vh =
|
|
16563
|
-
_.$_$.wh =
|
|
16564
|
-
_.$_$.xh =
|
|
16565
|
-
_.$_$.yh =
|
|
16347
|
+
_.$_$.q8 = maxOrNull;
|
|
16348
|
+
_.$_$.r8 = minOrNull;
|
|
16349
|
+
_.$_$.s8 = minus;
|
|
16350
|
+
_.$_$.t8 = mutableListOf;
|
|
16351
|
+
_.$_$.u8 = none;
|
|
16352
|
+
_.$_$.v8 = plus_5;
|
|
16353
|
+
_.$_$.w8 = plus_3;
|
|
16354
|
+
_.$_$.x8 = plus_2;
|
|
16355
|
+
_.$_$.y8 = plus_1;
|
|
16356
|
+
_.$_$.z8 = plus_0;
|
|
16357
|
+
_.$_$.a9 = removeFirstOrNull;
|
|
16358
|
+
_.$_$.b9 = removeLastOrNull;
|
|
16359
|
+
_.$_$.c9 = removeLast;
|
|
16360
|
+
_.$_$.d9 = reversed;
|
|
16361
|
+
_.$_$.e9 = reverse;
|
|
16362
|
+
_.$_$.f9 = setOf;
|
|
16363
|
+
_.$_$.g9 = setOf_0;
|
|
16364
|
+
_.$_$.h9 = singleOrNull;
|
|
16365
|
+
_.$_$.i9 = single_0;
|
|
16366
|
+
_.$_$.j9 = sortWith_0;
|
|
16367
|
+
_.$_$.k9 = sortedWith;
|
|
16368
|
+
_.$_$.l9 = sorted;
|
|
16369
|
+
_.$_$.m9 = sum;
|
|
16370
|
+
_.$_$.n9 = takeLast;
|
|
16371
|
+
_.$_$.o9 = take;
|
|
16372
|
+
_.$_$.p9 = toBooleanArray;
|
|
16373
|
+
_.$_$.q9 = toHashSet;
|
|
16374
|
+
_.$_$.r9 = toList_1;
|
|
16375
|
+
_.$_$.s9 = toList_0;
|
|
16376
|
+
_.$_$.t9 = toList;
|
|
16377
|
+
_.$_$.u9 = toMap_3;
|
|
16378
|
+
_.$_$.v9 = toMap_0;
|
|
16379
|
+
_.$_$.w9 = toMap;
|
|
16380
|
+
_.$_$.x9 = toMutableList_0;
|
|
16381
|
+
_.$_$.y9 = toMutableMap;
|
|
16382
|
+
_.$_$.z9 = toMutableSet;
|
|
16383
|
+
_.$_$.aa = toSet_0;
|
|
16384
|
+
_.$_$.ba = toTypedArray;
|
|
16385
|
+
_.$_$.ca = withIndex;
|
|
16386
|
+
_.$_$.da = zip_0;
|
|
16387
|
+
_.$_$.ea = zip;
|
|
16388
|
+
_.$_$.fa = compareValuesBy;
|
|
16389
|
+
_.$_$.ga = compareValues;
|
|
16390
|
+
_.$_$.ha = CancellationException;
|
|
16391
|
+
_.$_$.ia = get_COROUTINE_SUSPENDED;
|
|
16392
|
+
_.$_$.ja = createCoroutineUnintercepted;
|
|
16393
|
+
_.$_$.ka = intercepted;
|
|
16394
|
+
_.$_$.la = startCoroutineUninterceptedOrReturnNonGeneratorVersion;
|
|
16395
|
+
_.$_$.ma = AbstractCoroutineContextElement;
|
|
16396
|
+
_.$_$.na = AbstractCoroutineContextKey;
|
|
16397
|
+
_.$_$.oa = get_0;
|
|
16398
|
+
_.$_$.pa = minusKey_0;
|
|
16399
|
+
_.$_$.qa = ContinuationInterceptor;
|
|
16400
|
+
_.$_$.ra = Continuation;
|
|
16401
|
+
_.$_$.sa = fold;
|
|
16402
|
+
_.$_$.ta = get;
|
|
16403
|
+
_.$_$.ua = minusKey;
|
|
16404
|
+
_.$_$.va = Element;
|
|
16405
|
+
_.$_$.wa = plus;
|
|
16406
|
+
_.$_$.xa = CoroutineImpl;
|
|
16407
|
+
_.$_$.ya = startCoroutine;
|
|
16408
|
+
_.$_$.za = enumEntries;
|
|
16409
|
+
_.$_$.ab = println;
|
|
16410
|
+
_.$_$.bb = FunctionAdapter;
|
|
16411
|
+
_.$_$.cb = anyToString;
|
|
16412
|
+
_.$_$.db = arrayIterator;
|
|
16413
|
+
_.$_$.eb = booleanArray;
|
|
16414
|
+
_.$_$.fb = captureStack;
|
|
16415
|
+
_.$_$.gb = charArrayOf;
|
|
16416
|
+
_.$_$.hb = charArray;
|
|
16417
|
+
_.$_$.ib = charCodeAt;
|
|
16418
|
+
_.$_$.jb = charSequenceGet;
|
|
16419
|
+
_.$_$.kb = charSequenceLength;
|
|
16420
|
+
_.$_$.lb = charSequenceSubSequence;
|
|
16421
|
+
_.$_$.mb = compareTo;
|
|
16422
|
+
_.$_$.nb = defineProp;
|
|
16423
|
+
_.$_$.ob = equals;
|
|
16424
|
+
_.$_$.pb = extendThrowable;
|
|
16425
|
+
_.$_$.qb = getBooleanHashCode;
|
|
16426
|
+
_.$_$.rb = getNumberHashCode;
|
|
16427
|
+
_.$_$.sb = getPropertyCallableRef;
|
|
16428
|
+
_.$_$.tb = getStringHashCode;
|
|
16429
|
+
_.$_$.ub = hashCode;
|
|
16430
|
+
_.$_$.vb = initMetadataForClass;
|
|
16431
|
+
_.$_$.wb = initMetadataForCompanion;
|
|
16432
|
+
_.$_$.xb = initMetadataForCoroutine;
|
|
16433
|
+
_.$_$.yb = initMetadataForInterface;
|
|
16434
|
+
_.$_$.zb = initMetadataForLambda;
|
|
16435
|
+
_.$_$.ac = initMetadataForObject;
|
|
16436
|
+
_.$_$.bc = isArray;
|
|
16437
|
+
_.$_$.cc = isBooleanArray;
|
|
16438
|
+
_.$_$.dc = isByteArray;
|
|
16439
|
+
_.$_$.ec = isCharArray;
|
|
16440
|
+
_.$_$.fc = isCharSequence;
|
|
16441
|
+
_.$_$.gc = isDoubleArray;
|
|
16442
|
+
_.$_$.hc = isFloatArray;
|
|
16443
|
+
_.$_$.ic = isIntArray;
|
|
16444
|
+
_.$_$.jc = isInterface;
|
|
16445
|
+
_.$_$.kc = isLongArray;
|
|
16446
|
+
_.$_$.lc = isNumber;
|
|
16447
|
+
_.$_$.mc = isShortArray;
|
|
16448
|
+
_.$_$.nc = isSuspendFunction;
|
|
16449
|
+
_.$_$.oc = get_js;
|
|
16450
|
+
_.$_$.pc = longArray;
|
|
16451
|
+
_.$_$.qc = numberRangeToNumber;
|
|
16452
|
+
_.$_$.rc = numberToByte;
|
|
16453
|
+
_.$_$.sc = numberToChar;
|
|
16454
|
+
_.$_$.tc = numberToInt;
|
|
16455
|
+
_.$_$.uc = numberToLong;
|
|
16456
|
+
_.$_$.vc = objectCreate;
|
|
16457
|
+
_.$_$.wc = protoOf;
|
|
16458
|
+
_.$_$.xc = toByte;
|
|
16459
|
+
_.$_$.yc = toLong;
|
|
16460
|
+
_.$_$.zc = toShort;
|
|
16461
|
+
_.$_$.ad = toString_1;
|
|
16462
|
+
_.$_$.bd = abs;
|
|
16463
|
+
_.$_$.cd = roundToInt;
|
|
16464
|
+
_.$_$.dd = round;
|
|
16465
|
+
_.$_$.ed = ClosedRange;
|
|
16466
|
+
_.$_$.fd = coerceAtLeast_0;
|
|
16467
|
+
_.$_$.gd = coerceAtLeast;
|
|
16468
|
+
_.$_$.hd = coerceAtMost_0;
|
|
16469
|
+
_.$_$.id = coerceAtMost;
|
|
16470
|
+
_.$_$.jd = coerceIn_0;
|
|
16471
|
+
_.$_$.kd = coerceIn;
|
|
16472
|
+
_.$_$.ld = contains_5;
|
|
16473
|
+
_.$_$.md = downTo;
|
|
16474
|
+
_.$_$.nd = step;
|
|
16475
|
+
_.$_$.od = until;
|
|
16476
|
+
_.$_$.pd = KClass;
|
|
16477
|
+
_.$_$.qd = KMutableProperty1;
|
|
16478
|
+
_.$_$.rd = KProperty0;
|
|
16479
|
+
_.$_$.sd = KProperty1;
|
|
16480
|
+
_.$_$.td = KTypeParameter;
|
|
16481
|
+
_.$_$.ud = filter;
|
|
16482
|
+
_.$_$.vd = firstOrNull_2;
|
|
16483
|
+
_.$_$.wd = flatMap;
|
|
16484
|
+
_.$_$.xd = mapNotNull;
|
|
16485
|
+
_.$_$.yd = map;
|
|
16486
|
+
_.$_$.zd = toList_2;
|
|
16487
|
+
_.$_$.ae = concatToString;
|
|
16488
|
+
_.$_$.be = contains_8;
|
|
16489
|
+
_.$_$.ce = contains_7;
|
|
16490
|
+
_.$_$.de = decodeToString;
|
|
16491
|
+
_.$_$.ee = encodeToByteArray;
|
|
16492
|
+
_.$_$.fe = endsWith_0;
|
|
16493
|
+
_.$_$.ge = endsWith;
|
|
16494
|
+
_.$_$.he = equals_0;
|
|
16495
|
+
_.$_$.ie = first_2;
|
|
16496
|
+
_.$_$.je = indexOfAny;
|
|
16497
|
+
_.$_$.ke = indexOf_5;
|
|
16498
|
+
_.$_$.le = indexOf_4;
|
|
16499
|
+
_.$_$.me = isBlank;
|
|
16500
|
+
_.$_$.ne = isHighSurrogate;
|
|
16501
|
+
_.$_$.oe = isLowSurrogate;
|
|
16502
|
+
_.$_$.pe = isSurrogate;
|
|
16503
|
+
_.$_$.qe = isWhitespace;
|
|
16504
|
+
_.$_$.re = get_lastIndex_3;
|
|
16505
|
+
_.$_$.se = lastIndexOf_0;
|
|
16506
|
+
_.$_$.te = last_2;
|
|
16507
|
+
_.$_$.ue = padStart;
|
|
16508
|
+
_.$_$.ve = removePrefix;
|
|
16509
|
+
_.$_$.we = removeSuffix;
|
|
16510
|
+
_.$_$.xe = repeat;
|
|
16511
|
+
_.$_$.ye = replace;
|
|
16512
|
+
_.$_$.ze = replace_0;
|
|
16513
|
+
_.$_$.af = single_2;
|
|
16514
|
+
_.$_$.bf = split;
|
|
16515
|
+
_.$_$.cf = split_0;
|
|
16516
|
+
_.$_$.df = startsWith;
|
|
16517
|
+
_.$_$.ef = startsWith_1;
|
|
16518
|
+
_.$_$.ff = substringAfter;
|
|
16519
|
+
_.$_$.gf = substringBefore;
|
|
16520
|
+
_.$_$.hf = substring_0;
|
|
16521
|
+
_.$_$.if = substring;
|
|
16522
|
+
_.$_$.jf = take_0;
|
|
16523
|
+
_.$_$.kf = toBooleanStrictOrNull;
|
|
16524
|
+
_.$_$.lf = toDoubleOrNull;
|
|
16525
|
+
_.$_$.mf = toDouble;
|
|
16526
|
+
_.$_$.nf = toIntOrNull;
|
|
16527
|
+
_.$_$.of = toInt;
|
|
16528
|
+
_.$_$.pf = toLongOrNull;
|
|
16529
|
+
_.$_$.qf = toLong_0;
|
|
16530
|
+
_.$_$.rf = toString_3;
|
|
16531
|
+
_.$_$.sf = toUByte;
|
|
16532
|
+
_.$_$.tf = toUInt;
|
|
16533
|
+
_.$_$.uf = toULongOrNull;
|
|
16534
|
+
_.$_$.vf = toULong;
|
|
16535
|
+
_.$_$.wf = toUShort;
|
|
16536
|
+
_.$_$.xf = trimIndent;
|
|
16537
|
+
_.$_$.yf = trimMargin;
|
|
16538
|
+
_.$_$.zf = trim;
|
|
16539
|
+
_.$_$.ag = Duration;
|
|
16540
|
+
_.$_$.bg = Instant;
|
|
16541
|
+
_.$_$.cg = toDuration_1;
|
|
16542
|
+
_.$_$.dg = toDuration_0;
|
|
16543
|
+
_.$_$.eg = toDuration;
|
|
16544
|
+
_.$_$.fg = Uuid;
|
|
16545
|
+
_.$_$.gg = ArithmeticException;
|
|
16546
|
+
_.$_$.hg = Char;
|
|
16547
|
+
_.$_$.ig = Comparable;
|
|
16548
|
+
_.$_$.jg = Comparator;
|
|
16549
|
+
_.$_$.kg = DeepRecursiveFunction;
|
|
16550
|
+
_.$_$.lg = DeepRecursiveScope;
|
|
16551
|
+
_.$_$.mg = Enum;
|
|
16552
|
+
_.$_$.ng = Error_0;
|
|
16553
|
+
_.$_$.og = Exception;
|
|
16554
|
+
_.$_$.pg = IllegalArgumentException;
|
|
16555
|
+
_.$_$.qg = IllegalStateException;
|
|
16556
|
+
_.$_$.rg = Long;
|
|
16557
|
+
_.$_$.sg = NoSuchElementException;
|
|
16558
|
+
_.$_$.tg = NotImplementedError;
|
|
16559
|
+
_.$_$.ug = Pair;
|
|
16560
|
+
_.$_$.vg = Result;
|
|
16561
|
+
_.$_$.wg = RuntimeException;
|
|
16562
|
+
_.$_$.xg = THROW_CCE;
|
|
16563
|
+
_.$_$.yg = THROW_IAE;
|
|
16564
|
+
_.$_$.zg = Triple;
|
|
16565
|
+
_.$_$.ah = UByteArray;
|
|
16566
|
+
_.$_$.bh = UByte;
|
|
16567
|
+
_.$_$.ch = UIntArray;
|
|
16568
|
+
_.$_$.dh = UInt;
|
|
16569
|
+
_.$_$.eh = ULongArray;
|
|
16570
|
+
_.$_$.fh = ULong;
|
|
16571
|
+
_.$_$.gh = UShortArray;
|
|
16572
|
+
_.$_$.hh = UShort;
|
|
16573
|
+
_.$_$.ih = Unit;
|
|
16574
|
+
_.$_$.jh = UnsupportedOperationException;
|
|
16575
|
+
_.$_$.kh = addSuppressed;
|
|
16576
|
+
_.$_$.lh = arrayOf;
|
|
16577
|
+
_.$_$.mh = countTrailingZeroBits;
|
|
16578
|
+
_.$_$.nh = createFailure;
|
|
16579
|
+
_.$_$.oh = ensureNotNull;
|
|
16580
|
+
_.$_$.ph = invoke;
|
|
16581
|
+
_.$_$.qh = isFinite;
|
|
16582
|
+
_.$_$.rh = isFinite_0;
|
|
16583
|
+
_.$_$.sh = isNaN_0;
|
|
16584
|
+
_.$_$.th = lazy_0;
|
|
16585
|
+
_.$_$.uh = lazy;
|
|
16586
|
+
_.$_$.vh = noWhenBranchMatchedException;
|
|
16587
|
+
_.$_$.wh = plus_4;
|
|
16588
|
+
_.$_$.xh = printStackTrace;
|
|
16589
|
+
_.$_$.yh = stackTraceToString;
|
|
16590
|
+
_.$_$.zh = throwOnFailure;
|
|
16591
|
+
_.$_$.ai = throwUninitializedPropertyAccessException;
|
|
16592
|
+
_.$_$.bi = toString_0;
|
|
16593
|
+
_.$_$.ci = to;
|
|
16566
16594
|
//endregion
|
|
16567
16595
|
return _;
|
|
16568
16596
|
}));
|