mrs-toolbox-cli 0.0.118 → 0.0.120

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.
@@ -29,7 +29,7 @@
29
29
  //endregion
30
30
  function KotlinLogging() {
31
31
  }
32
- protoOf(KotlinLogging).h52 = function (func) {
32
+ protoOf(KotlinLogging).l4z = function (func) {
33
33
  var tmp$ret$0;
34
34
  $l$block: {
35
35
  // Inline function 'io.github.oshai.kotlinlogging.internal.KLoggerNameResolver.name' call
@@ -48,9 +48,9 @@
48
48
  }
49
49
  tmp$ret$0 = '';
50
50
  }
51
- return this.i52(tmp$ret$0);
51
+ return this.m4z(tmp$ret$0);
52
52
  };
53
- protoOf(KotlinLogging).i52 = function (name) {
53
+ protoOf(KotlinLogging).m4z = function (name) {
54
54
  // Inline function 'io.github.oshai.kotlinlogging.internal.KLoggerFactory.logger' call
55
55
  return new KLoggerJS(name);
56
56
  };
@@ -78,11 +78,11 @@
78
78
  }
79
79
  function Level(name, ordinal, levelInt, levelStr) {
80
80
  Enum.call(this, name, ordinal);
81
- this.l52_1 = levelInt;
82
- this.m52_1 = levelStr;
81
+ this.p4z_1 = levelInt;
82
+ this.q4z_1 = levelStr;
83
83
  }
84
84
  protoOf(Level).toString = function () {
85
- return this.m52_1;
85
+ return this.q4z_1;
86
86
  };
87
87
  function Level_TRACE_getInstance() {
88
88
  Level_initEntries();
@@ -110,7 +110,7 @@
110
110
  }
111
111
  function DefaultErrorMessageProducer() {
112
112
  }
113
- protoOf(DefaultErrorMessageProducer).n52 = function (e) {
113
+ protoOf(DefaultErrorMessageProducer).r4z = function (e) {
114
114
  return 'Log message invocation failed: ' + e;
115
115
  };
116
116
  var DefaultErrorMessageProducer_instance;
@@ -119,13 +119,13 @@
119
119
  }
120
120
  function ConsoleOutputAppender() {
121
121
  }
