raspberry_games_server_game_logic 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.
Files changed (35) hide show
  1. package/Kosi-Kaverit-kaverit.js +11 -11
  2. package/Kosi-Kodein-kodein-di.js +35 -35
  3. package/Kotlin-DateTime-library-kotlinx-datetime.js +73 -73
  4. package/Logic_Debertz-core.js +121 -90
  5. package/Logic_Debertz-core.js.map +1 -1
  6. package/Logic_Debertz-engine.js +2180 -1991
  7. package/Logic_Debertz-engine.js.map +1 -1
  8. package/Logic_Debertz-game_server.js +798 -798
  9. package/Logic_Debertz-game_server.js.map +1 -1
  10. package/error-library-error.js +5 -5
  11. package/kotlin-kotlin-stdlib.js +291 -263
  12. package/kotlin-kotlin-stdlib.js.map +1 -1
  13. package/kotlinx-atomicfu.js +5 -5
  14. package/kotlinx-coroutines-core.js +64 -64
  15. package/kotlinx-coroutines-core.js.map +1 -1
  16. package/kotlinx-io-kotlinx-io-core.js +25 -25
  17. package/kotlinx-serialization-kotlinx-serialization-core.js +71 -71
  18. package/kotlinx-serialization-kotlinx-serialization-json.js +77 -77
  19. package/ktor-ktor-client-content-negotiation.js +20 -20
  20. package/ktor-ktor-client-core.js +57 -57
  21. package/ktor-ktor-client-logging.js +23 -23
  22. package/ktor-ktor-events.js +5 -5
  23. package/ktor-ktor-http.js +69 -69
  24. package/ktor-ktor-io.js +45 -45
  25. package/ktor-ktor-serialization-kotlinx.js +14 -14
  26. package/ktor-ktor-serialization.js +15 -15
  27. package/ktor-ktor-utils.js +43 -43
  28. package/ktor-ktor-websockets.js +13 -13
  29. package/package.json +1 -1
  30. package/random-library-crypto-rand.js +11 -11
  31. package/random-library-secure-random.js +5 -5
  32. package/raspberry-cardgame-lib-core.js +35 -35
  33. package/raspberry-cardgame-lib-logger.js +13 -13
  34. package/raspberry-cardgame-lib-random.js +35 -35
  35. package/uuid.js +12 -12
@@ -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, Collection, MutableIterable]);
113
- initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList, Collection, MutableIterable]);
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, Collection, MutableIterable]);
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, [Collection, MutableIterable, 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 singleOrNull(_this__u8e3s4) {
1026
1050
  return _this__u8e3s4.m() === 1 ? _this__u8e3s4.o(0) : null;
1027
1051
  }
@@ -1095,18 +1119,6 @@ if (typeof String.prototype.endsWith === 'undefined') {
1095
1119
  return iterator.l();
1096
1120
  }
1097
1121
  }
