@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,106 @@
1
+ import {
2
+ BufferOverflow_DROP_LATEST_getInstance143zua7beeutm as BufferOverflow_DROP_LATEST_getInstance,
3
+ BufferOverflow_SUSPEND_getInstance142kaabh2rhtl as BufferOverflow_SUSPEND_getInstance,
4
+ BufferOverflow_DROP_OLDEST_getInstance1vyzet7fbhkje as BufferOverflow_DROP_OLDEST_getInstance,
5
+ } from './BufferOverflow.mjs';
6
+ import { BufferedChannel3lgkhzot5gmk6 as BufferedChannel } from './BufferedChannel.mjs';
7
+ import {
8
+ protoOf180f3jzyo7rfj as protoOf,
9
+ toString1pkumu07cwy4m as toString,
10
+ } from '../../../../kotlin-kotlin-stdlib/kotlin/js/coreRuntime.mjs';
11
+ import {
12
+ _ChannelResult___get_isSuccess__impl__odq1z91n9ra3wwc3tz2 as _ChannelResult___get_isSuccess__impl__odq1z9,
13
+ _ChannelResult___get_isClosed__impl__mg7kuu2zjlnnup5xs2b as _ChannelResult___get_isClosed__impl__mg7kuu,
14
+ Companion_getInstance8sxi3cktwbr5 as Companion_getInstance,
15
+ _ChannelResult___get_holder__impl__pm9gzw1tlq2sv26k77h as _ChannelResult___get_holder__impl__pm9gzw,
16
+ ChannelResult__exceptionOrNull_impl_16ei3025ypipjsmjecb as ChannelResult__exceptionOrNull_impl_16ei30,
17
+ Closed8t4xgopf7j5r as Closed,
18
+ } from './Channel.mjs';
19
+ import { callUndeliveredElementCatchingException6xwxmojd3rq1 as callUndeliveredElementCatchingException } from '../internal/OnUndeliveredElement.mjs';
20
+ import { Unit_instance1fbcbse1fwigr as Unit_instance } from '../../../../kotlin-kotlin-stdlib/kotlin/Unit.mjs';
21
+ import { VOID3gxj6tk5isa35 as VOID } from '../../../../kotlin-kotlin-stdlib/kotlin/js/void.mjs';
22
+ import { getKClass1s3j9wy1cofik as getKClass } from '../../../../kotlin-kotlin-stdlib/reflection.mjs';
23
+ import { IllegalArgumentException2asla15b5jaob as IllegalArgumentException } from '../../../../kotlin-kotlin-stdlib/kotlin/exceptions.mjs';
24
+ import { addSuppressedu5jwjfvsc039 as addSuppressed } from '../../../../kotlin-kotlin-stdlib/kotlin/throwableExtensions.mjs';
25
+ import { initMetadataForClassbxx6q50dy2s7 as initMetadataForClass } from '../../../../kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs';
26
+ //region block: imports
27
+ //endregion
28
+ //region block: pre-declaration
29
+ //endregion
30
+ function trySendImpl($this, element, isSendOp) {
31
+ return $this.u2j_1 === BufferOverflow_DROP_LATEST_getInstance() ? trySendDropLatest($this, element, isSendOp) : $this.h2i(element);
32
+ }
33
+ function trySendDropLatest($this, element, isSendOp) {
34
+ var result = protoOf(BufferedChannel()).f2i.call($this, element);
35
+ if (_ChannelResult___get_isSuccess__impl__odq1z9(result) || _ChannelResult___get_isClosed__impl__mg7kuu(result))
36
+ return result;
37
+ if (isSendOp) {
38
+ var tmp0_safe_receiver = $this.j2c_1;
39
+ var tmp1_safe_receiver = tmp0_safe_receiver == null ? null : callUndeliveredElementCatchingException(tmp0_safe_receiver, element);
40
+ if (tmp1_safe_receiver == null)
41
+ null;
42
+ else {
43
+ // Inline function 'kotlin.let' call
44
+ throw tmp1_safe_receiver;
45
+ }
46
+ }
47
+ return Companion_getInstance().x2e(Unit_instance);
48
+ }
49
+ var ConflatedBufferedChannelClass;
50
+ function ConflatedBufferedChannel() {
51
+ if (ConflatedBufferedChannelClass === VOID) {
52
+ class $ extends BufferedChannel() {
53
+ constructor(capacity, onBufferOverflow, onUndeliveredElement) {
54
+ onUndeliveredElement = onUndeliveredElement === VOID ? null : onUndeliveredElement;
55
+ super(capacity, onUndeliveredElement);
56
+ this.t2j_1 = capacity;
57
+ this.u2j_1 = onBufferOverflow;
58
+ // Inline function 'kotlin.require' call
59
+ if (!!(this.u2j_1 === BufferOverflow_SUSPEND_getInstance())) {
60
+ var message = 'This implementation does not support suspension for senders, use ' + getKClass(BufferedChannel()).ag() + ' instead';
61
+ throw IllegalArgumentException().u(toString(message));
62
+ }
63
+ // Inline function 'kotlin.require' call
64
+ if (!(this.t2j_1 >= 1)) {
65
+ var message_0 = 'Buffered channel capacity must be at least 1, but ' + this.t2j_1 + ' was specified';
66
+ throw IllegalArgumentException().u(toString(message_0));
67
+ }
68
+ }
69
+ p2f() {
70
+ return this.u2j_1.equals(BufferOverflow_DROP_OLDEST_getInstance());
71
+ }
72
+ e2i(element, $completion) {
73
+ // Inline function 'kotlinx.coroutines.channels.onClosed' call
74
+ var this_0 = trySendImpl(this, element, true);
75
+ var tmp = _ChannelResult___get_holder__impl__pm9gzw(this_0);
76
+ if (tmp instanceof Closed()) {
77
+ ChannelResult__exceptionOrNull_impl_16ei30(this_0);
78
+ var tmp0_safe_receiver = this.j2c_1;
79
+ var tmp1_safe_receiver = tmp0_safe_receiver == null ? null : callUndeliveredElementCatchingException(tmp0_safe_receiver, element);
80
+ if (tmp1_safe_receiver == null)
81
+ null;
82
+ else {
83
+ // Inline function 'kotlin.let' call
84
+ addSuppressed(tmp1_safe_receiver, this.r2e());
85
+ throw tmp1_safe_receiver;
86
+ }
87
+ throw this.r2e();
88
+ }
89
+ return Unit_instance;
90
+ }
91
+ f2i(element) {
92
+ return trySendImpl(this, element, false);
93
+ }
94
+ }
95
+ initMetadataForClass($, 'ConflatedBufferedChannel', VOID, VOID, VOID, [1, 0]);
96
+ ConflatedBufferedChannelClass = $;
97
+ }
98
+ return ConflatedBufferedChannelClass;
99
+ }
100
+ //region block: exports
101
+ export {
102
+ ConflatedBufferedChannel as ConflatedBufferedChannel16nes42ao4b78,
103
+ };
104
+ //endregion
105
+
106
+ //# sourceMappingURL=ConflatedBufferedChannel.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../../../../../../../../../../../mnt/agent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/channels/ConflatedBufferedChannel.kt","src/kotlin/util/Standard.kt","src/kotlin/util/Preconditions.kt","../../../../../../../../../../../../mnt/agent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/channels/Channel.kt"],"sourcesContent":[null,null,null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["trySendImpl","element","isSendOp","trySendDropLatest","result","capacity","onBufferOverflow","onUndeliveredElement","message","<get-isConflatedDropOldest>","send","$completion","trySend"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;oBAkDIA,CAAA,K,EAAwBC,O,EAAYC,QAApCF,EACI;A,EAC+B,OAD3B,gBAAqB,wCAArB,GAAkC,yBAAkB,OAAlB,EAA2B,QAA3B,CAAlC,GACC,UAAkB,OAAlB,C;AAAyB,C;0BAElCG,CAAA,K,EAA8BF,O,EAAYC,QAA1CC,EAAkF;A,MAE9EC,SAAmB,2CAAQ,OAAR,C;EAEf,IAAO,6CAAP,MAAO,CAAP,IAA2B,4CAAP,MAAO,CAA3B,C;IAAqC,OAAO,M;EAI5C,a,CAAU;A,QACV,gC;QAAsB,iGAAtB,kBAAsB,EAAwC,OAAxC,C;IAAkD,+B;MAAA,I;SAAA;A;MC0BzC,MD1B/B,kB;IAEA,C;;EAEJ,OAAO,0C;AACX,C;;;;;kBAtDAC,Q,EACAC,gB,EACAC,oB;+DAAiD,I;cACnB,Q,EAAiC,oB;QAH/D,qB;QACA,6B;;QEoBI,KFhBQ,iBAAqB,oCAArB,CEgBR,C,CAAQ;A,cACRC,UFhBK,mEAAD,GAA2F,iCAA3F,GAAsG,U;UEiB1G,mCAAuC,SAAR,OAAQ,CAAvC,C;QACJ,C;;QAHI,MFbQ,cAAY,CEapB,E,CAAQ;A,cACRA,YFbK,oDAAD,GAAoD,IAApD,CAAoD,KAApD,GAA4D,gB;UEchE,mCAAuC,SAAR,SAAQ,CAAvC,C;QACJ,C;;SFVIC,CAAAA,EAAQ;A,QAA+B,OAA/B,kBAAoB,wCAApB,C;MAA8B,C;SAE1CC,CAA0BT,O,EAA1BU,WAAAD,EAAsC;A;qBAElC,kBAAY,OAAZ,EAAgC,IAAhC,C;kBGs/BA,iD;QAAA,4B,CAAgC;A,UAAO,kD;cHr/BnC,+B;cAAsB,iGAAtB,kBAAsB,EAAwC,OAAxC,C;UAAkD,+B;YAAA,I;eAAA;A;YCgBjB,cDhBvD,kBCgBuD,EAAc,UAAd,C;YAA6C,MDhBpG,kB;UAGA,C;UACA,MAAM,U;QGi/B8C,C;QH/+B5D,oB;MAAA,C;SASAE,CAAqBX,OAArBW,EAAwD;A,QAAsC,OAAtC,kBAAY,OAAZ,EAAgC,KAAhC,C;MAAqC,C;;;;;;;;;;;"}
@@ -0,0 +1,93 @@
1
+ import { EmptyCoroutineContext_getInstance31fow51ayy30t as EmptyCoroutineContext_getInstance } from '../../../../kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineContextImpl.mjs';
2
+ import { VOID3gxj6tk5isa35 as VOID } from '../../../../kotlin-kotlin-stdlib/kotlin/js/void.mjs';
3
+ import { BufferOverflow_SUSPEND_getInstance142kaabh2rhtl as BufferOverflow_SUSPEND_getInstance } from './BufferOverflow.mjs';
4
+ import { CoroutineStart_DEFAULT_getInstance2bbgmtawlnkke as CoroutineStart_DEFAULT_getInstance } from '../CoroutineStart.mjs';
5
+ import { CoroutineScopefcb5f5dwqcas as CoroutineScope } from '../CoroutineScope.mjs';
6
+ import {
7
+ SendChannel38sllbxw662ws as SendChannel,
8
+ Channel3r72atmcithql as Channel,
9
+ } from './Channel.mjs';
10
+ import {
11
+ initMetadataForInterface1egvbzx539z91 as initMetadataForInterface,
12
+ initMetadataForClassbxx6q50dy2s7 as initMetadataForClass,
13
+ } from '../../../../kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs';
14
+ import { newCoroutineContext2tdpc8c02iv5t as newCoroutineContext } from '../CoroutineContext.mjs';
15
+ import {
16
+ Unit_instance1fbcbse1fwigr as Unit_instance,
17
+ Unitkvevlwgzwiuc as Unit,
18
+ } from '../../../../kotlin-kotlin-stdlib/kotlin/Unit.mjs';
19
+ import { ChannelCoroutine12l2gxei4u780 as ChannelCoroutine } from './ChannelCoroutine.mjs';
20
+ import { THROW_CCE2g6jy02ryeudk as THROW_CCE } from '../../../../kotlin-kotlin-stdlib/kotlin/hacks.mjs';
21
+ import { handleCoroutineExceptionv1m1bdk4j2te as handleCoroutineException } from '../CoroutineExceptionHandler.mjs';
22
+ //region block: imports
23
+ //endregion
24
+ //region block: pre-declaration
25
+ //endregion
26
+ function produce(_this__u8e3s4, context, capacity, block) {
27
+ context = context === VOID ? EmptyCoroutineContext_getInstance() : context;
28
+ capacity = capacity === VOID ? 0 : capacity;
29
+ return produce_0(_this__u8e3s4, context, capacity, BufferOverflow_SUSPEND_getInstance(), CoroutineStart_DEFAULT_getInstance(), null, block);
30
+ }
31
+ var ProducerScopeClass;
32
+ function ProducerScope() {
33
+ if (ProducerScopeClass === VOID) {
34
+ class $ {}
35
+ initMetadataForInterface($, 'ProducerScope', VOID, VOID, [CoroutineScope(), SendChannel()], [1]);
36
+ ProducerScopeClass = $;
37
+ }
38
+ return ProducerScopeClass;
39
+ }
40
+ function produce_0(_this__u8e3s4, context, capacity, onBufferOverflow, start, onCompletion, block) {
41
+ context = context === VOID ? EmptyCoroutineContext_getInstance() : context;
42
+ capacity = capacity === VOID ? 0 : capacity;
43
+ onBufferOverflow = onBufferOverflow === VOID ? BufferOverflow_SUSPEND_getInstance() : onBufferOverflow;
44
+ start = start === VOID ? CoroutineStart_DEFAULT_getInstance() : start;
45
+ onCompletion = onCompletion === VOID ? null : onCompletion;
46
+ var channel = Channel(capacity, onBufferOverflow);
47
+ var newContext = newCoroutineContext(_this__u8e3s4, context);
48
+ var coroutine = new (ProducerCoroutine())(newContext, channel);
49
+ if (!(onCompletion == null)) {
50
+ coroutine.v1y(onCompletion);
51
+ }
52
+ coroutine.g1y(start, coroutine, block);
53
+ return coroutine;
54
+ }
55
+ var ProducerCoroutineClass;
56
+ function ProducerCoroutine() {
57
+ if (ProducerCoroutineClass === VOID) {
58
+ class $ extends ChannelCoroutine() {
59
+ constructor(parentContext, channel) {
60
+ super(parentContext, channel, true, true);
61
+ }
62
+ t1x() {
63
+ return super.t1x();
64
+ }
65
+ z2j(value) {
66
+ this.g2j_1.s2i();
67
+ }
68
+ u1x(value) {
69
+ return this.z2j(value instanceof Unit() ? value : THROW_CCE());
70
+ }
71
+ v1x(cause, handled) {
72
+ var processed = this.g2j_1.q2i(cause);
73
+ if (!processed && !handled) {
74
+ handleCoroutineException(this.r1x_1, cause);
75
+ }
76
+ }
77
+ u2i(cause, $super) {
78
+ return this.d1z(cause, ($super == null ? true : $super instanceof ProducerCoroutine()) ? $super : THROW_CCE());
79
+ }
80
+ }
81
+ initMetadataForClass($, 'ProducerCoroutine', VOID, VOID, [ChannelCoroutine(), ProducerScope()], [1, 0]);
82
+ ProducerCoroutineClass = $;
83
+ }
84
+ return ProducerCoroutineClass;
85
+ }
86
+ //region block: exports
87
+ export {
88
+ ProducerScope as ProducerScopeb3mmhvfa6ll7,
89
+ produce as produce1iljho2c8bp6o,
90
+ };
91
+ //endregion
92
+
93
+ //# sourceMappingURL=Produce.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../../../../../../../../../../../mnt/agent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/channels/Produce.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":["produce","<this>","context","capacity","block","onBufferOverflow","start","onCompletion","channel","newContext","coroutine","parentContext","<get-isActive>","onCompleted","value","onCancelled","cause","handled","processed"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;gBA6OAA,CACeC,a,EACXC,O,EACAC,Q,EACAC,KAJJJ,EAMI;A;iCAHwB,C;EAGsF,OAA9G,yBAAQ,OAAR,EAAiB,QAAjB,EAA0C,oCAA1C,EAAkE,oCAAlE,EAA0F,IAA1F,EAAwG,KAAxG,C;AAA6G,C;;;;;;;;;;kBAyBjHA,CAAiBC,a,EACbC,O,EACAC,Q,EACAE,gB,EACAC,K,EACAC,Y,EACAH,KANJJ,EAOqB;A;iCALD,C;iDACkC,oC;2BACX,oC;yCACJ,I;MAGnCQ,UAAc,QAAW,QAAX,EAAqB,gBAArB,C;MACdC,aAAiB,mCAAoB,OAApB,C;MACjBC,sCAAkC,UAAlCA,EAA8C,OAA9CA,C;EACI,sBAAgB,IAAhB,E,CAAgC;A,IAAV,SAAU,KAA6B,YAA7B,C;;EACpC,SAAU,KAAM,KAAN,EAAa,SAAb,EAAwB,KAAxB,C;EACV,OAAO,S;AACX,C;;;;;kBAGIC,a,EAAiCH,O;cACb,a,EAAe,O,EAAS,I,EAAe,I;;SAEvDI,CAAAA,EAAQ;A,QAAc,OAAR,W;MAAO,C;SAEzBC,CAAyBC,KAAzBD,EAAsC;A,QAClC,IAAS,CAAT,KAAS,M;MACb,C;UArOYC,K;;;SAuOZC,CAAyBC,K,EAAkBC,OAA3CF,EAA6D;A,YACzDG,YAAgB,IAAS,CAAT,KAAS,KAAM,KAAN,C;QACrB,KAAC,SAAD,IAAc,CAAC,OAAf,C;UAAwB,yBAAyB,IAAzB,CAAyB,KAAzB,EAAkC,KAAlC,C;;MAChC,C;UAEgzmBF,K;;;;;;;;;;;;;"}
@@ -0,0 +1,135 @@
1
+ import { AbstractFlow3bixaw6q3bbim as AbstractFlow } from './Flow.mjs';
2
+ import {
3
+ initMetadataForClassbxx6q50dy2s7 as initMetadataForClass,
4
+ initMetadataForCoroutine1i7lbatuf5bnt as initMetadataForCoroutine,
5
+ } from '../../../../kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs';
6
+ import { VOID3gxj6tk5isa35 as VOID } from '../../../../kotlin-kotlin-stdlib/kotlin/js/void.mjs';
7
+ import { CoroutineImpl2sn3kjnwmfr10 as CoroutineImpl } from '../../../../kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineImpl.mjs';
8
+ import { get_COROUTINE_SUSPENDED3ujt3p13qm4iy as get_COROUTINE_SUSPENDED } from '../../../../kotlin-kotlin-stdlib/kotlin/coroutines/intrinsics/Intrinsics.mjs';
9
+ import { Unit_instance1fbcbse1fwigr as Unit_instance } from '../../../../kotlin-kotlin-stdlib/kotlin/Unit.mjs';
10
+ //region block: imports
11
+ //endregion
12
+ //region block: pre-declaration
13
+ //endregion
14
+ function flow(block) {
15
+ return new (SafeFlow())(block);
16
+ }
17
+ var SafeFlowClass;
18
+ function SafeFlow() {
19
+ if (SafeFlowClass === VOID) {
20
+ class $ extends AbstractFlow() {
21
+ constructor(block) {
22
+ super();
23
+ this.a2k_1 = block;
24
+ }
25
+ b2k(collector, $completion) {
26
+ return this.a2k_1(collector, $completion);
27
+ }
28
+ }
29
+ initMetadataForClass($, 'SafeFlow', VOID, VOID, VOID, [1]);
30
+ SafeFlowClass = $;
31
+ }
32
+ return SafeFlowClass;
33
+ }
34
+ function asFlow(_this__u8e3s4) {
35
+ // Inline function 'kotlinx.coroutines.flow.internal.unsafeFlow' call
36
+ return new (asFlow$$inlined$unsafeFlow$1())(_this__u8e3s4);
37
+ }
38
+ var $collectCOROUTINE$Class;
39
+ function $collectCOROUTINE$() {
40
+ if ($collectCOROUTINE$Class === VOID) {
41
+ class $ extends CoroutineImpl() {
42
+ constructor(_this__u8e3s4, collector, resultContinuation) {
43
+ super(resultContinuation);
44
+ this.l2k_1 = _this__u8e3s4;
45
+ this.m2k_1 = collector;
46
+ }
47
+ ic() {
48
+ var suspendResult = this.cc_1;
49
+ $sm: do
50
+ try {
51
+ var tmp = this.ac_1;
52
+ switch (tmp) {
53
+ case 0:
54
+ this.bc_1 = 4;
55
+ var tmp_0 = this;
56
+ tmp_0.n2k_1 = this.m2k_1;
57
+ this.o2k_1 = this.n2k_1;
58
+ var tmp_1 = this;
59
+ tmp_1.p2k_1 = this.l2k_1.v2k_1;
60
+ this.q2k_1 = this.p2k_1;
61
+ this.r2k_1 = this.q2k_1.d1();
62
+ this.ac_1 = 1;
63
+ continue $sm;
64
+ case 1:
65
+ if (!this.r2k_1.e1()) {
66
+ this.ac_1 = 3;
67
+ continue $sm;
68
+ }
69
+
70
+ this.s2k_1 = this.r2k_1.f1();
71
+ var tmp_2 = this;
72
+ tmp_2.t2k_1 = this.s2k_1;
73
+ this.u2k_1 = this.t2k_1;
74
+ this.ac_1 = 2;
75
+ suspendResult = this.o2k_1.w2k(this.u2k_1, this);
76
+ if (suspendResult === get_COROUTINE_SUSPENDED()) {
77
+ return suspendResult;
78
+ }
79
+
80
+ continue $sm;
81
+ case 2:
82
+ this.ac_1 = 1;
83
+ continue $sm;
84
+ case 3:
85
+ return Unit_instance;
86
+ case 4:
87
+ throw this.dc_1;
88
+ }
89
+ } catch ($p) {
90
+ var e = $p;
91
+ if (this.bc_1 === 4) {
92
+ throw e;
93
+ } else {
94
+ this.ac_1 = this.bc_1;
95
+ this.dc_1 = e;
96
+ }
97
+ }
98
+ while (true);
99
+ }
100
+ }
101
+ initMetadataForCoroutine($);
102
+ $collectCOROUTINE$Class = $;
103
+ }
104
+ return $collectCOROUTINE$Class;
105
+ }
106
+ var asFlow$$inlined$unsafeFlow$1Class;
107
+ function asFlow$$inlined$unsafeFlow$1() {
108
+ if (asFlow$$inlined$unsafeFlow$1Class === VOID) {
109
+ class $ {
110
+ constructor($this_asFlow) {
111
+ this.v2k_1 = $this_asFlow;
112
+ }
113
+ x2k(collector, $completion) {
114
+ var tmp = new ($collectCOROUTINE$())(this, collector, $completion);
115
+ tmp.cc_1 = Unit_instance;
116
+ tmp.dc_1 = null;
117
+ return tmp.ic();
118
+ }
119
+ c2k(collector, $completion) {
120
+ return this.x2k(collector, $completion);
121
+ }
122
+ }
123
+ initMetadataForClass($, VOID, VOID, VOID, VOID, [1]);
124
+ asFlow$$inlined$unsafeFlow$1Class = $;
125
+ }
126
+ return asFlow$$inlined$unsafeFlow$1Class;
127
+ }
128
+ //region block: exports
129
+ export {
130
+ asFlow as asFlow3ngsnn5xpz8pw,
131
+ flow as flow3tazazxj2t7g4,
132
+ };
133
+ //endregion
134
+
135
+ //# sourceMappingURL=Builders.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../../../../../../../../../../../mnt/agent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/flow/Builders.kt","../../../../../../../../../../../../mnt/agent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/flow/internal/SafeCollector.common.kt"],"sourcesContent":[null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["flow","block","collectSafely","collector","$completion","asFlow","<this>","doResume","collect"],"mappings":";;;;;;;;;;;;;aAmDAA,CAAoBC,KAApBD,EAA6F;A,EAAe,wBAAN,KAAM,C;AAAD,C;;;;;kBAGjFC,K;;QAAA,kB;;SACtBC,CAAmCC,S,EAAnCC,WAAAF,EAAgE;A,QAClD,OAAV,IAAU,OAAV,SAAU,c;MACd,C;;;;;;;eA2BJG,CAAeC,aAAfD,EAA+C;A;EAI9C,OCgBU,mD;ADhBX,C;;;;;kBAoEsD,a,EAA6B,S,EAA7B,kB;;;;;QAAAE,CAAAA,EAAA;A;;UAAA,I;;;;;;mCACpC,K;;;mCAxEd,K,CAAA,K;;gBAwQmiiD,4B;;;;qBAAA,e;;;;;gBAAX,aAAW,e;;mCAAa,K;;;gCAvQ5iiD,oBAAK,KAAL,O;;;;;;;;;;gBAyEM,oB;;;;;;;;;;;;;;MAAA,C;;;;;;;;;;;kBA3EC,Y;;;SAwEuCC,CAA6BL,S,EAA7BC,WAAAI,EAClD;A;;;;MAEU,C;UA+IbL,S,EAF0BC,W;;;;;;;;;;;;;"}
@@ -0,0 +1,100 @@
1
+ import { CoroutineImpl2sn3kjnwmfr10 as CoroutineImpl } from '../../../../kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineImpl.mjs';
2
+ import { SafeCollector3ss0wp8n80f6m as SafeCollector } from './internal/SafeCollector.mjs';
3
+ import { get_COROUTINE_SUSPENDED3ujt3p13qm4iy as get_COROUTINE_SUSPENDED } from '../../../../kotlin-kotlin-stdlib/kotlin/coroutines/intrinsics/Intrinsics.mjs';
4
+ import { Unit_instance1fbcbse1fwigr as Unit_instance } from '../../../../kotlin-kotlin-stdlib/kotlin/Unit.mjs';
5
+ import {
6
+ initMetadataForCoroutine1i7lbatuf5bnt as initMetadataForCoroutine,
7
+ initMetadataForClassbxx6q50dy2s7 as initMetadataForClass,
8
+ } from '../../../../kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs';
9
+ import { VOID3gxj6tk5isa35 as VOID } from '../../../../kotlin-kotlin-stdlib/kotlin/js/void.mjs';
10
+ //region block: imports
11
+ //endregion
12
+ //region block: pre-declaration
13
+ //endregion
14
+ var $collectCOROUTINE$Class;
15
+ function $collectCOROUTINE$() {
16
+ if ($collectCOROUTINE$Class === VOID) {
17
+ class $ extends CoroutineImpl() {
18
+ constructor(_this__u8e3s4, collector, resultContinuation) {
19
+ super(resultContinuation);
20
+ this.g2l_1 = _this__u8e3s4;
21
+ this.h2l_1 = collector;
22
+ }
23
+ ic() {
24
+ var suspendResult = this.cc_1;
25
+ $sm: do
26
+ try {
27
+ var tmp = this.ac_1;
28
+ switch (tmp) {
29
+ case 0:
30
+ this.bc_1 = 5;
31
+ var tmp_0 = this;
32
+ tmp_0.i2l_1 = new (SafeCollector())(this.h2l_1, this.gc());
33
+ this.ac_1 = 1;
34
+ continue $sm;
35
+ case 1:
36
+ this.bc_1 = 4;
37
+ this.ac_1 = 2;
38
+ suspendResult = this.g2l_1.b2k(this.i2l_1, this);
39
+ if (suspendResult === get_COROUTINE_SUSPENDED()) {
40
+ return suspendResult;
41
+ }
42
+
43
+ continue $sm;
44
+ case 2:
45
+ this.j2l_1 = suspendResult;
46
+ this.bc_1 = 5;
47
+ this.ac_1 = 3;
48
+ continue $sm;
49
+ case 3:
50
+ this.bc_1 = 5;
51
+ this.i2l_1.kc();
52
+ return Unit_instance;
53
+ case 4:
54
+ this.bc_1 = 5;
55
+ var t = this.dc_1;
56
+ this.i2l_1.kc();
57
+ throw t;
58
+ case 5:
59
+ throw this.dc_1;
60
+ }
61
+ } catch ($p) {
62
+ var e = $p;
63
+ if (this.bc_1 === 5) {
64
+ throw e;
65
+ } else {
66
+ this.ac_1 = this.bc_1;
67
+ this.dc_1 = e;
68
+ }
69
+ }
70
+ while (true);
71
+ }
72
+ }
73
+ initMetadataForCoroutine($);
74
+ $collectCOROUTINE$Class = $;
75
+ }
76
+ return $collectCOROUTINE$Class;
77
+ }
78
+ var AbstractFlowClass;
79
+ function AbstractFlow() {
80
+ if (AbstractFlowClass === VOID) {
81
+ class $ {
82
+ c2k(collector, $completion) {
83
+ var tmp = new ($collectCOROUTINE$())(this, collector, $completion);
84
+ tmp.cc_1 = Unit_instance;
85
+ tmp.dc_1 = null;
86
+ return tmp.ic();
87
+ }
88
+ }
89
+ initMetadataForClass($, 'AbstractFlow', VOID, VOID, VOID, [1]);
90
+ AbstractFlowClass = $;
91
+ }
92
+ return AbstractFlowClass;
93
+ }
94
+ //region block: exports
95
+ export {
96
+ AbstractFlow as AbstractFlow3bixaw6q3bbim,
97
+ };
98
+ //endregion
99
+
100
+ //# sourceMappingURL=Flow.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../../../../../../../../../../../mnt/agent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/flow/Flow.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":["doResume","t","collect","collector","$completion"],"mappings":";;;;;;;;;;;;;;;;;kBA8NI,a,EAA0C,S,EAA1C,kB;;;;;QAAAA,CAAAA,EAAA;A;;UAAA,I;;;;;;gBACI,yCAAkC,KAAlC,EA9MH,SA8MG,C;;;;;;gCAEI,oBAAc,KAAd,O;;;;;;;;;;;;;gBAEc,KAAd,KAAc,K;gBAEtB,oB;;;oBALIC,a;gBAGkB,KAAd,KAAc,K;;;;;;;;;;;;;;;MAEtB,C;;;;;;;;;;;SAPAC,CAA0CC,S,EAA1CC,WAAAF,EAAuE;A;;;;MAOvE,C;;;;;;;;;;;"}
@@ -0,0 +1,22 @@
1
+ import { initMetadataForInterface1egvbzx539z91 as initMetadataForInterface } from '../../../../kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs';
2
+ import { VOID3gxj6tk5isa35 as VOID } from '../../../../kotlin-kotlin-stdlib/kotlin/js/void.mjs';
3
+ //region block: imports
4
+ //endregion
5
+ //region block: pre-declaration
6
+ //endregion
7
+ var FlowCollectorClass;
8
+ function FlowCollector() {
9
+ if (FlowCollectorClass === VOID) {
10
+ class $ {}
11
+ initMetadataForInterface($, 'FlowCollector', VOID, VOID, VOID, [1]);
12
+ FlowCollectorClass = $;
13
+ }
14
+ return FlowCollectorClass;
15
+ }
16
+ //region block: exports
17
+ export {
18
+ FlowCollector as FlowCollector26clgpmzihvke,
19
+ };
20
+ //endregion
21
+
22
+ //# sourceMappingURL=FlowCollector.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"sourcesContent":[],"ignoreList":[],"x_google_ignoreList":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;"}
@@ -0,0 +1,196 @@
1
+ import { Unit_instance1fbcbse1fwigr as Unit_instance } from '../../../../kotlin-kotlin-stdlib/kotlin/Unit.mjs';
2
+ import { CoroutineImpl2sn3kjnwmfr10 as CoroutineImpl } from '../../../../kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineImpl.mjs';
3
+ import { get_COROUTINE_SUSPENDED3ujt3p13qm4iy as get_COROUTINE_SUSPENDED } from '../../../../kotlin-kotlin-stdlib/kotlin/coroutines/intrinsics/Intrinsics.mjs';
4
+ import { AbortFlowException2zdgh4w7z3hep as AbortFlowException } from './internal/FlowExceptions.mjs';
5
+ import {
6
+ initMetadataForCoroutine1i7lbatuf5bnt as initMetadataForCoroutine,
7
+ initMetadataForClassbxx6q50dy2s7 as initMetadataForClass,
8
+ } from '../../../../kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs';
9
+ import { VOID3gxj6tk5isa35 as VOID } from '../../../../kotlin-kotlin-stdlib/kotlin/js/void.mjs';
10
+ import { THROW_CCE2g6jy02ryeudk as THROW_CCE } from '../../../../kotlin-kotlin-stdlib/kotlin/hacks.mjs';
11
+ import { FlowCollector26clgpmzihvke as FlowCollector } from './FlowCollector.mjs';
12
+ import { checkOwnershipoyid8o0pxxr7 as checkOwnership } from './internal/FlowExceptions.common.mjs';
13
+ import { ensureActive2yo7199srjlgl as ensureActive } from '../Job.mjs';
14
+ //region block: imports
15
+ //endregion
16
+ //region block: pre-declaration
17
+ //endregion
18
+ function firstOrNull(_this__u8e3s4, predicate, $completion) {
19
+ var tmp = new ($firstOrNullCOROUTINE$())(_this__u8e3s4, predicate, $completion);
20
+ tmp.cc_1 = Unit_instance;
21
+ tmp.dc_1 = null;
22
+ return tmp.ic();
23
+ }
24
+ var $emitCOROUTINE$Class;
25
+ function $emitCOROUTINE$() {
26
+ if ($emitCOROUTINE$Class === VOID) {
27
+ class $ extends CoroutineImpl() {
28
+ constructor(_this__u8e3s4, value, resultContinuation) {
29
+ super(resultContinuation);
30
+ this.q2m_1 = _this__u8e3s4;
31
+ this.r2m_1 = value;
32
+ }
33
+ ic() {
34
+ var suspendResult = this.cc_1;
35
+ $sm: do
36
+ try {
37
+ var tmp = this.ac_1;
38
+ switch (tmp) {
39
+ case 0:
40
+ this.bc_1 = 4;
41
+ var tmp_0 = this;
42
+ tmp_0.s2m_1 = this.r2m_1;
43
+ this.t2m_1 = this.s2m_1;
44
+ this.ac_1 = 1;
45
+ suspendResult = this.q2m_1.v2m_1(this.t2m_1, this);
46
+ if (suspendResult === get_COROUTINE_SUSPENDED()) {
47
+ return suspendResult;
48
+ }
49
+
50
+ continue $sm;
51
+ case 1:
52
+ if (suspendResult) {
53
+ var tmp_1 = this;
54
+ this.q2m_1.w2m_1._v = this.t2m_1;
55
+ tmp_1.u2m_1 = false;
56
+ this.ac_1 = 2;
57
+ continue $sm;
58
+ } else {
59
+ var tmp_2 = this;
60
+ tmp_2.u2m_1 = true;
61
+ this.ac_1 = 2;
62
+ continue $sm;
63
+ }
64
+
65
+ case 2:
66
+ var ARGUMENT = this.u2m_1;
67
+ if (!ARGUMENT) {
68
+ throw AbortFlowException().x2m(this.q2m_1);
69
+ } else {
70
+ this.ac_1 = 3;
71
+ continue $sm;
72
+ }
73
+
74
+ case 3:
75
+ return Unit_instance;
76
+ case 4:
77
+ throw this.dc_1;
78
+ }
79
+ } catch ($p) {
80
+ var e = $p;
81
+ if (this.bc_1 === 4) {
82
+ throw e;
83
+ } else {
84
+ this.ac_1 = this.bc_1;
85
+ this.dc_1 = e;
86
+ }
87
+ }
88
+ while (true);
89
+ }
90
+ }
91
+ initMetadataForCoroutine($);
92
+ $emitCOROUTINE$Class = $;
93
+ }
94
+ return $emitCOROUTINE$Class;
95
+ }
96
+ var firstOrNull$$inlined$collectWhile$1Class;
97
+ function firstOrNull$$inlined$collectWhile$1() {
98
+ if (firstOrNull$$inlined$collectWhile$1Class === VOID) {
99
+ class $ {
100
+ constructor($predicate, $result) {
101
+ this.v2m_1 = $predicate;
102
+ this.w2m_1 = $result;
103
+ }
104
+ y2m(value, $completion) {
105
+ var tmp = new ($emitCOROUTINE$())(this, value, $completion);
106
+ tmp.cc_1 = Unit_instance;
107
+ tmp.dc_1 = null;
108
+ return tmp.ic();
109
+ }
110
+ w2k(value, $completion) {
111
+ return this.y2m((value == null ? true : !(value == null)) ? value : THROW_CCE(), $completion);
112
+ }
113
+ }
114
+ initMetadataForClass($, VOID, VOID, VOID, [FlowCollector()], [1]);
115
+ firstOrNull$$inlined$collectWhile$1Class = $;
116
+ }
117
+ return firstOrNull$$inlined$collectWhile$1Class;
118
+ }
119
+ var $firstOrNullCOROUTINE$Class;
120
+ function $firstOrNullCOROUTINE$() {
121
+ if ($firstOrNullCOROUTINE$Class === VOID) {
122
+ class $ extends CoroutineImpl() {
123
+ constructor(_this__u8e3s4, predicate, resultContinuation) {
124
+ super(resultContinuation);
125
+ this.c2m_1 = _this__u8e3s4;
126
+ this.d2m_1 = predicate;
127
+ }
128
+ ic() {
129
+ var suspendResult = this.cc_1;
130
+ $sm: do
131
+ try {
132
+ var tmp = this.ac_1;
133
+ switch (tmp) {
134
+ case 0:
135
+ this.bc_1 = 4;
136
+ this.e2m_1 = {_v: null};
137
+ var tmp_0 = this;
138
+ tmp_0.f2m_1 = this.c2m_1;
139
+ this.g2m_1 = this.f2m_1;
140
+ var tmp_1 = this;
141
+ tmp_1.h2m_1 = new (firstOrNull$$inlined$collectWhile$1())(this.d2m_1, this.e2m_1);
142
+ this.bc_1 = 2;
143
+ this.ac_1 = 1;
144
+ suspendResult = this.g2m_1.c2k(this.h2m_1, this);
145
+ if (suspendResult === get_COROUTINE_SUSPENDED()) {
146
+ return suspendResult;
147
+ }
148
+
149
+ continue $sm;
150
+ case 1:
151
+ this.bc_1 = 4;
152
+ this.ac_1 = 3;
153
+ continue $sm;
154
+ case 2:
155
+ this.bc_1 = 4;
156
+ var tmp_2 = this.dc_1;
157
+ if (tmp_2 instanceof AbortFlowException()) {
158
+ var e = this.dc_1;
159
+ checkOwnership(e, this.h2m_1);
160
+ ensureActive(this.gc());
161
+ this.ac_1 = 3;
162
+ continue $sm;
163
+ } else {
164
+ throw this.dc_1;
165
+ }
166
+
167
+ case 3:
168
+ this.bc_1 = 4;
169
+ return this.e2m_1._v;
170
+ case 4:
171
+ throw this.dc_1;
172
+ }
173
+ } catch ($p) {
174
+ var e_0 = $p;
175
+ if (this.bc_1 === 4) {
176
+ throw e_0;
177
+ } else {
178
+ this.ac_1 = this.bc_1;
179
+ this.dc_1 = e_0;
180
+ }
181
+ }
182
+ while (true);
183
+ }
184
+ }
185
+ initMetadataForCoroutine($);
186
+ $firstOrNullCOROUTINE$Class = $;
187
+ }
188
+ return $firstOrNullCOROUTINE$Class;
189
+ }
190
+ //region block: exports
191
+ export {
192
+ firstOrNull as firstOrNull3jjcu7fygcopr,
193
+ };
194
+ //endregion
195
+
196
+ //# sourceMappingURL=Reduce.mjs.map