game_client_logic_deb 1.8.355 → 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 +72 -72
  4. package/Logic_Debertz-core.js +116 -85
  5. package/Logic_Debertz-core.js.map +1 -1
  6. package/Logic_Debertz-engine.js +2013 -1824
  7. package/Logic_Debertz-engine.js.map +1 -1
  8. package/Logic_Debertz-game_client.d.ts +1 -1
  9. package/Logic_Debertz-game_client.js +2551 -2551
  10. package/Logic_Debertz-game_client.js.map +1 -1
  11. package/error-library-error.js +5 -5
  12. package/kotlin-kotlin-stdlib.js +305 -277
  13. package/kotlin-kotlin-stdlib.js.map +1 -1
  14. package/kotlinx-atomicfu.js +5 -5
  15. package/kotlinx-coroutines-core.js +57 -57
  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
@@ -1022,25 +1022,32 @@ if (typeof String.prototype.startsWith === 'undefined') {
1022
1022
  }
1023
1023
  return count === 0 ? NaN : sum / count;
1024
1024
  }
1025
- function singleOrNull(_this__u8e3s4) {
1026
- return _this__u8e3s4.m() === 1 ? _this__u8e3s4.o(0) : null;
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;
1027
1036
  }
1028
- function zip_0(_this__u8e3s4, other) {
1029
- // Inline function 'kotlin.collections.zip' call
1030
- var first = _this__u8e3s4.j();
1031
- var second = other.j();
1032
- var tmp0 = collectionSizeOrDefault(_this__u8e3s4, 10);
1033
- // Inline function 'kotlin.comparisons.minOf' call
1034
- var b = collectionSizeOrDefault(other, 10);
1035
- var tmp$ret$0 = Math.min(tmp0, b);
1036
- var list = ArrayList_init_$Create$_0(tmp$ret$0);
1037
- while (first.k() && second.k()) {
1038
- var tmp0_0 = first.l();
1039
- var t2 = second.l();
1040
- var tmp$ret$1 = to(tmp0_0, t2);
1041
- list.e(tmp$ret$1);
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;
1042
1046
  }
1043
- return list;
1047
+ return max;
1048
+ }
1049
+ function singleOrNull(_this__u8e3s4) {
1050
+ return _this__u8e3s4.m() === 1 ? _this__u8e3s4.o(0) : null;
1044
1051
  }