1098
- function minOrNull(_this__u8e3s4) {
1099
- var iterator = _this__u8e3s4.j();
1100
- if (!iterator.k())
1101
- return null;
1102
- var min = iterator.l();
1103
- while (iterator.k()) {
1104
- var e = iterator.l();
1105
- if (compareTo(min, e) > 0)
1106
- min = e;
1107
- }
1108
- return min;
1109
- }
1110
1122
  function dropLast(_this__u8e3s4, n) {
1111
1123
  // Inline function 'kotlin.require' call
1112
1124
  if (!(n >= 0)) {
@@ -1294,6 +1306,18 @@ if (typeof String.prototype.endsWith === 'undefined') {
1294
1306
  function coerceAtLeast(_this__u8e3s4, minimumValue) {
1295
1307
  return _this__u8e3s4 < minimumValue ? minimumValue : _this__u8e3s4;
1296
1308
  }
1309
+ function coerceAtLeast_0(_this__u8e3s4, minimumValue) {
1310
+ return _this__u8e3s4 < minimumValue ? minimumValue : _this__u8e3s4;
1311
+ }
1312
+ function coerceIn_0(_this__u8e3s4, minimumValue, maximumValue) {
1313
+ if (minimumValue > maximumValue)
1314
+ throw IllegalArgumentException_init_$Create$_0('Cannot coerce value to an empty range: maximum ' + maximumValue + ' is less than minimum ' + minimumValue + '.');
1315
+ if (_this__u8e3s4 < minimumValue)
1316
+ return minimumValue;
1317
+ if (_this__u8e3s4 > maximumValue)
1318
+ return maximumValue;
1319
+ return _this__u8e3s4;
1320
+ }
1297
1321
  function contains_5(_this__u8e3s4, value) {
1298
1322
  // Inline function 'kotlin.let' call
1299
1323
  var it = toIntExactOrNull(value);
@@ -1305,7 +1329,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
1305
1329
  function coerceAtMost(_this__u8e3s4, maximumValue) {
1306
1330
  return _this__u8e3s4 > maximumValue ? maximumValue : _this__u8e3s4;
1307
1331
  }
1308
- function coerceIn_0(_this__u8e3s4, minimumValue, maximumValue) {
1332
+ function coerceIn_1(_this__u8e3s4, minimumValue, maximumValue) {
1309
1333
  if (minimumValue > maximumValue)
1310
1334
  throw IllegalArgumentException_init_$Create$_0('Cannot coerce value to an empty range: maximum ' + maximumValue + ' is less than minimum ' + minimumValue + '.');
1311
1335
  if (_this__u8e3s4 < minimumValue)
@@ -1314,15 +1338,15 @@ if (typeof String.prototype.endsWith === 'undefined') {
1314
1338
  return maximumValue;
1315
1339
  return _this__u8e3s4;
1316
1340
  }
1317
- function coerceIn_1(_this__u8e3s4, range) {
1341
+ function coerceIn_2(_this__u8e3s4, range) {
1318
1342
  if (isInterface(range, ClosedFloatingPointRange)) {
1319
- return coerceIn_2(_this__u8e3s4, range);
1343
+ return coerceIn_3(_this__u8e3s4, range);
1320
1344
  }
1321
1345
  if (range.p())
1322
1346
  throw IllegalArgumentException_init_$Create$_0('Cannot coerce value to an empty range: ' + toString_1(range) + '.');
1323
1347
  return _this__u8e3s4.z(range.g1()) < 0 ? range.g1() : _this__u8e3s4.z(range.f1()) > 0 ? range.f1() : _this__u8e3s4;
1324
1348
  }
1325
- function coerceIn_2(_this__u8e3s4, range) {
1349
+ function coerceIn_3(_this__u8e3s4, range) {
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 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;
@@ -12661,7 +12685,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
12661
12685
  function DelimitedRangesSequence$iterator$1(this$0) {
12662
12686
  this.tk_1 = this$0;
12663
12687
  this.ok_1 = -1;
12664
- this.pk_1 = coerceIn_0(this$0.vk_1, 0, charSequenceLength(this$0.uk_1));
12688
+ this.pk_1 = coerceIn_1(this$0.vk_1, 0, charSequenceLength(this$0.uk_1));
12665
12689
  this.qk_1 = this.pk_1;
12666
12690
  this.rk_1 = null;
12667
12691
  this.sk_1 = 0;
@@ -13096,7 +13120,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
13096
13120
  tmp_5 = false;
13097
13121
  }
13098
13122
  if (tmp_5) {
13099
- tmp_4 = durationOfMillis(coerceIn_1(totalMillis, (new Long(1, -1073741824)).i3(new Long(-1, 1073741823))));
13123
+ tmp_4 = durationOfMillis(coerceIn_2(totalMillis, (new Long(1, -1073741824)).i3(new Long(-1, 1073741823))));
13100
13124
  } else {
13101
13125
  tmp_4 = imul(get_sign(value), get_sign_0(scale)) > 0 ? Companion_getInstance_23().bl_1 : Companion_getInstance_23().cl_1;
13102
13126
  }
@@ -13109,7 +13133,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
13109
13133
  var tmp_6;
13110
13134
  // Inline function 'kotlin.Long.div' call
13111
13135
  if (result.c3(toLong(scale)).equals(value)) {
13112
- tmp_6 = durationOfMillis(coerceIn_1(result, (new Long(1, -1073741824)).i3(new Long(-1, 1073741823))));
13136
+ tmp_6 = durationOfMillis(coerceIn_2(result, (new Long(1, -1073741824)).i3(new Long(-1, 1073741823))));
13113
13137
  } else {
13114
13138
  tmp_6 = imul(get_sign(value), get_sign_0(scale)) > 0 ? Companion_getInstance_23().bl_1 : Companion_getInstance_23().cl_1;
13115
13139
  }
@@ -16303,246 +16327,250 @@ if (typeof String.prototype.endsWith === 'undefined') {
16303
16327
  _.$_$.l8 = mapCapacity;
16304
16328
  _.$_$.m8 = mapOf;
16305
16329
  _.$_$.n8 = mapOf_0;
16306
- _.$_$.o8 = minus;
16307
- _.$_$.p8 = mutableListOf;
16308
- _.$_$.q8 = plus_5;
16309
- _.$_$.r8 = plus_3;
16310
- _.$_$.s8 = plus_2;
16311
- _.$_$.t8 = plus_1;
16312
- _.$_$.u8 = plus_0;
16313
- _.$_$.v8 = removeFirstOrNull;
16314
- _.$_$.w8 = removeLastOrNull;
16315
- _.$_$.x8 = removeLast;
16316
- _.$_$.y8 = reversed;
16317
- _.$_$.z8 = reverse;
16318
- _.$_$.a9 = setOf;
16319
- _.$_$.b9 = setOf_0;
16320
- _.$_$.c9 = singleOrNull;
16321
- _.$_$.d9 = single_0;
16322
- _.$_$.e9 = sortWith_0;
16323
- _.$_$.f9 = sortedWith;
16324
- _.$_$.g9 = sorted;
16325
- _.$_$.h9 = sum;
16326
- _.$_$.i9 = takeLast;
16327
- _.$_$.j9 = take;
16328
- _.$_$.k9 = toBooleanArray;
16329
- _.$_$.l9 = toHashSet;
16330
- _.$_$.m9 = toList_1;
16331
- _.$_$.n9 = toList_0;
16332
- _.$_$.o9 = toList;
16333
- _.$_$.p9 = toMap_2;
16334
- _.$_$.q9 = toMap;
16335
- _.$_$.r9 = toMutableList_0;
16336
- _.$_$.s9 = toMutableMap;
16337
- _.$_$.t9 = toMutableSet;
16338
- _.$_$.u9 = toSet_0;
16339
- _.$_$.v9 = toTypedArray;
16340
- _.$_$.w9 = withIndex;
16341
- _.$_$.x9 = zip_0;
16342
- _.$_$.y9 = zip;
16343
- _.$_$.z9 = compareValuesBy;
16344
- _.$_$.aa = compareValues;
16345
- _.$_$.ba = CancellationException;
16346
- _.$_$.ca = get_COROUTINE_SUSPENDED;
16347
- _.$_$.da = createCoroutineUnintercepted;
16348
- _.$_$.ea = intercepted;
16349
- _.$_$.fa = startCoroutineUninterceptedOrReturnNonGeneratorVersion;
16350
- _.$_$.ga = AbstractCoroutineContextElement;
16351
- _.$_$.ha = AbstractCoroutineContextKey;
16352
- _.$_$.ia = get_0;
16353
- _.$_$.ja = minusKey_0;
16354
- _.$_$.ka = ContinuationInterceptor;
16355
- _.$_$.la = Continuation;
16356
- _.$_$.ma = fold;
16357
- _.$_$.na = get;
16358
- _.$_$.oa = minusKey;
16359
- _.$_$.pa = Element;
16360
- _.$_$.qa = plus;
16361
- _.$_$.ra = CoroutineImpl;
16362
- _.$_$.sa = startCoroutine;
16363
- _.$_$.ta = enumEntries;
16364
- _.$_$.ua = println;
16365
- _.$_$.va = FunctionAdapter;
16366
- _.$_$.wa = anyToString;
16367
- _.$_$.xa = arrayIterator;
16368
- _.$_$.ya = booleanArray;
16369
- _.$_$.za = captureStack;
16370
- _.$_$.ab = charArrayOf;
16371
- _.$_$.bb = charArray;
16372
- _.$_$.cb = charCodeAt;
16373
- _.$_$.db = charSequenceGet;
16374
- _.$_$.eb = charSequenceLength;
16375
- _.$_$.fb = charSequenceSubSequence;
16376
- _.$_$.gb = compareTo;
16377
- _.$_$.hb = defineProp;
16378
- _.$_$.ib = equals;
16379
- _.$_$.jb = extendThrowable;
16380
- _.$_$.kb = getBooleanHashCode;
16381
- _.$_$.lb = getNumberHashCode;
16382
- _.$_$.mb = getPropertyCallableRef;
16383
- _.$_$.nb = getStringHashCode;
16384
- _.$_$.ob = hashCode;
16385
- _.$_$.pb = initMetadataForClass;
16386
- _.$_$.qb = initMetadataForCompanion;
16387
- _.$_$.rb = initMetadataForCoroutine;
16388
- _.$_$.sb = initMetadataForInterface;
16389
- _.$_$.tb = initMetadataForLambda;
16390
- _.$_$.ub = initMetadataForObject;
16391
- _.$_$.vb = isArray;
16392
- _.$_$.wb = isBooleanArray;
16393
- _.$_$.xb = isByteArray;
16394
- _.$_$.yb = isCharArray;
16395
- _.$_$.zb = isCharSequence;
16396
- _.$_$.ac = isDoubleArray;
16397
- _.$_$.bc = isFloatArray;
16398
- _.$_$.cc = isIntArray;
16399
- _.$_$.dc = isInterface;
16400
- _.$_$.ec = isLongArray;
16401
- _.$_$.fc = isNumber;
16402
- _.$_$.gc = isShortArray;
16403
- _.$_$.hc = isSuspendFunction;
16404
- _.$_$.ic = get_js;
16405
- _.$_$.jc = longArray;
16406
- _.$_$.kc = numberRangeToNumber;
16407
- _.$_$.lc = numberToByte;
16408
- _.$_$.mc = numberToChar;
16409
- _.$_$.nc = numberToInt;
16410
- _.$_$.oc = numberToLong;
16411
- _.$_$.pc = objectCreate;
16412
- _.$_$.qc = protoOf;
16413
- _.$_$.rc = toByte;
16414
- _.$_$.sc = toLong;
16415
- _.$_$.tc = toShort;
16416
- _.$_$.uc = toString_1;
16417
- _.$_$.vc = abs;
16418
- _.$_$.wc = roundToInt;
16419
- _.$_$.xc = round;
16420
- _.$_$.yc = ClosedRange;
16421
- _.$_$.zc = coerceAtLeast;
16422
- _.$_$.ad = coerceAtMost_0;
16423
- _.$_$.bd = coerceAtMost;
16424
- _.$_$.cd = coerceIn;
16425
- _.$_$.dd = contains_5;
16426
- _.$_$.ed = downTo;
16427
- _.$_$.fd = step;
16428
- _.$_$.gd = until;
16429
- _.$_$.hd = KClass;
16430
- _.$_$.id = KMutableProperty1;
16431
- _.$_$.jd = KProperty0;
16432
- _.$_$.kd = KProperty1;
16433
- _.$_$.ld = KTypeParameter;
16434
- _.$_$.md = filter;
16435
- _.$_$.nd = firstOrNull_2;
16436
- _.$_$.od = flatMap;
16437
- _.$_$.pd = mapNotNull;
16438
- _.$_$.qd = map;
16439
- _.$_$.rd = toList_2;
16440
- _.$_$.sd = concatToString;
16441
- _.$_$.td = contains_8;
16442
- _.$_$.ud = contains_7;
16443
- _.$_$.vd = decodeToString;
16444
- _.$_$.wd = encodeToByteArray;
16445
- _.$_$.xd = endsWith_0;
16446
- _.$_$.yd = endsWith;
16447
- _.$_$.zd = equals_0;
16448
- _.$_$.ae = first_2;
16449
- _.$_$.be = indexOfAny;
16450
- _.$_$.ce = indexOf_5;
16451
- _.$_$.de = indexOf_4;
16452
- _.$_$.ee = isBlank;
16453
- _.$_$.fe = isHighSurrogate;
16454
- _.$_$.ge = isLowSurrogate;
16455
- _.$_$.he = isSurrogate;
16456
- _.$_$.ie = isWhitespace;
16457
- _.$_$.je = get_lastIndex_3;
16458
- _.$_$.ke = lastIndexOf_0;
16459
- _.$_$.le = last_2;
16460
- _.$_$.me = padStart;
16461
- _.$_$.ne = removePrefix;
16462
- _.$_$.oe = removeSuffix;
16463
- _.$_$.pe = repeat;
16464
- _.$_$.qe = replace;
16465
- _.$_$.re = replace_0;
16466
- _.$_$.se = single_2;
16467
- _.$_$.te = split;
16468
- _.$_$.ue = split_1;
16469
- _.$_$.ve = startsWith;
16470
- _.$_$.we = startsWith_1;
16471
- _.$_$.xe = substringAfter;
16472
- _.$_$.ye = substringBefore;
16473
- _.$_$.ze = substring_0;
16474
- _.$_$.af = substring;
16475
- _.$_$.bf = take_0;
16476
- _.$_$.cf = toBooleanStrictOrNull;
16477
- _.$_$.df = toDoubleOrNull;
16478
- _.$_$.ef = toDouble;
16479
- _.$_$.ff = toIntOrNull;
16480
- _.$_$.gf = toInt;
16481
- _.$_$.hf = toLongOrNull;
16482
- _.$_$.if = toLong_0;
16483
- _.$_$.jf = toString_3;
16484
- _.$_$.kf = toUByte;
16485
- _.$_$.lf = toUInt;
16486
- _.$_$.mf = toULongOrNull;
16487
- _.$_$.nf = toULong;
16488
- _.$_$.of = toUShort;
16489
- _.$_$.pf = trimIndent;
16490
- _.$_$.qf = trimMargin;
16491
- _.$_$.rf = trim;
16492
- _.$_$.sf = Duration;
16493
- _.$_$.tf = Instant;
16494
- _.$_$.uf = toDuration_1;
16495
- _.$_$.vf = toDuration_0;
16496
- _.$_$.wf = toDuration;
16497
- _.$_$.xf = Uuid;
16498
- _.$_$.yf = ArithmeticException;
16499
- _.$_$.zf = Char;
16500
- _.$_$.ag = Comparable;
16501
- _.$_$.bg = Comparator;
16502
- _.$_$.cg = DeepRecursiveFunction;
16503
- _.$_$.dg = DeepRecursiveScope;
16504
- _.$_$.eg = Enum;
16505
- _.$_$.fg = Error_0;
16506
- _.$_$.gg = Exception;
16507
- _.$_$.hg = IllegalArgumentException;
16508
- _.$_$.ig = IllegalStateException;
16509
- _.$_$.jg = Long;
16510
- _.$_$.kg = NoSuchElementException;
16511
- _.$_$.lg = Pair;
16512
- _.$_$.mg = Result;
16513
- _.$_$.ng = RuntimeException;
16514
- _.$_$.og = THROW_CCE;
16515
- _.$_$.pg = THROW_IAE;
16516
- _.$_$.qg = Triple;
16517
- _.$_$.rg = UByteArray;
16518
- _.$_$.sg = UByte;
16519
- _.$_$.tg = UIntArray;
16520
- _.$_$.ug = UInt;
16521
- _.$_$.vg = ULongArray;
16522
- _.$_$.wg = ULong;
16523
- _.$_$.xg = UShortArray;
16524
- _.$_$.yg = UShort;
16525
- _.$_$.zg = Unit;
16526
- _.$_$.ah = UnsupportedOperationException;
16527
- _.$_$.bh = addSuppressed;
16528
- _.$_$.ch = arrayOf;
16529
- _.$_$.dh = countTrailingZeroBits;
16530
- _.$_$.eh = createFailure;
16531
- _.$_$.fh = ensureNotNull;
16532
- _.$_$.gh = invoke;
16533
- _.$_$.hh = isFinite;
16534
- _.$_$.ih = isFinite_0;
16535
- _.$_$.jh = isNaN_0;
16536
- _.$_$.kh = lazy_0;
16537
- _.$_$.lh = lazy;
16538
- _.$_$.mh = noWhenBranchMatchedException;
16539
- _.$_$.nh = plus_4;
16540
- _.$_$.oh = printStackTrace;
16541
- _.$_$.ph = stackTraceToString;
16542
- _.$_$.qh = throwOnFailure;
16543
- _.$_$.rh = throwUninitializedPropertyAccessException;
16544
- _.$_$.sh = toString_0;
16545
- _.$_$.th = to;
16330
+ _.$_$.o8 = maxOrNull;
16331
+ _.$_$.p8 = minOrNull;
16332
+ _.$_$.q8 = minus;
16333
+ _.$_$.r8 = mutableListOf;
16334
+ _.$_$.s8 = plus_5;
16335
+ _.$_$.t8 = plus_3;
16336
+ _.$_$.u8 = plus_2;
16337
+ _.$_$.v8 = plus_1;
16338
+ _.$_$.w8 = plus_0;
16339
+ _.$_$.x8 = removeFirstOrNull;
16340
+ _.$_$.y8 = removeLastOrNull;
16341
+ _.$_$.z8 = removeLast;
16342
+ _.$_$.a9 = reversed;
16343
+ _.$_$.b9 = reverse;
16344
+ _.$_$.c9 = setOf;
16345
+ _.$_$.d9 = setOf_0;
16346
+ _.$_$.e9 = singleOrNull;
16347
+ _.$_$.f9 = single_0;
16348
+ _.$_$.g9 = sortWith_0;
16349
+ _.$_$.h9 = sortedWith;
16350
+ _.$_$.i9 = sorted;
16351
+ _.$_$.j9 = sum;
16352
+ _.$_$.k9 = takeLast;
16353
+ _.$_$.l9 = take;
16354
+ _.$_$.m9 = toBooleanArray;
16355
+ _.$_$.n9 = toHashSet;
16356
+ _.$_$.o9 = toList_1;
16357
+ _.$_$.p9 = toList_0;
16358
+ _.$_$.q9 = toList;
16359
+ _.$_$.r9 = toMap_2;
16360
+ _.$_$.s9 = toMap;
16361
+ _.$_$.t9 = toMutableList_0;
16362
+ _.$_$.u9 = toMutableMap;
16363
+ _.$_$.v9 = toMutableSet;
16364
+ _.$_$.w9 = toSet_0;
16365
+ _.$_$.x9 = toTypedArray;
16366
+ _.$_$.y9 = withIndex;
16367
+ _.$_$.z9 = zip_0;
16368
+ _.$_$.aa = zip;
16369
+ _.$_$.ba = compareValuesBy;
16370
+ _.$_$.ca = compareValues;
16371
+ _.$_$.da = CancellationException;
16372
+ _.$_$.ea = get_COROUTINE_SUSPENDED;
16373
+ _.$_$.fa = createCoroutineUnintercepted;
16374
+ _.$_$.ga = intercepted;
16375
+ _.$_$.ha = startCoroutineUninterceptedOrReturnNonGeneratorVersion;
16376
+ _.$_$.ia = AbstractCoroutineContextElement;
16377
+ _.$_$.ja = AbstractCoroutineContextKey;
16378
+ _.$_$.ka = get_0;
16379
+ _.$_$.la = minusKey_0;
16380
+ _.$_$.ma = ContinuationInterceptor;
16381
+ _.$_$.na = Continuation;
16382
+ _.$_$.oa = fold;
16383
+ _.$_$.pa = get;
16384
+ _.$_$.qa = minusKey;
16385
+ _.$_$.ra = Element;
16386
+ _.$_$.sa = plus;
16387
+ _.$_$.ta = CoroutineImpl;
16388
+ _.$_$.ua = startCoroutine;
16389
+ _.$_$.va = enumEntries;
16390
+ _.$_$.wa = println;
16391
+ _.$_$.xa = FunctionAdapter;
16392
+ _.$_$.ya = anyToString;
16393
+ _.$_$.za = arrayIterator;
16394
+ _.$_$.ab = booleanArray;
16395
+ _.$_$.bb = captureStack;
16396
+ _.$_$.cb = charArrayOf;
16397
+ _.$_$.db = charArray;
16398
+ _.$_$.eb = charCodeAt;
16399
+ _.$_$.fb = charSequenceGet;
16400
+ _.$_$.gb = charSequenceLength;
16401
+ _.$_$.hb = charSequenceSubSequence;
16402
+ _.$_$.ib = compareTo;
16403
+ _.$_$.jb = defineProp;
16404
+ _.$_$.kb = equals;
16405
+ _.$_$.lb = extendThrowable;
16406
+ _.$_$.mb = getBooleanHashCode;
16407
+ _.$_$.nb = getNumberHashCode;
16408
+ _.$_$.ob = getPropertyCallableRef;
16409
+ _.$_$.pb = getStringHashCode;
16410
+ _.$_$.qb = hashCode;
16411
+ _.$_$.rb = initMetadataForClass;
16412
+ _.$_$.sb = initMetadataForCompanion;
16413
+ _.$_$.tb = initMetadataForCoroutine;
16414
+ _.$_$.ub = initMetadataForInterface;
16415
+ _.$_$.vb = initMetadataForLambda;
16416
+ _.$_$.wb = initMetadataForObject;
16417
+ _.$_$.xb = isArray;
16418
+ _.$_$.yb = isBooleanArray;
16419
+ _.$_$.zb = isByteArray;
16420
+ _.$_$.ac = isCharArray;
16421
+ _.$_$.bc = isCharSequence;
16422
+ _.$_$.cc = isDoubleArray;
16423
+ _.$_$.dc = isFloatArray;
16424
+ _.$_$.ec = isIntArray;
16425
+ _.$_$.fc = isInterface;
16426
+ _.$_$.gc = isLongArray;
16427
+ _.$_$.hc = isNumber;
16428
+ _.$_$.ic = isShortArray;
16429
+ _.$_$.jc = isSuspendFunction;
16430
+ _.$_$.kc = get_js;
16431
+ _.$_$.lc = longArray;
16432
+ _.$_$.mc = numberRangeToNumber;
16433
+ _.$_$.nc = numberToByte;
16434
+ _.$_$.oc = numberToChar;
16435
+ _.$_$.pc = numberToInt;
16436
+ _.$_$.qc = numberToLong;
16437
+ _.$_$.rc = objectCreate;
16438
+ _.$_$.sc = protoOf;
16439
+ _.$_$.tc = toByte;
16440
+ _.$_$.uc = toLong;
16441
+ _.$_$.vc = toShort;
16442
+ _.$_$.wc = toString_1;
16443
+ _.$_$.xc = abs;
16444
+ _.$_$.yc = roundToInt;
16445
+ _.$_$.zc = round;
16446
+ _.$_$.ad = ClosedRange;
16447
+ _.$_$.bd = coerceAtLeast_0;
16448
+ _.$_$.cd = coerceAtLeast;
16449
+ _.$_$.dd = coerceAtMost_0;
16450
+ _.$_$.ed = coerceAtMost;
16451
+ _.$_$.fd = coerceIn_0;
16452
+ _.$_$.gd = coerceIn;
16453
+ _.$_$.hd = contains_5;
16454
+ _.$_$.id = downTo;
16455
+ _.$_$.jd = step;
16456
+ _.$_$.kd = until;
16457
+ _.$_$.ld = KClass;
16458
+ _.$_$.md = KMutableProperty1;
16459
+ _.$_$.nd = KProperty0;
16460
+ _.$_$.od = KProperty1;
16461
+ _.$_$.pd = KTypeParameter;
16462
+ _.$_$.qd = filter;
16463
+ _.$_$.rd = firstOrNull_2;
16464
+ _.$_$.sd = flatMap;
16465
+ _.$_$.td = mapNotNull;
16466
+ _.$_$.ud = map;
16467
+ _.$_$.vd = toList_2;
16468
+ _.$_$.wd = concatToString;
16469
+ _.$_$.xd = contains_8;
16470
+ _.$_$.yd = contains_7;
16471
+ _.$_$.zd = decodeToString;
16472
+ _.$_$.ae = encodeToByteArray;
16473
+ _.$_$.be = endsWith_0;
16474
+ _.$_$.ce = endsWith;
16475
+ _.$_$.de = equals_0;
16476
+ _.$_$.ee = first_2;
16477
+ _.$_$.fe = indexOfAny;
16478
+ _.$_$.ge = indexOf_5;
16479
+ _.$_$.he = indexOf_4;
16480
+ _.$_$.ie = isBlank;
16481
+ _.$_$.je = isHighSurrogate;
16482
+ _.$_$.ke = isLowSurrogate;
16483
+ _.$_$.le = isSurrogate;
16484
+ _.$_$.me = isWhitespace;
16485
+ _.$_$.ne = get_lastIndex_3;
16486
+ _.$_$.oe = lastIndexOf_0;
16487
+ _.$_$.pe = last_2;
16488
+ _.$_$.qe = padStart;
16489
+ _.$_$.re = removePrefix;
16490
+ _.$_$.se = removeSuffix;
16491
+ _.$_$.te = repeat;
16492
+ _.$_$.ue = replace;
16493
+ _.$_$.ve = replace_0;
16494
+ _.$_$.we = single_2;
16495
+ _.$_$.xe = split;
16496
+ _.$_$.ye = split_1;
16497
+ _.$_$.ze = startsWith;
16498
+ _.$_$.af = startsWith_1;
16499
+ _.$_$.bf = substringAfter;
16500
+ _.$_$.cf = substringBefore;
16501
+ _.$_$.df = substring_0;
16502
+ _.$_$.ef = substring;
16503
+ _.$_$.ff = take_0;
16504
+ _.$_$.gf = toBooleanStrictOrNull;
16505
+ _.$_$.hf = toDoubleOrNull;
16506
+ _.$_$.if = toDouble;
16507
+ _.$_$.jf = toIntOrNull;
16508
+ _.$_$.kf = toInt;
16509
+ _.$_$.lf = toLongOrNull;
16510
+ _.$_$.mf = toLong_0;
16511
+ _.$_$.nf = toString_3;
16512
+ _.$_$.of = toUByte;
16513
+ _.$_$.pf = toUInt;
16514
+ _.$_$.qf = toULongOrNull;
16515
+ _.$_$.rf = toULong;
16516
+ _.$_$.sf = toUShort;
16517
+ _.$_$.tf = trimIndent;
16518
+ _.$_$.uf = trimMargin;
16519
+ _.$_$.vf = trim;
16520
+ _.$_$.wf = Duration;
16521
+ _.$_$.xf = Instant;
16522
+ _.$_$.yf = toDuration_1;
16523
+ _.$_$.zf = toDuration_0;
16524
+ _.$_$.ag = toDuration;
16525
+ _.$_$.bg = Uuid;
16526
+ _.$_$.cg = ArithmeticException;
16527
+ _.$_$.dg = Char;
16528
+ _.$_$.eg = Comparable;
16529
+ _.$_$.fg = Comparator;
16530
+ _.$_$.gg = DeepRecursiveFunction;
16531
+ _.$_$.hg = DeepRecursiveScope;
16532
+ _.$_$.ig = Enum;
16533
+ _.$_$.jg = Error_0;
16534
+ _.$_$.kg = Exception;
16535
+ _.$_$.lg = IllegalArgumentException;
16536
+ _.$_$.mg = IllegalStateException;
16537
+ _.$_$.ng = Long;
16538
+ _.$_$.og = NoSuchElementException;
16539
+ _.$_$.pg = Pair;
16540
+ _.$_$.qg = Result;
16541
+ _.$_$.rg = RuntimeException;
16542
+ _.$_$.sg = THROW_CCE;
16543
+ _.$_$.tg = THROW_IAE;
16544
+ _.$_$.ug = Triple;
16545
+ _.$_$.vg = UByteArray;
16546
+ _.$_$.wg = UByte;
16547
+ _.$_$.xg = UIntArray;
16548
+ _.$_$.yg = UInt;
16549
+ _.$_$.zg = ULongArray;
16550
+ _.$_$.ah = ULong;
16551
+ _.$_$.bh = UShortArray;
16552
+ _.$_$.ch = UShort;
16553
+ _.$_$.dh = Unit;
16554
+ _.$_$.eh = UnsupportedOperationException;
16555
+ _.$_$.fh = addSuppressed;
16556
+ _.$_$.gh = arrayOf;
16557
+ _.$_$.hh = countTrailingZeroBits;
16558
+ _.$_$.ih = createFailure;
16559
+ _.$_$.jh = ensureNotNull;
16560
+ _.$_$.kh = invoke;
16561
+ _.$_$.lh = isFinite;
16562
+ _.$_$.mh = isFinite_0;
16563
+ _.$_$.nh = isNaN_0;
16564
+ _.$_$.oh = lazy_0;
16565
+ _.$_$.ph = lazy;
16566
+ _.$_$.qh = noWhenBranchMatchedException;
16567
+ _.$_$.rh = plus_4;
16568
+ _.$_$.sh = printStackTrace;
16569
+ _.$_$.th = stackTraceToString;
16570
+ _.$_$.uh = throwOnFailure;
16571
+ _.$_$.vh = throwUninitializedPropertyAccessException;
16572
+ _.$_$.wh = toString_0;
16573
+ _.$_$.xh = to;
16546
16574
  //endregion
16547
16575
  return _;
16548
16576
  }));