@attocash/commons-test 6.0.0

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 (1442) hide show
  1. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/DateTimeUnit.mjs +332 -0
  2. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/DateTimeUnit.mjs.map +1 -0
  3. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/DayOfWeek.mjs +96 -0
  4. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/DayOfWeek.mjs.map +1 -0
  5. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Exceptions.mjs +104 -0
  6. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Exceptions.mjs.map +1 -0
  7. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalDate.mjs +439 -0
  8. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalDate.mjs.map +1 -0
  9. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalDateTime.mjs +238 -0
  10. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalDateTime.mjs.map +1 -0
  11. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalTime.mjs +295 -0
  12. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalTime.mjs.map +1 -0
  13. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Month.mjs +175 -0
  14. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Month.mjs.map +1 -0
  15. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/OverloadMarker.mjs +49 -0
  16. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/OverloadMarker.mjs.map +1 -0
  17. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/TimeZone.mjs +380 -0
  18. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/TimeZone.mjs.map +1 -0
  19. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/UtcOffset.mjs +202 -0
  20. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/UtcOffset.mjs.map +1 -0
  21. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/YearMonth.mjs +139 -0
  22. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/YearMonth.mjs.map +1 -0
  23. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/ZonedDateTime.mjs +79 -0
  24. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/ZonedDateTime.mjs.map +1 -0
  25. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/DateTimeFormat.mjs +102 -0
  26. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/DateTimeFormat.mjs.map +1 -0
  27. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/DateTimeFormatBuilder.mjs +264 -0
  28. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/DateTimeFormatBuilder.mjs.map +1 -0
  29. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalDateFormat.mjs +506 -0
  30. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalDateFormat.mjs.map +1 -0
  31. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalDateTimeFormat.mjs +330 -0
  32. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalDateTimeFormat.mjs.map +1 -0
  33. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalTimeFormat.mjs +767 -0
  34. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalTimeFormat.mjs.map +1 -0
  35. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/UtcOffsetFormat.mjs +769 -0
  36. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/UtcOffsetFormat.mjs.map +1 -0
  37. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/YearMonthFormat.mjs +400 -0
  38. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/YearMonthFormat.mjs.map +1 -0
  39. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/MonthDayTime.mjs +29 -0
  40. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/MonthDayTime.mjs.map +1 -0
  41. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/OffsetInfo.mjs +147 -0
  42. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/OffsetInfo.mjs.map +1 -0
  43. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/Platform.mjs +412 -0
  44. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/Platform.mjs.map +1 -0
  45. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/PlatformSpecifics.mjs +37 -0
  46. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/PlatformSpecifics.mjs.map +1 -0
  47. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/RegionTimeZone.mjs +102 -0
  48. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/RegionTimeZone.mjs.map +1 -0
  49. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/TimeZoneRules.mjs +237 -0
  50. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/TimeZoneRules.mjs.map +1 -0
  51. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/dateCalculations.mjs +47 -0
  52. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/dateCalculations.mjs.map +1 -0
  53. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/Builder.mjs +55 -0
  54. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/Builder.mjs.map +1 -0
  55. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FieldFormatDirective.mjs +155 -0
  56. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FieldFormatDirective.mjs.map +1 -0
  57. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FieldSpec.mjs +177 -0
  58. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FieldSpec.mjs.map +1 -0
  59. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FormatStructure.mjs +693 -0
  60. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FormatStructure.mjs.map +1 -0
  61. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/Predicate.mjs +107 -0
  62. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/Predicate.mjs.map +1 -0
  63. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/formatter/Formatter.mjs +174 -0
  64. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/formatter/Formatter.mjs.map +1 -0
  65. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/formatter/FormatterOperation.mjs +178 -0
  66. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/formatter/FormatterOperation.mjs.map +1 -0
  67. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/NumberConsumer.mjs +260 -0
  68. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/NumberConsumer.mjs.map +1 -0
  69. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/ParseResult.mjs +61 -0
  70. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/ParseResult.mjs.map +1 -0
  71. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/Parser.mjs +456 -0
  72. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/Parser.mjs.map +1 -0
  73. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/ParserOperation.mjs +440 -0
  74. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/ParserOperation.mjs.map +1 -0
  75. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/math.mjs +95 -0
  76. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/math.mjs.map +1 -0
  77. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/mathNative.mjs +51 -0
  78. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/mathNative.mjs.map +1 -0
  79. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/util.mjs +22 -0
  80. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/util.mjs.map +1 -0
  81. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/DateTimeUnitSerializers.mjs +431 -0
  82. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/DateTimeUnitSerializers.mjs.map +1 -0
  83. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalDateSerializers.mjs +53 -0
  84. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalDateSerializers.mjs.map +1 -0
  85. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalDateTimeSerializers.mjs +53 -0
  86. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalDateTimeSerializers.mjs.map +1 -0
  87. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalTimeSerializers.mjs +53 -0
  88. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalTimeSerializers.mjs.map +1 -0
  89. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/TimeZoneSerializers.mjs +130 -0
  90. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/TimeZoneSerializers.mjs.map +1 -0
  91. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/YearMonthSerializers.mjs +53 -0
  92. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/YearMonthSerializers.mjs.map +1 -0
  93. package/commons-commons-core/cash/atto/commons/AccountUpdate.js.export.d.mts +19 -0
  94. package/commons-commons-core/cash/atto/commons/AccountUpdate.js.export.mjs +23 -0
  95. package/commons-commons-core/cash/atto/commons/AccountUpdate.js.export.mjs.map +1 -0
  96. package/commons-commons-core/cash/atto/commons/AccountUpdate.js.mjs +106 -0
  97. package/commons-commons-core/cash/atto/commons/AccountUpdate.js.mjs.map +1 -0
  98. package/commons-commons-core/cash/atto/commons/AttoAccount.export.d.mts +45 -0
  99. package/commons-commons-core/cash/atto/commons/AttoAccount.export.mjs +20 -0
  100. package/commons-commons-core/cash/atto/commons/AttoAccount.export.mjs.map +1 -0
  101. package/commons-commons-core/cash/atto/commons/AttoAccount.mjs +524 -0
  102. package/commons-commons-core/cash/atto/commons/AttoAccount.mjs.map +1 -0
  103. package/commons-commons-core/cash/atto/commons/AttoAccountEntry.export.d.mts +41 -0
  104. package/commons-commons-core/cash/atto/commons/AttoAccountEntry.export.mjs +20 -0
  105. package/commons-commons-core/cash/atto/commons/AttoAccountEntry.export.mjs.map +1 -0
  106. package/commons-commons-core/cash/atto/commons/AttoAccountEntry.mjs +449 -0
  107. package/commons-commons-core/cash/atto/commons/AttoAccountEntry.mjs.map +1 -0
  108. package/commons-commons-core/cash/atto/commons/AttoAddress.export.d.mts +41 -0
  109. package/commons-commons-core/cash/atto/commons/AttoAddress.export.mjs +22 -0
  110. package/commons-commons-core/cash/atto/commons/AttoAddress.export.mjs.map +1 -0
  111. package/commons-commons-core/cash/atto/commons/AttoAddress.mjs +278 -0
  112. package/commons-commons-core/cash/atto/commons/AttoAddress.mjs.map +1 -0
  113. package/commons-commons-core/cash/atto/commons/AttoAlgorithm.export.d.mts +36 -0
  114. package/commons-commons-core/cash/atto/commons/AttoAlgorithm.export.mjs +26 -0
  115. package/commons-commons-core/cash/atto/commons/AttoAlgorithm.export.mjs.map +1 -0
  116. package/commons-commons-core/cash/atto/commons/AttoAlgorithm.mjs +162 -0
  117. package/commons-commons-core/cash/atto/commons/AttoAlgorithm.mjs.map +1 -0
  118. package/commons-commons-core/cash/atto/commons/AttoAmount.export.d.mts +56 -0
  119. package/commons-commons-core/cash/atto/commons/AttoAmount.export.mjs +35 -0
  120. package/commons-commons-core/cash/atto/commons/AttoAmount.export.mjs.map +1 -0
  121. package/commons-commons-core/cash/atto/commons/AttoAmount.mjs +351 -0
  122. package/commons-commons-core/cash/atto/commons/AttoAmount.mjs.map +1 -0
  123. package/commons-commons-core/cash/atto/commons/AttoBlock.export.d.mts +287 -0
  124. package/commons-commons-core/cash/atto/commons/AttoBlock.export.mjs +62 -0
  125. package/commons-commons-core/cash/atto/commons/AttoBlock.export.mjs.map +1 -0
  126. package/commons-commons-core/cash/atto/commons/AttoBlock.mjs +2452 -0
  127. package/commons-commons-core/cash/atto/commons/AttoBlock.mjs.map +1 -0
  128. package/commons-commons-core/cash/atto/commons/AttoBufferExtensions.mjs +148 -0
  129. package/commons-commons-core/cash/atto/commons/AttoBufferExtensions.mjs.map +1 -0
  130. package/commons-commons-core/cash/atto/commons/AttoChallenge.export.d.mts +29 -0
  131. package/commons-commons-core/cash/atto/commons/AttoChallenge.export.mjs +20 -0
  132. package/commons-commons-core/cash/atto/commons/AttoChallenge.export.mjs.map +1 -0
  133. package/commons-commons-core/cash/atto/commons/AttoChallenge.mjs +133 -0
  134. package/commons-commons-core/cash/atto/commons/AttoChallenge.mjs.map +1 -0
  135. package/commons-commons-core/cash/atto/commons/AttoFuture.js.export.d.mts +10 -0
  136. package/commons-commons-core/cash/atto/commons/AttoFuture.js.export.mjs +13 -0
  137. package/commons-commons-core/cash/atto/commons/AttoFuture.js.export.mjs.map +1 -0
  138. package/commons-commons-core/cash/atto/commons/AttoFuture.js.mjs +72 -0
  139. package/commons-commons-core/cash/atto/commons/AttoFuture.js.mjs.map +1 -0
  140. package/commons-commons-core/cash/atto/commons/AttoHash.export.d.mts +39 -0
  141. package/commons-commons-core/cash/atto/commons/AttoHash.export.mjs +20 -0
  142. package/commons-commons-core/cash/atto/commons/AttoHash.export.mjs.map +1 -0
  143. package/commons-commons-core/cash/atto/commons/AttoHash.mjs +182 -0
  144. package/commons-commons-core/cash/atto/commons/AttoHash.mjs.map +1 -0
  145. package/commons-commons-core/cash/atto/commons/AttoHasher.js.mjs +47 -0
  146. package/commons-commons-core/cash/atto/commons/AttoHasher.js.mjs.map +1 -0
  147. package/commons-commons-core/cash/atto/commons/AttoHeight.export.d.mts +35 -0
  148. package/commons-commons-core/cash/atto/commons/AttoHeight.export.mjs +22 -0
  149. package/commons-commons-core/cash/atto/commons/AttoHeight.export.mjs.map +1 -0
  150. package/commons-commons-core/cash/atto/commons/AttoHeight.mjs +240 -0
  151. package/commons-commons-core/cash/atto/commons/AttoHeight.mjs.map +1 -0
  152. package/commons-commons-core/cash/atto/commons/AttoInstant.export.d.mts +33 -0
  153. package/commons-commons-core/cash/atto/commons/AttoInstant.export.mjs +20 -0
  154. package/commons-commons-core/cash/atto/commons/AttoInstant.export.mjs.map +1 -0
  155. package/commons-commons-core/cash/atto/commons/AttoInstant.mjs +189 -0
  156. package/commons-commons-core/cash/atto/commons/AttoInstant.mjs.map +1 -0
  157. package/commons-commons-core/cash/atto/commons/AttoJob.mjs +26 -0
  158. package/commons-commons-core/cash/atto/commons/AttoJob.mjs.map +1 -0
  159. package/commons-commons-core/cash/atto/commons/AttoKeyIndex.export.d.mts +16 -0
  160. package/commons-commons-core/cash/atto/commons/AttoKeyIndex.export.mjs +17 -0
  161. package/commons-commons-core/cash/atto/commons/AttoKeyIndex.export.mjs.map +1 -0
  162. package/commons-commons-core/cash/atto/commons/AttoKeyIndex.mjs +74 -0
  163. package/commons-commons-core/cash/atto/commons/AttoKeyIndex.mjs.map +1 -0
  164. package/commons-commons-core/cash/atto/commons/AttoMnemonic.export.d.mts +33 -0
  165. package/commons-commons-core/cash/atto/commons/AttoMnemonic.export.mjs +22 -0
  166. package/commons-commons-core/cash/atto/commons/AttoMnemonic.export.mjs.map +1 -0
  167. package/commons-commons-core/cash/atto/commons/AttoMnemonic.js.mjs +23 -0
  168. package/commons-commons-core/cash/atto/commons/AttoMnemonic.js.mjs.map +1 -0
  169. package/commons-commons-core/cash/atto/commons/AttoMnemonic.mjs +184 -0
  170. package/commons-commons-core/cash/atto/commons/AttoMnemonic.mjs.map +1 -0
  171. package/commons-commons-core/cash/atto/commons/AttoMnemonicDictionary.mjs +61 -0
  172. package/commons-commons-core/cash/atto/commons/AttoMnemonicDictionary.mjs.map +1 -0
  173. package/commons-commons-core/cash/atto/commons/AttoNetwork.export.d.mts +55 -0
  174. package/commons-commons-core/cash/atto/commons/AttoNetwork.export.mjs +34 -0
  175. package/commons-commons-core/cash/atto/commons/AttoNetwork.export.mjs.map +1 -0
  176. package/commons-commons-core/cash/atto/commons/AttoNetwork.mjs +189 -0
  177. package/commons-commons-core/cash/atto/commons/AttoNetwork.mjs.map +1 -0
  178. package/commons-commons-core/cash/atto/commons/AttoPrivateKey.export.d.mts +29 -0
  179. package/commons-commons-core/cash/atto/commons/AttoPrivateKey.export.mjs +22 -0
  180. package/commons-commons-core/cash/atto/commons/AttoPrivateKey.export.mjs.map +1 -0
  181. package/commons-commons-core/cash/atto/commons/AttoPrivateKey.js.mjs +65 -0
  182. package/commons-commons-core/cash/atto/commons/AttoPrivateKey.js.mjs.map +1 -0
  183. package/commons-commons-core/cash/atto/commons/AttoPrivateKey.mjs +196 -0
  184. package/commons-commons-core/cash/atto/commons/AttoPrivateKey.mjs.map +1 -0
  185. package/commons-commons-core/cash/atto/commons/AttoPublicKey.export.d.mts +30 -0
  186. package/commons-commons-core/cash/atto/commons/AttoPublicKey.export.mjs +20 -0
  187. package/commons-commons-core/cash/atto/commons/AttoPublicKey.export.mjs.map +1 -0
  188. package/commons-commons-core/cash/atto/commons/AttoPublicKey.js.export.d.mts +3 -0
  189. package/commons-commons-core/cash/atto/commons/AttoPublicKey.js.export.mjs +12 -0
  190. package/commons-commons-core/cash/atto/commons/AttoPublicKey.js.export.mjs.map +1 -0
  191. package/commons-commons-core/cash/atto/commons/AttoPublicKey.js.mjs +21 -0
  192. package/commons-commons-core/cash/atto/commons/AttoPublicKey.js.mjs.map +1 -0
  193. package/commons-commons-core/cash/atto/commons/AttoPublicKey.mjs +129 -0
  194. package/commons-commons-core/cash/atto/commons/AttoPublicKey.mjs.map +1 -0
  195. package/commons-commons-core/cash/atto/commons/AttoReceivable.export.d.mts +39 -0
  196. package/commons-commons-core/cash/atto/commons/AttoReceivable.export.mjs +20 -0
  197. package/commons-commons-core/cash/atto/commons/AttoReceivable.export.mjs.map +1 -0
  198. package/commons-commons-core/cash/atto/commons/AttoReceivable.mjs +428 -0
  199. package/commons-commons-core/cash/atto/commons/AttoReceivable.mjs.map +1 -0
  200. package/commons-commons-core/cash/atto/commons/AttoSeed.export.d.mts +14 -0
  201. package/commons-commons-core/cash/atto/commons/AttoSeed.export.mjs +13 -0
  202. package/commons-commons-core/cash/atto/commons/AttoSeed.export.mjs.map +1 -0
  203. package/commons-commons-core/cash/atto/commons/AttoSeed.js.export.d.mts +3 -0
  204. package/commons-commons-core/cash/atto/commons/AttoSeed.js.export.mjs +12 -0
  205. package/commons-commons-core/cash/atto/commons/AttoSeed.js.export.mjs.map +1 -0
  206. package/commons-commons-core/cash/atto/commons/AttoSeed.js.mjs +91 -0
  207. package/commons-commons-core/cash/atto/commons/AttoSeed.js.mjs.map +1 -0
  208. package/commons-commons-core/cash/atto/commons/AttoSeed.mjs +86 -0
  209. package/commons-commons-core/cash/atto/commons/AttoSeed.mjs.map +1 -0
  210. package/commons-commons-core/cash/atto/commons/AttoSignature.export.d.mts +31 -0
  211. package/commons-commons-core/cash/atto/commons/AttoSignature.export.mjs +20 -0
  212. package/commons-commons-core/cash/atto/commons/AttoSignature.export.mjs.map +1 -0
  213. package/commons-commons-core/cash/atto/commons/AttoSignature.js.mjs +19 -0
  214. package/commons-commons-core/cash/atto/commons/AttoSignature.js.mjs.map +1 -0
  215. package/commons-commons-core/cash/atto/commons/AttoSignature.mjs +135 -0
  216. package/commons-commons-core/cash/atto/commons/AttoSignature.mjs.map +1 -0
  217. package/commons-commons-core/cash/atto/commons/AttoSigner.js.mjs +49 -0
  218. package/commons-commons-core/cash/atto/commons/AttoSigner.js.mjs.map +1 -0
  219. package/commons-commons-core/cash/atto/commons/AttoSigner.mjs +15 -0
  220. package/commons-commons-core/cash/atto/commons/AttoSigner.mjs.map +1 -0
  221. package/commons-commons-core/cash/atto/commons/AttoSocketAddress.export.d.mts +15 -0
  222. package/commons-commons-core/cash/atto/commons/AttoSocketAddress.export.mjs +13 -0
  223. package/commons-commons-core/cash/atto/commons/AttoSocketAddress.export.mjs.map +1 -0
  224. package/commons-commons-core/cash/atto/commons/AttoSocketAddress.mjs +81 -0
  225. package/commons-commons-core/cash/atto/commons/AttoSocketAddress.mjs.map +1 -0
  226. package/commons-commons-core/cash/atto/commons/AttoTransaction.export.d.mts +40 -0
  227. package/commons-commons-core/cash/atto/commons/AttoTransaction.export.mjs +20 -0
  228. package/commons-commons-core/cash/atto/commons/AttoTransaction.export.mjs.map +1 -0
  229. package/commons-commons-core/cash/atto/commons/AttoTransaction.mjs +351 -0
  230. package/commons-commons-core/cash/atto/commons/AttoTransaction.mjs.map +1 -0
  231. package/commons-commons-core/cash/atto/commons/AttoValidation.mjs +63 -0
  232. package/commons-commons-core/cash/atto/commons/AttoValidation.mjs.map +1 -0
  233. package/commons-commons-core/cash/atto/commons/AttoVersion.export.d.mts +29 -0
  234. package/commons-commons-core/cash/atto/commons/AttoVersion.export.mjs +20 -0
  235. package/commons-commons-core/cash/atto/commons/AttoVersion.export.mjs.map +1 -0
  236. package/commons-commons-core/cash/atto/commons/AttoVersion.mjs +169 -0
  237. package/commons-commons-core/cash/atto/commons/AttoVersion.mjs.map +1 -0
  238. package/commons-commons-core/cash/atto/commons/AttoVote.export.d.mts +39 -0
  239. package/commons-commons-core/cash/atto/commons/AttoVote.export.mjs +20 -0
  240. package/commons-commons-core/cash/atto/commons/AttoVote.export.mjs.map +1 -0
  241. package/commons-commons-core/cash/atto/commons/AttoVote.mjs +381 -0
  242. package/commons-commons-core/cash/atto/commons/AttoVote.mjs.map +1 -0
  243. package/commons-commons-core/cash/atto/commons/AttoWork.export.d.mts +32 -0
  244. package/commons-commons-core/cash/atto/commons/AttoWork.export.mjs +20 -0
  245. package/commons-commons-core/cash/atto/commons/AttoWork.export.mjs.map +1 -0
  246. package/commons-commons-core/cash/atto/commons/AttoWork.mjs +236 -0
  247. package/commons-commons-core/cash/atto/commons/AttoWork.mjs.map +1 -0
  248. package/commons-commons-core/cash/atto/commons/AttoWorkTarget.mjs +147 -0
  249. package/commons-commons-core/cash/atto/commons/AttoWorkTarget.mjs.map +1 -0
  250. package/commons-commons-core/cash/atto/commons/Extensions.export.d.mts +4 -0
  251. package/commons-commons-core/cash/atto/commons/Extensions.export.mjs +16 -0
  252. package/commons-commons-core/cash/atto/commons/Extensions.export.mjs.map +1 -0
  253. package/commons-commons-core/cash/atto/commons/Extensions.mjs +147 -0
  254. package/commons-commons-core/cash/atto/commons/Extensions.mjs.map +1 -0
  255. package/commons-commons-core/cash/atto/commons/utils/Base32.mjs +156 -0
  256. package/commons-commons-core/cash/atto/commons/utils/Base32.mjs.map +1 -0
  257. package/commons-commons-core/cash/atto/commons/utils/SecureRandom.js.mjs +40 -0
  258. package/commons-commons-core/cash/atto/commons/utils/SecureRandom.js.mjs.map +1 -0
  259. package/commons-commons-core/cash/atto/commons/utils/SubtleCrypto.mjs +37 -0
  260. package/commons-commons-core/cash/atto/commons/utils/SubtleCrypto.mjs.map +1 -0
  261. package/commons-commons-core.mjs +34 -0
  262. package/commons-commons-core.mjs.map +1 -0
  263. package/commons-commons-node/cash/atto/commons/node/AttoNodeClient.mjs +29 -0
  264. package/commons-commons-node/cash/atto/commons/node/AttoNodeClient.mjs.map +1 -0
  265. package/commons-commons-node/cash/atto/commons/node/AttoNodeClientAsync.export.d.mts +22 -0
  266. package/commons-commons-node/cash/atto/commons/node/AttoNodeClientAsync.export.mjs +13 -0
  267. package/commons-commons-node/cash/atto/commons/node/AttoNodeClientAsync.export.mjs.map +1 -0
  268. package/commons-commons-node/cash/atto/commons/node/AttoNodeClientAsync.mjs +1248 -0
  269. package/commons-commons-node/cash/atto/commons/node/AttoNodeClientAsync.mjs.map +1 -0
  270. package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.export.d.mts +115 -0
  271. package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.export.mjs +38 -0
  272. package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.export.mjs.map +1 -0
  273. package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.mjs +768 -0
  274. package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.mjs.map +1 -0
  275. package/commons-commons-node/cash/atto/commons/node/NodeExtensions.export.d.mts +10 -0
  276. package/commons-commons-node/cash/atto/commons/node/NodeExtensions.export.mjs +28 -0
  277. package/commons-commons-node/cash/atto/commons/node/NodeExtensions.export.mjs.map +1 -0
  278. package/commons-commons-node/cash/atto/commons/node/NodeExtensions.mjs +133 -0
  279. package/commons-commons-node/cash/atto/commons/node/NodeExtensions.mjs.map +1 -0
  280. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitor.mjs +66 -0
  281. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitor.mjs.map +1 -0
  282. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsync.export.d.mts +10 -0
  283. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsync.export.mjs +13 -0
  284. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsync.export.mjs.map +1 -0
  285. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsync.mjs +189 -0
  286. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsync.mjs.map +1 -0
  287. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsyncBuilder.web.export.d.mts +11 -0
  288. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsyncBuilder.web.export.mjs +13 -0
  289. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsyncBuilder.web.export.mjs.map +1 -0
  290. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsyncBuilder.web.mjs +97 -0
  291. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsyncBuilder.web.mjs.map +1 -0
  292. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitor.mjs +195 -0
  293. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitor.mjs.map +1 -0
  294. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsync.export.d.mts +13 -0
  295. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsync.export.mjs +13 -0
  296. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsync.export.mjs.map +1 -0
  297. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsync.mjs +280 -0
  298. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsync.mjs.map +1 -0
  299. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsyncBuilder.web.export.d.mts +10 -0
  300. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsyncBuilder.web.export.mjs +13 -0
  301. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsyncBuilder.web.export.mjs.map +1 -0
  302. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsyncBuilder.web.mjs +33 -0
  303. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsyncBuilder.web.mjs.map +1 -0
  304. package/commons-commons-node/cash/atto/commons/node/monitor/AttoHeightMonitor.mjs +339 -0
  305. package/commons-commons-node/cash/atto/commons/node/monitor/AttoHeightMonitor.mjs.map +1 -0
  306. package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitor.mjs +66 -0
  307. package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitor.mjs.map +1 -0
  308. package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsync.export.d.mts +10 -0
  309. package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsync.export.mjs +13 -0
  310. package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsync.export.mjs.map +1 -0
  311. package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsync.mjs +189 -0
  312. package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsync.mjs.map +1 -0
  313. package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsyncBuilder.web.export.d.mts +11 -0
  314. package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsyncBuilder.web.export.mjs +13 -0
  315. package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsyncBuilder.web.export.mjs.map +1 -0
  316. package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsyncBuilder.web.mjs +97 -0
  317. package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsyncBuilder.web.mjs.map +1 -0
  318. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClientAsyncBuilder.web.export.d.mts +12 -0
  319. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClientAsyncBuilder.web.export.mjs +13 -0
  320. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClientAsyncBuilder.web.export.mjs.map +1 -0
  321. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClientAsyncBuilder.web.mjs +75 -0
  322. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClientAsyncBuilder.web.mjs.map +1 -0
  323. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClientRemote.mjs +2292 -0
  324. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClientRemote.mjs.map +1 -0
  325. package/commons-commons-node-remote.mjs +7 -0
  326. package/commons-commons-node-remote.mjs.map +1 -0
  327. package/commons-commons-node.mjs +15 -0
  328. package/commons-commons-node.mjs.map +1 -0
  329. package/commons-commons-test/cash/atto/commons/node/AttoMockWorker.mjs +53 -0
  330. package/commons-commons-test/cash/atto/commons/node/AttoMockWorker.mjs.map +1 -0
  331. package/commons-commons-test/cash/atto/commons/node/AttoNodeMock.export.d.mts +21 -0
  332. package/commons-commons-test/cash/atto/commons/node/AttoNodeMock.export.mjs +13 -0
  333. package/commons-commons-test/cash/atto/commons/node/AttoNodeMock.export.mjs.map +1 -0
  334. package/commons-commons-test/cash/atto/commons/node/AttoNodeMock.js.mjs +163 -0
  335. package/commons-commons-test/cash/atto/commons/node/AttoNodeMock.js.mjs.map +1 -0
  336. package/commons-commons-test/cash/atto/commons/node/AttoNodeMock.mjs +193 -0
  337. package/commons-commons-test/cash/atto/commons/node/AttoNodeMock.mjs.map +1 -0
  338. package/commons-commons-test/cash/atto/commons/node/AttoNodeMockAsync.js.export.d.mts +13 -0
  339. package/commons-commons-test/cash/atto/commons/node/AttoNodeMockAsync.js.export.mjs +13 -0
  340. package/commons-commons-test/cash/atto/commons/node/AttoNodeMockAsync.js.export.mjs.map +1 -0
  341. package/commons-commons-test/cash/atto/commons/node/AttoNodeMockAsync.js.mjs +84 -0
  342. package/commons-commons-test/cash/atto/commons/node/AttoNodeMockAsync.js.mjs.map +1 -0
  343. package/commons-commons-test/cash/atto/commons/node/AttoNodeMockAsync.mjs +18 -0
  344. package/commons-commons-test/cash/atto/commons/node/AttoNodeMockAsync.mjs.map +1 -0
  345. package/commons-commons-test/cash/atto/commons/node/AttoNodeMockAsyncBuilder.js.export.d.mts +17 -0
  346. package/commons-commons-test/cash/atto/commons/node/AttoNodeMockAsyncBuilder.js.export.mjs +13 -0
  347. package/commons-commons-test/cash/atto/commons/node/AttoNodeMockAsyncBuilder.js.export.mjs.map +1 -0
  348. package/commons-commons-test/cash/atto/commons/node/AttoNodeMockAsyncBuilder.js.mjs +138 -0
  349. package/commons-commons-test/cash/atto/commons/node/AttoNodeMockAsyncBuilder.js.mjs.map +1 -0
  350. package/commons-commons-test/cash/atto/commons/node/AttoWorkerMock.js.mjs +103 -0
  351. package/commons-commons-test/cash/atto/commons/node/AttoWorkerMock.js.mjs.map +1 -0
  352. package/commons-commons-test/cash/atto/commons/node/AttoWorkerMockAsync.js.export.d.mts +12 -0
  353. package/commons-commons-test/cash/atto/commons/node/AttoWorkerMockAsync.js.export.mjs +13 -0
  354. package/commons-commons-test/cash/atto/commons/node/AttoWorkerMockAsync.js.export.mjs.map +1 -0
  355. package/commons-commons-test/cash/atto/commons/node/AttoWorkerMockAsync.js.mjs +78 -0
  356. package/commons-commons-test/cash/atto/commons/node/AttoWorkerMockAsync.js.mjs.map +1 -0
  357. package/commons-commons-test/cash/atto/commons/node/AttoWorkerMockAsync.mjs +18 -0
  358. package/commons-commons-test/cash/atto/commons/node/AttoWorkerMockAsync.mjs.map +1 -0
  359. package/commons-commons-test/cash/atto/commons/node/AttoWorkerMockAsyncBuilder.js.export.d.mts +12 -0
  360. package/commons-commons-test/cash/atto/commons/node/AttoWorkerMockAsyncBuilder.js.export.mjs +13 -0
  361. package/commons-commons-test/cash/atto/commons/node/AttoWorkerMockAsyncBuilder.js.export.mjs.map +1 -0
  362. package/commons-commons-test/cash/atto/commons/node/AttoWorkerMockAsyncBuilder.js.mjs +78 -0
  363. package/commons-commons-test/cash/atto/commons/node/AttoWorkerMockAsyncBuilder.js.mjs.map +1 -0
  364. package/commons-commons-test.mjs +14 -0
  365. package/commons-commons-test.mjs.map +1 -0
  366. package/commons-commons-worker/cash/atto/commons/worker/AttoWorker.mjs +58 -0
  367. package/commons-commons-worker/cash/atto/commons/worker/AttoWorker.mjs.map +1 -0
  368. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerAsync.export.d.mts +13 -0
  369. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerAsync.export.mjs +13 -0
  370. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerAsync.export.mjs.map +1 -0
  371. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerAsync.mjs +124 -0
  372. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerAsync.mjs.map +1 -0
  373. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerCache.mjs +348 -0
  374. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerCache.mjs.map +1 -0
  375. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerCpu.js.mjs +16 -0
  376. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerCpu.js.mjs.map +1 -0
  377. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerCpu.mjs +203 -0
  378. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerCpu.mjs.map +1 -0
  379. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerOperations.mjs +351 -0
  380. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerOperations.mjs.map +1 -0
  381. package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerAsyncBuilder.web.export.d.mts +15 -0
  382. package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerAsyncBuilder.web.export.mjs +13 -0
  383. package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerAsyncBuilder.web.export.mjs.map +1 -0
  384. package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerAsyncBuilder.web.mjs +111 -0
  385. package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerAsyncBuilder.web.mjs.map +1 -0
  386. package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.mjs +291 -0
  387. package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.mjs.map +1 -0
  388. package/commons-commons-worker-remote.mjs +7 -0
  389. package/commons-commons-worker-remote.mjs.map +1 -0
  390. package/commons-commons-worker.mjs +7 -0
  391. package/commons-commons-worker.mjs.map +1 -0
  392. package/index.d.ts +1 -0
  393. package/index.mjs +1 -0
  394. package/kotlin-kotlin-stdlib/kotlin/AutoCloseableJs.mjs +52 -0
  395. package/kotlin-kotlin-stdlib/kotlin/AutoCloseableJs.mjs.map +1 -0
  396. package/kotlin-kotlin-stdlib/kotlin/Char.mjs +133 -0
  397. package/kotlin-kotlin-stdlib/kotlin/Char.mjs.map +1 -0
  398. package/kotlin-kotlin-stdlib/kotlin/CharSequence.mjs +22 -0
  399. package/kotlin-kotlin-stdlib/kotlin/CharSequence.mjs.map +1 -0
  400. package/kotlin-kotlin-stdlib/kotlin/Comparable.mjs +22 -0
  401. package/kotlin-kotlin-stdlib/kotlin/Comparable.mjs.map +1 -0
  402. package/kotlin-kotlin-stdlib/kotlin/ComparatorJs.mjs +22 -0
  403. package/kotlin-kotlin-stdlib/kotlin/ComparatorJs.mjs.map +1 -0
  404. package/kotlin-kotlin-stdlib/kotlin/DeepRecursive.mjs +158 -0
  405. package/kotlin-kotlin-stdlib/kotlin/DeepRecursive.mjs.map +1 -0
  406. package/kotlin-kotlin-stdlib/kotlin/Enum.mjs +71 -0
  407. package/kotlin-kotlin-stdlib/kotlin/Enum.mjs.map +1 -0
  408. package/kotlin-kotlin-stdlib/kotlin/ExceptionsH.mjs +33 -0
  409. package/kotlin-kotlin-stdlib/kotlin/ExceptionsH.mjs.map +1 -0
  410. package/kotlin-kotlin-stdlib/kotlin/Lazy.mjs +98 -0
  411. package/kotlin-kotlin-stdlib/kotlin/Lazy.mjs.map +1 -0
  412. package/kotlin-kotlin-stdlib/kotlin/Library.mjs +29 -0
  413. package/kotlin-kotlin-stdlib/kotlin/Library.mjs.map +1 -0
  414. package/kotlin-kotlin-stdlib/kotlin/NumbersJs.mjs +61 -0
  415. package/kotlin-kotlin-stdlib/kotlin/NumbersJs.mjs.map +1 -0
  416. package/kotlin-kotlin-stdlib/kotlin/Primitives.mjs +36 -0
  417. package/kotlin-kotlin-stdlib/kotlin/Primitives.mjs.map +1 -0
  418. package/kotlin-kotlin-stdlib/kotlin/Result.mjs +142 -0
  419. package/kotlin-kotlin-stdlib/kotlin/Result.mjs.map +1 -0
  420. package/kotlin-kotlin-stdlib/kotlin/Standard.mjs +31 -0
  421. package/kotlin-kotlin-stdlib/kotlin/Standard.mjs.map +1 -0
  422. package/kotlin-kotlin-stdlib/kotlin/Tuples.mjs +100 -0
  423. package/kotlin-kotlin-stdlib/kotlin/Tuples.mjs.map +1 -0
  424. package/kotlin-kotlin-stdlib/kotlin/UByte.mjs +105 -0
  425. package/kotlin-kotlin-stdlib/kotlin/UByte.mjs.map +1 -0
  426. package/kotlin-kotlin-stdlib/kotlin/UByteArray.mjs +203 -0
  427. package/kotlin-kotlin-stdlib/kotlin/UByteArray.mjs.map +1 -0
  428. package/kotlin-kotlin-stdlib/kotlin/UInt.mjs +105 -0
  429. package/kotlin-kotlin-stdlib/kotlin/UInt.mjs.map +1 -0
  430. package/kotlin-kotlin-stdlib/kotlin/UIntArray.mjs +203 -0
  431. package/kotlin-kotlin-stdlib/kotlin/UIntArray.mjs.map +1 -0
  432. package/kotlin-kotlin-stdlib/kotlin/ULong.mjs +107 -0
  433. package/kotlin-kotlin-stdlib/kotlin/ULong.mjs.map +1 -0
  434. package/kotlin-kotlin-stdlib/kotlin/ULongArray.mjs +204 -0
  435. package/kotlin-kotlin-stdlib/kotlin/ULongArray.mjs.map +1 -0
  436. package/kotlin-kotlin-stdlib/kotlin/UShort.mjs +106 -0
  437. package/kotlin-kotlin-stdlib/kotlin/UShort.mjs.map +1 -0
  438. package/kotlin-kotlin-stdlib/kotlin/UShortArray.mjs +203 -0
  439. package/kotlin-kotlin-stdlib/kotlin/UShortArray.mjs.map +1 -0
  440. package/kotlin-kotlin-stdlib/kotlin/Unit.mjs +34 -0
  441. package/kotlin-kotlin-stdlib/kotlin/Unit.mjs.map +1 -0
  442. package/kotlin-kotlin-stdlib/kotlin/UnsignedJs.mjs +182 -0
  443. package/kotlin-kotlin-stdlib/kotlin/UnsignedJs.mjs.map +1 -0
  444. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractCollection.mjs +99 -0
  445. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractCollection.mjs.map +1 -0
  446. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractList.mjs +271 -0
  447. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractList.mjs.map +1 -0
  448. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMap.mjs +312 -0
  449. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMap.mjs.map +1 -0
  450. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableCollectionJs.mjs +75 -0
  451. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableCollectionJs.mjs.map +1 -0
  452. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableListJs.mjs +249 -0
  453. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableListJs.mjs.map +1 -0
  454. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableMap.mjs +101 -0
  455. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableMap.mjs.map +1 -0
  456. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableSet.mjs +43 -0
  457. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableSet.mjs.map +1 -0
  458. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractSet.mjs +77 -0
  459. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractSet.mjs.map +1 -0
  460. package/kotlin-kotlin-stdlib/kotlin/collections/ArrayDeque.mjs +585 -0
  461. package/kotlin-kotlin-stdlib/kotlin/collections/ArrayDeque.mjs.map +1 -0
  462. package/kotlin-kotlin-stdlib/kotlin/collections/ArrayFunctions.mjs +44 -0
  463. package/kotlin-kotlin-stdlib/kotlin/collections/ArrayFunctions.mjs.map +1 -0
  464. package/kotlin-kotlin-stdlib/kotlin/collections/ArrayListJs.mjs +220 -0
  465. package/kotlin-kotlin-stdlib/kotlin/collections/ArrayListJs.mjs.map +1 -0
  466. package/kotlin-kotlin-stdlib/kotlin/collections/ArraySorting.mjs +126 -0
  467. package/kotlin-kotlin-stdlib/kotlin/collections/ArraySorting.mjs.map +1 -0
  468. package/kotlin-kotlin-stdlib/kotlin/collections/Collections.export.d.mts +42 -0
  469. package/kotlin-kotlin-stdlib/kotlin/collections/Collections.export.mjs +20 -0
  470. package/kotlin-kotlin-stdlib/kotlin/collections/Collections.export.mjs.map +1 -0
  471. package/kotlin-kotlin-stdlib/kotlin/collections/Collections.mjs +161 -0
  472. package/kotlin-kotlin-stdlib/kotlin/collections/Collections.mjs.map +1 -0
  473. package/kotlin-kotlin-stdlib/kotlin/collections/CollectionsKt.mjs +339 -0
  474. package/kotlin-kotlin-stdlib/kotlin/collections/CollectionsKt.mjs.map +1 -0
  475. package/kotlin-kotlin-stdlib/kotlin/collections/HashMap.mjs +96 -0
  476. package/kotlin-kotlin-stdlib/kotlin/collections/HashMap.mjs.map +1 -0
  477. package/kotlin-kotlin-stdlib/kotlin/collections/HashMapEntry.mjs +175 -0
  478. package/kotlin-kotlin-stdlib/kotlin/collections/HashMapEntry.mjs.map +1 -0
  479. package/kotlin-kotlin-stdlib/kotlin/collections/HashMapEntryDefault.mjs +143 -0
  480. package/kotlin-kotlin-stdlib/kotlin/collections/HashMapEntryDefault.mjs.map +1 -0
  481. package/kotlin-kotlin-stdlib/kotlin/collections/HashSet.mjs +71 -0
  482. package/kotlin-kotlin-stdlib/kotlin/collections/HashSet.mjs.map +1 -0
  483. package/kotlin-kotlin-stdlib/kotlin/collections/IndexedValue.mjs +52 -0
  484. package/kotlin-kotlin-stdlib/kotlin/collections/IndexedValue.mjs.map +1 -0
  485. package/kotlin-kotlin-stdlib/kotlin/collections/InternalHashMap.mjs +730 -0
  486. package/kotlin-kotlin-stdlib/kotlin/collections/InternalHashMap.mjs.map +1 -0
  487. package/kotlin-kotlin-stdlib/kotlin/collections/InternalMap.mjs +63 -0
  488. package/kotlin-kotlin-stdlib/kotlin/collections/InternalMap.mjs.map +1 -0
  489. package/kotlin-kotlin-stdlib/kotlin/collections/Iterables.mjs +65 -0
  490. package/kotlin-kotlin-stdlib/kotlin/collections/Iterables.mjs.map +1 -0
  491. package/kotlin-kotlin-stdlib/kotlin/collections/Iterators.mjs +37 -0
  492. package/kotlin-kotlin-stdlib/kotlin/collections/Iterators.mjs.map +1 -0
  493. package/kotlin-kotlin-stdlib/kotlin/collections/LinkedHashMap.mjs +91 -0
  494. package/kotlin-kotlin-stdlib/kotlin/collections/LinkedHashMap.mjs.map +1 -0
  495. package/kotlin-kotlin-stdlib/kotlin/collections/LinkedHashSet.mjs +48 -0
  496. package/kotlin-kotlin-stdlib/kotlin/collections/LinkedHashSet.mjs.map +1 -0
  497. package/kotlin-kotlin-stdlib/kotlin/collections/MapWithDefault.mjs +43 -0
  498. package/kotlin-kotlin-stdlib/kotlin/collections/MapWithDefault.mjs.map +1 -0
  499. package/kotlin-kotlin-stdlib/kotlin/collections/Maps.mjs +239 -0
  500. package/kotlin-kotlin-stdlib/kotlin/collections/Maps.mjs.map +1 -0
  501. package/kotlin-kotlin-stdlib/kotlin/collections/MutableCollections.mjs +74 -0
  502. package/kotlin-kotlin-stdlib/kotlin/collections/MutableCollections.mjs.map +1 -0
  503. package/kotlin-kotlin-stdlib/kotlin/collections/PrimitiveIterators.mjs +44 -0
  504. package/kotlin-kotlin-stdlib/kotlin/collections/PrimitiveIterators.mjs.map +1 -0
  505. package/kotlin-kotlin-stdlib/kotlin/collections/RandomAccess.mjs +22 -0
  506. package/kotlin-kotlin-stdlib/kotlin/collections/RandomAccess.mjs.map +1 -0
  507. package/kotlin-kotlin-stdlib/kotlin/collections/Sets.mjs +113 -0
  508. package/kotlin-kotlin-stdlib/kotlin/collections/Sets.mjs.map +1 -0
  509. package/kotlin-kotlin-stdlib/kotlin/collections/SlidingWindow.mjs +21 -0
  510. package/kotlin-kotlin-stdlib/kotlin/collections/SlidingWindow.mjs.map +1 -0
  511. package/kotlin-kotlin-stdlib/kotlin/collections/_Arrays.mjs +343 -0
  512. package/kotlin-kotlin-stdlib/kotlin/collections/_Arrays.mjs.map +1 -0
  513. package/kotlin-kotlin-stdlib/kotlin/collections/_ArraysJs.mjs +181 -0
  514. package/kotlin-kotlin-stdlib/kotlin/collections/_ArraysJs.mjs.map +1 -0
  515. package/kotlin-kotlin-stdlib/kotlin/collections/_Collections.mjs +502 -0
  516. package/kotlin-kotlin-stdlib/kotlin/collections/_Collections.mjs.map +1 -0
  517. package/kotlin-kotlin-stdlib/kotlin/collections/_CollectionsJs.mjs +30 -0
  518. package/kotlin-kotlin-stdlib/kotlin/collections/_CollectionsJs.mjs.map +1 -0
  519. package/kotlin-kotlin-stdlib/kotlin/collections/_Maps.mjs +41 -0
  520. package/kotlin-kotlin-stdlib/kotlin/collections/_Maps.mjs.map +1 -0
  521. package/kotlin-kotlin-stdlib/kotlin/collections/_Sets.mjs +59 -0
  522. package/kotlin-kotlin-stdlib/kotlin/collections/_Sets.mjs.map +1 -0
  523. package/kotlin-kotlin-stdlib/kotlin/collections/collectionJs.mjs +137 -0
  524. package/kotlin-kotlin-stdlib/kotlin/collections/collectionJs.mjs.map +1 -0
  525. package/kotlin-kotlin-stdlib/kotlin/collections/collectionsHacks.mjs +67 -0
  526. package/kotlin-kotlin-stdlib/kotlin/collections/collectionsHacks.mjs.map +1 -0
  527. package/kotlin-kotlin-stdlib/kotlin/collections/collectionsInterop.mjs +266 -0
  528. package/kotlin-kotlin-stdlib/kotlin/collections/collectionsInterop.mjs.map +1 -0
  529. package/kotlin-kotlin-stdlib/kotlin/comparisons/Comparisons.mjs +50 -0
  530. package/kotlin-kotlin-stdlib/kotlin/comparisons/Comparisons.mjs.map +1 -0
  531. package/kotlin-kotlin-stdlib/kotlin/coroutines/Continuation.mjs +39 -0
  532. package/kotlin-kotlin-stdlib/kotlin/coroutines/Continuation.mjs.map +1 -0
  533. package/kotlin-kotlin-stdlib/kotlin/coroutines/ContinuationInterceptor.mjs +78 -0
  534. package/kotlin-kotlin-stdlib/kotlin/coroutines/ContinuationInterceptor.mjs.map +1 -0
  535. package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineContext.mjs +86 -0
  536. package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineContext.mjs.map +1 -0
  537. package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineContextImpl.mjs +237 -0
  538. package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineContextImpl.mjs.map +1 -0
  539. package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineImpl.mjs +48 -0
  540. package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineImpl.mjs.map +1 -0
  541. package/kotlin-kotlin-stdlib/kotlin/coroutines/GeneratorCoroutineImpl.mjs +199 -0
  542. package/kotlin-kotlin-stdlib/kotlin/coroutines/GeneratorCoroutineImpl.mjs.map +1 -0
  543. package/kotlin-kotlin-stdlib/kotlin/coroutines/InterceptedCoroutine.mjs +53 -0
  544. package/kotlin-kotlin-stdlib/kotlin/coroutines/InterceptedCoroutine.mjs.map +1 -0
  545. package/kotlin-kotlin-stdlib/kotlin/coroutines/SafeContinuationJs.mjs +76 -0
  546. package/kotlin-kotlin-stdlib/kotlin/coroutines/SafeContinuationJs.mjs.map +1 -0
  547. package/kotlin-kotlin-stdlib/kotlin/coroutines/cancellation/CancellationException.mjs +43 -0
  548. package/kotlin-kotlin-stdlib/kotlin/coroutines/cancellation/CancellationException.mjs.map +1 -0
  549. package/kotlin-kotlin-stdlib/kotlin/coroutines/intrinsics/Intrinsics.mjs +53 -0
  550. package/kotlin-kotlin-stdlib/kotlin/coroutines/intrinsics/Intrinsics.mjs.map +1 -0
  551. package/kotlin-kotlin-stdlib/kotlin/coroutines/intrinsics/IntrinsicsJs.mjs +166 -0
  552. package/kotlin-kotlin-stdlib/kotlin/coroutines/intrinsics/IntrinsicsJs.mjs.map +1 -0
  553. package/kotlin-kotlin-stdlib/kotlin/enums/EnumEntries.mjs +77 -0
  554. package/kotlin-kotlin-stdlib/kotlin/enums/EnumEntries.mjs.map +1 -0
  555. package/kotlin-kotlin-stdlib/kotlin/exceptions.mjs +437 -0
  556. package/kotlin-kotlin-stdlib/kotlin/exceptions.mjs.map +1 -0
  557. package/kotlin-kotlin-stdlib/kotlin/hacks.mjs +51 -0
  558. package/kotlin-kotlin-stdlib/kotlin/hacks.mjs.map +1 -0
  559. package/kotlin-kotlin-stdlib/kotlin/internal/IrLinkageError.mjs +33 -0
  560. package/kotlin-kotlin-stdlib/kotlin/internal/IrLinkageError.mjs.map +1 -0
  561. package/kotlin-kotlin-stdlib/kotlin/internal/SharedVariableBox.mjs +4 -0
  562. package/kotlin-kotlin-stdlib/kotlin/internal/SharedVariableBox.mjs.map +1 -0
  563. package/kotlin-kotlin-stdlib/kotlin/internal/progressionUtil.mjs +30 -0
  564. package/kotlin-kotlin-stdlib/kotlin/internal/progressionUtil.mjs.map +1 -0
  565. package/kotlin-kotlin-stdlib/kotlin/js/BitMask.mjs +83 -0
  566. package/kotlin-kotlin-stdlib/kotlin/js/BitMask.mjs.map +1 -0
  567. package/kotlin-kotlin-stdlib/kotlin/js/FunctionAdapter.mjs +22 -0
  568. package/kotlin-kotlin-stdlib/kotlin/js/FunctionAdapter.mjs.map +1 -0
  569. package/kotlin-kotlin-stdlib/kotlin/js/JsClass.mjs +16 -0
  570. package/kotlin-kotlin-stdlib/kotlin/js/JsClass.mjs.map +1 -0
  571. package/kotlin-kotlin-stdlib/kotlin/js/arrays.mjs +94 -0
  572. package/kotlin-kotlin-stdlib/kotlin/js/arrays.mjs.map +1 -0
  573. package/kotlin-kotlin-stdlib/kotlin/js/bitUtils.mjs +70 -0
  574. package/kotlin-kotlin-stdlib/kotlin/js/bitUtils.mjs.map +1 -0
  575. package/kotlin-kotlin-stdlib/kotlin/js/charSequenceJs.mjs +51 -0
  576. package/kotlin-kotlin-stdlib/kotlin/js/charSequenceJs.mjs.map +1 -0
  577. package/kotlin-kotlin-stdlib/kotlin/js/compareTo.mjs +80 -0
  578. package/kotlin-kotlin-stdlib/kotlin/js/compareTo.mjs.map +1 -0
  579. package/kotlin-kotlin-stdlib/kotlin/js/coreRuntime.mjs +316 -0
  580. package/kotlin-kotlin-stdlib/kotlin/js/coreRuntime.mjs.map +1 -0
  581. package/kotlin-kotlin-stdlib/kotlin/js/coroutineInternalJS.mjs +15 -0
  582. package/kotlin-kotlin-stdlib/kotlin/js/coroutineInternalJS.mjs.map +1 -0
  583. package/kotlin-kotlin-stdlib/kotlin/js/internal/BigInt.mjs +22 -0
  584. package/kotlin-kotlin-stdlib/kotlin/js/internal/BigInt.mjs.map +1 -0
  585. package/kotlin-kotlin-stdlib/kotlin/js/internal/boxedLong/boxedLong.mjs +258 -0
  586. package/kotlin-kotlin-stdlib/kotlin/js/internal/boxedLong/boxedLong.mjs.map +1 -0
  587. package/kotlin-kotlin-stdlib/kotlin/js/internal/longAsBigInt/longAsBigInt.mjs +246 -0
  588. package/kotlin-kotlin-stdlib/kotlin/js/internal/longAsBigInt/longAsBigInt.mjs.map +1 -0
  589. package/kotlin-kotlin-stdlib/kotlin/js/internal/primitiveCompanionObjects.mjs +238 -0
  590. package/kotlin-kotlin-stdlib/kotlin/js/internal/primitiveCompanionObjects.mjs.map +1 -0
  591. package/kotlin-kotlin-stdlib/kotlin/js/json.mjs +25 -0
  592. package/kotlin-kotlin-stdlib/kotlin/js/json.mjs.map +1 -0
  593. package/kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs +72 -0
  594. package/kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs.map +1 -0
  595. package/kotlin-kotlin-stdlib/kotlin/js/numberConversion.mjs +52 -0
  596. package/kotlin-kotlin-stdlib/kotlin/js/numberConversion.mjs.map +1 -0
  597. package/kotlin-kotlin-stdlib/kotlin/js/rangeTo.mjs +15 -0
  598. package/kotlin-kotlin-stdlib/kotlin/js/rangeTo.mjs.map +1 -0
  599. package/kotlin-kotlin-stdlib/kotlin/js/reflectRuntime.mjs +95 -0
  600. package/kotlin-kotlin-stdlib/kotlin/js/reflectRuntime.mjs.map +1 -0
  601. package/kotlin-kotlin-stdlib/kotlin/js/regexp.mjs +12 -0
  602. package/kotlin-kotlin-stdlib/kotlin/js/regexp.mjs.map +1 -0
  603. package/kotlin-kotlin-stdlib/kotlin/js/typeCheckUtils.mjs +173 -0
  604. package/kotlin-kotlin-stdlib/kotlin/js/typeCheckUtils.mjs.map +1 -0
  605. package/kotlin-kotlin-stdlib/kotlin/js/void.mjs +21 -0
  606. package/kotlin-kotlin-stdlib/kotlin/js/void.mjs.map +1 -0
  607. package/kotlin-kotlin-stdlib/kotlin/kotlin.mjs +55 -0
  608. package/kotlin-kotlin-stdlib/kotlin/kotlin.mjs.map +1 -0
  609. package/kotlin-kotlin-stdlib/kotlin/math/math.mjs +49 -0
  610. package/kotlin-kotlin-stdlib/kotlin/math/math.mjs.map +1 -0
  611. package/kotlin-kotlin-stdlib/kotlin/random/PlatformRandom.mjs +30 -0
  612. package/kotlin-kotlin-stdlib/kotlin/random/PlatformRandom.mjs.map +1 -0
  613. package/kotlin-kotlin-stdlib/kotlin/random/Random.mjs +166 -0
  614. package/kotlin-kotlin-stdlib/kotlin/random/Random.mjs.map +1 -0
  615. package/kotlin-kotlin-stdlib/kotlin/random/XorWowRandom.mjs +99 -0
  616. package/kotlin-kotlin-stdlib/kotlin/random/XorWowRandom.mjs.map +1 -0
  617. package/kotlin-kotlin-stdlib/kotlin/ranges/PrimitiveRanges.mjs +178 -0
  618. package/kotlin-kotlin-stdlib/kotlin/ranges/PrimitiveRanges.mjs.map +1 -0
  619. package/kotlin-kotlin-stdlib/kotlin/ranges/ProgressionIterators.mjs +96 -0
  620. package/kotlin-kotlin-stdlib/kotlin/ranges/ProgressionIterators.mjs.map +1 -0
  621. package/kotlin-kotlin-stdlib/kotlin/ranges/Progressions.mjs +163 -0
  622. package/kotlin-kotlin-stdlib/kotlin/ranges/Progressions.mjs.map +1 -0
  623. package/kotlin-kotlin-stdlib/kotlin/ranges/Range.mjs +26 -0
  624. package/kotlin-kotlin-stdlib/kotlin/ranges/Range.mjs.map +1 -0
  625. package/kotlin-kotlin-stdlib/kotlin/ranges/Ranges.mjs +17 -0
  626. package/kotlin-kotlin-stdlib/kotlin/ranges/Ranges.mjs.map +1 -0
  627. package/kotlin-kotlin-stdlib/kotlin/ranges/_Ranges.mjs +68 -0
  628. package/kotlin-kotlin-stdlib/kotlin/ranges/_Ranges.mjs.map +1 -0
  629. package/kotlin-kotlin-stdlib/kotlin/reflect/KClassJs.mjs +22 -0
  630. package/kotlin-kotlin-stdlib/kotlin/reflect/KClassJs.mjs.map +1 -0
  631. package/kotlin-kotlin-stdlib/kotlin/reflect/KPropertyJs.mjs +42 -0
  632. package/kotlin-kotlin-stdlib/kotlin/reflect/KPropertyJs.mjs.map +1 -0
  633. package/kotlin-kotlin-stdlib/kotlin/reflect/KTypeParameter.mjs +22 -0
  634. package/kotlin-kotlin-stdlib/kotlin/reflect/KTypeParameter.mjs.map +1 -0
  635. package/kotlin-kotlin-stdlib/kotlin/reflect/KTypeProjection.mjs +111 -0
  636. package/kotlin-kotlin-stdlib/kotlin/reflect/KTypeProjection.mjs.map +1 -0
  637. package/kotlin-kotlin-stdlib/kotlin/reflect/KVariance.mjs +50 -0
  638. package/kotlin-kotlin-stdlib/kotlin/reflect/KVariance.mjs.map +1 -0
  639. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KClassImpl.mjs +152 -0
  640. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KClassImpl.mjs.map +1 -0
  641. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KTypeHelpers.mjs +47 -0
  642. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KTypeHelpers.mjs.map +1 -0
  643. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KTypeImpl.mjs +80 -0
  644. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KTypeImpl.mjs.map +1 -0
  645. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KTypeParameterImpl.mjs +66 -0
  646. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KTypeParameterImpl.mjs.map +1 -0
  647. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/primitives.mjs +296 -0
  648. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/primitives.mjs.map +1 -0
  649. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/reflection.mjs +141 -0
  650. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/reflection.mjs.map +1 -0
  651. package/kotlin-kotlin-stdlib/kotlin/sequences/SequenceBuilder.mjs +169 -0
  652. package/kotlin-kotlin-stdlib/kotlin/sequences/SequenceBuilder.mjs.map +1 -0
  653. package/kotlin-kotlin-stdlib/kotlin/sequences/Sequences.mjs +117 -0
  654. package/kotlin-kotlin-stdlib/kotlin/sequences/Sequences.mjs.map +1 -0
  655. package/kotlin-kotlin-stdlib/kotlin/sequences/_Sequences.mjs +64 -0
  656. package/kotlin-kotlin-stdlib/kotlin/sequences/_Sequences.mjs.map +1 -0
  657. package/kotlin-kotlin-stdlib/kotlin/text/Appendable.mjs +30 -0
  658. package/kotlin-kotlin-stdlib/kotlin/text/Appendable.mjs.map +1 -0
  659. package/kotlin-kotlin-stdlib/kotlin/text/Char.mjs +49 -0
  660. package/kotlin-kotlin-stdlib/kotlin/text/Char.mjs.map +1 -0
  661. package/kotlin-kotlin-stdlib/kotlin/text/CharacterCodingExceptionJs.mjs +33 -0
  662. package/kotlin-kotlin-stdlib/kotlin/text/CharacterCodingExceptionJs.mjs.map +1 -0
  663. package/kotlin-kotlin-stdlib/kotlin/text/HexExtensions.mjs +527 -0
  664. package/kotlin-kotlin-stdlib/kotlin/text/HexExtensions.mjs.map +1 -0
  665. package/kotlin-kotlin-stdlib/kotlin/text/HexFormat.mjs +271 -0
  666. package/kotlin-kotlin-stdlib/kotlin/text/HexFormat.mjs.map +1 -0
  667. package/kotlin-kotlin-stdlib/kotlin/text/Indent.mjs +218 -0
  668. package/kotlin-kotlin-stdlib/kotlin/text/Indent.mjs.map +1 -0
  669. package/kotlin-kotlin-stdlib/kotlin/text/StringBuilderJs.mjs +146 -0
  670. package/kotlin-kotlin-stdlib/kotlin/text/StringBuilderJs.mjs.map +1 -0
  671. package/kotlin-kotlin-stdlib/kotlin/text/StringNumberConversions.mjs +164 -0
  672. package/kotlin-kotlin-stdlib/kotlin/text/StringNumberConversions.mjs.map +1 -0
  673. package/kotlin-kotlin-stdlib/kotlin/text/Strings.mjs +820 -0
  674. package/kotlin-kotlin-stdlib/kotlin/text/Strings.mjs.map +1 -0
  675. package/kotlin-kotlin-stdlib/kotlin/text/UStrings.mjs +293 -0
  676. package/kotlin-kotlin-stdlib/kotlin/text/UStrings.mjs.map +1 -0
  677. package/kotlin-kotlin-stdlib/kotlin/text/_CharCategories.mjs +38 -0
  678. package/kotlin-kotlin-stdlib/kotlin/text/_CharCategories.mjs.map +1 -0
  679. package/kotlin-kotlin-stdlib/kotlin/text/_DigitChars.mjs +61 -0
  680. package/kotlin-kotlin-stdlib/kotlin/text/_DigitChars.mjs.map +1 -0
  681. package/kotlin-kotlin-stdlib/kotlin/text/_LetterChars.mjs +118 -0
  682. package/kotlin-kotlin-stdlib/kotlin/text/_LetterChars.mjs.map +1 -0
  683. package/kotlin-kotlin-stdlib/kotlin/text/_Strings.mjs +128 -0
  684. package/kotlin-kotlin-stdlib/kotlin/text/_Strings.mjs.map +1 -0
  685. package/kotlin-kotlin-stdlib/kotlin/text/_WhitespaceChars.mjs +17 -0
  686. package/kotlin-kotlin-stdlib/kotlin/text/_WhitespaceChars.mjs.map +1 -0
  687. package/kotlin-kotlin-stdlib/kotlin/text/charJs.mjs +40 -0
  688. package/kotlin-kotlin-stdlib/kotlin/text/charJs.mjs.map +1 -0
  689. package/kotlin-kotlin-stdlib/kotlin/text/numberConversions.mjs +119 -0
  690. package/kotlin-kotlin-stdlib/kotlin/text/numberConversions.mjs.map +1 -0
  691. package/kotlin-kotlin-stdlib/kotlin/text/regex.mjs +100 -0
  692. package/kotlin-kotlin-stdlib/kotlin/text/regex.mjs.map +1 -0
  693. package/kotlin-kotlin-stdlib/kotlin/text/stringJs.mjs +256 -0
  694. package/kotlin-kotlin-stdlib/kotlin/text/stringJs.mjs.map +1 -0
  695. package/kotlin-kotlin-stdlib/kotlin/text/stringsCode.mjs +139 -0
  696. package/kotlin-kotlin-stdlib/kotlin/text/stringsCode.mjs.map +1 -0
  697. package/kotlin-kotlin-stdlib/kotlin/text/utf8Encoding.mjs +255 -0
  698. package/kotlin-kotlin-stdlib/kotlin/text/utf8Encoding.mjs.map +1 -0
  699. package/kotlin-kotlin-stdlib/kotlin/throwableExtensions.mjs +225 -0
  700. package/kotlin-kotlin-stdlib/kotlin/throwableExtensions.mjs.map +1 -0
  701. package/kotlin-kotlin-stdlib/kotlin/time/Clock.mjs +34 -0
  702. package/kotlin-kotlin-stdlib/kotlin/time/Clock.mjs.map +1 -0
  703. package/kotlin-kotlin-stdlib/kotlin/time/Duration.mjs +798 -0
  704. package/kotlin-kotlin-stdlib/kotlin/time/Duration.mjs.map +1 -0
  705. package/kotlin-kotlin-stdlib/kotlin/time/DurationUnit.mjs +80 -0
  706. package/kotlin-kotlin-stdlib/kotlin/time/DurationUnit.mjs.map +1 -0
  707. package/kotlin-kotlin-stdlib/kotlin/time/DurationUnitJs.mjs +114 -0
  708. package/kotlin-kotlin-stdlib/kotlin/time/DurationUnitJs.mjs.map +1 -0
  709. package/kotlin-kotlin-stdlib/kotlin/time/Instant.mjs +953 -0
  710. package/kotlin-kotlin-stdlib/kotlin/time/Instant.mjs.map +1 -0
  711. package/kotlin-kotlin-stdlib/kotlin/time/InstantJs.mjs +16 -0
  712. package/kotlin-kotlin-stdlib/kotlin/time/InstantJs.mjs.map +1 -0
  713. package/kotlin-kotlin-stdlib/kotlin/uuid/Uuid.mjs +181 -0
  714. package/kotlin-kotlin-stdlib/kotlin/uuid/Uuid.mjs.map +1 -0
  715. package/kotlin-kotlin-stdlib/kotlin/uuid/UuidJs.mjs +88 -0
  716. package/kotlin-kotlin-stdlib/kotlin/uuid/UuidJs.mjs.map +1 -0
  717. package/kotlin-kotlin-stdlib/noPackageHacks.mjs +62 -0
  718. package/kotlin-kotlin-stdlib/noPackageHacks.mjs.map +1 -0
  719. package/kotlin-kotlin-stdlib/reflectionJs.mjs +67 -0
  720. package/kotlin-kotlin-stdlib/reflectionJs.mjs.map +1 -0
  721. package/kotlin-kotlin-stdlib.mjs +7 -0
  722. package/kotlin-kotlin-stdlib.mjs.map +1 -0
  723. package/kotlinx-atomicfu/kotlinx/atomicfu/AtomicFU.common.mjs +47 -0
  724. package/kotlinx-atomicfu/kotlinx/atomicfu/AtomicFU.common.mjs.map +1 -0
  725. package/kotlinx-atomicfu/kotlinx/atomicfu/AtomicFU.mjs +237 -0
  726. package/kotlinx-atomicfu/kotlinx/atomicfu/AtomicFU.mjs.map +1 -0
  727. package/kotlinx-atomicfu/kotlinx/atomicfu/Trace.common.mjs +55 -0
  728. package/kotlinx-atomicfu/kotlinx/atomicfu/Trace.common.mjs.map +1 -0
  729. package/kotlinx-coroutines-core/kotlinx/coroutines/AbstractCoroutine.mjs +98 -0
  730. package/kotlinx-coroutines-core/kotlinx/coroutines/AbstractCoroutine.mjs.map +1 -0
  731. package/kotlinx-coroutines-core/kotlinx/coroutines/Builders.common.mjs +121 -0
  732. package/kotlinx-coroutines-core/kotlinx/coroutines/Builders.common.mjs.map +1 -0
  733. package/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuation.mjs +96 -0
  734. package/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuation.mjs.map +1 -0
  735. package/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuationImpl.mjs +868 -0
  736. package/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuationImpl.mjs.map +1 -0
  737. package/kotlinx-coroutines-core/kotlinx/coroutines/CompletableDeferred.mjs +61 -0
  738. package/kotlinx-coroutines-core/kotlinx/coroutines/CompletableDeferred.mjs.map +1 -0
  739. package/kotlinx-coroutines-core/kotlinx/coroutines/CompletableJob.mjs +23 -0
  740. package/kotlinx-coroutines-core/kotlinx/coroutines/CompletableJob.mjs.map +1 -0
  741. package/kotlinx-coroutines-core/kotlinx/coroutines/CompletionState.mjs +108 -0
  742. package/kotlinx-coroutines-core/kotlinx/coroutines/CompletionState.mjs.map +1 -0
  743. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineContext.mjs +78 -0
  744. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineContext.mjs.map +1 -0
  745. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineDispatcher.mjs +99 -0
  746. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineDispatcher.mjs.map +1 -0
  747. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineExceptionHandler.mjs +72 -0
  748. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineExceptionHandler.mjs.map +1 -0
  749. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineName.mjs +65 -0
  750. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineName.mjs.map +1 -0
  751. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineScope.mjs +93 -0
  752. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineScope.mjs.map +1 -0
  753. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineStart.mjs +88 -0
  754. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineStart.mjs.map +1 -0
  755. package/kotlinx-coroutines-core/kotlinx/coroutines/Debug.common.mjs +22 -0
  756. package/kotlinx-coroutines-core/kotlinx/coroutines/Debug.common.mjs.map +1 -0
  757. package/kotlinx-coroutines-core/kotlinx/coroutines/Debug.mjs +39 -0
  758. package/kotlinx-coroutines-core/kotlinx/coroutines/Debug.mjs.map +1 -0
  759. package/kotlinx-coroutines-core/kotlinx/coroutines/Delay.mjs +44 -0
  760. package/kotlinx-coroutines-core/kotlinx/coroutines/Delay.mjs.map +1 -0
  761. package/kotlinx-coroutines-core/kotlinx/coroutines/DispatchedTask.mjs +221 -0
  762. package/kotlinx-coroutines-core/kotlinx/coroutines/DispatchedTask.mjs.map +1 -0
  763. package/kotlinx-coroutines-core/kotlinx/coroutines/Dispatchers.mjs +75 -0
  764. package/kotlinx-coroutines-core/kotlinx/coroutines/Dispatchers.mjs.map +1 -0
  765. package/kotlinx-coroutines-core/kotlinx/coroutines/EventLoop.common.mjs +145 -0
  766. package/kotlinx-coroutines-core/kotlinx/coroutines/EventLoop.common.mjs.map +1 -0
  767. package/kotlinx-coroutines-core/kotlinx/coroutines/EventLoop.mjs +34 -0
  768. package/kotlinx-coroutines-core/kotlinx/coroutines/EventLoop.mjs.map +1 -0
  769. package/kotlinx-coroutines-core/kotlinx/coroutines/Exceptions.common.mjs +49 -0
  770. package/kotlinx-coroutines-core/kotlinx/coroutines/Exceptions.common.mjs.map +1 -0
  771. package/kotlinx-coroutines-core/kotlinx/coroutines/Exceptions.mjs +79 -0
  772. package/kotlinx-coroutines-core/kotlinx/coroutines/Exceptions.mjs.map +1 -0
  773. package/kotlinx-coroutines-core/kotlinx/coroutines/JSDispatcher.mjs +410 -0
  774. package/kotlinx-coroutines-core/kotlinx/coroutines/JSDispatcher.mjs.map +1 -0
  775. package/kotlinx-coroutines-core/kotlinx/coroutines/Job.mjs +172 -0
  776. package/kotlinx-coroutines-core/kotlinx/coroutines/Job.mjs.map +1 -0
  777. package/kotlinx-coroutines-core/kotlinx/coroutines/JobSupport.mjs +1761 -0
  778. package/kotlinx-coroutines-core/kotlinx/coroutines/JobSupport.mjs.map +1 -0
  779. package/kotlinx-coroutines-core/kotlinx/coroutines/MainCoroutineDispatcher.mjs +64 -0
  780. package/kotlinx-coroutines-core/kotlinx/coroutines/MainCoroutineDispatcher.mjs.map +1 -0
  781. package/kotlinx-coroutines-core/kotlinx/coroutines/Promise.mjs +83 -0
  782. package/kotlinx-coroutines-core/kotlinx/coroutines/Promise.mjs.map +1 -0
  783. package/kotlinx-coroutines-core/kotlinx/coroutines/Runnable.mjs +22 -0
  784. package/kotlinx-coroutines-core/kotlinx/coroutines/Runnable.mjs.map +1 -0
  785. package/kotlinx-coroutines-core/kotlinx/coroutines/SchedulerTask.mjs +23 -0
  786. package/kotlinx-coroutines-core/kotlinx/coroutines/SchedulerTask.mjs.map +1 -0
  787. package/kotlinx-coroutines-core/kotlinx/coroutines/Supervisor.mjs +31 -0
  788. package/kotlinx-coroutines-core/kotlinx/coroutines/Supervisor.mjs.map +1 -0
  789. package/kotlinx-coroutines-core/kotlinx/coroutines/Timeout.mjs +24 -0
  790. package/kotlinx-coroutines-core/kotlinx/coroutines/Timeout.mjs.map +1 -0
  791. package/kotlinx-coroutines-core/kotlinx/coroutines/Unconfined.mjs +70 -0
  792. package/kotlinx-coroutines-core/kotlinx/coroutines/Unconfined.mjs.map +1 -0
  793. package/kotlinx-coroutines-core/kotlinx/coroutines/Waiter.mjs +22 -0
  794. package/kotlinx-coroutines-core/kotlinx/coroutines/Waiter.mjs.map +1 -0
  795. package/kotlinx-coroutines-core/kotlinx/coroutines/Window.mjs +28 -0
  796. package/kotlinx-coroutines-core/kotlinx/coroutines/Window.mjs.map +1 -0
  797. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/BufferOverflow.mjs +50 -0
  798. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/BufferOverflow.mjs.map +1 -0
  799. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/BufferedChannel.mjs +2791 -0
  800. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/BufferedChannel.mjs.map +1 -0
  801. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Channel.mjs +320 -0
  802. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Channel.mjs.map +1 -0
  803. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/ChannelCoroutine.mjs +78 -0
  804. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/ChannelCoroutine.mjs.map +1 -0
  805. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Channels.common.mjs +24 -0
  806. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Channels.common.mjs.map +1 -0
  807. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/ConflatedBufferedChannel.mjs +105 -0
  808. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/ConflatedBufferedChannel.mjs.map +1 -0
  809. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Produce.mjs +94 -0
  810. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Produce.mjs.map +1 -0
  811. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Builders.mjs +108 -0
  812. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Builders.mjs.map +1 -0
  813. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Channels.mjs +56 -0
  814. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Channels.mjs.map +1 -0
  815. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Collect.mjs +26 -0
  816. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Collect.mjs.map +1 -0
  817. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Emitters.mjs +27 -0
  818. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Emitters.mjs.map +1 -0
  819. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Flow.mjs +43 -0
  820. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Flow.mjs.map +1 -0
  821. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/FlowCollector.mjs +22 -0
  822. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/FlowCollector.mjs.map +1 -0
  823. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Merge.mjs +25 -0
  824. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Merge.mjs.map +1 -0
  825. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Reduce.mjs +133 -0
  826. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Reduce.mjs.map +1 -0
  827. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Share.mjs +79 -0
  828. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Share.mjs.map +1 -0
  829. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/SharedFlow.mjs +272 -0
  830. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/SharedFlow.mjs.map +1 -0
  831. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/StateFlow.mjs +283 -0
  832. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/StateFlow.mjs.map +1 -0
  833. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/AbstractSharedFlow.mjs +145 -0
  834. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/AbstractSharedFlow.mjs.map +1 -0
  835. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/ChannelFlow.mjs +340 -0
  836. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/ChannelFlow.mjs.map +1 -0
  837. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/FlowExceptions.common.mjs +13 -0
  838. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/FlowExceptions.common.mjs.map +1 -0
  839. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/FlowExceptions.mjs +47 -0
  840. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/FlowExceptions.mjs.map +1 -0
  841. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/Merge.mjs +214 -0
  842. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/Merge.mjs.map +1 -0
  843. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/NopCollector.mjs +23 -0
  844. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/NopCollector.mjs.map +1 -0
  845. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/NullSurrogate.mjs +28 -0
  846. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/NullSurrogate.mjs.map +1 -0
  847. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.common.mjs +69 -0
  848. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.common.mjs.map +1 -0
  849. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.mjs +58 -0
  850. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.mjs.map +1 -0
  851. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SendingCollector.mjs +30 -0
  852. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SendingCollector.mjs.map +1 -0
  853. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Concurrent.common.mjs +16 -0
  854. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Concurrent.common.mjs.map +1 -0
  855. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Concurrent.mjs +49 -0
  856. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Concurrent.mjs.map +1 -0
  857. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/ConcurrentLinkedList.mjs +306 -0
  858. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/ConcurrentLinkedList.mjs.map +1 -0
  859. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/CoroutineExceptionHandlerImpl.common.mjs +62 -0
  860. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/CoroutineExceptionHandlerImpl.common.mjs.map +1 -0
  861. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/CoroutineExceptionHandlerImpl.mjs +56 -0
  862. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/CoroutineExceptionHandlerImpl.mjs.map +1 -0
  863. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/DispatchedContinuation.mjs +335 -0
  864. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/DispatchedContinuation.mjs.map +1 -0
  865. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/InlineList.mjs +48 -0
  866. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/InlineList.mjs.map +1 -0
  867. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/LimitedDispatcher.mjs +199 -0
  868. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/LimitedDispatcher.mjs.map +1 -0
  869. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/LinkedList.mjs +86 -0
  870. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/LinkedList.mjs.map +1 -0
  871. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/LockFreeTaskQueue.mjs +335 -0
  872. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/LockFreeTaskQueue.mjs.map +1 -0
  873. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/NamedDispatcher.mjs +47 -0
  874. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/NamedDispatcher.mjs.map +1 -0
  875. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/OnUndeliveredElement.mjs +62 -0
  876. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/OnUndeliveredElement.mjs.map +1 -0
  877. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Scopes.mjs +64 -0
  878. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Scopes.mjs.map +1 -0
  879. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/StackTraceRecovery.mjs +20 -0
  880. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/StackTraceRecovery.mjs.map +1 -0
  881. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Symbol.mjs +29 -0
  882. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Symbol.mjs.map +1 -0
  883. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Synchronized.mjs +22 -0
  884. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Synchronized.mjs.map +1 -0
  885. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/SystemProps.common.mjs +52 -0
  886. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/SystemProps.common.mjs.map +1 -0
  887. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/SystemProps.mjs +12 -0
  888. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/SystemProps.mjs.map +1 -0
  889. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/ThreadContext.mjs +12 -0
  890. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/ThreadContext.mjs.map +1 -0
  891. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/ThreadLocal.mjs +37 -0
  892. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/ThreadLocal.mjs.map +1 -0
  893. package/kotlinx-coroutines-core/kotlinx/coroutines/intrinsics/Cancellable.mjs +90 -0
  894. package/kotlinx-coroutines-core/kotlinx/coroutines/intrinsics/Cancellable.mjs.map +1 -0
  895. package/kotlinx-coroutines-core/kotlinx/coroutines/intrinsics/Undispatched.mjs +129 -0
  896. package/kotlinx-coroutines-core/kotlinx/coroutines/intrinsics/Undispatched.mjs.map +1 -0
  897. package/kotlinx-coroutines-core/kotlinx/coroutines/selects/Select.mjs +268 -0
  898. package/kotlinx-coroutines-core/kotlinx/coroutines/selects/Select.mjs.map +1 -0
  899. package/kotlinx-coroutines-core/kotlinx/coroutines/sync/Mutex.mjs +257 -0
  900. package/kotlinx-coroutines-core/kotlinx/coroutines/sync/Mutex.mjs.map +1 -0
  901. package/kotlinx-coroutines-core/kotlinx/coroutines/sync/Semaphore.mjs +429 -0
  902. package/kotlinx-coroutines-core/kotlinx/coroutines/sync/Semaphore.mjs.map +1 -0
  903. package/kotlinx-io-kotlinx-io-bytestring/kotlinx/io/bytestring/ByteString.mjs +210 -0
  904. package/kotlinx-io-kotlinx-io-bytestring/kotlinx/io/bytestring/ByteString.mjs.map +1 -0
  905. package/kotlinx-io-kotlinx-io-bytestring/kotlinx/io/bytestring/unsafe/UnsafeByteStringOperations.mjs +34 -0
  906. package/kotlinx-io-kotlinx-io-bytestring/kotlinx/io/bytestring/unsafe/UnsafeByteStringOperations.mjs.map +1 -0
  907. package/kotlinx-io-kotlinx-io-core/kotlinx/io/-PlatformJs.mjs +67 -0
  908. package/kotlinx-io-kotlinx-io-core/kotlinx/io/-PlatformJs.mjs.map +1 -0
  909. package/kotlinx-io-kotlinx-io-core/kotlinx/io/-Util.mjs +48 -0
  910. package/kotlinx-io-kotlinx-io-core/kotlinx/io/-Util.mjs.map +1 -0
  911. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffer.mjs +587 -0
  912. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffer.mjs.map +1 -0
  913. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffers.mjs +156 -0
  914. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffers.mjs.map +1 -0
  915. package/kotlinx-io-kotlinx-io-core/kotlinx/io/ByteStrings.mjs +16 -0
  916. package/kotlinx-io-kotlinx-io-core/kotlinx/io/ByteStrings.mjs.map +1 -0
  917. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Core.mjs +15 -0
  918. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Core.mjs.map +1 -0
  919. package/kotlinx-io-kotlinx-io-core/kotlinx/io/PeekSource.mjs +85 -0
  920. package/kotlinx-io-kotlinx-io-core/kotlinx/io/PeekSource.mjs.map +1 -0
  921. package/kotlinx-io-kotlinx-io-core/kotlinx/io/RealSource.mjs +179 -0
  922. package/kotlinx-io-kotlinx-io-core/kotlinx/io/RealSource.mjs.map +1 -0
  923. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Segment.mjs +524 -0
  924. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Segment.mjs.map +1 -0
  925. package/kotlinx-io-kotlinx-io-core/kotlinx/io/SegmentPool.mjs +46 -0
  926. package/kotlinx-io-kotlinx-io-core/kotlinx/io/SegmentPool.mjs.map +1 -0
  927. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sink.mjs +37 -0
  928. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sink.mjs.map +1 -0
  929. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sinks.mjs +77 -0
  930. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sinks.mjs.map +1 -0
  931. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Source.mjs +23 -0
  932. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Source.mjs.map +1 -0
  933. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sources.mjs +154 -0
  934. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sources.mjs.map +1 -0
  935. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Utf8.mjs +258 -0
  936. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Utf8.mjs.map +1 -0
  937. package/kotlinx-io-kotlinx-io-core/kotlinx/io/UtilsJs.mjs +27 -0
  938. package/kotlinx-io-kotlinx-io-core/kotlinx/io/UtilsJs.mjs.map +1 -0
  939. package/kotlinx-io-kotlinx-io-core/kotlinx/io/internal/-Utf8.mjs +361 -0
  940. package/kotlinx-io-kotlinx-io-core/kotlinx/io/internal/-Utf8.mjs.map +1 -0
  941. package/kotlinx-io-kotlinx-io-core/kotlinx/io/unsafe/UnsafeBufferOperations.mjs +102 -0
  942. package/kotlinx-io-kotlinx-io-core/kotlinx/io/unsafe/UnsafeBufferOperations.mjs.map +1 -0
  943. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/KSerializer.mjs +42 -0
  944. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/KSerializer.mjs.map +1 -0
  945. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/PolymorphicSerializer.mjs +105 -0
  946. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/PolymorphicSerializer.mjs.map +1 -0
  947. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SealedSerializer.mjs +191 -0
  948. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SealedSerializer.mjs.map +1 -0
  949. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerialFormat.mjs +32 -0
  950. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerialFormat.mjs.map +1 -0
  951. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializationExceptions.mjs +89 -0
  952. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializationExceptions.mjs.map +1 -0
  953. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/Serializers.mjs +280 -0
  954. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/Serializers.mjs.map +1 -0
  955. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializersCache.mjs +149 -0
  956. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializersCache.mjs.map +1 -0
  957. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializersJs.mjs +46 -0
  958. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializersJs.mjs.map +1 -0
  959. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/builtins/BuiltinSerializers.mjs +221 -0
  960. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/builtins/BuiltinSerializers.mjs.map +1 -0
  961. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/ContextAware.mjs +117 -0
  962. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/ContextAware.mjs.map +1 -0
  963. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptor.mjs +126 -0
  964. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptor.mjs.map +1 -0
  965. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptors.mjs +300 -0
  966. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptors.mjs.map +1 -0
  967. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialKinds.mjs +438 -0
  968. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialKinds.mjs.map +1 -0
  969. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractDecoder.mjs +136 -0
  970. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractDecoder.mjs.map +1 -0
  971. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractEncoder.mjs +148 -0
  972. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractEncoder.mjs.map +1 -0
  973. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Decoding.mjs +49 -0
  974. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Decoding.mjs.map +1 -0
  975. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Encoding.mjs +47 -0
  976. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Encoding.mjs.map +1 -0
  977. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/AbstractPolymorphicSerializer.mjs +141 -0
  978. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/AbstractPolymorphicSerializer.mjs.map +1 -0
  979. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/BuiltInSerializers.mjs +172 -0
  980. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/BuiltInSerializers.mjs.map +1 -0
  981. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CachedNames.mjs +22 -0
  982. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CachedNames.mjs.map +1 -0
  983. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionDescriptors.mjs +313 -0
  984. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionDescriptors.mjs.map +1 -0
  985. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionSerializers.mjs +711 -0
  986. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionSerializers.mjs.map +1 -0
  987. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ElementMarker.mjs +130 -0
  988. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ElementMarker.mjs.map +1 -0
  989. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Enums.mjs +194 -0
  990. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Enums.mjs.map +1 -0
  991. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/InlineClassDescriptor.mjs +127 -0
  992. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/InlineClassDescriptor.mjs.map +1 -0
  993. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/JsonInternalDependencies.mjs +15 -0
  994. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/JsonInternalDependencies.mjs.map +1 -0
  995. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NoOpEncoder.mjs +78 -0
  996. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NoOpEncoder.mjs.map +1 -0
  997. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NothingSerialDescriptor.mjs +86 -0
  998. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NothingSerialDescriptor.mjs.map +1 -0
  999. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NullableSerializer.mjs +138 -0
  1000. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NullableSerializer.mjs.map +1 -0
  1001. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ObjectSerializer.mjs +90 -0
  1002. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ObjectSerializer.mjs.map +1 -0
  1003. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Platform.common.mjs +127 -0
  1004. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Platform.common.mjs.map +1 -0
  1005. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Platform.mjs +262 -0
  1006. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Platform.mjs.map +1 -0
  1007. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginExceptions.mjs +33 -0
  1008. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginExceptions.mjs.map +1 -0
  1009. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginGeneratedSerialDescriptor.mjs +323 -0
  1010. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginGeneratedSerialDescriptor.mjs.map +1 -0
  1011. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginHelperInterfaces.mjs +53 -0
  1012. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginHelperInterfaces.mjs.map +1 -0
  1013. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PrimitiveArraysSerializers.mjs +1317 -0
  1014. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PrimitiveArraysSerializers.mjs.map +1 -0
  1015. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Primitives.mjs +487 -0
  1016. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Primitives.mjs.map +1 -0
  1017. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tagged.mjs +257 -0
  1018. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tagged.mjs.map +1 -0
  1019. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tuples.mjs +318 -0
  1020. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tuples.mjs.map +1 -0
  1021. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ValueClasses.mjs +211 -0
  1022. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ValueClasses.mjs.map +1 -0
  1023. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModule.mjs +209 -0
  1024. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModule.mjs.map +1 -0
  1025. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModuleBuilders.mjs +15 -0
  1026. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModuleBuilders.mjs.map +1 -0
  1027. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModuleCollector.mjs +29 -0
  1028. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModuleCollector.mjs.map +1 -0
  1029. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/Json.mjs +198 -0
  1030. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/Json.mjs.map +1 -0
  1031. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonAnnotations.mjs +42 -0
  1032. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonAnnotations.mjs.map +1 -0
  1033. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonConfiguration.mjs +96 -0
  1034. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonConfiguration.mjs.map +1 -0
  1035. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonDecoder.mjs +26 -0
  1036. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonDecoder.mjs.map +1 -0
  1037. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElement.mjs +456 -0
  1038. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElement.mjs.map +1 -0
  1039. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElementSerializers.mjs +568 -0
  1040. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElementSerializers.mjs.map +1 -0
  1041. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonEncoder.mjs +26 -0
  1042. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonEncoder.mjs.map +1 -0
  1043. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonSchemaCache.mjs +12 -0
  1044. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonSchemaCache.mjs.map +1 -0
  1045. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/AbstractJsonLexer.mjs +764 -0
  1046. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/AbstractJsonLexer.mjs.map +1 -0
  1047. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/CommentLexers.mjs +107 -0
  1048. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/CommentLexers.mjs.map +1 -0
  1049. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Composers.mjs +221 -0
  1050. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Composers.mjs.map +1 -0
  1051. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonElementMarker.mjs +48 -0
  1052. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonElementMarker.mjs.map +1 -0
  1053. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonExceptions.mjs +126 -0
  1054. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonExceptions.mjs.map +1 -0
  1055. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonNamesMap.mjs +257 -0
  1056. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonNamesMap.mjs.map +1 -0
  1057. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonPath.mjs +169 -0
  1058. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonPath.mjs.map +1 -0
  1059. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonSerializersModuleValidator.mjs +107 -0
  1060. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonSerializersModuleValidator.mjs.map +1 -0
  1061. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonStreams.mjs +24 -0
  1062. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonStreams.mjs.map +1 -0
  1063. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonToStringWriterJsWasm.mjs +47 -0
  1064. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonToStringWriterJsWasm.mjs.map +1 -0
  1065. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonTreeReader.mjs +243 -0
  1066. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonTreeReader.mjs.map +1 -0
  1067. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Polymorphic.mjs +64 -0
  1068. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Polymorphic.mjs.map +1 -0
  1069. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/SchemaCache.mjs +80 -0
  1070. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/SchemaCache.mjs.map +1 -0
  1071. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonDecoder.mjs +704 -0
  1072. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonDecoder.mjs.map +1 -0
  1073. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonEncoder.mjs +381 -0
  1074. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonEncoder.mjs.map +1 -0
  1075. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StringJsonLexer.mjs +170 -0
  1076. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StringJsonLexer.mjs.map +1 -0
  1077. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StringOps.mjs +179 -0
  1078. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StringOps.mjs.map +1 -0
  1079. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/TreeJsonDecoder.mjs +995 -0
  1080. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/TreeJsonDecoder.mjs.map +1 -0
  1081. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/WriteMode.mjs +136 -0
  1082. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/WriteMode.mjs.map +1 -0
  1083. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/createMapForCache.mjs +15 -0
  1084. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/createMapForCache.mjs.map +1 -0
  1085. package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/ContentNegotiation.mjs +582 -0
  1086. package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/ContentNegotiation.mjs.map +1 -0
  1087. package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/DefaultIgnoredTypesJs.mjs +25 -0
  1088. package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/DefaultIgnoredTypesJs.mjs.map +1 -0
  1089. package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/JsonContentTypeMatcher.mjs +39 -0
  1090. package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/JsonContentTypeMatcher.mjs.map +1 -0
  1091. package/ktor-ktor-client-core/io/ktor/client/HttpClient.mjs +294 -0
  1092. package/ktor-ktor-client-core/io/ktor/client/HttpClient.mjs.map +1 -0
  1093. package/ktor-ktor-client-core/io/ktor/client/HttpClientConfig.mjs +149 -0
  1094. package/ktor-ktor-client-core/io/ktor/client/HttpClientConfig.mjs.map +1 -0
  1095. package/ktor-ktor-client-core/io/ktor/client/HttpClientJs.mjs +59 -0
  1096. package/ktor-ktor-client-core/io/ktor/client/HttpClientJs.mjs.map +1 -0
  1097. package/ktor-ktor-client-core/io/ktor/client/JsRequestUtils.mjs +71 -0
  1098. package/ktor-ktor-client-core/io/ktor/client/JsRequestUtils.mjs.map +1 -0
  1099. package/ktor-ktor-client-core/io/ktor/client/call/DelegatedCall.mjs +112 -0
  1100. package/ktor-ktor-client-core/io/ktor/client/call/DelegatedCall.mjs.map +1 -0
  1101. package/ktor-ktor-client-core/io/ktor/client/call/HttpClientCall.mjs +253 -0
  1102. package/ktor-ktor-client-core/io/ktor/client/call/HttpClientCall.mjs.map +1 -0
  1103. package/ktor-ktor-client-core/io/ktor/client/call/SavedCall.mjs +136 -0
  1104. package/ktor-ktor-client-core/io/ktor/client/call/SavedCall.mjs.map +1 -0
  1105. package/ktor-ktor-client-core/io/ktor/client/call/utils.mjs +37 -0
  1106. package/ktor-ktor-client-core/io/ktor/client/call/utils.mjs.map +1 -0
  1107. package/ktor-ktor-client-core/io/ktor/client/content/ObservableContent.mjs +140 -0
  1108. package/ktor-ktor-client-core/io/ktor/client/content/ObservableContent.mjs.map +1 -0
  1109. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngine.mjs +346 -0
  1110. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngine.mjs.map +1 -0
  1111. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineBase.mjs +122 -0
  1112. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineBase.mjs.map +1 -0
  1113. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineCapability.mjs +70 -0
  1114. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineCapability.mjs.map +1 -0
  1115. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineConfig.mjs +29 -0
  1116. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineConfig.mjs.map +1 -0
  1117. package/ktor-ktor-client-core/io/ktor/client/engine/Loader.mjs +84 -0
  1118. package/ktor-ktor-client-core/io/ktor/client/engine/Loader.mjs.map +1 -0
  1119. package/ktor-ktor-client-core/io/ktor/client/engine/Utils.mjs +158 -0
  1120. package/ktor-ktor-client-core/io/ktor/client/engine/Utils.mjs.map +1 -0
  1121. package/ktor-ktor-client-core/io/ktor/client/engine/js/Js.export.d.mts +4 -0
  1122. package/ktor-ktor-client-core/io/ktor/client/engine/js/Js.export.mjs +13 -0
  1123. package/ktor-ktor-client-core/io/ktor/client/engine/js/Js.export.mjs.map +1 -0
  1124. package/ktor-ktor-client-core/io/ktor/client/engine/js/Js.mjs +90 -0
  1125. package/ktor-ktor-client-core/io/ktor/client/engine/js/Js.mjs.map +1 -0
  1126. package/ktor-ktor-client-core/io/ktor/client/engine/js/JsClientEngine.mjs +328 -0
  1127. package/ktor-ktor-client-core/io/ktor/client/engine/js/JsClientEngine.mjs.map +1 -0
  1128. package/ktor-ktor-client-core/io/ktor/client/engine/js/JsUtils.mjs +172 -0
  1129. package/ktor-ktor-client-core/io/ktor/client/engine/js/JsUtils.mjs.map +1 -0
  1130. package/ktor-ktor-client-core/io/ktor/client/engine/js/ReadableStream.mjs +13 -0
  1131. package/ktor-ktor-client-core/io/ktor/client/engine/js/ReadableStream.mjs.map +1 -0
  1132. package/ktor-ktor-client-core/io/ktor/client/engine/js/browser/BrowserFetch.mjs +141 -0
  1133. package/ktor-ktor-client-core/io/ktor/client/engine/js/browser/BrowserFetch.mjs.map +1 -0
  1134. package/ktor-ktor-client-core/io/ktor/client/engine/js/compatibility/Utils.mjs +77 -0
  1135. package/ktor-ktor-client-core/io/ktor/client/engine/js/compatibility/Utils.mjs.map +1 -0
  1136. package/ktor-ktor-client-core/io/ktor/client/network/sockets/TimeoutExceptions.nonJvm.mjs +42 -0
  1137. package/ktor-ktor-client-core/io/ktor/client/network/sockets/TimeoutExceptions.nonJvm.mjs.map +1 -0
  1138. package/ktor-ktor-client-core/io/ktor/client/plugins/BodyProgress.mjs +312 -0
  1139. package/ktor-ktor-client-core/io/ktor/client/plugins/BodyProgress.mjs.map +1 -0
  1140. package/ktor-ktor-client-core/io/ktor/client/plugins/DefaultResponseValidation.mjs +238 -0
  1141. package/ktor-ktor-client-core/io/ktor/client/plugins/DefaultResponseValidation.mjs.map +1 -0
  1142. package/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransform.mjs +403 -0
  1143. package/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransform.mjs.map +1 -0
  1144. package/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransformJs.mjs +15 -0
  1145. package/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransformJs.mjs.map +1 -0
  1146. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpCallValidator.mjs +520 -0
  1147. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpCallValidator.mjs.map +1 -0
  1148. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpClientPlugin.mjs +70 -0
  1149. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpClientPlugin.mjs.map +1 -0
  1150. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpPlainText.mjs +399 -0
  1151. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpPlainText.mjs.map +1 -0
  1152. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpRedirect.mjs +178 -0
  1153. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpRedirect.mjs.map +1 -0
  1154. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestLifecycle.mjs +214 -0
  1155. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestLifecycle.mjs.map +1 -0
  1156. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestRetry.mjs +721 -0
  1157. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestRetry.mjs.map +1 -0
  1158. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpSend.mjs +342 -0
  1159. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpSend.mjs.map +1 -0
  1160. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpTimeout.mjs +411 -0
  1161. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpTimeout.mjs.map +1 -0
  1162. package/ktor-ktor-client-core/io/ktor/client/plugins/SaveBody.mjs +257 -0
  1163. package/ktor-ktor-client-core/io/ktor/client/plugins/SaveBody.mjs.map +1 -0
  1164. package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientHook.mjs +30 -0
  1165. package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientHook.mjs.map +1 -0
  1166. package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientPluginBuilder.mjs +56 -0
  1167. package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientPluginBuilder.mjs.map +1 -0
  1168. package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientPluginInstance.mjs +52 -0
  1169. package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientPluginInstance.mjs.map +1 -0
  1170. package/ktor-ktor-client-core/io/ktor/client/plugins/api/CommonHooks.mjs +161 -0
  1171. package/ktor-ktor-client-core/io/ktor/client/plugins/api/CommonHooks.mjs.map +1 -0
  1172. package/ktor-ktor-client-core/io/ktor/client/plugins/api/CreatePluginUtils.mjs +90 -0
  1173. package/ktor-ktor-client-core/io/ktor/client/plugins/api/CreatePluginUtils.mjs.map +1 -0
  1174. package/ktor-ktor-client-core/io/ktor/client/plugins/api/KtorCallContexts.mjs +262 -0
  1175. package/ktor-ktor-client-core/io/ktor/client/plugins/api/KtorCallContexts.mjs.map +1 -0
  1176. package/ktor-ktor-client-core/io/ktor/client/plugins/sse/ClientSSESession.mjs +41 -0
  1177. package/ktor-ktor-client-core/io/ktor/client/plugins/sse/ClientSSESession.mjs.map +1 -0
  1178. package/ktor-ktor-client-core/io/ktor/client/plugins/sse/SSE.mjs +44 -0
  1179. package/ktor-ktor-client-core/io/ktor/client/plugins/sse/SSE.mjs.map +1 -0
  1180. package/ktor-ktor-client-core/io/ktor/client/plugins/sse/SSEClientContent.mjs +23 -0
  1181. package/ktor-ktor-client-core/io/ktor/client/plugins/sse/SSEClientContent.mjs.map +1 -0
  1182. package/ktor-ktor-client-core/io/ktor/client/plugins/websocket/JsWebSocketSession.mjs +247 -0
  1183. package/ktor-ktor-client-core/io/ktor/client/plugins/websocket/JsWebSocketSession.mjs.map +1 -0
  1184. package/ktor-ktor-client-core/io/ktor/client/plugins/websocket/WebSockets.mjs +68 -0
  1185. package/ktor-ktor-client-core/io/ktor/client/plugins/websocket/WebSockets.mjs.map +1 -0
  1186. package/ktor-ktor-client-core/io/ktor/client/request/ClientUpgradeContent.mjs +23 -0
  1187. package/ktor-ktor-client-core/io/ktor/client/request/ClientUpgradeContent.mjs.map +1 -0
  1188. package/ktor-ktor-client-core/io/ktor/client/request/DefaultHttpRequest.mjs +50 -0
  1189. package/ktor-ktor-client-core/io/ktor/client/request/DefaultHttpRequest.mjs.map +1 -0
  1190. package/ktor-ktor-client-core/io/ktor/client/request/HttpRequest.mjs +260 -0
  1191. package/ktor-ktor-client-core/io/ktor/client/request/HttpRequest.mjs.map +1 -0
  1192. package/ktor-ktor-client-core/io/ktor/client/request/HttpRequestPipeline.mjs +107 -0
  1193. package/ktor-ktor-client-core/io/ktor/client/request/HttpRequestPipeline.mjs.map +1 -0
  1194. package/ktor-ktor-client-core/io/ktor/client/request/RequestBody.mjs +48 -0
  1195. package/ktor-ktor-client-core/io/ktor/client/request/RequestBody.mjs.map +1 -0
  1196. package/ktor-ktor-client-core/io/ktor/client/request/utils.mjs +15 -0
  1197. package/ktor-ktor-client-core/io/ktor/client/request/utils.mjs.map +1 -0
  1198. package/ktor-ktor-client-core/io/ktor/client/statement/DefaultHttpResponse.mjs +67 -0
  1199. package/ktor-ktor-client-core/io/ktor/client/statement/DefaultHttpResponse.mjs.map +1 -0
  1200. package/ktor-ktor-client-core/io/ktor/client/statement/HttpResponse.mjs +112 -0
  1201. package/ktor-ktor-client-core/io/ktor/client/statement/HttpResponse.mjs.map +1 -0
  1202. package/ktor-ktor-client-core/io/ktor/client/statement/HttpResponsePipeline.mjs +151 -0
  1203. package/ktor-ktor-client-core/io/ktor/client/statement/HttpResponsePipeline.mjs.map +1 -0
  1204. package/ktor-ktor-client-core/io/ktor/client/statement/HttpStatement.mjs +155 -0
  1205. package/ktor-ktor-client-core/io/ktor/client/statement/HttpStatement.mjs.map +1 -0
  1206. package/ktor-ktor-client-core/io/ktor/client/utils/ByteChannelUtils.mjs +99 -0
  1207. package/ktor-ktor-client-core/io/ktor/client/utils/ByteChannelUtils.mjs.map +1 -0
  1208. package/ktor-ktor-client-core/io/ktor/client/utils/ClientEvents.mjs +69 -0
  1209. package/ktor-ktor-client-core/io/ktor/client/utils/ClientEvents.mjs.map +1 -0
  1210. package/ktor-ktor-client-core/io/ktor/client/utils/Content.mjs +52 -0
  1211. package/ktor-ktor-client-core/io/ktor/client/utils/Content.mjs.map +1 -0
  1212. package/ktor-ktor-client-core/io/ktor/client/utils/ExceptionUtils.nonJvm.mjs +24 -0
  1213. package/ktor-ktor-client-core/io/ktor/client/utils/ExceptionUtils.nonJvm.mjs.map +1 -0
  1214. package/ktor-ktor-client-core/io/ktor/client/utils/HeadersUtils.mjs +79 -0
  1215. package/ktor-ktor-client-core/io/ktor/client/utils/HeadersUtils.mjs.map +1 -0
  1216. package/ktor-ktor-client-core/io/ktor/client/utils/headers.mjs +30 -0
  1217. package/ktor-ktor-client-core/io/ktor/client/utils/headers.mjs.map +1 -0
  1218. package/ktor-ktor-client-core.mjs +12 -0
  1219. package/ktor-ktor-client-core.mjs.map +1 -0
  1220. package/ktor-ktor-events/io/ktor/events/Events.mjs +97 -0
  1221. package/ktor-ktor-events/io/ktor/events/Events.mjs.map +1 -0
  1222. package/ktor-ktor-http/io/ktor/http/Codecs.mjs +382 -0
  1223. package/ktor-ktor-http/io/ktor/http/Codecs.mjs.map +1 -0
  1224. package/ktor-ktor-http/io/ktor/http/ContentTypes.mjs +457 -0
  1225. package/ktor-ktor-http/io/ktor/http/ContentTypes.mjs.map +1 -0
  1226. package/ktor-ktor-http/io/ktor/http/HeaderValueWithParameters.mjs +219 -0
  1227. package/ktor-ktor-http/io/ktor/http/HeaderValueWithParameters.mjs.map +1 -0
  1228. package/ktor-ktor-http/io/ktor/http/Headers.mjs +153 -0
  1229. package/ktor-ktor-http/io/ktor/http/Headers.mjs.map +1 -0
  1230. package/ktor-ktor-http/io/ktor/http/HttpHeaderValueParser.mjs +372 -0
  1231. package/ktor-ktor-http/io/ktor/http/HttpHeaderValueParser.mjs.map +1 -0
  1232. package/ktor-ktor-http/io/ktor/http/HttpHeaders.mjs +245 -0
  1233. package/ktor-ktor-http/io/ktor/http/HttpHeaders.mjs.map +1 -0
  1234. package/ktor-ktor-http/io/ktor/http/HttpMessageProperties.mjs +54 -0
  1235. package/ktor-ktor-http/io/ktor/http/HttpMessageProperties.mjs.map +1 -0
  1236. package/ktor-ktor-http/io/ktor/http/HttpMethod.mjs +92 -0
  1237. package/ktor-ktor-http/io/ktor/http/HttpMethod.mjs.map +1 -0
  1238. package/ktor-ktor-http/io/ktor/http/HttpProtocolVersion.mjs +81 -0
  1239. package/ktor-ktor-http/io/ktor/http/HttpProtocolVersion.mjs.map +1 -0
  1240. package/ktor-ktor-http/io/ktor/http/HttpStatusCode.mjs +150 -0
  1241. package/ktor-ktor-http/io/ktor/http/HttpStatusCode.mjs.map +1 -0
  1242. package/ktor-ktor-http/io/ktor/http/Parameters.mjs +146 -0
  1243. package/ktor-ktor-http/io/ktor/http/Parameters.mjs.map +1 -0
  1244. package/ktor-ktor-http/io/ktor/http/Query.mjs +109 -0
  1245. package/ktor-ktor-http/io/ktor/http/Query.mjs.map +1 -0
  1246. package/ktor-ktor-http/io/ktor/http/URLBuilder.mjs +284 -0
  1247. package/ktor-ktor-http/io/ktor/http/URLBuilder.mjs.map +1 -0
  1248. package/ktor-ktor-http/io/ktor/http/URLBuilderJs.mjs +30 -0
  1249. package/ktor-ktor-http/io/ktor/http/URLBuilderJs.mjs.map +1 -0
  1250. package/ktor-ktor-http/io/ktor/http/URLParser.mjs +400 -0
  1251. package/ktor-ktor-http/io/ktor/http/URLParser.mjs.map +1 -0
  1252. package/ktor-ktor-http/io/ktor/http/URLProtocol.mjs +139 -0
  1253. package/ktor-ktor-http/io/ktor/http/URLProtocol.mjs.map +1 -0
  1254. package/ktor-ktor-http/io/ktor/http/URLUtils.mjs +128 -0
  1255. package/ktor-ktor-http/io/ktor/http/URLUtils.mjs.map +1 -0
  1256. package/ktor-ktor-http/io/ktor/http/Url.mjs +344 -0
  1257. package/ktor-ktor-http/io/ktor/http/Url.mjs.map +1 -0
  1258. package/ktor-ktor-http/io/ktor/http/UrlDecodedParametersBuilder.mjs +154 -0
  1259. package/ktor-ktor-http/io/ktor/http/UrlDecodedParametersBuilder.mjs.map +1 -0
  1260. package/ktor-ktor-http/io/ktor/http/content/ByteArrayContent.mjs +42 -0
  1261. package/ktor-ktor-http/io/ktor/http/content/ByteArrayContent.mjs.map +1 -0
  1262. package/ktor-ktor-http/io/ktor/http/content/Multipart.mjs +22 -0
  1263. package/ktor-ktor-http/io/ktor/http/content/Multipart.mjs.map +1 -0
  1264. package/ktor-ktor-http/io/ktor/http/content/OutgoingContent.mjs +137 -0
  1265. package/ktor-ktor-http/io/ktor/http/content/OutgoingContent.mjs.map +1 -0
  1266. package/ktor-ktor-http/io/ktor/http/content/TextContent.mjs +51 -0
  1267. package/ktor-ktor-http/io/ktor/http/content/TextContent.mjs.map +1 -0
  1268. package/ktor-ktor-http-cio/io/ktor/http/cio/CIOMultipartDataBase.mjs +35 -0
  1269. package/ktor-ktor-http-cio/io/ktor/http/cio/CIOMultipartDataBase.mjs.map +1 -0
  1270. package/ktor-ktor-http-cio/io/ktor/http/cio/HttpHeadersMap.mjs +327 -0
  1271. package/ktor-ktor-http-cio/io/ktor/http/cio/HttpHeadersMap.mjs.map +1 -0
  1272. package/ktor-ktor-http-cio/io/ktor/http/cio/HttpParser.mjs +224 -0
  1273. package/ktor-ktor-http-cio/io/ktor/http/cio/HttpParser.mjs.map +1 -0
  1274. package/ktor-ktor-http-cio/io/ktor/http/cio/Multipart.mjs +547 -0
  1275. package/ktor-ktor-http-cio/io/ktor/http/cio/Multipart.mjs.map +1 -0
  1276. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/AsciiCharTree.mjs +257 -0
  1277. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/AsciiCharTree.mjs.map +1 -0
  1278. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayBuilder.mjs +366 -0
  1279. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayBuilder.mjs.map +1 -0
  1280. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayPool.mjs +64 -0
  1281. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayPool.mjs.map +1 -0
  1282. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayPoolJs.mjs +12 -0
  1283. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayPoolJs.mjs.map +1 -0
  1284. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/Chars.mjs +332 -0
  1285. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/Chars.mjs.map +1 -0
  1286. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/Errors.mjs +30 -0
  1287. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/Errors.mjs.map +1 -0
  1288. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/MutableRange.mjs +30 -0
  1289. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/MutableRange.mjs.map +1 -0
  1290. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/Tokenizer.mjs +24 -0
  1291. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/Tokenizer.mjs.map +1 -0
  1292. package/ktor-ktor-io/io/ktor/utils/io/ByteChannel.jsAndWasmShared.mjs +12 -0
  1293. package/ktor-ktor-io/io/ktor/utils/io/ByteChannel.jsAndWasmShared.mjs.map +1 -0
  1294. package/ktor-ktor-io/io/ktor/utils/io/ByteChannel.mjs +539 -0
  1295. package/ktor-ktor-io/io/ktor/utils/io/ByteChannel.mjs.map +1 -0
  1296. package/ktor-ktor-io/io/ktor/utils/io/ByteChannelCtor.mjs +27 -0
  1297. package/ktor-ktor-io/io/ktor/utils/io/ByteChannelCtor.mjs.map +1 -0
  1298. package/ktor-ktor-io/io/ktor/utils/io/ByteChannelScanner.mjs +208 -0
  1299. package/ktor-ktor-io/io/ktor/utils/io/ByteChannelScanner.mjs.map +1 -0
  1300. package/ktor-ktor-io/io/ktor/utils/io/ByteReadChannel.mjs +89 -0
  1301. package/ktor-ktor-io/io/ktor/utils/io/ByteReadChannel.mjs.map +1 -0
  1302. package/ktor-ktor-io/io/ktor/utils/io/ByteReadChannelOperations.mjs +358 -0
  1303. package/ktor-ktor-io/io/ktor/utils/io/ByteReadChannelOperations.mjs.map +1 -0
  1304. package/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannel.mjs +43 -0
  1305. package/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannel.mjs.map +1 -0
  1306. package/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannelOperations.mjs +271 -0
  1307. package/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannelOperations.mjs.map +1 -0
  1308. package/ktor-ktor-io/io/ktor/utils/io/CloseToken.mjs +87 -0
  1309. package/ktor-ktor-io/io/ktor/utils/io/CloseToken.mjs.map +1 -0
  1310. package/ktor-ktor-io/io/ktor/utils/io/CountedByteReadChannel.mjs +89 -0
  1311. package/ktor-ktor-io/io/ktor/utils/io/CountedByteReadChannel.mjs.map +1 -0
  1312. package/ktor-ktor-io/io/ktor/utils/io/Deprecation.mjs +15 -0
  1313. package/ktor-ktor-io/io/ktor/utils/io/Deprecation.mjs.map +1 -0
  1314. package/ktor-ktor-io/io/ktor/utils/io/Exceptions.mjs +65 -0
  1315. package/ktor-ktor-io/io/ktor/utils/io/Exceptions.mjs.map +1 -0
  1316. package/ktor-ktor-io/io/ktor/utils/io/IODispatcher.jsAndWasmShared.mjs +15 -0
  1317. package/ktor-ktor-io/io/ktor/utils/io/IODispatcher.jsAndWasmShared.mjs.map +1 -0
  1318. package/ktor-ktor-io/io/ktor/utils/io/LineEndingMode.mjs +117 -0
  1319. package/ktor-ktor-io/io/ktor/utils/io/LineEndingMode.mjs.map +1 -0
  1320. package/ktor-ktor-io/io/ktor/utils/io/SourceByteReadChannel.mjs +72 -0
  1321. package/ktor-ktor-io/io/ktor/utils/io/SourceByteReadChannel.mjs.map +1 -0
  1322. package/ktor-ktor-io/io/ktor/utils/io/charsets/Charset.js.mjs +407 -0
  1323. package/ktor-ktor-io/io/ktor/utils/io/charsets/Charset.js.mjs.map +1 -0
  1324. package/ktor-ktor-io/io/ktor/utils/io/charsets/Decoder.js.mjs +34 -0
  1325. package/ktor-ktor-io/io/ktor/utils/io/charsets/Decoder.js.mjs.map +1 -0
  1326. package/ktor-ktor-io/io/ktor/utils/io/charsets/Encoding.mjs +82 -0
  1327. package/ktor-ktor-io/io/ktor/utils/io/charsets/Encoding.mjs.map +1 -0
  1328. package/ktor-ktor-io/io/ktor/utils/io/charsets/ISO88591.mjs +38 -0
  1329. package/ktor-ktor-io/io/ktor/utils/io/charsets/ISO88591.mjs.map +1 -0
  1330. package/ktor-ktor-io/io/ktor/utils/io/charsets/TextDecoder.js.mjs +43 -0
  1331. package/ktor-ktor-io/io/ktor/utils/io/charsets/TextDecoder.js.mjs.map +1 -0
  1332. package/ktor-ktor-io/io/ktor/utils/io/charsets/TextDecoderFallback.js.mjs +110 -0
  1333. package/ktor-ktor-io/io/ktor/utils/io/charsets/TextDecoderFallback.js.mjs.map +1 -0
  1334. package/ktor-ktor-io/io/ktor/utils/io/charsets/Win1252Table.mjs +22 -0
  1335. package/ktor-ktor-io/io/ktor/utils/io/charsets/Win1252Table.mjs.map +1 -0
  1336. package/ktor-ktor-io/io/ktor/utils/io/core/Buffer.mjs +12 -0
  1337. package/ktor-ktor-io/io/ktor/utils/io/core/Buffer.mjs.map +1 -0
  1338. package/ktor-ktor-io/io/ktor/utils/io/core/Buffers.mjs +18 -0
  1339. package/ktor-ktor-io/io/ktor/utils/io/core/Buffers.mjs.map +1 -0
  1340. package/ktor-ktor-io/io/ktor/utils/io/core/BytePacketBuilder.mjs +27 -0
  1341. package/ktor-ktor-io/io/ktor/utils/io/core/BytePacketBuilder.mjs.map +1 -0
  1342. package/ktor-ktor-io/io/ktor/utils/io/core/ByteReadPacket.mjs +43 -0
  1343. package/ktor-ktor-io/io/ktor/utils/io/core/ByteReadPacket.mjs.map +1 -0
  1344. package/ktor-ktor-io/io/ktor/utils/io/core/Input.mjs +18 -0
  1345. package/ktor-ktor-io/io/ktor/utils/io/core/Input.mjs.map +1 -0
  1346. package/ktor-ktor-io/io/ktor/utils/io/core/Strings.mjs +60 -0
  1347. package/ktor-ktor-io/io/ktor/utils/io/core/Strings.mjs.map +1 -0
  1348. package/ktor-ktor-io/io/ktor/utils/io/pool/ByteArrayPool.mjs +42 -0
  1349. package/ktor-ktor-io/io/ktor/utils/io/pool/ByteArrayPool.mjs.map +1 -0
  1350. package/ktor-ktor-io/io/ktor/utils/io/pool/DefaultPool.mjs +81 -0
  1351. package/ktor-ktor-io/io/ktor/utils/io/pool/DefaultPool.mjs.map +1 -0
  1352. package/ktor-ktor-io/io/ktor/utils/io/pool/Pool.mjs +50 -0
  1353. package/ktor-ktor-io/io/ktor/utils/io/pool/Pool.mjs.map +1 -0
  1354. package/ktor-ktor-serialization/io/ktor/serialization/ContentConvertException.mjs +48 -0
  1355. package/ktor-ktor-serialization/io/ktor/serialization/ContentConvertException.mjs.map +1 -0
  1356. package/ktor-ktor-serialization/io/ktor/serialization/ContentConverter.mjs +248 -0
  1357. package/ktor-ktor-serialization/io/ktor/serialization/ContentConverter.mjs.map +1 -0
  1358. package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/Extensions.mjs +33 -0
  1359. package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/Extensions.mjs.map +1 -0
  1360. package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/ExtensionsJs.mjs +15 -0
  1361. package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/ExtensionsJs.mjs.map +1 -0
  1362. package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/KotlinxSerializationConverter.mjs +442 -0
  1363. package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/KotlinxSerializationConverter.mjs.map +1 -0
  1364. package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/SerializerLookup.mjs +195 -0
  1365. package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/SerializerLookup.mjs.map +1 -0
  1366. package/ktor-ktor-serialization-kotlinx-json/io/ktor/serialization/kotlinx/json/JsonSupport.mjs +44 -0
  1367. package/ktor-ktor-serialization-kotlinx-json/io/ktor/serialization/kotlinx/json/JsonSupport.mjs.map +1 -0
  1368. package/ktor-ktor-server-core/io/ktor/server/engine/ShutdownHook.jsAndWasmShared.mjs +8 -0
  1369. package/ktor-ktor-server-core/io/ktor/server/engine/ShutdownHook.jsAndWasmShared.mjs.map +1 -0
  1370. package/ktor-ktor-utils/io/ktor/util/Attributes.mjs +126 -0
  1371. package/ktor-ktor-utils/io/ktor/util/Attributes.mjs.map +1 -0
  1372. package/ktor-ktor-utils/io/ktor/util/AttributesJs.mjs +73 -0
  1373. package/ktor-ktor-utils/io/ktor/util/AttributesJs.mjs.map +1 -0
  1374. package/ktor-ktor-utils/io/ktor/util/CaseInsensitiveMap.mjs +192 -0
  1375. package/ktor-ktor-utils/io/ktor/util/CaseInsensitiveMap.mjs.map +1 -0
  1376. package/ktor-ktor-utils/io/ktor/util/Charset.mjs +34 -0
  1377. package/ktor-ktor-utils/io/ktor/util/Charset.mjs.map +1 -0
  1378. package/ktor-ktor-utils/io/ktor/util/Collections.mjs +15 -0
  1379. package/ktor-ktor-utils/io/ktor/util/Collections.mjs.map +1 -0
  1380. package/ktor-ktor-utils/io/ktor/util/CollectionsJs.mjs +12 -0
  1381. package/ktor-ktor-utils/io/ktor/util/CollectionsJs.mjs.map +1 -0
  1382. package/ktor-ktor-utils/io/ktor/util/CoroutinesUtils.mjs +41 -0
  1383. package/ktor-ktor-utils/io/ktor/util/CoroutinesUtils.mjs.map +1 -0
  1384. package/ktor-ktor-utils/io/ktor/util/DelegatingMutableSet.mjs +159 -0
  1385. package/ktor-ktor-utils/io/ktor/util/DelegatingMutableSet.mjs.map +1 -0
  1386. package/ktor-ktor-utils/io/ktor/util/PlatformUtils.js.mjs +43 -0
  1387. package/ktor-ktor-utils/io/ktor/util/PlatformUtils.js.mjs.map +1 -0
  1388. package/ktor-ktor-utils/io/ktor/util/PlatformUtils.mjs +221 -0
  1389. package/ktor-ktor-utils/io/ktor/util/PlatformUtils.mjs.map +1 -0
  1390. package/ktor-ktor-utils/io/ktor/util/PlatformUtilsJs.mjs +16 -0
  1391. package/ktor-ktor-utils/io/ktor/util/PlatformUtilsJs.mjs.map +1 -0
  1392. package/ktor-ktor-utils/io/ktor/util/StringValues.mjs +370 -0
  1393. package/ktor-ktor-utils/io/ktor/util/StringValues.mjs.map +1 -0
  1394. package/ktor-ktor-utils/io/ktor/util/Text.mjs +132 -0
  1395. package/ktor-ktor-utils/io/ktor/util/Text.mjs.map +1 -0
  1396. package/ktor-ktor-utils/io/ktor/util/collections/CopyOnWriteHashMap.mjs +31 -0
  1397. package/ktor-ktor-utils/io/ktor/util/collections/CopyOnWriteHashMap.mjs.map +1 -0
  1398. package/ktor-ktor-utils/io/ktor/util/date/Date.mjs +519 -0
  1399. package/ktor-ktor-utils/io/ktor/util/date/Date.mjs.map +1 -0
  1400. package/ktor-ktor-utils/io/ktor/util/date/DateJs.mjs +60 -0
  1401. package/ktor-ktor-utils/io/ktor/util/date/DateJs.mjs.map +1 -0
  1402. package/ktor-ktor-utils/io/ktor/util/internal/LockFreeLinkedList.mjs +100 -0
  1403. package/ktor-ktor-utils/io/ktor/util/internal/LockFreeLinkedList.mjs.map +1 -0
  1404. package/ktor-ktor-utils/io/ktor/util/logging/KtorSimpleLoggerJs.mjs +137 -0
  1405. package/ktor-ktor-utils/io/ktor/util/logging/KtorSimpleLoggerJs.mjs.map +1 -0
  1406. package/ktor-ktor-utils/io/ktor/util/logging/LoggerJs.mjs +84 -0
  1407. package/ktor-ktor-utils/io/ktor/util/logging/LoggerJs.mjs.map +1 -0
  1408. package/ktor-ktor-utils/io/ktor/util/pipeline/DebugPipelineContext.mjs +84 -0
  1409. package/ktor-ktor-utils/io/ktor/util/pipeline/DebugPipelineContext.mjs.map +1 -0
  1410. package/ktor-ktor-utils/io/ktor/util/pipeline/PhaseContent.mjs +120 -0
  1411. package/ktor-ktor-utils/io/ktor/util/pipeline/PhaseContent.mjs.map +1 -0
  1412. package/ktor-ktor-utils/io/ktor/util/pipeline/Pipeline.mjs +362 -0
  1413. package/ktor-ktor-utils/io/ktor/util/pipeline/Pipeline.mjs.map +1 -0
  1414. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelineContext.js.mjs +16 -0
  1415. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelineContext.js.mjs.map +1 -0
  1416. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelineContext.mjs +41 -0
  1417. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelineContext.mjs.map +1 -0
  1418. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelineJs.mjs +15 -0
  1419. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelineJs.mjs.map +1 -0
  1420. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelinePhase.mjs +50 -0
  1421. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelinePhase.mjs.map +1 -0
  1422. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelinePhaseRelation.mjs +89 -0
  1423. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelinePhaseRelation.mjs.map +1 -0
  1424. package/ktor-ktor-utils/io/ktor/util/pipeline/StackTraceRecover.mjs +29 -0
  1425. package/ktor-ktor-utils/io/ktor/util/pipeline/StackTraceRecover.mjs.map +1 -0
  1426. package/ktor-ktor-utils/io/ktor/util/pipeline/StackTraceRecoverJs.mjs +12 -0
  1427. package/ktor-ktor-utils/io/ktor/util/pipeline/StackTraceRecoverJs.mjs.map +1 -0
  1428. package/ktor-ktor-utils/io/ktor/util/pipeline/SuspendFunctionGun.mjs +196 -0
  1429. package/ktor-ktor-utils/io/ktor/util/pipeline/SuspendFunctionGun.mjs.map +1 -0
  1430. package/ktor-ktor-utils/io/ktor/util/reflect/Type.mjs +55 -0
  1431. package/ktor-ktor-utils/io/ktor/util/reflect/Type.mjs.map +1 -0
  1432. package/ktor-ktor-utils/io/ktor/util/reflect/TypeInfoJs.mjs +12 -0
  1433. package/ktor-ktor-utils/io/ktor/util/reflect/TypeInfoJs.mjs.map +1 -0
  1434. package/ktor-ktor-websockets/io/ktor/websocket/CloseReason.mjs +207 -0
  1435. package/ktor-ktor-websockets/io/ktor/websocket/CloseReason.mjs.map +1 -0
  1436. package/ktor-ktor-websockets/io/ktor/websocket/FrameCommon.mjs +47 -0
  1437. package/ktor-ktor-websockets/io/ktor/websocket/FrameCommon.mjs.map +1 -0
  1438. package/ktor-ktor-websockets/io/ktor/websocket/FrameJs.mjs +148 -0
  1439. package/ktor-ktor-websockets/io/ktor/websocket/FrameJs.mjs.map +1 -0
  1440. package/ktor-ktor-websockets/io/ktor/websocket/FrameType.mjs +167 -0
  1441. package/ktor-ktor-websockets/io/ktor/websocket/FrameType.mjs.map +1 -0
  1442. package/package.json +23 -0
