raspberry_games_server_game_logic 1.8.390 → 1.8.391

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 (34) hide show
  1. package/Kosi-Kaverit-kaverit.js +13 -13
  2. package/Kosi-Kodein-kodein-di.js +37 -37
  3. package/Kotlin-DateTime-library-kotlinx-datetime.js +89 -89
  4. package/Logic_Debertz-core.js +58 -58
  5. package/Logic_Debertz-engine.js +104 -104
  6. package/Logic_Debertz-game_server.d.ts +31 -4
  7. package/Logic_Debertz-game_server.js +454 -362
  8. package/Logic_Debertz-game_server.js.map +1 -1
  9. package/error-library-error.js +5 -5
  10. package/kotlin-kotlin-stdlib.js +301 -288
  11. package/kotlin-kotlin-stdlib.js.map +1 -1
  12. package/kotlinx-atomicfu.js +9 -9
  13. package/kotlinx-coroutines-core.js +78 -78
  14. package/kotlinx-coroutines-core.js.map +1 -1
  15. package/kotlinx-io-kotlinx-io-core.js +30 -30
  16. package/kotlinx-serialization-kotlinx-serialization-core.js +79 -79
  17. package/kotlinx-serialization-kotlinx-serialization-json.js +88 -88
  18. package/ktor-ktor-client-content-negotiation.js +21 -21
  19. package/ktor-ktor-client-core.js +67 -67
  20. package/ktor-ktor-client-logging.js +23 -23
  21. package/ktor-ktor-events.js +5 -5
  22. package/ktor-ktor-http.js +72 -72
  23. package/ktor-ktor-io.js +50 -50
  24. package/ktor-ktor-serialization-kotlinx.js +15 -15
  25. package/ktor-ktor-serialization.js +15 -15
  26. package/ktor-ktor-utils.js +45 -45
  27. package/ktor-ktor-websockets.js +13 -13
  28. package/package.json +1 -1
  29. package/random-library-crypto-rand.js +11 -11
  30. package/random-library-secure-random.js +5 -5
  31. package/raspberry-cardgame-lib-core.js +34 -34
  32. package/raspberry-cardgame-lib-logger.js +12 -12
  33. package/raspberry-cardgame-lib-random.js +39 -39
  34. package/uuid.js +12 -12