1045
1052
  function toList_0(_this__u8e3s4) {
1046
1053
  if (isInterface(_this__u8e3s4, Collection)) {
@@ -1067,6 +1074,23 @@ if (typeof String.prototype.startsWith === 'undefined') {
1067
1074
  }
1068
1075
  return optimizeReadOnlyList(toMutableList_1(_this__u8e3s4));
1069
1076
  }
1077
+ function zip_0(_this__u8e3s4, other) {
1078
+ // Inline function 'kotlin.collections.zip' call
1079
+ var first = _this__u8e3s4.j();
1080
+ var second = other.j();
1081
+ var tmp0 = collectionSizeOrDefault(_this__u8e3s4, 10);
1082
+ // Inline function 'kotlin.comparisons.minOf' call
1083
+ var b = collectionSizeOrDefault(other, 10);
1084
+ var tmp$ret$0 = Math.min(tmp0, b);
1085
+ var list = ArrayList_init_$Create$_0(tmp$ret$0);
1086
+ while (first.k() && second.k()) {
1087
+ var tmp0_0 = first.l();
1088
+ var t2 = second.l();
1089
+ var tmp$ret$1 = to(tmp0_0, t2);
1090
+ list.e(tmp$ret$1);
1091
+ }
1092
+ return list;
1093
+ }
1070
1094
  function takeLast(_this__u8e3s4, n) {
1071
1095
  // Inline function 'kotlin.require' call
1072
1096
  if (!(n >= 0)) {
@@ -1165,18 +1189,6 @@ if (typeof String.prototype.startsWith === 'undefined') {
1165
1189
  return iterator.l();
1166
1190
  }
1167
1191
  }
1168
- function minOrNull(_this__u8e3s4) {
1169
- var iterator = _this__u8e3s4.j();
1170
- if (!iterator.k())
1171
- return null;
1172
- var min = iterator.l();
1173
- while (iterator.k()) {
1174
- var e = iterator.l();
1175
- if (compareTo(min, e) > 0)
1176
- min = e;
1177
- }
1178
- return min;
1179
- }
1180
1192
  function dropLast(_this__u8e3s4, n) {
1181
1193
  // Inline function 'kotlin.require' call
1182
1194
  if (!(n >= 0)) {
@@ -1294,6 +1306,18 @@ if (typeof String.prototype.startsWith === '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.startsWith === '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.startsWith === '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.startsWith === '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.startsWith === '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.startsWith === '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,247 +16327,251 @@ if (typeof String.prototype.startsWith === '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 = NotImplementedError;
16512
- _.$_$.mg = Pair;
16513
- _.$_$.ng = Result;
16514
- _.$_$.og = RuntimeException;
16515
- _.$_$.pg = THROW_CCE;
16516
- _.$_$.qg = THROW_IAE;
16517
- _.$_$.rg = Triple;
16518
- _.$_$.sg = UByteArray;
16519
- _.$_$.tg = UByte;
16520
- _.$_$.ug = UIntArray;
16521
- _.$_$.vg = UInt;
16522
- _.$_$.wg = ULongArray;
16523
- _.$_$.xg = ULong;
16524
- _.$_$.yg = UShortArray;
16525
- _.$_$.zg = UShort;
16526
- _.$_$.ah = Unit;
16527
- _.$_$.bh = UnsupportedOperationException;
16528
- _.$_$.ch = addSuppressed;
16529
- _.$_$.dh = arrayOf;
16530
- _.$_$.eh = countTrailingZeroBits;
16531
- _.$_$.fh = createFailure;
16532
- _.$_$.gh = ensureNotNull;
16533
- _.$_$.hh = invoke;
16534
- _.$_$.ih = isFinite;
16535
- _.$_$.jh = isFinite_0;
16536
- _.$_$.kh = isNaN_0;
16537
- _.$_$.lh = lazy_0;
16538
- _.$_$.mh = lazy;
16539
- _.$_$.nh = noWhenBranchMatchedException;
16540
- _.$_$.oh = plus_4;
16541
- _.$_$.ph = printStackTrace;
16542
- _.$_$.qh = stackTraceToString;
16543
- _.$_$.rh = throwOnFailure;
16544
- _.$_$.sh = throwUninitializedPropertyAccessException;
16545
- _.$_$.th = toString_0;
16546
- _.$_$.uh = 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 = NotImplementedError;
16540
+ _.$_$.qg = Pair;
16541
+ _.$_$.rg = Result;
16542
+ _.$_$.sg = RuntimeException;
16543
+ _.$_$.tg = THROW_CCE;
16544
+ _.$_$.ug = THROW_IAE;
16545
+ _.$_$.vg = Triple;
16546
+ _.$_$.wg = UByteArray;
16547
+ _.$_$.xg = UByte;
16548
+ _.$_$.yg = UIntArray;
16549
+ _.$_$.zg = UInt;
16550
+ _.$_$.ah = ULongArray;
16551
+ _.$_$.bh = ULong;
16552
+ _.$_$.ch = UShortArray;
16553
+ _.$_$.dh = UShort;
16554
+ _.$_$.eh = Unit;
16555
+ _.$_$.fh = UnsupportedOperationException;
16556
+ _.$_$.gh = addSuppressed;
16557
+ _.$_$.hh = arrayOf;
16558
+ _.$_$.ih = countTrailingZeroBits;
16559
+ _.$_$.jh = createFailure;
16560
+ _.$_$.kh = ensureNotNull;
16561
+ _.$_$.lh = invoke;
16562
+ _.$_$.mh = isFinite;
16563
+ _.$_$.nh = isFinite_0;
16564
+ _.$_$.oh = isNaN_0;
16565
+ _.$_$.ph = lazy_0;
16566
+ _.$_$.qh = lazy;
16567
+ _.$_$.rh = noWhenBranchMatchedException;
16568
+ _.$_$.sh = plus_4;
16569
+ _.$_$.th = printStackTrace;
16570
+ _.$_$.uh = stackTraceToString;
16571
+ _.$_$.vh = throwOnFailure;
16572
+ _.$_$.wh = throwUninitializedPropertyAccessException;
16573
+ _.$_$.xh = toString_0;
16574
+ _.$_$.yh = to;
16547
16575
  //endregion
16548
16576
  return _;
16549
16577
  }));