@attocash/commons-js 5.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 (1353) hide show
  1. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Clock.mjs +34 -0
  2. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Clock.mjs.map +1 -0
  3. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/DateTimeUnit.mjs +323 -0
  4. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/DateTimeUnit.mjs.map +1 -0
  5. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/DayOfWeek.mjs +100 -0
  6. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/DayOfWeek.mjs.map +1 -0
  7. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Exceptions.mjs +104 -0
  8. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Exceptions.mjs.map +1 -0
  9. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Instant.mjs +258 -0
  10. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Instant.mjs.map +1 -0
  11. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/JSJodaExceptions.mjs +24 -0
  12. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/JSJodaExceptions.mjs.map +1 -0
  13. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalDate.mjs +247 -0
  14. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalDate.mjs.map +1 -0
  15. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalDateTime.mjs +157 -0
  16. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalDateTime.mjs.map +1 -0
  17. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalTime.mjs +174 -0
  18. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalTime.mjs.map +1 -0
  19. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Month.mjs +126 -0
  20. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Month.mjs.map +1 -0
  21. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/TimeZone.mjs +194 -0
  22. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/TimeZone.mjs.map +1 -0
  23. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/UtcOffset.mjs +263 -0
  24. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/UtcOffset.mjs.map +1 -0
  25. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/DateTimeComponents.mjs +845 -0
  26. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/DateTimeComponents.mjs.map +1 -0
  27. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/DateTimeFormat.mjs +95 -0
  28. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/DateTimeFormat.mjs.map +1 -0
  29. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/DateTimeFormatBuilder.mjs +243 -0
  30. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/DateTimeFormatBuilder.mjs.map +1 -0
  31. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalDateFormat.mjs +864 -0
  32. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalDateFormat.mjs.map +1 -0
  33. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalDateTimeFormat.mjs +317 -0
  34. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalDateTimeFormat.mjs.map +1 -0
  35. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalTimeFormat.mjs +756 -0
  36. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalTimeFormat.mjs.map +1 -0
  37. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/UtcOffsetFormat.mjs +682 -0
  38. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/UtcOffsetFormat.mjs.map +1 -0
  39. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/Builder.mjs +52 -0
  40. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/Builder.mjs.map +1 -0
  41. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FieldFormatDirective.mjs +240 -0
  42. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FieldFormatDirective.mjs.map +1 -0
  43. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FieldSpec.mjs +175 -0
  44. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FieldSpec.mjs.map +1 -0
  45. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FormatStructure.mjs +698 -0
  46. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FormatStructure.mjs.map +1 -0
  47. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/Predicate.mjs +107 -0
  48. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/Predicate.mjs.map +1 -0
  49. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/formatter/Formatter.mjs +71 -0
  50. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/formatter/Formatter.mjs.map +1 -0
  51. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/formatter/FormatterOperation.mjs +124 -0
  52. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/formatter/FormatterOperation.mjs.map +1 -0
  53. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/NumberConsumer.mjs +260 -0
  54. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/NumberConsumer.mjs.map +1 -0
  55. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/ParseResult.mjs +61 -0
  56. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/ParseResult.mjs.map +1 -0
  57. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/Parser.mjs +456 -0
  58. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/Parser.mjs.map +1 -0
  59. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/ParserOperation.mjs +683 -0
  60. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/ParserOperation.mjs.map +1 -0
  61. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/math.mjs +94 -0
  62. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/math.mjs.map +1 -0
  63. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/mathJs.mjs +46 -0
  64. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/mathJs.mjs.map +1 -0
  65. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/util.mjs +57 -0
  66. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/util.mjs.map +1 -0
  67. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/DateTimeUnitSerializers.mjs +442 -0
  68. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/DateTimeUnitSerializers.mjs.map +1 -0
  69. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/InstantSerializers.mjs +53 -0
  70. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/InstantSerializers.mjs.map +1 -0
  71. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalDateSerializers.mjs +53 -0
  72. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalDateSerializers.mjs.map +1 -0
  73. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalDateTimeSerializers.mjs +53 -0
  74. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalDateTimeSerializers.mjs.map +1 -0
  75. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalTimeSerializers.mjs +53 -0
  76. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalTimeSerializers.mjs.map +1 -0
  77. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/TimeZoneSerializers.mjs +130 -0
  78. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/TimeZoneSerializers.mjs.map +1 -0
  79. package/commons-commons-core/cash/atto/commons/AccountUpdate.js.export.d.ts +19 -0
  80. package/commons-commons-core/cash/atto/commons/AccountUpdate.js.export.mjs +23 -0
  81. package/commons-commons-core/cash/atto/commons/AccountUpdate.js.export.mjs.map +1 -0
  82. package/commons-commons-core/cash/atto/commons/AccountUpdate.js.mjs +109 -0
  83. package/commons-commons-core/cash/atto/commons/AccountUpdate.js.mjs.map +1 -0
  84. package/commons-commons-core/cash/atto/commons/AttoAccount.export.d.ts +41 -0
  85. package/commons-commons-core/cash/atto/commons/AttoAccount.export.mjs +19 -0
  86. package/commons-commons-core/cash/atto/commons/AttoAccount.export.mjs.map +1 -0
  87. package/commons-commons-core/cash/atto/commons/AttoAccount.mjs +534 -0
  88. package/commons-commons-core/cash/atto/commons/AttoAccount.mjs.map +1 -0
  89. package/commons-commons-core/cash/atto/commons/AttoAccountEntry.export.d.ts +37 -0
  90. package/commons-commons-core/cash/atto/commons/AttoAccountEntry.export.mjs +19 -0
  91. package/commons-commons-core/cash/atto/commons/AttoAccountEntry.export.mjs.map +1 -0
  92. package/commons-commons-core/cash/atto/commons/AttoAccountEntry.mjs +468 -0
  93. package/commons-commons-core/cash/atto/commons/AttoAccountEntry.mjs.map +1 -0
  94. package/commons-commons-core/cash/atto/commons/AttoAddress.export.d.ts +36 -0
  95. package/commons-commons-core/cash/atto/commons/AttoAddress.export.mjs +19 -0
  96. package/commons-commons-core/cash/atto/commons/AttoAddress.export.mjs.map +1 -0
  97. package/commons-commons-core/cash/atto/commons/AttoAddress.mjs +236 -0
  98. package/commons-commons-core/cash/atto/commons/AttoAddress.mjs.map +1 -0
  99. package/commons-commons-core/cash/atto/commons/AttoAlgorithm.export.d.ts +33 -0
  100. package/commons-commons-core/cash/atto/commons/AttoAlgorithm.export.mjs +25 -0
  101. package/commons-commons-core/cash/atto/commons/AttoAlgorithm.export.mjs.map +1 -0
  102. package/commons-commons-core/cash/atto/commons/AttoAlgorithm.mjs +162 -0
  103. package/commons-commons-core/cash/atto/commons/AttoAlgorithm.mjs.map +1 -0
  104. package/commons-commons-core/cash/atto/commons/AttoAmount.export.d.ts +51 -0
  105. package/commons-commons-core/cash/atto/commons/AttoAmount.export.mjs +30 -0
  106. package/commons-commons-core/cash/atto/commons/AttoAmount.export.mjs.map +1 -0
  107. package/commons-commons-core/cash/atto/commons/AttoAmount.mjs +341 -0
  108. package/commons-commons-core/cash/atto/commons/AttoAmount.mjs.map +1 -0
  109. package/commons-commons-core/cash/atto/commons/AttoBlock.export.d.ts +252 -0
  110. package/commons-commons-core/cash/atto/commons/AttoBlock.export.mjs +61 -0
  111. package/commons-commons-core/cash/atto/commons/AttoBlock.export.mjs.map +1 -0
  112. package/commons-commons-core/cash/atto/commons/AttoBlock.mjs +2483 -0
  113. package/commons-commons-core/cash/atto/commons/AttoBlock.mjs.map +1 -0
  114. package/commons-commons-core/cash/atto/commons/AttoBufferExtensions.mjs +141 -0
  115. package/commons-commons-core/cash/atto/commons/AttoBufferExtensions.mjs.map +1 -0
  116. package/commons-commons-core/cash/atto/commons/AttoChallenge.export.d.ts +25 -0
  117. package/commons-commons-core/cash/atto/commons/AttoChallenge.export.mjs +19 -0
  118. package/commons-commons-core/cash/atto/commons/AttoChallenge.export.mjs.map +1 -0
  119. package/commons-commons-core/cash/atto/commons/AttoChallenge.mjs +133 -0
  120. package/commons-commons-core/cash/atto/commons/AttoChallenge.mjs.map +1 -0
  121. package/commons-commons-core/cash/atto/commons/AttoHash.export.d.ts +35 -0
  122. package/commons-commons-core/cash/atto/commons/AttoHash.export.mjs +19 -0
  123. package/commons-commons-core/cash/atto/commons/AttoHash.export.mjs.map +1 -0
  124. package/commons-commons-core/cash/atto/commons/AttoHash.mjs +182 -0
  125. package/commons-commons-core/cash/atto/commons/AttoHash.mjs.map +1 -0
  126. package/commons-commons-core/cash/atto/commons/AttoHasher.js.mjs +47 -0
  127. package/commons-commons-core/cash/atto/commons/AttoHasher.js.mjs.map +1 -0
  128. package/commons-commons-core/cash/atto/commons/AttoHeight.export.d.ts +30 -0
  129. package/commons-commons-core/cash/atto/commons/AttoHeight.export.mjs +19 -0
  130. package/commons-commons-core/cash/atto/commons/AttoHeight.export.mjs.map +1 -0
  131. package/commons-commons-core/cash/atto/commons/AttoHeight.mjs +233 -0
  132. package/commons-commons-core/cash/atto/commons/AttoHeight.mjs.map +1 -0
  133. package/commons-commons-core/cash/atto/commons/AttoNetwork.export.d.ts +51 -0
  134. package/commons-commons-core/cash/atto/commons/AttoNetwork.export.mjs +33 -0
  135. package/commons-commons-core/cash/atto/commons/AttoNetwork.export.mjs.map +1 -0
  136. package/commons-commons-core/cash/atto/commons/AttoNetwork.mjs +189 -0
  137. package/commons-commons-core/cash/atto/commons/AttoNetwork.mjs.map +1 -0
  138. package/commons-commons-core/cash/atto/commons/AttoPrivateKey.export.d.ts +25 -0
  139. package/commons-commons-core/cash/atto/commons/AttoPrivateKey.export.mjs +19 -0
  140. package/commons-commons-core/cash/atto/commons/AttoPrivateKey.export.mjs.map +1 -0
  141. package/commons-commons-core/cash/atto/commons/AttoPrivateKey.js.mjs +65 -0
  142. package/commons-commons-core/cash/atto/commons/AttoPrivateKey.js.mjs.map +1 -0
  143. package/commons-commons-core/cash/atto/commons/AttoPrivateKey.mjs +189 -0
  144. package/commons-commons-core/cash/atto/commons/AttoPrivateKey.mjs.map +1 -0
  145. package/commons-commons-core/cash/atto/commons/AttoPublicKey.export.d.ts +26 -0
  146. package/commons-commons-core/cash/atto/commons/AttoPublicKey.export.mjs +19 -0
  147. package/commons-commons-core/cash/atto/commons/AttoPublicKey.export.mjs.map +1 -0
  148. package/commons-commons-core/cash/atto/commons/AttoPublicKey.js.mjs +21 -0
  149. package/commons-commons-core/cash/atto/commons/AttoPublicKey.js.mjs.map +1 -0
  150. package/commons-commons-core/cash/atto/commons/AttoPublicKey.mjs +129 -0
  151. package/commons-commons-core/cash/atto/commons/AttoPublicKey.mjs.map +1 -0
  152. package/commons-commons-core/cash/atto/commons/AttoReceivable.export.d.ts +34 -0
  153. package/commons-commons-core/cash/atto/commons/AttoReceivable.export.mjs +19 -0
  154. package/commons-commons-core/cash/atto/commons/AttoReceivable.export.mjs.map +1 -0
  155. package/commons-commons-core/cash/atto/commons/AttoReceivable.mjs +413 -0
  156. package/commons-commons-core/cash/atto/commons/AttoReceivable.mjs.map +1 -0
  157. package/commons-commons-core/cash/atto/commons/AttoSeed.export.d.ts +14 -0
  158. package/commons-commons-core/cash/atto/commons/AttoSeed.export.mjs +13 -0
  159. package/commons-commons-core/cash/atto/commons/AttoSeed.export.mjs.map +1 -0
  160. package/commons-commons-core/cash/atto/commons/AttoSeed.mjs +61 -0
  161. package/commons-commons-core/cash/atto/commons/AttoSeed.mjs.map +1 -0
  162. package/commons-commons-core/cash/atto/commons/AttoSignature.export.d.ts +27 -0
  163. package/commons-commons-core/cash/atto/commons/AttoSignature.export.mjs +19 -0
  164. package/commons-commons-core/cash/atto/commons/AttoSignature.export.mjs.map +1 -0
  165. package/commons-commons-core/cash/atto/commons/AttoSignature.js.mjs +19 -0
  166. package/commons-commons-core/cash/atto/commons/AttoSignature.js.mjs.map +1 -0
  167. package/commons-commons-core/cash/atto/commons/AttoSignature.mjs +135 -0
  168. package/commons-commons-core/cash/atto/commons/AttoSignature.mjs.map +1 -0
  169. package/commons-commons-core/cash/atto/commons/AttoSigner.js.export.d.ts +14 -0
  170. package/commons-commons-core/cash/atto/commons/AttoSigner.js.export.mjs +12 -0
  171. package/commons-commons-core/cash/atto/commons/AttoSigner.js.export.mjs.map +1 -0
  172. package/commons-commons-core/cash/atto/commons/AttoSigner.js.mjs +478 -0
  173. package/commons-commons-core/cash/atto/commons/AttoSigner.js.mjs.map +1 -0
  174. package/commons-commons-core/cash/atto/commons/AttoSigner.mjs +169 -0
  175. package/commons-commons-core/cash/atto/commons/AttoSigner.mjs.map +1 -0
  176. package/commons-commons-core/cash/atto/commons/AttoSocketAddress.export.d.ts +15 -0
  177. package/commons-commons-core/cash/atto/commons/AttoSocketAddress.export.mjs +13 -0
  178. package/commons-commons-core/cash/atto/commons/AttoSocketAddress.export.mjs.map +1 -0
  179. package/commons-commons-core/cash/atto/commons/AttoSocketAddress.mjs +81 -0
  180. package/commons-commons-core/cash/atto/commons/AttoSocketAddress.mjs.map +1 -0
  181. package/commons-commons-core/cash/atto/commons/AttoTransaction.export.d.ts +34 -0
  182. package/commons-commons-core/cash/atto/commons/AttoTransaction.export.mjs +19 -0
  183. package/commons-commons-core/cash/atto/commons/AttoTransaction.export.mjs.map +1 -0
  184. package/commons-commons-core/cash/atto/commons/AttoTransaction.mjs +338 -0
  185. package/commons-commons-core/cash/atto/commons/AttoTransaction.mjs.map +1 -0
  186. package/commons-commons-core/cash/atto/commons/AttoVersion.export.d.ts +25 -0
  187. package/commons-commons-core/cash/atto/commons/AttoVersion.export.mjs +19 -0
  188. package/commons-commons-core/cash/atto/commons/AttoVersion.export.mjs.map +1 -0
  189. package/commons-commons-core/cash/atto/commons/AttoVersion.mjs +156 -0
  190. package/commons-commons-core/cash/atto/commons/AttoVersion.mjs.map +1 -0
  191. package/commons-commons-core/cash/atto/commons/AttoVote.export.d.ts +35 -0
  192. package/commons-commons-core/cash/atto/commons/AttoVote.export.mjs +19 -0
  193. package/commons-commons-core/cash/atto/commons/AttoVote.export.mjs.map +1 -0
  194. package/commons-commons-core/cash/atto/commons/AttoVote.mjs +387 -0
  195. package/commons-commons-core/cash/atto/commons/AttoVote.mjs.map +1 -0
  196. package/commons-commons-core/cash/atto/commons/AttoWork.export.d.ts +29 -0
  197. package/commons-commons-core/cash/atto/commons/AttoWork.export.mjs +19 -0
  198. package/commons-commons-core/cash/atto/commons/AttoWork.export.mjs.map +1 -0
  199. package/commons-commons-core/cash/atto/commons/AttoWork.mjs +250 -0
  200. package/commons-commons-core/cash/atto/commons/AttoWork.mjs.map +1 -0
  201. package/commons-commons-core/cash/atto/commons/Extensions.export.d.ts +4 -0
  202. package/commons-commons-core/cash/atto/commons/Extensions.export.mjs +16 -0
  203. package/commons-commons-core/cash/atto/commons/Extensions.export.mjs.map +1 -0
  204. package/commons-commons-core/cash/atto/commons/Extensions.mjs +99 -0
  205. package/commons-commons-core/cash/atto/commons/Extensions.mjs.map +1 -0
  206. package/commons-commons-core/cash/atto/commons/serialiazer/AttoAddressAsByteArraySerializer.mjs +55 -0
  207. package/commons-commons-core/cash/atto/commons/serialiazer/AttoAddressAsByteArraySerializer.mjs.map +1 -0
  208. package/commons-commons-core/cash/atto/commons/serialiazer/InstantMillisSerializer.mjs +54 -0
  209. package/commons-commons-core/cash/atto/commons/serialiazer/InstantMillisSerializer.mjs.map +1 -0
  210. package/commons-commons-core/cash/atto/commons/utils/Base32.mjs +156 -0
  211. package/commons-commons-core/cash/atto/commons/utils/Base32.mjs.map +1 -0
  212. package/commons-commons-core/cash/atto/commons/utils/SecureRandom.js.mjs +40 -0
  213. package/commons-commons-core/cash/atto/commons/utils/SecureRandom.js.mjs.map +1 -0
  214. package/commons-commons-core.mjs +29 -0
  215. package/commons-commons-core.mjs.map +1 -0
  216. package/commons-commons-js/cash/atto/commons/js/Placeholder.mjs +14 -0
  217. package/commons-commons-js/cash/atto/commons/js/Placeholder.mjs.map +1 -0
  218. package/commons-commons-js.mjs +10 -0
  219. package/commons-commons-js.mjs.map +1 -0
  220. package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.export.d.ts +99 -0
  221. package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.export.mjs +37 -0
  222. package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.export.mjs.map +1 -0
  223. package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.js.export.d.ts +21 -0
  224. package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.js.export.mjs +4 -0
  225. package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.js.export.mjs.map +1 -0
  226. package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.js.mjs +94 -0
  227. package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.js.mjs.map +1 -0
  228. package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.mjs +865 -0
  229. package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.mjs.map +1 -0
  230. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClient.mjs +1857 -0
  231. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClient.mjs.map +1 -0
  232. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeOperationsImpl.js.export.d.ts +3 -0
  233. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeOperationsImpl.js.export.mjs +12 -0
  234. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeOperationsImpl.js.export.mjs.map +1 -0
  235. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeOperationsImpl.js.mjs +577 -0
  236. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeOperationsImpl.js.mjs.map +1 -0
  237. package/commons-commons-node-remote.mjs +7 -0
  238. package/commons-commons-node-remote.mjs.map +1 -0
  239. package/commons-commons-node.mjs +7 -0
  240. package/commons-commons-node.mjs.map +1 -0
  241. package/commons-commons-worker/cash/atto/commons/worker/AttoWorker.mjs +73 -0
  242. package/commons-commons-worker/cash/atto/commons/worker/AttoWorker.mjs.map +1 -0
  243. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerJs.js.export.d.ts +10 -0
  244. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerJs.js.export.mjs +4 -0
  245. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerJs.js.export.mjs.map +1 -0
  246. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerJs.js.mjs +22 -0
  247. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerJs.js.mjs.map +1 -0
  248. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerOperations.mjs +399 -0
  249. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerOperations.mjs.map +1 -0
  250. package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.js.export.d.ts +3 -0
  251. package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.js.export.mjs +12 -0
  252. package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.js.export.mjs.map +1 -0
  253. package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.js.mjs +272 -0
  254. package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.js.mjs.map +1 -0
  255. package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.mjs +402 -0
  256. package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.mjs.map +1 -0
  257. package/commons-commons-worker-remote.mjs +7 -0
  258. package/commons-commons-worker-remote.mjs.map +1 -0
  259. package/commons-commons-worker.mjs +4 -0
  260. package/commons-commons-worker.mjs.map +1 -0
  261. package/index.d.ts +6 -0
  262. package/index.mjs +5 -0
  263. package/kotlin-kotlin-stdlib/KTypeHelpers.mjs +47 -0
  264. package/kotlin-kotlin-stdlib/KTypeHelpers.mjs.map +1 -0
  265. package/kotlin-kotlin-stdlib/kotlin/AutoCloseableJs.mjs +52 -0
  266. package/kotlin-kotlin-stdlib/kotlin/AutoCloseableJs.mjs.map +1 -0
  267. package/kotlin-kotlin-stdlib/kotlin/Char.mjs +133 -0
  268. package/kotlin-kotlin-stdlib/kotlin/Char.mjs.map +1 -0
  269. package/kotlin-kotlin-stdlib/kotlin/CharSequence.mjs +22 -0
  270. package/kotlin-kotlin-stdlib/kotlin/CharSequence.mjs.map +1 -0
  271. package/kotlin-kotlin-stdlib/kotlin/Comparable.mjs +22 -0
  272. package/kotlin-kotlin-stdlib/kotlin/Comparable.mjs.map +1 -0
  273. package/kotlin-kotlin-stdlib/kotlin/ComparatorJs.mjs +22 -0
  274. package/kotlin-kotlin-stdlib/kotlin/ComparatorJs.mjs.map +1 -0
  275. package/kotlin-kotlin-stdlib/kotlin/DeepRecursive.mjs +158 -0
  276. package/kotlin-kotlin-stdlib/kotlin/DeepRecursive.mjs.map +1 -0
  277. package/kotlin-kotlin-stdlib/kotlin/Enum.mjs +71 -0
  278. package/kotlin-kotlin-stdlib/kotlin/Enum.mjs.map +1 -0
  279. package/kotlin-kotlin-stdlib/kotlin/Lazy.mjs +98 -0
  280. package/kotlin-kotlin-stdlib/kotlin/Lazy.mjs.map +1 -0
  281. package/kotlin-kotlin-stdlib/kotlin/Library.mjs +29 -0
  282. package/kotlin-kotlin-stdlib/kotlin/Library.mjs.map +1 -0
  283. package/kotlin-kotlin-stdlib/kotlin/Number.mjs +22 -0
  284. package/kotlin-kotlin-stdlib/kotlin/Number.mjs.map +1 -0
  285. package/kotlin-kotlin-stdlib/kotlin/NumbersJs.mjs +53 -0
  286. package/kotlin-kotlin-stdlib/kotlin/NumbersJs.mjs.map +1 -0
  287. package/kotlin-kotlin-stdlib/kotlin/Primitives.mjs +163 -0
  288. package/kotlin-kotlin-stdlib/kotlin/Primitives.mjs.map +1 -0
  289. package/kotlin-kotlin-stdlib/kotlin/Result.mjs +143 -0
  290. package/kotlin-kotlin-stdlib/kotlin/Result.mjs.map +1 -0
  291. package/kotlin-kotlin-stdlib/kotlin/Standard.mjs +31 -0
  292. package/kotlin-kotlin-stdlib/kotlin/Standard.mjs.map +1 -0
  293. package/kotlin-kotlin-stdlib/kotlin/Tuples.mjs +103 -0
  294. package/kotlin-kotlin-stdlib/kotlin/Tuples.mjs.map +1 -0
  295. package/kotlin-kotlin-stdlib/kotlin/UByte.mjs +105 -0
  296. package/kotlin-kotlin-stdlib/kotlin/UByte.mjs.map +1 -0
  297. package/kotlin-kotlin-stdlib/kotlin/UByteArray.mjs +186 -0
  298. package/kotlin-kotlin-stdlib/kotlin/UByteArray.mjs.map +1 -0
  299. package/kotlin-kotlin-stdlib/kotlin/UInt.mjs +105 -0
  300. package/kotlin-kotlin-stdlib/kotlin/UInt.mjs.map +1 -0
  301. package/kotlin-kotlin-stdlib/kotlin/UIntArray.mjs +186 -0
  302. package/kotlin-kotlin-stdlib/kotlin/UIntArray.mjs.map +1 -0
  303. package/kotlin-kotlin-stdlib/kotlin/ULong.mjs +108 -0
  304. package/kotlin-kotlin-stdlib/kotlin/ULong.mjs.map +1 -0
  305. package/kotlin-kotlin-stdlib/kotlin/ULongArray.mjs +187 -0
  306. package/kotlin-kotlin-stdlib/kotlin/ULongArray.mjs.map +1 -0
  307. package/kotlin-kotlin-stdlib/kotlin/UShort.mjs +106 -0
  308. package/kotlin-kotlin-stdlib/kotlin/UShort.mjs.map +1 -0
  309. package/kotlin-kotlin-stdlib/kotlin/UShortArray.mjs +186 -0
  310. package/kotlin-kotlin-stdlib/kotlin/UShortArray.mjs.map +1 -0
  311. package/kotlin-kotlin-stdlib/kotlin/Unit.mjs +34 -0
  312. package/kotlin-kotlin-stdlib/kotlin/Unit.mjs.map +1 -0
  313. package/kotlin-kotlin-stdlib/kotlin/UnsignedJs.mjs +169 -0
  314. package/kotlin-kotlin-stdlib/kotlin/UnsignedJs.mjs.map +1 -0
  315. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractCollection.mjs +101 -0
  316. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractCollection.mjs.map +1 -0
  317. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractList.mjs +244 -0
  318. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractList.mjs.map +1 -0
  319. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMap.mjs +311 -0
  320. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMap.mjs.map +1 -0
  321. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableCollectionJs.mjs +53 -0
  322. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableCollectionJs.mjs.map +1 -0
  323. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableListJs.mjs +224 -0
  324. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableListJs.mjs.map +1 -0
  325. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableMap.mjs +101 -0
  326. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableMap.mjs.map +1 -0
  327. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableSet.mjs +43 -0
  328. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableSet.mjs.map +1 -0
  329. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractSet.mjs +77 -0
  330. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractSet.mjs.map +1 -0
  331. package/kotlin-kotlin-stdlib/kotlin/collections/ArrayDeque.mjs +547 -0
  332. package/kotlin-kotlin-stdlib/kotlin/collections/ArrayDeque.mjs.map +1 -0
  333. package/kotlin-kotlin-stdlib/kotlin/collections/ArrayFunctions.mjs +44 -0
  334. package/kotlin-kotlin-stdlib/kotlin/collections/ArrayFunctions.mjs.map +1 -0
  335. package/kotlin-kotlin-stdlib/kotlin/collections/ArrayListJs.mjs +214 -0
  336. package/kotlin-kotlin-stdlib/kotlin/collections/ArrayListJs.mjs.map +1 -0
  337. package/kotlin-kotlin-stdlib/kotlin/collections/ArraySorting.mjs +128 -0
  338. package/kotlin-kotlin-stdlib/kotlin/collections/ArraySorting.mjs.map +1 -0
  339. package/kotlin-kotlin-stdlib/kotlin/collections/Collections.mjs +92 -0
  340. package/kotlin-kotlin-stdlib/kotlin/collections/Collections.mjs.map +1 -0
  341. package/kotlin-kotlin-stdlib/kotlin/collections/CollectionsKt.mjs +313 -0
  342. package/kotlin-kotlin-stdlib/kotlin/collections/CollectionsKt.mjs.map +1 -0
  343. package/kotlin-kotlin-stdlib/kotlin/collections/HashMap.mjs +96 -0
  344. package/kotlin-kotlin-stdlib/kotlin/collections/HashMap.mjs.map +1 -0
  345. package/kotlin-kotlin-stdlib/kotlin/collections/HashMapEntry.mjs +174 -0
  346. package/kotlin-kotlin-stdlib/kotlin/collections/HashMapEntry.mjs.map +1 -0
  347. package/kotlin-kotlin-stdlib/kotlin/collections/HashMapEntryDefault.mjs +143 -0
  348. package/kotlin-kotlin-stdlib/kotlin/collections/HashMapEntryDefault.mjs.map +1 -0
  349. package/kotlin-kotlin-stdlib/kotlin/collections/HashSet.mjs +71 -0
  350. package/kotlin-kotlin-stdlib/kotlin/collections/HashSet.mjs.map +1 -0
  351. package/kotlin-kotlin-stdlib/kotlin/collections/IndexedValue.mjs +54 -0
  352. package/kotlin-kotlin-stdlib/kotlin/collections/IndexedValue.mjs.map +1 -0
  353. package/kotlin-kotlin-stdlib/kotlin/collections/InternalHashMap.mjs +726 -0
  354. package/kotlin-kotlin-stdlib/kotlin/collections/InternalHashMap.mjs.map +1 -0
  355. package/kotlin-kotlin-stdlib/kotlin/collections/InternalMap.mjs +63 -0
  356. package/kotlin-kotlin-stdlib/kotlin/collections/InternalMap.mjs.map +1 -0
  357. package/kotlin-kotlin-stdlib/kotlin/collections/Iterables.mjs +65 -0
  358. package/kotlin-kotlin-stdlib/kotlin/collections/Iterables.mjs.map +1 -0
  359. package/kotlin-kotlin-stdlib/kotlin/collections/Iterators.mjs +37 -0
  360. package/kotlin-kotlin-stdlib/kotlin/collections/Iterators.mjs.map +1 -0
  361. package/kotlin-kotlin-stdlib/kotlin/collections/LinkedHashMap.mjs +45 -0
  362. package/kotlin-kotlin-stdlib/kotlin/collections/LinkedHashMap.mjs.map +1 -0
  363. package/kotlin-kotlin-stdlib/kotlin/collections/LinkedHashSet.mjs +48 -0
  364. package/kotlin-kotlin-stdlib/kotlin/collections/LinkedHashSet.mjs.map +1 -0
  365. package/kotlin-kotlin-stdlib/kotlin/collections/MapWithDefault.mjs +43 -0
  366. package/kotlin-kotlin-stdlib/kotlin/collections/MapWithDefault.mjs.map +1 -0
  367. package/kotlin-kotlin-stdlib/kotlin/collections/Maps.mjs +210 -0
  368. package/kotlin-kotlin-stdlib/kotlin/collections/Maps.mjs.map +1 -0
  369. package/kotlin-kotlin-stdlib/kotlin/collections/MutableCollections.mjs +47 -0
  370. package/kotlin-kotlin-stdlib/kotlin/collections/MutableCollections.mjs.map +1 -0
  371. package/kotlin-kotlin-stdlib/kotlin/collections/PrimitiveIterators.mjs +58 -0
  372. package/kotlin-kotlin-stdlib/kotlin/collections/PrimitiveIterators.mjs.map +1 -0
  373. package/kotlin-kotlin-stdlib/kotlin/collections/RandomAccess.mjs +22 -0
  374. package/kotlin-kotlin-stdlib/kotlin/collections/RandomAccess.mjs.map +1 -0
  375. package/kotlin-kotlin-stdlib/kotlin/collections/Sets.mjs +114 -0
  376. package/kotlin-kotlin-stdlib/kotlin/collections/Sets.mjs.map +1 -0
  377. package/kotlin-kotlin-stdlib/kotlin/collections/SlidingWindow.mjs +21 -0
  378. package/kotlin-kotlin-stdlib/kotlin/collections/SlidingWindow.mjs.map +1 -0
  379. package/kotlin-kotlin-stdlib/kotlin/collections/_Arrays.mjs +318 -0
  380. package/kotlin-kotlin-stdlib/kotlin/collections/_Arrays.mjs.map +1 -0
  381. package/kotlin-kotlin-stdlib/kotlin/collections/_ArraysJs.mjs +182 -0
  382. package/kotlin-kotlin-stdlib/kotlin/collections/_ArraysJs.mjs.map +1 -0
  383. package/kotlin-kotlin-stdlib/kotlin/collections/_Collections.mjs +501 -0
  384. package/kotlin-kotlin-stdlib/kotlin/collections/_Collections.mjs.map +1 -0
  385. package/kotlin-kotlin-stdlib/kotlin/collections/_CollectionsJs.mjs +30 -0
  386. package/kotlin-kotlin-stdlib/kotlin/collections/_CollectionsJs.mjs.map +1 -0
  387. package/kotlin-kotlin-stdlib/kotlin/collections/_Maps.mjs +41 -0
  388. package/kotlin-kotlin-stdlib/kotlin/collections/_Maps.mjs.map +1 -0
  389. package/kotlin-kotlin-stdlib/kotlin/collections/_Sets.mjs +32 -0
  390. package/kotlin-kotlin-stdlib/kotlin/collections/_Sets.mjs.map +1 -0
  391. package/kotlin-kotlin-stdlib/kotlin/collections/collectionJs.mjs +137 -0
  392. package/kotlin-kotlin-stdlib/kotlin/collections/collectionJs.mjs.map +1 -0
  393. package/kotlin-kotlin-stdlib/kotlin/collections/collectionsHacks.mjs +67 -0
  394. package/kotlin-kotlin-stdlib/kotlin/collections/collectionsHacks.mjs.map +1 -0
  395. package/kotlin-kotlin-stdlib/kotlin/comparisons/Comparisons.mjs +23 -0
  396. package/kotlin-kotlin-stdlib/kotlin/comparisons/Comparisons.mjs.map +1 -0
  397. package/kotlin-kotlin-stdlib/kotlin/coroutines/Continuation.mjs +39 -0
  398. package/kotlin-kotlin-stdlib/kotlin/coroutines/Continuation.mjs.map +1 -0
  399. package/kotlin-kotlin-stdlib/kotlin/coroutines/ContinuationInterceptor.mjs +78 -0
  400. package/kotlin-kotlin-stdlib/kotlin/coroutines/ContinuationInterceptor.mjs.map +1 -0
  401. package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineContext.mjs +86 -0
  402. package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineContext.mjs.map +1 -0
  403. package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineContextImpl.mjs +238 -0
  404. package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineContextImpl.mjs.map +1 -0
  405. package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineImpl.mjs +150 -0
  406. package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineImpl.mjs.map +1 -0
  407. package/kotlin-kotlin-stdlib/kotlin/coroutines/InterceptedCoroutine.mjs +55 -0
  408. package/kotlin-kotlin-stdlib/kotlin/coroutines/InterceptedCoroutine.mjs.map +1 -0
  409. package/kotlin-kotlin-stdlib/kotlin/coroutines/SafeContinuationJs.mjs +76 -0
  410. package/kotlin-kotlin-stdlib/kotlin/coroutines/SafeContinuationJs.mjs.map +1 -0
  411. package/kotlin-kotlin-stdlib/kotlin/coroutines/cancellation/CancellationException.mjs +43 -0
  412. package/kotlin-kotlin-stdlib/kotlin/coroutines/cancellation/CancellationException.mjs.map +1 -0
  413. package/kotlin-kotlin-stdlib/kotlin/coroutines/intrinsics/Intrinsics.mjs +53 -0
  414. package/kotlin-kotlin-stdlib/kotlin/coroutines/intrinsics/Intrinsics.mjs.map +1 -0
  415. package/kotlin-kotlin-stdlib/kotlin/coroutines/intrinsics/IntrinsicsJs.mjs +139 -0
  416. package/kotlin-kotlin-stdlib/kotlin/coroutines/intrinsics/IntrinsicsJs.mjs.map +1 -0
  417. package/kotlin-kotlin-stdlib/kotlin/enums/EnumEntries.mjs +69 -0
  418. package/kotlin-kotlin-stdlib/kotlin/enums/EnumEntries.mjs.map +1 -0
  419. package/kotlin-kotlin-stdlib/kotlin/exceptions.mjs +437 -0
  420. package/kotlin-kotlin-stdlib/kotlin/exceptions.mjs.map +1 -0
  421. package/kotlin-kotlin-stdlib/kotlin/hacks.mjs +46 -0
  422. package/kotlin-kotlin-stdlib/kotlin/hacks.mjs.map +1 -0
  423. package/kotlin-kotlin-stdlib/kotlin/internal/progressionUtil.mjs +50 -0
  424. package/kotlin-kotlin-stdlib/kotlin/internal/progressionUtil.mjs.map +1 -0
  425. package/kotlin-kotlin-stdlib/kotlin/js/BitMask.mjs +83 -0
  426. package/kotlin-kotlin-stdlib/kotlin/js/BitMask.mjs.map +1 -0
  427. package/kotlin-kotlin-stdlib/kotlin/js/FunctionAdapter.mjs +22 -0
  428. package/kotlin-kotlin-stdlib/kotlin/js/FunctionAdapter.mjs.map +1 -0
  429. package/kotlin-kotlin-stdlib/kotlin/js/JsClass.mjs +16 -0
  430. package/kotlin-kotlin-stdlib/kotlin/js/JsClass.mjs.map +1 -0
  431. package/kotlin-kotlin-stdlib/kotlin/js/arrays.mjs +95 -0
  432. package/kotlin-kotlin-stdlib/kotlin/js/arrays.mjs.map +1 -0
  433. package/kotlin-kotlin-stdlib/kotlin/js/bitUtils.mjs +70 -0
  434. package/kotlin-kotlin-stdlib/kotlin/js/bitUtils.mjs.map +1 -0
  435. package/kotlin-kotlin-stdlib/kotlin/js/charSequenceJs.mjs +51 -0
  436. package/kotlin-kotlin-stdlib/kotlin/js/charSequenceJs.mjs.map +1 -0
  437. package/kotlin-kotlin-stdlib/kotlin/js/compareTo.mjs +79 -0
  438. package/kotlin-kotlin-stdlib/kotlin/js/compareTo.mjs.map +1 -0
  439. package/kotlin-kotlin-stdlib/kotlin/js/coreRuntime.mjs +285 -0
  440. package/kotlin-kotlin-stdlib/kotlin/js/coreRuntime.mjs.map +1 -0
  441. package/kotlin-kotlin-stdlib/kotlin/js/coroutineInternalJS.mjs +15 -0
  442. package/kotlin-kotlin-stdlib/kotlin/js/coroutineInternalJS.mjs.map +1 -0
  443. package/kotlin-kotlin-stdlib/kotlin/js/internal/primitiveCompanionObjects.mjs +238 -0
  444. package/kotlin-kotlin-stdlib/kotlin/js/internal/primitiveCompanionObjects.mjs.map +1 -0
  445. package/kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs +73 -0
  446. package/kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs.map +1 -0
  447. package/kotlin-kotlin-stdlib/kotlin/js/numberConversion.mjs +75 -0
  448. package/kotlin-kotlin-stdlib/kotlin/js/numberConversion.mjs.map +1 -0
  449. package/kotlin-kotlin-stdlib/kotlin/js/rangeTo.mjs +15 -0
  450. package/kotlin-kotlin-stdlib/kotlin/js/rangeTo.mjs.map +1 -0
  451. package/kotlin-kotlin-stdlib/kotlin/js/reflectRuntime.mjs +78 -0
  452. package/kotlin-kotlin-stdlib/kotlin/js/reflectRuntime.mjs.map +1 -0
  453. package/kotlin-kotlin-stdlib/kotlin/js/regexp.mjs +12 -0
  454. package/kotlin-kotlin-stdlib/kotlin/js/regexp.mjs.map +1 -0
  455. package/kotlin-kotlin-stdlib/kotlin/js/typeCheckUtils.mjs +174 -0
  456. package/kotlin-kotlin-stdlib/kotlin/js/typeCheckUtils.mjs.map +1 -0
  457. package/kotlin-kotlin-stdlib/kotlin/js/void.mjs +21 -0
  458. package/kotlin-kotlin-stdlib/kotlin/js/void.mjs.map +1 -0
  459. package/kotlin-kotlin-stdlib/kotlin/kotlin.mjs +55 -0
  460. package/kotlin-kotlin-stdlib/kotlin/kotlin.mjs.map +1 -0
  461. package/kotlin-kotlin-stdlib/kotlin/longJs.mjs +387 -0
  462. package/kotlin-kotlin-stdlib/kotlin/longJs.mjs.map +1 -0
  463. package/kotlin-kotlin-stdlib/kotlin/math/math.mjs +49 -0
  464. package/kotlin-kotlin-stdlib/kotlin/math/math.mjs.map +1 -0
  465. package/kotlin-kotlin-stdlib/kotlin/random/PlatformRandom.mjs +30 -0
  466. package/kotlin-kotlin-stdlib/kotlin/random/PlatformRandom.mjs.map +1 -0
  467. package/kotlin-kotlin-stdlib/kotlin/random/Random.mjs +74 -0
  468. package/kotlin-kotlin-stdlib/kotlin/random/Random.mjs.map +1 -0
  469. package/kotlin-kotlin-stdlib/kotlin/random/XorWowRandom.mjs +99 -0
  470. package/kotlin-kotlin-stdlib/kotlin/random/XorWowRandom.mjs.map +1 -0
  471. package/kotlin-kotlin-stdlib/kotlin/ranges/PrimitiveRanges.mjs +246 -0
  472. package/kotlin-kotlin-stdlib/kotlin/ranges/PrimitiveRanges.mjs.map +1 -0
  473. package/kotlin-kotlin-stdlib/kotlin/ranges/ProgressionIterators.mjs +130 -0
  474. package/kotlin-kotlin-stdlib/kotlin/ranges/ProgressionIterators.mjs.map +1 -0
  475. package/kotlin-kotlin-stdlib/kotlin/ranges/Progressions.mjs +226 -0
  476. package/kotlin-kotlin-stdlib/kotlin/ranges/Progressions.mjs.map +1 -0
  477. package/kotlin-kotlin-stdlib/kotlin/ranges/Range.mjs +26 -0
  478. package/kotlin-kotlin-stdlib/kotlin/ranges/Range.mjs.map +1 -0
  479. package/kotlin-kotlin-stdlib/kotlin/ranges/Ranges.mjs +17 -0
  480. package/kotlin-kotlin-stdlib/kotlin/ranges/Ranges.mjs.map +1 -0
  481. package/kotlin-kotlin-stdlib/kotlin/ranges/_Ranges.mjs +68 -0
  482. package/kotlin-kotlin-stdlib/kotlin/ranges/_Ranges.mjs.map +1 -0
  483. package/kotlin-kotlin-stdlib/kotlin/reflect/KClassJs.mjs +22 -0
  484. package/kotlin-kotlin-stdlib/kotlin/reflect/KClassJs.mjs.map +1 -0
  485. package/kotlin-kotlin-stdlib/kotlin/reflect/KPropertyJs.mjs +52 -0
  486. package/kotlin-kotlin-stdlib/kotlin/reflect/KPropertyJs.mjs.map +1 -0
  487. package/kotlin-kotlin-stdlib/kotlin/reflect/KTypeParameter.mjs +22 -0
  488. package/kotlin-kotlin-stdlib/kotlin/reflect/KTypeParameter.mjs.map +1 -0
  489. package/kotlin-kotlin-stdlib/kotlin/reflect/KTypeProjection.mjs +115 -0
  490. package/kotlin-kotlin-stdlib/kotlin/reflect/KTypeProjection.mjs.map +1 -0
  491. package/kotlin-kotlin-stdlib/kotlin/reflect/KVariance.mjs +50 -0
  492. package/kotlin-kotlin-stdlib/kotlin/reflect/KVariance.mjs.map +1 -0
  493. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KClassImpl.mjs +183 -0
  494. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KClassImpl.mjs.map +1 -0
  495. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KTypeImpl.mjs +80 -0
  496. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KTypeImpl.mjs.map +1 -0
  497. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KTypeParameterImpl.mjs +64 -0
  498. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KTypeParameterImpl.mjs.map +1 -0
  499. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/primitives.mjs +285 -0
  500. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/primitives.mjs.map +1 -0
  501. package/kotlin-kotlin-stdlib/kotlin/sequences/SequenceBuilder.mjs +169 -0
  502. package/kotlin-kotlin-stdlib/kotlin/sequences/SequenceBuilder.mjs.map +1 -0
  503. package/kotlin-kotlin-stdlib/kotlin/sequences/Sequences.mjs +117 -0
  504. package/kotlin-kotlin-stdlib/kotlin/sequences/Sequences.mjs.map +1 -0
  505. package/kotlin-kotlin-stdlib/kotlin/sequences/_Sequences.mjs +64 -0
  506. package/kotlin-kotlin-stdlib/kotlin/sequences/_Sequences.mjs.map +1 -0
  507. package/kotlin-kotlin-stdlib/kotlin/text/Appendable.mjs +30 -0
  508. package/kotlin-kotlin-stdlib/kotlin/text/Appendable.mjs.map +1 -0
  509. package/kotlin-kotlin-stdlib/kotlin/text/Char.mjs +49 -0
  510. package/kotlin-kotlin-stdlib/kotlin/text/Char.mjs.map +1 -0
  511. package/kotlin-kotlin-stdlib/kotlin/text/CharacterCodingExceptionJs.mjs +33 -0
  512. package/kotlin-kotlin-stdlib/kotlin/text/CharacterCodingExceptionJs.mjs.map +1 -0
  513. package/kotlin-kotlin-stdlib/kotlin/text/HexExtensions.mjs +520 -0
  514. package/kotlin-kotlin-stdlib/kotlin/text/HexExtensions.mjs.map +1 -0
  515. package/kotlin-kotlin-stdlib/kotlin/text/HexFormat.mjs +271 -0
  516. package/kotlin-kotlin-stdlib/kotlin/text/HexFormat.mjs.map +1 -0
  517. package/kotlin-kotlin-stdlib/kotlin/text/Indent.mjs +220 -0
  518. package/kotlin-kotlin-stdlib/kotlin/text/Indent.mjs.map +1 -0
  519. package/kotlin-kotlin-stdlib/kotlin/text/StringBuilderJs.mjs +146 -0
  520. package/kotlin-kotlin-stdlib/kotlin/text/StringBuilderJs.mjs.map +1 -0
  521. package/kotlin-kotlin-stdlib/kotlin/text/StringNumberConversions.mjs +154 -0
  522. package/kotlin-kotlin-stdlib/kotlin/text/StringNumberConversions.mjs.map +1 -0
  523. package/kotlin-kotlin-stdlib/kotlin/text/Strings.mjs +847 -0
  524. package/kotlin-kotlin-stdlib/kotlin/text/Strings.mjs.map +1 -0
  525. package/kotlin-kotlin-stdlib/kotlin/text/UStrings.mjs +291 -0
  526. package/kotlin-kotlin-stdlib/kotlin/text/UStrings.mjs.map +1 -0
  527. package/kotlin-kotlin-stdlib/kotlin/text/_CharCategories.mjs +38 -0
  528. package/kotlin-kotlin-stdlib/kotlin/text/_CharCategories.mjs.map +1 -0
  529. package/kotlin-kotlin-stdlib/kotlin/text/_DigitChars.mjs +61 -0
  530. package/kotlin-kotlin-stdlib/kotlin/text/_DigitChars.mjs.map +1 -0
  531. package/kotlin-kotlin-stdlib/kotlin/text/_LetterChars.mjs +118 -0
  532. package/kotlin-kotlin-stdlib/kotlin/text/_LetterChars.mjs.map +1 -0
  533. package/kotlin-kotlin-stdlib/kotlin/text/_Strings.mjs +128 -0
  534. package/kotlin-kotlin-stdlib/kotlin/text/_Strings.mjs.map +1 -0
  535. package/kotlin-kotlin-stdlib/kotlin/text/_WhitespaceChars.mjs +17 -0
  536. package/kotlin-kotlin-stdlib/kotlin/text/_WhitespaceChars.mjs.map +1 -0
  537. package/kotlin-kotlin-stdlib/kotlin/text/charJs.mjs +40 -0
  538. package/kotlin-kotlin-stdlib/kotlin/text/charJs.mjs.map +1 -0
  539. package/kotlin-kotlin-stdlib/kotlin/text/numberConversions.mjs +119 -0
  540. package/kotlin-kotlin-stdlib/kotlin/text/numberConversions.mjs.map +1 -0
  541. package/kotlin-kotlin-stdlib/kotlin/text/regex.mjs +100 -0
  542. package/kotlin-kotlin-stdlib/kotlin/text/regex.mjs.map +1 -0
  543. package/kotlin-kotlin-stdlib/kotlin/text/stringJs.mjs +256 -0
  544. package/kotlin-kotlin-stdlib/kotlin/text/stringJs.mjs.map +1 -0
  545. package/kotlin-kotlin-stdlib/kotlin/text/stringsCode.mjs +139 -0
  546. package/kotlin-kotlin-stdlib/kotlin/text/stringsCode.mjs.map +1 -0
  547. package/kotlin-kotlin-stdlib/kotlin/text/utf8Encoding.mjs +255 -0
  548. package/kotlin-kotlin-stdlib/kotlin/text/utf8Encoding.mjs.map +1 -0
  549. package/kotlin-kotlin-stdlib/kotlin/throwableExtensions.mjs +225 -0
  550. package/kotlin-kotlin-stdlib/kotlin/throwableExtensions.mjs.map +1 -0
  551. package/kotlin-kotlin-stdlib/kotlin/time/Duration.mjs +773 -0
  552. package/kotlin-kotlin-stdlib/kotlin/time/Duration.mjs.map +1 -0
  553. package/kotlin-kotlin-stdlib/kotlin/time/DurationUnit.mjs +80 -0
  554. package/kotlin-kotlin-stdlib/kotlin/time/DurationUnit.mjs.map +1 -0
  555. package/kotlin-kotlin-stdlib/kotlin/time/DurationUnitJs.mjs +111 -0
  556. package/kotlin-kotlin-stdlib/kotlin/time/DurationUnitJs.mjs.map +1 -0
  557. package/kotlin-kotlin-stdlib/kotlin/uuid/Uuid.mjs +179 -0
  558. package/kotlin-kotlin-stdlib/kotlin/uuid/Uuid.mjs.map +1 -0
  559. package/kotlin-kotlin-stdlib/kotlin/uuid/UuidJs.mjs +84 -0
  560. package/kotlin-kotlin-stdlib/kotlin/uuid/UuidJs.mjs.map +1 -0
  561. package/kotlin-kotlin-stdlib/noPackageHacks.mjs +62 -0
  562. package/kotlin-kotlin-stdlib/noPackageHacks.mjs.map +1 -0
  563. package/kotlin-kotlin-stdlib/reflection.mjs +181 -0
  564. package/kotlin-kotlin-stdlib/reflection.mjs.map +1 -0
  565. package/kotlin-kotlin-stdlib/reflectionJs.mjs +67 -0
  566. package/kotlin-kotlin-stdlib/reflectionJs.mjs.map +1 -0
  567. package/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLogging.mjs +38 -0
  568. package/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLogging.mjs.map +1 -0
  569. package/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerDirect.mjs +26 -0
  570. package/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerDirect.mjs.map +1 -0
  571. package/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerFactory.mjs +34 -0
  572. package/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerFactory.mjs.map +1 -0
  573. package/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerNameResolver.mjs +53 -0
  574. package/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerNameResolver.mjs.map +1 -0
  575. package/kotlinx-atomicfu/kotlinx/atomicfu/AtomicFU.common.mjs +47 -0
  576. package/kotlinx-atomicfu/kotlinx/atomicfu/AtomicFU.common.mjs.map +1 -0
  577. package/kotlinx-atomicfu/kotlinx/atomicfu/AtomicFU.mjs +232 -0
  578. package/kotlinx-atomicfu/kotlinx/atomicfu/AtomicFU.mjs.map +1 -0
  579. package/kotlinx-atomicfu/kotlinx/atomicfu/Trace.common.mjs +55 -0
  580. package/kotlinx-atomicfu/kotlinx/atomicfu/Trace.common.mjs.map +1 -0
  581. package/kotlinx-coroutines-core/kotlinx/coroutines/AbstractCoroutine.mjs +98 -0
  582. package/kotlinx-coroutines-core/kotlinx/coroutines/AbstractCoroutine.mjs.map +1 -0
  583. package/kotlinx-coroutines-core/kotlinx/coroutines/Builders.common.mjs +285 -0
  584. package/kotlinx-coroutines-core/kotlinx/coroutines/Builders.common.mjs.map +1 -0
  585. package/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuation.mjs +96 -0
  586. package/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuation.mjs.map +1 -0
  587. package/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuationImpl.mjs +855 -0
  588. package/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuationImpl.mjs.map +1 -0
  589. package/kotlinx-coroutines-core/kotlinx/coroutines/CompletableDeferred.mjs +105 -0
  590. package/kotlinx-coroutines-core/kotlinx/coroutines/CompletableDeferred.mjs.map +1 -0
  591. package/kotlinx-coroutines-core/kotlinx/coroutines/CompletableJob.mjs +23 -0
  592. package/kotlinx-coroutines-core/kotlinx/coroutines/CompletableJob.mjs.map +1 -0
  593. package/kotlinx-coroutines-core/kotlinx/coroutines/CompletionState.mjs +108 -0
  594. package/kotlinx-coroutines-core/kotlinx/coroutines/CompletionState.mjs.map +1 -0
  595. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineContext.mjs +96 -0
  596. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineContext.mjs.map +1 -0
  597. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineDispatcher.mjs +87 -0
  598. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineDispatcher.mjs.map +1 -0
  599. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineExceptionHandler.mjs +72 -0
  600. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineExceptionHandler.mjs.map +1 -0
  601. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineName.mjs +65 -0
  602. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineName.mjs.map +1 -0
  603. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineScope.mjs +78 -0
  604. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineScope.mjs.map +1 -0
  605. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineStart.mjs +83 -0
  606. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineStart.mjs.map +1 -0
  607. package/kotlinx-coroutines-core/kotlinx/coroutines/Debug.common.mjs +22 -0
  608. package/kotlinx-coroutines-core/kotlinx/coroutines/Debug.common.mjs.map +1 -0
  609. package/kotlinx-coroutines-core/kotlinx/coroutines/Debug.mjs +39 -0
  610. package/kotlinx-coroutines-core/kotlinx/coroutines/Debug.mjs.map +1 -0
  611. package/kotlinx-coroutines-core/kotlinx/coroutines/Delay.mjs +59 -0
  612. package/kotlinx-coroutines-core/kotlinx/coroutines/Delay.mjs.map +1 -0
  613. package/kotlinx-coroutines-core/kotlinx/coroutines/DispatchedTask.mjs +221 -0
  614. package/kotlinx-coroutines-core/kotlinx/coroutines/DispatchedTask.mjs.map +1 -0
  615. package/kotlinx-coroutines-core/kotlinx/coroutines/Dispatchers.mjs +75 -0
  616. package/kotlinx-coroutines-core/kotlinx/coroutines/Dispatchers.mjs.map +1 -0
  617. package/kotlinx-coroutines-core/kotlinx/coroutines/EventLoop.common.mjs +134 -0
  618. package/kotlinx-coroutines-core/kotlinx/coroutines/EventLoop.common.mjs.map +1 -0
  619. package/kotlinx-coroutines-core/kotlinx/coroutines/EventLoop.mjs +34 -0
  620. package/kotlinx-coroutines-core/kotlinx/coroutines/EventLoop.mjs.map +1 -0
  621. package/kotlinx-coroutines-core/kotlinx/coroutines/Exceptions.common.mjs +49 -0
  622. package/kotlinx-coroutines-core/kotlinx/coroutines/Exceptions.common.mjs.map +1 -0
  623. package/kotlinx-coroutines-core/kotlinx/coroutines/Exceptions.mjs +79 -0
  624. package/kotlinx-coroutines-core/kotlinx/coroutines/Exceptions.mjs.map +1 -0
  625. package/kotlinx-coroutines-core/kotlinx/coroutines/JSDispatcher.mjs +410 -0
  626. package/kotlinx-coroutines-core/kotlinx/coroutines/JSDispatcher.mjs.map +1 -0
  627. package/kotlinx-coroutines-core/kotlinx/coroutines/Job.mjs +213 -0
  628. package/kotlinx-coroutines-core/kotlinx/coroutines/Job.mjs.map +1 -0
  629. package/kotlinx-coroutines-core/kotlinx/coroutines/JobSupport.mjs +1910 -0
  630. package/kotlinx-coroutines-core/kotlinx/coroutines/JobSupport.mjs.map +1 -0
  631. package/kotlinx-coroutines-core/kotlinx/coroutines/MainCoroutineDispatcher.mjs +56 -0
  632. package/kotlinx-coroutines-core/kotlinx/coroutines/MainCoroutineDispatcher.mjs.map +1 -0
  633. package/kotlinx-coroutines-core/kotlinx/coroutines/Promise.mjs +83 -0
  634. package/kotlinx-coroutines-core/kotlinx/coroutines/Promise.mjs.map +1 -0
  635. package/kotlinx-coroutines-core/kotlinx/coroutines/Runnable.mjs +22 -0
  636. package/kotlinx-coroutines-core/kotlinx/coroutines/Runnable.mjs.map +1 -0
  637. package/kotlinx-coroutines-core/kotlinx/coroutines/SchedulerTask.mjs +23 -0
  638. package/kotlinx-coroutines-core/kotlinx/coroutines/SchedulerTask.mjs.map +1 -0
  639. package/kotlinx-coroutines-core/kotlinx/coroutines/Supervisor.mjs +31 -0
  640. package/kotlinx-coroutines-core/kotlinx/coroutines/Supervisor.mjs.map +1 -0
  641. package/kotlinx-coroutines-core/kotlinx/coroutines/Timeout.mjs +175 -0
  642. package/kotlinx-coroutines-core/kotlinx/coroutines/Timeout.mjs.map +1 -0
  643. package/kotlinx-coroutines-core/kotlinx/coroutines/Unconfined.mjs +67 -0
  644. package/kotlinx-coroutines-core/kotlinx/coroutines/Unconfined.mjs.map +1 -0
  645. package/kotlinx-coroutines-core/kotlinx/coroutines/Waiter.mjs +22 -0
  646. package/kotlinx-coroutines-core/kotlinx/coroutines/Waiter.mjs.map +1 -0
  647. package/kotlinx-coroutines-core/kotlinx/coroutines/Window.mjs +28 -0
  648. package/kotlinx-coroutines-core/kotlinx/coroutines/Window.mjs.map +1 -0
  649. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/BufferOverflow.mjs +50 -0
  650. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/BufferOverflow.mjs.map +1 -0
  651. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/BufferedChannel.mjs +3352 -0
  652. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/BufferedChannel.mjs.map +1 -0
  653. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Channel.mjs +320 -0
  654. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Channel.mjs.map +1 -0
  655. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/ChannelCoroutine.mjs +76 -0
  656. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/ChannelCoroutine.mjs.map +1 -0
  657. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Channels.common.mjs +24 -0
  658. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Channels.common.mjs.map +1 -0
  659. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/ConflatedBufferedChannel.mjs +106 -0
  660. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/ConflatedBufferedChannel.mjs.map +1 -0
  661. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Produce.mjs +93 -0
  662. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Produce.mjs.map +1 -0
  663. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Builders.mjs +135 -0
  664. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Builders.mjs.map +1 -0
  665. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Flow.mjs +100 -0
  666. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Flow.mjs.map +1 -0
  667. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/FlowCollector.mjs +22 -0
  668. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/FlowCollector.mjs.map +1 -0
  669. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Reduce.mjs +196 -0
  670. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Reduce.mjs.map +1 -0
  671. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/FlowExceptions.common.mjs +13 -0
  672. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/FlowExceptions.common.mjs.map +1 -0
  673. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/FlowExceptions.mjs +31 -0
  674. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/FlowExceptions.mjs.map +1 -0
  675. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.common.mjs +69 -0
  676. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.common.mjs.map +1 -0
  677. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.mjs +49 -0
  678. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.mjs.map +1 -0
  679. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Concurrent.mjs +15 -0
  680. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Concurrent.mjs.map +1 -0
  681. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/ConcurrentLinkedList.mjs +302 -0
  682. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/ConcurrentLinkedList.mjs.map +1 -0
  683. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/CoroutineExceptionHandlerImpl.common.mjs +62 -0
  684. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/CoroutineExceptionHandlerImpl.common.mjs.map +1 -0
  685. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/CoroutineExceptionHandlerImpl.mjs +56 -0
  686. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/CoroutineExceptionHandlerImpl.mjs.map +1 -0
  687. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/DispatchedContinuation.mjs +335 -0
  688. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/DispatchedContinuation.mjs.map +1 -0
  689. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/InlineList.mjs +48 -0
  690. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/InlineList.mjs.map +1 -0
  691. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/LinkedList.mjs +86 -0
  692. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/LinkedList.mjs.map +1 -0
  693. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/OnUndeliveredElement.mjs +62 -0
  694. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/OnUndeliveredElement.mjs.map +1 -0
  695. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Scopes.mjs +64 -0
  696. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Scopes.mjs.map +1 -0
  697. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/StackTraceRecovery.mjs +23 -0
  698. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/StackTraceRecovery.mjs.map +1 -0
  699. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Symbol.mjs +29 -0
  700. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Symbol.mjs.map +1 -0
  701. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Synchronized.mjs +22 -0
  702. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Synchronized.mjs.map +1 -0
  703. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/SystemProps.common.mjs +50 -0
  704. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/SystemProps.common.mjs.map +1 -0
  705. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/SystemProps.mjs +12 -0
  706. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/SystemProps.mjs.map +1 -0
  707. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/ThreadContext.mjs +12 -0
  708. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/ThreadContext.mjs.map +1 -0
  709. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/ThreadLocal.mjs +37 -0
  710. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/ThreadLocal.mjs.map +1 -0
  711. package/kotlinx-coroutines-core/kotlinx/coroutines/intrinsics/Cancellable.mjs +90 -0
  712. package/kotlinx-coroutines-core/kotlinx/coroutines/intrinsics/Cancellable.mjs.map +1 -0
  713. package/kotlinx-coroutines-core/kotlinx/coroutines/intrinsics/Undispatched.mjs +133 -0
  714. package/kotlinx-coroutines-core/kotlinx/coroutines/intrinsics/Undispatched.mjs.map +1 -0
  715. package/kotlinx-coroutines-core/kotlinx/coroutines/selects/Select.mjs +268 -0
  716. package/kotlinx-coroutines-core/kotlinx/coroutines/selects/Select.mjs.map +1 -0
  717. package/kotlinx-coroutines-core/kotlinx/coroutines/sync/Semaphore.mjs +453 -0
  718. package/kotlinx-coroutines-core/kotlinx/coroutines/sync/Semaphore.mjs.map +1 -0
  719. package/kotlinx-io-kotlinx-io-bytestring/kotlinx/io/bytestring/ByteString.mjs +210 -0
  720. package/kotlinx-io-kotlinx-io-bytestring/kotlinx/io/bytestring/ByteString.mjs.map +1 -0
  721. package/kotlinx-io-kotlinx-io-bytestring/kotlinx/io/bytestring/unsafe/UnsafeByteStringOperations.mjs +34 -0
  722. package/kotlinx-io-kotlinx-io-bytestring/kotlinx/io/bytestring/unsafe/UnsafeByteStringOperations.mjs.map +1 -0
  723. package/kotlinx-io-kotlinx-io-core/kotlinx/io/-PlatformJs.mjs +67 -0
  724. package/kotlinx-io-kotlinx-io-core/kotlinx/io/-PlatformJs.mjs.map +1 -0
  725. package/kotlinx-io-kotlinx-io-core/kotlinx/io/-Util.mjs +48 -0
  726. package/kotlinx-io-kotlinx-io-core/kotlinx/io/-Util.mjs.map +1 -0
  727. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffer.mjs +599 -0
  728. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffer.mjs.map +1 -0
  729. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffers.mjs +153 -0
  730. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffers.mjs.map +1 -0
  731. package/kotlinx-io-kotlinx-io-core/kotlinx/io/ByteStrings.mjs +16 -0
  732. package/kotlinx-io-kotlinx-io-core/kotlinx/io/ByteStrings.mjs.map +1 -0
  733. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Core.mjs +15 -0
  734. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Core.mjs.map +1 -0
  735. package/kotlinx-io-kotlinx-io-core/kotlinx/io/PeekSource.mjs +81 -0
  736. package/kotlinx-io-kotlinx-io-core/kotlinx/io/PeekSource.mjs.map +1 -0
  737. package/kotlinx-io-kotlinx-io-core/kotlinx/io/RealSource.mjs +179 -0
  738. package/kotlinx-io-kotlinx-io-core/kotlinx/io/RealSource.mjs.map +1 -0
  739. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Segment.mjs +528 -0
  740. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Segment.mjs.map +1 -0
  741. package/kotlinx-io-kotlinx-io-core/kotlinx/io/SegmentPool.mjs +46 -0
  742. package/kotlinx-io-kotlinx-io-core/kotlinx/io/SegmentPool.mjs.map +1 -0
  743. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sink.mjs +37 -0
  744. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sink.mjs.map +1 -0
  745. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sinks.mjs +77 -0
  746. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sinks.mjs.map +1 -0
  747. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Source.mjs +23 -0
  748. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Source.mjs.map +1 -0
  749. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sources.mjs +148 -0
  750. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sources.mjs.map +1 -0
  751. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Utf8.mjs +249 -0
  752. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Utf8.mjs.map +1 -0
  753. package/kotlinx-io-kotlinx-io-core/kotlinx/io/UtilsJs.mjs +24 -0
  754. package/kotlinx-io-kotlinx-io-core/kotlinx/io/UtilsJs.mjs.map +1 -0
  755. package/kotlinx-io-kotlinx-io-core/kotlinx/io/internal/-Utf8.mjs +361 -0
  756. package/kotlinx-io-kotlinx-io-core/kotlinx/io/internal/-Utf8.mjs.map +1 -0
  757. package/kotlinx-io-kotlinx-io-core/kotlinx/io/unsafe/UnsafeBufferOperations.mjs +102 -0
  758. package/kotlinx-io-kotlinx-io-core/kotlinx/io/unsafe/UnsafeBufferOperations.mjs.map +1 -0
  759. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/KSerializer.mjs +42 -0
  760. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/KSerializer.mjs.map +1 -0
  761. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/PolymorphicSerializer.mjs +107 -0
  762. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/PolymorphicSerializer.mjs.map +1 -0
  763. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SealedSerializer.mjs +193 -0
  764. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SealedSerializer.mjs.map +1 -0
  765. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerialFormat.mjs +32 -0
  766. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerialFormat.mjs.map +1 -0
  767. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializationExceptions.mjs +89 -0
  768. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializationExceptions.mjs.map +1 -0
  769. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/Serializers.mjs +282 -0
  770. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/Serializers.mjs.map +1 -0
  771. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializersCache.mjs +153 -0
  772. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializersCache.mjs.map +1 -0
  773. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializersJs.mjs +46 -0
  774. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializersJs.mjs.map +1 -0
  775. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/builtins/BuiltinSerializers.mjs +216 -0
  776. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/builtins/BuiltinSerializers.mjs.map +1 -0
  777. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/ContextAware.mjs +117 -0
  778. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/ContextAware.mjs.map +1 -0
  779. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptor.mjs +126 -0
  780. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptor.mjs.map +1 -0
  781. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptors.mjs +304 -0
  782. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptors.mjs.map +1 -0
  783. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialKinds.mjs +438 -0
  784. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialKinds.mjs.map +1 -0
  785. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractDecoder.mjs +137 -0
  786. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractDecoder.mjs.map +1 -0
  787. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractEncoder.mjs +148 -0
  788. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractEncoder.mjs.map +1 -0
  789. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Decoding.mjs +49 -0
  790. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Decoding.mjs.map +1 -0
  791. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Encoding.mjs +47 -0
  792. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Encoding.mjs.map +1 -0
  793. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/AbstractPolymorphicSerializer.mjs +141 -0
  794. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/AbstractPolymorphicSerializer.mjs.map +1 -0
  795. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/BuiltInSerializers.mjs +135 -0
  796. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/BuiltInSerializers.mjs.map +1 -0
  797. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CachedNames.mjs +22 -0
  798. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CachedNames.mjs.map +1 -0
  799. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionDescriptors.mjs +313 -0
  800. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionDescriptors.mjs.map +1 -0
  801. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionSerializers.mjs +711 -0
  802. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionSerializers.mjs.map +1 -0
  803. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ElementMarker.mjs +130 -0
  804. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ElementMarker.mjs.map +1 -0
  805. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Enums.mjs +198 -0
  806. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Enums.mjs.map +1 -0
  807. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/InlineClassDescriptor.mjs +127 -0
  808. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/InlineClassDescriptor.mjs.map +1 -0
  809. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/JsonInternalDependencies.mjs +15 -0
  810. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/JsonInternalDependencies.mjs.map +1 -0
  811. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NoOpEncoder.mjs +78 -0
  812. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NoOpEncoder.mjs.map +1 -0
  813. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NothingSerialDescriptor.mjs +86 -0
  814. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NothingSerialDescriptor.mjs.map +1 -0
  815. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NullableSerializer.mjs +138 -0
  816. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NullableSerializer.mjs.map +1 -0
  817. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ObjectSerializer.mjs +92 -0
  818. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ObjectSerializer.mjs.map +1 -0
  819. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Platform.common.mjs +127 -0
  820. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Platform.common.mjs.map +1 -0
  821. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Platform.mjs +260 -0
  822. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Platform.mjs.map +1 -0
  823. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginExceptions.mjs +33 -0
  824. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginExceptions.mjs.map +1 -0
  825. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginGeneratedSerialDescriptor.mjs +333 -0
  826. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginGeneratedSerialDescriptor.mjs.map +1 -0
  827. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginHelperInterfaces.mjs +53 -0
  828. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginHelperInterfaces.mjs.map +1 -0
  829. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PrimitiveArraysSerializers.mjs +1317 -0
  830. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PrimitiveArraysSerializers.mjs.map +1 -0
  831. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Primitives.mjs +488 -0
  832. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Primitives.mjs.map +1 -0
  833. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tagged.mjs +260 -0
  834. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tagged.mjs.map +1 -0
  835. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tuples.mjs +318 -0
  836. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tuples.mjs.map +1 -0
  837. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ValueClasses.mjs +211 -0
  838. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ValueClasses.mjs.map +1 -0
  839. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModule.mjs +209 -0
  840. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModule.mjs.map +1 -0
  841. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModuleBuilders.mjs +15 -0
  842. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModuleBuilders.mjs.map +1 -0
  843. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModuleCollector.mjs +31 -0
  844. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModuleCollector.mjs.map +1 -0
  845. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/Json.mjs +198 -0
  846. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/Json.mjs.map +1 -0
  847. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonAnnotations.mjs +42 -0
  848. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonAnnotations.mjs.map +1 -0
  849. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonConfiguration.mjs +96 -0
  850. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonConfiguration.mjs.map +1 -0
  851. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonDecoder.mjs +26 -0
  852. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonDecoder.mjs.map +1 -0
  853. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElement.mjs +431 -0
  854. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElement.mjs.map +1 -0
  855. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElementSerializers.mjs +570 -0
  856. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElementSerializers.mjs.map +1 -0
  857. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonEncoder.mjs +26 -0
  858. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonEncoder.mjs.map +1 -0
  859. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonSchemaCache.mjs +12 -0
  860. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonSchemaCache.mjs.map +1 -0
  861. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/AbstractJsonLexer.mjs +756 -0
  862. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/AbstractJsonLexer.mjs.map +1 -0
  863. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/CommentLexers.mjs +107 -0
  864. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/CommentLexers.mjs.map +1 -0
  865. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Composers.mjs +221 -0
  866. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Composers.mjs.map +1 -0
  867. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonElementMarker.mjs +48 -0
  868. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonElementMarker.mjs.map +1 -0
  869. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonExceptions.mjs +126 -0
  870. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonExceptions.mjs.map +1 -0
  871. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonNamesMap.mjs +259 -0
  872. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonNamesMap.mjs.map +1 -0
  873. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonPath.mjs +155 -0
  874. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonPath.mjs.map +1 -0
  875. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonSerializersModuleValidator.mjs +107 -0
  876. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonSerializersModuleValidator.mjs.map +1 -0
  877. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonStreams.mjs +24 -0
  878. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonStreams.mjs.map +1 -0
  879. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonToStringWriterJsWasm.mjs +47 -0
  880. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonToStringWriterJsWasm.mjs.map +1 -0
  881. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonTreeReader.mjs +364 -0
  882. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonTreeReader.mjs.map +1 -0
  883. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Polymorphic.mjs +64 -0
  884. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Polymorphic.mjs.map +1 -0
  885. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/SchemaCache.mjs +80 -0
  886. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/SchemaCache.mjs.map +1 -0
  887. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonDecoder.mjs +699 -0
  888. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonDecoder.mjs.map +1 -0
  889. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonEncoder.mjs +381 -0
  890. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonEncoder.mjs.map +1 -0
  891. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StringJsonLexer.mjs +170 -0
  892. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StringJsonLexer.mjs.map +1 -0
  893. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StringOps.mjs +179 -0
  894. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StringOps.mjs.map +1 -0
  895. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/TreeJsonDecoder.mjs +990 -0
  896. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/TreeJsonDecoder.mjs.map +1 -0
  897. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/WriteMode.mjs +136 -0
  898. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/WriteMode.mjs.map +1 -0
  899. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/createMapForCache.mjs +15 -0
  900. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/createMapForCache.mjs.map +1 -0
  901. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/CIOCommon.mjs +56 -0
  902. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/CIOCommon.mjs.map +1 -0
  903. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/CIOEngine.mjs +381 -0
  904. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/CIOEngine.mjs.map +1 -0
  905. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/CIOEngineConfig.mjs +52 -0
  906. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/CIOEngineConfig.mjs.map +1 -0
  907. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/ConnectionFactory.mjs +161 -0
  908. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/ConnectionFactory.mjs.map +1 -0
  909. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/ConnectionPipeline.nonJvm.mjs +39 -0
  910. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/ConnectionPipeline.nonJvm.mjs.map +1 -0
  911. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/Endpoint.mjs +1338 -0
  912. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/Endpoint.mjs.map +1 -0
  913. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/EngineTasks.mjs +122 -0
  914. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/EngineTasks.mjs.map +1 -0
  915. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/ExceptionUtils.nonJvm.mjs +12 -0
  916. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/ExceptionUtils.nonJvm.mjs.map +1 -0
  917. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/Loader.js.export.d.ts +4 -0
  918. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/Loader.js.export.mjs +13 -0
  919. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/Loader.js.export.mjs.map +1 -0
  920. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/Loader.js.mjs +29 -0
  921. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/Loader.js.mjs.map +1 -0
  922. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/utils.mjs +1339 -0
  923. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/utils.mjs.map +1 -0
  924. package/ktor-ktor-client-cio.mjs +12 -0
  925. package/ktor-ktor-client-cio.mjs.map +1 -0
  926. package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/ContentNegotiation.mjs +816 -0
  927. package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/ContentNegotiation.mjs.map +1 -0
  928. package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/DefaultIgnoredTypesJs.mjs +25 -0
  929. package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/DefaultIgnoredTypesJs.mjs.map +1 -0
  930. package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/JsonContentTypeMatcher.mjs +39 -0
  931. package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/JsonContentTypeMatcher.mjs.map +1 -0
  932. package/ktor-ktor-client-core/io/ktor/client/HttpClient.mjs +430 -0
  933. package/ktor-ktor-client-core/io/ktor/client/HttpClient.mjs.map +1 -0
  934. package/ktor-ktor-client-core/io/ktor/client/HttpClientConfig.mjs +149 -0
  935. package/ktor-ktor-client-core/io/ktor/client/HttpClientConfig.mjs.map +1 -0
  936. package/ktor-ktor-client-core/io/ktor/client/HttpClientJs.mjs +59 -0
  937. package/ktor-ktor-client-core/io/ktor/client/HttpClientJs.mjs.map +1 -0
  938. package/ktor-ktor-client-core/io/ktor/client/JsRequestUtils.mjs +71 -0
  939. package/ktor-ktor-client-core/io/ktor/client/JsRequestUtils.mjs.map +1 -0
  940. package/ktor-ktor-client-core/io/ktor/client/call/DelegatedCall.mjs +112 -0
  941. package/ktor-ktor-client-core/io/ktor/client/call/DelegatedCall.mjs.map +1 -0
  942. package/ktor-ktor-client-core/io/ktor/client/call/HttpClientCall.mjs +311 -0
  943. package/ktor-ktor-client-core/io/ktor/client/call/HttpClientCall.mjs.map +1 -0
  944. package/ktor-ktor-client-core/io/ktor/client/call/SavedCall.mjs +183 -0
  945. package/ktor-ktor-client-core/io/ktor/client/call/SavedCall.mjs.map +1 -0
  946. package/ktor-ktor-client-core/io/ktor/client/call/utils.mjs +47 -0
  947. package/ktor-ktor-client-core/io/ktor/client/call/utils.mjs.map +1 -0
  948. package/ktor-ktor-client-core/io/ktor/client/content/ObservableContent.mjs +179 -0
  949. package/ktor-ktor-client-core/io/ktor/client/content/ObservableContent.mjs.map +1 -0
  950. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngine.mjs +476 -0
  951. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngine.mjs.map +1 -0
  952. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineBase.js.mjs +15 -0
  953. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineBase.js.mjs.map +1 -0
  954. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineBase.mjs +128 -0
  955. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineBase.mjs.map +1 -0
  956. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineCapability.mjs +70 -0
  957. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineCapability.mjs.map +1 -0
  958. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineConfig.mjs +29 -0
  959. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineConfig.mjs.map +1 -0
  960. package/ktor-ktor-client-core/io/ktor/client/engine/Loader.mjs +84 -0
  961. package/ktor-ktor-client-core/io/ktor/client/engine/Loader.mjs.map +1 -0
  962. package/ktor-ktor-client-core/io/ktor/client/engine/ProxyConfig.mjs +40 -0
  963. package/ktor-ktor-client-core/io/ktor/client/engine/ProxyConfig.mjs.map +1 -0
  964. package/ktor-ktor-client-core/io/ktor/client/engine/ProxyConfigJs.mjs +23 -0
  965. package/ktor-ktor-client-core/io/ktor/client/engine/ProxyConfigJs.mjs.map +1 -0
  966. package/ktor-ktor-client-core/io/ktor/client/engine/Utils.mjs +158 -0
  967. package/ktor-ktor-client-core/io/ktor/client/engine/Utils.mjs.map +1 -0
  968. package/ktor-ktor-client-core/io/ktor/client/engine/js/Js.export.d.ts +4 -0
  969. package/ktor-ktor-client-core/io/ktor/client/engine/js/Js.export.mjs +13 -0
  970. package/ktor-ktor-client-core/io/ktor/client/engine/js/Js.export.mjs.map +1 -0
  971. package/ktor-ktor-client-core/io/ktor/client/engine/js/Js.mjs +92 -0
  972. package/ktor-ktor-client-core/io/ktor/client/engine/js/Js.mjs.map +1 -0
  973. package/ktor-ktor-client-core/io/ktor/client/engine/js/JsClientEngine.mjs +496 -0
  974. package/ktor-ktor-client-core/io/ktor/client/engine/js/JsClientEngine.mjs.map +1 -0
  975. package/ktor-ktor-client-core/io/ktor/client/engine/js/JsUtils.mjs +330 -0
  976. package/ktor-ktor-client-core/io/ktor/client/engine/js/JsUtils.mjs.map +1 -0
  977. package/ktor-ktor-client-core/io/ktor/client/engine/js/ReadableStream.mjs +13 -0
  978. package/ktor-ktor-client-core/io/ktor/client/engine/js/ReadableStream.mjs.map +1 -0
  979. package/ktor-ktor-client-core/io/ktor/client/engine/js/browser/BrowserFetch.mjs +212 -0
  980. package/ktor-ktor-client-core/io/ktor/client/engine/js/browser/BrowserFetch.mjs.map +1 -0
  981. package/ktor-ktor-client-core/io/ktor/client/engine/js/compatibility/Utils.mjs +77 -0
  982. package/ktor-ktor-client-core/io/ktor/client/engine/js/compatibility/Utils.mjs.map +1 -0
  983. package/ktor-ktor-client-core/io/ktor/client/network/sockets/TimeoutExceptions.nonJvm.mjs +31 -0
  984. package/ktor-ktor-client-core/io/ktor/client/network/sockets/TimeoutExceptions.nonJvm.mjs.map +1 -0
  985. package/ktor-ktor-client-core/io/ktor/client/plugins/BodyProgress.mjs +467 -0
  986. package/ktor-ktor-client-core/io/ktor/client/plugins/BodyProgress.mjs.map +1 -0
  987. package/ktor-ktor-client-core/io/ktor/client/plugins/DefaultResponseValidation.mjs +288 -0
  988. package/ktor-ktor-client-core/io/ktor/client/plugins/DefaultResponseValidation.mjs.map +1 -0
  989. package/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransform.mjs +632 -0
  990. package/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransform.mjs.map +1 -0
  991. package/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransformJs.mjs +15 -0
  992. package/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransformJs.mjs.map +1 -0
  993. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpCallValidator.mjs +916 -0
  994. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpCallValidator.mjs.map +1 -0
  995. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpClientPlugin.mjs +70 -0
  996. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpClientPlugin.mjs.map +1 -0
  997. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpPlainText.mjs +524 -0
  998. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpPlainText.mjs.map +1 -0
  999. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpRedirect.mjs +288 -0
  1000. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpRedirect.mjs.map +1 -0
  1001. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestLifecycle.mjs +358 -0
  1002. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestLifecycle.mjs.map +1 -0
  1003. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpSend.mjs +420 -0
  1004. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpSend.mjs.map +1 -0
  1005. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpTimeout.mjs +513 -0
  1006. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpTimeout.mjs.map +1 -0
  1007. package/ktor-ktor-client-core/io/ktor/client/plugins/SaveBody.mjs +333 -0
  1008. package/ktor-ktor-client-core/io/ktor/client/plugins/SaveBody.mjs.map +1 -0
  1009. package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientHook.mjs +30 -0
  1010. package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientHook.mjs.map +1 -0
  1011. package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientPluginBuilder.mjs +52 -0
  1012. package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientPluginBuilder.mjs.map +1 -0
  1013. package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientPluginInstance.mjs +52 -0
  1014. package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientPluginInstance.mjs.map +1 -0
  1015. package/ktor-ktor-client-core/io/ktor/client/plugins/api/CommonHooks.mjs +245 -0
  1016. package/ktor-ktor-client-core/io/ktor/client/plugins/api/CommonHooks.mjs.map +1 -0
  1017. package/ktor-ktor-client-core/io/ktor/client/plugins/api/CreatePluginUtils.mjs +90 -0
  1018. package/ktor-ktor-client-core/io/ktor/client/plugins/api/CreatePluginUtils.mjs.map +1 -0
  1019. package/ktor-ktor-client-core/io/ktor/client/plugins/api/KtorCallContexts.mjs +297 -0
  1020. package/ktor-ktor-client-core/io/ktor/client/plugins/api/KtorCallContexts.mjs.map +1 -0
  1021. package/ktor-ktor-client-core/io/ktor/client/plugins/sse/SSE.mjs +46 -0
  1022. package/ktor-ktor-client-core/io/ktor/client/plugins/sse/SSE.mjs.map +1 -0
  1023. package/ktor-ktor-client-core/io/ktor/client/plugins/sse/SSEClientContent.mjs +23 -0
  1024. package/ktor-ktor-client-core/io/ktor/client/plugins/sse/SSEClientContent.mjs.map +1 -0
  1025. package/ktor-ktor-client-core/io/ktor/client/plugins/websocket/JsWebSocketSession.mjs +332 -0
  1026. package/ktor-ktor-client-core/io/ktor/client/plugins/websocket/JsWebSocketSession.mjs.map +1 -0
  1027. package/ktor-ktor-client-core/io/ktor/client/plugins/websocket/WebSockets.mjs +100 -0
  1028. package/ktor-ktor-client-core/io/ktor/client/plugins/websocket/WebSockets.mjs.map +1 -0
  1029. package/ktor-ktor-client-core/io/ktor/client/request/ClientUpgradeContent.mjs +23 -0
  1030. package/ktor-ktor-client-core/io/ktor/client/request/ClientUpgradeContent.mjs.map +1 -0
  1031. package/ktor-ktor-client-core/io/ktor/client/request/DefaultHttpRequest.mjs +50 -0
  1032. package/ktor-ktor-client-core/io/ktor/client/request/DefaultHttpRequest.mjs.map +1 -0
  1033. package/ktor-ktor-client-core/io/ktor/client/request/HttpRequest.mjs +286 -0
  1034. package/ktor-ktor-client-core/io/ktor/client/request/HttpRequest.mjs.map +1 -0
  1035. package/ktor-ktor-client-core/io/ktor/client/request/HttpRequestPipeline.mjs +107 -0
  1036. package/ktor-ktor-client-core/io/ktor/client/request/HttpRequestPipeline.mjs.map +1 -0
  1037. package/ktor-ktor-client-core/io/ktor/client/request/RequestBody.mjs +48 -0
  1038. package/ktor-ktor-client-core/io/ktor/client/request/RequestBody.mjs.map +1 -0
  1039. package/ktor-ktor-client-core/io/ktor/client/request/UnixSockets.mjs +46 -0
  1040. package/ktor-ktor-client-core/io/ktor/client/request/UnixSockets.mjs.map +1 -0
  1041. package/ktor-ktor-client-core/io/ktor/client/request/utils.mjs +15 -0
  1042. package/ktor-ktor-client-core/io/ktor/client/request/utils.mjs.map +1 -0
  1043. package/ktor-ktor-client-core/io/ktor/client/statement/DefaultHttpResponse.mjs +67 -0
  1044. package/ktor-ktor-client-core/io/ktor/client/statement/DefaultHttpResponse.mjs.map +1 -0
  1045. package/ktor-ktor-client-core/io/ktor/client/statement/HttpResponse.mjs +197 -0
  1046. package/ktor-ktor-client-core/io/ktor/client/statement/HttpResponse.mjs.map +1 -0
  1047. package/ktor-ktor-client-core/io/ktor/client/statement/HttpResponsePipeline.mjs +153 -0
  1048. package/ktor-ktor-client-core/io/ktor/client/statement/HttpResponsePipeline.mjs.map +1 -0
  1049. package/ktor-ktor-client-core/io/ktor/client/statement/HttpStatement.mjs +417 -0
  1050. package/ktor-ktor-client-core/io/ktor/client/statement/HttpStatement.mjs.map +1 -0
  1051. package/ktor-ktor-client-core/io/ktor/client/utils/ByteChannelUtils.mjs +209 -0
  1052. package/ktor-ktor-client-core/io/ktor/client/utils/ByteChannelUtils.mjs.map +1 -0
  1053. package/ktor-ktor-client-core/io/ktor/client/utils/ClientEvents.mjs +69 -0
  1054. package/ktor-ktor-client-core/io/ktor/client/utils/ClientEvents.mjs.map +1 -0
  1055. package/ktor-ktor-client-core/io/ktor/client/utils/Content.mjs +55 -0
  1056. package/ktor-ktor-client-core/io/ktor/client/utils/Content.mjs.map +1 -0
  1057. package/ktor-ktor-client-core/io/ktor/client/utils/ExceptionUtils.nonJvm.mjs +24 -0
  1058. package/ktor-ktor-client-core/io/ktor/client/utils/ExceptionUtils.nonJvm.mjs.map +1 -0
  1059. package/ktor-ktor-client-core/io/ktor/client/utils/HeadersUtils.mjs +79 -0
  1060. package/ktor-ktor-client-core/io/ktor/client/utils/HeadersUtils.mjs.map +1 -0
  1061. package/ktor-ktor-client-core/io/ktor/client/utils/headers.mjs +30 -0
  1062. package/ktor-ktor-client-core/io/ktor/client/utils/headers.mjs.map +1 -0
  1063. package/ktor-ktor-client-core.mjs +12 -0
  1064. package/ktor-ktor-client-core.mjs.map +1 -0
  1065. package/ktor-ktor-events/io/ktor/events/Events.mjs +97 -0
  1066. package/ktor-ktor-events/io/ktor/events/Events.mjs.map +1 -0
  1067. package/ktor-ktor-http/io/ktor/http/Codecs.mjs +382 -0
  1068. package/ktor-ktor-http/io/ktor/http/Codecs.mjs.map +1 -0
  1069. package/ktor-ktor-http/io/ktor/http/ContentTypes.mjs +457 -0
  1070. package/ktor-ktor-http/io/ktor/http/ContentTypes.mjs.map +1 -0
  1071. package/ktor-ktor-http/io/ktor/http/HeaderValueWithParameters.mjs +219 -0
  1072. package/ktor-ktor-http/io/ktor/http/HeaderValueWithParameters.mjs.map +1 -0
  1073. package/ktor-ktor-http/io/ktor/http/Headers.mjs +153 -0
  1074. package/ktor-ktor-http/io/ktor/http/Headers.mjs.map +1 -0
  1075. package/ktor-ktor-http/io/ktor/http/HttpHeaderValueParser.mjs +373 -0
  1076. package/ktor-ktor-http/io/ktor/http/HttpHeaderValueParser.mjs.map +1 -0
  1077. package/ktor-ktor-http/io/ktor/http/HttpHeaders.mjs +244 -0
  1078. package/ktor-ktor-http/io/ktor/http/HttpHeaders.mjs.map +1 -0
  1079. package/ktor-ktor-http/io/ktor/http/HttpMessageProperties.mjs +54 -0
  1080. package/ktor-ktor-http/io/ktor/http/HttpMessageProperties.mjs.map +1 -0
  1081. package/ktor-ktor-http/io/ktor/http/HttpMethod.mjs +95 -0
  1082. package/ktor-ktor-http/io/ktor/http/HttpMethod.mjs.map +1 -0
  1083. package/ktor-ktor-http/io/ktor/http/HttpProtocolVersion.mjs +108 -0
  1084. package/ktor-ktor-http/io/ktor/http/HttpProtocolVersion.mjs.map +1 -0
  1085. package/ktor-ktor-http/io/ktor/http/HttpStatusCode.mjs +150 -0
  1086. package/ktor-ktor-http/io/ktor/http/HttpStatusCode.mjs.map +1 -0
  1087. package/ktor-ktor-http/io/ktor/http/Parameters.mjs +144 -0
  1088. package/ktor-ktor-http/io/ktor/http/Parameters.mjs.map +1 -0
  1089. package/ktor-ktor-http/io/ktor/http/Query.mjs +109 -0
  1090. package/ktor-ktor-http/io/ktor/http/Query.mjs.map +1 -0
  1091. package/ktor-ktor-http/io/ktor/http/URLBuilder.mjs +284 -0
  1092. package/ktor-ktor-http/io/ktor/http/URLBuilder.mjs.map +1 -0
  1093. package/ktor-ktor-http/io/ktor/http/URLBuilderJs.mjs +30 -0
  1094. package/ktor-ktor-http/io/ktor/http/URLBuilderJs.mjs.map +1 -0
  1095. package/ktor-ktor-http/io/ktor/http/URLParser.mjs +400 -0
  1096. package/ktor-ktor-http/io/ktor/http/URLParser.mjs.map +1 -0
  1097. package/ktor-ktor-http/io/ktor/http/URLProtocol.mjs +141 -0
  1098. package/ktor-ktor-http/io/ktor/http/URLProtocol.mjs.map +1 -0
  1099. package/ktor-ktor-http/io/ktor/http/URLUtils.mjs +187 -0
  1100. package/ktor-ktor-http/io/ktor/http/URLUtils.mjs.map +1 -0
  1101. package/ktor-ktor-http/io/ktor/http/Url.mjs +384 -0
  1102. package/ktor-ktor-http/io/ktor/http/Url.mjs.map +1 -0
  1103. package/ktor-ktor-http/io/ktor/http/UrlDecodedParametersBuilder.mjs +157 -0
  1104. package/ktor-ktor-http/io/ktor/http/UrlDecodedParametersBuilder.mjs.map +1 -0
  1105. package/ktor-ktor-http/io/ktor/http/content/ByteArrayContent.mjs +42 -0
  1106. package/ktor-ktor-http/io/ktor/http/content/ByteArrayContent.mjs.map +1 -0
  1107. package/ktor-ktor-http/io/ktor/http/content/Multipart.mjs +22 -0
  1108. package/ktor-ktor-http/io/ktor/http/content/Multipart.mjs.map +1 -0
  1109. package/ktor-ktor-http/io/ktor/http/content/OutgoingContent.mjs +137 -0
  1110. package/ktor-ktor-http/io/ktor/http/content/OutgoingContent.mjs.map +1 -0
  1111. package/ktor-ktor-http/io/ktor/http/content/TextContent.mjs +51 -0
  1112. package/ktor-ktor-http/io/ktor/http/content/TextContent.mjs.map +1 -0
  1113. package/ktor-ktor-http-cio/io/ktor/http/cio/CIOMultipartDataBase.mjs +36 -0
  1114. package/ktor-ktor-http-cio/io/ktor/http/cio/CIOMultipartDataBase.mjs.map +1 -0
  1115. package/ktor-ktor-http-cio/io/ktor/http/cio/ChunkedTransferEncoding.mjs +680 -0
  1116. package/ktor-ktor-http-cio/io/ktor/http/cio/ChunkedTransferEncoding.mjs.map +1 -0
  1117. package/ktor-ktor-http-cio/io/ktor/http/cio/ConnectionOptions.mjs +221 -0
  1118. package/ktor-ktor-http-cio/io/ktor/http/cio/ConnectionOptions.mjs.map +1 -0
  1119. package/ktor-ktor-http-cio/io/ktor/http/cio/HttpBody.mjs +171 -0
  1120. package/ktor-ktor-http-cio/io/ktor/http/cio/HttpBody.mjs.map +1 -0
  1121. package/ktor-ktor-http-cio/io/ktor/http/cio/HttpHeadersMap.mjs +389 -0
  1122. package/ktor-ktor-http-cio/io/ktor/http/cio/HttpHeadersMap.mjs.map +1 -0
  1123. package/ktor-ktor-http-cio/io/ktor/http/cio/HttpParser.mjs +468 -0
  1124. package/ktor-ktor-http-cio/io/ktor/http/cio/HttpParser.mjs.map +1 -0
  1125. package/ktor-ktor-http-cio/io/ktor/http/cio/Multipart.mjs +888 -0
  1126. package/ktor-ktor-http-cio/io/ktor/http/cio/Multipart.mjs.map +1 -0
  1127. package/ktor-ktor-http-cio/io/ktor/http/cio/RequestResponse.mjs +51 -0
  1128. package/ktor-ktor-http-cio/io/ktor/http/cio/RequestResponse.mjs.map +1 -0
  1129. package/ktor-ktor-http-cio/io/ktor/http/cio/RequestResponseBuilderJs.mjs +58 -0
  1130. package/ktor-ktor-http-cio/io/ktor/http/cio/RequestResponseBuilderJs.mjs.map +1 -0
  1131. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/AsciiCharTree.mjs +314 -0
  1132. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/AsciiCharTree.mjs.map +1 -0
  1133. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayBuilder.mjs +366 -0
  1134. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayBuilder.mjs.map +1 -0
  1135. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayPool.mjs +64 -0
  1136. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayPool.mjs.map +1 -0
  1137. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayPoolJs.mjs +12 -0
  1138. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayPoolJs.mjs.map +1 -0
  1139. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/Chars.mjs +477 -0
  1140. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/Chars.mjs.map +1 -0
  1141. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/Errors.mjs +30 -0
  1142. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/Errors.mjs.map +1 -0
  1143. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/MutableRange.mjs +30 -0
  1144. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/MutableRange.mjs.map +1 -0
  1145. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/Tokenizer.mjs +61 -0
  1146. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/Tokenizer.mjs.map +1 -0
  1147. package/ktor-ktor-io/io/ktor/utils/io/ByteChannel.jsAndWasmShared.mjs +12 -0
  1148. package/ktor-ktor-io/io/ktor/utils/io/ByteChannel.jsAndWasmShared.mjs.map +1 -0
  1149. package/ktor-ktor-io/io/ktor/utils/io/ByteChannel.mjs +700 -0
  1150. package/ktor-ktor-io/io/ktor/utils/io/ByteChannel.mjs.map +1 -0
  1151. package/ktor-ktor-io/io/ktor/utils/io/ByteChannelCtor.mjs +27 -0
  1152. package/ktor-ktor-io/io/ktor/utils/io/ByteChannelCtor.mjs.map +1 -0
  1153. package/ktor-ktor-io/io/ktor/utils/io/ByteChannelScanner.mjs +414 -0
  1154. package/ktor-ktor-io/io/ktor/utils/io/ByteChannelScanner.mjs.map +1 -0
  1155. package/ktor-ktor-io/io/ktor/utils/io/ByteChannelUtils.mjs +28 -0
  1156. package/ktor-ktor-io/io/ktor/utils/io/ByteChannelUtils.mjs.map +1 -0
  1157. package/ktor-ktor-io/io/ktor/utils/io/ByteReadChannel.mjs +89 -0
  1158. package/ktor-ktor-io/io/ktor/utils/io/ByteReadChannel.mjs.map +1 -0
  1159. package/ktor-ktor-io/io/ktor/utils/io/ByteReadChannelOperations.mjs +1825 -0
  1160. package/ktor-ktor-io/io/ktor/utils/io/ByteReadChannelOperations.mjs.map +1 -0
  1161. package/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannel.mjs +124 -0
  1162. package/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannel.mjs.map +1 -0
  1163. package/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannelOperations.mjs +509 -0
  1164. package/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannelOperations.mjs.map +1 -0
  1165. package/ktor-ktor-io/io/ktor/utils/io/CloseHookByteWriteChannel.mjs +107 -0
  1166. package/ktor-ktor-io/io/ktor/utils/io/CloseHookByteWriteChannel.mjs.map +1 -0
  1167. package/ktor-ktor-io/io/ktor/utils/io/CloseToken.mjs +89 -0
  1168. package/ktor-ktor-io/io/ktor/utils/io/CloseToken.mjs.map +1 -0
  1169. package/ktor-ktor-io/io/ktor/utils/io/CountedByteReadChannel.mjs +139 -0
  1170. package/ktor-ktor-io/io/ktor/utils/io/CountedByteReadChannel.mjs.map +1 -0
  1171. package/ktor-ktor-io/io/ktor/utils/io/Deprecation.mjs +15 -0
  1172. package/ktor-ktor-io/io/ktor/utils/io/Deprecation.mjs.map +1 -0
  1173. package/ktor-ktor-io/io/ktor/utils/io/Exceptions.mjs +65 -0
  1174. package/ktor-ktor-io/io/ktor/utils/io/Exceptions.mjs.map +1 -0
  1175. package/ktor-ktor-io/io/ktor/utils/io/LineEndingMode.mjs +118 -0
  1176. package/ktor-ktor-io/io/ktor/utils/io/LineEndingMode.mjs.map +1 -0
  1177. package/ktor-ktor-io/io/ktor/utils/io/SourceByteReadChannel.mjs +72 -0
  1178. package/ktor-ktor-io/io/ktor/utils/io/SourceByteReadChannel.mjs.map +1 -0
  1179. package/ktor-ktor-io/io/ktor/utils/io/charsets/Charset.js.mjs +406 -0
  1180. package/ktor-ktor-io/io/ktor/utils/io/charsets/Charset.js.mjs.map +1 -0
  1181. package/ktor-ktor-io/io/ktor/utils/io/charsets/Decoder.js.mjs +34 -0
  1182. package/ktor-ktor-io/io/ktor/utils/io/charsets/Decoder.js.mjs.map +1 -0
  1183. package/ktor-ktor-io/io/ktor/utils/io/charsets/Encoding.mjs +78 -0
  1184. package/ktor-ktor-io/io/ktor/utils/io/charsets/Encoding.mjs.map +1 -0
  1185. package/ktor-ktor-io/io/ktor/utils/io/charsets/ISO88591.mjs +38 -0
  1186. package/ktor-ktor-io/io/ktor/utils/io/charsets/ISO88591.mjs.map +1 -0
  1187. package/ktor-ktor-io/io/ktor/utils/io/charsets/TextDecoder.js.mjs +43 -0
  1188. package/ktor-ktor-io/io/ktor/utils/io/charsets/TextDecoder.js.mjs.map +1 -0
  1189. package/ktor-ktor-io/io/ktor/utils/io/charsets/TextDecoderFallback.js.mjs +110 -0
  1190. package/ktor-ktor-io/io/ktor/utils/io/charsets/TextDecoderFallback.js.mjs.map +1 -0
  1191. package/ktor-ktor-io/io/ktor/utils/io/charsets/Win1252Table.mjs +22 -0
  1192. package/ktor-ktor-io/io/ktor/utils/io/charsets/Win1252Table.mjs.map +1 -0
  1193. package/ktor-ktor-io/io/ktor/utils/io/core/Buffer.mjs +12 -0
  1194. package/ktor-ktor-io/io/ktor/utils/io/core/Buffer.mjs.map +1 -0
  1195. package/ktor-ktor-io/io/ktor/utils/io/core/Buffers.mjs +17 -0
  1196. package/ktor-ktor-io/io/ktor/utils/io/core/Buffers.mjs.map +1 -0
  1197. package/ktor-ktor-io/io/ktor/utils/io/core/BytePacketBuilder.mjs +38 -0
  1198. package/ktor-ktor-io/io/ktor/utils/io/core/BytePacketBuilder.mjs.map +1 -0
  1199. package/ktor-ktor-io/io/ktor/utils/io/core/ByteReadPacket.mjs +54 -0
  1200. package/ktor-ktor-io/io/ktor/utils/io/core/ByteReadPacket.mjs.map +1 -0
  1201. package/ktor-ktor-io/io/ktor/utils/io/core/Input.mjs +18 -0
  1202. package/ktor-ktor-io/io/ktor/utils/io/core/Input.mjs.map +1 -0
  1203. package/ktor-ktor-io/io/ktor/utils/io/core/Memory.mjs +22 -0
  1204. package/ktor-ktor-io/io/ktor/utils/io/core/Memory.mjs.map +1 -0
  1205. package/ktor-ktor-io/io/ktor/utils/io/core/Strings.mjs +60 -0
  1206. package/ktor-ktor-io/io/ktor/utils/io/core/Strings.mjs.map +1 -0
  1207. package/ktor-ktor-io/io/ktor/utils/io/pool/ByteArrayPool.mjs +42 -0
  1208. package/ktor-ktor-io/io/ktor/utils/io/pool/ByteArrayPool.mjs.map +1 -0
  1209. package/ktor-ktor-io/io/ktor/utils/io/pool/DefaultPool.mjs +81 -0
  1210. package/ktor-ktor-io/io/ktor/utils/io/pool/DefaultPool.mjs.map +1 -0
  1211. package/ktor-ktor-io/io/ktor/utils/io/pool/Pool.mjs +50 -0
  1212. package/ktor-ktor-io/io/ktor/utils/io/pool/Pool.mjs.map +1 -0
  1213. package/ktor-ktor-network/io/ktor/network/selector/Selectable.jsAndWasmShared.mjs +22 -0
  1214. package/ktor-ktor-network/io/ktor/network/selector/Selectable.jsAndWasmShared.mjs.map +1 -0
  1215. package/ktor-ktor-network/io/ktor/network/selector/SelectorManager.jsAndWasmShared.mjs +42 -0
  1216. package/ktor-ktor-network/io/ktor/network/selector/SelectorManager.jsAndWasmShared.mjs.map +1 -0
  1217. package/ktor-ktor-network/io/ktor/network/sockets/Builders.mjs +35 -0
  1218. package/ktor-ktor-network/io/ktor/network/sockets/Builders.mjs.map +1 -0
  1219. package/ktor-ktor-network/io/ktor/network/sockets/SocketAddress.nonJvm.mjs +107 -0
  1220. package/ktor-ktor-network/io/ktor/network/sockets/SocketAddress.nonJvm.mjs.map +1 -0
  1221. package/ktor-ktor-network/io/ktor/network/sockets/SocketBase.mjs +304 -0
  1222. package/ktor-ktor-network/io/ktor/network/sockets/SocketBase.mjs.map +1 -0
  1223. package/ktor-ktor-network/io/ktor/network/sockets/SocketContext.mjs +573 -0
  1224. package/ktor-ktor-network/io/ktor/network/sockets/SocketContext.mjs.map +1 -0
  1225. package/ktor-ktor-network/io/ktor/network/sockets/SocketEngine.jsAndWasmShared.mjs +26 -0
  1226. package/ktor-ktor-network/io/ktor/network/sockets/SocketEngine.jsAndWasmShared.mjs.map +1 -0
  1227. package/ktor-ktor-network/io/ktor/network/sockets/SocketOptions.mjs +129 -0
  1228. package/ktor-ktor-network/io/ktor/network/sockets/SocketOptions.mjs.map +1 -0
  1229. package/ktor-ktor-network/io/ktor/network/sockets/SocketTimeoutException.mjs +33 -0
  1230. package/ktor-ktor-network/io/ktor/network/sockets/SocketTimeoutException.mjs.map +1 -0
  1231. package/ktor-ktor-network/io/ktor/network/sockets/Sockets.mjs +71 -0
  1232. package/ktor-ktor-network/io/ktor/network/sockets/Sockets.mjs.map +1 -0
  1233. package/ktor-ktor-network/io/ktor/network/sockets/TcpSocketBuilder.mjs +34 -0
  1234. package/ktor-ktor-network/io/ktor/network/sockets/TcpSocketBuilder.mjs.map +1 -0
  1235. package/ktor-ktor-network/io/ktor/network/sockets/TypeOfService.mjs +41 -0
  1236. package/ktor-ktor-network/io/ktor/network/sockets/TypeOfService.mjs.map +1 -0
  1237. package/ktor-ktor-network/io/ktor/network/sockets/nodejs/node.net.js.mjs +56 -0
  1238. package/ktor-ktor-network/io/ktor/network/sockets/nodejs/node.net.js.mjs.map +1 -0
  1239. package/ktor-ktor-network/io/ktor/network/sockets/nodejs/node.net.mjs +163 -0
  1240. package/ktor-ktor-network/io/ktor/network/sockets/nodejs/node.net.mjs.map +1 -0
  1241. package/ktor-ktor-network-tls/io/ktor/network/tls/TLSClientSession.nonJvm.mjs +18 -0
  1242. package/ktor-ktor-network-tls/io/ktor/network/tls/TLSClientSession.nonJvm.mjs.map +1 -0
  1243. package/ktor-ktor-network-tls/io/ktor/network/tls/TLSCommon.mjs +99 -0
  1244. package/ktor-ktor-network-tls/io/ktor/network/tls/TLSCommon.mjs.map +1 -0
  1245. package/ktor-ktor-network-tls/io/ktor/network/tls/TLSConfig.nonJvm.mjs +22 -0
  1246. package/ktor-ktor-network-tls/io/ktor/network/tls/TLSConfig.nonJvm.mjs.map +1 -0
  1247. package/ktor-ktor-network-tls/io/ktor/network/tls/TLSConfigBuilder.nonJvm.mjs +33 -0
  1248. package/ktor-ktor-network-tls/io/ktor/network/tls/TLSConfigBuilder.nonJvm.mjs.map +1 -0
  1249. package/ktor-ktor-serialization/io/ktor/serialization/ContentConvertException.mjs +48 -0
  1250. package/ktor-ktor-serialization/io/ktor/serialization/ContentConvertException.mjs.map +1 -0
  1251. package/ktor-ktor-serialization/io/ktor/serialization/ContentConverter.mjs +419 -0
  1252. package/ktor-ktor-serialization/io/ktor/serialization/ContentConverter.mjs.map +1 -0
  1253. package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/Extensions.mjs +33 -0
  1254. package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/Extensions.mjs.map +1 -0
  1255. package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/ExtensionsJs.mjs +15 -0
  1256. package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/ExtensionsJs.mjs.map +1 -0
  1257. package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/KotlinxSerializationConverter.mjs +790 -0
  1258. package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/KotlinxSerializationConverter.mjs.map +1 -0
  1259. package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/SerializerLookup.mjs +195 -0
  1260. package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/SerializerLookup.mjs.map +1 -0
  1261. package/ktor-ktor-serialization-kotlinx-json/io/ktor/serialization/kotlinx/json/JsonSupport.mjs +44 -0
  1262. package/ktor-ktor-serialization-kotlinx-json/io/ktor/serialization/kotlinx/json/JsonSupport.mjs.map +1 -0
  1263. package/ktor-ktor-server-core/io/ktor/server/engine/ShutdownHook.jsAndWasmShared.mjs +8 -0
  1264. package/ktor-ktor-server-core/io/ktor/server/engine/ShutdownHook.jsAndWasmShared.mjs.map +1 -0
  1265. package/ktor-ktor-utils/io/ktor/util/Attributes.mjs +127 -0
  1266. package/ktor-ktor-utils/io/ktor/util/Attributes.mjs.map +1 -0
  1267. package/ktor-ktor-utils/io/ktor/util/AttributesJs.mjs +73 -0
  1268. package/ktor-ktor-utils/io/ktor/util/AttributesJs.mjs.map +1 -0
  1269. package/ktor-ktor-utils/io/ktor/util/CaseInsensitiveMap.mjs +181 -0
  1270. package/ktor-ktor-utils/io/ktor/util/CaseInsensitiveMap.mjs.map +1 -0
  1271. package/ktor-ktor-utils/io/ktor/util/Charset.mjs +34 -0
  1272. package/ktor-ktor-utils/io/ktor/util/Charset.mjs.map +1 -0
  1273. package/ktor-ktor-utils/io/ktor/util/Collections.mjs +15 -0
  1274. package/ktor-ktor-utils/io/ktor/util/Collections.mjs.map +1 -0
  1275. package/ktor-ktor-utils/io/ktor/util/CollectionsJs.mjs +12 -0
  1276. package/ktor-ktor-utils/io/ktor/util/CollectionsJs.mjs.map +1 -0
  1277. package/ktor-ktor-utils/io/ktor/util/CoroutinesUtils.mjs +41 -0
  1278. package/ktor-ktor-utils/io/ktor/util/CoroutinesUtils.mjs.map +1 -0
  1279. package/ktor-ktor-utils/io/ktor/util/DelegatingMutableSet.mjs +152 -0
  1280. package/ktor-ktor-utils/io/ktor/util/DelegatingMutableSet.mjs.map +1 -0
  1281. package/ktor-ktor-utils/io/ktor/util/PlatformUtils.js.mjs +45 -0
  1282. package/ktor-ktor-utils/io/ktor/util/PlatformUtils.js.mjs.map +1 -0
  1283. package/ktor-ktor-utils/io/ktor/util/PlatformUtils.mjs +225 -0
  1284. package/ktor-ktor-utils/io/ktor/util/PlatformUtils.mjs.map +1 -0
  1285. package/ktor-ktor-utils/io/ktor/util/PlatformUtilsJs.mjs +16 -0
  1286. package/ktor-ktor-utils/io/ktor/util/PlatformUtilsJs.mjs.map +1 -0
  1287. package/ktor-ktor-utils/io/ktor/util/StringValues.mjs +377 -0
  1288. package/ktor-ktor-utils/io/ktor/util/StringValues.mjs.map +1 -0
  1289. package/ktor-ktor-utils/io/ktor/util/Text.mjs +132 -0
  1290. package/ktor-ktor-utils/io/ktor/util/Text.mjs.map +1 -0
  1291. package/ktor-ktor-utils/io/ktor/util/cio/Channels.mjs +32 -0
  1292. package/ktor-ktor-utils/io/ktor/util/cio/Channels.mjs.map +1 -0
  1293. package/ktor-ktor-utils/io/ktor/util/collections/ConcurrentMapJs.mjs +113 -0
  1294. package/ktor-ktor-utils/io/ktor/util/collections/ConcurrentMapJs.mjs.map +1 -0
  1295. package/ktor-ktor-utils/io/ktor/util/collections/CopyOnWriteHashMap.mjs +31 -0
  1296. package/ktor-ktor-utils/io/ktor/util/collections/CopyOnWriteHashMap.mjs.map +1 -0
  1297. package/ktor-ktor-utils/io/ktor/util/date/Date.mjs +519 -0
  1298. package/ktor-ktor-utils/io/ktor/util/date/Date.mjs.map +1 -0
  1299. package/ktor-ktor-utils/io/ktor/util/date/DateJs.mjs +61 -0
  1300. package/ktor-ktor-utils/io/ktor/util/date/DateJs.mjs.map +1 -0
  1301. package/ktor-ktor-utils/io/ktor/util/internal/ExceptionUtilsJs.mjs +11 -0
  1302. package/ktor-ktor-utils/io/ktor/util/internal/ExceptionUtilsJs.mjs.map +1 -0
  1303. package/ktor-ktor-utils/io/ktor/util/internal/LockFreeLinkedList.mjs +100 -0
  1304. package/ktor-ktor-utils/io/ktor/util/internal/LockFreeLinkedList.mjs.map +1 -0
  1305. package/ktor-ktor-utils/io/ktor/util/logging/KtorSimpleLoggerJs.mjs +137 -0
  1306. package/ktor-ktor-utils/io/ktor/util/logging/KtorSimpleLoggerJs.mjs.map +1 -0
  1307. package/ktor-ktor-utils/io/ktor/util/logging/LoggerJs.mjs +84 -0
  1308. package/ktor-ktor-utils/io/ktor/util/logging/LoggerJs.mjs.map +1 -0
  1309. package/ktor-ktor-utils/io/ktor/util/network/NetworkAddressJs.mjs +16 -0
  1310. package/ktor-ktor-utils/io/ktor/util/network/NetworkAddressJs.mjs.map +1 -0
  1311. package/ktor-ktor-utils/io/ktor/util/pipeline/DebugPipelineContext.mjs +145 -0
  1312. package/ktor-ktor-utils/io/ktor/util/pipeline/DebugPipelineContext.mjs.map +1 -0
  1313. package/ktor-ktor-utils/io/ktor/util/pipeline/PhaseContent.mjs +120 -0
  1314. package/ktor-ktor-utils/io/ktor/util/pipeline/PhaseContent.mjs.map +1 -0
  1315. package/ktor-ktor-utils/io/ktor/util/pipeline/Pipeline.mjs +366 -0
  1316. package/ktor-ktor-utils/io/ktor/util/pipeline/Pipeline.mjs.map +1 -0
  1317. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelineContext.js.mjs +16 -0
  1318. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelineContext.js.mjs.map +1 -0
  1319. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelineContext.mjs +41 -0
  1320. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelineContext.mjs.map +1 -0
  1321. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelineJs.mjs +15 -0
  1322. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelineJs.mjs.map +1 -0
  1323. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelinePhase.mjs +50 -0
  1324. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelinePhase.mjs.map +1 -0
  1325. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelinePhaseRelation.mjs +91 -0
  1326. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelinePhaseRelation.mjs.map +1 -0
  1327. package/ktor-ktor-utils/io/ktor/util/pipeline/StackTraceRecover.mjs +29 -0
  1328. package/ktor-ktor-utils/io/ktor/util/pipeline/StackTraceRecover.mjs.map +1 -0
  1329. package/ktor-ktor-utils/io/ktor/util/pipeline/StackTraceRecoverJs.mjs +12 -0
  1330. package/ktor-ktor-utils/io/ktor/util/pipeline/StackTraceRecoverJs.mjs.map +1 -0
  1331. package/ktor-ktor-utils/io/ktor/util/pipeline/SuspendFunctionGun.mjs +196 -0
  1332. package/ktor-ktor-utils/io/ktor/util/pipeline/SuspendFunctionGun.mjs.map +1 -0
  1333. package/ktor-ktor-utils/io/ktor/util/reflect/Type.mjs +55 -0
  1334. package/ktor-ktor-utils/io/ktor/util/reflect/Type.mjs.map +1 -0
  1335. package/ktor-ktor-utils/io/ktor/util/reflect/TypeInfoJs.mjs +12 -0
  1336. package/ktor-ktor-utils/io/ktor/util/reflect/TypeInfoJs.mjs.map +1 -0
  1337. package/ktor-ktor-websockets/io/ktor/websocket/CloseReason.mjs +217 -0
  1338. package/ktor-ktor-websockets/io/ktor/websocket/CloseReason.mjs.map +1 -0
  1339. package/ktor-ktor-websockets/io/ktor/websocket/FrameCommon.mjs +49 -0
  1340. package/ktor-ktor-websockets/io/ktor/websocket/FrameCommon.mjs.map +1 -0
  1341. package/ktor-ktor-websockets/io/ktor/websocket/FrameJs.mjs +204 -0
  1342. package/ktor-ktor-websockets/io/ktor/websocket/FrameJs.mjs.map +1 -0
  1343. package/ktor-ktor-websockets/io/ktor/websocket/FrameTooBigException.mjs +47 -0
  1344. package/ktor-ktor-websockets/io/ktor/websocket/FrameTooBigException.mjs.map +1 -0
  1345. package/ktor-ktor-websockets/io/ktor/websocket/FrameType.mjs +173 -0
  1346. package/ktor-ktor-websockets/io/ktor/websocket/FrameType.mjs.map +1 -0
  1347. package/ktor-ktor-websockets/io/ktor/websocket/ProtocolViolationException.mjs +47 -0
  1348. package/ktor-ktor-websockets/io/ktor/websocket/ProtocolViolationException.mjs.map +1 -0
  1349. package/ktor-ktor-websockets/io/ktor/websocket/RawWebSocket.mjs +19 -0
  1350. package/ktor-ktor-websockets/io/ktor/websocket/RawWebSocket.mjs.map +1 -0
  1351. package/ktor-ktor-websockets/io/ktor/websocket/RawWebSocketCommon.mjs +846 -0
  1352. package/ktor-ktor-websockets/io/ktor/websocket/RawWebSocketCommon.mjs.map +1 -0
  1353. package/package.json +23 -0
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../../../../../../../../../../../mnt/agent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/flow/terminal/Reduce.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":["firstOrNull","<this>","predicate","$completion","doResume","$predicate","$result","emit","value","e"],"mappings":";;;;;;;;;;;;;;;;;oBAkIAA,CAAuBC,a,EAAoBC,S,EAA3CC,WAAAH,EAAkF;A;;;;AAWlF,C;;;;;kBAOyB,a,EACjB,K,EADiB,kB;;;;;QAAAI,CAAAA,EAAA;A;;UAAA,I;;;;;;mCAU+C,K;;;gCAzB5D,sBAAU,KAAV,O;;;;;;;;;kBACA,2BAAS,K;gCACT,K;;;;;gCAEA,I;;;;;;;gBAqBiD,c;kBAAqC,oCAEvF,KAFuF,C;;;;;;;gBAE3D,oB;;;;;;;;;;;;;;MAAA,C;;;;;;;;;;;kBA9BIC,U,EACvCC,O;;;;SAiBqBC,CACjBC,K,EADiBL,WAAAI,EACP;A;;;;MAWqB,C;UAhIdC,K,EAAxBL,W;;;;;;;;;;;;;kBAkGsB,a,EAAoB,S,EAA3C,kB;;;;;QAAAC,CAAAA,EAAA;A;;UAAA,I;;;;;gBACI,aAAiB,U;;mCACjB,K;;;gBAc+B,+DAAgB,KAAhB,OAAgB,KAAhB,C;;;gCAepB,oBAAQ,KAAR,O;;;;;;;;;;;;;;sBAERK,a;kBAES,eAAF,CAAE,OAEL,KAFK,C;kBAEmH,aAvIhI,SAuIgI,C;;;;;;;;;4BA3BxH,K,CAAA,E;;;;;;;;;;;;;;MACX,C;;;;;;;;;;;"}
@@ -0,0 +1,13 @@
1
+ //region block: pre-declaration
2
+ //endregion
3
+ function checkOwnership(_this__u8e3s4, owner) {
4
+ if (!(_this__u8e3s4.s2l_1 === owner))
5
+ throw _this__u8e3s4;
6
+ }
7
+ //region block: exports
8
+ export {
9
+ checkOwnership as checkOwnershipoyid8o0pxxr7,
10
+ };
11
+ //endregion
12
+
13
+ //# sourceMappingURL=FlowExceptions.common.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../../../../../../../../../../../mnt/agent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/flow/internal/FlowExceptions.common.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":["checkOwnership","<this>","owner"],"mappings":";;uBAgBAA,CAAaC,a,EAAkCC,KAA/CF,EAA2D;A,EACnD,oBAAK,KAAL,KAAe,KAAf,E;IAAsB,MAAM,a;AACpC,C;;;;;"}
@@ -0,0 +1,31 @@
1
+ import { CancellationException3b36o9qz53rgr as CancellationException } from '../../../../../kotlin-kotlin-stdlib/kotlin/coroutines/cancellation/CancellationException.mjs';
2
+ import { captureStack1fzi4aczwc4hg as captureStack } from '../../../../../kotlin-kotlin-stdlib/kotlin/js/coreRuntime.mjs';
3
+ import { initMetadataForClassbxx6q50dy2s7 as initMetadataForClass } from '../../../../../kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs';
4
+ import { VOID3gxj6tk5isa35 as VOID } from '../../../../../kotlin-kotlin-stdlib/kotlin/js/void.mjs';
5
+ //region block: imports
6
+ //endregion
7
+ //region block: pre-declaration
8
+ //endregion
9
+ var AbortFlowExceptionClass;
10
+ function AbortFlowException() {
11
+ if (AbortFlowExceptionClass === VOID) {
12
+ class $ extends CancellationException() {
13
+ static x2m(owner) {
14
+ var $this = this.cd('Flow was aborted, no more elements needed');
15
+ captureStack($this, $this.t2l_1);
16
+ $this.s2l_1 = owner;
17
+ return $this;
18
+ }
19
+ }
20
+ initMetadataForClass($, 'AbortFlowException');
21
+ AbortFlowExceptionClass = $;
22
+ }
23
+ return AbortFlowExceptionClass;
24
+ }
25
+ //region block: exports
26
+ export {
27
+ AbortFlowException as AbortFlowException2zdgh4w7z3hep,
28
+ };
29
+ //endregion
30
+
31
+ //# sourceMappingURL=FlowExceptions.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../../../../../../../../../../../mnt/agent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/jsAndWasmShared/src/flow/internal/FlowExceptions.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":["owner"],"mappings":";;;;;;;;;;;;iBAMIA,K;4BACsB,2C;;QADtB,mB;;;;;;;;;;;;;"}
@@ -0,0 +1,69 @@
1
+ import { toString1pkumu07cwy4m as toString } from '../../../../../kotlin-kotlin-stdlib/kotlin/js/coreRuntime.mjs';
2
+ import { IllegalStateExceptionkoljg5n0nrlr as IllegalStateException } from '../../../../../kotlin-kotlin-stdlib/kotlin/exceptions.mjs';
3
+ import { ScopeCoroutine2c07fgm3ekmnx as ScopeCoroutine } from '../../internal/Scopes.mjs';
4
+ import { Unit_instance1fbcbse1fwigr as Unit_instance } from '../../../../../kotlin-kotlin-stdlib/kotlin/Unit.mjs';
5
+ import {
6
+ Key_instance2tirv2rj82ml4 as Key_instance,
7
+ Job29shfjfygy86k as Job,
8
+ } from '../../Job.mjs';
9
+ import { THROW_CCE2g6jy02ryeudk as THROW_CCE } from '../../../../../kotlin-kotlin-stdlib/kotlin/hacks.mjs';
10
+ import { isInterface3d6p8outrmvmk as isInterface } from '../../../../../kotlin-kotlin-stdlib/kotlin/js/typeCheckUtils.mjs';
11
+ import { toString30pk9tzaqopn as toString_0 } from '../../../../../kotlin-kotlin-stdlib/kotlin/Library.mjs';
12
+ //region block: imports
13
+ //endregion
14
+ //region block: pre-declaration
15
+ //endregion
16
+ function checkContext(_this__u8e3s4, currentContext) {
17
+ var result = currentContext.km(0, checkContext$lambda(_this__u8e3s4));
18
+ if (!(result === _this__u8e3s4.m2l_1)) {
19
+ // Inline function 'kotlin.error' call
20
+ var message = 'Flow invariant is violated:\n' + ('\t\tFlow was collected in ' + toString(_this__u8e3s4.l2l_1) + ',\n') + ('\t\tbut emission happened in ' + toString(currentContext) + '.\n') + "\t\tPlease refer to 'flow' documentation or use 'flowOn' instead";
21
+ throw IllegalStateException().o4(toString(message));
22
+ }
23
+ }
24
+ function transitiveCoroutineParent(_this__u8e3s4, collectJob) {
25
+ var $this = _this__u8e3s4;
26
+ var collectJob_0 = collectJob;
27
+ $l$1: do {
28
+ $l$0: do {
29
+ if ($this === null)
30
+ return null;
31
+ if ($this === collectJob_0)
32
+ return $this;
33
+ if (!($this instanceof ScopeCoroutine()))
34
+ return $this;
35
+ var tmp0 = $this.m1y();
36
+ var tmp1 = collectJob_0;
37
+ $this = tmp0;
38
+ collectJob_0 = tmp1;
39
+ continue $l$0;
40
+ }
41
+ while (false);
42
+ }
43
+ while (true);
44
+ }
45
+ function checkContext$lambda($this_checkContext) {
46
+ return function (count, element) {
47
+ var key = element.r1();
48
+ var collectElement = $this_checkContext.l2l_1.nc(key);
49
+ var tmp;
50
+ if (!(key === Key_instance)) {
51
+ return !(element === collectElement) ? -2147483648 : count + 1 | 0;
52
+ }
53
+ var collectJob = (collectElement == null ? true : isInterface(collectElement, Job())) ? collectElement : THROW_CCE();
54
+ var emissionParentJob = transitiveCoroutineParent(isInterface(element, Job()) ? element : THROW_CCE(), collectJob);
55
+ var tmp_0;
56
+ if (!(emissionParentJob === collectJob)) {
57
+ var message = 'Flow invariant is violated:\n\t\tEmission from another coroutine is detected.\n' + ('\t\tChild of ' + toString_0(emissionParentJob) + ', expected child of ' + toString_0(collectJob) + '.\n') + '\t\tFlowCollector is not thread-safe and concurrent emissions are prohibited.\n' + "\t\tTo mitigate this restriction please use 'channelFlow' builder instead of 'flow'";
58
+ throw IllegalStateException().o4(toString(message));
59
+ }
60
+ return collectJob == null ? count : count + 1 | 0;
61
+ };
62
+ }
63
+ //region block: exports
64
+ export {
65
+ checkContext as checkContext31s2o65fax7nj,
66
+ };
67
+ //endregion
68
+
69
+ //# sourceMappingURL=SafeCollector.common.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../../../../../../../../../../../mnt/agent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/flow/internal/SafeCollector.common.kt","src/kotlin/util/Preconditions.kt"],"sourcesContent":[null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["checkContext","<this>","currentContext","result","transitiveCoroutineParent","collectJob","checkContext$lambda","checkContext$lambda$lambda","key","collectElement","emissionParentJob"],"mappings":";;;;;;;;;;;;;;;qBAqBAA,CACaC,a,EAA8BC,cAD3CF,EAC6E;A,MACzEG,SAAa,cAAe,IAAK,CAAL,EAAa,kCAAb,C;EA0DxB,iBAAU,aAAV,CAAU,KAAV,E,CAA8B;A;kBAE1B,mCACS,4BADT,YACoC,aADpC,CACoC,KADpC,IACkD,KADlD,KAES,+BAFT,YAEuC,cAFvC,IAEqD,KAFrD,IAGQ,kE;IC0D6B,iCAAoC,SAAR,OAAQ,CAApC,C;EDxD7C,C;AACJ,C;kCAEAC,CAAqBH,a,EAA+BI,UAApDD,EAA4E;A,MAAA,qB;MAAA,yB;WAAA;A,aAAA;A,MACpE,cAAS,IAAT,C;QAAe,OAAO,I;MACtB,cAAS,YAAT,C;QAAqB,OAAO,K;MAC5B,yC;QAA4B,OAAO,K;UACzB,OAAP,W;UAAO,OAA0B,Y;MAA1B,Y;MAAA,mB;MAAA,a;IAClB,C;;EAAA,C;EAL4E,a;AAK5E,C;4BAzE6CE,CADhC,kBACgCA,E;kBAAAC,CAAE,K,EAAO,OAATA,EAAA;A,QACrCC,MAAU,OAAQ,K;QAClBC,iBAAqB,4BAAe,GAAf,C;;IACjB,4B;MACA,OAAgB,cAAY,cAAZ,IAAgC,WAAhC,GACX,QAAQ,CADG,I;;QAIpBJ,cAAiB,cAAjBA,8BAAiB,cAAjBA,YAAiB,cAAjBA,c;QACAK,oBAAyC,sCAAhB,OAAgB,WAAhB,OAAgB,gBAA0B,UAA1B,C;;IAgCrC,4BAAsB,UAAtB,E;oBAEI,qFAES,eAFT,cAEuB,iBAFvB,IAEwC,sBAFxC,cAE6D,UAF7D,IAEuE,KAFvE,IAGQ,iFAHR,GAIQ,qF;MAiCsC,iCAAoC,SAAR,OAAQ,CAApC,C;;IAxBV,OAAxC,cAAc,IAAd,GAAoB,KAApB,GAA+B,QAAQ,CAAvC,I;EACR,C;C;;;;;"}
@@ -0,0 +1,49 @@
1
+ import { ensureActive2yo7199srjlgl as ensureActive } from '../../Job.mjs';
2
+ import { checkContext31s2o65fax7nj as checkContext } from './SafeCollector.common.mjs';
3
+ import { FlowCollector26clgpmzihvke as FlowCollector } from '../FlowCollector.mjs';
4
+ import { initMetadataForClassbxx6q50dy2s7 as initMetadataForClass } from '../../../../../kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs';
5
+ import { VOID3gxj6tk5isa35 as VOID } from '../../../../../kotlin-kotlin-stdlib/kotlin/js/void.mjs';
6
+ //region block: imports
7
+ //endregion
8
+ //region block: pre-declaration
9
+ //endregion
10
+ function SafeCollector$collectContextSize$lambda(count, _unused_var__etf5q3) {
11
+ return count + 1 | 0;
12
+ }
13
+ var SafeCollectorClass;
14
+ function SafeCollector() {
15
+ if (SafeCollectorClass === VOID) {
16
+ class $ {
17
+ constructor(collector, collectContext) {
18
+ this.k2l_1 = collector;
19
+ this.l2l_1 = collectContext;
20
+ var tmp = this;
21
+ tmp.m2l_1 = this.l2l_1.km(0, SafeCollector$collectContextSize$lambda);
22
+ this.n2l_1 = null;
23
+ }
24
+ w2k(value, $completion) {
25
+ // Inline function 'kotlinx.coroutines.currentCoroutineContext' call
26
+ // Inline function 'kotlin.js.getCoroutineContext' call
27
+ var currentContext = $completion.gc();
28
+ ensureActive(currentContext);
29
+ if (!(this.n2l_1 === currentContext)) {
30
+ checkContext(this, currentContext);
31
+ this.n2l_1 = currentContext;
32
+ }
33
+ return this.k2l_1.w2k(value, $completion);
34
+ }
35
+ kc() {
36
+ }
37
+ }
38
+ initMetadataForClass($, 'SafeCollector', VOID, VOID, [FlowCollector()], [1]);
39
+ SafeCollectorClass = $;
40
+ }
41
+ return SafeCollectorClass;
42
+ }
43
+ //region block: exports
44
+ export {
45
+ SafeCollector as SafeCollector3ss0wp8n80f6m,
46
+ };
47
+ //endregion
48
+
49
+ //# sourceMappingURL=SafeCollector.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../../../../../../../../../../../mnt/agent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/jsAndWasmShared/src/flow/internal/SafeCollector.kt","js/runtime/coroutineInternalJS.kt"],"sourcesContent":[null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["SafeCollector$collectContextSize$lambda","collector","collectContext","emit","value","$completion","currentContext","releaseIntercepted"],"mappings":";;;;;;;;;gDAYoEA,CAAE,K,EAAO,mBAATA,EAAA;A,EAAuB,OAAT,QAAQ,CAAC,I;AAAC,C;;;;;kBALxFC,S,EACAC,c;QADA,sB;QACA,2B;kBAIwD,I;QAAA,YAAf,IAAe,CAAf,KAAe,IAAK,CAAL,EAAQ,uCAAR,C;QACH,iB;;SAErDC,CAAiCC,K,EAAjCC,WAAAF,EAA2C;A;;YACvCG,iBCcsF,gB;QDbvE,aAAf,cAAe,C;QACX,qBAAwB,cAAxB,E,CAAwC;A,UACxC,mBAAa,cAAb,C;UACA,aAAsB,c;QAC1B,C;QACU,OAAV,IAAU,CAAV,KAAU,KAAK,KAAL,c;MACd,C;QAEAC,CAAAA,EAAuC;A,MACvC,C;;;;;;;;;;;"}
@@ -0,0 +1,15 @@
1
+ import { HashSet2dzve9y63nf0v as HashSet } from '../../../../kotlin-kotlin-stdlib/kotlin/collections/HashSet.mjs';
2
+ //region block: imports
3
+ //endregion
4
+ //region block: pre-declaration
5
+ //endregion
6
+ function identitySet(expectedSize) {
7
+ return HashSet().h1(expectedSize);
8
+ }
9
+ //region block: exports
10
+ export {
11
+ identitySet as identitySet1lu9dl60optk8,
12
+ };
13
+ //endregion
14
+
15
+ //# sourceMappingURL=Concurrent.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../../../../../../../../../../../mnt/agent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/jsAndWasmShared/src/internal/Concurrent.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":["identitySet","expectedSize"],"mappings":";;;;;oBAWAA,CAAoCC,YAApCD,EAAwE;A,EAAqB,oBAAb,YAAa,C;AAAD,C;;;;;"}
@@ -0,0 +1,302 @@
1
+ import {
2
+ atomic$int$11d5swdyn6j0pu as atomic$int$1,
3
+ atomic$ref$130aurmcwdfdf1 as atomic$ref$1,
4
+ } from '../../../../kotlinx-atomicfu/kotlinx/atomicfu/AtomicFU.mjs';
5
+ import { Unit_instance1fbcbse1fwigr as Unit_instance } from '../../../../kotlin-kotlin-stdlib/kotlin/Unit.mjs';
6
+ import { NotCompleted1jonr7fgu2l3n as NotCompleted } from '../CancellableContinuationImpl.mjs';
7
+ import { initMetadataForClassbxx6q50dy2s7 as initMetadataForClass } from '../../../../kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs';
8
+ import { VOID3gxj6tk5isa35 as VOID } from '../../../../kotlin-kotlin-stdlib/kotlin/js/void.mjs';
9
+ import {
10
+ THROW_CCE2g6jy02ryeudk as THROW_CCE,
11
+ ensureNotNull1e947j3ixpazm as ensureNotNull,
12
+ } from '../../../../kotlin-kotlin-stdlib/kotlin/hacks.mjs';
13
+ import { IllegalStateExceptionkoljg5n0nrlr as IllegalStateException } from '../../../../kotlin-kotlin-stdlib/kotlin/exceptions.mjs';
14
+ import {
15
+ toString1pkumu07cwy4m as toString,
16
+ hashCodeq5arwsb9dgti as hashCode,
17
+ equals2au1ep9vhcato as equals,
18
+ } from '../../../../kotlin-kotlin-stdlib/kotlin/js/coreRuntime.mjs';
19
+ import { toString30pk9tzaqopn as toString_0 } from '../../../../kotlin-kotlin-stdlib/kotlin/Library.mjs';
20
+ import { toLongw1zpgk99d84b as toLong } from '../../../../kotlin-kotlin-stdlib/kotlin/js/numberConversion.mjs';
21
+ import { Symbol17xuwzgi5g8ve as Symbol } from './Symbol.mjs';
22
+ //region block: imports
23
+ //endregion
24
+ //region block: pre-declaration
25
+ //endregion
26
+ function get_CLOSED() {
27
+ _init_properties_ConcurrentLinkedList_kt__5gcgzy();
28
+ return CLOSED;
29
+ }
30
+ var CLOSED;
31
+ var SegmentClass;
32
+ function Segment() {
33
+ if (SegmentClass === VOID) {
34
+ class $ extends ConcurrentLinkedListNode() {
35
+ constructor(id, prev, pointers) {
36
+ super(prev);
37
+ this.i22_1 = id;
38
+ this.j22_1 = atomic$int$1(pointers << 16);
39
+ }
40
+ x2c() {
41
+ return this.j22_1.kotlinx$atomicfu$value === this.z2b() && !this.e2d();
42
+ }
43
+ y2c() {
44
+ var tmp0 = this.j22_1;
45
+ var tmp$ret$1;
46
+ $l$block_0: {
47
+ // Inline function 'kotlinx.coroutines.internal.addConditionally' call
48
+ while (true) {
49
+ var cur = tmp0.kotlinx$atomicfu$value;
50
+ if (!(!(cur === this.z2b()) || this.e2d())) {
51
+ tmp$ret$1 = false;
52
+ break $l$block_0;
53
+ }
54
+ if (tmp0.atomicfu$compareAndSet(cur, cur + 65536 | 0)) {
55
+ tmp$ret$1 = true;
56
+ break $l$block_0;
57
+ }
58
+ }
59
+ }
60
+ return tmp$ret$1;
61
+ }
62
+ z2c() {
63
+ return this.j22_1.atomicfu$addAndGet(-65536) === this.z2b() && !this.e2d();
64
+ }
65
+ w2c() {
66
+ if (this.j22_1.atomicfu$incrementAndGet() === this.z2b()) {
67
+ this.z5();
68
+ }
69
+ }
70
+ }
71
+ initMetadataForClass($, 'Segment', VOID, VOID, [ConcurrentLinkedListNode(), NotCompleted()]);
72
+ SegmentClass = $;
73
+ }
74
+ return SegmentClass;
75
+ }
76
+ function close(_this__u8e3s4) {
77
+ _init_properties_ConcurrentLinkedList_kt__5gcgzy();
78
+ var cur = _this__u8e3s4;
79
+ while (true) {
80
+ // Inline function 'kotlinx.coroutines.internal.ConcurrentLinkedListNode.nextOrIfClosed' call
81
+ var this_0 = cur;
82
+ // Inline function 'kotlin.let' call
83
+ var it = access$_get_nextOrClosed__ywzond(this_0);
84
+ var tmp;
85
+ if (it === access$_get_CLOSED_$tConcurrentLinkedListKt_wmtpdy()) {
86
+ return cur;
87
+ } else {
88
+ tmp = (it == null ? true : it instanceof ConcurrentLinkedListNode()) ? it : THROW_CCE();
89
+ }
90
+ var next = tmp;
91
+ if (next === null) {
92
+ if (cur.h2d())
93
+ return cur;
94
+ } else {
95
+ cur = next;
96
+ }
97
+ }
98
+ }
99
+ function _SegmentOrClosed___init__impl__jnexvb(value) {
100
+ return value;
101
+ }
102
+ function _get_value__a43j40($this) {
103
+ return $this;
104
+ }
105
+ function _SegmentOrClosed___get_isClosed__impl__qmxmlo($this) {
106
+ return _get_value__a43j40($this) === get_CLOSED();
107
+ }
108
+ function _SegmentOrClosed___get_segment__impl__jvcr9l($this) {
109
+ var tmp;
110
+ if (_get_value__a43j40($this) === get_CLOSED()) {
111
+ var message = 'Does not contain segment';
112
+ throw IllegalStateException().o4(toString(message));
113
+ } else {
114
+ var tmp_0 = _get_value__a43j40($this);
115
+ tmp = tmp_0 instanceof Segment() ? tmp_0 : THROW_CCE();
116
+ }
117
+ return tmp;
118
+ }
119
+ function SegmentOrClosed__toString_impl_pzb2an($this) {
120
+ return 'SegmentOrClosed(value=' + toString_0($this) + ')';
121
+ }
122
+ function SegmentOrClosed__hashCode_impl_4855hs($this) {
123
+ return $this == null ? 0 : hashCode($this);
124
+ }
125
+ function SegmentOrClosed__equals_impl_6erq1g($this, other) {
126
+ if (!(other instanceof SegmentOrClosed()))
127
+ return false;
128
+ var tmp0_other_with_cast = other instanceof SegmentOrClosed() ? other.s2f_1 : THROW_CCE();
129
+ if (!equals($this, tmp0_other_with_cast))
130
+ return false;
131
+ return true;
132
+ }
133
+ var SegmentOrClosedClass;
134
+ function SegmentOrClosed() {
135
+ if (SegmentOrClosedClass === VOID) {
136
+ class $ {
137
+ constructor(value) {
138
+ this.s2f_1 = value;
139
+ }
140
+ toString() {
141
+ return SegmentOrClosed__toString_impl_pzb2an(this.s2f_1);
142
+ }
143
+ hashCode() {
144
+ return SegmentOrClosed__hashCode_impl_4855hs(this.s2f_1);
145
+ }
146
+ equals(other) {
147
+ return SegmentOrClosed__equals_impl_6erq1g(this.s2f_1, other);
148
+ }
149
+ }
150
+ initMetadataForClass($, 'SegmentOrClosed');
151
+ SegmentOrClosedClass = $;
152
+ }
153
+ return SegmentOrClosedClass;
154
+ }
155
+ function _get_nextOrClosed__w0gmuv($this) {
156
+ return $this.a2d_1.kotlinx$atomicfu$value;
157
+ }
158
+ function _get_aliveSegmentLeft__mr4ndu($this) {
159
+ var cur = $this.f2d();
160
+ while (!(cur === null) && cur.x2c())
161
+ cur = cur.b2d_1.kotlinx$atomicfu$value;
162
+ return cur;
163
+ }
164
+ function _get_aliveSegmentRight__7ulr0b($this) {
165
+ // Inline function 'kotlinx.coroutines.assert' call
166
+ var cur = ensureNotNull($this.c2d());
167
+ while (cur.x2c()) {
168
+ var tmp0_elvis_lhs = cur.c2d();
169
+ var tmp;
170
+ if (tmp0_elvis_lhs == null) {
171
+ return cur;
172
+ } else {
173
+ tmp = tmp0_elvis_lhs;
174
+ }
175
+ cur = tmp;
176
+ }
177
+ return cur;
178
+ }
179
+ function access$_get_nextOrClosed__ywzond($this) {
180
+ return _get_nextOrClosed__w0gmuv($this);
181
+ }
182
+ var ConcurrentLinkedListNodeClass;
183
+ function ConcurrentLinkedListNode() {
184
+ if (ConcurrentLinkedListNodeClass === VOID) {
185
+ class $ {
186
+ constructor(prev) {
187
+ this.a2d_1 = atomic$ref$1(null);
188
+ this.b2d_1 = atomic$ref$1(prev);
189
+ }
190
+ c2d() {
191
+ // Inline function 'kotlinx.coroutines.internal.ConcurrentLinkedListNode.nextOrIfClosed' call
192
+ // Inline function 'kotlin.let' call
193
+ var it = access$_get_nextOrClosed__ywzond(this);
194
+ var tmp;
195
+ if (it === access$_get_CLOSED_$tConcurrentLinkedListKt_wmtpdy()) {
196
+ return null;
197
+ } else {
198
+ tmp = (it == null ? true : it instanceof ConcurrentLinkedListNode()) ? it : THROW_CCE();
199
+ }
200
+ return tmp;
201
+ }
202
+ d2d(value) {
203
+ return this.a2d_1.atomicfu$compareAndSet(null, value);
204
+ }
205
+ e2d() {
206
+ return this.c2d() == null;
207
+ }
208
+ f2d() {
209
+ return this.b2d_1.kotlinx$atomicfu$value;
210
+ }
211
+ g2d() {
212
+ // Inline function 'kotlinx.atomicfu.AtomicRef.lazySet' call
213
+ this.b2d_1.kotlinx$atomicfu$value = null;
214
+ }
215
+ h2d() {
216
+ return this.a2d_1.atomicfu$compareAndSet(null, get_CLOSED());
217
+ }
218
+ z5() {
219
+ // Inline function 'kotlinx.coroutines.assert' call
220
+ if (this.e2d())
221
+ return Unit_instance;
222
+ $l$loop_0: while (true) {
223
+ var prev = _get_aliveSegmentLeft__mr4ndu(this);
224
+ var next = _get_aliveSegmentRight__7ulr0b(this);
225
+ var tmp0 = next.b2d_1;
226
+ $l$block: {
227
+ // Inline function 'kotlinx.atomicfu.update' call
228
+ while (true) {
229
+ var cur = tmp0.kotlinx$atomicfu$value;
230
+ var upd = cur === null ? null : prev;
231
+ if (tmp0.atomicfu$compareAndSet(cur, upd)) {
232
+ break $l$block;
233
+ }
234
+ }
235
+ }
236
+ if (!(prev === null))
237
+ prev.a2d_1.kotlinx$atomicfu$value = next;
238
+ if (next.x2c() && !next.e2d())
239
+ continue $l$loop_0;
240
+ if (!(prev === null) && prev.x2c())
241
+ continue $l$loop_0;
242
+ return Unit_instance;
243
+ }
244
+ }
245
+ }
246
+ initMetadataForClass($, 'ConcurrentLinkedListNode');
247
+ ConcurrentLinkedListNodeClass = $;
248
+ }
249
+ return ConcurrentLinkedListNodeClass;
250
+ }
251
+ function findSegmentInternal(_this__u8e3s4, id, createNewSegment) {
252
+ _init_properties_ConcurrentLinkedList_kt__5gcgzy();
253
+ var cur = _this__u8e3s4;
254
+ $l$loop: while (cur.i22_1.a2(id) < 0 || cur.x2c()) {
255
+ // Inline function 'kotlinx.coroutines.internal.ConcurrentLinkedListNode.nextOrIfClosed' call
256
+ var this_0 = cur;
257
+ // Inline function 'kotlin.let' call
258
+ var it = access$_get_nextOrClosed__ywzond(this_0);
259
+ var tmp;
260
+ if (it === access$_get_CLOSED_$tConcurrentLinkedListKt_wmtpdy()) {
261
+ return _SegmentOrClosed___init__impl__jnexvb(get_CLOSED());
262
+ } else {
263
+ tmp = (it == null ? true : it instanceof ConcurrentLinkedListNode()) ? it : THROW_CCE();
264
+ }
265
+ var next = tmp;
266
+ if (!(next == null)) {
267
+ cur = next;
268
+ continue $l$loop;
269
+ }
270
+ // Inline function 'kotlin.Long.plus' call
271
+ var newTail = createNewSegment(cur.i22_1.p3(toLong(1)), cur);
272
+ if (cur.d2d(newTail)) {
273
+ if (cur.x2c()) {
274
+ cur.z5();
275
+ }
276
+ cur = newTail;
277
+ }
278
+ }
279
+ return _SegmentOrClosed___init__impl__jnexvb(cur);
280
+ }
281
+ function access$_get_CLOSED_$tConcurrentLinkedListKt_wmtpdy() {
282
+ return get_CLOSED();
283
+ }
284
+ var properties_initialized_ConcurrentLinkedList_kt_kwt434;
285
+ function _init_properties_ConcurrentLinkedList_kt__5gcgzy() {
286
+ if (!properties_initialized_ConcurrentLinkedList_kt_kwt434) {
287
+ properties_initialized_ConcurrentLinkedList_kt_kwt434 = true;
288
+ CLOSED = new (Symbol())('CLOSED');
289
+ }
290
+ }
291
+ //region block: exports
292
+ export {
293
+ _SegmentOrClosed___get_isClosed__impl__qmxmlo as _SegmentOrClosed___get_isClosed__impl__qmxmlo3e3mrt157zasn,
294
+ _SegmentOrClosed___get_segment__impl__jvcr9l as _SegmentOrClosed___get_segment__impl__jvcr9l1chmpjvbuseuk,
295
+ SegmentOrClosed as SegmentOrCloseds3xpxfs4wrg9,
296
+ Segment as Segmentqmq1glevgieu,
297
+ close as closefimrnzr4lu35,
298
+ findSegmentInternal as findSegmentInternal35lxp6iondi3q,
299
+ };
300
+ //endregion
301
+
302
+ //# sourceMappingURL=ConcurrentLinkedList.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../../../../../../../../../../../mnt/agent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/internal/ConcurrentLinkedList.kt","../../../../../../../../../../../../opt/buildAgent/work/711ef0d9c7c28b00/atomicfu/src/jsAndWasmSharedMain/kotlin/kotlinx/atomicfu/AtomicFU.kt","../../../../../../../../../../../../opt/buildAgent/work/711ef0d9c7c28b00/atomicfu/src/commonMain/kotlin/kotlinx/atomicfu/AtomicFU.common.kt","js/builtins/Primitives.kt"],"sourcesContent":[null,null,null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["<get-CLOSED>","id","prev","pointers","<get-isRemoved>","tryIncPointers","cur","decPointers","onSlotCleaned","close","<this>","next","<SegmentOrClosed__<init>-impl>","value","<get-value>","<SegmentOrClosed__<get-isClosed>-impl>","<SegmentOrClosed__<get-segment>-impl>","<init>","<get-nextOrClosed>","<get-aliveSegmentLeft>","<get-aliveSegmentRight>","access$<get-nextOrClosed>","$this","<get-next>","trySetNext","<get-isTail>","<get-prev>","cleanPrev","markAsClosed","remove","upd","findSegmentInternal","createNewSegment","newTail","access$<get-CLOSED>$tConcurrentLinkedListKt","<init properties ConcurrentLinkedList.kt>"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;mBAuQAA,CAAAA,EAAA;A;EAAA,a;AAAiB,C;;;;;;kBAvEbC,E,EAAwBC,I,EAAUC,Q;cACN,I;QAD5B,e;QAmBiC,0BAAO,YAAa,EAApB,C;;SAMVC,CAAAA,EAAQ;A,QAAoD,OAApD,WAAmB,sBAAnB,KAA4B,UAAwB,IAAP,CAAC,U;MAAK,C;SAGlFC,CAAAA,EAAgC;A,mBAAA,I,CAAA,K;;;;iBA2BzB,I,EAAM;A,gBACTC,WAAe,sB;YACX,MA7BoF,EA6BzE,GA7ByE,KAAM,UAAN,CA6BpF,IA7B2G,UA6B3G,E;cAAiB,YAAO,K;;;YACxB,IAAK,4BAAc,GAAd,EAAmB,MA9BoC,KA8BvD,KAAL,C;cAAsC,YAAO,I;;;UACrD,C;;QA/B2H,OAAxE,S;MAAuE,C;SAG1HC,CAAAA,EAA6B;A,QAAiF,OAAjF,IAAmB,CAAnB,KAAmB,oBAAU,MAAV,CAAnB,KAAyD,UAAwB,IAAP,CAAC,U;MAAK,C;SAkB7GC,CAAAA,EAAoB;A,QACZ,IAAA,IAAmB,CAAnB,KAAmB,2BAAnB,KAAwC,UAAxC,C;UAAuD,S;;MAC/D,C;;;;;;;cAtKJC,CAA+CC,aAA/CD,EAA4D;A;MACxDH,MAAa,a;SACN,I,EAAM;A;iBACE,G;;aAsBgD,wC;;IACvD,WAAO,oDAAP,C;MAvB4B,OAAO,G;;aA0BnC,E,kBAAA,E,0CAAA,E;;QA1BJK,OAuBA,G;IAtBI,aAAS,IAAT,C,CAAe;A,MACX,IAAA,GAAI,MAAJ,C;QAAoB,OAAO,G;IACnC,C,MAAO;A,MACH,MAAM,I;IACV,C;EACJ,C;AACJ,C;8CAwKoDC,CAACC,KAADD,E;EAAA,Y;C;2BAACE,CAAA,KAAAA,EAAA;A,EAAA,Y;AAAsB,C;sDACjDC,CAAA,KAAAA,E;EAAwB,OAAhB,8BAAU,Y;C;qDAEzBC,CAAA,KAAAA,E;;EAAY,kCAAU,YAAV,C;kBAAwB,0B;IA9JjD,iCAEJ,SADwB,OACxB,CAFI,C;;gBA8JkF,yB;uCAAA,K;;EAAU,U;C;;EAlQlG,yD;;;EAAA,0C;;;EAAA,0C;IAAA,Y;MAAA,qF;EAAA,yC;IAAA,Y;EAAA,W;;;;;;iBA+PoDC,CAACJ,KAADI,E;QAAC,kB;O;;;;;;;;;;;;;;;;kCAhKxBC,CAAA,KAAAA,EAAQ;A,EAAW,OAAX,KAAW,CAAX,KAAW,CAAL,sB;AAAI,C;sCAwEVC,CAAA,KAAAA,EAAM;A,MACnCb,MAAU,W;SACH,UAAQ,IAAR,C,IAAgB,GAAI,M;IACvB,MAAM,GAAN,CAAU,KAAV,CAAgB,sB;EACpB,OAAO,G;AACX,C;uCAEiCc,CAAA,KAAAA,EAAM;A;MAEnCd,MAAU,0B;SACH,GAAI,M;QACD,iBAAA,GAAI,M;;IAAJ,2B;MAAY,OAAO,G;;YAAnB,c;;IAAN,S;;EACJ,OAAO,G;AACX,C;yCA3FJe,CAM6BC,KAN7BD,EAAA;A,EAAA,uC;AAAA,C;;;;;kBAAkFnB,I;QAE1D,0BAAa,IAAb,C;QAEA,0BAAO,IAAP,C;;SAiBPqB,CAAAA,EAAQ;A;;iBAR0C,iCAQ1C,IAR0C,C;;QACvD,WAAO,oDAAP,C;UAO8B,OAAO,I;;iBAJrC,E,kBAAA,E,0CAAA,E;;QAI2C,OAP/C,G;MAO8C,C;SAKlDC,CAAeX,KAAfW,EAAoC;A,QAAgC,OAAhC,IAAM,CAAN,KAAM,wBAAc,IAAd,EAAoB,KAApB,C;MAAyB,C;SAK/CC,CAAAA,EAAQ;A,QAAY,OAAZ,cAAQ,I;MAAG,C;SAE1BC,CAAAA,EAAQ;A,QAAW,OAAX,IAAW,CAAX,KAAW,CAAL,sB;MAAI,C;SAK/BC,CAAAA,EAAgB;A;QAAE,ICzEgC,CDyEhC,KCzEgC,0BDyElB,I;MAAM,C;SAKtCC,CAAAA,EAAqB;A,QAAiC,OAAjC,IAAM,CAAN,KAAM,wBAAc,IAAd,EAAoB,YAApB,C;MAA0B,C;QAerDC,CAAAA,EAAa;A;QAIL,e;UAAQ,oB;0BACL,I,EAAM;A,cAET3B,OAAW,mC;cACXS,OAAW,oC;qBAEX,I,CAAK,K;;;mBEKN,I,EAAM;A,kBACTL,WAAU,sB;kBACVwB,MAAmB,GFPS,KAAO,IAAX,GAAiB,IAAjB,GAA2B,I;cEQ/C,gCAAc,GAAd,EAAmB,GAAnB,E;;;YACR,C;;UFRY,eAAS,IAAT,E;YAAe,IAAW,CAAN,KAAM,0BAAQ,I;UAElC,IAAA,IAAK,MAAL,IAAkB,CAAC,IAAK,MAAxB,C;YAAgC,kB;UAChC,eAAS,IAAT,KAAiB,IAAK,MAAtB,C;YAAiC,kB;UAErC,oB;QACJ,C;MACJ,C;;;;;;;4BA1JJC,CAA8BrB,a,EAC1BT,E,EACA+B,gBAFJD,EAGsB;A;MAMlBzB,MAAa,a;kBACN,IAAI,KAAJ,IAAS,EAAT,K,IAAe,GAAI,M,EAAW;A;iBACtB,G;;aAgFgD,wC;;IACvD,WAAO,oDAAP,C;MAjF4B,OAAO,sCAAgB,YAAhB,C;;aAoFnC,E,kBAAA,E,0CAAA,E;;QApFJK,OAiFA,G;IAhFI,cAAQ,IAAR,E,CAAc;A,MACd,MAAM,I;MACN,gB;IACJ,C;;QACAsB,UAAc,iBAAiB,GGwtC1B,CHxtC8B,KGwtC9B,IAAW,OHxtCwB,CGwtCxB,CAAX,CHxtCS,EAA6B,GAA7B,C;IACV,IAAA,GAAI,KAAW,OAAX,CAAJ,C,CAAyB;A,MACrB,IAAA,GAAI,MAAJ,C;QAAe,GAAI,K;;MACvB,MAAM,O;IACV,C;EACJ,C;EACA,OAAO,sCAAgB,GAAhB,C;AACX,C;2DAlCAC,CAAAA,EAAA;A,EAAA,mB;AAAA,C;;yDAAAC,CAAAA,E;;;4BAuQ4B,Q;;C;;;;;"}
@@ -0,0 +1,62 @@
1
+ import {
2
+ get_platformExceptionHandlers2k88c6wpwtspf as get_platformExceptionHandlers,
3
+ propagateExceptionFinalResort3uf2dkl63idew as propagateExceptionFinalResort,
4
+ DiagnosticCoroutineContextException2e2ligokby0yu as DiagnosticCoroutineContextException,
5
+ } from './CoroutineExceptionHandlerImpl.mjs';
6
+ import { Unit_instance1fbcbse1fwigr as Unit_instance } from '../../../../kotlin-kotlin-stdlib/kotlin/Unit.mjs';
7
+ import { handlerExceptionbt3jhgjzc80k as handlerException } from '../CoroutineExceptionHandler.mjs';
8
+ import { addSuppressedu5jwjfvsc039 as addSuppressed } from '../../../../kotlin-kotlin-stdlib/kotlin/throwableExtensions.mjs';
9
+ import { Exceptiondt2hlxn7j7vw as Exception } from '../../../../kotlin-kotlin-stdlib/kotlin/exceptions.mjs';
10
+ import { initMetadataForObject1cxne3s9w65el as initMetadataForObject } from '../../../../kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs';
11
+ import { VOID3gxj6tk5isa35 as VOID } from '../../../../kotlin-kotlin-stdlib/kotlin/js/void.mjs';
12
+ //region block: imports
13
+ //endregion
14
+ //region block: pre-declaration
15
+ //endregion
16
+ function handleUncaughtCoroutineException(context, exception) {
17
+ var _iterator__ex2g4s = get_platformExceptionHandlers().d1();
18
+ while (_iterator__ex2g4s.e1()) {
19
+ var handler = _iterator__ex2g4s.f1();
20
+ try {
21
+ handler.l25(context, exception);
22
+ } catch ($p) {
23
+ if ($p instanceof ExceptionSuccessfullyProcessed()) {
24
+ var _unused_var__etf5q3 = $p;
25
+ return Unit_instance;
26
+ } else {
27
+ if ($p instanceof Error) {
28
+ var t = $p;
29
+ propagateExceptionFinalResort(handlerException(exception, t));
30
+ } else {
31
+ throw $p;
32
+ }
33
+ }
34
+ }
35
+ }
36
+ try {
37
+ addSuppressed(exception, DiagnosticCoroutineContextException().c2n(context));
38
+ } catch ($p) {
39
+ if ($p instanceof Error) {
40
+ var e = $p;
41
+ } else {
42
+ throw $p;
43
+ }
44
+ }
45
+ propagateExceptionFinalResort(exception);
46
+ }
47
+ var ExceptionSuccessfullyProcessedClass;
48
+ function ExceptionSuccessfullyProcessed() {
49
+ if (ExceptionSuccessfullyProcessedClass === VOID) {
50
+ class $ extends Exception() {}
51
+ initMetadataForObject($, 'ExceptionSuccessfullyProcessed');
52
+ ExceptionSuccessfullyProcessedClass = $;
53
+ }
54
+ return ExceptionSuccessfullyProcessedClass;
55
+ }
56
+ //region block: exports
57
+ export {
58
+ handleUncaughtCoroutineException as handleUncaughtCoroutineException1odqiok7z7b0h,
59
+ };
60
+ //endregion
61
+
62
+ //# sourceMappingURL=CoroutineExceptionHandlerImpl.common.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../../../../../../../../../../../mnt/agent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/internal/CoroutineExceptionHandlerImpl.common.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":["handleUncaughtCoroutineException","context","exception","handler","<unused var>","t","e"],"mappings":";;;;;;;;;;;;;;;yCA6BAA,CAA8CC,O,EAA2BC,SAAzEF,EAA+F;A,MAE3E,wD;SAAA,sB,EAA2B;A,QAAtCG,UAAW,sB;IACZ,IAAI;A,MACA,OAAQ,KAAgB,OAAhB,EAAyB,SAAzB,C;IACZ,C;0DAA4C;A,YAAnCC,wB;QACL,oB;MACJ,C;iCAAuB;A,cAAdC,M;UACL,8BAA8B,iBAAiB,SAAjB,EAA4B,CAA5B,CAA9B,C;QACJ,C;;;;;EACJ,C;EAEA,IAAI;A,IACU,cAAV,SAAU,4CAAkD,OAAlD,E;EACd,C;6BAAuB;A,UAAdC,M;IAGT,C;;;;EACA,8BAA8B,SAA9B,C;AACJ,C;;;;;;;;;;;;;;"}
@@ -0,0 +1,56 @@
1
+ import { RuntimeException1r3t0zl97011n as RuntimeException } from '../../../../kotlin-kotlin-stdlib/kotlin/exceptions.mjs';
2
+ import {
3
+ toString1pkumu07cwy4m as toString,
4
+ captureStack1fzi4aczwc4hg as captureStack,
5
+ } from '../../../../kotlin-kotlin-stdlib/kotlin/js/coreRuntime.mjs';
6
+ import { initMetadataForClassbxx6q50dy2s7 as initMetadataForClass } from '../../../../kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs';
7
+ import { VOID3gxj6tk5isa35 as VOID } from '../../../../kotlin-kotlin-stdlib/kotlin/js/void.mjs';
8
+ import { LinkedHashSet2tkztfx86kyx2 as LinkedHashSet } from '../../../../kotlin-kotlin-stdlib/kotlin/collections/LinkedHashSet.mjs';
9
+ //region block: imports
10
+ //endregion
11
+ //region block: pre-declaration
12
+ //endregion
13
+ function propagateExceptionFinalResort(exception) {
14
+ console.error(exception.toString());
15
+ }
16
+ function get_platformExceptionHandlers_() {
17
+ _init_properties_CoroutineExceptionHandlerImpl_kt__37d7wf();
18
+ return platformExceptionHandlers_;
19
+ }
20
+ var platformExceptionHandlers_;
21
+ function get_platformExceptionHandlers() {
22
+ _init_properties_CoroutineExceptionHandlerImpl_kt__37d7wf();
23
+ return get_platformExceptionHandlers_();
24
+ }
25
+ var DiagnosticCoroutineContextExceptionClass;
26
+ function DiagnosticCoroutineContextException() {
27
+ if (DiagnosticCoroutineContextExceptionClass === VOID) {
28
+ class $ extends RuntimeException() {
29
+ static c2n(context) {
30
+ var $this = this.ha(toString(context));
31
+ captureStack($this, $this.b2n_1);
32
+ return $this;
33
+ }
34
+ }
35
+ initMetadataForClass($, 'DiagnosticCoroutineContextException');
36
+ DiagnosticCoroutineContextExceptionClass = $;
37
+ }
38
+ return DiagnosticCoroutineContextExceptionClass;
39
+ }
40
+ var properties_initialized_CoroutineExceptionHandlerImpl_kt_qhrgvx;
41
+ function _init_properties_CoroutineExceptionHandlerImpl_kt__37d7wf() {
42
+ if (!properties_initialized_CoroutineExceptionHandlerImpl_kt_qhrgvx) {
43
+ properties_initialized_CoroutineExceptionHandlerImpl_kt_qhrgvx = true;
44
+ // Inline function 'kotlin.collections.mutableSetOf' call
45
+ platformExceptionHandlers_ = LinkedHashSet().m1();
46
+ }
47
+ }
48
+ //region block: exports
49
+ export {
50
+ DiagnosticCoroutineContextException as DiagnosticCoroutineContextException2e2ligokby0yu,
51
+ get_platformExceptionHandlers as get_platformExceptionHandlers2k88c6wpwtspf,
52
+ propagateExceptionFinalResort as propagateExceptionFinalResort3uf2dkl63idew,
53
+ };
54
+ //endregion
55
+
56
+ //# sourceMappingURL=CoroutineExceptionHandlerImpl.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../../../../../../../../../../../mnt/agent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/js/src/internal/CoroutineExceptionHandlerImpl.kt","../../../../../../../../../../../../mnt/agent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/jsAndWasmShared/src/internal/CoroutineExceptionHandlerImpl.kt","src/kotlin/collections/Sets.kt"],"sourcesContent":[null,null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["propagateExceptionFinalResort","exception","<get-platformExceptionHandlers_>","<get-platformExceptionHandlers>","context","<init properties CoroutineExceptionHandlerImpl.kt>"],"mappings":";;;;;;;;;;;;sCAIAA,CAAkDC,SAAlDD,EAAwE;A,EAEpE,OAAQ,OAAM,SAAU,WAAhB,C;AACZ,C;uCCFAE,CAAAA,EAAA;A;EAAA,iC;AAAqC,C;;sCAGjCC,CAAAA,EAAQ;A;EAA0B,OAA1B,gC;AAAyB,C;;;;;iBAMwCC,O;4BAChD,SAAR,OAAQ,C;;;;;;;;;;;kEAf7BC,CAAAA,E;;;;iCCsEsD,oB;;C;;;;;"}