raspberry_games_server_game_logic 1.8.425 → 1.8.427

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.
Files changed (36) hide show
  1. package/Kosi-Kaverit-kaverit.js +21 -21
  2. package/Kosi-Kodein-kodein-di.js +52 -52
  3. package/Kotlin-DateTime-library-kotlinx-datetime.js +124 -124
  4. package/Logic_Debertz-ai_module.js +46 -46
  5. package/Logic_Debertz-core.js +78 -78
  6. package/Logic_Debertz-engine.js +207 -240
  7. package/Logic_Debertz-engine.js.map +1 -1
  8. package/Logic_Debertz-game_server.d.ts +1 -1
  9. package/Logic_Debertz-game_server.js +188 -182
  10. package/Logic_Debertz-game_server.js.map +1 -1
  11. package/error-library-error.js +6 -6
  12. package/kotlin-kotlin-stdlib.js +469 -470
  13. package/kotlin-kotlin-stdlib.js.map +1 -1
  14. package/kotlinx-atomicfu.js +9 -9
  15. package/kotlinx-coroutines-core.js +99 -99
  16. package/kotlinx-io-kotlinx-io-core.js +41 -41
  17. package/kotlinx-serialization-kotlinx-serialization-core.js +180 -180
  18. package/kotlinx-serialization-kotlinx-serialization-json.js +123 -123
  19. package/ktor-ktor-client-content-negotiation.js +27 -27
  20. package/ktor-ktor-client-core.js +83 -83
  21. package/ktor-ktor-client-logging.js +28 -28
  22. package/ktor-ktor-events.js +6 -6
  23. package/ktor-ktor-http.js +98 -98
  24. package/ktor-ktor-io.js +62 -62
  25. package/ktor-ktor-serialization-kotlinx-json.js +1 -1
  26. package/ktor-ktor-serialization-kotlinx.js +27 -27
  27. package/ktor-ktor-serialization.js +17 -17
  28. package/ktor-ktor-utils.js +73 -73
  29. package/ktor-ktor-websockets.js +16 -16
  30. package/package.json +1 -1
  31. package/random-library-crypto-rand.js +12 -12
  32. package/random-library-secure-random.js +8 -8
  33. package/raspberry-cardgame-lib-core.js +52 -52
  34. package/raspberry-cardgame-lib-logger.js +14 -14
  35. package/raspberry-cardgame-lib-random.js +59 -59
  36. package/uuid.js +20 -20
@@ -57,6 +57,12 @@ if (typeof Math.clz32 === 'undefined') {
57
57
  };
58
58
  }(Math.log, Math.LN2);
59
59
  }
60
+ if (typeof String.prototype.startsWith === 'undefined') {
61
+ Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
62
+ position = position || 0;
63
+ return this.lastIndexOf(searchString, position) === position;
64
+ }});
65
+ }
60
66
  if (typeof String.prototype.endsWith === 'undefined') {
61
67
  Object.defineProperty(String.prototype, 'endsWith', {value: function (searchString, position) {
62
68
  var subjectString = this.toString();
@@ -68,12 +74,6 @@ if (typeof String.prototype.endsWith === 'undefined') {
68
74
  return lastIndex !== -1 && lastIndex === position;
69
75
  }});
70
76
  }
71
- if (typeof String.prototype.startsWith === 'undefined') {
72
- Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
73
- position = position || 0;
74
- return this.lastIndexOf(searchString, position) === position;
75
- }});
76
- }
77
77
  //endregion
78
78
  (function (factory) {
79
79
  if (typeof define === 'function' && define.amd)
@@ -119,8 +119,8 @@ if (typeof String.prototype.startsWith === 'undefined') {
119
119
  initMetadataForInterface(KtMap, 'Map');
120
120
  initMetadataForInterface(KtMutableMap, 'MutableMap', VOID, VOID, [KtMap]);
121
121
  initMetadataForInterface(MutableIterable, 'MutableIterable');
122
- initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList, MutableIterable, Collection]);
123
- initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet, MutableIterable, Collection]);
122
+ initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList, Collection, MutableIterable]);
123
+ initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet, Collection, MutableIterable]);
124
124
  initMetadataForCompanion(Companion_3);
125
125
  initMetadataForClass(Enum, 'Enum', VOID, VOID, [Comparable]);
126
126
  initMetadataForCompanion(Companion_4);
@@ -142,7 +142,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
142
142
  initMetadataForInterface(Comparator, 'Comparator');
143
143
  initMetadataForObject(Unit, 'Unit');
144
144
  initMetadataForClass(AbstractCollection, 'AbstractCollection', VOID, VOID, [Collection]);
145
- initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [AbstractCollection, MutableIterable, Collection]);
145
+ initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [AbstractCollection, Collection, MutableIterable]);
146
146
  initMetadataForClass(IteratorImpl, 'IteratorImpl');
147
147
  initMetadataForClass(ListIteratorImpl, 'ListIteratorImpl', VOID, IteratorImpl);
148
148
  initMetadataForClass(AbstractMutableList, 'AbstractMutableList', VOID, AbstractMutableCollection, [AbstractMutableCollection, KtMutableList]);
@@ -155,7 +155,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
155
155
  initMetadataForClass(ArrayList, 'ArrayList', ArrayList_init_$Create$, AbstractMutableList, [AbstractMutableList, KtMutableList, RandomAccess]);
156
156
  initMetadataForClass(HashMap, 'HashMap', HashMap_init_$Create$, AbstractMutableMap, [AbstractMutableMap, KtMutableMap]);
157
157
  initMetadataForClass(HashMapKeys, 'HashMapKeys', VOID, AbstractMutableSet, [KtMutableSet, AbstractMutableSet]);
158
- initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [MutableIterable, Collection, AbstractMutableCollection]);
158
+ initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [Collection, MutableIterable, AbstractMutableCollection]);
159
159
  initMetadataForClass(HashMapEntrySetBase, 'HashMapEntrySetBase', VOID, AbstractMutableSet, [KtMutableSet, AbstractMutableSet]);
160
160
  initMetadataForClass(HashMapEntrySet, 'HashMapEntrySet', VOID, HashMapEntrySetBase);
161
161
  initMetadataForClass(HashMapKeysDefault$iterator$1);
@@ -4014,12 +4014,12 @@ if (typeof String.prototype.startsWith === 'undefined') {
4014
4014
  var tmp$ret$2 = [element];
4015
4015
  return new ArrayList(tmp$ret$2);
4016
4016
  }
4017
- function mapOf(pair) {
4018
- return hashMapOf([pair]);
4019
- }
4020
4017
  function setOf(element) {
4021
4018
  return hashSetOf([element]);
4022
4019
  }
