@go-mondo/identity-sdk 0.0.1-beta.2

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 (451) hide show
  1. package/.tsbuildinfo/cjs.json +1 -0
  2. package/.tsbuildinfo/esm.json +1 -0
  3. package/CHANGELOG.md +63 -0
  4. package/README.md +3 -0
  5. package/lib/cjs/action/index.d.ts +2 -0
  6. package/lib/cjs/action/index.d.ts.map +1 -0
  7. package/lib/cjs/action/index.js +17 -0
  8. package/lib/cjs/action/schema/base.d.ts +21 -0
  9. package/lib/cjs/action/schema/base.d.ts.map +1 -0
  10. package/lib/cjs/action/schema/base.js +19 -0
  11. package/lib/cjs/action/schema/operations/set-password.d.ts +31 -0
  12. package/lib/cjs/action/schema/operations/set-password.d.ts.map +1 -0
  13. package/lib/cjs/action/schema/operations/set-password.js +18 -0
  14. package/lib/cjs/action/schema/operations/sign-up-verification.d.ts +22 -0
  15. package/lib/cjs/action/schema/operations/sign-up-verification.d.ts.map +1 -0
  16. package/lib/cjs/action/schema/operations/sign-up-verification.js +15 -0
  17. package/lib/cjs/action/schema/operations/sign-up.d.ts +44 -0
  18. package/lib/cjs/action/schema/operations/sign-up.d.ts.map +1 -0
  19. package/lib/cjs/action/schema/operations/sign-up.js +21 -0
  20. package/lib/cjs/action/schema/operations/user-attribute-verification.d.ts +20 -0
  21. package/lib/cjs/action/schema/operations/user-attribute-verification.d.ts.map +1 -0
  22. package/lib/cjs/action/schema/operations/user-attribute-verification.js +13 -0
  23. package/lib/cjs/action/schema/schema.d.ts +92 -0
  24. package/lib/cjs/action/schema/schema.d.ts.map +1 -0
  25. package/lib/cjs/action/schema/schema.js +40 -0
  26. package/lib/cjs/activity/index.d.ts +2 -0
  27. package/lib/cjs/activity/index.d.ts.map +1 -0
  28. package/lib/cjs/activity/index.js +17 -0
  29. package/lib/cjs/activity/schema/base.d.ts +54 -0
  30. package/lib/cjs/activity/schema/base.d.ts.map +1 -0
  31. package/lib/cjs/activity/schema/base.js +34 -0
  32. package/lib/cjs/activity/schema/schema.d.ts +156 -0
  33. package/lib/cjs/activity/schema/schema.d.ts.map +1 -0
  34. package/lib/cjs/activity/schema/schema.js +54 -0
  35. package/lib/cjs/activity/schema/types/authentication.d.ts +29 -0
  36. package/lib/cjs/activity/schema/types/authentication.d.ts.map +1 -0
  37. package/lib/cjs/activity/schema/types/authentication.js +16 -0
  38. package/lib/cjs/activity/schema/types/authorization.d.ts +29 -0
  39. package/lib/cjs/activity/schema/types/authorization.d.ts.map +1 -0
  40. package/lib/cjs/activity/schema/types/authorization.js +17 -0
  41. package/lib/cjs/activity/schema/types/note.d.ts +51 -0
  42. package/lib/cjs/activity/schema/types/note.d.ts.map +1 -0
  43. package/lib/cjs/activity/schema/types/note.js +17 -0
  44. package/lib/cjs/activity/schema/types/operation.d.ts +31 -0
  45. package/lib/cjs/activity/schema/types/operation.d.ts.map +1 -0
  46. package/lib/cjs/activity/schema/types/operation.js +18 -0
  47. package/lib/cjs/activity/schema/types/unknown.d.ts +22 -0
  48. package/lib/cjs/activity/schema/types/unknown.d.ts.map +1 -0
  49. package/lib/cjs/activity/schema/types/unknown.js +9 -0
  50. package/lib/cjs/activity/schema/utils.d.ts +7 -0
  51. package/lib/cjs/activity/schema/utils.d.ts.map +1 -0
  52. package/lib/cjs/activity/schema/utils.js +16 -0
  53. package/lib/cjs/app/index.d.ts +2 -0
  54. package/lib/cjs/app/index.d.ts.map +1 -0
  55. package/lib/cjs/app/index.js +17 -0
  56. package/lib/cjs/app/schema/app.d.ts +58 -0
  57. package/lib/cjs/app/schema/app.d.ts.map +1 -0
  58. package/lib/cjs/app/schema/app.js +43 -0
  59. package/lib/cjs/app/schema/authorization.d.ts +37 -0
  60. package/lib/cjs/app/schema/authorization.d.ts.map +1 -0
  61. package/lib/cjs/app/schema/authorization.js +44 -0
  62. package/lib/cjs/app/schema/oauth.d.ts +30 -0
  63. package/lib/cjs/app/schema/oauth.d.ts.map +1 -0
  64. package/lib/cjs/app/schema/oauth.js +21 -0
  65. package/lib/cjs/app/schema/oidc.d.ts +28 -0
  66. package/lib/cjs/app/schema/oidc.d.ts.map +1 -0
  67. package/lib/cjs/app/schema/oidc.js +13 -0
  68. package/lib/cjs/app/schema/registration.d.ts +22 -0
  69. package/lib/cjs/app/schema/registration.d.ts.map +1 -0
  70. package/lib/cjs/app/schema/registration.js +16 -0
  71. package/lib/cjs/app/schema/saml.d.ts +28 -0
  72. package/lib/cjs/app/schema/saml.d.ts.map +1 -0
  73. package/lib/cjs/app/schema/saml.js +13 -0
  74. package/lib/cjs/app/schema/schema.d.ts +8 -0
  75. package/lib/cjs/app/schema/schema.d.ts.map +1 -0
  76. package/lib/cjs/app/schema/schema.js +23 -0
  77. package/lib/cjs/app/schema/utils.d.ts +11 -0
  78. package/lib/cjs/app/schema/utils.d.ts.map +1 -0
  79. package/lib/cjs/app/schema/utils.js +23 -0
  80. package/lib/cjs/association/index.d.ts +2 -0
  81. package/lib/cjs/association/index.d.ts.map +1 -0
  82. package/lib/cjs/association/index.js +17 -0
  83. package/lib/cjs/association/schema/association.d.ts +79 -0
  84. package/lib/cjs/association/schema/association.d.ts.map +1 -0
  85. package/lib/cjs/association/schema/association.js +26 -0
  86. package/lib/cjs/association/schema/schema.d.ts +2 -0
  87. package/lib/cjs/association/schema/schema.d.ts.map +1 -0
  88. package/lib/cjs/association/schema/schema.js +17 -0
  89. package/lib/cjs/authentication/index.d.ts +2 -0
  90. package/lib/cjs/authentication/index.d.ts.map +1 -0
  91. package/lib/cjs/authentication/index.js +17 -0
  92. package/lib/cjs/authentication/schema/factors.d.ts +48 -0
  93. package/lib/cjs/authentication/schema/factors.d.ts.map +1 -0
  94. package/lib/cjs/authentication/schema/factors.js +28 -0
  95. package/lib/cjs/authentication/schema/factors.test.d.ts +2 -0
  96. package/lib/cjs/authentication/schema/factors.test.d.ts.map +1 -0
  97. package/lib/cjs/authentication/schema/factors.test.js +123 -0
  98. package/lib/cjs/authentication/schema/provider.d.ts +27 -0
  99. package/lib/cjs/authentication/schema/provider.d.ts.map +1 -0
  100. package/lib/cjs/authentication/schema/provider.js +24 -0
  101. package/lib/cjs/authentication/schema/schema.d.ts +6 -0
  102. package/lib/cjs/authentication/schema/schema.d.ts.map +1 -0
  103. package/lib/cjs/authentication/schema/schema.js +21 -0
  104. package/lib/cjs/authentication/schema/session.d.ts +59 -0
  105. package/lib/cjs/authentication/schema/session.d.ts.map +1 -0
  106. package/lib/cjs/authentication/schema/session.js +46 -0
  107. package/lib/cjs/authentication/schema/settings.d.ts +46 -0
  108. package/lib/cjs/authentication/schema/settings.d.ts.map +1 -0
  109. package/lib/cjs/authentication/schema/settings.js +16 -0
  110. package/lib/cjs/authentication/schema/strategy/base.d.ts +43 -0
  111. package/lib/cjs/authentication/schema/strategy/base.d.ts.map +1 -0
  112. package/lib/cjs/authentication/schema/strategy/base.js +31 -0
  113. package/lib/cjs/authentication/schema/strategy/schema.d.ts +169 -0
  114. package/lib/cjs/authentication/schema/strategy/schema.d.ts.map +1 -0
  115. package/lib/cjs/authentication/schema/strategy/schema.js +46 -0
  116. package/lib/cjs/authentication/schema/strategy/types/email.d.ts +44 -0
  117. package/lib/cjs/authentication/schema/strategy/types/email.d.ts.map +1 -0
  118. package/lib/cjs/authentication/schema/strategy/types/email.js +20 -0
  119. package/lib/cjs/authentication/schema/strategy/types/password.d.ts +99 -0
  120. package/lib/cjs/authentication/schema/strategy/types/password.d.ts.map +1 -0
  121. package/lib/cjs/authentication/schema/strategy/types/password.js +35 -0
  122. package/lib/cjs/authentication/schema/strategy/types/totp.d.ts +91 -0
  123. package/lib/cjs/authentication/schema/strategy/types/totp.d.ts.map +1 -0
  124. package/lib/cjs/authentication/schema/strategy/types/totp.js +48 -0
  125. package/lib/cjs/authorization/index.d.ts +2 -0
  126. package/lib/cjs/authorization/index.d.ts.map +1 -0
  127. package/lib/cjs/authorization/index.js +17 -0
  128. package/lib/cjs/authorization/schema/permission.d.ts +69 -0
  129. package/lib/cjs/authorization/schema/permission.d.ts.map +1 -0
  130. package/lib/cjs/authorization/schema/permission.js +50 -0
  131. package/lib/cjs/authorization/schema/role.d.ts +74 -0
  132. package/lib/cjs/authorization/schema/role.d.ts.map +1 -0
  133. package/lib/cjs/authorization/schema/role.js +52 -0
  134. package/lib/cjs/authorization/schema/schema.d.ts +4 -0
  135. package/lib/cjs/authorization/schema/schema.d.ts.map +1 -0
  136. package/lib/cjs/authorization/schema/schema.js +19 -0
  137. package/lib/cjs/authorization/schema/utils.d.ts +11 -0
  138. package/lib/cjs/authorization/schema/utils.d.ts.map +1 -0
  139. package/lib/cjs/authorization/schema/utils.js +23 -0
  140. package/lib/cjs/common/index.d.ts +2 -0
  141. package/lib/cjs/common/index.d.ts.map +1 -0
  142. package/lib/cjs/common/index.js +17 -0
  143. package/lib/cjs/common/schema/aggregate.d.ts +6 -0
  144. package/lib/cjs/common/schema/aggregate.d.ts.map +1 -0
  145. package/lib/cjs/common/schema/aggregate.js +8 -0
  146. package/lib/cjs/common/schema/dates.d.ts +39 -0
  147. package/lib/cjs/common/schema/dates.d.ts.map +1 -0
  148. package/lib/cjs/common/schema/dates.js +34 -0
  149. package/lib/cjs/common/schema/dates.test.d.ts +2 -0
  150. package/lib/cjs/common/schema/dates.test.d.ts.map +1 -0
  151. package/lib/cjs/common/schema/dates.test.js +33 -0
  152. package/lib/cjs/common/schema/jwt.d.ts +21 -0
  153. package/lib/cjs/common/schema/jwt.d.ts.map +1 -0
  154. package/lib/cjs/common/schema/jwt.js +24 -0
  155. package/lib/cjs/common/schema/metadata.d.ts +42 -0
  156. package/lib/cjs/common/schema/metadata.d.ts.map +1 -0
  157. package/lib/cjs/common/schema/metadata.js +88 -0
  158. package/lib/cjs/common/schema/metadata.test.d.ts +2 -0
  159. package/lib/cjs/common/schema/metadata.test.d.ts.map +1 -0
  160. package/lib/cjs/common/schema/metadata.test.js +62 -0
  161. package/lib/cjs/common/schema/schema.d.ts +5 -0
  162. package/lib/cjs/common/schema/schema.d.ts.map +1 -0
  163. package/lib/cjs/common/schema/schema.js +20 -0
  164. package/lib/cjs/customer/index.d.ts +2 -0
  165. package/lib/cjs/customer/index.d.ts.map +1 -0
  166. package/lib/cjs/customer/index.js +17 -0
  167. package/lib/cjs/customer/schema/organization.d.ts +54 -0
  168. package/lib/cjs/customer/schema/organization.d.ts.map +1 -0
  169. package/lib/cjs/customer/schema/organization.js +40 -0
  170. package/lib/cjs/customer/schema/schema.d.ts +4 -0
  171. package/lib/cjs/customer/schema/schema.d.ts.map +1 -0
  172. package/lib/cjs/customer/schema/schema.js +19 -0
  173. package/lib/cjs/customer/schema/user.d.ts +122 -0
  174. package/lib/cjs/customer/schema/user.d.ts.map +1 -0
  175. package/lib/cjs/customer/schema/user.js +83 -0
  176. package/lib/cjs/customer/schema/user.test.d.ts +2 -0
  177. package/lib/cjs/customer/schema/user.test.d.ts.map +1 -0
  178. package/lib/cjs/customer/schema/user.test.js +57 -0
  179. package/lib/cjs/customer/schema/utils.d.ts +11 -0
  180. package/lib/cjs/customer/schema/utils.d.ts.map +1 -0
  181. package/lib/cjs/customer/schema/utils.js +23 -0
  182. package/lib/cjs/identity/index.d.ts +2 -0
  183. package/lib/cjs/identity/index.d.ts.map +1 -0
  184. package/lib/cjs/identity/index.js +17 -0
  185. package/lib/cjs/identity/schema/schema.d.ts +7 -0
  186. package/lib/cjs/identity/schema/schema.d.ts.map +1 -0
  187. package/lib/cjs/identity/schema/schema.js +9 -0
  188. package/lib/cjs/oauth/index.d.ts +2 -0
  189. package/lib/cjs/oauth/index.d.ts.map +1 -0
  190. package/lib/cjs/oauth/index.js +17 -0
  191. package/lib/cjs/oauth/schema/schema.d.ts +8 -0
  192. package/lib/cjs/oauth/schema/schema.d.ts.map +1 -0
  193. package/lib/cjs/oauth/schema/schema.js +9 -0
  194. package/lib/cjs/package.json +1 -0
  195. package/lib/cjs/workspace/index.d.ts +2 -0
  196. package/lib/cjs/workspace/index.d.ts.map +1 -0
  197. package/lib/cjs/workspace/index.js +17 -0
  198. package/lib/cjs/workspace/schema/authorization.d.ts +31 -0
  199. package/lib/cjs/workspace/schema/authorization.d.ts.map +1 -0
  200. package/lib/cjs/workspace/schema/authorization.js +22 -0
  201. package/lib/cjs/workspace/schema/branding.d.ts +38 -0
  202. package/lib/cjs/workspace/schema/branding.d.ts.map +1 -0
  203. package/lib/cjs/workspace/schema/branding.js +25 -0
  204. package/lib/cjs/workspace/schema/membership.d.ts +25 -0
  205. package/lib/cjs/workspace/schema/membership.d.ts.map +1 -0
  206. package/lib/cjs/workspace/schema/membership.js +19 -0
  207. package/lib/cjs/workspace/schema/registration.d.ts +28 -0
  208. package/lib/cjs/workspace/schema/registration.d.ts.map +1 -0
  209. package/lib/cjs/workspace/schema/registration.js +22 -0
  210. package/lib/cjs/workspace/schema/schema.d.ts +10 -0
  211. package/lib/cjs/workspace/schema/schema.d.ts.map +1 -0
  212. package/lib/cjs/workspace/schema/schema.js +25 -0
  213. package/lib/cjs/workspace/schema/settings.d.ts +23 -0
  214. package/lib/cjs/workspace/schema/settings.d.ts.map +1 -0
  215. package/lib/cjs/workspace/schema/settings.js +15 -0
  216. package/lib/cjs/workspace/schema/tenant.d.ts +57 -0
  217. package/lib/cjs/workspace/schema/tenant.d.ts.map +1 -0
  218. package/lib/cjs/workspace/schema/tenant.js +26 -0
  219. package/lib/cjs/workspace/schema/user-notification.d.ts +62 -0
  220. package/lib/cjs/workspace/schema/user-notification.d.ts.map +1 -0
  221. package/lib/cjs/workspace/schema/user-notification.js +44 -0
  222. package/lib/cjs/workspace/schema/user-preferences.d.ts +26 -0
  223. package/lib/cjs/workspace/schema/user-preferences.d.ts.map +1 -0
  224. package/lib/cjs/workspace/schema/user-preferences.js +19 -0
  225. package/lib/cjs/workspace/schema/utils.d.ts +15 -0
  226. package/lib/cjs/workspace/schema/utils.d.ts.map +1 -0
  227. package/lib/cjs/workspace/schema/utils.js +64 -0
  228. package/lib/esm/action/index.d.ts +2 -0
  229. package/lib/esm/action/index.d.ts.map +1 -0
  230. package/lib/esm/action/index.js +1 -0
  231. package/lib/esm/action/schema/base.d.ts +21 -0
  232. package/lib/esm/action/schema/base.d.ts.map +1 -0
  233. package/lib/esm/action/schema/base.js +16 -0
  234. package/lib/esm/action/schema/operations/set-password.d.ts +31 -0
  235. package/lib/esm/action/schema/operations/set-password.d.ts.map +1 -0
  236. package/lib/esm/action/schema/operations/set-password.js +15 -0
  237. package/lib/esm/action/schema/operations/sign-up-verification.d.ts +22 -0
  238. package/lib/esm/action/schema/operations/sign-up-verification.d.ts.map +1 -0
  239. package/lib/esm/action/schema/operations/sign-up-verification.js +12 -0
  240. package/lib/esm/action/schema/operations/sign-up.d.ts +44 -0
  241. package/lib/esm/action/schema/operations/sign-up.d.ts.map +1 -0
  242. package/lib/esm/action/schema/operations/sign-up.js +18 -0
  243. package/lib/esm/action/schema/operations/user-attribute-verification.d.ts +20 -0
  244. package/lib/esm/action/schema/operations/user-attribute-verification.d.ts.map +1 -0
  245. package/lib/esm/action/schema/operations/user-attribute-verification.js +10 -0
  246. package/lib/esm/action/schema/schema.d.ts +92 -0
  247. package/lib/esm/action/schema/schema.d.ts.map +1 -0
  248. package/lib/esm/action/schema/schema.js +21 -0
  249. package/lib/esm/activity/index.d.ts +2 -0
  250. package/lib/esm/activity/index.d.ts.map +1 -0
  251. package/lib/esm/activity/index.js +1 -0
  252. package/lib/esm/activity/schema/base.d.ts +54 -0
  253. package/lib/esm/activity/schema/base.d.ts.map +1 -0
  254. package/lib/esm/activity/schema/base.js +31 -0
  255. package/lib/esm/activity/schema/schema.d.ts +156 -0
  256. package/lib/esm/activity/schema/schema.d.ts.map +1 -0
  257. package/lib/esm/activity/schema/schema.js +33 -0
  258. package/lib/esm/activity/schema/types/authentication.d.ts +29 -0
  259. package/lib/esm/activity/schema/types/authentication.d.ts.map +1 -0
  260. package/lib/esm/activity/schema/types/authentication.js +13 -0
  261. package/lib/esm/activity/schema/types/authorization.d.ts +29 -0
  262. package/lib/esm/activity/schema/types/authorization.d.ts.map +1 -0
  263. package/lib/esm/activity/schema/types/authorization.js +14 -0
  264. package/lib/esm/activity/schema/types/note.d.ts +51 -0
  265. package/lib/esm/activity/schema/types/note.d.ts.map +1 -0
  266. package/lib/esm/activity/schema/types/note.js +14 -0
  267. package/lib/esm/activity/schema/types/operation.d.ts +31 -0
  268. package/lib/esm/activity/schema/types/operation.d.ts.map +1 -0
  269. package/lib/esm/activity/schema/types/operation.js +15 -0
  270. package/lib/esm/activity/schema/types/unknown.d.ts +22 -0
  271. package/lib/esm/activity/schema/types/unknown.d.ts.map +1 -0
  272. package/lib/esm/activity/schema/types/unknown.js +6 -0
  273. package/lib/esm/activity/schema/utils.d.ts +7 -0
  274. package/lib/esm/activity/schema/utils.d.ts.map +1 -0
  275. package/lib/esm/activity/schema/utils.js +9 -0
  276. package/lib/esm/app/index.d.ts +2 -0
  277. package/lib/esm/app/index.d.ts.map +1 -0
  278. package/lib/esm/app/index.js +1 -0
  279. package/lib/esm/app/schema/app.d.ts +58 -0
  280. package/lib/esm/app/schema/app.d.ts.map +1 -0
  281. package/lib/esm/app/schema/app.js +40 -0
  282. package/lib/esm/app/schema/authorization.d.ts +37 -0
  283. package/lib/esm/app/schema/authorization.d.ts.map +1 -0
  284. package/lib/esm/app/schema/authorization.js +41 -0
  285. package/lib/esm/app/schema/oauth.d.ts +30 -0
  286. package/lib/esm/app/schema/oauth.d.ts.map +1 -0
  287. package/lib/esm/app/schema/oauth.js +18 -0
  288. package/lib/esm/app/schema/oidc.d.ts +28 -0
  289. package/lib/esm/app/schema/oidc.d.ts.map +1 -0
  290. package/lib/esm/app/schema/oidc.js +10 -0
  291. package/lib/esm/app/schema/registration.d.ts +22 -0
  292. package/lib/esm/app/schema/registration.d.ts.map +1 -0
  293. package/lib/esm/app/schema/registration.js +13 -0
  294. package/lib/esm/app/schema/saml.d.ts +28 -0
  295. package/lib/esm/app/schema/saml.d.ts.map +1 -0
  296. package/lib/esm/app/schema/saml.js +10 -0
  297. package/lib/esm/app/schema/schema.d.ts +8 -0
  298. package/lib/esm/app/schema/schema.d.ts.map +1 -0
  299. package/lib/esm/app/schema/schema.js +7 -0
  300. package/lib/esm/app/schema/utils.d.ts +11 -0
  301. package/lib/esm/app/schema/utils.d.ts.map +1 -0
  302. package/lib/esm/app/schema/utils.js +15 -0
  303. package/lib/esm/association/index.d.ts +2 -0
  304. package/lib/esm/association/index.d.ts.map +1 -0
  305. package/lib/esm/association/index.js +1 -0
  306. package/lib/esm/association/schema/association.d.ts +79 -0
  307. package/lib/esm/association/schema/association.d.ts.map +1 -0
  308. package/lib/esm/association/schema/association.js +23 -0
  309. package/lib/esm/association/schema/schema.d.ts +2 -0
  310. package/lib/esm/association/schema/schema.d.ts.map +1 -0
  311. package/lib/esm/association/schema/schema.js +1 -0
  312. package/lib/esm/authentication/index.d.ts +2 -0
  313. package/lib/esm/authentication/index.d.ts.map +1 -0
  314. package/lib/esm/authentication/index.js +1 -0
  315. package/lib/esm/authentication/schema/factors.d.ts +48 -0
  316. package/lib/esm/authentication/schema/factors.d.ts.map +1 -0
  317. package/lib/esm/authentication/schema/factors.js +25 -0
  318. package/lib/esm/authentication/schema/factors.test.d.ts +2 -0
  319. package/lib/esm/authentication/schema/factors.test.d.ts.map +1 -0
  320. package/lib/esm/authentication/schema/factors.test.js +121 -0
  321. package/lib/esm/authentication/schema/provider.d.ts +27 -0
  322. package/lib/esm/authentication/schema/provider.d.ts.map +1 -0
  323. package/lib/esm/authentication/schema/provider.js +21 -0
  324. package/lib/esm/authentication/schema/schema.d.ts +6 -0
  325. package/lib/esm/authentication/schema/schema.d.ts.map +1 -0
  326. package/lib/esm/authentication/schema/schema.js +5 -0
  327. package/lib/esm/authentication/schema/session.d.ts +59 -0
  328. package/lib/esm/authentication/schema/session.d.ts.map +1 -0
  329. package/lib/esm/authentication/schema/session.js +43 -0
  330. package/lib/esm/authentication/schema/settings.d.ts +46 -0
  331. package/lib/esm/authentication/schema/settings.d.ts.map +1 -0
  332. package/lib/esm/authentication/schema/settings.js +13 -0
  333. package/lib/esm/authentication/schema/strategy/base.d.ts +43 -0
  334. package/lib/esm/authentication/schema/strategy/base.d.ts.map +1 -0
  335. package/lib/esm/authentication/schema/strategy/base.js +28 -0
  336. package/lib/esm/authentication/schema/strategy/schema.d.ts +169 -0
  337. package/lib/esm/authentication/schema/strategy/schema.d.ts.map +1 -0
  338. package/lib/esm/authentication/schema/strategy/schema.js +22 -0
  339. package/lib/esm/authentication/schema/strategy/types/email.d.ts +44 -0
  340. package/lib/esm/authentication/schema/strategy/types/email.d.ts.map +1 -0
  341. package/lib/esm/authentication/schema/strategy/types/email.js +17 -0
  342. package/lib/esm/authentication/schema/strategy/types/password.d.ts +99 -0
  343. package/lib/esm/authentication/schema/strategy/types/password.d.ts.map +1 -0
  344. package/lib/esm/authentication/schema/strategy/types/password.js +32 -0
  345. package/lib/esm/authentication/schema/strategy/types/totp.d.ts +91 -0
  346. package/lib/esm/authentication/schema/strategy/types/totp.d.ts.map +1 -0
  347. package/lib/esm/authentication/schema/strategy/types/totp.js +45 -0
  348. package/lib/esm/authorization/index.d.ts +2 -0
  349. package/lib/esm/authorization/index.d.ts.map +1 -0
  350. package/lib/esm/authorization/index.js +1 -0
  351. package/lib/esm/authorization/schema/permission.d.ts +69 -0
  352. package/lib/esm/authorization/schema/permission.d.ts.map +1 -0
  353. package/lib/esm/authorization/schema/permission.js +47 -0
  354. package/lib/esm/authorization/schema/role.d.ts +74 -0
  355. package/lib/esm/authorization/schema/role.d.ts.map +1 -0
  356. package/lib/esm/authorization/schema/role.js +49 -0
  357. package/lib/esm/authorization/schema/schema.d.ts +4 -0
  358. package/lib/esm/authorization/schema/schema.d.ts.map +1 -0
  359. package/lib/esm/authorization/schema/schema.js +3 -0
  360. package/lib/esm/authorization/schema/utils.d.ts +11 -0
  361. package/lib/esm/authorization/schema/utils.d.ts.map +1 -0
  362. package/lib/esm/authorization/schema/utils.js +15 -0
  363. package/lib/esm/common/index.d.ts +2 -0
  364. package/lib/esm/common/index.d.ts.map +1 -0
  365. package/lib/esm/common/index.js +1 -0
  366. package/lib/esm/common/schema/aggregate.d.ts +6 -0
  367. package/lib/esm/common/schema/aggregate.d.ts.map +1 -0
  368. package/lib/esm/common/schema/aggregate.js +5 -0
  369. package/lib/esm/common/schema/dates.d.ts +39 -0
  370. package/lib/esm/common/schema/dates.d.ts.map +1 -0
  371. package/lib/esm/common/schema/dates.js +31 -0
  372. package/lib/esm/common/schema/dates.test.d.ts +2 -0
  373. package/lib/esm/common/schema/dates.test.d.ts.map +1 -0
  374. package/lib/esm/common/schema/dates.test.js +31 -0
  375. package/lib/esm/common/schema/jwt.d.ts +21 -0
  376. package/lib/esm/common/schema/jwt.d.ts.map +1 -0
  377. package/lib/esm/common/schema/jwt.js +21 -0
  378. package/lib/esm/common/schema/metadata.d.ts +42 -0
  379. package/lib/esm/common/schema/metadata.d.ts.map +1 -0
  380. package/lib/esm/common/schema/metadata.js +83 -0
  381. package/lib/esm/common/schema/metadata.test.d.ts +2 -0
  382. package/lib/esm/common/schema/metadata.test.d.ts.map +1 -0
  383. package/lib/esm/common/schema/metadata.test.js +60 -0
  384. package/lib/esm/common/schema/schema.d.ts +5 -0
  385. package/lib/esm/common/schema/schema.d.ts.map +1 -0
  386. package/lib/esm/common/schema/schema.js +4 -0
  387. package/lib/esm/customer/index.d.ts +2 -0
  388. package/lib/esm/customer/index.d.ts.map +1 -0
  389. package/lib/esm/customer/index.js +1 -0
  390. package/lib/esm/customer/schema/organization.d.ts +54 -0
  391. package/lib/esm/customer/schema/organization.d.ts.map +1 -0
  392. package/lib/esm/customer/schema/organization.js +37 -0
  393. package/lib/esm/customer/schema/schema.d.ts +4 -0
  394. package/lib/esm/customer/schema/schema.d.ts.map +1 -0
  395. package/lib/esm/customer/schema/schema.js +3 -0
  396. package/lib/esm/customer/schema/user.d.ts +122 -0
  397. package/lib/esm/customer/schema/user.d.ts.map +1 -0
  398. package/lib/esm/customer/schema/user.js +80 -0
  399. package/lib/esm/customer/schema/user.test.d.ts +2 -0
  400. package/lib/esm/customer/schema/user.test.d.ts.map +1 -0
  401. package/lib/esm/customer/schema/user.test.js +55 -0
  402. package/lib/esm/customer/schema/utils.d.ts +11 -0
  403. package/lib/esm/customer/schema/utils.d.ts.map +1 -0
  404. package/lib/esm/customer/schema/utils.js +15 -0
  405. package/lib/esm/identity/index.d.ts +2 -0
  406. package/lib/esm/identity/index.d.ts.map +1 -0
  407. package/lib/esm/identity/index.js +1 -0
  408. package/lib/esm/identity/schema/schema.d.ts +7 -0
  409. package/lib/esm/identity/schema/schema.d.ts.map +1 -0
  410. package/lib/esm/identity/schema/schema.js +6 -0
  411. package/lib/esm/oauth/index.d.ts +2 -0
  412. package/lib/esm/oauth/index.d.ts.map +1 -0
  413. package/lib/esm/oauth/index.js +1 -0
  414. package/lib/esm/oauth/schema/schema.d.ts +8 -0
  415. package/lib/esm/oauth/schema/schema.d.ts.map +1 -0
  416. package/lib/esm/oauth/schema/schema.js +6 -0
  417. package/lib/esm/package.json +1 -0
  418. package/lib/esm/workspace/index.d.ts +2 -0
  419. package/lib/esm/workspace/index.d.ts.map +1 -0
  420. package/lib/esm/workspace/index.js +1 -0
  421. package/lib/esm/workspace/schema/authorization.d.ts +31 -0
  422. package/lib/esm/workspace/schema/authorization.d.ts.map +1 -0
  423. package/lib/esm/workspace/schema/authorization.js +19 -0
  424. package/lib/esm/workspace/schema/branding.d.ts +38 -0
  425. package/lib/esm/workspace/schema/branding.d.ts.map +1 -0
  426. package/lib/esm/workspace/schema/branding.js +22 -0
  427. package/lib/esm/workspace/schema/membership.d.ts +25 -0
  428. package/lib/esm/workspace/schema/membership.d.ts.map +1 -0
  429. package/lib/esm/workspace/schema/membership.js +16 -0
  430. package/lib/esm/workspace/schema/registration.d.ts +28 -0
  431. package/lib/esm/workspace/schema/registration.d.ts.map +1 -0
  432. package/lib/esm/workspace/schema/registration.js +19 -0
  433. package/lib/esm/workspace/schema/schema.d.ts +10 -0
  434. package/lib/esm/workspace/schema/schema.d.ts.map +1 -0
  435. package/lib/esm/workspace/schema/schema.js +9 -0
  436. package/lib/esm/workspace/schema/settings.d.ts +23 -0
  437. package/lib/esm/workspace/schema/settings.d.ts.map +1 -0
  438. package/lib/esm/workspace/schema/settings.js +12 -0
  439. package/lib/esm/workspace/schema/tenant.d.ts +57 -0
  440. package/lib/esm/workspace/schema/tenant.d.ts.map +1 -0
  441. package/lib/esm/workspace/schema/tenant.js +23 -0
  442. package/lib/esm/workspace/schema/user-notification.d.ts +62 -0
  443. package/lib/esm/workspace/schema/user-notification.d.ts.map +1 -0
  444. package/lib/esm/workspace/schema/user-notification.js +41 -0
  445. package/lib/esm/workspace/schema/user-preferences.d.ts +26 -0
  446. package/lib/esm/workspace/schema/user-preferences.d.ts.map +1 -0
  447. package/lib/esm/workspace/schema/user-preferences.js +16 -0
  448. package/lib/esm/workspace/schema/utils.d.ts +15 -0
  449. package/lib/esm/workspace/schema/utils.d.ts.map +1 -0
  450. package/lib/esm/workspace/schema/utils.js +22 -0
  451. package/package.json +155 -0