@@ -57,12 +57,6 @@ 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
- }
66
60
  if (typeof String.prototype.endsWith === 'undefined') {
67
61
  Object.defineProperty(String.prototype, 'endsWith', {value: function (searchString, position) {
68
62
  var subjectString = this.toString();
@@ -74,6 +68,12 @@ if (typeof String.prototype.endsWith === 'undefined') {
74
68
  return lastIndex !== -1 && lastIndex === position;
75
69
  }});
76
70
  }
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.endsWith === '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.endsWith === '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.endsWith === '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);
@@ -9913,6 +9913,18 @@ if (typeof String.prototype.endsWith === 'undefined') {
9913
9913
  var tmp = EmptyMap_getInstance();
9914
9914
  return isInterface(tmp, KtMap) ? tmp : THROW_CCE();
9915
9915
  }
9916
+ function plus_6(_this__u8e3s4, pair) {
9917
+ var tmp;
9918
+ if (_this__u8e3s4.r()) {
9919
+ tmp = mapOf(pair);
9920
+ } else {
9921
+ // Inline function 'kotlin.apply' call
9922
+ var this_0 = LinkedHashMap_init_$Create$_1(_this__u8e3s4);
9923
+ this_0.e2(pair.he_1, pair.ie_1);
9924
+ tmp = this_0;
9925
+ }
9926
+ return tmp;
9927
+ }
9916
9928
  function hashMapOf(pairs) {
9917
9929
  // Inline function 'kotlin.apply' call
9918
9930
  var this_0 = HashMap_init_$Create$_0(mapCapacity(pairs.length));
@@ -9948,7 +9960,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
9948
9960
  }
9949
9961
  function EmptyMap() {
9950
9962
  EmptyMap_instance = this;
9951
- this.he_1 = new Long(-888910638, 1920087921);
9963
+ this.je_1 = new Long(-888910638, 1920087921);
9952
9964
  }
9953
9965
  protoOf(EmptyMap).equals = function (other) {
9954
9966
  var tmp;
@@ -9971,15 +9983,15 @@ if (typeof String.prototype.endsWith === 'undefined') {
9971
9983
  protoOf(EmptyMap).r = function () {
9972
9984
  return true;
9973
9985
  };
9974
- protoOf(EmptyMap).ie = function (key) {
9986
+ protoOf(EmptyMap).ke = function (key) {
9975
9987
  return false;
9976
9988
  };
9977
9989
  protoOf(EmptyMap).z1 = function (key) {
9978
9990
  if (!(key == null ? true : !(key == null)))
9979
9991
  return false;
9980
- return this.ie((key == null ? true : !(key == null)) ? key : THROW_CCE());
9992
+ return this.ke((key == null ? true : !(key == null)) ? key : THROW_CCE());
9981
9993
  };
9982
- protoOf(EmptyMap).je = function (value) {
9994
+ protoOf(EmptyMap).le = function (value) {
9983
9995
  return false;
9984
9996
  };
9985
9997
  protoOf(EmptyMap).a2 = function (value) {
@@ -9991,15 +10003,15 @@ if (typeof String.prototype.endsWith === 'undefined') {
9991
10003
  } else {
9992
10004
  tmp = THROW_CCE();
9993
10005
  }
9994
- return this.je(tmp);
10006
+ return this.le(tmp);
9995
10007
  };
9996
- protoOf(EmptyMap).ke = function (key) {
10008
+ protoOf(EmptyMap).me = function (key) {
9997
10009
  return null;
9998
10010
  };
9999
10011
  protoOf(EmptyMap).b2 = function (key) {
10000
10012
  if (!(key == null ? true : !(key == null)))
10001
10013
  return null;
10002
- return this.ke((key == null ? true : !(key == null)) ? key : THROW_CCE());
10014
+ return this.me((key == null ? true : !(key == null)) ? key : THROW_CCE());
10003
10015
  };
10004
10016
  protoOf(EmptyMap).u = function () {
10005
10017
  return EmptySet_getInstance();
@@ -12923,7 +12935,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
12923
12935
  tmp = null;
12924
12936
  } else {
12925
12937
  // Inline function 'kotlin.let' call
12926
- tmp = to(tmp0_safe_receiver.le_1, tmp0_safe_receiver.me_1.length);
12938
+ tmp = to(tmp0_safe_receiver.he_1, tmp0_safe_receiver.ie_1.length);
12927
12939
  }
12928
12940
  return tmp;
12929
12941
  };
@@ -14814,21 +14826,21 @@ if (typeof String.prototype.endsWith === 'undefined') {
14814
14826
  captureStack(this, NotImplementedError);
14815
14827
  }
14816
14828
  function Pair(first, second) {
14817
- this.le_1 = first;
14818
- this.me_1 = second;
14829
+ this.he_1 = first;
14830
+ this.ie_1 = second;
14819
14831
  }
14820
14832
  protoOf(Pair).toString = function () {
14821
- return '(' + toString_0(this.le_1) + ', ' + toString_0(this.me_1) + ')';
14833
+ return '(' + toString_0(this.he_1) + ', ' + toString_0(this.ie_1) + ')';
14822
14834
  };
14823
14835
  protoOf(Pair).ne = function () {
14824
- return this.le_1;
14836
+ return this.he_1;
14825
14837
  };
14826
14838
  protoOf(Pair).oe = function () {
14827
- return this.me_1;
14839
+ return this.ie_1;
14828
14840
  };
14829
14841
  protoOf(Pair).hashCode = function () {
14830
- var result = this.le_1 == null ? 0 : hashCode_0(this.le_1);
14831
- result = imul(result, 31) + (this.me_1 == null ? 0 : hashCode_0(this.me_1)) | 0;
14842
+ var result = this.he_1 == null ? 0 : hashCode_0(this.he_1);
14843
+ result = imul(result, 31) + (this.ie_1 == null ? 0 : hashCode_0(this.ie_1)) | 0;
14832
14844
  return result;
14833
14845
  };
14834
14846
  protoOf(Pair).equals = function (other) {
@@ -14836,9 +14848,9 @@ if (typeof String.prototype.endsWith === 'undefined') {
14836
14848
  return true;
14837
14849
  if (!(other instanceof Pair))
14838
14850
  return false;
14839
- if (!equals(this.le_1, other.le_1))
14851
+ if (!equals(this.he_1, other.he_1))
14840
14852
  return false;
14841
- if (!equals(this.me_1, other.me_1))
14853
+ if (!equals(this.ie_1, other.ie_1))
14842
14854
  return false;
14843
14855
  return true;
14844
14856
  };
@@ -16356,267 +16368,268 @@ if (typeof String.prototype.endsWith === 'undefined') {
16356
16368
  _.$_$.m8 = mutableListOf;
16357
16369
  _.$_$.n8 = plus_5;
16358
16370
  _.$_$.o8 = plus_3;
16359
- _.$_$.p8 = plus_2;
16360
- _.$_$.q8 = plus_0;
16361
- _.$_$.r8 = plus_1;
16362
- _.$_$.s8 = removeFirstOrNull;
16363
- _.$_$.t8 = removeLastOrNull;
16364
- _.$_$.u8 = removeLast;
16365
- _.$_$.v8 = reversed;
16366
- _.$_$.w8 = reverse;
16367
- _.$_$.x8 = setOf;
16368
- _.$_$.y8 = setOf_0;
16369
- _.$_$.z8 = singleOrNull;
16370
- _.$_$.a9 = single_0;
16371
- _.$_$.b9 = sortWith_0;
16372
- _.$_$.c9 = sortedWith;
16373
- _.$_$.d9 = sorted;
16374
- _.$_$.e9 = sum;
16375
- _.$_$.f9 = takeLast;
16376
- _.$_$.g9 = take;
16377
- _.$_$.h9 = toBooleanArray;
16378
- _.$_$.i9 = toHashSet;
16379
- _.$_$.j9 = toList_1;
16380
- _.$_$.k9 = toList_0;
16381
- _.$_$.l9 = toList;
16382
- _.$_$.m9 = toMap_2;
16383
- _.$_$.n9 = toMap;
16384
- _.$_$.o9 = toMutableList_0;
16385
- _.$_$.p9 = toMutableMap;
16386
- _.$_$.q9 = toMutableSet;
16387
- _.$_$.r9 = toSet_0;
16388
- _.$_$.s9 = toTypedArray;
16389
- _.$_$.t9 = withIndex;
16390
- _.$_$.u9 = zip_0;
16391
- _.$_$.v9 = zip;
16392
- _.$_$.w9 = compareValuesBy;
16393
- _.$_$.x9 = compareValues;
16394
- _.$_$.y9 = CancellationException;
16395
- _.$_$.z9 = get_COROUTINE_SUSPENDED;
16396
- _.$_$.aa = createCoroutineUnintercepted;
16397
- _.$_$.ba = intercepted;
16398
- _.$_$.ca = startCoroutineUninterceptedOrReturnNonGeneratorVersion;
16399
- _.$_$.da = AbstractCoroutineContextElement;
16400
- _.$_$.ea = AbstractCoroutineContextKey;
16401
- _.$_$.fa = get_0;
16402
- _.$_$.ga = minusKey_0;
16403
- _.$_$.ha = ContinuationInterceptor;
16404
- _.$_$.ia = Continuation;
16405
- _.$_$.ja = fold;
16406
- _.$_$.ka = get;
16407
- _.$_$.la = minusKey;
16408
- _.$_$.ma = Element;
16409
- _.$_$.na = plus;
16410
- _.$_$.oa = CoroutineImpl;
16411
- _.$_$.pa = startCoroutine;
16412
- _.$_$.qa = enumEntries;
16413
- _.$_$.ra = println;
16414
- _.$_$.sa = get_ONE;
16415
- _.$_$.ta = add;
16416
- _.$_$.ua = bitwiseAnd;
16417
- _.$_$.va = bitwiseOr;
16418
- _.$_$.wa = bitwiseXor;
16419
- _.$_$.xa = compare;
16420
- _.$_$.ya = convertToByte;
16421
- _.$_$.za = convertToInt;
16422
- _.$_$.ab = convertToShort;
16423
- _.$_$.bb = divide;
16424
- _.$_$.cb = equalsLong;
16425
- _.$_$.db = fromInt;
16426
- _.$_$.eb = invert;
16427
- _.$_$.fb = modulo;
16428
- _.$_$.gb = multiply;
16429
- _.$_$.hb = negate;
16430
- _.$_$.ib = numberToLong;
16431
- _.$_$.jb = shiftLeft;
16432
- _.$_$.kb = shiftRightUnsigned;
16433
- _.$_$.lb = shiftRight;
16434
- _.$_$.mb = subtract;
16435
- _.$_$.nb = toNumber;
16436
- _.$_$.ob = FunctionAdapter;
16437
- _.$_$.pb = anyToString;
16438
- _.$_$.qb = arrayIterator;
16439
- _.$_$.rb = booleanArray;
16440
- _.$_$.sb = captureStack;
16441
- _.$_$.tb = charArrayOf;
16442
- _.$_$.ub = charArray;
16443
- _.$_$.vb = charCodeAt;
16444
- _.$_$.wb = charSequenceGet;
16445
- _.$_$.xb = charSequenceLength;
16446
- _.$_$.yb = charSequenceSubSequence;
16447
- _.$_$.zb = compareTo;
16448
- _.$_$.ac = defineProp;
16449
- _.$_$.bc = equals;
16450
- _.$_$.cc = extendThrowable;
16451
- _.$_$.dc = getBooleanHashCode;
16452
- _.$_$.ec = getNumberHashCode;
16453
- _.$_$.fc = getPropertyCallableRef;
16454
- _.$_$.gc = getStringHashCode;
16455
- _.$_$.hc = hashCode_0;
16456
- _.$_$.ic = initMetadataForClass;
16457
- _.$_$.jc = initMetadataForCompanion;
16458
- _.$_$.kc = initMetadataForCoroutine;
16459
- _.$_$.lc = initMetadataForInterface;
16460
- _.$_$.mc = initMetadataForLambda;
16461
- _.$_$.nc = initMetadataForObject;
16462
- _.$_$.oc = isArray;
16463
- _.$_$.pc = isBooleanArray;
16464
- _.$_$.qc = isByteArray;
16465
- _.$_$.rc = isCharArray;
16466
- _.$_$.sc = isCharSequence;
16467
- _.$_$.tc = isDoubleArray;
16468
- _.$_$.uc = isFloatArray;
16469
- _.$_$.vc = isIntArray;
16470
- _.$_$.wc = isInterface;
16471
- _.$_$.xc = isLongArray;
16472
- _.$_$.yc = isNumber;
16473
- _.$_$.zc = isShortArray;
16474
- _.$_$.ad = isSuspendFunction;
16475
- _.$_$.bd = get_js;
16476
- _.$_$.cd = longArray;
16477
- _.$_$.dd = numberRangeToNumber;
16478
- _.$_$.ed = numberToByte;
16479
- _.$_$.fd = numberToChar;
16480
- _.$_$.gd = numberToInt;
16481
- _.$_$.hd = objectCreate;
16482
- _.$_$.id = protoOf;
16483
- _.$_$.jd = toByte;
16484
- _.$_$.kd = toShort;
16485
- _.$_$.ld = toString_1;
16486
- _.$_$.md = abs_0;
16487
- _.$_$.nd = roundToInt;
16488
- _.$_$.od = round;
16489
- _.$_$.pd = ClosedRange;
16490
- _.$_$.qd = coerceAtLeast;
16491
- _.$_$.rd = coerceAtMost_0;
16492
- _.$_$.sd = coerceAtMost;
16493
- _.$_$.td = coerceIn;
16494
- _.$_$.ud = coerceIn_0;
16495
- _.$_$.vd = contains_5;
16496
- _.$_$.wd = downTo;
16497
- _.$_$.xd = step;
16498
- _.$_$.yd = until;
16499
- _.$_$.zd = createInvariantKTypeProjection;
16500
- _.$_$.ae = createKType;
16501
- _.$_$.be = getKClassFromExpression;
16502
- _.$_$.ce = getKClass;
16503
- _.$_$.de = KClass;
16504
- _.$_$.ee = KMutableProperty1;
16505
- _.$_$.fe = KProperty0;
16506
- _.$_$.ge = KProperty1;
16507
- _.$_$.he = KTypeParameter;
16508
- _.$_$.ie = filter;
16509
- _.$_$.je = firstOrNull_2;
16510
- _.$_$.ke = flatMap;
16511
- _.$_$.le = mapNotNull;
16512
- _.$_$.me = map;
16513
- _.$_$.ne = toList_2;
16514
- _.$_$.oe = concatToString;
16515
- _.$_$.pe = contains_7;
16516
- _.$_$.qe = contains_8;
16517
- _.$_$.re = decodeToString;
16518
- _.$_$.se = encodeToByteArray;
16519
- _.$_$.te = endsWith_0;
16520
- _.$_$.ue = endsWith;
16521
- _.$_$.ve = equals_0;
16522
- _.$_$.we = first_2;
16523
- _.$_$.xe = indexOfAny;
16524
- _.$_$.ye = indexOf_5;
16525
- _.$_$.ze = indexOf_4;
16526
- _.$_$.af = isBlank;
16527
- _.$_$.bf = isHighSurrogate;
16528
- _.$_$.cf = isLowSurrogate;
16529
- _.$_$.df = isSurrogate;
16530
- _.$_$.ef = isWhitespace;
16531
- _.$_$.ff = get_lastIndex_3;
16532
- _.$_$.gf = lastIndexOf_0;
16533
- _.$_$.hf = last_2;
16534
- _.$_$.if = padStart;
16535
- _.$_$.jf = removePrefix;
16536
- _.$_$.kf = removeSuffix;
16537
- _.$_$.lf = repeat;
16538
- _.$_$.mf = replace;
16539
- _.$_$.nf = replace_0;
16540
- _.$_$.of = single_2;
16541
- _.$_$.pf = split_0;
16542
- _.$_$.qf = split;
16543
- _.$_$.rf = startsWith;
16544
- _.$_$.sf = startsWith_1;
16545
- _.$_$.tf = substringAfter;
16546
- _.$_$.uf = substringBefore;
16547
- _.$_$.vf = substring_0;
16548
- _.$_$.wf = substring;
16549
- _.$_$.xf = take_0;
16550
- _.$_$.yf = toBooleanStrictOrNull;
16551
- _.$_$.zf = toDoubleOrNull;
16552
- _.$_$.ag = toDouble;
16553
- _.$_$.bg = toIntOrNull;
16554
- _.$_$.cg = toInt;
16555
- _.$_$.dg = toLongOrNull;
16556
- _.$_$.eg = toLong;
16557
- _.$_$.fg = toString_3;
16558
- _.$_$.gg = toUByte;
16559
- _.$_$.hg = toUInt;
16560
- _.$_$.ig = toULongOrNull;
16561
- _.$_$.jg = toULong;
16562
- _.$_$.kg = toUShort;
16563
- _.$_$.lg = trimIndent;
16564
- _.$_$.mg = trimMargin;
16565
- _.$_$.ng = trim;
16566
- _.$_$.og = Duration;
16567
- _.$_$.pg = Instant;
16568
- _.$_$.qg = toDuration_1;
16569
- _.$_$.rg = toDuration_0;
16570
- _.$_$.sg = toDuration;
16571
- _.$_$.tg = Uuid;
16572
- _.$_$.ug = ArithmeticException;
16573
- _.$_$.vg = Char;
16574
- _.$_$.wg = Comparable;
16575
- _.$_$.xg = Comparator;
16576
- _.$_$.yg = DeepRecursiveFunction;
16577
- _.$_$.zg = DeepRecursiveScope;
16578
- _.$_$.ah = Enum;
16579
- _.$_$.bh = Error_0;
16580
- _.$_$.ch = Exception;
16581
- _.$_$.dh = IllegalArgumentException;
16582
- _.$_$.eh = IllegalStateException;
16583
- _.$_$.fh = Long;
16584
- _.$_$.gh = NoSuchElementException;
16585
- _.$_$.hh = Pair;
16586
- _.$_$.ih = Result;
16587
- _.$_$.jh = RuntimeException;
16588
- _.$_$.kh = THROW_CCE;
16589
- _.$_$.lh = THROW_IAE;
16590
- _.$_$.mh = Triple;
16591
- _.$_$.nh = UByteArray;
16592
- _.$_$.oh = UByte;
16593
- _.$_$.ph = UIntArray;
16594
- _.$_$.qh = UInt;
16595
- _.$_$.rh = ULongArray;
16596
- _.$_$.sh = ULong;
16597
- _.$_$.th = UShortArray;
16598
- _.$_$.uh = UShort;
16599
- _.$_$.vh = Unit;
16600
- _.$_$.wh = UnsupportedOperationException;
16601
- _.$_$.xh = addSuppressed;
16602
- _.$_$.yh = arrayOf;
16603
- _.$_$.zh = countTrailingZeroBits;
16604
- _.$_$.ai = createFailure;
16605
- _.$_$.bi = ensureNotNull;
16606
- _.$_$.ci = invoke;
16607
- _.$_$.di = isFinite_0;
16608
- _.$_$.ei = isFinite;
16609
- _.$_$.fi = isNaN_0;
16610
- _.$_$.gi = lazy;
16611
- _.$_$.hi = lazy_0;
16612
- _.$_$.ii = noWhenBranchMatchedException;
16613
- _.$_$.ji = plus_4;
16614
- _.$_$.ki = printStackTrace;
16615
- _.$_$.li = stackTraceToString;
16616
- _.$_$.mi = throwOnFailure;
16617
- _.$_$.ni = throwUninitializedPropertyAccessException;
16618
- _.$_$.oi = toString_0;
16619
- _.$_$.pi = to;
16371
+ _.$_$.p8 = plus_6;
16372
+ _.$_$.q8 = plus_2;
16373
+ _.$_$.r8 = plus_0;
16374
+ _.$_$.s8 = plus_1;
16375
+ _.$_$.t8 = removeFirstOrNull;
16376
+ _.$_$.u8 = removeLastOrNull;
16377
+ _.$_$.v8 = removeLast;
16378
+ _.$_$.w8 = reversed;
16379
+ _.$_$.x8 = reverse;
16380
+ _.$_$.y8 = setOf;
16381
+ _.$_$.z8 = setOf_0;
16382
+ _.$_$.a9 = singleOrNull;
16383
+ _.$_$.b9 = single_0;
16384
+ _.$_$.c9 = sortWith_0;
16385
+ _.$_$.d9 = sortedWith;
16386
+ _.$_$.e9 = sorted;
16387
+ _.$_$.f9 = sum;
16388
+ _.$_$.g9 = takeLast;
16389
+ _.$_$.h9 = take;
16390
+ _.$_$.i9 = toBooleanArray;
16391
+ _.$_$.j9 = toHashSet;
16392
+ _.$_$.k9 = toList_1;
16393
+ _.$_$.l9 = toList_0;
16394
+ _.$_$.m9 = toList;
16395
+ _.$_$.n9 = toMap_2;
16396
+ _.$_$.o9 = toMap;
16397
+ _.$_$.p9 = toMutableList_0;
16398
+ _.$_$.q9 = toMutableMap;
16399
+ _.$_$.r9 = toMutableSet;
16400
+ _.$_$.s9 = toSet_0;
16401
+ _.$_$.t9 = toTypedArray;
16402
+ _.$_$.u9 = withIndex;
16403
+ _.$_$.v9 = zip_0;
16404
+ _.$_$.w9 = zip;
16405
+ _.$_$.x9 = compareValuesBy;
16406
+ _.$_$.y9 = compareValues;
16407
+ _.$_$.z9 = CancellationException;
16408
+ _.$_$.aa = get_COROUTINE_SUSPENDED;
16409
+ _.$_$.ba = createCoroutineUnintercepted;
16410
+ _.$_$.ca = intercepted;
16411
+ _.$_$.da = startCoroutineUninterceptedOrReturnNonGeneratorVersion;
16412
+ _.$_$.ea = AbstractCoroutineContextElement;
16413
+ _.$_$.fa = AbstractCoroutineContextKey;
16414
+ _.$_$.ga = get_0;
16415
+ _.$_$.ha = minusKey_0;
16416
+ _.$_$.ia = ContinuationInterceptor;
16417
+ _.$_$.ja = Continuation;
16418
+ _.$_$.ka = fold;
16419
+ _.$_$.la = get;
16420
+ _.$_$.ma = minusKey;
16421
+ _.$_$.na = Element;
16422
+ _.$_$.oa = plus;
16423
+ _.$_$.pa = CoroutineImpl;
16424
+ _.$_$.qa = startCoroutine;
16425
+ _.$_$.ra = enumEntries;
16426
+ _.$_$.sa = println;
16427
+ _.$_$.ta = get_ONE;
16428
+ _.$_$.ua = add;
16429
+ _.$_$.va = bitwiseAnd;
16430
+ _.$_$.wa = bitwiseOr;
16431
+ _.$_$.xa = bitwiseXor;
16432
+ _.$_$.ya = compare;
16433
+ _.$_$.za = convertToByte;
16434
+ _.$_$.ab = convertToInt;
16435
+ _.$_$.bb = convertToShort;
16436
+ _.$_$.cb = divide;
16437
+ _.$_$.db = equalsLong;
16438
+ _.$_$.eb = fromInt;
16439
+ _.$_$.fb = invert;
16440
+ _.$_$.gb = modulo;
16441
+ _.$_$.hb = multiply;
16442
+ _.$_$.ib = negate;
16443
+ _.$_$.jb = numberToLong;
16444
+ _.$_$.kb = shiftLeft;
16445
+ _.$_$.lb = shiftRightUnsigned;
16446
+ _.$_$.mb = shiftRight;
16447
+ _.$_$.nb = subtract;
16448
+ _.$_$.ob = toNumber;
16449
+ _.$_$.pb = FunctionAdapter;
16450
+ _.$_$.qb = anyToString;
16451
+ _.$_$.rb = arrayIterator;
16452
+ _.$_$.sb = booleanArray;
16453
+ _.$_$.tb = captureStack;
16454
+ _.$_$.ub = charArrayOf;
16455
+ _.$_$.vb = charArray;
16456
+ _.$_$.wb = charCodeAt;
16457
+ _.$_$.xb = charSequenceGet;
16458
+ _.$_$.yb = charSequenceLength;
16459
+ _.$_$.zb = charSequenceSubSequence;
16460
+ _.$_$.ac = compareTo;
16461
+ _.$_$.bc = defineProp;
16462
+ _.$_$.cc = equals;
16463
+ _.$_$.dc = extendThrowable;
16464
+ _.$_$.ec = getBooleanHashCode;
16465
+ _.$_$.fc = getNumberHashCode;
16466
+ _.$_$.gc = getPropertyCallableRef;
16467
+ _.$_$.hc = getStringHashCode;
16468
+ _.$_$.ic = hashCode_0;
16469
+ _.$_$.jc = initMetadataForClass;
16470
+ _.$_$.kc = initMetadataForCompanion;
16471
+ _.$_$.lc = initMetadataForCoroutine;
16472
+ _.$_$.mc = initMetadataForInterface;
16473
+ _.$_$.nc = initMetadataForLambda;
16474
+ _.$_$.oc = initMetadataForObject;
16475
+ _.$_$.pc = isArray;
16476
+ _.$_$.qc = isBooleanArray;
16477
+ _.$_$.rc = isByteArray;
16478
+ _.$_$.sc = isCharArray;
16479
+ _.$_$.tc = isCharSequence;
16480
+ _.$_$.uc = isDoubleArray;
16481
+ _.$_$.vc = isFloatArray;
16482
+ _.$_$.wc = isIntArray;
16483
+ _.$_$.xc = isInterface;
16484
+ _.$_$.yc = isLongArray;
16485
+ _.$_$.zc = isNumber;
16486
+ _.$_$.ad = isShortArray;
16487
+ _.$_$.bd = isSuspendFunction;
16488
+ _.$_$.cd = get_js;
16489
+ _.$_$.dd = longArray;
16490
+ _.$_$.ed = numberRangeToNumber;
16491
+ _.$_$.fd = numberToByte;
16492
+ _.$_$.gd = numberToChar;
16493
+ _.$_$.hd = numberToInt;
16494
+ _.$_$.id = objectCreate;
16495
+ _.$_$.jd = protoOf;
16496
+ _.$_$.kd = toByte;
16497
+ _.$_$.ld = toShort;
16498
+ _.$_$.md = toString_1;
16499
+ _.$_$.nd = abs_0;
16500
+ _.$_$.od = roundToInt;
16501
+ _.$_$.pd = round;
16502
+ _.$_$.qd = ClosedRange;
16503
+ _.$_$.rd = coerceAtLeast;
16504
+ _.$_$.sd = coerceAtMost_0;
16505
+ _.$_$.td = coerceAtMost;
16506
+ _.$_$.ud = coerceIn;
16507
+ _.$_$.vd = coerceIn_0;
16508
+ _.$_$.wd = contains_5;
16509
+ _.$_$.xd = downTo;
16510
+ _.$_$.yd = step;
16511
+ _.$_$.zd = until;
16512
+ _.$_$.ae = createInvariantKTypeProjection;
16513
+ _.$_$.be = createKType;
16514
+ _.$_$.ce = getKClassFromExpression;
16515
+ _.$_$.de = getKClass;
16516
+ _.$_$.ee = KClass;
16517
+ _.$_$.fe = KMutableProperty1;
16518
+ _.$_$.ge = KProperty0;
16519
+ _.$_$.he = KProperty1;
16520
+ _.$_$.ie = KTypeParameter;
16521
+ _.$_$.je = filter;
16522
+ _.$_$.ke = firstOrNull_2;
16523
+ _.$_$.le = flatMap;
16524
+ _.$_$.me = mapNotNull;
16525
+ _.$_$.ne = map;
16526
+ _.$_$.oe = toList_2;
16527
+ _.$_$.pe = concatToString;
16528
+ _.$_$.qe = contains_7;
16529
+ _.$_$.re = contains_8;
16530
+ _.$_$.se = decodeToString;
16531
+ _.$_$.te = encodeToByteArray;
16532
+ _.$_$.ue = endsWith_0;
16533
+ _.$_$.ve = endsWith;
16534
+ _.$_$.we = equals_0;
16535
+ _.$_$.xe = first_2;
16536
+ _.$_$.ye = indexOfAny;
16537
+ _.$_$.ze = indexOf_5;
16538
+ _.$_$.af = indexOf_4;
16539
+ _.$_$.bf = isBlank;
16540
+ _.$_$.cf = isHighSurrogate;
16541
+ _.$_$.df = isLowSurrogate;
16542
+ _.$_$.ef = isSurrogate;
16543
+ _.$_$.ff = isWhitespace;
16544
+ _.$_$.gf = get_lastIndex_3;
16545
+ _.$_$.hf = lastIndexOf_0;
16546
+ _.$_$.if = last_2;
16547
+ _.$_$.jf = padStart;
16548
+ _.$_$.kf = removePrefix;
16549
+ _.$_$.lf = removeSuffix;
16550
+ _.$_$.mf = repeat;
16551
+ _.$_$.nf = replace;
16552
+ _.$_$.of = replace_0;
16553
+ _.$_$.pf = single_2;
16554
+ _.$_$.qf = split_0;
16555
+ _.$_$.rf = split;
16556
+ _.$_$.sf = startsWith;
16557
+ _.$_$.tf = startsWith_1;
16558
+ _.$_$.uf = substringAfter;
16559
+ _.$_$.vf = substringBefore;
16560
+ _.$_$.wf = substring_0;
16561
+ _.$_$.xf = substring;
16562
+ _.$_$.yf = take_0;
16563
+ _.$_$.zf = toBooleanStrictOrNull;
16564
+ _.$_$.ag = toDoubleOrNull;
16565
+ _.$_$.bg = toDouble;
16566
+ _.$_$.cg = toIntOrNull;
16567
+ _.$_$.dg = toInt;
16568
+ _.$_$.eg = toLongOrNull;
16569
+ _.$_$.fg = toLong;
16570
+ _.$_$.gg = toString_3;
16571
+ _.$_$.hg = toUByte;
16572
+ _.$_$.ig = toUInt;
16573
+ _.$_$.jg = toULongOrNull;
16574
+ _.$_$.kg = toULong;
16575
+ _.$_$.lg = toUShort;
16576
+ _.$_$.mg = trimIndent;
16577
+ _.$_$.ng = trimMargin;
16578
+ _.$_$.og = trim;
16579
+ _.$_$.pg = Duration;
16580
+ _.$_$.qg = Instant;
16581
+ _.$_$.rg = toDuration_1;
16582
+ _.$_$.sg = toDuration_0;
16583
+ _.$_$.tg = toDuration;
16584
+ _.$_$.ug = Uuid;
16585
+ _.$_$.vg = ArithmeticException;
16586
+ _.$_$.wg = Char;
16587
+ _.$_$.xg = Comparable;
16588
+ _.$_$.yg = Comparator;
16589
+ _.$_$.zg = DeepRecursiveFunction;
16590
+ _.$_$.ah = DeepRecursiveScope;
16591
+ _.$_$.bh = Enum;
16592
+ _.$_$.ch = Error_0;
16593
+ _.$_$.dh = Exception;
16594
+ _.$_$.eh = IllegalArgumentException;
16595
+ _.$_$.fh = IllegalStateException;
16596
+ _.$_$.gh = Long;
16597
+ _.$_$.hh = NoSuchElementException;
16598
+ _.$_$.ih = Pair;
16599
+ _.$_$.jh = Result;
16600
+ _.$_$.kh = RuntimeException;
16601
+ _.$_$.lh = THROW_CCE;
16602
+ _.$_$.mh = THROW_IAE;
16603
+ _.$_$.nh = Triple;
16604
+ _.$_$.oh = UByteArray;
16605
+ _.$_$.ph = UByte;
16606
+ _.$_$.qh = UIntArray;
16607
+ _.$_$.rh = UInt;
16608
+ _.$_$.sh = ULongArray;
16609
+ _.$_$.th = ULong;
16610
+ _.$_$.uh = UShortArray;
16611
+ _.$_$.vh = UShort;
16612
+ _.$_$.wh = Unit;
16613
+ _.$_$.xh = UnsupportedOperationException;
16614
+ _.$_$.yh = addSuppressed;
16615
+ _.$_$.zh = arrayOf;
16616
+ _.$_$.ai = countTrailingZeroBits;
16617
+ _.$_$.bi = createFailure;
16618
+ _.$_$.ci = ensureNotNull;
16619
+ _.$_$.di = invoke;
16620
+ _.$_$.ei = isFinite_0;
16621
+ _.$_$.fi = isFinite;
16622
+ _.$_$.gi = isNaN_0;
16623
+ _.$_$.hi = lazy;
16624
+ _.$_$.ii = lazy_0;
16625
+ _.$_$.ji = noWhenBranchMatchedException;
16626
+ _.$_$.ki = plus_4;
16627
+ _.$_$.li = printStackTrace;
16628
+ _.$_$.mi = stackTraceToString;
16629
+ _.$_$.ni = throwOnFailure;
16630
+ _.$_$.oi = throwUninitializedPropertyAccessException;
16631
+ _.$_$.pi = toString_0;
16632
+ _.$_$.qi = to;
16620
16633
  //endregion
16621
16634
  return _;
16622
16635
  }));