4020
+ function mapOf(pair) {
4021
+ return hashMapOf([pair]);
4022
+ }
4023
4023
  function copyToArray(collection) {
4024
4024
  var tmp;
4025
4025
  // Inline function 'kotlin.js.asDynamic' call
@@ -16229,463 +16229,462 @@ if (typeof String.prototype.startsWith === 'undefined') {
16229
16229
  _.$_$.d1 = Error_init_$Create$_1;
16230
16230
  _.$_$.e1 = Exception_init_$Init$;
16231
16231
  _.$_$.f1 = Exception_init_$Init$_0;
16232
- _.$_$.g1 = Exception_init_$Create$_0;
16233
- _.$_$.h1 = Exception_init_$Init$_1;
16234
- _.$_$.i1 = IllegalArgumentException_init_$Init$_2;
16235
- _.$_$.j1 = IllegalArgumentException_init_$Init$;
16236
- _.$_$.k1 = IllegalArgumentException_init_$Create$;
16237
- _.$_$.l1 = IllegalArgumentException_init_$Init$_0;
16238
- _.$_$.m1 = IllegalArgumentException_init_$Create$_0;
16239
- _.$_$.n1 = IllegalArgumentException_init_$Init$_1;
16240
- _.$_$.o1 = IllegalStateException_init_$Init$;
16241
- _.$_$.p1 = IllegalStateException_init_$Init$_0;
16242
- _.$_$.q1 = IllegalStateException_init_$Create$_0;
16243
- _.$_$.r1 = IllegalStateException_init_$Init$_1;
16244
- _.$_$.s1 = IllegalStateException_init_$Create$_1;
16245
- _.$_$.t1 = IndexOutOfBoundsException_init_$Create$;
16246
- _.$_$.u1 = IndexOutOfBoundsException_init_$Create$_0;
16247
- _.$_$.v1 = NoSuchElementException_init_$Create$;
16248
- _.$_$.w1 = NoSuchElementException_init_$Init$_0;
16249
- _.$_$.x1 = NoSuchElementException_init_$Create$_0;
16250
- _.$_$.y1 = RuntimeException_init_$Init$;
16251
- _.$_$.z1 = RuntimeException_init_$Init$_0;
16252
- _.$_$.a2 = RuntimeException_init_$Init$_1;
16253
- _.$_$.b2 = RuntimeException_init_$Create$_1;
16254
- _.$_$.c2 = UnsupportedOperationException_init_$Init$;
16255
- _.$_$.d2 = UnsupportedOperationException_init_$Create$_0;
16256
- _.$_$.e2 = UnsupportedOperationException_init_$Create$_1;
16257
- _.$_$.f2 = Duration__compareTo_impl_pchp0f;
16258
- _.$_$.g2 = Duration__hashCode_impl_u4exz6;
16259
- _.$_$.h2 = _Duration___get_inWholeMilliseconds__impl__msfiry;
16260
- _.$_$.i2 = Duration__plus_impl_yu9v8f;
16261
- _.$_$.j2 = Duration__times_impl_sfuzvp;
16262
- _.$_$.k2 = Duration__toIsoString_impl_9h6wsm;
16263
- _.$_$.l2 = Duration__toString_impl_8d916b;
16264
- _.$_$.m2 = _Char___init__impl__6a9atx;
16265
- _.$_$.n2 = Char__compareTo_impl_ypi4mb;
16266
- _.$_$.o2 = Char__minus_impl_a2frrh;
16267
- _.$_$.p2 = Char__minus_impl_a2frrh_0;
16268
- _.$_$.q2 = Char__plus_impl_qi7pgj;
16269
- _.$_$.r2 = Char__rangeTo_impl_tkncvp;
16270
- _.$_$.s2 = Char__toInt_impl_vasixd;
16271
- _.$_$.t2 = toString;
16272
- _.$_$.u2 = _Result___init__impl__xyqfz8;
16273
- _.$_$.v2 = Result__exceptionOrNull_impl_p6xea9;
16274
- _.$_$.w2 = _Result___get_isFailure__impl__jpiriv;
16275
- _.$_$.x2 = _Result___get_isSuccess__impl__sndoy8;
16276
- _.$_$.y2 = _Result___get_value__impl__bjfvqg;
16277
- _.$_$.z2 = _UByte___init__impl__g9hnc4;
16278
- _.$_$.a3 = _UByte___get_data__impl__jof9qr;
16279
- _.$_$.b3 = UByte__toString_impl_v72jg;
16280
- _.$_$.c3 = _UByteArray___init__impl__ip4y9n;
16281
- _.$_$.d3 = _UByteArray___init__impl__ip4y9n_0;
16282
- _.$_$.e3 = UByteArray__get_impl_t5f3hv;
16283
- _.$_$.f3 = UByteArray__set_impl_jvcicn;
16284
- _.$_$.g3 = _UByteArray___get_size__impl__h6pkdv;
16285
- _.$_$.h3 = _UByteArray___get_storage__impl__d4kctt;
16286
- _.$_$.i3 = _UInt___init__impl__l7qpdl;
16287
- _.$_$.j3 = _UInt___get_data__impl__f0vqqw;
16288
- _.$_$.k3 = UInt__toString_impl_dbgl21;
16289
- _.$_$.l3 = _UIntArray___init__impl__ghjpc6_0;
16290
- _.$_$.m3 = _UIntArray___init__impl__ghjpc6;
16291
- _.$_$.n3 = UIntArray__get_impl_gp5kza;
16292
- _.$_$.o3 = UIntArray__set_impl_7f2zu2;
16293
- _.$_$.p3 = _UIntArray___get_size__impl__r6l8ci;
16294
- _.$_$.q3 = _UIntArray___get_storage__impl__92a0v0;
16295
- _.$_$.r3 = _ULong___init__impl__c78o9k;
16296
- _.$_$.s3 = _ULong___get_data__impl__fggpzb;
16297
- _.$_$.t3 = ULong__toString_impl_f9au7k;
16298
- _.$_$.u3 = _ULongArray___init__impl__twm1l3_0;
16299
- _.$_$.v3 = _ULongArray___init__impl__twm1l3;
16300
- _.$_$.w3 = ULongArray__get_impl_pr71q9;
16301
- _.$_$.x3 = ULongArray__set_impl_z19mvh;
16302
- _.$_$.y3 = _ULongArray___get_size__impl__ju6dtr;
16303
- _.$_$.z3 = _ULongArray___get_storage__impl__28e64j;
16304
- _.$_$.a4 = _UShort___init__impl__jigrne;
16305
- _.$_$.b4 = _UShort___get_data__impl__g0245;
16306
- _.$_$.c4 = UShort__toString_impl_edaoee;
16307
- _.$_$.d4 = _UShortArray___init__impl__9b26ef_0;
16308
- _.$_$.e4 = _UShortArray___init__impl__9b26ef;
16309
- _.$_$.f4 = UShortArray__get_impl_fnbhmx;
16310
- _.$_$.g4 = UShortArray__set_impl_6d8whp;
16311
- _.$_$.h4 = _UShortArray___get_size__impl__jqto1b;
16312
- _.$_$.i4 = _UShortArray___get_storage__impl__t2jpv5;
16313
- _.$_$.j4 = Key_instance;
16314
- _.$_$.k4 = EmptyCoroutineContext_getInstance;
16315
- _.$_$.l4 = BooleanCompanionObject_instance;
16316
- _.$_$.m4 = ByteCompanionObject_instance;
16317
- _.$_$.n4 = DoubleCompanionObject_instance;
16318
- _.$_$.o4 = FloatCompanionObject_instance;
16319
- _.$_$.p4 = IntCompanionObject_instance;
16320
- _.$_$.q4 = ShortCompanionObject_instance;
16321
- _.$_$.r4 = StringCompanionObject_instance;
16322
- _.$_$.s4 = Default_getInstance;
16323
- _.$_$.t4 = PrimitiveClasses_getInstance;
16324
- _.$_$.u4 = Companion_getInstance_19;
16325
- _.$_$.v4 = System_instance;
16326
- _.$_$.w4 = Companion_getInstance_23;
16327
- _.$_$.x4 = Companion_getInstance_24;
16328
- _.$_$.y4 = Companion_getInstance_27;
16329
- _.$_$.z4 = Companion_getInstance;
16330
- _.$_$.a5 = Companion_getInstance_4;
16331
- _.$_$.b5 = Companion_instance_26;
16332
- _.$_$.c5 = Companion_getInstance_28;
16333
- _.$_$.d5 = Companion_getInstance_29;
16334
- _.$_$.e5 = Companion_getInstance_30;
16335
- _.$_$.f5 = Companion_getInstance_31;
16336
- _.$_$.g5 = Unit_instance;
16337
- _.$_$.h5 = ArrayList;
16338
- _.$_$.i5 = Collection;
16339
- _.$_$.j5 = HashMap;
16340
- _.$_$.k5 = HashSet;
16341
- _.$_$.l5 = LinkedHashMap;
16342
- _.$_$.m5 = LinkedHashSet;
16343
- _.$_$.n5 = asJsReadonlyArrayView;
16344
- _.$_$.o5 = KtList;
16345
- _.$_$.p5 = Entry;
16346
- _.$_$.q5 = asJsReadonlyMapView;
16347
- _.$_$.r5 = KtMap;
16348
- _.$_$.s5 = KtMutableList;
16349
- _.$_$.t5 = KtMutableMap;
16350
- _.$_$.u5 = KtMutableSet;
16351
- _.$_$.v5 = asJsReadonlySetView;
16352
- _.$_$.w5 = KtSet;
16353
- _.$_$.x5 = addAll;
16354
- _.$_$.y5 = arrayCopy;
16355
- _.$_$.z5 = asList;
16356
- _.$_$.a6 = asReversed;
16357
- _.$_$.b6 = asReversed_0;
16358
- _.$_$.c6 = asSequence_0;
16359
- _.$_$.d6 = asSequence;
16360
- _.$_$.e6 = average;
16361
- _.$_$.f6 = binarySearch;
16362
- _.$_$.g6 = checkBuilderCapacity;
16363
- _.$_$.h6 = checkCountOverflow;
16364
- _.$_$.i6 = checkIndexOverflow;
16365
- _.$_$.j6 = collectionSizeOrDefault;
16366
- _.$_$.k6 = contains_0;
16367
- _.$_$.l6 = contentEquals;
16368
- _.$_$.m6 = contentEquals_0;
16369
- _.$_$.n6 = contentHashCode_0;
16370
- _.$_$.o6 = contentHashCode;
16371
- _.$_$.p6 = contentToString;
16372
- _.$_$.q6 = copyOf_5;
16373
- _.$_$.r6 = copyOf_3;
16374
- _.$_$.s6 = copyOf_7;
16375
- _.$_$.t6 = copyOf_0;
16376
- _.$_$.u6 = copyOf_6;
16377
- _.$_$.v6 = copyOf_1;
16378
- _.$_$.w6 = copyOf_2;
16379
- _.$_$.x6 = copyOf;
16380
- _.$_$.y6 = copyOf_4;
16381
- _.$_$.z6 = copyToArray;
16382
- _.$_$.a7 = count;
16383
- _.$_$.b7 = distinct;
16384
- _.$_$.c7 = dropLast;
16385
- _.$_$.d7 = drop;
16386
- _.$_$.e7 = emptyList;
16387
- _.$_$.f7 = emptyMap;
16388
- _.$_$.g7 = emptySet;
16389
- _.$_$.h7 = filterNotNull_0;
16390
- _.$_$.i7 = firstOrNull_0;
16391
- _.$_$.j7 = firstOrNull_1;
16392
- _.$_$.k7 = firstOrNull;
16393
- _.$_$.l7 = first_0;
16394
- _.$_$.m7 = first_1;
16395
- _.$_$.n7 = first;
16396
- _.$_$.o7 = flatten;
16397
- _.$_$.p7 = getOrNull;
16398
- _.$_$.q7 = getOrNull_0;
16399
- _.$_$.r7 = getValue;
16400
- _.$_$.s7 = indexOf;
16401
- _.$_$.t7 = get_indices_0;
16402
- _.$_$.u7 = get_indices;
16403
- _.$_$.v7 = get_indices_1;
16404
- _.$_$.w7 = joinToString_0;
16405
- _.$_$.x7 = joinTo_0;
16406
- _.$_$.y7 = get_lastIndex;
16407
- _.$_$.z7 = get_lastIndex_2;
16408
- _.$_$.a8 = get_lastIndex_0;
16409
- _.$_$.b8 = lastOrNull;
16410
- _.$_$.c8 = last_0;
16411
- _.$_$.d8 = last;
16412
- _.$_$.e8 = listOfNotNull_0;
16413
- _.$_$.f8 = listOfNotNull;
16414
- _.$_$.g8 = listOf;
16415
- _.$_$.h8 = listOf_0;
16416
- _.$_$.i8 = mapCapacity;
16417
- _.$_$.j8 = mapOf;
16418
- _.$_$.k8 = mapOf_0;
16419
- _.$_$.l8 = maxOrNull;
16420
- _.$_$.m8 = minus;
16421
- _.$_$.n8 = mutableListOf;
16422
- _.$_$.o8 = plus_5;
16423
- _.$_$.p8 = plus_6;
16424
- _.$_$.q8 = plus_3;
16425
- _.$_$.r8 = plus_2;
16426
- _.$_$.s8 = plus_0;
16427
- _.$_$.t8 = plus_1;
16428
- _.$_$.u8 = randomOrNull;
16429
- _.$_$.v8 = removeAll_0;
16430
- _.$_$.w8 = removeFirstOrNull;
16431
- _.$_$.x8 = removeLastOrNull;
16432
- _.$_$.y8 = removeLast;
16433
- _.$_$.z8 = reversed;
16434
- _.$_$.a9 = reverse;
16435
- _.$_$.b9 = setOf;
16436
- _.$_$.c9 = setOf_0;
16437
- _.$_$.d9 = singleOrNull;
16438
- _.$_$.e9 = single_0;
16439
- _.$_$.f9 = sortWith_0;
16440
- _.$_$.g9 = sortedWith;
16441
- _.$_$.h9 = sorted;
16442
- _.$_$.i9 = sum;
16443
- _.$_$.j9 = takeLast;
16444
- _.$_$.k9 = take;
16445
- _.$_$.l9 = toBooleanArray;
16446
- _.$_$.m9 = toHashSet;
16447
- _.$_$.n9 = toList_1;
16448
- _.$_$.o9 = toList_0;
16449
- _.$_$.p9 = toList;
16450
- _.$_$.q9 = toMap_2;
16451
- _.$_$.r9 = toMap;
16452
- _.$_$.s9 = toMutableList_0;
16453
- _.$_$.t9 = toMutableMap;
16454
- _.$_$.u9 = toMutableSet;
16455
- _.$_$.v9 = toSet_0;
16456
- _.$_$.w9 = toTypedArray;
16457
- _.$_$.x9 = withIndex;
16458
- _.$_$.y9 = zip_0;
16459
- _.$_$.z9 = zip;
16460
- _.$_$.aa = compareValuesBy;
16461
- _.$_$.ba = compareValues;
16462
- _.$_$.ca = CancellationException;
16463
- _.$_$.da = get_COROUTINE_SUSPENDED;
16464
- _.$_$.ea = createCoroutineUnintercepted;
16465
- _.$_$.fa = intercepted;
16466
- _.$_$.ga = startCoroutineUninterceptedOrReturnNonGeneratorVersion;
16467
- _.$_$.ha = AbstractCoroutineContextElement;
16468
- _.$_$.ia = AbstractCoroutineContextKey;
16469
- _.$_$.ja = get_0;
16470
- _.$_$.ka = minusKey_0;
16471
- _.$_$.la = ContinuationInterceptor;
16472
- _.$_$.ma = Continuation;
16473
- _.$_$.na = fold;
16474
- _.$_$.oa = get;
16475
- _.$_$.pa = minusKey;
16476
- _.$_$.qa = Element;
16477
- _.$_$.ra = plus;
16478
- _.$_$.sa = CoroutineImpl;
16479
- _.$_$.ta = startCoroutine;
16480
- _.$_$.ua = enumEntries;
16481
- _.$_$.va = println;
16482
- _.$_$.wa = get_ONE;
16483
- _.$_$.xa = add;
16484
- _.$_$.ya = bitwiseAnd;
16485
- _.$_$.za = bitwiseOr;
16486
- _.$_$.ab = bitwiseXor;
16487
- _.$_$.bb = compare;
16488
- _.$_$.cb = convertToByte;
16489
- _.$_$.db = convertToInt;
16490
- _.$_$.eb = convertToShort;
16491
- _.$_$.fb = divide;
16492
- _.$_$.gb = equalsLong;
16493
- _.$_$.hb = fromInt;
16494
- _.$_$.ib = invert;
16495
- _.$_$.jb = modulo;
16496
- _.$_$.kb = multiply;
16497
- _.$_$.lb = negate;
16498
- _.$_$.mb = numberToLong;
16499
- _.$_$.nb = shiftLeft;
16500
- _.$_$.ob = shiftRightUnsigned;
16501
- _.$_$.pb = shiftRight;
16502
- _.$_$.qb = subtract;
16503
- _.$_$.rb = toNumber;
16504
- _.$_$.sb = FunctionAdapter;
16505
- _.$_$.tb = anyToString;
16506
- _.$_$.ub = arrayIterator;
16507
- _.$_$.vb = booleanArray;
16508
- _.$_$.wb = captureStack;
16509
- _.$_$.xb = charArrayOf;
16510
- _.$_$.yb = charArray;
16511
- _.$_$.zb = charCodeAt;
16512
- _.$_$.ac = charSequenceGet;
16513
- _.$_$.bc = charSequenceLength;
16514
- _.$_$.cc = charSequenceSubSequence;
16515
- _.$_$.dc = compareTo;
16516
- _.$_$.ec = defineProp;
16517
- _.$_$.fc = equals;
16518
- _.$_$.gc = extendThrowable;
16519
- _.$_$.hc = getBooleanHashCode;
16520
- _.$_$.ic = getNumberHashCode;
16521
- _.$_$.jc = getPropertyCallableRef;
16522
- _.$_$.kc = getStringHashCode;
16523
- _.$_$.lc = hashCode_0;
16524
- _.$_$.mc = initMetadataForClass;
16525
- _.$_$.nc = initMetadataForCompanion;
16526
- _.$_$.oc = initMetadataForCoroutine;
16527
- _.$_$.pc = initMetadataForInterface;
16528
- _.$_$.qc = initMetadataForLambda;
16529
- _.$_$.rc = initMetadataForObject;
16530
- _.$_$.sc = isArray;
16531
- _.$_$.tc = isBooleanArray;
16532
- _.$_$.uc = isByteArray;
16533
- _.$_$.vc = isCharArray;
16534
- _.$_$.wc = isCharSequence;
16535
- _.$_$.xc = isDoubleArray;
16536
- _.$_$.yc = isFloatArray;
16537
- _.$_$.zc = isIntArray;
16538
- _.$_$.ad = isInterface;
16539
- _.$_$.bd = isLongArray;
16540
- _.$_$.cd = isNumber;
16541
- _.$_$.dd = isShortArray;
16542
- _.$_$.ed = isSuspendFunction;
16543
- _.$_$.fd = get_js;
16544
- _.$_$.gd = longArray;
16545
- _.$_$.hd = numberRangeToNumber;
16546
- _.$_$.id = numberToByte;
16547
- _.$_$.jd = numberToChar;
16548
- _.$_$.kd = numberToInt;
16549
- _.$_$.ld = objectCreate;
16550
- _.$_$.md = protoOf;
16551
- _.$_$.nd = toByte;
16552
- _.$_$.od = toShort;
16553
- _.$_$.pd = toString_1;
16554
- _.$_$.qd = abs_0;
16555
- _.$_$.rd = roundToInt;
16556
- _.$_$.sd = round;
16557
- _.$_$.td = ClosedRange;
16558
- _.$_$.ud = coerceAtLeast;
16559
- _.$_$.vd = coerceAtMost_0;
16560
- _.$_$.wd = coerceAtMost;
16561
- _.$_$.xd = coerceIn;
16562
- _.$_$.yd = coerceIn_0;
16563
- _.$_$.zd = contains_5;
16564
- _.$_$.ae = downTo;
16565
- _.$_$.be = random;
16566
- _.$_$.ce = step;
16567
- _.$_$.de = until;
16568
- _.$_$.ee = createInvariantKTypeProjection;
16569
- _.$_$.fe = createKType;
16570
- _.$_$.ge = getKClassFromExpression;
16571
- _.$_$.he = getKClass;
16572
- _.$_$.ie = KClass;
16573
- _.$_$.je = KMutableProperty1;
16574
- _.$_$.ke = KProperty0;
16575
- _.$_$.le = KProperty1;
16576
- _.$_$.me = KTypeParameter;
16577
- _.$_$.ne = filter;
16578
- _.$_$.oe = firstOrNull_2;
16579
- _.$_$.pe = flatMap;
16580
- _.$_$.qe = mapNotNull;
16581
- _.$_$.re = map;
16582
- _.$_$.se = toList_2;
16583
- _.$_$.te = concatToString;
16584
- _.$_$.ue = contains_7;
16585
- _.$_$.ve = contains_8;
16586
- _.$_$.we = decodeToString;
16587
- _.$_$.xe = encodeToByteArray;
16588
- _.$_$.ye = endsWith_0;
16589
- _.$_$.ze = endsWith;
16590
- _.$_$.af = equals_0;
16591
- _.$_$.bf = first_2;
16592
- _.$_$.cf = indexOfAny;
16593
- _.$_$.df = indexOf_5;
16594
- _.$_$.ef = indexOf_4;
16595
- _.$_$.ff = isBlank;
16596
- _.$_$.gf = isHighSurrogate;
16597
- _.$_$.hf = isLowSurrogate;
16598
- _.$_$.if = isSurrogate;
16599
- _.$_$.jf = isWhitespace;
16600
- _.$_$.kf = get_lastIndex_3;
16601
- _.$_$.lf = lastIndexOf_0;
16602
- _.$_$.mf = last_2;
16603
- _.$_$.nf = padStart;
16604
- _.$_$.of = removePrefix;
16605
- _.$_$.pf = removeSuffix;
16606
- _.$_$.qf = repeat;
16607
- _.$_$.rf = replace;
16608
- _.$_$.sf = replace_0;
16609
- _.$_$.tf = single_2;
16610
- _.$_$.uf = split_0;
16611
- _.$_$.vf = split;
16612
- _.$_$.wf = startsWith;
16613
- _.$_$.xf = startsWith_1;
16614
- _.$_$.yf = substringAfter;
16615
- _.$_$.zf = substringBefore;
16616
- _.$_$.ag = substring_0;
16617
- _.$_$.bg = substring;
16618
- _.$_$.cg = take_0;
16619
- _.$_$.dg = toBooleanStrictOrNull;
16620
- _.$_$.eg = toDoubleOrNull;
16621
- _.$_$.fg = toDouble;
16622
- _.$_$.gg = toIntOrNull;
16623
- _.$_$.hg = toInt;
16624
- _.$_$.ig = toLongOrNull;
16625
- _.$_$.jg = toLong;
16626
- _.$_$.kg = toString_3;
16627
- _.$_$.lg = toUByte;
16628
- _.$_$.mg = toUInt;
16629
- _.$_$.ng = toULongOrNull;
16630
- _.$_$.og = toULong;
16631
- _.$_$.pg = toUShort;
16632
- _.$_$.qg = trimIndent;
16633
- _.$_$.rg = trimMargin;
16634
- _.$_$.sg = trim;
16635
- _.$_$.tg = Duration;
16636
- _.$_$.ug = Instant;
16637
- _.$_$.vg = toDuration_1;
16638
- _.$_$.wg = toDuration_0;
16639
- _.$_$.xg = toDuration;
16640
- _.$_$.yg = Uuid;
16641
- _.$_$.zg = ArithmeticException;
16642
- _.$_$.ah = Char;
16643
- _.$_$.bh = Comparable;
16644
- _.$_$.ch = Comparator;
16645
- _.$_$.dh = DeepRecursiveFunction;
16646
- _.$_$.eh = DeepRecursiveScope;
16647
- _.$_$.fh = Enum;
16648
- _.$_$.gh = Error_0;
16649
- _.$_$.hh = Exception;
16650
- _.$_$.ih = IllegalArgumentException;
16651
- _.$_$.jh = IllegalStateException;
16652
- _.$_$.kh = Long;
16653
- _.$_$.lh = NoSuchElementException;
16654
- _.$_$.mh = Pair;
16655
- _.$_$.nh = Result;
16656
- _.$_$.oh = RuntimeException;
16657
- _.$_$.ph = THROW_CCE;
16658
- _.$_$.qh = THROW_IAE;
16659
- _.$_$.rh = Triple;
16660
- _.$_$.sh = UByteArray;
16661
- _.$_$.th = UByte;
16662
- _.$_$.uh = UIntArray;
16663
- _.$_$.vh = UInt;
16664
- _.$_$.wh = ULongArray;
16665
- _.$_$.xh = ULong;
16666
- _.$_$.yh = UShortArray;
16667
- _.$_$.zh = UShort;
16668
- _.$_$.ai = Unit;
16669
- _.$_$.bi = UnsupportedOperationException;
16670
- _.$_$.ci = addSuppressed;
16671
- _.$_$.di = arrayOf;
16672
- _.$_$.ei = countTrailingZeroBits;
16673
- _.$_$.fi = createFailure;
16674
- _.$_$.gi = ensureNotNull;
16675
- _.$_$.hi = invoke;
16676
- _.$_$.ii = isFinite_0;
16677
- _.$_$.ji = isFinite;
16678
- _.$_$.ki = isNaN_0;
16679
- _.$_$.li = lazy;
16680
- _.$_$.mi = lazy_0;
16681
- _.$_$.ni = noWhenBranchMatchedException;
16682
- _.$_$.oi = plus_4;
16683
- _.$_$.pi = printStackTrace;
16684
- _.$_$.qi = stackTraceToString;
16685
- _.$_$.ri = throwOnFailure;
16686
- _.$_$.si = throwUninitializedPropertyAccessException;
16687
- _.$_$.ti = toString_0;
16688
- _.$_$.ui = to;
16232
+ _.$_$.g1 = Exception_init_$Init$_1;
16233
+ _.$_$.h1 = IllegalArgumentException_init_$Init$_2;
16234
+ _.$_$.i1 = IllegalArgumentException_init_$Init$;
16235
+ _.$_$.j1 = IllegalArgumentException_init_$Create$;
16236
+ _.$_$.k1 = IllegalArgumentException_init_$Init$_0;
16237
+ _.$_$.l1 = IllegalArgumentException_init_$Create$_0;
16238
+ _.$_$.m1 = IllegalArgumentException_init_$Init$_1;
16239
+ _.$_$.n1 = IllegalStateException_init_$Init$;
16240
+ _.$_$.o1 = IllegalStateException_init_$Init$_0;
16241
+ _.$_$.p1 = IllegalStateException_init_$Create$_0;
16242
+ _.$_$.q1 = IllegalStateException_init_$Init$_1;
16243
+ _.$_$.r1 = IllegalStateException_init_$Create$_1;
16244
+ _.$_$.s1 = IndexOutOfBoundsException_init_$Create$;
16245
+ _.$_$.t1 = IndexOutOfBoundsException_init_$Create$_0;
16246
+ _.$_$.u1 = NoSuchElementException_init_$Create$;
16247
+ _.$_$.v1 = NoSuchElementException_init_$Init$_0;
16248
+ _.$_$.w1 = NoSuchElementException_init_$Create$_0;
16249
+ _.$_$.x1 = RuntimeException_init_$Init$;
16250
+ _.$_$.y1 = RuntimeException_init_$Init$_0;
16251
+ _.$_$.z1 = RuntimeException_init_$Init$_1;
16252
+ _.$_$.a2 = RuntimeException_init_$Create$_1;
16253
+ _.$_$.b2 = UnsupportedOperationException_init_$Init$;
16254
+ _.$_$.c2 = UnsupportedOperationException_init_$Create$_0;
16255
+ _.$_$.d2 = UnsupportedOperationException_init_$Create$_1;
16256
+ _.$_$.e2 = Duration__compareTo_impl_pchp0f;
16257
+ _.$_$.f2 = Duration__hashCode_impl_u4exz6;
16258
+ _.$_$.g2 = _Duration___get_inWholeMilliseconds__impl__msfiry;
16259
+ _.$_$.h2 = Duration__plus_impl_yu9v8f;
16260
+ _.$_$.i2 = Duration__times_impl_sfuzvp;
16261
+ _.$_$.j2 = Duration__toIsoString_impl_9h6wsm;
16262
+ _.$_$.k2 = Duration__toString_impl_8d916b;
16263
+ _.$_$.l2 = _Char___init__impl__6a9atx;
16264
+ _.$_$.m2 = Char__compareTo_impl_ypi4mb;
16265
+ _.$_$.n2 = Char__minus_impl_a2frrh;
16266
+ _.$_$.o2 = Char__minus_impl_a2frrh_0;
16267
+ _.$_$.p2 = Char__plus_impl_qi7pgj;
16268
+ _.$_$.q2 = Char__rangeTo_impl_tkncvp;
16269
+ _.$_$.r2 = Char__toInt_impl_vasixd;
16270
+ _.$_$.s2 = toString;
16271
+ _.$_$.t2 = _Result___init__impl__xyqfz8;
16272
+ _.$_$.u2 = Result__exceptionOrNull_impl_p6xea9;
16273
+ _.$_$.v2 = _Result___get_isFailure__impl__jpiriv;
16274
+ _.$_$.w2 = _Result___get_isSuccess__impl__sndoy8;
16275
+ _.$_$.x2 = _Result___get_value__impl__bjfvqg;
16276
+ _.$_$.y2 = _UByte___init__impl__g9hnc4;
16277
+ _.$_$.z2 = _UByte___get_data__impl__jof9qr;
16278
+ _.$_$.a3 = UByte__toString_impl_v72jg;
16279
+ _.$_$.b3 = _UByteArray___init__impl__ip4y9n;
16280
+ _.$_$.c3 = _UByteArray___init__impl__ip4y9n_0;
16281
+ _.$_$.d3 = UByteArray__get_impl_t5f3hv;
16282
+ _.$_$.e3 = UByteArray__set_impl_jvcicn;
16283
+ _.$_$.f3 = _UByteArray___get_size__impl__h6pkdv;
16284
+ _.$_$.g3 = _UByteArray___get_storage__impl__d4kctt;
16285
+ _.$_$.h3 = _UInt___init__impl__l7qpdl;
16286
+ _.$_$.i3 = _UInt___get_data__impl__f0vqqw;
16287
+ _.$_$.j3 = UInt__toString_impl_dbgl21;
16288
+ _.$_$.k3 = _UIntArray___init__impl__ghjpc6_0;
16289
+ _.$_$.l3 = _UIntArray___init__impl__ghjpc6;
16290
+ _.$_$.m3 = UIntArray__get_impl_gp5kza;
16291
+ _.$_$.n3 = UIntArray__set_impl_7f2zu2;
16292
+ _.$_$.o3 = _UIntArray___get_size__impl__r6l8ci;
16293
+ _.$_$.p3 = _UIntArray___get_storage__impl__92a0v0;
16294
+ _.$_$.q3 = _ULong___init__impl__c78o9k;
16295
+ _.$_$.r3 = _ULong___get_data__impl__fggpzb;
16296
+ _.$_$.s3 = ULong__toString_impl_f9au7k;
16297
+ _.$_$.t3 = _ULongArray___init__impl__twm1l3_0;
16298
+ _.$_$.u3 = _ULongArray___init__impl__twm1l3;
16299
+ _.$_$.v3 = ULongArray__get_impl_pr71q9;
16300
+ _.$_$.w3 = ULongArray__set_impl_z19mvh;
16301
+ _.$_$.x3 = _ULongArray___get_size__impl__ju6dtr;
16302
+ _.$_$.y3 = _ULongArray___get_storage__impl__28e64j;
16303
+ _.$_$.z3 = _UShort___init__impl__jigrne;
16304
+ _.$_$.a4 = _UShort___get_data__impl__g0245;
16305
+ _.$_$.b4 = UShort__toString_impl_edaoee;
16306
+ _.$_$.c4 = _UShortArray___init__impl__9b26ef_0;
16307
+ _.$_$.d4 = _UShortArray___init__impl__9b26ef;
16308
+ _.$_$.e4 = UShortArray__get_impl_fnbhmx;
16309
+ _.$_$.f4 = UShortArray__set_impl_6d8whp;
16310
+ _.$_$.g4 = _UShortArray___get_size__impl__jqto1b;
16311
+ _.$_$.h4 = _UShortArray___get_storage__impl__t2jpv5;
16312
+ _.$_$.i4 = Key_instance;
16313
+ _.$_$.j4 = EmptyCoroutineContext_getInstance;
16314
+ _.$_$.k4 = BooleanCompanionObject_instance;
16315
+ _.$_$.l4 = ByteCompanionObject_instance;
16316
+ _.$_$.m4 = DoubleCompanionObject_instance;
16317
+ _.$_$.n4 = FloatCompanionObject_instance;
16318
+ _.$_$.o4 = IntCompanionObject_instance;
16319
+ _.$_$.p4 = ShortCompanionObject_instance;
16320
+ _.$_$.q4 = StringCompanionObject_instance;
16321
+ _.$_$.r4 = Default_getInstance;
16322
+ _.$_$.s4 = PrimitiveClasses_getInstance;
16323
+ _.$_$.t4 = Companion_getInstance_19;
16324
+ _.$_$.u4 = System_instance;
16325
+ _.$_$.v4 = Companion_getInstance_23;
16326
+ _.$_$.w4 = Companion_getInstance_24;
16327
+ _.$_$.x4 = Companion_getInstance_27;
16328
+ _.$_$.y4 = Companion_getInstance;
16329
+ _.$_$.z4 = Companion_getInstance_4;
16330
+ _.$_$.a5 = Companion_instance_26;
16331
+ _.$_$.b5 = Companion_getInstance_28;
16332
+ _.$_$.c5 = Companion_getInstance_29;
16333
+ _.$_$.d5 = Companion_getInstance_30;
16334
+ _.$_$.e5 = Companion_getInstance_31;
16335
+ _.$_$.f5 = Unit_instance;
16336
+ _.$_$.g5 = ArrayList;
16337
+ _.$_$.h5 = Collection;
16338
+ _.$_$.i5 = HashMap;
16339
+ _.$_$.j5 = HashSet;
16340
+ _.$_$.k5 = LinkedHashMap;
16341
+ _.$_$.l5 = LinkedHashSet;
16342
+ _.$_$.m5 = asJsReadonlyArrayView;
16343
+ _.$_$.n5 = KtList;
16344
+ _.$_$.o5 = Entry;
16345
+ _.$_$.p5 = asJsReadonlyMapView;
16346
+ _.$_$.q5 = KtMap;
16347
+ _.$_$.r5 = KtMutableList;
16348
+ _.$_$.s5 = KtMutableMap;
16349
+ _.$_$.t5 = KtMutableSet;
16350
+ _.$_$.u5 = asJsReadonlySetView;
16351
+ _.$_$.v5 = KtSet;
16352
+ _.$_$.w5 = addAll;
16353
+ _.$_$.x5 = arrayCopy;
16354
+ _.$_$.y5 = asList;
16355
+ _.$_$.z5 = asReversed;
16356
+ _.$_$.a6 = asReversed_0;
16357
+ _.$_$.b6 = asSequence_0;
16358
+ _.$_$.c6 = asSequence;
16359
+ _.$_$.d6 = average;
16360
+ _.$_$.e6 = binarySearch;
16361
+ _.$_$.f6 = checkBuilderCapacity;
16362
+ _.$_$.g6 = checkCountOverflow;
16363
+ _.$_$.h6 = checkIndexOverflow;
16364
+ _.$_$.i6 = collectionSizeOrDefault;
16365
+ _.$_$.j6 = contains_0;
16366
+ _.$_$.k6 = contentEquals;
16367
+ _.$_$.l6 = contentEquals_0;
16368
+ _.$_$.m6 = contentHashCode_0;
16369
+ _.$_$.n6 = contentHashCode;
16370
+ _.$_$.o6 = contentToString;
16371
+ _.$_$.p6 = copyOf_5;
16372
+ _.$_$.q6 = copyOf_3;
16373
+ _.$_$.r6 = copyOf_7;
16374
+ _.$_$.s6 = copyOf_0;
16375
+ _.$_$.t6 = copyOf_6;
16376
+ _.$_$.u6 = copyOf_1;
16377
+ _.$_$.v6 = copyOf_2;
16378
+ _.$_$.w6 = copyOf;
16379
+ _.$_$.x6 = copyOf_4;
16380
+ _.$_$.y6 = copyToArray;
16381
+ _.$_$.z6 = count;
16382
+ _.$_$.a7 = distinct;
16383
+ _.$_$.b7 = dropLast;
16384
+ _.$_$.c7 = drop;
16385
+ _.$_$.d7 = emptyList;
16386
+ _.$_$.e7 = emptyMap;
16387
+ _.$_$.f7 = emptySet;
16388
+ _.$_$.g7 = filterNotNull_0;
16389
+ _.$_$.h7 = firstOrNull_0;
16390
+ _.$_$.i7 = firstOrNull_1;
16391
+ _.$_$.j7 = firstOrNull;
16392
+ _.$_$.k7 = first_0;
16393
+ _.$_$.l7 = first_1;
16394
+ _.$_$.m7 = first;
16395
+ _.$_$.n7 = flatten;
16396
+ _.$_$.o7 = getOrNull;
16397
+ _.$_$.p7 = getOrNull_0;
16398
+ _.$_$.q7 = getValue;
16399
+ _.$_$.r7 = indexOf;
16400
+ _.$_$.s7 = get_indices_0;
16401
+ _.$_$.t7 = get_indices;
16402
+ _.$_$.u7 = get_indices_1;
16403
+ _.$_$.v7 = joinToString_0;
16404
+ _.$_$.w7 = joinTo_0;
16405
+ _.$_$.x7 = get_lastIndex;
16406
+ _.$_$.y7 = get_lastIndex_2;
16407
+ _.$_$.z7 = get_lastIndex_0;
16408
+ _.$_$.a8 = lastOrNull;
16409
+ _.$_$.b8 = last_0;
16410
+ _.$_$.c8 = last;
16411
+ _.$_$.d8 = listOfNotNull_0;
16412
+ _.$_$.e8 = listOfNotNull;
16413
+ _.$_$.f8 = listOf;
16414
+ _.$_$.g8 = listOf_0;
16415
+ _.$_$.h8 = mapCapacity;
16416
+ _.$_$.i8 = mapOf;
16417
+ _.$_$.j8 = mapOf_0;
16418
+ _.$_$.k8 = maxOrNull;
16419
+ _.$_$.l8 = minus;
16420
+ _.$_$.m8 = mutableListOf;
16421
+ _.$_$.n8 = plus_5;
16422
+ _.$_$.o8 = plus_6;
16423
+ _.$_$.p8 = plus_3;
16424
+ _.$_$.q8 = plus_2;
16425
+ _.$_$.r8 = plus_0;
16426
+ _.$_$.s8 = plus_1;
16427
+ _.$_$.t8 = randomOrNull;
16428
+ _.$_$.u8 = removeAll_0;
16429
+ _.$_$.v8 = removeFirstOrNull;
16430
+ _.$_$.w8 = removeLastOrNull;
16431
+ _.$_$.x8 = removeLast;
16432
+ _.$_$.y8 = reversed;
16433
+ _.$_$.z8 = reverse;
16434
+ _.$_$.a9 = setOf;
16435
+ _.$_$.b9 = setOf_0;
16436
+ _.$_$.c9 = singleOrNull;
16437
+ _.$_$.d9 = single_0;
16438
+ _.$_$.e9 = sortWith_0;
16439
+ _.$_$.f9 = sortedWith;
16440
+ _.$_$.g9 = sorted;
16441
+ _.$_$.h9 = sum;
16442
+ _.$_$.i9 = takeLast;
16443
+ _.$_$.j9 = take;
16444
+ _.$_$.k9 = toBooleanArray;
16445
+ _.$_$.l9 = toHashSet;
16446
+ _.$_$.m9 = toList_1;
16447
+ _.$_$.n9 = toList_0;
16448
+ _.$_$.o9 = toList;
16449
+ _.$_$.p9 = toMap_2;
16450
+ _.$_$.q9 = toMap;
16451
+ _.$_$.r9 = toMutableList_0;
16452
+ _.$_$.s9 = toMutableMap;
16453
+ _.$_$.t9 = toMutableSet;
16454
+ _.$_$.u9 = toSet_0;
16455
+ _.$_$.v9 = toTypedArray;
16456
+ _.$_$.w9 = withIndex;
16457
+ _.$_$.x9 = zip_0;
16458
+ _.$_$.y9 = zip;
16459
+ _.$_$.z9 = compareValuesBy;
16460
+ _.$_$.aa = compareValues;
16461
+ _.$_$.ba = CancellationException;
16462
+ _.$_$.ca = get_COROUTINE_SUSPENDED;
16463
+ _.$_$.da = createCoroutineUnintercepted;
16464
+ _.$_$.ea = intercepted;
16465
+ _.$_$.fa = startCoroutineUninterceptedOrReturnNonGeneratorVersion;
16466
+ _.$_$.ga = AbstractCoroutineContextElement;
16467
+ _.$_$.ha = AbstractCoroutineContextKey;
16468
+ _.$_$.ia = get_0;
16469
+ _.$_$.ja = minusKey_0;
16470
+ _.$_$.ka = ContinuationInterceptor;
16471
+ _.$_$.la = Continuation;
16472
+ _.$_$.ma = fold;
16473
+ _.$_$.na = get;
16474
+ _.$_$.oa = minusKey;
16475
+ _.$_$.pa = Element;
16476
+ _.$_$.qa = plus;
16477
+ _.$_$.ra = CoroutineImpl;
16478
+ _.$_$.sa = startCoroutine;
16479
+ _.$_$.ta = enumEntries;
16480
+ _.$_$.ua = println;
16481
+ _.$_$.va = get_ONE;
16482
+ _.$_$.wa = add;
16483
+ _.$_$.xa = bitwiseAnd;
16484
+ _.$_$.ya = bitwiseOr;
16485
+ _.$_$.za = bitwiseXor;
16486
+ _.$_$.ab = compare;
16487
+ _.$_$.bb = convertToByte;
16488
+ _.$_$.cb = convertToInt;
16489
+ _.$_$.db = convertToShort;
16490
+ _.$_$.eb = divide;
16491
+ _.$_$.fb = equalsLong;
16492
+ _.$_$.gb = fromInt;
16493
+ _.$_$.hb = invert;
16494
+ _.$_$.ib = modulo;
16495
+ _.$_$.jb = multiply;
16496
+ _.$_$.kb = negate;
16497
+ _.$_$.lb = numberToLong;
16498
+ _.$_$.mb = shiftLeft;
16499
+ _.$_$.nb = shiftRightUnsigned;
16500
+ _.$_$.ob = shiftRight;
16501
+ _.$_$.pb = subtract;
16502
+ _.$_$.qb = toNumber;
16503
+ _.$_$.rb = FunctionAdapter;
16504
+ _.$_$.sb = anyToString;
16505
+ _.$_$.tb = arrayIterator;
16506
+ _.$_$.ub = booleanArray;
16507
+ _.$_$.vb = captureStack;
16508
+ _.$_$.wb = charArrayOf;
16509
+ _.$_$.xb = charArray;
16510
+ _.$_$.yb = charCodeAt;
16511
+ _.$_$.zb = charSequenceGet;
16512
+ _.$_$.ac = charSequenceLength;
16513
+ _.$_$.bc = charSequenceSubSequence;
16514
+ _.$_$.cc = compareTo;
16515
+ _.$_$.dc = defineProp;
16516
+ _.$_$.ec = equals;
16517
+ _.$_$.fc = extendThrowable;
16518
+ _.$_$.gc = getBooleanHashCode;
16519
+ _.$_$.hc = getNumberHashCode;
16520
+ _.$_$.ic = getPropertyCallableRef;
16521
+ _.$_$.jc = getStringHashCode;
16522
+ _.$_$.kc = hashCode_0;
16523
+ _.$_$.lc = initMetadataForClass;
16524
+ _.$_$.mc = initMetadataForCompanion;
16525
+ _.$_$.nc = initMetadataForCoroutine;
16526
+ _.$_$.oc = initMetadataForInterface;
16527
+ _.$_$.pc = initMetadataForLambda;
16528
+ _.$_$.qc = initMetadataForObject;
16529
+ _.$_$.rc = isArray;
16530
+ _.$_$.sc = isBooleanArray;
16531
+ _.$_$.tc = isByteArray;
16532
+ _.$_$.uc = isCharArray;
16533
+ _.$_$.vc = isCharSequence;
16534
+ _.$_$.wc = isDoubleArray;
16535
+ _.$_$.xc = isFloatArray;
16536
+ _.$_$.yc = isIntArray;
16537
+ _.$_$.zc = isInterface;
16538
+ _.$_$.ad = isLongArray;
16539
+ _.$_$.bd = isNumber;
16540
+ _.$_$.cd = isShortArray;
16541
+ _.$_$.dd = isSuspendFunction;
16542
+ _.$_$.ed = get_js;
16543
+ _.$_$.fd = longArray;
16544
+ _.$_$.gd = numberRangeToNumber;
16545
+ _.$_$.hd = numberToByte;
16546
+ _.$_$.id = numberToChar;
16547
+ _.$_$.jd = numberToInt;
16548
+ _.$_$.kd = objectCreate;
16549
+ _.$_$.ld = protoOf;
16550
+ _.$_$.md = toByte;
16551
+ _.$_$.nd = toShort;
16552
+ _.$_$.od = toString_1;
16553
+ _.$_$.pd = abs_0;
16554
+ _.$_$.qd = roundToInt;
16555
+ _.$_$.rd = round;
16556
+ _.$_$.sd = ClosedRange;
16557
+ _.$_$.td = coerceAtLeast;
16558
+ _.$_$.ud = coerceAtMost_0;
16559
+ _.$_$.vd = coerceAtMost;
16560
+ _.$_$.wd = coerceIn;
16561
+ _.$_$.xd = coerceIn_0;
16562
+ _.$_$.yd = contains_5;
16563
+ _.$_$.zd = downTo;
16564
+ _.$_$.ae = random;
16565
+ _.$_$.be = step;
16566
+ _.$_$.ce = until;
16567
+ _.$_$.de = createInvariantKTypeProjection;
16568
+ _.$_$.ee = createKType;
16569
+ _.$_$.fe = getKClassFromExpression;
16570
+ _.$_$.ge = getKClass;
16571
+ _.$_$.he = KClass;
16572
+ _.$_$.ie = KMutableProperty1;
16573
+ _.$_$.je = KProperty0;
16574
+ _.$_$.ke = KProperty1;
16575
+ _.$_$.le = KTypeParameter;
16576
+ _.$_$.me = filter;
16577
+ _.$_$.ne = firstOrNull_2;
16578
+ _.$_$.oe = flatMap;
16579
+ _.$_$.pe = mapNotNull;
16580
+ _.$_$.qe = map;
16581
+ _.$_$.re = toList_2;
16582
+ _.$_$.se = concatToString;
16583
+ _.$_$.te = contains_7;
16584
+ _.$_$.ue = contains_8;
16585
+ _.$_$.ve = decodeToString;
16586
+ _.$_$.we = encodeToByteArray;
16587
+ _.$_$.xe = endsWith_0;
16588
+ _.$_$.ye = endsWith;
16589
+ _.$_$.ze = equals_0;
16590
+ _.$_$.af = first_2;
16591
+ _.$_$.bf = indexOfAny;
16592
+ _.$_$.cf = indexOf_5;
16593
+ _.$_$.df = indexOf_4;
16594
+ _.$_$.ef = isBlank;
16595
+ _.$_$.ff = isHighSurrogate;
16596
+ _.$_$.gf = isLowSurrogate;
16597
+ _.$_$.hf = isSurrogate;
16598
+ _.$_$.if = isWhitespace;
16599
+ _.$_$.jf = get_lastIndex_3;
16600
+ _.$_$.kf = lastIndexOf_0;
16601
+ _.$_$.lf = last_2;
16602
+ _.$_$.mf = padStart;
16603
+ _.$_$.nf = removePrefix;
16604
+ _.$_$.of = removeSuffix;
16605
+ _.$_$.pf = repeat;
16606
+ _.$_$.qf = replace;
16607
+ _.$_$.rf = replace_0;
16608
+ _.$_$.sf = single_2;
16609
+ _.$_$.tf = split_0;
16610
+ _.$_$.uf = split;
16611
+ _.$_$.vf = startsWith;
16612
+ _.$_$.wf = startsWith_1;
16613
+ _.$_$.xf = substringAfter;
16614
+ _.$_$.yf = substringBefore;
16615
+ _.$_$.zf = substring_0;
16616
+ _.$_$.ag = substring;
16617
+ _.$_$.bg = take_0;
16618
+ _.$_$.cg = toBooleanStrictOrNull;
16619
+ _.$_$.dg = toDoubleOrNull;
16620
+ _.$_$.eg = toDouble;
16621
+ _.$_$.fg = toIntOrNull;
16622
+ _.$_$.gg = toInt;
16623
+ _.$_$.hg = toLongOrNull;
16624
+ _.$_$.ig = toLong;
16625
+ _.$_$.jg = toString_3;
16626
+ _.$_$.kg = toUByte;
16627
+ _.$_$.lg = toUInt;
16628
+ _.$_$.mg = toULongOrNull;
16629
+ _.$_$.ng = toULong;
16630
+ _.$_$.og = toUShort;
16631
+ _.$_$.pg = trimIndent;
16632
+ _.$_$.qg = trimMargin;
16633
+ _.$_$.rg = trim;
16634
+ _.$_$.sg = Duration;
16635
+ _.$_$.tg = Instant;
16636
+ _.$_$.ug = toDuration_1;
16637
+ _.$_$.vg = toDuration_0;
16638
+ _.$_$.wg = toDuration;
16639
+ _.$_$.xg = Uuid;
16640
+ _.$_$.yg = ArithmeticException;
16641
+ _.$_$.zg = Char;
16642
+ _.$_$.ah = Comparable;
16643
+ _.$_$.bh = Comparator;
16644
+ _.$_$.ch = DeepRecursiveFunction;
16645
+ _.$_$.dh = DeepRecursiveScope;
16646
+ _.$_$.eh = Enum;
16647
+ _.$_$.fh = Error_0;
16648
+ _.$_$.gh = Exception;
16649
+ _.$_$.hh = IllegalArgumentException;
16650
+ _.$_$.ih = IllegalStateException;
16651
+ _.$_$.jh = Long;
16652
+ _.$_$.kh = NoSuchElementException;
16653
+ _.$_$.lh = Pair;
16654
+ _.$_$.mh = Result;
16655
+ _.$_$.nh = RuntimeException;
16656
+ _.$_$.oh = THROW_CCE;
16657
+ _.$_$.ph = THROW_IAE;
16658
+ _.$_$.qh = Triple;
16659
+ _.$_$.rh = UByteArray;
16660
+ _.$_$.sh = UByte;
16661
+ _.$_$.th = UIntArray;
16662
+ _.$_$.uh = UInt;
16663
+ _.$_$.vh = ULongArray;
16664
+ _.$_$.wh = ULong;
16665
+ _.$_$.xh = UShortArray;
16666
+ _.$_$.yh = UShort;
16667
+ _.$_$.zh = Unit;
16668
+ _.$_$.ai = UnsupportedOperationException;
16669
+ _.$_$.bi = addSuppressed;
16670
+ _.$_$.ci = arrayOf;
16671
+ _.$_$.di = countTrailingZeroBits;
16672
+ _.$_$.ei = createFailure;
16673
+ _.$_$.fi = ensureNotNull;
16674
+ _.$_$.gi = invoke;
16675
+ _.$_$.hi = isFinite_0;
16676
+ _.$_$.ii = isFinite;
16677
+ _.$_$.ji = isNaN_0;
16678
+ _.$_$.ki = lazy;
16679
+ _.$_$.li = lazy_0;
16680
+ _.$_$.mi = noWhenBranchMatchedException;
16681
+ _.$_$.ni = plus_4;
16682
+ _.$_$.oi = printStackTrace;
16683
+ _.$_$.pi = stackTraceToString;
16684
+ _.$_$.qi = throwOnFailure;
16685
+ _.$_$.ri = throwUninitializedPropertyAccessException;
16686
+ _.$_$.si = toString_0;
16687
+ _.$_$.ti = to;
16689
16688
  //endregion
16690
16689
  return _;
16691
16690
  }));