@@ -0,0 +1,1761 @@
1
+ import {
2
+ LockFreeLinkedListNode18403qmazubk5 as LockFreeLinkedListNode,
3
+ LockFreeLinkedListHeaduwhs9comnpmn as LockFreeLinkedListHead,
4
+ } from './internal/LinkedList.mjs';
5
+ import {
6
+ throwUninitializedPropertyAccessExceptionyynx7gkm73wd as throwUninitializedPropertyAccessException,
7
+ THROW_CCE2g6jy02ryeudk as THROW_CCE,
8
+ } from '../../../kotlin-kotlin-stdlib/kotlin/hacks.mjs';
9
+ import {
10
+ get_classSimpleName2jgk6lzg9ft1 as get_classSimpleName,
11
+ get_hexAddress1mxa7txdmiojm as get_hexAddress,
12
+ get_DEBUG1a8uv2i5oid01 as get_DEBUG,
13
+ } from './Debug.mjs';
14
+ import {
15
+ initMetadataForClassbxx6q50dy2s7 as initMetadataForClass,
16
+ initMetadataForInterface1egvbzx539z91 as initMetadataForInterface,
17
+ } from '../../../kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs';
18
+ import { VOID3gxj6tk5isa35 as VOID } from '../../../kotlin-kotlin-stdlib/kotlin/js/void.mjs';
19
+ import { ArrayList3it5z8td81qkl as ArrayList } from '../../../kotlin-kotlin-stdlib/kotlin/collections/ArrayListJs.mjs';
20
+ import { Unit_instance1fbcbse1fwigr as Unit_instance } from '../../../kotlin-kotlin-stdlib/kotlin/Unit.mjs';
21
+ import { CompletedExceptionally3itrk74dxkv9s as CompletedExceptionally } from './CompletionState.mjs';
22
+ import { JobCancellationException2g3wpni5v5fkt as JobCancellationException } from './Exceptions.mjs';
23
+ import { CancellationException3b36o9qz53rgr as CancellationException } from '../../../kotlin-kotlin-stdlib/kotlin/coroutines/cancellation/CancellationException.mjs';
24
+ import { TimeoutCancellationException198b5zwr3v3uw as TimeoutCancellationException } from './Timeout.mjs';
25
+ import { identitySet1lu9dl60optk8 as identitySet } from './internal/Concurrent.mjs';
26
+ import { unwrap34f7x4f5snsxt as unwrap } from './internal/StackTraceRecovery.mjs';
27
+ import { addSuppressedu5jwjfvsc039 as addSuppressed } from '../../../kotlin-kotlin-stdlib/kotlin/throwableExtensions.mjs';
28
+ import {
29
+ NonDisposableHandle_instance3k5b81ogrgecy as NonDisposableHandle_instance,
30
+ invokeOnCompletion3npqdfp2wzhn6 as invokeOnCompletion,
31
+ ParentJob1a3idoswyjefg as ParentJob,
32
+ Key_instance2tirv2rj82ml4 as Key_instance,
33
+ invokeOnCompletion$default6tc1ee8hzqwd as invokeOnCompletion$default,
34
+ ensureActive2yo7199srjlgl as ensureActive,
35
+ cancel$default2gzemzkga6aea as cancel$default,
36
+ Job29shfjfygy86k as Job,
37
+ } from './Job.mjs';
38
+ import { CompletionHandlerException1h8udyjlr1wky as CompletionHandlerException } from './Exceptions.common.mjs';
39
+ import {
40
+ equals2au1ep9vhcato as equals,
41
+ toString1pkumu07cwy4m as toString,
42
+ protoOf180f3jzyo7rfj as protoOf,
43
+ anyToString3ho3k49fc56mj as anyToString,
44
+ } from '../../../kotlin-kotlin-stdlib/kotlin/js/coreRuntime.mjs';
45
+ import { isInterface3d6p8outrmvmk as isInterface } from '../../../kotlin-kotlin-stdlib/kotlin/js/typeCheckUtils.mjs';
46
+ import { intercepted2ogpsikxxj4u0 as intercepted } from '../../../kotlin-kotlin-stdlib/kotlin/coroutines/intrinsics/IntrinsicsJs.mjs';
47
+ import { CancellableContinuationImpl1cx201opicavg as CancellableContinuationImpl } from './CancellableContinuationImpl.mjs';
48
+ import { disposeOnCancellation302lv5bib5mna as disposeOnCancellation } from './CancellableContinuation.mjs';
49
+ import { IllegalStateExceptionkoljg5n0nrlr as IllegalStateException } from '../../../kotlin-kotlin-stdlib/kotlin/exceptions.mjs';
50
+ import { SynchronizedObject32xqzf15iiskd as SynchronizedObject } from './internal/Synchronized.mjs';
51
+ import {
52
+ atomic$boolean$1iggki4z65a2h as atomic$boolean$1,
53
+ atomic$ref$130aurmcwdfdf1 as atomic$ref$1,
54
+ } from '../../../kotlinx-atomicfu/kotlinx/atomicfu/AtomicFU.mjs';
55
+ import { toString30pk9tzaqopn as toString_0 } from '../../../kotlin-kotlin-stdlib/kotlin/Library.mjs';
56
+ import {
57
+ plusolev77jfy5r9 as plus,
58
+ get6d5x931vk0s as get,
59
+ fold36i9psb7d5v48 as fold,
60
+ minusKeyyqanvso9aovh as minusKey,
61
+ } from '../../../kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineContext.mjs';
62
+ import { CompletableJob1w6swnu15iclo as CompletableJob } from './CompletableJob.mjs';
63
+ import { StringBuildermazzzhj6kkai as StringBuilder } from '../../../kotlin-kotlin-stdlib/kotlin/text/StringBuilderJs.mjs';
64
+ import {
65
+ Companion_instance2oawqq9qiaris as Companion_instance,
66
+ _Result___init__impl__xyqfz83hut4nr3dfvi3 as _Result___init__impl__xyqfz8,
67
+ createFailure8paxfkfa5dc7 as createFailure,
68
+ } from '../../../kotlin-kotlin-stdlib/kotlin/Result.mjs';
69
+ import { Symbol17xuwzgi5g8ve as Symbol } from './internal/Symbol.mjs';
70
+ //region block: imports
71
+ //endregion
72
+ //region block: pre-declaration
73
+ //endregion
74
+ function get_COMPLETING_ALREADY() {
75
+ _init_properties_JobSupport_kt__68f172();
76
+ return COMPLETING_ALREADY;
77
+ }
78
+ var COMPLETING_ALREADY;
79
+ function get_COMPLETING_WAITING_CHILDREN() {
80
+ _init_properties_JobSupport_kt__68f172();
81
+ return COMPLETING_WAITING_CHILDREN;
82
+ }
83
+ var COMPLETING_WAITING_CHILDREN;
84
+ function get_COMPLETING_RETRY() {
85
+ _init_properties_JobSupport_kt__68f172();
86
+ return COMPLETING_RETRY;
87
+ }
88
+ var COMPLETING_RETRY;
89
+ function get_TOO_LATE_TO_CANCEL() {
90
+ _init_properties_JobSupport_kt__68f172();
91
+ return TOO_LATE_TO_CANCEL;
92
+ }
93
+ var TOO_LATE_TO_CANCEL;
94
+ function get_SEALED() {
95
+ _init_properties_JobSupport_kt__68f172();
96
+ return SEALED;
97
+ }
98
+ var SEALED;
99
+ function get_EMPTY_NEW() {
100
+ _init_properties_JobSupport_kt__68f172();
101
+ return EMPTY_NEW;
102
+ }
103
+ var EMPTY_NEW;
104
+ function get_EMPTY_ACTIVE() {
105
+ _init_properties_JobSupport_kt__68f172();
106
+ return EMPTY_ACTIVE;
107
+ }
108
+ var EMPTY_ACTIVE;
109
+ var JobNodeClass;
110
+ function JobNode() {
111
+ if (JobNodeClass === VOID) {
112
+ class $ extends LockFreeLinkedListNode() {
113
+ yy() {
114
+ var tmp = this.xy_1;
115
+ if (!(tmp == null))
116
+ return tmp;
117
+ else {
118
+ throwUninitializedPropertyAccessException('job');
119
+ }
120
+ }
121
+ ct() {
122
+ return true;
123
+ }
124
+ zy() {
125
+ return null;
126
+ }
127
+ iw() {
128
+ return this.yy().ju(this);
129
+ }
130
+ toString() {
131
+ return get_classSimpleName(this) + '@' + get_hexAddress(this) + '[job@' + get_hexAddress(this.yy()) + ']';
132
+ }
133
+ }
134
+ initMetadataForClass($, 'JobNode', VOID, VOID, [LockFreeLinkedListNode(), Incomplete()]);
135
+ JobNodeClass = $;
136
+ }
137
+ return JobNodeClass;
138
+ }
139
+ function unboxState(_this__u8e3s4) {
140
+ _init_properties_JobSupport_kt__68f172();
141
+ var tmp0_safe_receiver = _this__u8e3s4 instanceof IncompleteStateBox() ? _this__u8e3s4 : null;
142
+ var tmp1_elvis_lhs = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.s10_1;
143
+ return tmp1_elvis_lhs == null ? _this__u8e3s4 : tmp1_elvis_lhs;
144
+ }
145
+ function _set_exceptionsHolder__tqm22h($this, value) {
146
+ $this.w10_1.kotlinx$atomicfu$value = value;
147
+ }
148
+ function _get_exceptionsHolder__nhszp($this) {
149
+ return $this.w10_1.kotlinx$atomicfu$value;
150
+ }
151
+ function allocateList($this) {
152
+ return ArrayList().u(4);
153
+ }
154
+ function finalizeFinishingState($this, state, proposedUpdate) {
155
+ // Inline function 'kotlinx.coroutines.assert' call
156
+ // Inline function 'kotlinx.coroutines.assert' call
157
+ // Inline function 'kotlinx.coroutines.assert' call
158
+ var tmp0_safe_receiver = proposedUpdate instanceof CompletedExceptionally() ? proposedUpdate : null;
159
+ var proposedException = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.ht_1;
160
+ var wasCancelling;
161
+ // Inline function 'kotlinx.coroutines.internal.synchronized' call
162
+ // Inline function 'kotlinx.coroutines.internal.synchronizedImpl' call
163
+ wasCancelling = state.x10();
164
+ var exceptions = state.y10(proposedException);
165
+ var finalCause = getFinalRootCause($this, state, exceptions);
166
+ if (!(finalCause == null)) {
167
+ addSuppressedExceptions($this, finalCause, exceptions);
168
+ }
169
+ var finalException = finalCause;
170
+ var finalState = finalException == null ? proposedUpdate : finalException === proposedException ? proposedUpdate : new (CompletedExceptionally())(finalException);
171
+ if (!(finalException == null)) {
172
+ var handled = cancelParent($this, finalException) || $this.yu(finalException);
173
+ if (handled) {
174
+ (finalState instanceof CompletedExceptionally() ? finalState : THROW_CCE()).mx();
175
+ }
176
+ }
177
+ if (!wasCancelling) {
178
+ $this.vu(finalException);
179
+ }
180
+ $this.gt(finalState);
181
+ var casSuccess = $this.vs_1.atomicfu$compareAndSet(state, boxIncomplete(finalState));
182
+ // Inline function 'kotlinx.coroutines.assert' call
183
+ completeStateFinalization($this, state, finalState);
184
+ return finalState;
185
+ }
186
+ function getFinalRootCause($this, state, exceptions) {
187
+ if (exceptions.o()) {
188
+ if (state.x10()) {
189
+ // Inline function 'kotlinx.coroutines.JobSupport.defaultCancellationException' call
190
+ return JobCancellationException().f11(null == null ? $this.ft() : null, null, $this);
191
+ }
192
+ return null;
193
+ }
194
+ var tmp$ret$2;
195
+ $l$block: {
196
+ // Inline function 'kotlin.collections.firstOrNull' call
197
+ var _iterator__ex2g4s = exceptions.k1();
198
+ while (_iterator__ex2g4s.l1()) {
199
+ var element = _iterator__ex2g4s.m1();
200
+ if (!(element instanceof CancellationException())) {
201
+ tmp$ret$2 = element;
202
+ break $l$block;
203
+ }
204
+ }
205
+ tmp$ret$2 = null;
206
+ }
207
+ var firstNonCancellation = tmp$ret$2;
208
+ if (!(firstNonCancellation == null))
209
+ return firstNonCancellation;
210
+ var first = exceptions.o1(0);
211
+ if (first instanceof TimeoutCancellationException()) {
212
+ var tmp$ret$4;
213
+ $l$block_0: {
214
+ // Inline function 'kotlin.collections.firstOrNull' call
215
+ var _iterator__ex2g4s_0 = exceptions.k1();
216
+ while (_iterator__ex2g4s_0.l1()) {
217
+ var element_0 = _iterator__ex2g4s_0.m1();
218
+ var tmp;
219
+ if (!(element_0 === first)) {
220
+ tmp = element_0 instanceof TimeoutCancellationException();
221
+ } else {
222
+ tmp = false;
223
+ }
224
+ if (tmp) {
225
+ tmp$ret$4 = element_0;
226
+ break $l$block_0;
227
+ }
228
+ }
229
+ tmp$ret$4 = null;
230
+ }
231
+ var detailedTimeoutException = tmp$ret$4;
232
+ if (!(detailedTimeoutException == null))
233
+ return detailedTimeoutException;
234
+ }
235
+ return first;
236
+ }
237
+ function addSuppressedExceptions($this, rootCause, exceptions) {
238
+ if (exceptions.n1() <= 1)
239
+ return Unit_instance;
240
+ var seenExceptions = identitySet(exceptions.n1());
241
+ var unwrappedCause = unwrap(rootCause);
242
+ var _iterator__ex2g4s = exceptions.k1();
243
+ while (_iterator__ex2g4s.l1()) {
244
+ var exception = _iterator__ex2g4s.m1();
245
+ var unwrapped = unwrap(exception);
246
+ var tmp;
247
+ var tmp_0;
248
+ if (!(unwrapped === rootCause) && !(unwrapped === unwrappedCause)) {
249
+ tmp_0 = !(unwrapped instanceof CancellationException());
250
+ } else {
251
+ tmp_0 = false;
252
+ }
253
+ if (tmp_0) {
254
+ tmp = seenExceptions.v(unwrapped);
255
+ } else {
256
+ tmp = false;
257
+ }
258
+ if (tmp) {
259
+ addSuppressed(rootCause, unwrapped);
260
+ }
261
+ }
262
+ }
263
+ function tryFinalizeSimpleState($this, state, update) {
264
+ // Inline function 'kotlinx.coroutines.assert' call
265
+ // Inline function 'kotlinx.coroutines.assert' call
266
+ if (!$this.vs_1.atomicfu$compareAndSet(state, boxIncomplete(update)))
267
+ return false;
268
+ $this.vu(null);
269
+ $this.gt(update);
270
+ completeStateFinalization($this, state, update);
271
+ return true;
272
+ }
273
+ function completeStateFinalization($this, state, update) {
274
+ var tmp0_safe_receiver = $this.ut();
275
+ if (tmp0_safe_receiver == null)
276
+ null;
277
+ else {
278
+ // Inline function 'kotlin.let' call
279
+ tmp0_safe_receiver.iw();
280
+ $this.tt(NonDisposableHandle_instance);
281
+ }
282
+ var tmp1_safe_receiver = update instanceof CompletedExceptionally() ? update : null;
283
+ var cause = tmp1_safe_receiver == null ? null : tmp1_safe_receiver.ht_1;
284
+ if (state instanceof JobNode()) {
285
+ try {
286
+ state.hw(cause);
287
+ } catch ($p) {
288
+ if ($p instanceof Error) {
289
+ var ex = $p;
290
+ $this.nt(CompletionHandlerException().dx('Exception in completion handler ' + state.toString() + ' for ' + $this.toString(), ex));
291
+ } else {
292
+ throw $p;
293
+ }
294
+ }
295
+ } else {
296
+ var tmp2_safe_receiver = state.zy();
297
+ if (tmp2_safe_receiver == null)
298
+ null;
299
+ else {
300
+ notifyCompletion($this, tmp2_safe_receiver, cause);
301
+ }
302
+ }
303
+ }
304
+ function notifyCancelling($this, list, cause) {
305
+ $this.vu(cause);
306
+ list.g11(4);
307
+ // Inline function 'kotlinx.coroutines.JobSupport.notifyHandlers' call
308
+ var exception = null;
309
+ // Inline function 'kotlinx.coroutines.internal.LockFreeLinkedListHead.forEach' call
310
+ var cur = list.az_1;
311
+ while (!equals(cur, list)) {
312
+ var node = cur;
313
+ var tmp;
314
+ if (node instanceof JobNode()) {
315
+ tmp = node.ty();
316
+ } else {
317
+ tmp = false;
318
+ }
319
+ if (tmp) {
320
+ try {
321
+ node.hw(cause);
322
+ } catch ($p) {
323
+ if ($p instanceof Error) {
324
+ var ex = $p;
325
+ var tmp0_safe_receiver = exception;
326
+ var tmp_0;
327
+ if (tmp0_safe_receiver == null) {
328
+ tmp_0 = null;
329
+ } else {
330
+ // Inline function 'kotlin.apply' call
331
+ addSuppressed(tmp0_safe_receiver, ex);
332
+ tmp_0 = tmp0_safe_receiver;
333
+ }
334
+ if (tmp_0 == null) {
335
+ // Inline function 'kotlin.run' call
336
+ exception = CompletionHandlerException().dx('Exception in completion handler ' + node.toString() + ' for ' + $this.toString(), ex);
337
+ }
338
+ } else {
339
+ throw $p;
340
+ }
341
+ }
342
+ }
343
+ cur = cur.az_1;
344
+ }
345
+ var tmp0_safe_receiver_0 = exception;
346
+ if (tmp0_safe_receiver_0 == null)
347
+ null;
348
+ else {
349
+ // Inline function 'kotlin.let' call
350
+ $this.nt(tmp0_safe_receiver_0);
351
+ }
352
+ cancelParent($this, cause);
353
+ }
354
+ function cancelParent($this, cause) {
355
+ if ($this.wu())
356
+ return true;
357
+ var isCancellation = cause instanceof CancellationException();
358
+ var parent = $this.ut();
359
+ if (parent === null || parent === NonDisposableHandle_instance) {
360
+ return isCancellation;
361
+ }
362
+ return parent.pu(cause) || isCancellation;
363
+ }
364
+ function notifyCompletion($this, _this__u8e3s4, cause) {
365
+ _this__u8e3s4.g11(1);
366
+ // Inline function 'kotlinx.coroutines.JobSupport.notifyHandlers' call
367
+ var exception = null;
368
+ // Inline function 'kotlinx.coroutines.internal.LockFreeLinkedListHead.forEach' call
369
+ var cur = _this__u8e3s4.az_1;
370
+ while (!equals(cur, _this__u8e3s4)) {
371
+ var node = cur;
372
+ var tmp;
373
+ if (node instanceof JobNode()) {
374
+ tmp = true;
375
+ } else {
376
+ tmp = false;
377
+ }
378
+ if (tmp) {
379
+ try {
380
+ node.hw(cause);
381
+ } catch ($p) {
382
+ if ($p instanceof Error) {
383
+ var ex = $p;
384
+ var tmp0_safe_receiver = exception;
385
+ var tmp_0;
386
+ if (tmp0_safe_receiver == null) {
387
+ tmp_0 = null;
388
+ } else {
389
+ // Inline function 'kotlin.apply' call
390
+ addSuppressed(tmp0_safe_receiver, ex);
391
+ tmp_0 = tmp0_safe_receiver;
392
+ }
393
+ if (tmp_0 == null) {
394
+ // Inline function 'kotlin.run' call
395
+ exception = CompletionHandlerException().dx('Exception in completion handler ' + node.toString() + ' for ' + $this.toString(), ex);
396
+ }
397
+ } else {
398
+ throw $p;
399
+ }
400
+ }
401
+ }
402
+ cur = cur.az_1;
403
+ }
404
+ var tmp0_safe_receiver_0 = exception;
405
+ if (tmp0_safe_receiver_0 == null)
406
+ null;
407
+ else {
408
+ // Inline function 'kotlin.let' call
409
+ $this.nt(tmp0_safe_receiver_0);
410
+ }
411
+ }
412
+ function startInternal($this, state) {
413
+ if (state instanceof Empty()) {
414
+ if (state.i11_1)
415
+ return 0;
416
+ if (!$this.vs_1.atomicfu$compareAndSet(state, get_EMPTY_ACTIVE()))
417
+ return -1;
418
+ $this.au();
419
+ return 1;
420
+ } else {
421
+ if (state instanceof InactiveNodeList()) {
422
+ if (!$this.vs_1.atomicfu$compareAndSet(state, state.h11_1))
423
+ return -1;
424
+ $this.au();
425
+ return 1;
426
+ } else {
427
+ return 0;
428
+ }
429
+ }
430
+ }
431
+ function promoteEmptyToNodeList($this, state) {
432
+ var list = new (NodeList())();
433
+ var update = state.i11_1 ? list : new (InactiveNodeList())(list);
434
+ $this.vs_1.atomicfu$compareAndSet(state, update);
435
+ }
436
+ function promoteSingleToNodeList($this, state) {
437
+ state.fz(new (NodeList())());
438
+ // Inline function 'kotlinx.coroutines.internal.LockFreeLinkedListNode.nextNode' call
439
+ var list = state.az_1;
440
+ $this.vs_1.atomicfu$compareAndSet(state, list);
441
+ }
442
+ function joinInternal($this) {
443
+ // Inline function 'kotlinx.coroutines.JobSupport.loopOnState' call
444
+ while (true) {
445
+ var state = $this.wt();
446
+ if (!(!(state == null) ? isInterface(state, Incomplete()) : false))
447
+ return false;
448
+ if (startInternal($this, state) >= 0)
449
+ return true;
450
+ }
451
+ }
452
+ function joinSuspend($this, $completion) {
453
+ var cancellable = new (CancellableContinuationImpl())(intercepted($completion), 1);
454
+ cancellable.px();
455
+ disposeOnCancellation(cancellable, invokeOnCompletion($this, VOID, new (ResumeOnCompletion())(cancellable)));
456
+ return cancellable.xx();
457
+ }
458
+ function cancelMakeCompleting($this, cause) {
459
+ // Inline function 'kotlinx.coroutines.JobSupport.loopOnState' call
460
+ while (true) {
461
+ var state = $this.wt();
462
+ var tmp;
463
+ if (!(!(state == null) ? isInterface(state, Incomplete()) : false)) {
464
+ tmp = true;
465
+ } else {
466
+ var tmp_0;
467
+ if (state instanceof Finishing()) {
468
+ tmp_0 = state.j11();
469
+ } else {
470
+ tmp_0 = false;
471
+ }
472
+ tmp = tmp_0;
473
+ }
474
+ if (tmp) {
475
+ return get_COMPLETING_ALREADY();
476
+ }
477
+ var proposedUpdate = new (CompletedExceptionally())(createCauseException($this, cause));
478
+ var finalState = tryMakeCompleting($this, state, proposedUpdate);
479
+ if (!(finalState === get_COMPLETING_RETRY()))
480
+ return finalState;
481
+ }
482
+ }
483
+ function createCauseException($this, cause) {
484
+ var tmp;
485
+ if (cause == null ? true : cause instanceof Error) {
486
+ var tmp_0;
487
+ if (cause == null) {
488
+ // Inline function 'kotlinx.coroutines.JobSupport.defaultCancellationException' call
489
+ tmp_0 = JobCancellationException().f11(null == null ? $this.ft() : null, null, $this);
490
+ } else {
491
+ tmp_0 = cause;
492
+ }
493
+ tmp = tmp_0;
494
+ } else {
495
+ tmp = ((!(cause == null) ? isInterface(cause, ParentJob()) : false) ? cause : THROW_CCE()).su();
496
+ }
497
+ return tmp;
498
+ }
499
+ function makeCancelling($this, cause) {
500
+ var causeExceptionCache = null;
501
+ // Inline function 'kotlinx.coroutines.JobSupport.loopOnState' call
502
+ while (true) {
503
+ var tmp0 = $this.wt();
504
+ $l$block: {
505
+ if (tmp0 instanceof Finishing()) {
506
+ // Inline function 'kotlinx.coroutines.internal.synchronized' call
507
+ // Inline function 'kotlinx.coroutines.internal.synchronizedImpl' call
508
+ if (tmp0.k11())
509
+ return get_TOO_LATE_TO_CANCEL();
510
+ var wasCancelling = tmp0.x10();
511
+ if (!(cause == null) || !wasCancelling) {
512
+ var tmp0_elvis_lhs = causeExceptionCache;
513
+ var tmp;
514
+ if (tmp0_elvis_lhs == null) {
515
+ // Inline function 'kotlin.also' call
516
+ var this_0 = createCauseException($this, cause);
517
+ causeExceptionCache = this_0;
518
+ tmp = this_0;
519
+ } else {
520
+ tmp = tmp0_elvis_lhs;
521
+ }
522
+ var causeException = tmp;
523
+ tmp0.l11(causeException);
524
+ }
525
+ // Inline function 'kotlin.takeIf' call
526
+ var this_1 = tmp0.m11();
527
+ var tmp_0;
528
+ if (!wasCancelling) {
529
+ tmp_0 = this_1;
530
+ } else {
531
+ tmp_0 = null;
532
+ }
533
+ var notifyRootCause = tmp_0;
534
+ if (notifyRootCause == null)
535
+ null;
536
+ else {
537
+ // Inline function 'kotlin.let' call
538
+ notifyCancelling($this, tmp0.t10_1, notifyRootCause);
539
+ }
540
+ return get_COMPLETING_ALREADY();
541
+ } else {
542
+ if (!(tmp0 == null) ? isInterface(tmp0, Incomplete()) : false) {
543
+ var tmp2_elvis_lhs = causeExceptionCache;
544
+ var tmp_1;
545
+ if (tmp2_elvis_lhs == null) {
546
+ // Inline function 'kotlin.also' call
547
+ var this_2 = createCauseException($this, cause);
548
+ causeExceptionCache = this_2;
549
+ tmp_1 = this_2;
550
+ } else {
551
+ tmp_1 = tmp2_elvis_lhs;
552
+ }
553
+ var causeException_0 = tmp_1;
554
+ if (tmp0.ct()) {
555
+ if (tryMakeCancelling($this, tmp0, causeException_0))
556
+ return get_COMPLETING_ALREADY();
557
+ } else {
558
+ var finalState = tryMakeCompleting($this, tmp0, new (CompletedExceptionally())(causeException_0));
559
+ if (finalState === get_COMPLETING_ALREADY()) {
560
+ // Inline function 'kotlin.error' call
561
+ var message = 'Cannot happen in ' + toString(tmp0);
562
+ throw IllegalStateException().w4(toString(message));
563
+ } else if (finalState === get_COMPLETING_RETRY()) {
564
+ break $l$block;
565
+ } else
566
+ return finalState;
567
+ }
568
+ } else {
569
+ return get_TOO_LATE_TO_CANCEL();
570
+ }
571
+ }
572
+ }
573
+ }
574
+ }
575
+ function getOrPromoteCancellingList($this, state) {
576
+ var tmp0_elvis_lhs = state.zy();
577
+ var tmp;
578
+ if (tmp0_elvis_lhs == null) {
579
+ var tmp_0;
580
+ if (state instanceof Empty()) {
581
+ tmp_0 = new (NodeList())();
582
+ } else {
583
+ if (state instanceof JobNode()) {
584
+ promoteSingleToNodeList($this, state);
585
+ tmp_0 = null;
586
+ } else {
587
+ var message = 'State should have list: ' + toString(state);
588
+ throw IllegalStateException().w4(toString(message));
589
+ }
590
+ }
591
+ tmp = tmp_0;
592
+ } else {
593
+ tmp = tmp0_elvis_lhs;
594
+ }
595
+ return tmp;
596
+ }
597
+ function tryMakeCancelling($this, state, rootCause) {
598
+ // Inline function 'kotlinx.coroutines.assert' call
599
+ // Inline function 'kotlinx.coroutines.assert' call
600
+ var tmp0_elvis_lhs = getOrPromoteCancellingList($this, state);
601
+ var tmp;
602
+ if (tmp0_elvis_lhs == null) {
603
+ return false;
604
+ } else {
605
+ tmp = tmp0_elvis_lhs;
606
+ }
607
+ var list = tmp;
608
+ var cancelling = new (Finishing())(list, false, rootCause);
609
+ if (!$this.vs_1.atomicfu$compareAndSet(state, cancelling))
610
+ return false;
611
+ notifyCancelling($this, list, rootCause);
612
+ return true;
613
+ }
614
+ function tryMakeCompleting($this, state, proposedUpdate) {
615
+ if (!(!(state == null) ? isInterface(state, Incomplete()) : false))
616
+ return get_COMPLETING_ALREADY();
617
+ var tmp;
618
+ var tmp_0;
619
+ var tmp_1;
620
+ if (state instanceof Empty()) {
621
+ tmp_1 = true;
622
+ } else {
623
+ tmp_1 = state instanceof JobNode();
624
+ }
625
+ if (tmp_1) {
626
+ tmp_0 = !(state instanceof ChildHandleNode());
627
+ } else {
628
+ tmp_0 = false;
629
+ }
630
+ if (tmp_0) {
631
+ tmp = !(proposedUpdate instanceof CompletedExceptionally());
632
+ } else {
633
+ tmp = false;
634
+ }
635
+ if (tmp) {
636
+ if (tryFinalizeSimpleState($this, state, proposedUpdate)) {
637
+ return proposedUpdate;
638
+ }
639
+ return get_COMPLETING_RETRY();
640
+ }
641
+ return tryMakeCompletingSlowPath($this, state, proposedUpdate);
642
+ }
643
+ function tryMakeCompletingSlowPath($this, state, proposedUpdate) {
644
+ var tmp0_elvis_lhs = getOrPromoteCancellingList($this, state);
645
+ var tmp;
646
+ if (tmp0_elvis_lhs == null) {
647
+ return get_COMPLETING_RETRY();
648
+ } else {
649
+ tmp = tmp0_elvis_lhs;
650
+ }
651
+ var list = tmp;
652
+ var tmp1_elvis_lhs = state instanceof Finishing() ? state : null;
653
+ var finishing = tmp1_elvis_lhs == null ? new (Finishing())(list, false, null) : tmp1_elvis_lhs;
654
+ var notifyRootCause;
655
+ // Inline function 'kotlinx.coroutines.internal.synchronized' call
656
+ // Inline function 'kotlinx.coroutines.internal.synchronizedImpl' call
657
+ if (finishing.j11())
658
+ return get_COMPLETING_ALREADY();
659
+ finishing.n11(true);
660
+ if (!(finishing === state)) {
661
+ if (!$this.vs_1.atomicfu$compareAndSet(state, finishing))
662
+ return get_COMPLETING_RETRY();
663
+ }
664
+ // Inline function 'kotlinx.coroutines.assert' call
665
+ var wasCancelling = finishing.x10();
666
+ var tmp0_safe_receiver = proposedUpdate instanceof CompletedExceptionally() ? proposedUpdate : null;
667
+ if (tmp0_safe_receiver == null)
668
+ null;
669
+ else {
670
+ // Inline function 'kotlin.let' call
671
+ finishing.l11(tmp0_safe_receiver.ht_1);
672
+ }
673
+ // Inline function 'kotlin.takeIf' call
674
+ var this_0 = finishing.m11();
675
+ var tmp_0;
676
+ if (!wasCancelling) {
677
+ tmp_0 = this_0;
678
+ } else {
679
+ tmp_0 = null;
680
+ }
681
+ notifyRootCause = tmp_0;
682
+ if (notifyRootCause == null)
683
+ null;
684
+ else {
685
+ // Inline function 'kotlin.let' call
686
+ notifyCancelling($this, list, notifyRootCause);
687
+ }
688
+ var child = nextChild($this, list);
689
+ if (!(child == null) && tryWaitForChild($this, finishing, child, proposedUpdate))
690
+ return get_COMPLETING_WAITING_CHILDREN();
691
+ list.g11(2);
692
+ var anotherChild = nextChild($this, list);
693
+ if (!(anotherChild == null) && tryWaitForChild($this, finishing, anotherChild, proposedUpdate))
694
+ return get_COMPLETING_WAITING_CHILDREN();
695
+ return finalizeFinishingState($this, finishing, proposedUpdate);
696
+ }
697
+ function _get_exceptionOrNull__b3j7js($this, _this__u8e3s4) {
698
+ var tmp0_safe_receiver = _this__u8e3s4 instanceof CompletedExceptionally() ? _this__u8e3s4 : null;
699
+ return tmp0_safe_receiver == null ? null : tmp0_safe_receiver.ht_1;
700
+ }
701
+ function tryWaitForChild($this, state, child, proposedUpdate) {
702
+ var $this_0 = $this;
703
+ var state_0 = state;
704
+ var child_0 = child;
705
+ var proposedUpdate_0 = proposedUpdate;
706
+ $l$1: do {
707
+ $l$0: do {
708
+ var handle = invokeOnCompletion(child_0.s11_1, false, new (ChildCompletion())($this_0, state_0, child_0, proposedUpdate_0));
709
+ if (!(handle === NonDisposableHandle_instance))
710
+ return true;
711
+ var tmp0_elvis_lhs = nextChild($this_0, child_0);
712
+ var tmp;
713
+ if (tmp0_elvis_lhs == null) {
714
+ return false;
715
+ } else {
716
+ tmp = tmp0_elvis_lhs;
717
+ }
718
+ var nextChild_0 = tmp;
719
+ var tmp0 = $this_0;
720
+ var tmp1 = state_0;
721
+ var tmp3 = proposedUpdate_0;
722
+ $this_0 = tmp0;
723
+ state_0 = tmp1;
724
+ child_0 = nextChild_0;
725
+ proposedUpdate_0 = tmp3;
726
+ continue $l$0;
727
+ }
728
+ while (false);
729
+ }
730
+ while (true);
731
+ }
732
+ function continueCompleting($this, state, lastChild, proposedUpdate) {
733
+ // Inline function 'kotlinx.coroutines.assert' call
734
+ var waitChild = nextChild($this, lastChild);
735
+ if (!(waitChild == null) && tryWaitForChild($this, state, waitChild, proposedUpdate))
736
+ return Unit_instance;
737
+ state.t10_1.g11(2);
738
+ var waitChildAgain = nextChild($this, lastChild);
739
+ if (!(waitChildAgain == null) && tryWaitForChild($this, state, waitChildAgain, proposedUpdate)) {
740
+ return Unit_instance;
741
+ }
742
+ var finalState = finalizeFinishingState($this, state, proposedUpdate);
743
+ $this.mt(finalState);
744
+ }
745
+ function nextChild($this, _this__u8e3s4) {
746
+ var cur = _this__u8e3s4;
747
+ $l$loop: while (true) {
748
+ // Inline function 'kotlinx.coroutines.internal.LockFreeLinkedListNode.isRemoved' call
749
+ if (!cur.cz_1) {
750
+ break $l$loop;
751
+ }
752
+ // Inline function 'kotlinx.coroutines.internal.LockFreeLinkedListNode.prevNode' call
753
+ cur = cur.bz_1;
754
+ }
755
+ $l$loop_0: while (true) {
756
+ // Inline function 'kotlinx.coroutines.internal.LockFreeLinkedListNode.nextNode' call
757
+ cur = cur.az_1;
758
+ // Inline function 'kotlinx.coroutines.internal.LockFreeLinkedListNode.isRemoved' call
759
+ if (cur.cz_1)
760
+ continue $l$loop_0;
761
+ if (cur instanceof ChildHandleNode())
762
+ return cur;
763
+ if (cur instanceof NodeList())
764
+ return null;
765
+ }
766
+ }
767
+ function stateString($this, state) {
768
+ var tmp;
769
+ if (state instanceof Finishing()) {
770
+ tmp = state.x10() ? 'Cancelling' : state.j11() ? 'Completing' : 'Active';
771
+ } else {
772
+ if (!(state == null) ? isInterface(state, Incomplete()) : false) {
773
+ tmp = state.ct() ? 'Active' : 'New';
774
+ } else {
775
+ if (state instanceof CompletedExceptionally()) {
776
+ tmp = 'Cancelled';
777
+ } else {
778
+ tmp = 'Completed';
779
+ }
780
+ }
781
+ }
782
+ return tmp;
783
+ }
784
+ var FinishingClass;
785
+ function Finishing() {
786
+ if (FinishingClass === VOID) {
787
+ class $ extends SynchronizedObject() {
788
+ constructor(list, isCompleting, rootCause) {
789
+ super();
790
+ this.t10_1 = list;
791
+ this.u10_1 = atomic$boolean$1(isCompleting);
792
+ this.v10_1 = atomic$ref$1(rootCause);
793
+ this.w10_1 = atomic$ref$1(null);
794
+ }
795
+ zy() {
796
+ return this.t10_1;
797
+ }
798
+ n11(value) {
799
+ this.u10_1.kotlinx$atomicfu$value = value;
800
+ }
801
+ j11() {
802
+ return this.u10_1.kotlinx$atomicfu$value;
803
+ }
804
+ t11(value) {
805
+ this.v10_1.kotlinx$atomicfu$value = value;
806
+ }
807
+ m11() {
808
+ return this.v10_1.kotlinx$atomicfu$value;
809
+ }
810
+ k11() {
811
+ return _get_exceptionsHolder__nhszp(this) === get_SEALED();
812
+ }
813
+ x10() {
814
+ return !(this.m11() == null);
815
+ }
816
+ ct() {
817
+ return this.m11() == null;
818
+ }
819
+ y10(proposedException) {
820
+ var eh = _get_exceptionsHolder__nhszp(this);
821
+ var tmp;
822
+ if (eh == null) {
823
+ tmp = allocateList(this);
824
+ } else {
825
+ if (eh instanceof Error) {
826
+ // Inline function 'kotlin.also' call
827
+ var this_0 = allocateList(this);
828
+ this_0.v(eh);
829
+ tmp = this_0;
830
+ } else {
831
+ if (eh instanceof ArrayList()) {
832
+ tmp = eh instanceof ArrayList() ? eh : THROW_CCE();
833
+ } else {
834
+ var message = 'State is ' + toString_0(eh);
835
+ throw IllegalStateException().w4(toString(message));
836
+ }
837
+ }
838
+ }
839
+ var list = tmp;
840
+ var rootCause = this.m11();
841
+ if (rootCause == null)
842
+ null;
843
+ else {
844
+ // Inline function 'kotlin.let' call
845
+ list.s3(0, rootCause);
846
+ }
847
+ if (!(proposedException == null) && !equals(proposedException, rootCause)) {
848
+ list.v(proposedException);
849
+ }
850
+ _set_exceptionsHolder__tqm22h(this, get_SEALED());
851
+ return list;
852
+ }
853
+ l11(exception) {
854
+ var rootCause = this.m11();
855
+ if (rootCause == null) {
856
+ this.t11(exception);
857
+ return Unit_instance;
858
+ }
859
+ if (exception === rootCause)
860
+ return Unit_instance;
861
+ var eh = _get_exceptionsHolder__nhszp(this);
862
+ if (eh == null) {
863
+ _set_exceptionsHolder__tqm22h(this, exception);
864
+ } else {
865
+ if (eh instanceof Error) {
866
+ if (exception === eh)
867
+ return Unit_instance;
868
+ // Inline function 'kotlin.apply' call
869
+ var this_0 = allocateList(this);
870
+ this_0.v(eh);
871
+ this_0.v(exception);
872
+ _set_exceptionsHolder__tqm22h(this, this_0);
873
+ } else {
874
+ if (eh instanceof ArrayList()) {
875
+ (eh instanceof ArrayList() ? eh : THROW_CCE()).v(exception);
876
+ } else {
877
+ // Inline function 'kotlin.error' call
878
+ var message = 'State is ' + toString_0(eh);
879
+ throw IllegalStateException().w4(toString(message));
880
+ }
881
+ }
882
+ }
883
+ }
884
+ toString() {
885
+ return 'Finishing[cancelling=' + this.x10() + ', completing=' + this.j11() + ', rootCause=' + toString_0(this.m11()) + ', exceptions=' + toString_0(_get_exceptionsHolder__nhszp(this)) + ', list=' + this.t10_1.toString() + ']';
886
+ }
887
+ }
888
+ initMetadataForClass($, 'Finishing', VOID, VOID, [SynchronizedObject(), Incomplete()]);
889
+ FinishingClass = $;
890
+ }
891
+ return FinishingClass;
892
+ }
893
+ var ChildCompletionClass;
894
+ function ChildCompletion() {
895
+ if (ChildCompletionClass === VOID) {
896
+ class $ extends JobNode() {
897
+ constructor(parent, state, child, proposedUpdate) {
898
+ super();
899
+ this.y11_1 = parent;
900
+ this.z11_1 = state;
901
+ this.a12_1 = child;
902
+ this.b12_1 = proposedUpdate;
903
+ }
904
+ ty() {
905
+ return false;
906
+ }
907
+ hw(cause) {
908
+ continueCompleting(this.y11_1, this.z11_1, this.a12_1, this.b12_1);
909
+ }
910
+ }
911
+ initMetadataForClass($, 'ChildCompletion');
912
+ ChildCompletionClass = $;
913
+ }
914
+ return ChildCompletionClass;
915
+ }
916
+ var AwaitContinuationClass;
917
+ function AwaitContinuation() {
918
+ if (AwaitContinuationClass === VOID) {
919
+ class $ extends CancellableContinuationImpl() {
920
+ constructor(delegate, job) {
921
+ super(delegate, 1);
922
+ this.i12_1 = job;
923
+ }
924
+ wx(parent) {
925
+ var state = this.i12_1.wt();
926
+ if (state instanceof Finishing()) {
927
+ var tmp0_safe_receiver = state.m11();
928
+ if (tmp0_safe_receiver == null)
929
+ null;
930
+ else {
931
+ // Inline function 'kotlin.let' call
932
+ return tmp0_safe_receiver;
933
+ }
934
+ }
935
+ if (state instanceof CompletedExceptionally())
936
+ return state.ht_1;
937
+ return parent.bu();
938
+ }
939
+ ky() {
940
+ return 'AwaitContinuation';
941
+ }
942
+ }
943
+ initMetadataForClass($, 'AwaitContinuation');
944
+ AwaitContinuationClass = $;
945
+ }
946
+ return AwaitContinuationClass;
947
+ }
948
+ function awaitSuspend($this, $completion) {
949
+ var cont = new (AwaitContinuation())(intercepted($completion), $this);
950
+ cont.px();
951
+ disposeOnCancellation(cont, invokeOnCompletion($this, VOID, new (ResumeAwaitOnCompletion())(cont)));
952
+ return cont.xx();
953
+ }
954
+ var JobSupportClass;
955
+ function JobSupport() {
956
+ if (JobSupportClass === VOID) {
957
+ class $ {
958
+ constructor(active) {
959
+ this.vs_1 = atomic$ref$1(active ? get_EMPTY_ACTIVE() : get_EMPTY_NEW());
960
+ this.ws_1 = atomic$ref$1(null);
961
+ }
962
+ y1() {
963
+ return Key_instance;
964
+ }
965
+ tt(value) {
966
+ this.ws_1.kotlinx$atomicfu$value = value;
967
+ }
968
+ ut() {
969
+ return this.ws_1.kotlinx$atomicfu$value;
970
+ }
971
+ vt() {
972
+ var tmp0_safe_receiver = this.ut();
973
+ return tmp0_safe_receiver == null ? null : tmp0_safe_receiver.vt();
974
+ }
975
+ xs(parent) {
976
+ // Inline function 'kotlinx.coroutines.assert' call
977
+ if (parent == null) {
978
+ this.tt(NonDisposableHandle_instance);
979
+ return Unit_instance;
980
+ }
981
+ parent.zt();
982
+ var handle = parent.uu(this);
983
+ this.tt(handle);
984
+ if (this.xt()) {
985
+ handle.iw();
986
+ this.tt(NonDisposableHandle_instance);
987
+ }
988
+ }
989
+ wt() {
990
+ return this.vs_1.kotlinx$atomicfu$value;
991
+ }
992
+ ct() {
993
+ var state = this.wt();
994
+ var tmp;
995
+ if (!(state == null) ? isInterface(state, Incomplete()) : false) {
996
+ tmp = state.ct();
997
+ } else {
998
+ tmp = false;
999
+ }
1000
+ return tmp;
1001
+ }
1002
+ xt() {
1003
+ var tmp = this.wt();
1004
+ return !(!(tmp == null) ? isInterface(tmp, Incomplete()) : false);
1005
+ }
1006
+ yt() {
1007
+ var state = this.wt();
1008
+ var tmp;
1009
+ if (state instanceof CompletedExceptionally()) {
1010
+ tmp = true;
1011
+ } else {
1012
+ var tmp_0;
1013
+ if (state instanceof Finishing()) {
1014
+ tmp_0 = state.x10();
1015
+ } else {
1016
+ tmp_0 = false;
1017
+ }
1018
+ tmp = tmp_0;
1019
+ }
1020
+ return tmp;
1021
+ }
1022
+ zt() {
1023
+ // Inline function 'kotlinx.coroutines.JobSupport.loopOnState' call
1024
+ while (true) {
1025
+ var state = this.wt();
1026
+ var tmp0_subject = startInternal(this, state);
1027
+ if (tmp0_subject === 0)
1028
+ return false;
1029
+ else if (tmp0_subject === 1)
1030
+ return true;
1031
+ }
1032
+ }
1033
+ au() {
1034
+ }
1035
+ bu() {
1036
+ var state = this.wt();
1037
+ var tmp;
1038
+ if (state instanceof Finishing()) {
1039
+ var tmp0_safe_receiver = state.m11();
1040
+ var tmp1_elvis_lhs = tmp0_safe_receiver == null ? null : this.cu(tmp0_safe_receiver, get_classSimpleName(this) + ' is cancelling');
1041
+ var tmp_0;
1042
+ if (tmp1_elvis_lhs == null) {
1043
+ var message = 'Job is still new or active: ' + this.toString();
1044
+ throw IllegalStateException().w4(toString(message));
1045
+ } else {
1046
+ tmp_0 = tmp1_elvis_lhs;
1047
+ }
1048
+ tmp = tmp_0;
1049
+ } else {
1050
+ if (!(state == null) ? isInterface(state, Incomplete()) : false) {
1051
+ var message_0 = 'Job is still new or active: ' + this.toString();
1052
+ throw IllegalStateException().w4(toString(message_0));
1053
+ } else {
1054
+ if (state instanceof CompletedExceptionally()) {
1055
+ tmp = this.du(state.ht_1);
1056
+ } else {
1057
+ tmp = JobCancellationException().f11(get_classSimpleName(this) + ' has completed normally', null, this);
1058
+ }
1059
+ }
1060
+ }
1061
+ return tmp;
1062
+ }
1063
+ cu(_this__u8e3s4, message) {
1064
+ var tmp0_elvis_lhs = _this__u8e3s4 instanceof CancellationException() ? _this__u8e3s4 : null;
1065
+ var tmp;
1066
+ if (tmp0_elvis_lhs == null) {
1067
+ // Inline function 'kotlinx.coroutines.JobSupport.defaultCancellationException' call
1068
+ tmp = JobCancellationException().f11(message == null ? this.ft() : message, _this__u8e3s4, this);
1069
+ } else {
1070
+ tmp = tmp0_elvis_lhs;
1071
+ }
1072
+ return tmp;
1073
+ }
1074
+ du(_this__u8e3s4, message, $super) {
1075
+ message = message === VOID ? null : message;
1076
+ return $super === VOID ? this.cu(_this__u8e3s4, message) : $super.cu.call(this, _this__u8e3s4, message);
1077
+ }
1078
+ eu(handler) {
1079
+ return this.hu(true, new (InvokeOnCompletion())(handler));
1080
+ }
1081
+ fu(onCancelling, invokeImmediately, handler) {
1082
+ var tmp;
1083
+ if (onCancelling) {
1084
+ tmp = new (InvokeOnCancelling())(handler);
1085
+ } else {
1086
+ tmp = new (InvokeOnCompletion())(handler);
1087
+ }
1088
+ return this.hu(invokeImmediately, tmp);
1089
+ }
1090
+ hu(invokeImmediately, node) {
1091
+ node.xy_1 = this;
1092
+ var tmp$ret$0;
1093
+ $l$block_1: {
1094
+ // Inline function 'kotlinx.coroutines.JobSupport.tryPutNodeIntoList' call
1095
+ // Inline function 'kotlinx.coroutines.JobSupport.loopOnState' call
1096
+ while (true) {
1097
+ var state = this.wt();
1098
+ if (state instanceof Empty()) {
1099
+ if (state.i11_1) {
1100
+ if (this.vs_1.atomicfu$compareAndSet(state, node)) {
1101
+ tmp$ret$0 = true;
1102
+ break $l$block_1;
1103
+ }
1104
+ } else {
1105
+ promoteEmptyToNodeList(this, state);
1106
+ }
1107
+ } else {
1108
+ if (!(state == null) ? isInterface(state, Incomplete()) : false) {
1109
+ var list = state.zy();
1110
+ if (list == null) {
1111
+ promoteSingleToNodeList(this, state instanceof JobNode() ? state : THROW_CCE());
1112
+ } else {
1113
+ var tmp;
1114
+ if (node.ty()) {
1115
+ var tmp0_safe_receiver = state instanceof Finishing() ? state : null;
1116
+ var rootCause = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.m11();
1117
+ var tmp_0;
1118
+ if (rootCause == null) {
1119
+ tmp_0 = list.dz(node, 5);
1120
+ } else {
1121
+ if (invokeImmediately) {
1122
+ node.hw(rootCause);
1123
+ }
1124
+ return NonDisposableHandle_instance;
1125
+ }
1126
+ tmp = tmp_0;
1127
+ } else {
1128
+ tmp = list.dz(node, 1);
1129
+ }
1130
+ if (tmp) {
1131
+ tmp$ret$0 = true;
1132
+ break $l$block_1;
1133
+ }
1134
+ }
1135
+ } else {
1136
+ tmp$ret$0 = false;
1137
+ break $l$block_1;
1138
+ }
1139
+ }
1140
+ }
1141
+ }
1142
+ var added = tmp$ret$0;
1143
+ if (added)
1144
+ return node;
1145
+ else if (invokeImmediately) {
1146
+ var tmp_1 = this.wt();
1147
+ var tmp0_safe_receiver_0 = tmp_1 instanceof CompletedExceptionally() ? tmp_1 : null;
1148
+ node.hw(tmp0_safe_receiver_0 == null ? null : tmp0_safe_receiver_0.ht_1);
1149
+ }
1150
+ return NonDisposableHandle_instance;
1151
+ }
1152
+ iu($completion) {
1153
+ if (!joinInternal(this)) {
1154
+ // Inline function 'kotlin.js.getCoroutineContext' call
1155
+ var tmp$ret$0 = $completion.tb();
1156
+ ensureActive(tmp$ret$0);
1157
+ return Unit_instance;
1158
+ }
1159
+ return joinSuspend(this, $completion);
1160
+ }
1161
+ ju(node) {
1162
+ // Inline function 'kotlinx.coroutines.JobSupport.loopOnState' call
1163
+ while (true) {
1164
+ var state = this.wt();
1165
+ if (state instanceof JobNode()) {
1166
+ if (!(state === node))
1167
+ return Unit_instance;
1168
+ if (this.vs_1.atomicfu$compareAndSet(state, get_EMPTY_ACTIVE()))
1169
+ return Unit_instance;
1170
+ } else {
1171
+ if (!(state == null) ? isInterface(state, Incomplete()) : false) {
1172
+ if (!(state.zy() == null)) {
1173
+ node.ez();
1174
+ }
1175
+ return Unit_instance;
1176
+ } else {
1177
+ return Unit_instance;
1178
+ }
1179
+ }
1180
+ }
1181
+ }
1182
+ ku() {
1183
+ return false;
1184
+ }
1185
+ lu(cause) {
1186
+ var tmp;
1187
+ if (cause == null) {
1188
+ // Inline function 'kotlinx.coroutines.JobSupport.defaultCancellationException' call
1189
+ tmp = JobCancellationException().f11(null == null ? this.ft() : null, null, this);
1190
+ } else {
1191
+ tmp = cause;
1192
+ }
1193
+ this.nu(tmp);
1194
+ }
1195
+ ft() {
1196
+ return 'Job was cancelled';
1197
+ }
1198
+ nu(cause) {
1199
+ this.ru(cause);
1200
+ }
1201
+ ou(parentJob) {
1202
+ this.ru(parentJob);
1203
+ }
1204
+ pu(cause) {
1205
+ if (cause instanceof CancellationException())
1206
+ return true;
1207
+ return this.ru(cause) && this.xu();
1208
+ }
1209
+ qu(cause) {
1210
+ return this.ru(cause);
1211
+ }
1212
+ ru(cause) {
1213
+ var finalState = get_COMPLETING_ALREADY();
1214
+ if (this.ku()) {
1215
+ finalState = cancelMakeCompleting(this, cause);
1216
+ if (finalState === get_COMPLETING_WAITING_CHILDREN())
1217
+ return true;
1218
+ }
1219
+ if (finalState === get_COMPLETING_ALREADY()) {
1220
+ finalState = makeCancelling(this, cause);
1221
+ }
1222
+ var tmp;
1223
+ if (finalState === get_COMPLETING_ALREADY()) {
1224
+ tmp = true;
1225
+ } else if (finalState === get_COMPLETING_WAITING_CHILDREN()) {
1226
+ tmp = true;
1227
+ } else if (finalState === get_TOO_LATE_TO_CANCEL()) {
1228
+ tmp = false;
1229
+ } else {
1230
+ this.mt(finalState);
1231
+ tmp = true;
1232
+ }
1233
+ return tmp;
1234
+ }
1235
+ su() {
1236
+ var state = this.wt();
1237
+ var tmp;
1238
+ if (state instanceof Finishing()) {
1239
+ tmp = state.m11();
1240
+ } else {
1241
+ if (state instanceof CompletedExceptionally()) {
1242
+ tmp = state.ht_1;
1243
+ } else {
1244
+ if (!(state == null) ? isInterface(state, Incomplete()) : false) {
1245
+ var message = 'Cannot be cancelling child in this state: ' + toString(state);
1246
+ throw IllegalStateException().w4(toString(message));
1247
+ } else {
1248
+ tmp = null;
1249
+ }
1250
+ }
1251
+ }
1252
+ var rootCause = tmp;
1253
+ var tmp1_elvis_lhs = rootCause instanceof CancellationException() ? rootCause : null;
1254
+ return tmp1_elvis_lhs == null ? JobCancellationException().f11('Parent job is ' + stateString(this, state), rootCause, this) : tmp1_elvis_lhs;
1255
+ }
1256
+ tu(proposedUpdate) {
1257
+ // Inline function 'kotlinx.coroutines.JobSupport.loopOnState' call
1258
+ while (true) {
1259
+ var tmp0 = this.wt();
1260
+ $l$block: {
1261
+ var finalState = tryMakeCompleting(this, tmp0, proposedUpdate);
1262
+ if (finalState === get_COMPLETING_ALREADY())
1263
+ return false;
1264
+ else if (finalState === get_COMPLETING_WAITING_CHILDREN())
1265
+ return true;
1266
+ else if (finalState === get_COMPLETING_RETRY()) {
1267
+ break $l$block;
1268
+ } else {
1269
+ this.mt(finalState);
1270
+ return true;
1271
+ }
1272
+ }
1273
+ }
1274
+ }
1275
+ kt(proposedUpdate) {
1276
+ // Inline function 'kotlinx.coroutines.JobSupport.loopOnState' call
1277
+ while (true) {
1278
+ var tmp0 = this.wt();
1279
+ $l$block: {
1280
+ var finalState = tryMakeCompleting(this, tmp0, proposedUpdate);
1281
+ if (finalState === get_COMPLETING_ALREADY())
1282
+ throw IllegalStateException().xc('Job ' + this.toString() + ' is already complete or completing, ' + ('but is being completed with ' + toString_0(proposedUpdate)), _get_exceptionOrNull__b3j7js(this, proposedUpdate));
1283
+ else if (finalState === get_COMPLETING_RETRY()) {
1284
+ break $l$block;
1285
+ } else
1286
+ return finalState;
1287
+ }
1288
+ }
1289
+ }
1290
+ uu(child) {
1291
+ // Inline function 'kotlin.also' call
1292
+ var this_0 = new (ChildHandleNode())(child);
1293
+ this_0.xy_1 = this;
1294
+ var node = this_0;
1295
+ var tmp$ret$2;
1296
+ $l$block_1: {
1297
+ // Inline function 'kotlinx.coroutines.JobSupport.tryPutNodeIntoList' call
1298
+ // Inline function 'kotlinx.coroutines.JobSupport.loopOnState' call
1299
+ while (true) {
1300
+ var state = this.wt();
1301
+ if (state instanceof Empty()) {
1302
+ if (state.i11_1) {
1303
+ if (this.vs_1.atomicfu$compareAndSet(state, node)) {
1304
+ tmp$ret$2 = true;
1305
+ break $l$block_1;
1306
+ }
1307
+ } else {
1308
+ promoteEmptyToNodeList(this, state);
1309
+ }
1310
+ } else {
1311
+ if (!(state == null) ? isInterface(state, Incomplete()) : false) {
1312
+ var list = state.zy();
1313
+ if (list == null) {
1314
+ promoteSingleToNodeList(this, state instanceof JobNode() ? state : THROW_CCE());
1315
+ } else {
1316
+ var addedBeforeCancellation = list.dz(node, 7);
1317
+ var tmp;
1318
+ if (addedBeforeCancellation) {
1319
+ tmp = true;
1320
+ } else {
1321
+ var addedBeforeCompletion = list.dz(node, 3);
1322
+ var latestState = this.wt();
1323
+ var tmp_0;
1324
+ if (latestState instanceof Finishing()) {
1325
+ tmp_0 = latestState.m11();
1326
+ } else {
1327
+ // Inline function 'kotlinx.coroutines.assert' call
1328
+ var tmp0_safe_receiver = latestState instanceof CompletedExceptionally() ? latestState : null;
1329
+ tmp_0 = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.ht_1;
1330
+ }
1331
+ var rootCause = tmp_0;
1332
+ node.hw(rootCause);
1333
+ var tmp_1;
1334
+ if (addedBeforeCompletion) {
1335
+ // Inline function 'kotlinx.coroutines.assert' call
1336
+ tmp_1 = true;
1337
+ } else {
1338
+ return NonDisposableHandle_instance;
1339
+ }
1340
+ tmp = tmp_1;
1341
+ }
1342
+ if (tmp) {
1343
+ tmp$ret$2 = true;
1344
+ break $l$block_1;
1345
+ }
1346
+ }
1347
+ } else {
1348
+ tmp$ret$2 = false;
1349
+ break $l$block_1;
1350
+ }
1351
+ }
1352
+ }
1353
+ }
1354
+ var added = tmp$ret$2;
1355
+ if (added)
1356
+ return node;
1357
+ var tmp_2 = this.wt();
1358
+ var tmp0_safe_receiver_0 = tmp_2 instanceof CompletedExceptionally() ? tmp_2 : null;
1359
+ node.hw(tmp0_safe_receiver_0 == null ? null : tmp0_safe_receiver_0.ht_1);
1360
+ return NonDisposableHandle_instance;
1361
+ }
1362
+ nt(exception) {
1363
+ throw exception;
1364
+ }
1365
+ vu(cause) {
1366
+ }
1367
+ wu() {
1368
+ return false;
1369
+ }
1370
+ xu() {
1371
+ return true;
1372
+ }
1373
+ yu(exception) {
1374
+ return false;
1375
+ }
1376
+ gt(state) {
1377
+ }
1378
+ mt(state) {
1379
+ }
1380
+ toString() {
1381
+ return this.zu() + '@' + get_hexAddress(this);
1382
+ }
1383
+ zu() {
1384
+ return this.ot() + '{' + stateString(this, this.wt()) + '}';
1385
+ }
1386
+ ot() {
1387
+ return get_classSimpleName(this);
1388
+ }
1389
+ av() {
1390
+ var state = this.wt();
1391
+ // Inline function 'kotlin.check' call
1392
+ if (!!(!(state == null) ? isInterface(state, Incomplete()) : false)) {
1393
+ var message = 'This job has not completed yet';
1394
+ throw IllegalStateException().w4(toString(message));
1395
+ }
1396
+ return _get_exceptionOrNull__b3j7js(this, state);
1397
+ }
1398
+ bv() {
1399
+ var state = this.wt();
1400
+ // Inline function 'kotlin.check' call
1401
+ if (!!(!(state == null) ? isInterface(state, Incomplete()) : false)) {
1402
+ var message = 'This job has not completed yet';
1403
+ throw IllegalStateException().w4(toString(message));
1404
+ }
1405
+ if (state instanceof CompletedExceptionally())
1406
+ throw state.ht_1;
1407
+ return unboxState(state);
1408
+ }
1409
+ cv($completion) {
1410
+ $l$loop: while (true) {
1411
+ var state = this.wt();
1412
+ if (!(!(state == null) ? isInterface(state, Incomplete()) : false)) {
1413
+ if (state instanceof CompletedExceptionally()) {
1414
+ // Inline function 'kotlinx.coroutines.internal.recoverAndThrow' call
1415
+ throw state.ht_1;
1416
+ }
1417
+ return unboxState(state);
1418
+ }
1419
+ if (startInternal(this, state) >= 0)
1420
+ break $l$loop;
1421
+ }
1422
+ return awaitSuspend(this, $completion);
1423
+ }
1424
+ }
1425
+ protoOf($).gu = invokeOnCompletion$default;
1426
+ protoOf($).mu = cancel$default;
1427
+ protoOf($).cl = plus;
1428
+ protoOf($).gc = get;
1429
+ protoOf($).bl = fold;
1430
+ protoOf($).al = minusKey;
1431
+ initMetadataForClass($, 'JobSupport', VOID, VOID, [Job(), ParentJob()], [0]);
1432
+ JobSupportClass = $;
1433
+ }
1434
+ return JobSupportClass;
1435
+ }
1436
+ function handlesExceptionF($this) {
1437
+ var tmp = $this.ut();
1438
+ var tmp0_safe_receiver = tmp instanceof ChildHandleNode() ? tmp : null;
1439
+ var tmp1_elvis_lhs = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.yy();
1440
+ var tmp_0;
1441
+ if (tmp1_elvis_lhs == null) {
1442
+ return false;
1443
+ } else {
1444
+ tmp_0 = tmp1_elvis_lhs;
1445
+ }
1446
+ var parentJob = tmp_0;
1447
+ while (true) {
1448
+ if (parentJob.xu())
1449
+ return true;
1450
+ var tmp_1 = parentJob.ut();
1451
+ var tmp2_safe_receiver = tmp_1 instanceof ChildHandleNode() ? tmp_1 : null;
1452
+ var tmp3_elvis_lhs = tmp2_safe_receiver == null ? null : tmp2_safe_receiver.yy();
1453
+ var tmp_2;
1454
+ if (tmp3_elvis_lhs == null) {
1455
+ return false;
1456
+ } else {
1457
+ tmp_2 = tmp3_elvis_lhs;
1458
+ }
1459
+ parentJob = tmp_2;
1460
+ }
1461
+ }
1462
+ var JobImplClass;
1463
+ function JobImpl() {
1464
+ if (JobImplClass === VOID) {
1465
+ class $ extends JobSupport() {
1466
+ constructor(parent) {
1467
+ super(true);
1468
+ this.xs(parent);
1469
+ this.l12_1 = handlesExceptionF(this);
1470
+ }
1471
+ ku() {
1472
+ return true;
1473
+ }
1474
+ xu() {
1475
+ return this.l12_1;
1476
+ }
1477
+ kz() {
1478
+ return this.tu(Unit_instance);
1479
+ }
1480
+ jz(exception) {
1481
+ return this.tu(new (CompletedExceptionally())(exception));
1482
+ }
1483
+ }
1484
+ initMetadataForClass($, 'JobImpl', VOID, VOID, [JobSupport(), CompletableJob()], [0]);
1485
+ JobImplClass = $;
1486
+ }
1487
+ return JobImplClass;
1488
+ }
1489
+ var EmptyClass;
1490
+ function Empty() {
1491
+ if (EmptyClass === VOID) {
1492
+ class $ {
1493
+ constructor(isActive) {
1494
+ this.i11_1 = isActive;
1495
+ }
1496
+ ct() {
1497
+ return this.i11_1;
1498
+ }
1499
+ zy() {
1500
+ return null;
1501
+ }
1502
+ toString() {
1503
+ return 'Empty{' + (this.i11_1 ? 'Active' : 'New') + '}';
1504
+ }
1505
+ }
1506
+ initMetadataForClass($, 'Empty', VOID, VOID, [Incomplete()]);
1507
+ EmptyClass = $;
1508
+ }
1509
+ return EmptyClass;
1510
+ }
1511
+ var IncompleteClass;
1512
+ function Incomplete() {
1513
+ if (IncompleteClass === VOID) {
1514
+ class $ {}
1515
+ initMetadataForInterface($, 'Incomplete');
1516
+ IncompleteClass = $;
1517
+ }
1518
+ return IncompleteClass;
1519
+ }
1520
+ var NodeListClass;
1521
+ function NodeList() {
1522
+ if (NodeListClass === VOID) {
1523
+ class $ extends LockFreeLinkedListHead() {
1524
+ ct() {
1525
+ return true;
1526
+ }
1527
+ zy() {
1528
+ return this;
1529
+ }
1530
+ p12(state) {
1531
+ // Inline function 'kotlin.text.buildString' call
1532
+ // Inline function 'kotlin.apply' call
1533
+ var this_0 = StringBuilder().a1();
1534
+ this_0.ib('List{');
1535
+ this_0.ib(state);
1536
+ this_0.ib('}[');
1537
+ var first = true;
1538
+ // Inline function 'kotlinx.coroutines.internal.LockFreeLinkedListHead.forEach' call
1539
+ var cur = this.az_1;
1540
+ while (!equals(cur, this)) {
1541
+ var node = cur;
1542
+ if (node instanceof JobNode()) {
1543
+ if (first) {
1544
+ first = false;
1545
+ } else
1546
+ this_0.ib(', ');
1547
+ this_0.hb(node);
1548
+ }
1549
+ cur = cur.az_1;
1550
+ }
1551
+ this_0.ib(']');
1552
+ return this_0.toString();
1553
+ }
1554
+ toString() {
1555
+ return get_DEBUG() ? this.p12('Active') : super.toString();
1556
+ }
1557
+ }
1558
+ initMetadataForClass($, 'NodeList', NodeList, VOID, [LockFreeLinkedListHead(), Incomplete()]);
1559
+ NodeListClass = $;
1560
+ }
1561
+ return NodeListClass;
1562
+ }
1563
+ var IncompleteStateBoxClass;
1564
+ function IncompleteStateBox() {
1565
+ if (IncompleteStateBoxClass === VOID) {
1566
+ class $ {
1567
+ constructor(state) {
1568
+ this.s10_1 = state;
1569
+ }
1570
+ }
1571
+ initMetadataForClass($, 'IncompleteStateBox');
1572
+ IncompleteStateBoxClass = $;
1573
+ }
1574
+ return IncompleteStateBoxClass;
1575
+ }
1576
+ function boxIncomplete(_this__u8e3s4) {
1577
+ _init_properties_JobSupport_kt__68f172();
1578
+ var tmp;
1579
+ if (!(_this__u8e3s4 == null) ? isInterface(_this__u8e3s4, Incomplete()) : false) {
1580
+ tmp = new (IncompleteStateBox())(_this__u8e3s4);
1581
+ } else {
1582
+ tmp = _this__u8e3s4;
1583
+ }
1584
+ return tmp;
1585
+ }
1586
+ var InactiveNodeListClass;
1587
+ function InactiveNodeList() {
1588
+ if (InactiveNodeListClass === VOID) {
1589
+ class $ {
1590
+ constructor(list) {
1591
+ this.h11_1 = list;
1592
+ }
1593
+ zy() {
1594
+ return this.h11_1;
1595
+ }
1596
+ ct() {
1597
+ return false;
1598
+ }
1599
+ toString() {
1600
+ return get_DEBUG() ? this.h11_1.p12('New') : anyToString(this);
1601
+ }
1602
+ }
1603
+ initMetadataForClass($, 'InactiveNodeList', VOID, VOID, [Incomplete()]);
1604
+ InactiveNodeListClass = $;
1605
+ }
1606
+ return InactiveNodeListClass;
1607
+ }
1608
+ var InvokeOnCompletionClass;
1609
+ function InvokeOnCompletion() {
1610
+ if (InvokeOnCompletionClass === VOID) {
1611
+ class $ extends JobNode() {
1612
+ constructor(handler) {
1613
+ super();
1614
+ this.u12_1 = handler;
1615
+ }
1616
+ ty() {
1617
+ return false;
1618
+ }
1619
+ hw(cause) {
1620
+ return this.u12_1(cause);
1621
+ }
1622
+ }
1623
+ initMetadataForClass($, 'InvokeOnCompletion');
1624
+ InvokeOnCompletionClass = $;
1625
+ }
1626
+ return InvokeOnCompletionClass;
1627
+ }
1628
+ var InvokeOnCancellingClass;
1629
+ function InvokeOnCancelling() {
1630
+ if (InvokeOnCancellingClass === VOID) {
1631
+ class $ extends JobNode() {
1632
+ constructor(handler) {
1633
+ super();
1634
+ this.z12_1 = handler;
1635
+ this.a13_1 = atomic$boolean$1(false);
1636
+ }
1637
+ ty() {
1638
+ return true;
1639
+ }
1640
+ hw(cause) {
1641
+ if (this.a13_1.atomicfu$compareAndSet(false, true))
1642
+ this.z12_1(cause);
1643
+ }
1644
+ }
1645
+ initMetadataForClass($, 'InvokeOnCancelling');
1646
+ InvokeOnCancellingClass = $;
1647
+ }
1648
+ return InvokeOnCancellingClass;
1649
+ }
1650
+ var ResumeOnCompletionClass;
1651
+ function ResumeOnCompletion() {
1652
+ if (ResumeOnCompletionClass === VOID) {
1653
+ class $ extends JobNode() {
1654
+ constructor(continuation) {
1655
+ super();
1656
+ this.f13_1 = continuation;
1657
+ }
1658
+ ty() {
1659
+ return false;
1660
+ }
1661
+ hw(cause) {
1662
+ // Inline function 'kotlin.coroutines.resume' call
1663
+ var this_0 = this.f13_1;
1664
+ // Inline function 'kotlin.Companion.success' call
1665
+ var tmp$ret$0 = _Result___init__impl__xyqfz8(Unit_instance);
1666
+ this_0.vb(tmp$ret$0);
1667
+ return Unit_instance;
1668
+ }
1669
+ }
1670
+ initMetadataForClass($, 'ResumeOnCompletion');
1671
+ ResumeOnCompletionClass = $;
1672
+ }
1673
+ return ResumeOnCompletionClass;
1674
+ }
1675
+ var ChildHandleNodeClass;
1676
+ function ChildHandleNode() {
1677
+ if (ChildHandleNodeClass === VOID) {
1678
+ class $ extends JobNode() {
1679
+ constructor(childJob) {
1680
+ super();
1681
+ this.s11_1 = childJob;
1682
+ }
1683
+ vt() {
1684
+ return this.yy();
1685
+ }
1686
+ ty() {
1687
+ return true;
1688
+ }
1689
+ hw(cause) {
1690
+ return this.s11_1.ou(this.yy());
1691
+ }
1692
+ pu(cause) {
1693
+ return this.yy().pu(cause);
1694
+ }
1695
+ }
1696
+ initMetadataForClass($, 'ChildHandleNode');
1697
+ ChildHandleNodeClass = $;
1698
+ }
1699
+ return ChildHandleNodeClass;
1700
+ }
1701
+ var ResumeAwaitOnCompletionClass;
1702
+ function ResumeAwaitOnCompletion() {
1703
+ if (ResumeAwaitOnCompletionClass === VOID) {
1704
+ class $ extends JobNode() {
1705
+ constructor(continuation) {
1706
+ super();
1707
+ this.k13_1 = continuation;
1708
+ }
1709
+ ty() {
1710
+ return false;
1711
+ }
1712
+ hw(cause) {
1713
+ var state = this.yy().wt();
1714
+ // Inline function 'kotlinx.coroutines.assert' call
1715
+ if (state instanceof CompletedExceptionally()) {
1716
+ var tmp0 = this.k13_1;
1717
+ // Inline function 'kotlin.coroutines.resumeWithException' call
1718
+ // Inline function 'kotlin.Companion.failure' call
1719
+ var exception = state.ht_1;
1720
+ var tmp$ret$1 = _Result___init__impl__xyqfz8(createFailure(exception));
1721
+ tmp0.vb(tmp$ret$1);
1722
+ } else {
1723
+ var tmp0_0 = this.k13_1;
1724
+ var tmp = unboxState(state);
1725
+ // Inline function 'kotlin.coroutines.resume' call
1726
+ // Inline function 'kotlin.Companion.success' call
1727
+ var value = (tmp == null ? true : !(tmp == null)) ? tmp : THROW_CCE();
1728
+ var tmp$ret$3 = _Result___init__impl__xyqfz8(value);
1729
+ tmp0_0.vb(tmp$ret$3);
1730
+ }
1731
+ }
1732
+ }
1733
+ initMetadataForClass($, 'ResumeAwaitOnCompletion');
1734
+ ResumeAwaitOnCompletionClass = $;
1735
+ }
1736
+ return ResumeAwaitOnCompletionClass;
1737
+ }
1738
+ var properties_initialized_JobSupport_kt_5iq8a4;
1739
+ function _init_properties_JobSupport_kt__68f172() {
1740
+ if (!properties_initialized_JobSupport_kt_5iq8a4) {
1741
+ properties_initialized_JobSupport_kt_5iq8a4 = true;
1742
+ COMPLETING_ALREADY = new (Symbol())('COMPLETING_ALREADY');
1743
+ COMPLETING_WAITING_CHILDREN = new (Symbol())('COMPLETING_WAITING_CHILDREN');
1744
+ COMPLETING_RETRY = new (Symbol())('COMPLETING_RETRY');
1745
+ TOO_LATE_TO_CANCEL = new (Symbol())('TOO_LATE_TO_CANCEL');
1746
+ SEALED = new (Symbol())('SEALED');
1747
+ EMPTY_NEW = new (Empty())(false);
1748
+ EMPTY_ACTIVE = new (Empty())(true);
1749
+ }
1750
+ }
1751
+ //region block: exports
1752
+ export {
1753
+ get_COMPLETING_WAITING_CHILDREN as get_COMPLETING_WAITING_CHILDREN3nnjgv5wv89p1,
1754
+ JobImpl as JobImpl2fbttqo93wxua,
1755
+ JobNode as JobNode2tu3g3s3xsko1,
1756
+ JobSupport as JobSupport3fdjh0rbee4be,
1757
+ unboxState as unboxStateze7t12boxn2m,
1758
+ };
1759
+ //endregion
1760
+
1761
+ //# sourceMappingURL=JobSupport.mjs.map