122
- protoOf(ConsoleOutputAppender).o52 = function (message) {
122
+ protoOf(ConsoleOutputAppender).s4z = function (message) {
123
123
  return console.info(message);
124
124
  };
125
- protoOf(ConsoleOutputAppender).p52 = function (message) {
125
+ protoOf(ConsoleOutputAppender).t4z = function (message) {
126
126
  return console.warn(message);
127
127
  };
128
- protoOf(ConsoleOutputAppender).q52 = function (message) {
128
+ protoOf(ConsoleOutputAppender).u4z = function (message) {
129
129
  return console.error(message);
130
130
  };
131
131
  var ConsoleOutputAppender_instance;
@@ -134,7 +134,7 @@
134
134
  }
135
135
  function DefaultMessageFormatter() {
136
136
  }
137
- protoOf(DefaultMessageFormatter).r52 = function (level, loggerName, msg) {
137
+ protoOf(DefaultMessageFormatter).v4z = function (level, loggerName, msg) {
138
138
  // Inline function 'io.github.oshai.kotlinlogging.internal.toStringSafe' call
139
139
  var tmp;
140
140
  try {
@@ -143,7 +143,7 @@
143
143
  var tmp_0;
144
144
  if ($p instanceof Exception) {
145
145
  var e = $p;
146
- tmp_0 = DefaultErrorMessageProducer_instance.n52(e);
146
+ tmp_0 = DefaultErrorMessageProducer_instance.r4z(e);
147
147
  } else {
148
148
  throw $p;
149
149
  }
@@ -158,9 +158,9 @@
158
158
  }
159
159
  function KotlinLoggingConfiguration() {
160
160
  KotlinLoggingConfiguration_instance = this;
161
- this.s52_1 = Level_INFO_getInstance();
162
- this.t52_1 = ConsoleOutputAppender_instance;
163
- this.u52_1 = DefaultMessageFormatter_instance;
161
+ this.w4z_1 = Level_INFO_getInstance();
162
+ this.x4z_1 = ConsoleOutputAppender_instance;
163
+ this.y4z_1 = DefaultMessageFormatter_instance;
164
164
  }
165
165
  var KotlinLoggingConfiguration_instance;
166
166
  function KotlinLoggingConfiguration_getInstance() {
@@ -169,7 +169,7 @@
169
169
  return KotlinLoggingConfiguration_instance;
170
170
  }
171
171
  function isLoggingEnabled(_this__u8e3s4) {
172
- return _this__u8e3s4.w9_1 >= KotlinLoggingConfiguration_getInstance().s52_1.w9_1;
172
+ return _this__u8e3s4.w9_1 >= KotlinLoggingConfiguration_getInstance().w4z_1.w9_1;
173
173
  }
174
174
  function KLoggerFactory() {
175
175
  }
@@ -179,12 +179,12 @@
179
179
  }
180
180
  function logIfEnabled(_this__u8e3s4, $this, loggerName, msg, logFunction) {
181
181
  if (isLoggingEnabled(_this__u8e3s4)) {
182
- logFunction(KotlinLoggingConfiguration_getInstance().u52_1.r52(_this__u8e3s4, loggerName, msg));
182
+ logFunction(KotlinLoggingConfiguration_getInstance().y4z_1.v4z(_this__u8e3s4, loggerName, msg));
183
183
  }
184
184
  }
185
185
  function Appender$info$ref($boundThis) {
186
186
  var l = function (p0) {
187
- $boundThis.o52(p0);
187
+ $boundThis.s4z(p0);
188
188
  return Unit_instance;
189
189
  };
190
190
  l.callableName = 'info';
@@ -192,7 +192,7 @@
192
192
  }
193
193
  function Appender$warn$ref($boundThis) {
194
194
  var l = function (p0) {
195
- $boundThis.p52(p0);
195
+ $boundThis.t4z(p0);
196
196
  return Unit_instance;
197
197
  };
198
198
  l.callableName = 'warn';
@@ -200,32 +200,32 @@
200
200
  }
201
201
  function Appender$error$ref($boundThis) {
202
202
  var l = function (p0) {
203
- $boundThis.q52(p0);
203
+ $boundThis.u4z(p0);
204
204
  return Unit_instance;
205
205
  };
206
206
  l.callableName = 'error';
207
207
  return l;
208
208
  }
209
209
  function KLoggerJS(name) {
210
- this.v52_1 = name;
211
- this.w52_1 = isLoggingEnabled(Level_TRACE_getInstance());
212
- this.x52_1 = isLoggingEnabled(Level_DEBUG_getInstance());
213
- this.y52_1 = isLoggingEnabled(Level_INFO_getInstance());
214
- this.z52_1 = isLoggingEnabled(Level_WARN_getInstance());
215
- this.a53_1 = isLoggingEnabled(Level_ERROR_getInstance());
216
- this.b53_1 = isLoggingEnabled(Level_OFF_getInstance());
217
- }
218
- protoOf(KLoggerJS).c53 = function (msg) {
210
+ this.z4z_1 = name;
211
+ this.a50_1 = isLoggingEnabled(Level_TRACE_getInstance());
212
+ this.b50_1 = isLoggingEnabled(Level_DEBUG_getInstance());
213
+ this.c50_1 = isLoggingEnabled(Level_INFO_getInstance());
214
+ this.d50_1 = isLoggingEnabled(Level_WARN_getInstance());
215
+ this.e50_1 = isLoggingEnabled(Level_ERROR_getInstance());
216
+ this.f50_1 = isLoggingEnabled(Level_OFF_getInstance());
217
+ }
218
+ protoOf(KLoggerJS).g50 = function (msg) {
219
219
  var tmp = Level_INFO_getInstance();
220
- return logIfEnabled(tmp, this, this.v52_1, msg, Appender$info$ref(KotlinLoggingConfiguration_getInstance().t52_1));
220
+ return logIfEnabled(tmp, this, this.z4z_1, msg, Appender$info$ref(KotlinLoggingConfiguration_getInstance().x4z_1));
221
221
  };
222
- protoOf(KLoggerJS).d53 = function (msg) {
222
+ protoOf(KLoggerJS).h50 = function (msg) {
223
223
  var tmp = Level_WARN_getInstance();
224
- return logIfEnabled(tmp, this, this.v52_1, msg, Appender$warn$ref(KotlinLoggingConfiguration_getInstance().t52_1));
224
+ return logIfEnabled(tmp, this, this.z4z_1, msg, Appender$warn$ref(KotlinLoggingConfiguration_getInstance().x4z_1));
225
225
  };
226
- protoOf(KLoggerJS).e53 = function (msg) {
226
+ protoOf(KLoggerJS).i50 = function (msg) {
227
227
  var tmp = Level_ERROR_getInstance();
228
- return logIfEnabled(tmp, this, this.v52_1, msg, Appender$error$ref(KotlinLoggingConfiguration_getInstance().t52_1));
228
+ return logIfEnabled(tmp, this, this.z4z_1, msg, Appender$error$ref(KotlinLoggingConfiguration_getInstance().x4z_1));
229
229
  };
230
230
  function KLoggerNameResolver() {
231
231
  }
@@ -428,6 +428,9 @@
428
428
  var jsonUnquotedLiteralDescriptor;
429
429
  function Companion() {
430
430
  }
431
+ protoOf(Companion).c2x = function () {
432
+ return JsonObjectSerializer_getInstance();
433
+ };
431
434
  var Companion_instance_0;
432
435
  function Companion_getInstance_4() {
433
436
  return Companion_instance_0;
@@ -450,22 +453,22 @@
450
453
  }
451
454
  function JsonObject(content) {
452
455
  JsonElement.call(this);
453
- this.c2x_1 = content;
456
+ this.d2x_1 = content;
454
457
  }
455
458
  protoOf(JsonObject).o2 = function () {
456
- return this.c2x_1.o2();
459
+ return this.d2x_1.o2();
457
460
  };
458
461
  protoOf(JsonObject).m2 = function () {
459
- return this.c2x_1.m2();
462
+ return this.d2x_1.m2();
460
463
  };
461
464
  protoOf(JsonObject).n = function () {
462
- return this.c2x_1.n();
465
+ return this.d2x_1.n();
463
466
  };
464
467
  protoOf(JsonObject).n2 = function () {
465
- return this.c2x_1.n2();
468
+ return this.d2x_1.n2();
466
469
  };
467
470
  protoOf(JsonObject).a1m = function (key) {
468
- return this.c2x_1.w2(key);
471
+ return this.d2x_1.w2(key);
469
472
  };
470
473
  protoOf(JsonObject).w2 = function (key) {
471
474
  if (!(!(key == null) ? typeof key === 'string' : false))
@@ -473,7 +476,7 @@
473
476
  return this.a1m((!(key == null) ? typeof key === 'string' : false) ? key : THROW_CCE());
474
477
  };
475
478
  protoOf(JsonObject).r9 = function (key) {
476
- return this.c2x_1.z2(key);
479
+ return this.d2x_1.z2(key);
477
480
  };
478
481
  protoOf(JsonObject).z2 = function (key) {
479
482
  if (!(!(key == null) ? typeof key === 'string' : false))
@@ -481,16 +484,16 @@
481
484
  return this.r9((!(key == null) ? typeof key === 'string' : false) ? key : THROW_CCE());
482
485
  };
483
486
  protoOf(JsonObject).e1 = function () {
484
- return this.c2x_1.e1();
487
+ return this.d2x_1.e1();
485
488
  };
486
489
  protoOf(JsonObject).equals = function (other) {
487
- return equals(this.c2x_1, other);
490
+ return equals(this.d2x_1, other);
488
491
  };
489
492
  protoOf(JsonObject).hashCode = function () {
490
- return hashCode(this.c2x_1);
493
+ return hashCode(this.d2x_1);
491
494
  };
492
495
  protoOf(JsonObject).toString = function () {
493
- var tmp = this.c2x_1.o2();
496
+ var tmp = this.d2x_1.o2();
494
497
  return joinToString(tmp, ',', '{', '}', VOID, VOID, JsonObject$toString$lambda);
495
498
  };
496
499
  function Companion_0() {
@@ -509,56 +512,56 @@
509
512
  }
510
513
  function JsonArray(content) {
511
514
  JsonElement.call(this);
512
- this.d2x_1 = content;
515
+ this.e2x_1 = content;
513
516
  }
514
517
  protoOf(JsonArray).n = function () {
515
- return this.d2x_1.n();
518
+ return this.e2x_1.n();
516
519
  };
517
- protoOf(JsonArray).e2x = function (element) {
518
- return this.d2x_1.r(element);
520
+ protoOf(JsonArray).f2x = function (element) {
521
+ return this.e2x_1.r(element);
519
522
  };
520
523
  protoOf(JsonArray).r = function (element) {
521
524
  if (!(element instanceof JsonElement))
522
525
  return false;
523
- return this.e2x(element instanceof JsonElement ? element : THROW_CCE());
526
+ return this.f2x(element instanceof JsonElement ? element : THROW_CCE());
524
527
  };
525
- protoOf(JsonArray).f2x = function (elements) {
526
- return this.d2x_1.d1(elements);
528
+ protoOf(JsonArray).g2x = function (elements) {
529
+ return this.e2x_1.d1(elements);
527
530
  };
528
531
  protoOf(JsonArray).d1 = function (elements) {
529
- return this.f2x(elements);
532
+ return this.g2x(elements);
530
533
  };
531
534
  protoOf(JsonArray).i1 = function (index) {
532
- return this.d2x_1.i1(index);
535
+ return this.e2x_1.i1(index);
533
536
  };
534
- protoOf(JsonArray).g2x = function (element) {
535
- return this.d2x_1.a2(element);
537
+ protoOf(JsonArray).h2x = function (element) {
538
+ return this.e2x_1.a2(element);
536
539
  };
537
540
  protoOf(JsonArray).a2 = function (element) {
538
541
  if (!(element instanceof JsonElement))
539
542
  return -1;
540
- return this.g2x(element instanceof JsonElement ? element : THROW_CCE());
543
+ return this.h2x(element instanceof JsonElement ? element : THROW_CCE());
541
544
  };
542
545
  protoOf(JsonArray).e1 = function () {
543
- return this.d2x_1.e1();
546
+ return this.e2x_1.e1();
544
547
  };
545
548
  protoOf(JsonArray).v = function () {
546
- return this.d2x_1.v();
549
+ return this.e2x_1.v();
547
550
  };
548
551
  protoOf(JsonArray).b2 = function (index) {
549
- return this.d2x_1.b2(index);
552
+ return this.e2x_1.b2(index);
550
553
  };
551
554
  protoOf(JsonArray).c2 = function (fromIndex, toIndex) {
552
- return this.d2x_1.c2(fromIndex, toIndex);
555
+ return this.e2x_1.c2(fromIndex, toIndex);
553
556
  };
554
557
  protoOf(JsonArray).equals = function (other) {
555
- return equals(this.d2x_1, other);
558
+ return equals(this.e2x_1, other);
556
559
  };
557
560
  protoOf(JsonArray).hashCode = function () {
558
- return hashCode(this.d2x_1);
561
+ return hashCode(this.e2x_1);
559
562
  };
560
563
  protoOf(JsonArray).toString = function () {
561
- return joinToString(this.d2x_1, ',', '[', ']');
564
+ return joinToString(this.e2x_1, ',', '[', ']');
562
565
  };
563
566
  function Companion_2() {
564
567
  }
@@ -570,10 +573,10 @@
570
573
  JsonElement.call(this);
571
574
  }
572
575
  protoOf(JsonPrimitive).toString = function () {
573
- return this.i2x();
576
+ return this.j2x();
574
577
  };
575
578
  function _get_$cachedSerializer__te6jhj($this) {
576
- return $this.k2x_1.s2();
579
+ return $this.l2x_1.s2();
577
580
  }
578
581
  function JsonNull$_anonymous__enib48() {
579
582
  return JsonNullSerializer_getInstance();
@@ -581,22 +584,22 @@
581
584
  function JsonNull() {
582
585
  JsonNull_instance = this;
583
586
  JsonPrimitive.call(this);
584
- this.j2x_1 = 'null';
587
+ this.k2x_1 = 'null';
585
588
  var tmp = this;
586
589
  var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
587
- tmp.k2x_1 = lazy(tmp_0, JsonNull$_anonymous__enib48);
590
+ tmp.l2x_1 = lazy(tmp_0, JsonNull$_anonymous__enib48);
588
591
  }
589
- protoOf(JsonNull).h2x = function () {
592
+ protoOf(JsonNull).i2x = function () {
590
593
  return false;
591
594
  };
592
- protoOf(JsonNull).i2x = function () {
593
- return this.j2x_1;
595
+ protoOf(JsonNull).j2x = function () {
596
+ return this.k2x_1;
594
597
  };
595
- protoOf(JsonNull).l2x = function () {
598
+ protoOf(JsonNull).c2x = function () {
596
599
  return _get_$cachedSerializer__te6jhj(this);
597
600
  };
598
601
  protoOf(JsonNull).y2h = function (typeParamsSerializers) {
599
- return this.l2x();
602
+ return this.c2x();
600
603
  };
601
604
  var JsonNull_instance;
602
605
  function JsonNull_getInstance() {
@@ -622,10 +625,10 @@
622
625
  }
623
626
  }
624
627
  }
625
- protoOf(JsonLiteral).h2x = function () {
628
+ protoOf(JsonLiteral).i2x = function () {
626
629
  return this.m2x_1;
627
630
  };
628
- protoOf(JsonLiteral).i2x = function () {
631
+ protoOf(JsonLiteral).j2x = function () {
629
632
  return this.o2x_1;
630
633
  };
631
634
  protoOf(JsonLiteral).toString = function () {
@@ -670,7 +673,7 @@
670
673
  }
671
674
  function get_booleanOrNull(_this__u8e3s4) {
672
675
  _init_properties_JsonElement_kt__7cbdc2();
673
- return toBooleanStrictOrNull_0(_this__u8e3s4.i2x());
676
+ return toBooleanStrictOrNull_0(_this__u8e3s4.j2x());
674
677
  }
675
678
  function get_int(_this__u8e3s4) {
676
679
  _init_properties_JsonElement_kt__7cbdc2();
@@ -678,7 +681,7 @@
678
681
  var tmp;
679
682
  try {
680
683
  // Inline function 'kotlinx.serialization.json.<get-int>.<anonymous>' call
681
- tmp = (new StringJsonLexer(_this__u8e3s4.i2x())).p2x();
684
+ tmp = (new StringJsonLexer(_this__u8e3s4.j2x())).p2x();
682
685
  } catch ($p) {
683
686
  var tmp_0;
684
687
  if ($p instanceof JsonDecodingException) {
@@ -692,7 +695,7 @@
692
695
  // Inline function 'kotlin.ranges.contains' call
693
696
  var this_0 = numberRangeToNumber(IntCompanionObject_instance.MIN_VALUE, IntCompanionObject_instance.MAX_VALUE);
694
697
  if (!contains(isInterface(this_0, ClosedRange) ? this_0 : THROW_CCE(), result))
695
- throw NumberFormatException_init_$Create$(_this__u8e3s4.i2x() + ' is not an Int');
698
+ throw NumberFormatException_init_$Create$(_this__u8e3s4.j2x() + ' is not an Int');
696
699
  return result.eb();
697
700
  }
698
701
  function get_long(_this__u8e3s4) {
@@ -701,7 +704,7 @@
701
704
  var tmp;
702
705
  try {
703
706
  // Inline function 'kotlinx.serialization.json.<get-long>.<anonymous>' call
704
- tmp = (new StringJsonLexer(_this__u8e3s4.i2x())).p2x();
707
+ tmp = (new StringJsonLexer(_this__u8e3s4.j2x())).p2x();
705
708
  } catch ($p) {
706
709
  var tmp_0;
707
710
  if ($p instanceof JsonDecodingException) {
@@ -716,14 +719,14 @@
716
719
  function get_float(_this__u8e3s4) {
717
720
  _init_properties_JsonElement_kt__7cbdc2();
718
721
  // Inline function 'kotlin.text.toFloat' call
719
- var this_0 = _this__u8e3s4.i2x();
722
+ var this_0 = _this__u8e3s4.j2x();
720
723
  // Inline function 'kotlin.js.unsafeCast' call
721
724
  // Inline function 'kotlin.js.asDynamic' call
722
725
  return toDouble(this_0);
723
726
  }
724
727
  function get_double(_this__u8e3s4) {
725
728
  _init_properties_JsonElement_kt__7cbdc2();
726
- return toDouble(_this__u8e3s4.i2x());
729
+ return toDouble(_this__u8e3s4.j2x());
727
730
  }
728
731
  function get_contentOrNull(_this__u8e3s4) {
729
732
  _init_properties_JsonElement_kt__7cbdc2();
@@ -731,7 +734,7 @@
731
734
  if (_this__u8e3s4 instanceof JsonNull) {
732
735
  tmp = null;
733
736
  } else {
734
- tmp = _this__u8e3s4.i2x();
737
+ tmp = _this__u8e3s4.j2x();
735
738
  }
736
739
  return tmp;
737
740
  }
@@ -952,15 +955,6 @@
952
955
  new JsonElementSerializer();
953
956
  return JsonElementSerializer_instance;
954
957
  }
955
- function verify(encoder) {
956
- asJsonEncoder(encoder);
957
- }
958
- function verify_0(decoder) {
959
- asJsonDecoder(decoder);
960
- }
961
- function defer(deferred) {
962
- return new defer$1(deferred);
963
- }
964
958
  function JsonPrimitiveSerializer() {
965
959
  JsonPrimitiveSerializer_instance = this;
966
960
  this.y2x_1 = buildSerialDescriptor('kotlinx.serialization.json.JsonPrimitive', STRING_getInstance(), []);
@@ -1024,6 +1018,15 @@
1024
1018
  new JsonNullSerializer();
1025
1019
  return JsonNullSerializer_instance;
1026
1020
  }
1021
+ function verify(encoder) {
1022
+ asJsonEncoder(encoder);
1023
+ }
1024
+ function verify_0(decoder) {
1025
+ asJsonDecoder(decoder);
1026
+ }
1027
+ function defer(deferred) {
1028
+ return new defer$1(deferred);
1029
+ }
1027
1030
  function JsonLiteralSerializer() {
1028
1031
  JsonLiteralSerializer_instance = this;
1029
1032
  this.a2y_1 = PrimitiveSerialDescriptor('kotlinx.serialization.json.JsonLiteral', STRING_getInstance());
@@ -3238,7 +3241,7 @@
3238
3241
  return tmp;
3239
3242
  };
3240
3243
  protoOf(AbstractJsonTreeDecoder).b33 = function (tag, enumDescriptor) {
3241
- return getJsonNameIndexOrThrow(enumDescriptor, this.a2x(), this.a33(tag).i2x());
3244
+ return getJsonNameIndexOrThrow(enumDescriptor, this.a2x(), this.a33(tag).j2x());
3242
3245
  };
3243
3246
  protoOf(AbstractJsonTreeDecoder).d2o = function (tag, enumDescriptor) {
3244
3247
  return this.b33((!(tag == null) ? typeof tag === 'string' : false) ? tag : THROW_CCE(), enumDescriptor);
@@ -3489,7 +3492,7 @@
3489
3492
  var this_0 = this.a33(tag);
3490
3493
  try {
3491
3494
  // Inline function 'kotlinx.serialization.json.internal.AbstractJsonTreeDecoder.decodeTaggedChar.<anonymous>' call
3492
- var tmp0_elvis_lhs = single(this_0.i2x());
3495
+ var tmp0_elvis_lhs = single(this_0.j2x());
3493
3496
  var tmp;
3494
3497
  var tmp_0 = tmp0_elvis_lhs;
3495
3498
  if ((tmp_0 == null ? null : new Char(tmp_0)) == null) {
@@ -3522,13 +3525,13 @@
3522
3525
  }
3523
3526
  if (value instanceof JsonNull)
3524
3527
  throw JsonDecodingException_0(-1, "Unexpected 'null' value instead of string literal", toString(this.y32()));
3525
- return value.i2x();
3528
+ return value.j2x();
3526
3529
  };
3527
3530
  protoOf(AbstractJsonTreeDecoder).c2o = function (tag) {
3528
3531
  return this.l33((!(tag == null) ? typeof tag === 'string' : false) ? tag : THROW_CCE());
3529
3532
  };
3530
3533
  protoOf(AbstractJsonTreeDecoder).m33 = function (tag, inlineDescriptor) {
3531
- return get_isUnsignedNumber(inlineDescriptor) ? new JsonDecoderForUnsignedTypes(new StringJsonLexer(this.a33(tag).i2x()), this.a2x()) : protoOf(NamedValueDecoder).e2o.call(this, tag, inlineDescriptor);
3534
+ return get_isUnsignedNumber(inlineDescriptor) ? new JsonDecoderForUnsignedTypes(new StringJsonLexer(this.a33(tag).j2x()), this.a2x()) : protoOf(NamedValueDecoder).e2o.call(this, tag, inlineDescriptor);
3532
3535
  };
3533
3536
  protoOf(AbstractJsonTreeDecoder).e2o = function (tag, inlineDescriptor) {
3534
3537
  return this.m33((!(tag == null) ? typeof tag === 'string' : false) ? tag : THROW_CCE(), inlineDescriptor);
@@ -4895,15 +4898,17 @@
4895
4898
  //endregion
4896
4899
  //region block: exports
4897
4900
  _.$_$ = _.$_$ || {};
4898
- _.$_$.a = JsonArraySerializer_getInstance;
4899
- _.$_$.b = JsonObjectSerializer_getInstance;
4900
- _.$_$.c = JsonArray;
4901
- _.$_$.d = JsonClassDiscriminator;
4902
- _.$_$.e = JsonNames;
4903
- _.$_$.f = JsonNull;
4904
- _.$_$.g = JsonObject;
4905
- _.$_$.h = JsonPrimitive;
4906
- _.$_$.i = Json_0;
4901
+ _.$_$.a = Default_getInstance;
4902
+ _.$_$.b = JsonArraySerializer_getInstance;
4903
+ _.$_$.c = Companion_instance_0;
4904
+ _.$_$.d = JsonObjectSerializer_getInstance;
4905
+ _.$_$.e = JsonArray;
4906
+ _.$_$.f = JsonClassDiscriminator;
4907
+ _.$_$.g = JsonNames;
4908
+ _.$_$.h = JsonNull;
4909
+ _.$_$.i = JsonObject;
4910
+ _.$_$.j = JsonPrimitive;
4911
+ _.$_$.k = Json_0;
4907
4912
  //endregion
4908
4913
  return _;
4909
4914
  }(module.exports, require('./kotlinx-serialization-kotlinx-serialization-core.js'), require('./kotlin-kotlin-stdlib.js')));