@@ -0,0 +1 @@
1
+ {"fileNames":["../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es5.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.dom.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.dom.asynciterable.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.scripthost.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2022.full.d.ts","../node_modules/.pnpm/@ark+util@0.45.2/node_modules/@ark/util/out/functions.d.ts","../node_modules/.pnpm/@ark+util@0.45.2/node_modules/@ark/util/out/objectKinds.d.ts","../node_modules/.pnpm/@ark+util@0.45.2/node_modules/@ark/util/out/unionToTuple.d.ts","../node_modules/.pnpm/@ark+util@0.45.2/node_modules/@ark/util/out/describe.d.ts","../node_modules/.pnpm/@ark+util@0.45.2/node_modules/@ark/util/out/domain.d.ts","../node_modules/.pnpm/@ark+util@0.45.2/node_modules/@ark/util/out/errors.d.ts","../node_modules/.pnpm/@ark+util@0.45.2/node_modules/@ark/util/out/generics.d.ts","../node_modules/.pnpm/@ark+util@0.45.2/node_modules/@ark/util/out/hkt.d.ts","../node_modules/.pnpm/@ark+util@0.45.2/node_modules/@ark/util/out/numbers.d.ts","../node_modules/.pnpm/@ark+util@0.45.2/node_modules/@ark/util/out/keys.d.ts","../node_modules/.pnpm/@ark+util@0.45.2/node_modules/@ark/util/out/records.d.ts","../node_modules/.pnpm/@ark+util@0.45.2/node_modules/@ark/util/out/intersections.d.ts","../node_modules/.pnpm/@ark+util@0.45.2/node_modules/@ark/util/out/arrays.d.ts","../node_modules/.pnpm/@ark+util@0.45.2/node_modules/@ark/util/out/clone.d.ts","../node_modules/.pnpm/@ark+util@0.45.2/node_modules/@ark/util/out/flatMorph.d.ts","../node_modules/.pnpm/@ark+util@0.45.2/node_modules/@ark/util/out/lazily.d.ts","../node_modules/.pnpm/@ark+util@0.45.2/node_modules/@ark/util/out/serialize.d.ts","../node_modules/.pnpm/@ark+util@0.45.2/node_modules/@ark/util/out/path.d.ts","../node_modules/.pnpm/@ark+util@0.45.2/node_modules/@ark/util/out/primitive.d.ts","../node_modules/.pnpm/@ark+util@0.45.2/node_modules/@ark/util/out/registry.d.ts","../node_modules/.pnpm/@ark+util@0.45.2/node_modules/@ark/util/out/scanner.d.ts","../node_modules/.pnpm/@ark+util@0.45.2/node_modules/@ark/util/out/strings.d.ts","../node_modules/.pnpm/@ark+util@0.45.2/node_modules/@ark/util/out/traits.d.ts","../node_modules/.pnpm/@ark+util@0.45.2/node_modules/@ark/util/out/index.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/intrinsic.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/shared/jsonSchema.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/refinements/divisor.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/refinements/range.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/refinements/exactLength.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/refinements/pattern.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/module.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/shared/standardSchema.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/shared/errors.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/shared/utils.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/generic.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/roots/alias.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/scope.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/structure/optional.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/structure/required.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/structure/prop.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/shared/registry.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/structure/index.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/refinements/maxLength.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/refinements/minLength.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/structure/sequence.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/structure/structure.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/roots/basis.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/roots/unit.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/roots/union.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/roots/root.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/shared/implement.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/roots/domain.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/shared/disjoint.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/shared/declare.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/roots/morph.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/shared/traversal.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/shared/compile.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/predicate.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/roots/proto.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/roots/intersection.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/constraint.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/node.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/refinements/after.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/refinements/before.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/refinements/max.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/refinements/min.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/refinements/kinds.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/kinds.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/parse.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/config.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/shared/intersections.d.ts","../node_modules/.pnpm/@ark+schema@0.45.2/node_modules/@ark/schema/out/index.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/config.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/reduce/shared.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/shift/scanner.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/reduce/dynamic.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/reduce/static.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/shift/operand/enclosed.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/ast/utils.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/ast/generic.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/shift/operand/unenclosed.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/shift/operand/operand.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/shift/operator/default.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/shift/operator/bounds.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/shift/operator/brand.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/shift/operator/divisor.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/shift/operator/operator.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/string.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/shift/operand/genericArgs.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/ast/bounds.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/ast/default.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/ast/divisor.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/ast/keyof.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/ast/validate.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/property.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/objectLiteral.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/tupleExpressions.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/tupleLiteral.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/definition.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/parser/ast/infer.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/methods/object.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/methods/array.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/methods/date.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/methods/number.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/methods/string.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/methods/instantiate.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/type.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/scope.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/methods/base.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/match.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/keywords/builtins.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/keywords/number.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/keywords/string.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/keywords/ts.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/keywords/keywords.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/generic.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/module.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/keywords/Array.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/keywords/FormData.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/keywords/TypedArray.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/keywords/constructors.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/attributes.d.ts","../node_modules/.pnpm/arktype@2.1.12/node_modules/arktype/out/index.d.ts","../src/common/schema/aggregate.ts","../src/common/schema/dates.ts","../src/common/schema/jwt.ts","../src/common/schema/metadata.ts","../src/common/schema/schema.ts","../src/common/index.ts","../src/authentication/schema/strategy/types/email.ts","../src/identity/schema/schema.ts","../src/authentication/schema/strategy/types/password.ts","../src/authentication/schema/strategy/types/totp.ts","../src/authentication/schema/strategy/schema.ts","../src/authentication/schema/strategy/base.ts","../src/authentication/schema/factors.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/compatibility/disposable.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/compatibility/indexable.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/compatibility/iterators.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/compatibility/index.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/globals.typedarray.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/buffer.buffer.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/header.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/readable.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/file.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/fetch.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/formdata.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/connector.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/client.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/errors.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/dispatcher.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/global-dispatcher.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/global-origin.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/pool-stats.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/pool.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/handlers.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/balanced-pool.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/agent.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/mock-interceptor.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/mock-agent.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/mock-client.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/mock-pool.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/mock-errors.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/proxy-agent.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/env-http-proxy-agent.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/retry-handler.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/retry-agent.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/api.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/interceptors.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/util.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/cookies.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/patch.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/websocket.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/eventsource.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/filereader.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/content-type.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/cache.d.ts","../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/index.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/globals.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/assert.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/assert/strict.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/async_hooks.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/buffer.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/child_process.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/cluster.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/console.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/constants.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/crypto.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/dgram.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/dns.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/dns/promises.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/domain.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/dom-events.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/events.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/fs.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/fs/promises.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/http.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/http2.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/https.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/inspector.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/module.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/net.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/os.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/path.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/perf_hooks.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/process.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/punycode.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/querystring.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/readline.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/readline/promises.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/repl.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/sea.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/stream.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/stream/promises.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/stream/consumers.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/stream/web.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/string_decoder.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/test.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/timers.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/timers/promises.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/tls.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/trace_events.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/tty.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/url.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/util.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/v8.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/vm.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/wasi.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/worker_threads.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/zlib.d.ts","../node_modules/.pnpm/@types+node@20.17.27/node_modules/@types/node/index.d.ts","../node_modules/.pnpm/ksuid@3.0.0/node_modules/ksuid/index.d.ts","../src/customer/schema/utils.ts","../src/customer/schema/user.ts","../src/authentication/schema/provider.ts","../src/authentication/schema/session.ts","../src/authentication/schema/settings.ts","../src/authentication/schema/schema.ts","../src/action/schema/base.ts","../src/action/schema/operations/set-password.ts","../src/action/schema/operations/sign-up-verification.ts","../src/app/schema/utils.ts","../src/app/schema/app.ts","../src/action/schema/operations/sign-up.ts","../src/action/schema/operations/user-attribute-verification.ts","../src/action/schema/schema.ts","../src/action/index.ts","../src/activity/schema/utils.ts","../src/activity/schema/base.ts","../src/activity/schema/types/authentication.ts","../src/activity/schema/types/authorization.ts","../src/activity/schema/types/note.ts","../src/activity/schema/types/operation.ts","../src/activity/schema/types/unknown.ts","../src/activity/schema/schema.ts","../src/activity/index.ts","../src/oauth/schema/schema.ts","../src/workspace/schema/authorization.ts","../src/app/schema/authorization.ts","../src/app/schema/oauth.ts","../src/app/schema/oidc.ts","../src/app/schema/registration.ts","../src/app/schema/saml.ts","../src/app/schema/schema.ts","../src/app/index.ts","../src/customer/schema/organization.ts","../src/association/schema/association.ts","../src/association/schema/schema.ts","../src/association/index.ts","../src/authentication/index.ts","../node_modules/.pnpm/@vitest+pretty-format@3.0.9/node_modules/@vitest/pretty-format/dist/index.d.ts","../node_modules/.pnpm/@vitest+utils@3.0.9/node_modules/@vitest/utils/dist/types.d.ts","../node_modules/.pnpm/@vitest+utils@3.0.9/node_modules/@vitest/utils/dist/helpers.d.ts","../node_modules/.pnpm/tinyrainbow@2.0.0/node_modules/tinyrainbow/dist/index-8b61d5bc.d.ts","../node_modules/.pnpm/tinyrainbow@2.0.0/node_modules/tinyrainbow/dist/node.d.ts","../node_modules/.pnpm/@vitest+utils@3.0.9/node_modules/@vitest/utils/dist/index.d.ts","../node_modules/.pnpm/@vitest+runner@3.0.9/node_modules/@vitest/runner/dist/tasks.d-D4e98wjH.d.ts","../node_modules/.pnpm/@vitest+utils@3.0.9/node_modules/@vitest/utils/dist/types.d-Cr0z4Cnu.d.ts","../node_modules/.pnpm/@vitest+utils@3.0.9/node_modules/@vitest/utils/dist/diff.d.ts","../node_modules/.pnpm/@vitest+utils@3.0.9/node_modules/@vitest/utils/diff.d.ts","../node_modules/.pnpm/@vitest+runner@3.0.9/node_modules/@vitest/runner/dist/types.d.ts","../node_modules/.pnpm/@vitest+utils@3.0.9/node_modules/@vitest/utils/dist/error.d.ts","../node_modules/.pnpm/@vitest+utils@3.0.9/node_modules/@vitest/utils/error.d.ts","../node_modules/.pnpm/@vitest+runner@3.0.9/node_modules/@vitest/runner/dist/index.d.ts","../node_modules/.pnpm/vitest@3.0.9_@types+node@20.17.27/node_modules/vitest/dist/chunks/environment.d.C8UItCbf.d.ts","../node_modules/.pnpm/@types+estree@1.0.6/node_modules/@types/estree/index.d.ts","../node_modules/.pnpm/rollup@4.37.0/node_modules/rollup/dist/rollup.d.ts","../node_modules/.pnpm/vite@5.4.15_@types+node@20.17.27/node_modules/vite/types/hmrPayload.d.ts","../node_modules/.pnpm/vite@5.4.15_@types+node@20.17.27/node_modules/vite/types/customEvent.d.ts","../node_modules/.pnpm/vite@5.4.15_@types+node@20.17.27/node_modules/vite/types/hot.d.ts","../node_modules/.pnpm/vite@5.4.15_@types+node@20.17.27/node_modules/vite/dist/node/types.d-aGj9QkWt.d.ts","../node_modules/.pnpm/esbuild@0.21.5/node_modules/esbuild/lib/main.d.ts","../node_modules/.pnpm/source-map-js@1.2.1/node_modules/source-map-js/source-map.d.ts","../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/previous-map.d.ts","../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/input.d.ts","../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/css-syntax-error.d.ts","../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/declaration.d.ts","../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/root.d.ts","../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/warning.d.ts","../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/lazy-result.d.ts","../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/no-work-result.d.ts","../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/processor.d.ts","../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/result.d.ts","../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/document.d.ts","../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/rule.d.ts","../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/node.d.ts","../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/comment.d.ts","../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/container.d.ts","../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/at-rule.d.ts","../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/list.d.ts","../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/postcss.d.ts","../node_modules/.pnpm/vite@5.4.15_@types+node@20.17.27/node_modules/vite/dist/node/runtime.d.ts","../node_modules/.pnpm/vite@5.4.15_@types+node@20.17.27/node_modules/vite/types/importGlob.d.ts","../node_modules/.pnpm/vite@5.4.15_@types+node@20.17.27/node_modules/vite/types/metadata.d.ts","../node_modules/.pnpm/vite@5.4.15_@types+node@20.17.27/node_modules/vite/dist/node/index.d.ts","../node_modules/.pnpm/@vitest+utils@3.0.9/node_modules/@vitest/utils/dist/source-map.d.ts","../node_modules/.pnpm/@vitest+snapshot@3.0.9/node_modules/@vitest/snapshot/dist/environment.d-DHdQ1Csl.d.ts","../node_modules/.pnpm/@vitest+snapshot@3.0.9/node_modules/@vitest/snapshot/dist/rawSnapshot.d-lFsMJFUd.d.ts","../node_modules/.pnpm/@vitest+snapshot@3.0.9/node_modules/@vitest/snapshot/dist/index.d.ts","../node_modules/.pnpm/@vitest+snapshot@3.0.9/node_modules/@vitest/snapshot/dist/environment.d.ts","../node_modules/.pnpm/@vitest+snapshot@3.0.9/node_modules/@vitest/snapshot/environment.d.ts","../node_modules/.pnpm/vitest@3.0.9_@types+node@20.17.27/node_modules/vitest/dist/chunks/config.d.DevWltVl.d.ts","../node_modules/.pnpm/vite-node@3.0.9_@types+node@20.17.27/node_modules/vite-node/dist/trace-mapping.d-DLVdEqOp.d.ts","../node_modules/.pnpm/vite-node@3.0.9_@types+node@20.17.27/node_modules/vite-node/dist/index.d-CvjHzhRV.d.ts","../node_modules/.pnpm/vite-node@3.0.9_@types+node@20.17.27/node_modules/vite-node/dist/index.d.ts","../node_modules/.pnpm/@vitest+runner@3.0.9/node_modules/@vitest/runner/dist/utils.d.ts","../node_modules/.pnpm/@vitest+runner@3.0.9/node_modules/@vitest/runner/utils.d.ts","../node_modules/.pnpm/tinybench@2.9.0/node_modules/tinybench/dist/index.d.cts","../node_modules/.pnpm/vitest@3.0.9_@types+node@20.17.27/node_modules/vitest/dist/chunks/benchmark.d.BwvBVTda.d.ts","../node_modules/.pnpm/vite-node@3.0.9_@types+node@20.17.27/node_modules/vite-node/dist/client.d.ts","../node_modules/.pnpm/vitest@3.0.9_@types+node@20.17.27/node_modules/vitest/dist/chunks/coverage.d.S9RMNXIe.d.ts","../node_modules/.pnpm/@vitest+snapshot@3.0.9/node_modules/@vitest/snapshot/dist/manager.d.ts","../node_modules/.pnpm/@vitest+snapshot@3.0.9/node_modules/@vitest/snapshot/manager.d.ts","../node_modules/.pnpm/vitest@3.0.9_@types+node@20.17.27/node_modules/vitest/dist/chunks/reporters.d.CqBhtcTq.d.ts","../node_modules/.pnpm/vitest@3.0.9_@types+node@20.17.27/node_modules/vitest/dist/chunks/worker.d.C58isfFm.d.ts","../node_modules/.pnpm/vitest@3.0.9_@types+node@20.17.27/node_modules/vitest/dist/chunks/worker.d.CSFlSYJg.d.ts","../node_modules/.pnpm/@vitest+expect@3.0.9/node_modules/@vitest/expect/dist/chai.d.cts","../node_modules/.pnpm/@vitest+spy@3.0.9/node_modules/@vitest/spy/dist/index.d.ts","../node_modules/.pnpm/@vitest+expect@3.0.9/node_modules/@vitest/expect/dist/index.d.ts","../node_modules/.pnpm/@vitest+expect@3.0.9/node_modules/@vitest/expect/index.d.ts","../node_modules/.pnpm/vitest@3.0.9_@types+node@20.17.27/node_modules/vitest/dist/chunks/global.d.Cg2sEPIm.d.ts","../node_modules/.pnpm/vitest@3.0.9_@types+node@20.17.27/node_modules/vitest/dist/chunks/vite.d.BUZTGxQ3.d.ts","../node_modules/.pnpm/@vitest+mocker@3.0.9_vite@5.4.15_@types+node@20.17.27_/node_modules/@vitest/mocker/dist/types.d-kZ7T8ECy.d.ts","../node_modules/.pnpm/@vitest+mocker@3.0.9_vite@5.4.15_@types+node@20.17.27_/node_modules/@vitest/mocker/dist/index.d.ts","../node_modules/.pnpm/vitest@3.0.9_@types+node@20.17.27/node_modules/vitest/dist/chunks/mocker.d.BE_2ls6u.d.ts","../node_modules/.pnpm/vitest@3.0.9_@types+node@20.17.27/node_modules/vitest/dist/chunks/suite.d.FvehnV49.d.ts","../node_modules/.pnpm/expect-type@1.2.0/node_modules/expect-type/dist/utils.d.ts","../node_modules/.pnpm/expect-type@1.2.0/node_modules/expect-type/dist/overloads.d.ts","../node_modules/.pnpm/expect-type@1.2.0/node_modules/expect-type/dist/branding.d.ts","../node_modules/.pnpm/expect-type@1.2.0/node_modules/expect-type/dist/messages.d.ts","../node_modules/.pnpm/expect-type@1.2.0/node_modules/expect-type/dist/index.d.ts","../node_modules/.pnpm/vitest@3.0.9_@types+node@20.17.27/node_modules/vitest/dist/index.d.ts","../src/authentication/schema/factors.test.ts","../src/authorization/schema/utils.ts","../src/authorization/schema/permission.ts","../src/authorization/schema/role.ts","../src/authorization/schema/schema.ts","../src/authorization/index.ts","../src/common/schema/dates.test.ts","../src/common/schema/metadata.test.ts","../src/customer/schema/schema.ts","../src/customer/index.ts","../src/customer/schema/user.test.ts","../src/identity/index.ts","../src/oauth/index.ts","../src/workspace/schema/branding.ts","../src/workspace/schema/membership.ts","../src/workspace/schema/registration.ts","../src/workspace/schema/settings.ts","../src/workspace/schema/utils.ts","../src/workspace/schema/tenant.ts","../src/workspace/schema/user-notification.ts","../src/workspace/schema/user-preferences.ts","../src/workspace/schema/schema.ts","../src/workspace/index.ts"],"fileIdsList":[[87,88,96,109,114,117,132,205,247],[87,89,97,100,109,113,114,116,117,119,120,123,125,131,132,205,247],[87,97,100,113,125,131,205,247],[87,88,89,90,91,92,93,94,95,96,97,98,100,101,102,103,104,105,106,107,108,109,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,131,132,133,134,205,247],[135,205,247],[87,90,93,97,99,100,101,102,105,108,109,111,112,114,115,118,121,122,123,125,130,205,247],[87,97,100,113,205,247],[87,96,97,100,109,111,113,114,117,118,119,120,123,124,131,132,205,247],[87,97,100,113,114,117,125,131,205,247],[104,114,117,119,120,124,205,247],[89,91,113,114,117,119,205,247],[89,113,114,117,119,124,205,247],[89,91,113,114,117,119,124,205,247],[92,106,107,114,124,126,127,128,129,205,247],[89,113,114,117,124,205,247],[87,114,117,124,131,205,247],[89,113,114,117,119,120,132,205,247],[113,119,120,205,247],[87,89,110,114,117,119,205,247],[87,89,96,97,109,113,114,115,117,118,119,120,121,122,131,205,247],[87,89,113,114,117,119,120,131,205,247],[87,89,90,91,92,93,95,97,100,103,109,112,114,116,117,118,121,124,125,131,205,247],[87,89,96,104,111,113,114,115,116,117,118,119,120,125,131,205,247],[87,94,97,98,99,113,114,119,125,131,132,133,205,247],[87,119,125,132,205,247],[87,89,96,114,116,131,133,205,247],[87,103,113,114,115,125,131,205,247],[87,95,97,114,117,119,131,205,247],[87,97,100,109,113,116,117,125,131,132,133,205,247],[100,113,114,116,125,205,247],[87,114,205,247],[87,133,205,247],[205,247],[87,96,118,133,205,247],[87,94,96,98,100,113,124,125,132,205,247],[113,114,117,119,124,125,131,205,247],[87,103,113,114,117,118,205,247],[87,101,102,113,114,116,117,119,120,124,125,131,205,247],[96,103,114,117,205,247],[87,89,92,106,107,113,114,117,118,119,120,124,125,131,205,247],[87,89,97,100,101,102,103,104,105,108,113,114,117,118,119,120,124,125,205,247],[64,70,72,75,205,247],[65,66,68,70,76,205,247],[66,67,70,205,247],[70,205,247],[66,70,73,74,76,205,247],[66,68,69,205,247],[64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,205,247],[68,70,71,74,76,205,247],[72,76,205,247],[64,67,68,70,205,247],[74,76,80,205,247],[68,72,205,247],[64,66,70,73,76,205,247],[74,205,247],[68,76,205,247],[65,70,74,75,76,205,247],[64,70,76,205,247],[205,244,247],[205,246,247],[247],[205,247,252,281],[205,247,248,253,259,260,267,278,289],[205,247,248,249,259,267],[200,201,202,205,247],[205,247,250,290],[205,247,251,252,260,268],[205,247,252,278,286],[205,247,253,255,259,267],[205,246,247,254],[205,247,255,256],[205,247,259],[205,247,257,259],[205,246,247,259],[205,247,259,260,261,278,289],[205,247,259,260,261,274,278,281],[205,242,247,294],[205,247,255,259,262,267,278,289],[205,247,259,260,262,263,267,278,286,289],[205,247,262,264,278,286,289],[203,204,205,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295],[205,247,259,265],[205,247,266,289,294],[205,247,255,259,267,278],[205,247,268],[205,247,269],[205,246,247,270],[205,244,245,246,247,248,249,250,251,252,253,254,255,256,257,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295],[205,247,272],[205,247,273],[205,247,259,274,275],[205,247,274,276,290,292],[205,247,259,278,279,281],[205,247,280,281],[205,247,278,279],[205,247,281],[205,247,282],[205,244,247,278],[205,247,259,284,285],[205,247,284,285],[205,247,252,267,278,286],[205,247,287],[205,247,267,288],[205,247,262,273,289],[205,247,252,290],[205,247,278,291],[205,247,266,292],[205,247,293],[205,247,252,259,261,270,278,289,292,294],[205,247,278,295],[205,247,340,341,345,403],[205,247,404],[205,247,408],[205,247,341,342,345,346,348],[205,247,341],[205,247,341,342,345],[205,247,341,342],[205,247,391],[205,247,382],[205,247,336,382,383],[205,247,336,382],[205,247,385],[205,247,397],[205,247,344],[205,247,336,343],[205,247,337],[205,247,336,337,338,340],[205,247,336],[205,247,347],[87,135,170,178,184,205,247],[87,135,178,205,247],[87,135,138,140,151,157,162,163,170,171,178,205,247],[87,135,136,170,171,178,179,180,185,205,247],[87,135,180,185,205,247],[180,185,205,247],[180,205,247],[87,135,180,205,247],[87,180,181,182,183,205,247],[87,135,162,169,170,171,172,173,174,175,176,177,179,180,184,185,205,247],[135,180,205,247],[87,135,151,171,172,178,185,205,247],[135,164,205,247],[87,135,136,165,169,171,178,185,205,247],[87,164,165,166,167,168,172,205,247],[135,172,205,247],[87,135,165,169,172,178,185,205,247],[87,135,170,179,205,247],[87,135,137,142,147,157,163,185,205,247],[87,135,142,146,157,163,178,205,247],[87,135,142,157,163,185,205,247],[87,135,142,157,162,163,171,205,247],[87,137,138,143,162,178,185,205,247],[87,135,157,163,205,247],[87,137,138,163,205,247],[87,135,137,142,143,146,151,152,153,154,155,156,163,179,205,247],[87,135,151,157,158,159,160,161,171,178,205,247],[87,135,157,158,162,205,247],[87,135,146,151,159,162,205,247],[87,135,137,138,185,205,247],[185,205,247],[87,137,138,185,205,247],[87,138,139,140,163,205,247],[87,135,137,139,140,151,205,247],[87,138,139,140,141,144,151,205,247],[87,135,136,138,139,140,143,151,152,157,163,171,205,247],[87,135,137,138,139,140,142,145,163,185,205,247],[135,138,139,140,205,247],[87,135,139,141,185,205,247],[138,139,140,205,247],[87,138,139,140,147,148,149,205,247],[87,137,205,247],[87,135,136,137,139,140,145,146,150,163,171,205,247],[87,135,138,144,151,162,178,185,205,247],[87,135,158,162,205,247],[87,135,146,158,162,163,170,173,178,179,180,205,247],[87,135,160,162,169,171,172,173,178,179,185,205,247],[205,247,412,413],[205,247,412,413,414,415],[205,247,412,414],[205,247,412],[205,247,296],[205,247,373],[205,247,371,373],[205,247,362,370,371,372,374],[205,247,360],[205,247,363,368,373,376],[205,247,359,376],[205,247,363,364,367,368,369,376],[205,247,363,364,365,367,368,376],[205,247,360,361,362,363,364,368,369,370,372,373,374,376],[205,247,358,360,361,362,363,364,365,367,368,369,370,371,372,373,374,375],[205,247,358,376],[205,247,363,365,366,368,369,376],[205,247,367,376],[205,247,368,369,373,376],[205,247,361,371],[205,247,351,352],[205,247,339],[205,214,218,247,289],[205,214,247,278,289],[205,209,247],[205,211,214,247,286,289],[205,247,267,286],[205,209,247,296],[205,211,214,247,267,289],[205,206,207,210,213,247,259,278,289],[205,214,221,247],[205,206,212,247],[205,214,235,236,247],[205,210,214,247,281,289,296],[205,235,247,296],[205,208,209,247,296],[205,214,247],[205,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,236,237,238,239,240,241,247],[205,214,229,247],[205,214,221,222,247],[205,212,214,222,223,247],[205,213,247],[205,206,209,214,247],[205,214,218,222,223,247],[205,218,247],[205,212,214,217,247,289],[205,206,211,214,221,247],[205,247,278],[205,209,214,235,247,294,296],[205,247,388,389],[205,247,388],[205,247,259,260,262,263,264,267,278,286,289,295,296,352,353,354,355,356,357,376,377,378,379],[205,247,353,354,355,356],[205,247,353,354,355],[205,247,353],[205,247,354],[205,247,352],[205,247,349,392,393,406],[205,247,336,345,349,384,386,406],[205,247,395],[205,247,336,349,350,384,394,405,406],[205,247,409],[205,247,250,260,278,336,341,345,349,350,380,381,384,387,390,394,396,398,402,406,407],[205,247,349,392,393,394,406],[205,247,380,399],[205,247,349,350,384,387,390,406],[205,247,294,400],[205,247,250,260,278,294,336,341,345,349,350,380,381,384,386,387,390,392,393,394,395,396,398,399,400,401,402,403,405,406,407,409,410,411,416],[205,247,311],[186,188,190,205,247,311],[186,194,205,247,299,303,304],[186,194,205,247,299,304],[186,205,247,299,304,308],[205,247,304,305,306,309,310],[205,247,320],[186,190,192,205,247,313,320],[205,247,313,314,315,316,317,318,319,320],[186,205,247,299,314],[186,205,247,314],[205,247,297],[205,247,329],[186,190,192,205,247,307],[186,188,190,205,247,322,323],[186,188,190,205,247,307],[186,188,190,205,247],[205,247,307,308,324,325,326,327,328],[205,247,333],[186,188,190,205,247,299,331],[205,247,332],[205,247,303],[186,199,205,247,417],[186,198,205,247],[186,188,190,198,205,247,299],[197,199,205,247,300,301,302],[186,188,190,199,205,247],[186,190,192,197,205,247],[193,195,196,198,205,247],[186,194,198,205,247],[205,247,422],[186,187,190,192,205,247,419],[205,247,419,420,421],[191,205,247],[186,205,247],[186,188,205,247,417],[186,190,205,247,417],[187,188,189,190,205,247],[205,247,426],[186,190,192,205,247,298],[205,247,298,299,331],[186,205,247,299,417],[186,187,188,190,205,247,298],[194,205,247],[205,247,322],[205,247,439],[186,188,189,190,205,247],[186,188,205,247],[186,188,190,194,205,247],[205,247,323,431,432,433,434,435,436,437,438],[186,205,247,331,432,435],[186,188,190,205,247,299,435],[205,247,252,297]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"092c2bfe125ce69dbb1223c85d68d4d2397d7d8411867b5cc03cec902c233763","affectsGlobalScope":true,"impliedFormat":1},{"version":"07f073f19d67f74d732b1adea08e1dc66b1b58d77cb5b43931dee3d798a2fd53","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7a3c8b952931daebdfc7a2897c53c0a1c73624593fa070e46bd537e64dcd20a","affectsGlobalScope":true,"impliedFormat":1},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"3cbad9a1ba4453443026ed38e4b8be018abb26565fa7c944376463ad9df07c41","impliedFormat":1},{"version":"166049416a79bce61ccb20d84249c5481ffe4ed691d9a679528b4ccc22c2d607","impliedFormat":99},{"version":"90b213591166d3250f5ec2817aca0652a4c6e369c10a2693621e64a5bcf9a262","impliedFormat":99},{"version":"eb85dcde5bfab908936bb34dc1d836d519c34021a5e2cd9dae6dbff6fbaae21a","impliedFormat":99},{"version":"15cede62e667cd4bfd5d6d5383bdb54444feb25101354c7b6b0c71a82f0fe456","impliedFormat":99},{"version":"e07a36181549dc94f3c627a411ad794e087fe3ea53e9970a0578afff1dbc5622","impliedFormat":99},{"version":"12290244fc7a732e674b80b9375ef65681cb790e6c795d2c8c2fc59c57451c30","impliedFormat":99},{"version":"897db726ff5ace8a644063e7a5c7b4cec2da358ef4f59816f895ff6b9006aeb7","impliedFormat":99},{"version":"33404b9a0c6ab6201dcf53ee1ab648d1b34a5b68fbe9e806a4bc691f98149bd0","impliedFormat":99},{"version":"ef5f525ffc98fedd2eddbe8d0c78d945bc71b114bd8761df91297e735dab786c","impliedFormat":99},{"version":"485e07a4e56a406c889f56c76b921382e74afaece6fb08cea6904c95ec8aec00","impliedFormat":99},{"version":"60bee75908fb34f2071151dc5d3a8330945a62433ef7b0fd594df774bc27a009","impliedFormat":99},{"version":"c110f683203467bc7c7aba69a59b8ff1c2c93b18d110f7d1b247781cda518f3c","impliedFormat":99},{"version":"811c19f657cb2ed233b434e339635e521abf2c006684d041eab491c3f6484c4a","impliedFormat":99},{"version":"df931ec791c7c83087248abab9fabe22c4e423f2048071dfb2afdde6e443b37e","impliedFormat":99},{"version":"d1a97c29ba431bfec0c2143067100c0645cc4302ca3008180cd50ae71b840e07","impliedFormat":99},{"version":"95b1b0e297c1e55a9c6f5cfb429d756c8a1fed7896b768255f1396aa3ae64295","impliedFormat":99},{"version":"dffc08b419c340931bcc66dbadbdbf30c247ee35541cddd6e49b73d0dfb3d550","impliedFormat":99},{"version":"1dcae9ca4d50cb021ebe5ee81d56ccf2048178c7e450b96d126d4795938c3549","impliedFormat":99},{"version":"eeaab29dc8901e6380c3d95525c4869804587be7429a429632bb3ecfaef5bf20","impliedFormat":99},{"version":"4d55445b01c9c4433c18473c2817149589d91f26ddb6b5ba37dccc0ba37d5659","affectsGlobalScope":true,"impliedFormat":99},{"version":"dc7a6911881ddf1b4648ab50549251b2e1f68486b2af1066eafe4a6f54d3d825","impliedFormat":99},{"version":"43d2bb2301f8f34af1f53fa89b5c9fbe23246d90fb4c7507f1e392f8e6134092","impliedFormat":99},{"version":"805db2c7582744850ef6a93987a865d50096a73160905edb4bc6d0e286b5f89c","impliedFormat":99},{"version":"ec9d54f3fe2e2556b561d4ad954dc12ade3f55f6c0e19988c4c7fe660ab4b7e1","impliedFormat":99},{"version":"0fcf77409bb90fcb07f3e1ca71ed508b032246c1d394e19b30ad411567acec7f","impliedFormat":99},{"version":"5574a88b5629cf768b181e84f20f94b276ecb1c960694ed35057f557671aeedd","impliedFormat":99},{"version":"5d3c2f0edae085461185a5acdc741c0c01b48bb6b08ea1a32eb0e58c53c6acbf","impliedFormat":99},{"version":"c04847c1cc9ea1bfae8b437007aa325ee0d652a3be316e215d7c8095a08b2f87","impliedFormat":99},{"version":"554c93b7814e0f57dd54fe5d96a8c2d15e36978eea01d799c234965470aca92c","impliedFormat":99},{"version":"1b0aa95e0296094ca48ce26aee393e0f77ffe23d05918de54e1f3bbe3117130c","impliedFormat":99},{"version":"22affa1c44d8d262b88226abbecf210bea7204d7892c40e99f0c2ca15d2cb4b7","impliedFormat":99},{"version":"0063df6e8ef477520552c8770e08929e94f5f7a91fbdf5b66eff22c13b387794","impliedFormat":99},{"version":"98c7bb057cb5f8f7b703ff6680d584f2121b9d2ae85cfda731fdb5e5b5647edf","impliedFormat":99},{"version":"10eb3c96c1ff95017d75c83125311666b5fcdbe6db6a868b4de95b0a7297b848","impliedFormat":99},{"version":"f93c4d237f8584bc5f436feb8833666e5872252c23f2b183c8b529c8efce3957","impliedFormat":99},{"version":"187bb6582da25c485b8feaa198e7d7f748497efcdd32d3e30905865c10c3e252","impliedFormat":99},{"version":"037b2a5f0c7a419575cd4e4b33b5e9880f842ff80fa4b282f597da0b3f5c1a16","impliedFormat":99},{"version":"d7370694e825f9a7141a214d6eb71c78188922b305e275c37e5e5829392873cc","impliedFormat":99},{"version":"5f465606dd5a0fc3ae891e9b938919bcdfc59227c895a037e45765ff7952da1c","impliedFormat":99},{"version":"caf26a244f6cf2f8608e759aa99a80f3c39e4e1cb6e9bd6c301796dc22f284cb","impliedFormat":99},{"version":"8a1ff115fdbf99e5afbcb7335f3191e6206a9ca31963412380bd670acdcb0dfb","impliedFormat":99},{"version":"86ae003dde31c7aaec3b95eabe0d0d1ac9217e6bbfb51270d46994d1d2baa1c9","impliedFormat":99},{"version":"043542e1be2af9d8145f62c64c0810e98b2f5ec81d2fea911a5acc948a5056b5","impliedFormat":99},{"version":"8aac54fdb1c306084ebbdf55ec33813a67ab387f37f39c9bde013d1d05f99627","impliedFormat":99},{"version":"6c5700ea51915a8905355f48f09ec7ab590ef2bd049a80a0dbedf806951a6b3a","impliedFormat":99},{"version":"77f1acfcec943d902d61df6002cb3ac50663368503cd53494562d1038898f969","impliedFormat":99},{"version":"f7e52381933a28dabc560b5edebe3ea265e199b43c739cf610bf1e5f402804d7","impliedFormat":99},{"version":"8e990c3d5d235b7ff279c8713d2a1378b5bda44252c82925b1c62e2d730927a1","impliedFormat":99},{"version":"46ea66f7f806d09872c23347bdc17af886c3d18738199348be35555ea47bba03","impliedFormat":99},{"version":"ec5e3962ff24ba647f15a57484ea5b6e03b51aaf69e67aefa3853e38a4c294df","impliedFormat":99},{"version":"25443f46732259bba51d59f54f42dfd74dcc800e6baa1230ec83efbde53b53ea","impliedFormat":99},{"version":"eae8cd963914b84f436e58b7c4e93ccdbf63d86f3f74e3148afdabe658640e7c","impliedFormat":99},{"version":"2ebb5b482761ec54ca4ae7e11d655382becbfca18755a0f6b28b44aa796fa6cc","impliedFormat":99},{"version":"41d2f1736b9101fabb4b99ee3e784873410ccd66d005cc102e0f2ce4f8f0a9a9","affectsGlobalScope":true,"impliedFormat":99},{"version":"15091b7cb8029ad6782a0bc3e710d51476665176f7810d00cf1d4ae151ee64a9","impliedFormat":99},{"version":"dcc2888d54ee0e6496f0799280b063649b7f5bf04c4867528ec90ceef8ae89cf","impliedFormat":99},{"version":"baf5cdda841ebd1e919f1383606e9e66f07d5f85087bd02ca2d96a5c4fb0379e","impliedFormat":99},{"version":"3f3a8165470d97d86ad5d887c071fc4418808d7fa85e88a2e627b2cc50edd9c8","impliedFormat":99},{"version":"4b0fe16b7131dbcf893dce019e8b39c2bb9ee68d4d10ce763da8c6f565d0736a","impliedFormat":99},{"version":"a92e40b66b63fd269ab006d298f84895a7505a557288c6ff0565a6d77e9ac5ca","impliedFormat":99},{"version":"9f567b2bfd45015b7918a75162c9d89083ef3725959c5a618ba022e346d4fa23","impliedFormat":99},{"version":"0540906d3a6123cf536ce5174fd1766b7eaa1d59a30d78f71ddca649a99f280e","impliedFormat":99},{"version":"d0244f00438116d3910c563d5ed568b98f688801d24263a4eadb7229dcaee1ea","impliedFormat":99},{"version":"f752a135f6feff1206fa904ebadb2ba27b675be9f239b5175687c2ef82f50147","impliedFormat":99},{"version":"f47e0b43321a91cde54f5dd268bb1674e753e93080b4e90d08cccfb113e05bb8","impliedFormat":99},{"version":"e1b55edf7d7ff783942977f76b04e4c4f163273758cf320d45775dbbc979b2de","impliedFormat":99},{"version":"adf43bd96ee4a12799de95c8ac3c487107911d31a55633a24d28e81baa79beef","impliedFormat":99},{"version":"c0834f9b754e9079a1c5fe3076ec860f2a02f1e594b58553747ed18369bf13fa","impliedFormat":99},{"version":"b28b1635705a407007256796e5b3dea319291b6534e6adb013ec7205a9971f6a","impliedFormat":99},{"version":"e50bf8983bfcc887ee80e876ce7dfa49204fe0662baefa4033d4631744b50930","impliedFormat":99},{"version":"b03a56cca58baa158795485a27c025048d33920062b4930b9505aa485834c247","impliedFormat":99},{"version":"2808dfe94d74f099a5f8fd92a6351d6f5e953bd81f1c79ff94d15a27db79f51f","impliedFormat":99},{"version":"f3dcade32ecedef1884e9a035426c5bf8c8985dcbda6988fbe891a0b503c268c","affectsGlobalScope":true,"impliedFormat":99},{"version":"53a76098c1e8033359e7a7df8cd40008ec4888c56df6c1c3ed6a8ffac6f0de3a","impliedFormat":99},{"version":"d0173f3f767e599b58b5390a3d95dee58f70a2376fde504a65b20e5d58b5310e","impliedFormat":99},{"version":"ac89252a36ea7115c42e6d305da7e238caad37d2ff13a7eeffe25a78e0286cb1","impliedFormat":99},{"version":"e81fee0c6416f654159995a6a92561f5e3035746760e7e5cc4b9592aca35835f","impliedFormat":99},{"version":"22bd77026771ac8866c528248ff9c4b8412330e0540d0999fabe54efef92b318","impliedFormat":99},{"version":"11dbf2409dba425d9b3aacf0aeaa631f97d7f75f0a9434373160fb4f9cca273f","impliedFormat":99},{"version":"880d0a0cc4edf98ed0614f92b0e73745a583aeac242e154bea047d2a9fca6f70","impliedFormat":99},{"version":"5baceff006098aac12cdcf5c3e68d0af9af867bca9ea73bc1b4ed9f1229d9265","impliedFormat":99},{"version":"8a702d5510aa98d8ff51e2af111d5dfd7569528dd6f6f049716c04d15fb7f98c","impliedFormat":99},{"version":"cec2fb10c2d5eec6d643644e8f42fb57e084bff8858ae861520566995cdc755d","impliedFormat":99},{"version":"8a20c9ca8dcfa9f5b01abc1ef6b271aa7c6d1f7f7b22d3acb7f6d176e2f71e3a","impliedFormat":99},{"version":"9ab62dbc446ec8423dad892ab38385da94dc7c88d668130a01e6c7ed1e85aa1c","impliedFormat":99},{"version":"174a5d6709fd2a28ee86679c5197fac52688351ebd5c001e1bf060db930c4b27","impliedFormat":99},{"version":"039b7a6dbb28064d3b10a0595bb4c989a7d0da1cd7e8780592e8f747064f1b50","impliedFormat":99},{"version":"7969b666892e616196d9c1c8809e2d905120a8495558209e144f0722e8e5c09a","impliedFormat":99},{"version":"7622811ec88d6f57305588066281a7cbc1728b7799da0d655fbee168736a22a1","impliedFormat":99},{"version":"29d34dc61d2af294074cd578cc031f96970debe85e2dd38fc275e79201497a0b","impliedFormat":99},{"version":"ec99eb925080f5a10776c188d66aadb611f229aa45bd42cb74342ebeacf419fb","impliedFormat":99},{"version":"c67c87169d8b8e89e2a37eb9c16fcada016aa95485798a8570ea061adacc7bcc","impliedFormat":99},{"version":"bad70119a345e7601fe127d582bfcb2656819533af98ab996df05751b8cd1e60","impliedFormat":99},{"version":"e7b0a11fee98027637a2ff80402f007146c30f44347cb9e15ad9a5afa4b59d14","impliedFormat":99},{"version":"913b80b51d6932fc1da32a4d42a139b4d1405e8dbcd0fd4a409f4c881f6320ca","impliedFormat":99},{"version":"ddfff37c209548786ed4f9d7d38f8508b3e6c8ea4268462731ce48ce1f48f79e","impliedFormat":99},{"version":"76862c8255a1c8e8fffe3e6e7c6f830d41a52651e5ba6069bb0af3c5b756a2c1","impliedFormat":99},{"version":"08fde86d5de5de0e537de50a465983f39a065d8503d9e29d09cd5946bc8b2336","impliedFormat":99},{"version":"e04c7bb3368ee985a53af982acf198461a7fd6013017f003a5f8e41ee449ce58","impliedFormat":99},{"version":"0fe63c25f804b2a91e5807f7927b0c86a733db71806f4abeed0a80f64c0affc8","impliedFormat":99},{"version":"0d5157d9c6aebde4ba2922e59a4b43a6690d7fdda5ea4b33d65ccf1625e17857","impliedFormat":99},{"version":"303f91db94d88e50b287e4d6c93afa4d937af979c6538dbe23c8ee6bad9efe43","impliedFormat":99},{"version":"825915c62c10c629e19891bab8e230229a64c6e1ce568eed0619df84e307f34b","impliedFormat":99},{"version":"c8147909b36108d274b3bf20056c708501e6fb3e0b07d30ed4d0288960611da7","impliedFormat":99},{"version":"2c0702038440421aed5f3070adef7374934dfef0c80ac3f87845f13bbe2e84c1","impliedFormat":99},{"version":"63ace3892250cda885de70d545e263bdb1b0d4e73c58d9fe54b0d734269fc592","impliedFormat":99},{"version":"884ad23d4b91afafb0c3a5852fd501b1a5857370bbf29066f360d66a0964aae5","impliedFormat":99},{"version":"29dcddd00e8cef21847b89a56cc9faf3d7bd89b4a66881f57d358c016ea95568","impliedFormat":99},{"version":"b426383a74ff27a6a5a9fb68d6d3e15206f638fbc975a8ec5c0372f0b61e48df","impliedFormat":99},{"version":"1bd66a2eaa89eceb585cefeac761408bb2c1c3dc558ef769edbb2c76420a09a4","impliedFormat":99},{"version":"8f6830e26ada8f41a978e5946b5b5a15482ea8f5bbf60f574c19cfc0f977e958","impliedFormat":99},{"version":"adec6cee48d6a01a6f836214965050d062559f40918db22ee2ce766c161fc779","impliedFormat":99},{"version":"2cc41e7b5aa1b4637478a3082e59d02f8d08644335d334625b930f3894623b58","impliedFormat":99},{"version":"40933fd116a854ae92140455238c3a389ad3e16bbd234943c5b617fda7321eda","impliedFormat":99},{"version":"49f9f7096d07481447e635e92739ecbac6722abcdf0c8041df756775b0ffec87","impliedFormat":99},{"version":"4319efb821930975b69714057e2d0b55969b80131e4d3fb0b9ba966d382081c8","impliedFormat":99},{"version":"658a5c9eb6e5af068cce5bce9639ec5933215757c5fa6eae4e55463de1490fd4","impliedFormat":99},{"version":"aa90853e2d6db3d585ddec64d47e032e31913b7b86f2917c76b92056343e2d2d","impliedFormat":99},{"version":"d646ddeaef7e84976b17d6f4b34f0a88018768c35b74a417c60e071f88cd2883","impliedFormat":99},{"version":"1adfa003bdbe57a39edc25443751521a0c51a26fe4c4cfb2243494f9470afc9a","impliedFormat":99},{"version":"31ae32e481fd5f8f05483b45b4bb0f90e9a6f0f5ebb032edf99b33396a34d242","impliedFormat":99},{"version":"086453dc304a38e682554c3554c2dfb95514803140c8ebdce63e2f87e952ee73","impliedFormat":99},{"version":"0b85c86bf5249a53a18e19f0e1e0b0fb6234fd73e7edd4ab3832598d7ff59b72","impliedFormat":99},{"version":"7e8bfbddedb925453437ac7a6ddf6ea118ffceaec6410dcc9a359b7de4c74fff","signature":"d518380d23b967d6059706120c8bade99f447d66906b419b3504474753cb01c9"},{"version":"abcedc37b548199385f51f19cea5cf32948cf6a74bc9ff66e29a73505f0807f6","signature":"c526571d2d086adc9c037adf2b3bc8273a82cd0c0cc52c13f469d64bdfe4ffc4"},{"version":"03913adc813f16dc9f9cc3e019b08b8d1cc96d9b5fed446003d98e1bd7d5384d","signature":"4d57be1d78518cfc9def1214afc18b4580b3cc9fd246de31279706a62c787525"},{"version":"440566e610876b6abe7c1f6aa3f2772cb5b2523a19891803722b6bbbf9c962f2","signature":"509d6d21fcbd61c626dd8cdb2a0f3d7a96c48675e939b400861d7b1dda5f7343"},"6ab24ec1d8017b043ec3ca2f88bd0217a0ab8323e20769d8502a601e237db611","c8bb8629ee97ae0264843c1cc290bc9266f5de09e74ba81cced9b9f1e29f17e8",{"version":"7f0550b39b62fa24b2452eba5dd2acb7ba390df334228cd6152a272fa49217f2","signature":"1fb589b2b2fe69f7eac13e121b08d7e80927fb1e821f5c0d07af067c4729b259"},{"version":"00c8569f00adbc51c359cbbb8c7b5a4607d6183019aeb4530d8d7c794e814939","signature":"049f0f7ec830a4204e99945030571f71aeb13a6701593c00e11ed4d0c6c83c41"},{"version":"66f4b6536daa7ca5379c5091f9e8f4c3b9681c438f63a0b2dedd477b8b94b3d0","signature":"bd3ee2490630e9201e4dc22f90d109cef5215f31abca3552838f1a1bcdcfccec"},{"version":"172ca0a321b6bad4ae5edb2fa14d2f2308e07a4f57c4fab8f417aee5eac198bb","signature":"bdf3ecccd195084c4eef36bb95e8327aee15f112dc2760c5ec98eb20aeda8cce"},{"version":"7e14628b4674d139194e354aab77471b49fc32107bf475a984a8be9e0b670efa","signature":"0d7573a50c8d010fab6564d7eb4fb5afe24a66abdd2bd8b3c8aeb9e3a3c7ce54"},{"version":"30b376a1455cb4b4c1384d068dcc3561b0b349daa55fcc89a9c87707b187cde8","signature":"21a0845605d76a17718555c544c00ec6c4b3fe56e6271f7395fbd890b48d6906"},{"version":"ac8eb93434773adf7e0ff7e8c354cbcaddcc27af84034793b941ce6af3214f60","signature":"d798fefb57ad604d34c28995cc00c8c42f16168db734eb0153c2247dbc71fc82"},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"a79e62f1e20467e11a904399b8b18b18c0c6eea6b50c1168bf215356d5bebfaf","affectsGlobalScope":true,"impliedFormat":1},{"version":"6b80c6175da9de59bace50a72c2d68490d4ab5b07016ff5367bc7ba33cf2f219","affectsGlobalScope":true,"impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"24bd580b5743dc56402c440dc7f9a4f5d592ad7a419f25414d37a7bfe11e342b","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"6bdc71028db658243775263e93a7db2fd2abfce3ca569c3cca5aee6ed5eb186d","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"4d2b0eb911816f66abe4970898f97a2cfc902bcd743cbfa5017fad79f7ef90d8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","impliedFormat":1},{"version":"24b8685c62562f5d98615c5a0c1d05f297cf5065f15246edfe99e81ec4c0e011","impliedFormat":1},{"version":"93507c745e8f29090efb99399c3f77bec07db17acd75634249dc92f961573387","impliedFormat":1},{"version":"339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"08faa97886e71757779428dd4c69a545c32c85fd629d1116d42710b32c6378bc","affectsGlobalScope":true,"impliedFormat":1},{"version":"6b042aa5d277ad6963e2837179fd2f8fbb01968ac67115b0833c0244e93d1d50","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"3d77c73be94570813f8cadd1f05ebc3dc5e2e4fdefe4d340ca20cd018724ee36","impliedFormat":1},{"version":"23cfd70b42094e54cc3c5dab996d81b97e2b6f38ccb24ead85454b8ddfe2fc4f","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3e58c4c18a031cbb17abec7a4ad0bd5ae9fc70c1f4ba1e7fb921ad87c504aca","impliedFormat":1},{"version":"a3e8bafb2af8e850c644f4be7f5156cf7d23b7bfdc3b786bd4d10ed40329649c","impliedFormat":1},{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"4b87f767c7bc841511113c876a6b8bf1fd0cb0b718c888ad84478b372ec486b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d04e3640dd9eb67f7f1e5bd3d0bf96c784666f7aefc8ac1537af6f2d38d4c29","impliedFormat":1},{"version":"3c884d9d9ec454bdf0d5a0b8465bf8297d2caa4d853851d92cc417ac6f30b969","impliedFormat":1},{"version":"5a369483ac4cfbdf0331c248deeb36140e6907db5e1daed241546b4a2055f82c","impliedFormat":1},{"version":"e8f5b5cc36615c17d330eaf8eebbc0d6bdd942c25991f96ef122f246f4ff722f","impliedFormat":1},{"version":"f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45","impliedFormat":1},{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true,"impliedFormat":1},{"version":"0ada07543808f3b967624645a8e1ccd446f8b01ade47842acf1328aec899fed0","affectsGlobalScope":true,"impliedFormat":1},{"version":"809de4a91e5f9ea79963802ef3ea0144533c6f94ca8eee10efa70f5f42d6eecc","impliedFormat":1},{"version":"71adf5dbc59568663d252a46179e71e4d544c053978bfc526d11543a3f716f42","impliedFormat":1},{"version":"38bf8ff1b403c861e9052c9ea651cb4f38c1ecc084a34d79f8acc6d6477a7321","impliedFormat":1},{"version":"93bd413918fa921c8729cef45302b24d8b6c7855d72d5bf82d3972595ae8dcbf","impliedFormat":1},{"version":"4ff41188773cbf465807dd2f7059c7494cbee5115608efc297383832a1150c43","impliedFormat":1},{"version":"dccdf1677e531e33f8ac961a68bc537418c9a414797c1ea7e91307501cdc3f5e","impliedFormat":1},{"version":"e184c4b8918ef56c8c9e68bd79f3f3780e2d0d75bf2b8a41da1509a40c2deb46","affectsGlobalScope":true,"impliedFormat":1},{"version":"d206b4baf4ddcc15d9d69a9a2f4999a72a2c6adeaa8af20fa7a9960816287555","impliedFormat":1},{"version":"93f437e1398a4f06a984f441f7fa7a9f0535c04399619b5c22e0b87bdee182cb","impliedFormat":1},{"version":"afbe24ab0d74694372baa632ecb28bb375be53f3be53f9b07ecd7fc994907de5","impliedFormat":1},{"version":"70731d10d5311bd4cf710ef7f6539b62660f4b0bfdbb3f9fbe1d25fe6366a7fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"6b19db3600a17af69d4f33d08cc7076a7d19fb65bb36e442cac58929ec7c9482","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","impliedFormat":1},{"version":"137c2894e8f3e9672d401cc0a305dc7b1db7c69511cf6d3970fb53302f9eae09","impliedFormat":1},{"version":"3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","impliedFormat":1},{"version":"8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","impliedFormat":1},{"version":"f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","impliedFormat":1},{"version":"9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","impliedFormat":1},{"version":"ba1f814c22fd970255ddd60d61fb7e00c28271c933ab5d5cc19cd3ca66b8f57c","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"295f068af94245ee9d780555351bef98adfd58f8baf0b9dadbc31a489b881f8b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1851a3b4db78664f83901bb9cac9e45e03a37bb5933cc5bf37e10bb7e91ab4eb","impliedFormat":1},{"version":"09d479208911ac3ac6a7c2fe86217fc1abe6c4f04e2d52e4890e500699eeab32","affectsGlobalScope":true,"impliedFormat":1},{"version":"27d8987fd22d92efe6560cf0ce11767bf089903ffe26047727debfd1f3bf438b","affectsGlobalScope":true,"impliedFormat":1},{"version":"578d8bb6dcb2a1c03c4c3f8eb71abc9677e1a5c788b7f24848e3138ce17f3400","impliedFormat":1},{"version":"4f029899f9bae07e225c43aef893590541b2b43267383bf5e32e3a884d219ed5","impliedFormat":1},{"version":"ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","impliedFormat":1},{"version":"a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9","impliedFormat":1},{"version":"5b566927cad2ed2139655d55d690ffa87df378b956e7fe1c96024c4d9f75c4cf","affectsGlobalScope":true,"impliedFormat":1},{"version":"bce947017cb7a2deebcc4f5ba04cead891ce6ad1602a4438ae45ed9aa1f39104","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3dffd70e6375b872f0b4e152de4ae682d762c61a24881ecc5eb9f04c5caf76f","impliedFormat":1},{"version":"e2c72c065a36bc9ab2a00ac6a6f51e71501619a72c0609defd304d46610487a4","impliedFormat":1},{"version":"d91a7d8b5655c42986f1bdfe2105c4408f472831c8f20cf11a8c3345b6b56c8c","impliedFormat":1},{"version":"616075a6ac578cf5a013ee12964188b4412823796ce0b202c6f1d2e4ca8480d7","affectsGlobalScope":true,"impliedFormat":1},{"version":"e8a979b8af001c9fc2e774e7809d233c8ca955a28756f52ee5dee88ccb0611d2","impliedFormat":1},{"version":"cac793cc47c29e26e4ac3601dcb00b4435ebed26203485790e44f2ad8b6ad847","impliedFormat":1},{"version":"b4e9642035ad492bd9d5483a31071b880fdfec1c27c5f2c5c7b2b2b9e917f32f","impliedFormat":1},{"version":"4555d772a3607a0800eaf1d413e51f26416aae9217e1ea6c7cc21ca5f11b2ffc","signature":"462b9503f238f10282c0789a402ee73eeb67dfc137e2dc6d76407385d87d6932"},{"version":"f5c936d96c2c37a82342377299c1ee88df8afc5de102638e2fc4d2d98ad781b4","signature":"7d7b7969a4827d59b4bef5ec4bbd8d1e933bc5d56f90acaa7a1e5596c2ab38c8"},{"version":"b402a184cb7c731e5a81085f896f4fc2e2942ff71def51e62633633ac6a39a0e","signature":"1de8ebce3a52476d0e0f2ed43a0e1490c467632e55974b618b33094655431349"},{"version":"7079a1bcad9223529ed0060c1e06ba93cfd7f847dd8f0a7c5e8d5ff9fae3c7b4","signature":"e03d8d14edd10b26aa7e0539590901e898da1c73aba49f4f64b125eb9dc4de83"},{"version":"cd352941607d3a776820f0039ad8e807f65d49d5461c3784d2727bd6300ced0d","signature":"bca37c00c92cb1224a9f322af439b8c8ac80f9c080610ca6a731020eec15a47d"},"bdc47a6879fe9ea028abd9cf9e2afda01df44d213d33a1686e5596df491897f3",{"version":"e32be56c28a4587d28d96f14ef640d94e8cdf72d327bcee11fabc90ad5480e4d","signature":"536b17d5f941d5874f3dabe1695fbe7630cf496c26338f03f47829a88920b3bb"},{"version":"30a6b0cb34a5cb9c8c005adb74d66e9ffb025d80f13bbfddb8325964db992bf3","signature":"ef1cfe40ba6784a2a426361e9d141dd145752a8569b761c82a26f462bd807ffd"},{"version":"e8881007db5df932d712329f6a191e84c7249ae5e26fa7b8bc670d73e52538fc","signature":"645f7706ee210bb198594b48c083ce8b06fd221fc0ba0a87758e8aafb911008b"},{"version":"551ea4d19f0bcf074c82614fcb38ff1ae054a3aafe50872c29e7068aac4e7502","signature":"5046064aa5b421fa11da17a504835d4af2a427517cddc52eea1f16ea183032ae"},{"version":"8d41e7e8ecbe0435ad907760a1f06c7ef4dd41447ead553eead1d18dc443f469","signature":"498b1904da446ff019c319eb9e90ed81c10b9d19c5e8ba63b819614789a9a967"},{"version":"86d5d029641acadcde0d370251ee535740e44142dd7ede83cd3ed570290407e2","signature":"d581d10413aa920319bbf20339e01c1000710178bc9d610400f999c9f98221c6"},{"version":"7ecae8334675e4641c76dd4fe16f03f5e270600afd27d15d0a6352e087b866ac","signature":"d94a0667350ffb7262273ed572f9ac91c9d7ded322790991537b3c9d6a5da199"},{"version":"7839080f68a80f4f695a089427190501a6b01e748a70d730a8915b0bb7ff0a0e","signature":"f09d7a8facab871085a9a6c47d9f23918579231703b36441f550c87a3e4c2f4b"},"c8bb8629ee97ae0264843c1cc290bc9266f5de09e74ba81cced9b9f1e29f17e8",{"version":"8135f069eb7f9a7b2c2bd52228132795f8ec395000a865011d6e2a09da7090aa","signature":"40b0c4c194c5bbfbae9b46a99eea0f11841e887f17c45dbba3beb3a350ed25d7"},{"version":"0dfd10a4540348432598911faf612d7a5194e7d243ca9346075b1a704001e8a2","signature":"3ccd4bf1b3452658a132984389371a3c26d427c7b99dcee469761a089aba6a91"},{"version":"0b4e2951743ea5fb808f2b2cb0830d84527dc9b2723c72387adca95fd8f8f5d3","signature":"cd7103b83a017fa93957ca3af15d12c5777b06feb8caaaa1e847d6ca8023e8e1"},{"version":"4401ff6ccdffb48346b01ed0690a80a56b64f860e14489d212d5dcb753a01345","signature":"4ee0733e835796d962ab55a73353ac8d286d41876265b880d1c17721bac07e12"},{"version":"a3f79b762468d98c80da5d437acfbb17bd0efd66c354feb4f8fbe612cfe6f18d","signature":"102cdd1b5e0181792e008c17b46df8f5b1fced8735134d8286ea47c0bcad867f"},{"version":"e8151a4d578b602b13bc9d31e67353124752ca189347b26912d0b568da01a151","signature":"7d3e3c330ba99016588521a2982fc330aa3d48e4d3cffead4f83d361583cb583"},{"version":"31f1d9f9c8a1bb400dcb3f1c108a51834abe8733c39017a92014a7cc029585f4","signature":"b0f621ad7c4a8e8de63b77161bb38c3abeafb7d65449aac95d68277c06e46a67"},{"version":"dd8859e0c87dc42d3fac647030b69a9f69383377eec3d542d16014247d2844c8","signature":"f2ecc0c1e5d40a6b232ea5d153eda4b9304725b0655cdaf0b1181a0d9e3fc2c5"},"c8bb8629ee97ae0264843c1cc290bc9266f5de09e74ba81cced9b9f1e29f17e8",{"version":"ab5cf1744092795e0e893711d68db99a48f7d09232c6ee57b3a339fd0b440fc2","signature":"831ddc0b659082e58ff05b53e0585e8c12b86e1ce07c3116cf535d98f78e4091"},{"version":"c2be32a61a3fa73395861dcaf83b249773044948debefef7a8f33af74a6dfabd","signature":"b5fe213aaab36796519adde11bfb29a7f6981c7d45287f8b0e67e5db0cebe4cb"},{"version":"8ae61b78990b6ffc1e7f6e5973ce1ddd119861ef1117e4eaffb67eaae0b75cbb","signature":"6eb96c9e8ce9a8a8cf40b50ae584ef4b0d6590fdfe0dee6f53b585be632cd1d5"},{"version":"289e56d6337988ed817ac74616efb746234be9b41bef7b3e01e0fcdc9acfeb13","signature":"b1a2e42d4c22685af32160375b19108e9772600a520d729a5788565ca5c72004"},{"version":"47d0cebf1d1d340e4aa4f9ae0391fea957aa4b8ca4cfed2066e17cc41b5a7cea","signature":"5ebc574111885701b510cdfc9ce4f1c16937762ba1b1e9887ae68cd1a0a4dcc3"},{"version":"e9c2fc64402d5d57f21c54aa63359f084591c31f2b233d49a202ac8124363742","signature":"eaa41b1f485f4dd20a84be15ddba22f30da9e40425cf7a0b867490ae1f2fd234"},{"version":"53f6ba044630de8febd542fef515cb9fa95d20accbdbe3996410d19282ee028d","signature":"64ef1fc3539b11ebb79ffae7adfa6d4b7d339840c6d85ffd561905ad8cd6ed53"},{"version":"d6dbfde7ae8d2ff39a38762daf443f79e4e87a87397af40b5b05d2e3bfdb918f","signature":"09dfe60435887517024efd402ab10e9ddca887942cb63f1cc522af84dca7a72a"},"c8bb8629ee97ae0264843c1cc290bc9266f5de09e74ba81cced9b9f1e29f17e8",{"version":"284446cb8715f083f41e577eb369092c2ca69c4628dd1b370e429c161b2c4d98","signature":"9473951cac1fc205aef87b076f696348cffd9a2a877a2461db72aa5f90cc4da2"},{"version":"fe5f89e43cbb288cd6767e88e8f08e0db2085288132133125e85232b2459d4c3","signature":"e000c5c299306499db178b4a1054aa942b2abaaaccea3bc012f224e8282e45c7"},"09c6caca04fd3d4ac26e02837d0358a55bfc398f88fd7b09f9ef0bf8da2f7c9c","c8bb8629ee97ae0264843c1cc290bc9266f5de09e74ba81cced9b9f1e29f17e8","c8bb8629ee97ae0264843c1cc290bc9266f5de09e74ba81cced9b9f1e29f17e8",{"version":"c3d8e1342e4503eecd78e50ec4a4ddc87392afaf41a93ca640d3c88fe035ae56","impliedFormat":99},{"version":"07c0547e91d0c35c3d1bff1d2b7ffac3334b315e9eb5744a8440940e819ab13a","impliedFormat":99},{"version":"694f091f9b015e559c767b031e2c3c578916194a5335dfcf3bdba5f9e38afb66","impliedFormat":99},{"version":"f9b028d3c3891dd817e24d53102132b8f696269309605e6ed4f0db2c113bbd82","impliedFormat":99},{"version":"fb7c8d90e52e2884509166f96f3d591020c7b7977ab473b746954b0c8d100960","impliedFormat":99},{"version":"09acfcc65d81722128cf25e70c88e376513076b674829a3f2fd0d713643aea66","impliedFormat":99},{"version":"56fda0faf35a36ad0526c83cf6cb68d0ad1fc0be7b978e8b09505e0e59a2f84a","impliedFormat":99},{"version":"136cb8389f9750475777893903fabed422a7ddb88de72ff101b4d8c05371795c","impliedFormat":99},{"version":"bc7157768e6b7962ba9987f1c2038d31523b61b3956117b8195cdf817cc7247f","impliedFormat":99},{"version":"05c7aef6a4e496b93c2e682cced8903c0dfe6340d04f3fe616176e2782193435","impliedFormat":99},{"version":"2158408f62d0d2e4eec1d71087427ccf1d1402671d85b6d8d94fb83749c51220","impliedFormat":99},{"version":"a2d825985fa2f549e66d2d43aca3b91187855171ccf27bdfb308a5e023294747","impliedFormat":99},{"version":"500a67e158e4025f27570ab6a99831680852bb45a44d4c3647ab7567feb1fb4c","impliedFormat":99},{"version":"37b979b237e4e861576ff06f453f87806125b4fc4930005f11107a46075806c9","impliedFormat":99},{"version":"142a572c0496b5aff2904d3734adfff2d1e901ef08a75472e50f0c52f9a510ea","impliedFormat":99},{"version":"785b9d575b49124ce01b46f5b9402157c7611e6532effa562ac6aebec0074dfc","impliedFormat":1},{"version":"b5ba01279af8f99bdab82c198a16ac0a4926a98b794ddc019090a9678ebad1be","affectsGlobalScope":true,"impliedFormat":1},{"version":"282f98006ed7fa9bb2cd9bdbe2524595cfc4bcd58a0bb3232e4519f2138df811","impliedFormat":1},{"version":"6222e987b58abfe92597e1273ad7233626285bc2d78409d4a7b113d81a83496b","impliedFormat":1},{"version":"cbe726263ae9a7bf32352380f7e8ab66ee25b3457137e316929269c19e18a2be","impliedFormat":1},{"version":"8b96046bf5fb0a815cba6b0880d9f97b7f3a93cf187e8dcfe8e2792e97f38f87","impliedFormat":99},{"version":"bacf2c84cf448b2cd02c717ad46c3d7fd530e0c91282888c923ad64810a4d511","affectsGlobalScope":true,"impliedFormat":1},{"version":"402e5c534fb2b85fa771170595db3ac0dd532112c8fa44fc23f233bc6967488b","impliedFormat":1},{"version":"8885cf05f3e2abf117590bbb951dcf6359e3e5ac462af1c901cfd24c6a6472e2","impliedFormat":1},{"version":"33f3718dababfc26dfd9832c150149ea4e934f255130f8c118a59ae69e5ed441","impliedFormat":1},{"version":"e61df3640a38d535fd4bc9f4a53aef17c296b58dc4b6394fd576b808dd2fe5e6","impliedFormat":1},{"version":"459920181700cec8cbdf2a5faca127f3f17fd8dd9d9e577ed3f5f3af5d12a2e4","impliedFormat":1},{"version":"4719c209b9c00b579553859407a7e5dcfaa1c472994bd62aa5dd3cc0757eb077","impliedFormat":1},{"version":"7ec359bbc29b69d4063fe7dad0baaf35f1856f914db16b3f4f6e3e1bca4099fa","impliedFormat":1},{"version":"70790a7f0040993ca66ab8a07a059a0f8256e7bb57d968ae945f696cbff4ac7a","impliedFormat":1},{"version":"d1b9a81e99a0050ca7f2d98d7eedc6cda768f0eb9fa90b602e7107433e64c04c","impliedFormat":1},{"version":"a022503e75d6953d0e82c2c564508a5c7f8556fad5d7f971372d2d40479e4034","impliedFormat":1},{"version":"b215c4f0096f108020f666ffcc1f072c81e9f2f95464e894a5d5f34c5ea2a8b1","impliedFormat":1},{"version":"644491cde678bd462bb922c1d0cfab8f17d626b195ccb7f008612dc31f445d2d","impliedFormat":1},{"version":"dfe54dab1fa4961a6bcfba68c4ca955f8b5bbeb5f2ab3c915aa7adaa2eabc03a","impliedFormat":1},{"version":"1bb61aa2f08ab4506d41dbe16c5f3f5010f014bbf46fa3d715c0cbe3b00f4e1c","impliedFormat":1},{"version":"47865c5e695a382a916b1eedda1b6523145426e48a2eae4647e96b3b5e52024f","impliedFormat":1},{"version":"e42820cd611b15910c204cd133f692dcd602532b39317d4f2a19389b27e6f03d","impliedFormat":1},{"version":"331b8f71bfae1df25d564f5ea9ee65a0d847c4a94baa45925b6f38c55c7039bf","impliedFormat":1},{"version":"2a771d907aebf9391ac1f50e4ad37952943515eeea0dcc7e78aa08f508294668","impliedFormat":1},{"version":"0146fd6262c3fd3da51cb0254bb6b9a4e42931eb2f56329edd4c199cb9aaf804","impliedFormat":1},{"version":"82e687ebd99518bc63ea04b0c3810fb6e50aa6942decd0ca6f7a56d9b9a212a6","impliedFormat":99},{"version":"7f698624bbbb060ece7c0e51b7236520ebada74b747d7523c7df376453ed6fea","impliedFormat":1},{"version":"8f07f2b6514744ac96e51d7cb8518c0f4de319471237ea10cf688b8d0e9d0225","impliedFormat":1},{"version":"0a95d25ef86ecf0f3f04d23eeef241b7adf2be8c541d8b567564306d3b9248cf","impliedFormat":99},{"version":"727d1e78ee77d6db6b071fde82d7d1eb92484c99c4d49d86c30dd15b0b0a3c94","impliedFormat":99},{"version":"324ac98294dab54fbd580c7d0e707d94506d7b2c3d5efe981a8495f02cf9ad96","impliedFormat":99},{"version":"9ec72eb493ff209b470467e24264116b6a8616484bca438091433a545dfba17e","impliedFormat":99},{"version":"dd1e40affaae1edc4beefe3d9832e86a683dcfc66fdf8c93c851a47298b04276","impliedFormat":99},{"version":"49747416f08b3ba50500a215e7a55d75268b84e31e896a40313c8053e8dec908","impliedFormat":99},{"version":"f2d1a59a658165341b0e2b7879aa2e19ea6a709146b2d3f70ee8a07159d3d08e","impliedFormat":99},{"version":"bf85a259612faa1f444bcef0045aae0ff766561b0a2fb2797f2b65714b9d9fec","impliedFormat":99},{"version":"e6233e1c976265e85aa8ad76c3881febe6264cb06ae3136f0257e1eab4a6cc5a","impliedFormat":99},{"version":"73bffad73eb0e632fb83726d67f50a5e3c3ed6d50e7ff1416225c885d2272305","impliedFormat":99},{"version":"3c65174d4d399d0a9247b94abfb308f23074f907e44507096cd583375d538fc0","impliedFormat":99},{"version":"ea3c33b10a8026011e79b31ef982b4a0df9641ffa40f6b9bc81dcac96a7cd860","impliedFormat":99},{"version":"e666e31d323fef5642f87db0da48a83e58f0aaf9e3823e87eabd8ec7e0441a36","impliedFormat":99},{"version":"69bf2422313487956e4dacf049f30cb91b34968912058d244cb19e4baa24da97","impliedFormat":1},{"version":"971a2c327ff166c770c5fb35699575ba2d13bba1f6d2757309c9be4b30036c8e","impliedFormat":99},{"version":"fb0d12ac2d83c807ffdca1e4e1e5806220fcaaf54b4459b52e535399155caf0e","impliedFormat":99},{"version":"7bd51996fb7717941cbe094b05adc0d80b9503b350a77b789bbb0fc786f28053","impliedFormat":99},{"version":"b62006bbc815fe8190c7aee262aad6bff993e3f9ade70d7057dfceab6de79d2f","impliedFormat":99},{"version":"b7e28e06011460436d5c2ec2996846ac0c451e135357fc5a7269e5665a32fbd7","impliedFormat":99},{"version":"21e562cde44f5aed7baee7ee3541d4274f9a561b9589b2622537a9ef57b5768f","impliedFormat":99},{"version":"79a6eba90bfe3c1f721838d7e61b394d6d81c7b6d8d754df0b46509a3d147693","impliedFormat":99},{"version":"83194635ad31a639e339e90f46401d5e69810f93f7b06589bb26b1ae6f2bc211","impliedFormat":99},{"version":"3c1291fa957007538097ce38f7f0d65bf4c6ba6c2fad80ab806b71264fd296f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"f11e0e40bd4f6bedb1cc15115dbef210137185cfe79c2b18ea2d8fe5059ed66c","impliedFormat":99},{"version":"79664f59ba31fe4cdb59c78824c9ce2a84e7686a52dcdecc62005096cc248458","affectsGlobalScope":true,"impliedFormat":99},{"version":"fe2d63fcfdde197391b6b70daf7be8c02a60afa90754a5f4a04bdc367f62793d","impliedFormat":99},{"version":"3b352d29931971dbaae2202a81257e13e739a77c547746a4e28ca2cd3c1aacd9","affectsGlobalScope":true,"impliedFormat":99},{"version":"4baf9111d939d3b5d10519e4e22d2589d15d008391ce2866f2d4295ae5419a6c","impliedFormat":99},{"version":"849ab6fd9f93c9ca914b60085a2a5e2df1f0e137739f4a7e23d2eaa530396d50","impliedFormat":99},{"version":"5825e828f2d57d0cf90a36f0caa4c8e457faeff96c5af59a2336aea8e9ea305d","impliedFormat":99},{"version":"5a88655bf852c8cc007d6bc874ab61d1d63fba97063020458177173c454e9b4a","impliedFormat":99},{"version":"7e4dfae2da12ec71ffd9f55f4641a6e05610ce0d6784838659490e259e4eb13c","impliedFormat":99},{"version":"c30a41267fc04c6518b17e55dcb2b810f267af4314b0b6d7df1c33a76ce1b330","impliedFormat":1},{"version":"72422d0bac4076912385d0c10911b82e4694fc106e2d70added091f88f0824ba","impliedFormat":1},{"version":"da251b82c25bee1d93f9fd80c5a61d945da4f708ca21285541d7aff83ecb8200","impliedFormat":1},{"version":"4c8ca51077f382498f47074cf304d654aba5d362416d4f809dfdd5d4f6b3aaca","impliedFormat":1},{"version":"c6bddf16578495abc8b5546850b047f30c4b5a2a2b7fecefc0e11a44a6e91399","impliedFormat":1},{"version":"d8c23711d682db1527eab3df7e9ee19a8ac4e2beeb1cbb79342a8e839e16b181","impliedFormat":99},{"version":"30ed8b978707eeb952a0541818520dc082305fb193bb2b34cea23563ea501dae","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"22f3aba43138265de3599360adcaffd9cd9a49ee62d5f6ac62183c1c908a7214","signature":"4a55940e4ed8264000f756ed8868a3c7d075abde4b474a59a50d6fc8f95a4f2f"},{"version":"d99fedfaa2d8f7adf09fbe38429f282eae5665aca67d8453d57fc6bf3723ecd0","signature":"b27299c2b7f4fd3ef1858a8a6b38d6b771f49584fbbc73951b9820146cc95a9c"},{"version":"96fdbade3b31f6b62688a4b44fd3f28c4e33782d82de71d57425c4761f6651b5","signature":"9fe6f33f058347c912c3b1d40c0e0f4486a0c8f6c29e4279660bfedd58c3b7fe"},{"version":"5e655599758a082daf9699ab3e00284cd3cecd419f43fb4b1d029455c46a9417","signature":"03f6bc63c8809c309dbf9a2d8a62e9facc1665016df28b445acf9d5de7fd5b9c"},"c8bb8629ee97ae0264843c1cc290bc9266f5de09e74ba81cced9b9f1e29f17e8",{"version":"537cbfbb1f0f20a22b147c1b7bb938fc5d61159e4a0e4c149303ebcad5cf83d3","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"cc4ebaec29bec1812a3bd4e347d3e0b07e724a8757b6f0c4c34ee71f269c19d7","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"a6fb453961e5c3f3f4d85c93786c7042ca832205076a734ad7cbc1d790bffcf3","signature":"b9c8b11f5054b4f00c23377bc288251ac20d3686e871315fa4056a13fdcf87c1"},"c8bb8629ee97ae0264843c1cc290bc9266f5de09e74ba81cced9b9f1e29f17e8",{"version":"9b4618ac126e364028c04008e03f37195b9a752f4f95f998ce2adf7193a44081","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},"c8bb8629ee97ae0264843c1cc290bc9266f5de09e74ba81cced9b9f1e29f17e8","c8bb8629ee97ae0264843c1cc290bc9266f5de09e74ba81cced9b9f1e29f17e8",{"version":"b5eef864a51aa73787cea8832de6cabad0b12e227c5f2c431b1d0a8fc5ca2167","signature":"a95debe5252dc7d1db4072693cf2029ff4aa3195fb2848d47632b6fc1abc2a9f"},{"version":"5dd4048ed433fb8aea7560f68a208135e146cc4221697da8944e406a3c59c36f","signature":"faf240b578e71611d2d43fd74882acb828ba893957047bcdb6ad64fb3405cfbb"},{"version":"97d56d094619554b75f84153f35fec80b82d82724bc42ed02cac2a4dc12341f8","signature":"9612c1ba37b1540e28396f24c7ec3582c8d0e3b743bacfb4a29834846dd3f381"},{"version":"7b83c8af642a68e25aca5e373ff9cbfed1636f970230b409dacb839108871d41","signature":"0ec18fea0116d65b1fc1996c0f95bb9c3c49d240f069643e732ec90eeb84f090"},{"version":"42e45ae97a130b63c1a705e9ee26b0a518d6f484af5e896776d64495f5aecf6a","signature":"8be671a8071bd74847de34e9fe2b7ed47dd6fdeaa026a48f2b6e95dfbd13c204"},{"version":"4fdca92d458b758db183da1d69019bd45b2357380048e52d73df4eb52349f1f0","signature":"8ef24ae870e6073b7e2edd98041821112bd0a4a58ee34167c45839ef32614b30"},{"version":"c4e8ce415ee1bc2652c67524bd2ce4e70b5d3924c43c0aae1ccda04cef026f4b","signature":"a26261b873aed784ae03594ba5bc506557760cd3b4dbdbef8f8f38e969fb9e26"},{"version":"e15ab02cf7fb12e04c0e9c96a2534b8492189a20acd547bed46f76a281584043","signature":"77e2e915855dec472d439636f2ae13b7586cdcfd91015ac85cc0804e09f94662"},{"version":"84df3cb494255905da4670184a504cb95391bac9851be025c3e36ea90b437c90","signature":"40e66da39e21979d4dfe12fc621f8ec7ade237ad68cc7ce4e2c32fbd78add1b6"},"c8bb8629ee97ae0264843c1cc290bc9266f5de09e74ba81cced9b9f1e29f17e8"],"root":[[187,199],[298,335],[418,440]],"options":{"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"experimentalDecorators":true,"module":1,"outDir":"../lib/cjs","preserveConstEnums":true,"removeComments":false,"rootDir":"../src","skipLibCheck":true,"strict":true,"target":9,"tsBuildInfoFile":"./cjs.json"},"referencedMap":[[133,1],[124,2],[98,3],[135,4],[88,5],[131,6],[94,7],[125,8],[132,9],[121,10],[126,11],[127,11],[90,12],[92,13],[130,14],[128,11],[106,11],[129,11],[107,11],[93,15],[91,16],[99,17],[110,18],[115,19],[123,20],[118,21],[122,19],[113,22],[112,23],[111,19],[100,24],[120,25],[117,26],[116,27],[96,28],[114,29],[134,30],[89,31],[104,32],[95,33],[119,34],[97,35],[105,36],[101,37],[103,38],[102,39],[108,40],[109,41],[76,42],[77,33],[67,43],[68,44],[69,45],[78,46],[64,33],[70,47],[71,33],[87,48],[75,49],[73,50],[79,33],[72,33],[65,51],[81,52],[82,53],[74,54],[83,33],[84,55],[80,56],[85,33],[86,57],[66,58],[351,33],[244,59],[245,59],[246,60],[205,61],[247,62],[248,63],[249,64],[200,33],[203,65],[201,33],[202,33],[250,66],[251,67],[252,68],[253,69],[254,70],[255,71],[256,71],[258,72],[257,73],[259,74],[260,75],[261,76],[243,77],[204,33],[262,78],[263,79],[264,80],[296,81],[265,82],[266,83],[267,84],[268,85],[269,86],[270,87],[271,88],[272,89],[273,90],[274,91],[275,91],[276,92],[277,33],[278,93],[280,94],[279,95],[281,96],[282,97],[283,98],[284,99],[285,100],[286,101],[287,102],[288,103],[289,104],[290,105],[291,106],[292,107],[293,108],[294,109],[295,110],[402,33],[404,111],[405,112],[409,113],[408,33],[336,33],[349,114],[342,115],[346,116],[391,117],[392,118],[382,33],[385,119],[384,120],[397,120],[383,121],[386,122],[398,123],[403,33],[345,124],[344,125],[347,125],[338,126],[341,127],[381,126],[343,128],[337,33],[348,129],[185,130],[136,131],[179,132],[186,133],[181,134],[182,135],[183,136],[174,137],[184,138],[178,139],[175,140],[176,134],[177,134],[173,141],[165,142],[172,143],[166,142],[169,144],[167,145],[164,146],[168,145],[180,147],[153,148],[154,149],[155,150],[143,151],[163,152],[156,153],[142,154],[157,155],[162,156],[159,157],[158,158],[139,159],[137,160],[140,161],[141,162],[152,163],[145,164],[144,165],[147,166],[148,167],[146,168],[149,169],[150,170],[138,171],[151,172],[160,173],[161,174],[171,175],[170,176],[357,33],[414,177],[416,178],[415,179],[413,180],[412,33],[297,181],[374,182],[372,183],[373,184],[361,185],[362,183],[369,186],[360,187],[365,188],[375,33],[366,189],[371,190],[376,191],[359,192],[367,193],[368,194],[363,195],[370,182],[364,196],[352,197],[358,33],[393,33],[339,33],[340,198],[61,33],[62,33],[12,33],[10,33],[11,33],[16,33],[15,33],[2,33],[17,33],[18,33],[19,33],[20,33],[21,33],[22,33],[23,33],[24,33],[3,33],[25,33],[26,33],[4,33],[27,33],[31,33],[28,33],[29,33],[30,33],[32,33],[33,33],[34,33],[5,33],[35,33],[36,33],[37,33],[38,33],[6,33],[42,33],[39,33],[40,33],[41,33],[43,33],[7,33],[44,33],[49,33],[50,33],[45,33],[46,33],[47,33],[48,33],[8,33],[54,33],[51,33],[52,33],[53,33],[55,33],[9,33],[56,33],[63,33],[57,33],[58,33],[60,33],[59,33],[1,33],[14,33],[13,33],[221,199],[231,200],[220,199],[241,201],[212,202],[211,203],[240,181],[234,204],[239,205],[214,206],[228,207],[213,208],[237,209],[209,210],[208,181],[238,211],[210,212],[215,213],[216,33],[219,213],[206,33],[242,214],[232,215],[223,216],[224,217],[226,218],[222,219],[225,220],[235,181],[217,221],[218,222],[227,223],[207,224],[230,215],[229,213],[233,33],[236,225],[395,226],[389,227],[390,226],[388,33],[380,228],[377,229],[356,230],[354,231],[353,33],[355,232],[378,33],[379,233],[394,234],[387,235],[396,236],[350,33],[406,237],[410,238],[399,239],[411,240],[407,241],[400,242],[401,243],[417,244],[312,245],[304,246],[305,247],[306,248],[309,249],[310,248],[311,250],[321,251],[314,252],[320,253],[315,254],[316,254],[317,255],[318,255],[319,255],[313,256],[330,257],[308,258],[324,259],[325,260],[326,261],[327,261],[328,261],[329,262],[307,256],[334,263],[332,264],[333,265],[335,266],[418,267],[199,268],[300,269],[303,270],[301,269],[302,271],[198,272],[197,273],[193,268],[195,274],[196,268],[423,275],[420,276],[421,276],[422,277],[419,256],[192,278],[187,279],[424,280],[188,279],[189,279],[425,281],[190,279],[191,282],[427,283],[331,284],[426,285],[428,286],[299,287],[298,256],[429,288],[194,279],[430,289],[322,33],[440,290],[323,291],[431,261],[432,292],[433,293],[439,294],[434,261],[436,295],[437,296],[438,261],[435,297]],"latestChangedDtsFile":"../lib/cjs/workspace/index.d.ts","version":"5.8.2"}