@sync-in/server 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1811) hide show
  1. package/CHANGELOG.md +93 -0
  2. package/LICENSE +660 -0
  3. package/README.md +106 -0
  4. package/environment/environment.dist.min.yaml +11 -0
  5. package/environment/environment.dist.yaml +95 -0
  6. package/migrations/0000_init.sql +324 -0
  7. package/migrations/meta/0000_snapshot.json +2417 -0
  8. package/migrations/meta/_journal.json +13 -0
  9. package/package.json +80 -0
  10. package/server/app.bootstrap.js +103 -0
  11. package/server/app.bootstrap.js.map +1 -0
  12. package/server/app.constants.js +58 -0
  13. package/server/app.constants.js.map +1 -0
  14. package/server/app.e2e-spec.js +34 -0
  15. package/server/app.e2e-spec.js.map +1 -0
  16. package/server/app.module.js +72 -0
  17. package/server/app.module.js.map +1 -0
  18. package/server/app.service.js +72 -0
  19. package/server/app.service.js.map +1 -0
  20. package/server/app.service.spec.js +94 -0
  21. package/server/app.service.spec.js.map +1 -0
  22. package/server/applications/admin/admin.module.js +31 -0
  23. package/server/applications/admin/admin.module.js.map +1 -0
  24. package/server/applications/admin/constants/routes.js +19 -0
  25. package/server/applications/admin/constants/routes.js.map +1 -0
  26. package/server/applications/applications.config.js +50 -0
  27. package/server/applications/applications.config.js.map +1 -0
  28. package/server/applications/applications.constants.js +69 -0
  29. package/server/applications/applications.constants.js.map +1 -0
  30. package/server/applications/applications.module.js +59 -0
  31. package/server/applications/applications.module.js.map +1 -0
  32. package/server/applications/comments/comments.controller.js +133 -0
  33. package/server/applications/comments/comments.controller.js.map +1 -0
  34. package/server/applications/comments/comments.controller.spec.js +63 -0
  35. package/server/applications/comments/comments.controller.spec.js.map +1 -0
  36. package/server/applications/comments/comments.module.js +39 -0
  37. package/server/applications/comments/comments.module.js.map +1 -0
  38. package/server/applications/comments/constants/routes.js +35 -0
  39. package/server/applications/comments/constants/routes.js.map +1 -0
  40. package/server/applications/comments/dto/comment.dto.js +62 -0
  41. package/server/applications/comments/dto/comment.dto.js.map +1 -0
  42. package/server/applications/comments/interfaces/comment-recent.interface.js +10 -0
  43. package/server/applications/comments/interfaces/comment-recent.interface.js.map +1 -0
  44. package/server/applications/comments/schemas/comment.interface.js +18 -0
  45. package/server/applications/comments/schemas/comment.interface.js.map +1 -0
  46. package/server/applications/comments/schemas/comments.schema.js +57 -0
  47. package/server/applications/comments/schemas/comments.schema.js.map +1 -0
  48. package/server/applications/comments/services/comments-manager.service.js +137 -0
  49. package/server/applications/comments/services/comments-manager.service.js.map +1 -0
  50. package/server/applications/comments/services/comments-manager.service.spec.js +51 -0
  51. package/server/applications/comments/services/comments-manager.service.spec.js.map +1 -0
  52. package/server/applications/comments/services/comments-queries.service.js +185 -0
  53. package/server/applications/comments/services/comments-queries.service.js.map +1 -0
  54. package/server/applications/files/adapters/files-indexer-mysql.service.js +174 -0
  55. package/server/applications/files/adapters/files-indexer-mysql.service.js.map +1 -0
  56. package/server/applications/files/assets/samples/sample.docx +0 -0
  57. package/server/applications/files/assets/samples/sample.odp +0 -0
  58. package/server/applications/files/assets/samples/sample.ods +0 -0
  59. package/server/applications/files/assets/samples/sample.odt +0 -0
  60. package/server/applications/files/assets/samples/sample.pptx +0 -0
  61. package/server/applications/files/assets/samples/sample.rtf +194 -0
  62. package/server/applications/files/assets/samples/sample.xlsx +0 -0
  63. package/server/applications/files/constants/cache.js +36 -0
  64. package/server/applications/files/constants/cache.js.map +1 -0
  65. package/server/applications/files/constants/compress.js +26 -0
  66. package/server/applications/files/constants/compress.js.map +1 -0
  67. package/server/applications/files/constants/files.js +103 -0
  68. package/server/applications/files/constants/files.js.map +1 -0
  69. package/server/applications/files/constants/indexing.js +49 -0
  70. package/server/applications/files/constants/indexing.js.map +1 -0
  71. package/server/applications/files/constants/only-office.js +536 -0
  72. package/server/applications/files/constants/only-office.js.map +1 -0
  73. package/server/applications/files/constants/operations.js +29 -0
  74. package/server/applications/files/constants/operations.js.map +1 -0
  75. package/server/applications/files/constants/routes.js +100 -0
  76. package/server/applications/files/constants/routes.js.map +1 -0
  77. package/server/applications/files/constants/samples.js +35 -0
  78. package/server/applications/files/constants/samples.js.map +1 -0
  79. package/server/applications/files/decorators/only-office-environment.decorator.js +32 -0
  80. package/server/applications/files/decorators/only-office-environment.decorator.js.map +1 -0
  81. package/server/applications/files/dto/file-operations.dto.js +145 -0
  82. package/server/applications/files/dto/file-operations.dto.js.map +1 -0
  83. package/server/applications/files/events/file-task-event.js +23 -0
  84. package/server/applications/files/events/file-task-event.js.map +1 -0
  85. package/server/applications/files/files-only-office.controller.js +111 -0
  86. package/server/applications/files/files-only-office.controller.js.map +1 -0
  87. package/server/applications/files/files-only-office.controller.spec.js +47 -0
  88. package/server/applications/files/files-only-office.controller.spec.js.map +1 -0
  89. package/server/applications/files/files-tasks.controller.js +97 -0
  90. package/server/applications/files/files-tasks.controller.js.map +1 -0
  91. package/server/applications/files/files-tasks.controller.spec.js +40 -0
  92. package/server/applications/files/files-tasks.controller.spec.js.map +1 -0
  93. package/server/applications/files/files.config.js +96 -0
  94. package/server/applications/files/files.config.js.map +1 -0
  95. package/server/applications/files/files.controller.js +319 -0
  96. package/server/applications/files/files.controller.js.map +1 -0
  97. package/server/applications/files/files.controller.spec.js +84 -0
  98. package/server/applications/files/files.controller.spec.js.map +1 -0
  99. package/server/applications/files/files.module.js +78 -0
  100. package/server/applications/files/files.module.js.map +1 -0
  101. package/server/applications/files/guards/files-only-office.guard.js +48 -0
  102. package/server/applications/files/guards/files-only-office.guard.js.map +1 -0
  103. package/server/applications/files/guards/files-only-office.guard.spec.js +16 -0
  104. package/server/applications/files/guards/files-only-office.guard.spec.js.map +1 -0
  105. package/server/applications/files/guards/files-only-office.strategy.js +60 -0
  106. package/server/applications/files/guards/files-only-office.strategy.js.map +1 -0
  107. package/server/applications/files/interfaces/file-db-props.interface.js +10 -0
  108. package/server/applications/files/interfaces/file-db-props.interface.js.map +1 -0
  109. package/server/applications/files/interfaces/file-lock.interface.js +10 -0
  110. package/server/applications/files/interfaces/file-lock.interface.js.map +1 -0
  111. package/server/applications/files/interfaces/file-parse-index.js +10 -0
  112. package/server/applications/files/interfaces/file-parse-index.js.map +1 -0
  113. package/server/applications/files/interfaces/file-props.interface.js +10 -0
  114. package/server/applications/files/interfaces/file-props.interface.js.map +1 -0
  115. package/server/applications/files/interfaces/file-recent-location.interface.js +10 -0
  116. package/server/applications/files/interfaces/file-recent-location.interface.js.map +1 -0
  117. package/server/applications/files/interfaces/file-space.interface.js +18 -0
  118. package/server/applications/files/interfaces/file-space.interface.js.map +1 -0
  119. package/server/applications/files/interfaces/file-tree.interface.js +10 -0
  120. package/server/applications/files/interfaces/file-tree.interface.js.map +1 -0
  121. package/server/applications/files/interfaces/only-office-config.interface.js +10 -0
  122. package/server/applications/files/interfaces/only-office-config.interface.js.map +1 -0
  123. package/server/applications/files/models/file-error.js +23 -0
  124. package/server/applications/files/models/file-error.js.map +1 -0
  125. package/server/applications/files/models/file-lock-error.js +23 -0
  126. package/server/applications/files/models/file-lock-error.js.map +1 -0
  127. package/server/applications/files/models/file-task.js +52 -0
  128. package/server/applications/files/models/file-task.js.map +1 -0
  129. package/server/applications/files/models/files-indexer.js +18 -0
  130. package/server/applications/files/models/files-indexer.js.map +1 -0
  131. package/server/applications/files/schemas/file-content.interface.js +10 -0
  132. package/server/applications/files/schemas/file-content.interface.js.map +1 -0
  133. package/server/applications/files/schemas/file-recent.interface.js +18 -0
  134. package/server/applications/files/schemas/file-recent.interface.js.map +1 -0
  135. package/server/applications/files/schemas/file.interface.js +18 -0
  136. package/server/applications/files/schemas/file.interface.js.map +1 -0
  137. package/server/applications/files/schemas/files-content.schema.js +41 -0
  138. package/server/applications/files/schemas/files-content.schema.js.map +1 -0
  139. package/server/applications/files/schemas/files-recents.schema.js +63 -0
  140. package/server/applications/files/schemas/files-recents.schema.js.map +1 -0
  141. package/server/applications/files/schemas/files.schema.js +100 -0
  142. package/server/applications/files/schemas/files.schema.js.map +1 -0
  143. package/server/applications/files/services/files-content-manager.service.js +204 -0
  144. package/server/applications/files/services/files-content-manager.service.js.map +1 -0
  145. package/server/applications/files/services/files-lock-manager.service.js +285 -0
  146. package/server/applications/files/services/files-lock-manager.service.js.map +1 -0
  147. package/server/applications/files/services/files-lock-manager.service.spec.js +40 -0
  148. package/server/applications/files/services/files-lock-manager.service.spec.js.map +1 -0
  149. package/server/applications/files/services/files-manager.service.js +565 -0
  150. package/server/applications/files/services/files-manager.service.js.map +1 -0
  151. package/server/applications/files/services/files-manager.service.spec.js +43 -0
  152. package/server/applications/files/services/files-manager.service.spec.js.map +1 -0
  153. package/server/applications/files/services/files-methods.service.js +180 -0
  154. package/server/applications/files/services/files-methods.service.js.map +1 -0
  155. package/server/applications/files/services/files-methods.service.spec.js +135 -0
  156. package/server/applications/files/services/files-methods.service.spec.js.map +1 -0
  157. package/server/applications/files/services/files-only-office-manager.service.js +395 -0
  158. package/server/applications/files/services/files-only-office-manager.service.js.map +1 -0
  159. package/server/applications/files/services/files-only-office-manager.service.spec.js +58 -0
  160. package/server/applications/files/services/files-only-office-manager.service.spec.js.map +1 -0
  161. package/server/applications/files/services/files-parser.service.js +189 -0
  162. package/server/applications/files/services/files-parser.service.js.map +1 -0
  163. package/server/applications/files/services/files-parser.service.spec.js +31 -0
  164. package/server/applications/files/services/files-parser.service.spec.js.map +1 -0
  165. package/server/applications/files/services/files-queries.service.js +314 -0
  166. package/server/applications/files/services/files-queries.service.js.map +1 -0
  167. package/server/applications/files/services/files-recents.service.js +97 -0
  168. package/server/applications/files/services/files-recents.service.js.map +1 -0
  169. package/server/applications/files/services/files-recents.service.spec.js +41 -0
  170. package/server/applications/files/services/files-recents.service.spec.js.map +1 -0
  171. package/server/applications/files/services/files-scheduler.service.js +179 -0
  172. package/server/applications/files/services/files-scheduler.service.js.map +1 -0
  173. package/server/applications/files/services/files-search-manager.service.js +146 -0
  174. package/server/applications/files/services/files-search-manager.service.js.map +1 -0
  175. package/server/applications/files/services/files-search-manager.service.spec.js +46 -0
  176. package/server/applications/files/services/files-search-manager.service.spec.js.map +1 -0
  177. package/server/applications/files/services/files-tasks-manager.service.js +253 -0
  178. package/server/applications/files/services/files-tasks-manager.service.js.map +1 -0
  179. package/server/applications/files/services/files-tasks-manager.service.spec.js +46 -0
  180. package/server/applications/files/services/files-tasks-manager.service.spec.js.map +1 -0
  181. package/server/applications/files/utils/doc-textify/adapters/excel.js +91 -0
  182. package/server/applications/files/utils/doc-textify/adapters/excel.js.map +1 -0
  183. package/server/applications/files/utils/doc-textify/adapters/html.js +33 -0
  184. package/server/applications/files/utils/doc-textify/adapters/html.js.map +1 -0
  185. package/server/applications/files/utils/doc-textify/adapters/open-office.js +110 -0
  186. package/server/applications/files/utils/doc-textify/adapters/open-office.js.map +1 -0
  187. package/server/applications/files/utils/doc-textify/adapters/pdf.js +67 -0
  188. package/server/applications/files/utils/doc-textify/adapters/pdf.js.map +1 -0
  189. package/server/applications/files/utils/doc-textify/adapters/power-point.js +111 -0
  190. package/server/applications/files/utils/doc-textify/adapters/power-point.js.map +1 -0
  191. package/server/applications/files/utils/doc-textify/adapters/text.js +27 -0
  192. package/server/applications/files/utils/doc-textify/adapters/text.js.map +1 -0
  193. package/server/applications/files/utils/doc-textify/adapters/word.js +101 -0
  194. package/server/applications/files/utils/doc-textify/adapters/word.js.map +1 -0
  195. package/server/applications/files/utils/doc-textify/doc-textify.js +75 -0
  196. package/server/applications/files/utils/doc-textify/doc-textify.js.map +1 -0
  197. package/server/applications/files/utils/doc-textify/interfaces/doc-textify.interfaces.js +10 -0
  198. package/server/applications/files/utils/doc-textify/interfaces/doc-textify.interfaces.js.map +1 -0
  199. package/server/applications/files/utils/doc-textify/utils/clean.js +34 -0
  200. package/server/applications/files/utils/doc-textify/utils/clean.js.map +1 -0
  201. package/server/applications/files/utils/files-search.js +144 -0
  202. package/server/applications/files/utils/files-search.js.map +1 -0
  203. package/server/applications/files/utils/files-tree.js +86 -0
  204. package/server/applications/files/utils/files-tree.js.map +1 -0
  205. package/server/applications/files/utils/files.js +386 -0
  206. package/server/applications/files/utils/files.js.map +1 -0
  207. package/server/applications/files/utils/send-file.js +70 -0
  208. package/server/applications/files/utils/send-file.js.map +1 -0
  209. package/server/applications/files/utils/unzip-file.js +60 -0
  210. package/server/applications/files/utils/unzip-file.js.map +1 -0
  211. package/server/applications/files/utils/url-file.js +39 -0
  212. package/server/applications/files/utils/url-file.js.map +1 -0
  213. package/server/applications/links/constants/cache.js +28 -0
  214. package/server/applications/links/constants/cache.js.map +1 -0
  215. package/server/applications/links/constants/links.js +36 -0
  216. package/server/applications/links/constants/links.js.map +1 -0
  217. package/server/applications/links/constants/routes.js +41 -0
  218. package/server/applications/links/constants/routes.js.map +1 -0
  219. package/server/applications/links/dto/create-or-update-link.dto.js +95 -0
  220. package/server/applications/links/dto/create-or-update-link.dto.js.map +1 -0
  221. package/server/applications/links/interfaces/link-guest.interface.js +10 -0
  222. package/server/applications/links/interfaces/link-guest.interface.js.map +1 -0
  223. package/server/applications/links/interfaces/link-space.interface.js +10 -0
  224. package/server/applications/links/interfaces/link-space.interface.js.map +1 -0
  225. package/server/applications/links/links.controller.js +107 -0
  226. package/server/applications/links/links.controller.js.map +1 -0
  227. package/server/applications/links/links.controller.spec.js +88 -0
  228. package/server/applications/links/links.controller.spec.js.map +1 -0
  229. package/server/applications/links/schemas/link.interface.js +18 -0
  230. package/server/applications/links/schemas/link.interface.js.map +1 -0
  231. package/server/applications/links/schemas/links.schema.js +56 -0
  232. package/server/applications/links/schemas/links.schema.js.map +1 -0
  233. package/server/applications/links/services/links-manager.service.js +158 -0
  234. package/server/applications/links/services/links-manager.service.js.map +1 -0
  235. package/server/applications/links/services/links-manager.service.spec.js +84 -0
  236. package/server/applications/links/services/links-manager.service.spec.js.map +1 -0
  237. package/server/applications/links/services/links-queries.service.js +181 -0
  238. package/server/applications/links/services/links-queries.service.js.map +1 -0
  239. package/server/applications/notifications/constants/notifications.js +62 -0
  240. package/server/applications/notifications/constants/notifications.js.map +1 -0
  241. package/server/applications/notifications/constants/routes.js +30 -0
  242. package/server/applications/notifications/constants/routes.js.map +1 -0
  243. package/server/applications/notifications/constants/websocket.js +22 -0
  244. package/server/applications/notifications/constants/websocket.js.map +1 -0
  245. package/server/applications/notifications/i18n/fr.js +43 -0
  246. package/server/applications/notifications/i18n/fr.js.map +1 -0
  247. package/server/applications/notifications/i18n/index.js +37 -0
  248. package/server/applications/notifications/i18n/index.js.map +1 -0
  249. package/server/applications/notifications/interfaces/notification-properties.interface.js +10 -0
  250. package/server/applications/notifications/interfaces/notification-properties.interface.js.map +1 -0
  251. package/server/applications/notifications/interfaces/user-mail-notification.js +10 -0
  252. package/server/applications/notifications/interfaces/user-mail-notification.js.map +1 -0
  253. package/server/applications/notifications/mails/models.js +133 -0
  254. package/server/applications/notifications/mails/models.js.map +1 -0
  255. package/server/applications/notifications/mails/templates.js +51 -0
  256. package/server/applications/notifications/mails/templates.js.map +1 -0
  257. package/server/applications/notifications/mails/urls.js +51 -0
  258. package/server/applications/notifications/mails/urls.js.map +1 -0
  259. package/server/applications/notifications/notifications.controller.js +110 -0
  260. package/server/applications/notifications/notifications.controller.js.map +1 -0
  261. package/server/applications/notifications/notifications.controller.spec.js +33 -0
  262. package/server/applications/notifications/notifications.controller.spec.js.map +1 -0
  263. package/server/applications/notifications/notifications.gateway.js +45 -0
  264. package/server/applications/notifications/notifications.gateway.js.map +1 -0
  265. package/server/applications/notifications/notifications.module.js +44 -0
  266. package/server/applications/notifications/notifications.module.js.map +1 -0
  267. package/server/applications/notifications/schemas/notification.interface.js +18 -0
  268. package/server/applications/notifications/schemas/notification.interface.js.map +1 -0
  269. package/server/applications/notifications/schemas/notifications.schema.js +45 -0
  270. package/server/applications/notifications/schemas/notifications.schema.js.map +1 -0
  271. package/server/applications/notifications/services/notifications-manager.service.js +143 -0
  272. package/server/applications/notifications/services/notifications-manager.service.js.map +1 -0
  273. package/server/applications/notifications/services/notifications-manager.service.spec.js +46 -0
  274. package/server/applications/notifications/services/notifications-manager.service.spec.js.map +1 -0
  275. package/server/applications/notifications/services/notifications-queries.service.js +100 -0
  276. package/server/applications/notifications/services/notifications-queries.service.js.map +1 -0
  277. package/server/applications/shares/constants/routes.js +46 -0
  278. package/server/applications/shares/constants/routes.js.map +1 -0
  279. package/server/applications/shares/constants/shares.js +31 -0
  280. package/server/applications/shares/constants/shares.js.map +1 -0
  281. package/server/applications/shares/dto/create-or-update-share.dto.js +232 -0
  282. package/server/applications/shares/dto/create-or-update-share.dto.js.map +1 -0
  283. package/server/applications/shares/interfaces/share-child.interface.js +10 -0
  284. package/server/applications/shares/interfaces/share-child.interface.js.map +1 -0
  285. package/server/applications/shares/interfaces/share-env.interface.js +10 -0
  286. package/server/applications/shares/interfaces/share-env.interface.js.map +1 -0
  287. package/server/applications/shares/interfaces/share-file.interface.js +21 -0
  288. package/server/applications/shares/interfaces/share-file.interface.js.map +1 -0
  289. package/server/applications/shares/interfaces/share-link.interface.js +10 -0
  290. package/server/applications/shares/interfaces/share-link.interface.js.map +1 -0
  291. package/server/applications/shares/interfaces/share-props.interface.js +22 -0
  292. package/server/applications/shares/interfaces/share-props.interface.js.map +1 -0
  293. package/server/applications/shares/models/share-child.model.js +30 -0
  294. package/server/applications/shares/models/share-child.model.js.map +1 -0
  295. package/server/applications/shares/schemas/share-members.interface.js +18 -0
  296. package/server/applications/shares/schemas/share-members.interface.js.map +1 -0
  297. package/server/applications/shares/schemas/share.interface.js +18 -0
  298. package/server/applications/shares/schemas/share.interface.js.map +1 -0
  299. package/server/applications/shares/schemas/shares-members.schema.js +69 -0
  300. package/server/applications/shares/schemas/shares-members.schema.js.map +1 -0
  301. package/server/applications/shares/schemas/shares.schema.js +91 -0
  302. package/server/applications/shares/schemas/shares.schema.js.map +1 -0
  303. package/server/applications/shares/services/shares-manager.service.js +1010 -0
  304. package/server/applications/shares/services/shares-manager.service.js.map +1 -0
  305. package/server/applications/shares/services/shares-manager.service.spec.js +56 -0
  306. package/server/applications/shares/services/shares-manager.service.spec.js.map +1 -0
  307. package/server/applications/shares/services/shares-queries.service.js +892 -0
  308. package/server/applications/shares/services/shares-queries.service.js.map +1 -0
  309. package/server/applications/shares/shares.controller.js +293 -0
  310. package/server/applications/shares/shares.controller.js.map +1 -0
  311. package/server/applications/shares/shares.controller.spec.js +60 -0
  312. package/server/applications/shares/shares.controller.spec.js.map +1 -0
  313. package/server/applications/shares/shares.module.js +49 -0
  314. package/server/applications/shares/shares.module.js.map +1 -0
  315. package/server/applications/spaces/constants/cache.js +32 -0
  316. package/server/applications/spaces/constants/cache.js.map +1 -0
  317. package/server/applications/spaces/constants/routes.js +58 -0
  318. package/server/applications/spaces/constants/routes.js.map +1 -0
  319. package/server/applications/spaces/constants/spaces.js +104 -0
  320. package/server/applications/spaces/constants/spaces.js.map +1 -0
  321. package/server/applications/spaces/decorators/space-skip-guard.decorator.js +27 -0
  322. package/server/applications/spaces/decorators/space-skip-guard.decorator.js.map +1 -0
  323. package/server/applications/spaces/decorators/space-skip-permissions.decorator.js +27 -0
  324. package/server/applications/spaces/decorators/space-skip-permissions.decorator.js.map +1 -0
  325. package/server/applications/spaces/decorators/space.decorator.js +20 -0
  326. package/server/applications/spaces/decorators/space.decorator.js.map +1 -0
  327. package/server/applications/spaces/dto/create-or-update-space.dto.js +164 -0
  328. package/server/applications/spaces/dto/create-or-update-space.dto.js.map +1 -0
  329. package/server/applications/spaces/dto/delete-space.dto.js +33 -0
  330. package/server/applications/spaces/dto/delete-space.dto.js.map +1 -0
  331. package/server/applications/spaces/dto/search-space.dto.js +47 -0
  332. package/server/applications/spaces/dto/search-space.dto.js.map +1 -0
  333. package/server/applications/spaces/dto/space-roots.dto.js +117 -0
  334. package/server/applications/spaces/dto/space-roots.dto.js.map +1 -0
  335. package/server/applications/spaces/guards/space.guard.js +151 -0
  336. package/server/applications/spaces/guards/space.guard.js.map +1 -0
  337. package/server/applications/spaces/guards/space.guard.spec.js +457 -0
  338. package/server/applications/spaces/guards/space.guard.spec.js.map +1 -0
  339. package/server/applications/spaces/interfaces/space-diff.interface.js +10 -0
  340. package/server/applications/spaces/interfaces/space-diff.interface.js.map +1 -0
  341. package/server/applications/spaces/interfaces/space-files.interface.js +10 -0
  342. package/server/applications/spaces/interfaces/space-files.interface.js.map +1 -0
  343. package/server/applications/spaces/interfaces/space-quota.interface.js +10 -0
  344. package/server/applications/spaces/interfaces/space-quota.interface.js.map +1 -0
  345. package/server/applications/spaces/interfaces/space-request.interface.js +10 -0
  346. package/server/applications/spaces/interfaces/space-request.interface.js.map +1 -0
  347. package/server/applications/spaces/interfaces/space-trash.interface.js +10 -0
  348. package/server/applications/spaces/interfaces/space-trash.interface.js.map +1 -0
  349. package/server/applications/spaces/models/space-env.model.js +112 -0
  350. package/server/applications/spaces/models/space-env.model.js.map +1 -0
  351. package/server/applications/spaces/models/space-props.model.js +60 -0
  352. package/server/applications/spaces/models/space-props.model.js.map +1 -0
  353. package/server/applications/spaces/models/space-root-props.model.js +18 -0
  354. package/server/applications/spaces/models/space-root-props.model.js.map +1 -0
  355. package/server/applications/spaces/models/space.model.js +64 -0
  356. package/server/applications/spaces/models/space.model.js.map +1 -0
  357. package/server/applications/spaces/schemas/space-members.interface.js +18 -0
  358. package/server/applications/spaces/schemas/space-members.interface.js.map +1 -0
  359. package/server/applications/spaces/schemas/space-root.interface.js +18 -0
  360. package/server/applications/spaces/schemas/space-root.interface.js.map +1 -0
  361. package/server/applications/spaces/schemas/space.interface.js +18 -0
  362. package/server/applications/spaces/schemas/space.interface.js.map +1 -0
  363. package/server/applications/spaces/schemas/spaces-members.schema.js +73 -0
  364. package/server/applications/spaces/schemas/spaces-members.schema.js.map +1 -0
  365. package/server/applications/spaces/schemas/spaces-roots.schema.js +61 -0
  366. package/server/applications/spaces/schemas/spaces-roots.schema.js.map +1 -0
  367. package/server/applications/spaces/schemas/spaces.schema.js +63 -0
  368. package/server/applications/spaces/schemas/spaces.schema.js.map +1 -0
  369. package/server/applications/spaces/services/spaces-browser.service.js +308 -0
  370. package/server/applications/spaces/services/spaces-browser.service.js.map +1 -0
  371. package/server/applications/spaces/services/spaces-browser.service.spec.js +74 -0
  372. package/server/applications/spaces/services/spaces-browser.service.spec.js.map +1 -0
  373. package/server/applications/spaces/services/spaces-manager.service.js +818 -0
  374. package/server/applications/spaces/services/spaces-manager.service.js.map +1 -0
  375. package/server/applications/spaces/services/spaces-manager.service.spec.js +269 -0
  376. package/server/applications/spaces/services/spaces-manager.service.spec.js.map +1 -0
  377. package/server/applications/spaces/services/spaces-queries.service.js +763 -0
  378. package/server/applications/spaces/services/spaces-queries.service.js.map +1 -0
  379. package/server/applications/spaces/services/spaces-scheduler.service.js +88 -0
  380. package/server/applications/spaces/services/spaces-scheduler.service.js.map +1 -0
  381. package/server/applications/spaces/spaces.controller.js +386 -0
  382. package/server/applications/spaces/spaces.controller.js.map +1 -0
  383. package/server/applications/spaces/spaces.controller.spec.js +65 -0
  384. package/server/applications/spaces/spaces.controller.spec.js.map +1 -0
  385. package/server/applications/spaces/spaces.module.js +51 -0
  386. package/server/applications/spaces/spaces.module.js.map +1 -0
  387. package/server/applications/spaces/utils/paths.js +241 -0
  388. package/server/applications/spaces/utils/paths.js.map +1 -0
  389. package/server/applications/spaces/utils/permissions.js +88 -0
  390. package/server/applications/spaces/utils/permissions.js.map +1 -0
  391. package/server/applications/spaces/utils/routes.js +20 -0
  392. package/server/applications/spaces/utils/routes.js.map +1 -0
  393. package/server/applications/sync/constants/auth.js +38 -0
  394. package/server/applications/sync/constants/auth.js.map +1 -0
  395. package/server/applications/sync/constants/routes.js +47 -0
  396. package/server/applications/sync/constants/routes.js.map +1 -0
  397. package/server/applications/sync/constants/store.js +48 -0
  398. package/server/applications/sync/constants/store.js.map +1 -0
  399. package/server/applications/sync/constants/sync.js +128 -0
  400. package/server/applications/sync/constants/sync.js.map +1 -0
  401. package/server/applications/sync/decorators/sync-context.decorator.js +27 -0
  402. package/server/applications/sync/decorators/sync-context.decorator.js.map +1 -0
  403. package/server/applications/sync/decorators/sync-environment.decorator.js +25 -0
  404. package/server/applications/sync/decorators/sync-environment.decorator.js.map +1 -0
  405. package/server/applications/sync/dtos/sync-client-auth.dto.js +47 -0
  406. package/server/applications/sync/dtos/sync-client-auth.dto.js.map +1 -0
  407. package/server/applications/sync/dtos/sync-client-registration.dto.js +51 -0
  408. package/server/applications/sync/dtos/sync-client-registration.dto.js.map +1 -0
  409. package/server/applications/sync/dtos/sync-operations.dto.js +104 -0
  410. package/server/applications/sync/dtos/sync-operations.dto.js.map +1 -0
  411. package/server/applications/sync/dtos/sync-path.dto.js +130 -0
  412. package/server/applications/sync/dtos/sync-path.dto.js.map +1 -0
  413. package/server/applications/sync/dtos/sync-upload.dto.js +49 -0
  414. package/server/applications/sync/dtos/sync-upload.dto.js.map +1 -0
  415. package/server/applications/sync/interceptors/sync-diff-gzip-body.interceptor.js +55 -0
  416. package/server/applications/sync/interceptors/sync-diff-gzip-body.interceptor.js.map +1 -0
  417. package/server/applications/sync/interfaces/store-manifest.interface.js +10 -0
  418. package/server/applications/sync/interfaces/store-manifest.interface.js.map +1 -0
  419. package/server/applications/sync/interfaces/sync-client-auth.interface.js +30 -0
  420. package/server/applications/sync/interfaces/sync-client-auth.interface.js.map +1 -0
  421. package/server/applications/sync/interfaces/sync-client-paths.interface.js +10 -0
  422. package/server/applications/sync/interfaces/sync-client-paths.interface.js.map +1 -0
  423. package/server/applications/sync/interfaces/sync-client.interface.js +10 -0
  424. package/server/applications/sync/interfaces/sync-client.interface.js.map +1 -0
  425. package/server/applications/sync/interfaces/sync-diff.interface.js +11 -0
  426. package/server/applications/sync/interfaces/sync-diff.interface.js.map +1 -0
  427. package/server/applications/sync/interfaces/sync-path.interface.js +10 -0
  428. package/server/applications/sync/interfaces/sync-path.interface.js.map +1 -0
  429. package/server/applications/sync/schemas/sync-client.interface.js +18 -0
  430. package/server/applications/sync/schemas/sync-client.interface.js.map +1 -0
  431. package/server/applications/sync/schemas/sync-clients.schema.js +57 -0
  432. package/server/applications/sync/schemas/sync-clients.schema.js.map +1 -0
  433. package/server/applications/sync/schemas/sync-path.interface.js +18 -0
  434. package/server/applications/sync/schemas/sync-path.interface.js.map +1 -0
  435. package/server/applications/sync/schemas/sync-paths.schema.js +76 -0
  436. package/server/applications/sync/schemas/sync-paths.schema.js.map +1 -0
  437. package/server/applications/sync/services/sync-clients-manager.service.js +218 -0
  438. package/server/applications/sync/services/sync-clients-manager.service.js.map +1 -0
  439. package/server/applications/sync/services/sync-clients-manager.service.spec.js +56 -0
  440. package/server/applications/sync/services/sync-clients-manager.service.spec.js.map +1 -0
  441. package/server/applications/sync/services/sync-manager.service.js +299 -0
  442. package/server/applications/sync/services/sync-manager.service.js.map +1 -0
  443. package/server/applications/sync/services/sync-manager.service.spec.js +41 -0
  444. package/server/applications/sync/services/sync-manager.service.spec.js.map +1 -0
  445. package/server/applications/sync/services/sync-paths-manager.service.js +290 -0
  446. package/server/applications/sync/services/sync-paths-manager.service.js.map +1 -0
  447. package/server/applications/sync/services/sync-paths-manager.service.spec.js +56 -0
  448. package/server/applications/sync/services/sync-paths-manager.service.spec.js.map +1 -0
  449. package/server/applications/sync/services/sync-queries.service.js +238 -0
  450. package/server/applications/sync/services/sync-queries.service.js.map +1 -0
  451. package/server/applications/sync/sync.config.js +36 -0
  452. package/server/applications/sync/sync.config.js.map +1 -0
  453. package/server/applications/sync/sync.controller.js +407 -0
  454. package/server/applications/sync/sync.controller.js.map +1 -0
  455. package/server/applications/sync/sync.controller.spec.js +53 -0
  456. package/server/applications/sync/sync.controller.spec.js.map +1 -0
  457. package/server/applications/sync/sync.module.js +45 -0
  458. package/server/applications/sync/sync.module.js.map +1 -0
  459. package/server/applications/sync/utils/functions.js +26 -0
  460. package/server/applications/sync/utils/functions.js.map +1 -0
  461. package/server/applications/sync/utils/normalizedMap.js +52 -0
  462. package/server/applications/sync/utils/normalizedMap.js.map +1 -0
  463. package/server/applications/sync/utils/routes.js +27 -0
  464. package/server/applications/sync/utils/routes.js.map +1 -0
  465. package/server/applications/users/admin-users.controller.js +350 -0
  466. package/server/applications/users/admin-users.controller.js.map +1 -0
  467. package/server/applications/users/admin-users.controller.spec.js +60 -0
  468. package/server/applications/users/admin-users.controller.spec.js.map +1 -0
  469. package/server/applications/users/constants/group.js +35 -0
  470. package/server/applications/users/constants/group.js.map +1 -0
  471. package/server/applications/users/constants/member.js +39 -0
  472. package/server/applications/users/constants/member.js.map +1 -0
  473. package/server/applications/users/constants/routes.js +134 -0
  474. package/server/applications/users/constants/routes.js.map +1 -0
  475. package/server/applications/users/constants/user.js +118 -0
  476. package/server/applications/users/constants/user.js.map +1 -0
  477. package/server/applications/users/constants/websocket.js +33 -0
  478. package/server/applications/users/constants/websocket.js.map +1 -0
  479. package/server/applications/users/decorators/permissions.decorator.js +18 -0
  480. package/server/applications/users/decorators/permissions.decorator.js.map +1 -0
  481. package/server/applications/users/decorators/roles.decorator.js +18 -0
  482. package/server/applications/users/decorators/roles.decorator.js.map +1 -0
  483. package/server/applications/users/decorators/user.decorator.js +20 -0
  484. package/server/applications/users/decorators/user.decorator.js.map +1 -0
  485. package/server/applications/users/dto/create-or-update-group.dto.js +66 -0
  486. package/server/applications/users/dto/create-or-update-group.dto.js.map +1 -0
  487. package/server/applications/users/dto/create-or-update-user.dto.js +167 -0
  488. package/server/applications/users/dto/create-or-update-user.dto.js.map +1 -0
  489. package/server/applications/users/dto/delete-user.dto.js +54 -0
  490. package/server/applications/users/dto/delete-user.dto.js.map +1 -0
  491. package/server/applications/users/dto/search-members.dto.js +79 -0
  492. package/server/applications/users/dto/search-members.dto.js.map +1 -0
  493. package/server/applications/users/dto/user-password.dto.js +35 -0
  494. package/server/applications/users/dto/user-password.dto.js.map +1 -0
  495. package/server/applications/users/dto/user-properties.dto.js +64 -0
  496. package/server/applications/users/dto/user-properties.dto.js.map +1 -0
  497. package/server/applications/users/guards/permissions.guard.js +71 -0
  498. package/server/applications/users/guards/permissions.guard.js.map +1 -0
  499. package/server/applications/users/guards/permissions.guard.spec.js +103 -0
  500. package/server/applications/users/guards/permissions.guard.spec.js.map +1 -0
  501. package/server/applications/users/guards/roles.guard.js +62 -0
  502. package/server/applications/users/guards/roles.guard.js.map +1 -0
  503. package/server/applications/users/guards/roles.guard.spec.js +90 -0
  504. package/server/applications/users/guards/roles.guard.spec.js.map +1 -0
  505. package/server/applications/users/interfaces/admin-group.interface.js +10 -0
  506. package/server/applications/users/interfaces/admin-group.interface.js.map +1 -0
  507. package/server/applications/users/interfaces/admin-user.interface.js +10 -0
  508. package/server/applications/users/interfaces/admin-user.interface.js.map +1 -0
  509. package/server/applications/users/interfaces/group-browse.interface.js +10 -0
  510. package/server/applications/users/interfaces/group-browse.interface.js.map +1 -0
  511. package/server/applications/users/interfaces/group-member.js +10 -0
  512. package/server/applications/users/interfaces/group-member.js.map +1 -0
  513. package/server/applications/users/interfaces/guest-user.interface.js +10 -0
  514. package/server/applications/users/interfaces/guest-user.interface.js.map +1 -0
  515. package/server/applications/users/interfaces/member.interface.js +10 -0
  516. package/server/applications/users/interfaces/member.interface.js.map +1 -0
  517. package/server/applications/users/interfaces/owner.interface.js +10 -0
  518. package/server/applications/users/interfaces/owner.interface.js.map +1 -0
  519. package/server/applications/users/interfaces/websocket.interface.js +10 -0
  520. package/server/applications/users/interfaces/websocket.interface.js.map +1 -0
  521. package/server/applications/users/models/user.model.js +226 -0
  522. package/server/applications/users/models/user.model.js.map +1 -0
  523. package/server/applications/users/schemas/group.interface.js +18 -0
  524. package/server/applications/users/schemas/group.interface.js.map +1 -0
  525. package/server/applications/users/schemas/groups.schema.js +56 -0
  526. package/server/applications/users/schemas/groups.schema.js.map +1 -0
  527. package/server/applications/users/schemas/user-group.interface.js +18 -0
  528. package/server/applications/users/schemas/user-group.interface.js.map +1 -0
  529. package/server/applications/users/schemas/user.interface.js +18 -0
  530. package/server/applications/users/schemas/user.interface.js.map +1 -0
  531. package/server/applications/users/schemas/users-groups.schema.js +49 -0
  532. package/server/applications/users/schemas/users-groups.schema.js.map +1 -0
  533. package/server/applications/users/schemas/users-guests.schema.js +46 -0
  534. package/server/applications/users/schemas/users-guests.schema.js.map +1 -0
  535. package/server/applications/users/schemas/users.schema.js +94 -0
  536. package/server/applications/users/schemas/users.schema.js.map +1 -0
  537. package/server/applications/users/services/admin-users-manager.service.js +385 -0
  538. package/server/applications/users/services/admin-users-manager.service.js.map +1 -0
  539. package/server/applications/users/services/admin-users-manager.service.spec.js +50 -0
  540. package/server/applications/users/services/admin-users-manager.service.spec.js.map +1 -0
  541. package/server/applications/users/services/admin-users-queries.service.js +315 -0
  542. package/server/applications/users/services/admin-users-queries.service.js.map +1 -0
  543. package/server/applications/users/services/users-manager.service.js +424 -0
  544. package/server/applications/users/services/users-manager.service.js.map +1 -0
  545. package/server/applications/users/services/users-manager.service.spec.js +151 -0
  546. package/server/applications/users/services/users-manager.service.spec.js.map +1 -0
  547. package/server/applications/users/services/users-queries.service.js +570 -0
  548. package/server/applications/users/services/users-queries.service.js.map +1 -0
  549. package/server/applications/users/users.controller.js +371 -0
  550. package/server/applications/users/users.controller.js.map +1 -0
  551. package/server/applications/users/users.controller.spec.js +86 -0
  552. package/server/applications/users/users.controller.spec.js.map +1 -0
  553. package/server/applications/users/users.e2e-spec.js +97 -0
  554. package/server/applications/users/users.e2e-spec.js.map +1 -0
  555. package/server/applications/users/users.gateway.js +182 -0
  556. package/server/applications/users/users.gateway.js.map +1 -0
  557. package/server/applications/users/users.gateway.spec.js +36 -0
  558. package/server/applications/users/users.gateway.spec.js.map +1 -0
  559. package/server/applications/users/users.module.js +57 -0
  560. package/server/applications/users/users.module.js.map +1 -0
  561. package/server/applications/users/utils/test.js +34 -0
  562. package/server/applications/users/utils/test.js.map +1 -0
  563. package/server/applications/webdav/constants/routes.js +73 -0
  564. package/server/applications/webdav/constants/routes.js.map +1 -0
  565. package/server/applications/webdav/constants/webdav.js +168 -0
  566. package/server/applications/webdav/constants/webdav.js.map +1 -0
  567. package/server/applications/webdav/decorators/if-header.decorator.js +27 -0
  568. package/server/applications/webdav/decorators/if-header.decorator.js.map +1 -0
  569. package/server/applications/webdav/decorators/webdav-context.decorator.js +36 -0
  570. package/server/applications/webdav/decorators/webdav-context.decorator.js.map +1 -0
  571. package/server/applications/webdav/filters/webdav.filter.js +45 -0
  572. package/server/applications/webdav/filters/webdav.filter.js.map +1 -0
  573. package/server/applications/webdav/guards/webdav-protocol.guard.js +262 -0
  574. package/server/applications/webdav/guards/webdav-protocol.guard.js.map +1 -0
  575. package/server/applications/webdav/interfaces/if-header.interface.js +10 -0
  576. package/server/applications/webdav/interfaces/if-header.interface.js.map +1 -0
  577. package/server/applications/webdav/interfaces/webdav.interface.js +10 -0
  578. package/server/applications/webdav/interfaces/webdav.interface.js.map +1 -0
  579. package/server/applications/webdav/models/webdav-file.model.js +74 -0
  580. package/server/applications/webdav/models/webdav-file.model.js.map +1 -0
  581. package/server/applications/webdav/services/webdav-methods.service.js +520 -0
  582. package/server/applications/webdav/services/webdav-methods.service.js.map +1 -0
  583. package/server/applications/webdav/services/webdav-methods.service.spec.js +41 -0
  584. package/server/applications/webdav/services/webdav-methods.service.spec.js.map +1 -0
  585. package/server/applications/webdav/services/webdav-spaces.service.js +169 -0
  586. package/server/applications/webdav/services/webdav-spaces.service.js.map +1 -0
  587. package/server/applications/webdav/services/webdav-spaces.service.spec.js +36 -0
  588. package/server/applications/webdav/services/webdav-spaces.service.spec.js.map +1 -0
  589. package/server/applications/webdav/utils/if-header.js +89 -0
  590. package/server/applications/webdav/utils/if-header.js.map +1 -0
  591. package/server/applications/webdav/utils/routes.js +30 -0
  592. package/server/applications/webdav/utils/routes.js.map +1 -0
  593. package/server/applications/webdav/utils/webdav.js +167 -0
  594. package/server/applications/webdav/utils/webdav.js.map +1 -0
  595. package/server/applications/webdav/utils/xml.js +72 -0
  596. package/server/applications/webdav/utils/xml.js.map +1 -0
  597. package/server/applications/webdav/webdav.controller.js +173 -0
  598. package/server/applications/webdav/webdav.controller.js.map +1 -0
  599. package/server/applications/webdav/webdav.controller.spec.js +41 -0
  600. package/server/applications/webdav/webdav.controller.spec.js.map +1 -0
  601. package/server/applications/webdav/webdav.e2e-spec.js +69 -0
  602. package/server/applications/webdav/webdav.e2e-spec.js.map +1 -0
  603. package/server/applications/webdav/webdav.module.js +41 -0
  604. package/server/applications/webdav/webdav.module.js.map +1 -0
  605. package/server/authentication/auth.config.js +223 -0
  606. package/server/authentication/auth.config.js.map +1 -0
  607. package/server/authentication/auth.controller.js +126 -0
  608. package/server/authentication/auth.controller.js.map +1 -0
  609. package/server/authentication/auth.controller.spec.js +132 -0
  610. package/server/authentication/auth.controller.spec.js.map +1 -0
  611. package/server/authentication/auth.e2e-spec.js +340 -0
  612. package/server/authentication/auth.e2e-spec.js.map +1 -0
  613. package/server/authentication/auth.module.js +84 -0
  614. package/server/authentication/auth.module.js.map +1 -0
  615. package/server/authentication/constants/auth.js +54 -0
  616. package/server/authentication/constants/auth.js.map +1 -0
  617. package/server/authentication/constants/routes.js +55 -0
  618. package/server/authentication/constants/routes.js.map +1 -0
  619. package/server/authentication/decorators/auth-token-optional.decorator.js +26 -0
  620. package/server/authentication/decorators/auth-token-optional.decorator.js.map +1 -0
  621. package/server/authentication/decorators/auth-token-skip.decorator.js +27 -0
  622. package/server/authentication/decorators/auth-token-skip.decorator.js.map +1 -0
  623. package/server/authentication/dto/login-response.dto.js +23 -0
  624. package/server/authentication/dto/login-response.dto.js.map +1 -0
  625. package/server/authentication/dto/token-response.dto.js +44 -0
  626. package/server/authentication/dto/token-response.dto.js.map +1 -0
  627. package/server/authentication/guards/auth-anonymous.guard.js +37 -0
  628. package/server/authentication/guards/auth-anonymous.guard.js.map +1 -0
  629. package/server/authentication/guards/auth-anonymous.guard.spec.js +65 -0
  630. package/server/authentication/guards/auth-anonymous.guard.spec.js.map +1 -0
  631. package/server/authentication/guards/auth-anonymous.strategy.js +44 -0
  632. package/server/authentication/guards/auth-anonymous.strategy.js.map +1 -0
  633. package/server/authentication/guards/auth-basic.guard.js +54 -0
  634. package/server/authentication/guards/auth-basic.guard.js.map +1 -0
  635. package/server/authentication/guards/auth-basic.guard.spec.js +148 -0
  636. package/server/authentication/guards/auth-basic.guard.spec.js.map +1 -0
  637. package/server/authentication/guards/auth-basic.strategy.js +79 -0
  638. package/server/authentication/guards/auth-basic.strategy.js.map +1 -0
  639. package/server/authentication/guards/auth-digest.guard.js +24 -0
  640. package/server/authentication/guards/auth-digest.guard.js.map +1 -0
  641. package/server/authentication/guards/auth-digest.strategy.js +28 -0
  642. package/server/authentication/guards/auth-digest.strategy.js.map +1 -0
  643. package/server/authentication/guards/auth-local.guard.js +40 -0
  644. package/server/authentication/guards/auth-local.guard.js.map +1 -0
  645. package/server/authentication/guards/auth-local.guard.spec.js +87 -0
  646. package/server/authentication/guards/auth-local.guard.spec.js.map +1 -0
  647. package/server/authentication/guards/auth-local.strategy.js +59 -0
  648. package/server/authentication/guards/auth-local.strategy.js.map +1 -0
  649. package/server/authentication/guards/auth-token-access.guard.js +66 -0
  650. package/server/authentication/guards/auth-token-access.guard.js.map +1 -0
  651. package/server/authentication/guards/auth-token-access.guard.spec.js +262 -0
  652. package/server/authentication/guards/auth-token-access.guard.spec.js.map +1 -0
  653. package/server/authentication/guards/auth-token-access.strategy.js +68 -0
  654. package/server/authentication/guards/auth-token-access.strategy.js.map +1 -0
  655. package/server/authentication/guards/auth-token-refresh.guard.js +40 -0
  656. package/server/authentication/guards/auth-token-refresh.guard.js.map +1 -0
  657. package/server/authentication/guards/auth-token-refresh.guard.spec.js +189 -0
  658. package/server/authentication/guards/auth-token-refresh.guard.spec.js.map +1 -0
  659. package/server/authentication/guards/auth-token-refresh.strategy.js +72 -0
  660. package/server/authentication/guards/auth-token-refresh.strategy.js.map +1 -0
  661. package/server/authentication/interfaces/auth-request.interface.js +10 -0
  662. package/server/authentication/interfaces/auth-request.interface.js.map +1 -0
  663. package/server/authentication/interfaces/jwt-payload.interface.js +28 -0
  664. package/server/authentication/interfaces/jwt-payload.interface.js.map +1 -0
  665. package/server/authentication/interfaces/token.interface.js +23 -0
  666. package/server/authentication/interfaces/token.interface.js.map +1 -0
  667. package/server/authentication/models/auth-method.js +18 -0
  668. package/server/authentication/models/auth-method.js.map +1 -0
  669. package/server/authentication/services/auth-manager.service.js +174 -0
  670. package/server/authentication/services/auth-manager.service.js.map +1 -0
  671. package/server/authentication/services/auth-manager.service.spec.js +41 -0
  672. package/server/authentication/services/auth-manager.service.spec.js.map +1 -0
  673. package/server/authentication/services/auth-methods/auth-method-database.service.js +55 -0
  674. package/server/authentication/services/auth-methods/auth-method-database.service.js.map +1 -0
  675. package/server/authentication/services/auth-methods/auth-method-database.service.spec.js +88 -0
  676. package/server/authentication/services/auth-methods/auth-method-database.service.spec.js.map +1 -0
  677. package/server/authentication/services/auth-methods/auth-method-ldap.service.js +185 -0
  678. package/server/authentication/services/auth-methods/auth-method-ldap.service.js.map +1 -0
  679. package/server/authentication/services/auth-methods/auth-method-ldap.service.spec.js +36 -0
  680. package/server/authentication/services/auth-methods/auth-method-ldap.service.spec.js.map +1 -0
  681. package/server/common/constants.js +23 -0
  682. package/server/common/constants.js.map +1 -0
  683. package/server/common/decorators.js +35 -0
  684. package/server/common/decorators.js.map +1 -0
  685. package/server/common/fonts/avatar.ttf +0 -0
  686. package/server/common/functions.js +292 -0
  687. package/server/common/functions.js.map +1 -0
  688. package/server/common/image.js +113 -0
  689. package/server/common/image.js.map +1 -0
  690. package/server/common/interfaces.js +10 -0
  691. package/server/common/interfaces.js.map +1 -0
  692. package/server/common/shared.js +105 -0
  693. package/server/common/shared.js.map +1 -0
  694. package/server/configuration/config.constants.js +65 -0
  695. package/server/configuration/config.constants.js.map +1 -0
  696. package/server/configuration/config.environment.js +57 -0
  697. package/server/configuration/config.environment.js.map +1 -0
  698. package/server/configuration/config.loader.js +195 -0
  699. package/server/configuration/config.loader.js.map +1 -0
  700. package/server/configuration/config.logger.js +69 -0
  701. package/server/configuration/config.logger.js.map +1 -0
  702. package/server/configuration/config.validation.js +175 -0
  703. package/server/configuration/config.validation.js.map +1 -0
  704. package/server/infrastructure/cache/adapters/mysql-cache.adapter.js +169 -0
  705. package/server/infrastructure/cache/adapters/mysql-cache.adapter.js.map +1 -0
  706. package/server/infrastructure/cache/adapters/redis-cache.adapter.js +129 -0
  707. package/server/infrastructure/cache/adapters/redis-cache.adapter.js.map +1 -0
  708. package/server/infrastructure/cache/cache.config.js +53 -0
  709. package/server/infrastructure/cache/cache.config.js.map +1 -0
  710. package/server/infrastructure/cache/cache.decorator.js +53 -0
  711. package/server/infrastructure/cache/cache.decorator.js.map +1 -0
  712. package/server/infrastructure/cache/cache.e2e-spec.js +111 -0
  713. package/server/infrastructure/cache/cache.e2e-spec.js.map +1 -0
  714. package/server/infrastructure/cache/cache.module.js +58 -0
  715. package/server/infrastructure/cache/cache.module.js.map +1 -0
  716. package/server/infrastructure/cache/schemas/mysql-cache.interface.js +18 -0
  717. package/server/infrastructure/cache/schemas/mysql-cache.interface.js.map +1 -0
  718. package/server/infrastructure/cache/schemas/mysql-cache.schema.js +26 -0
  719. package/server/infrastructure/cache/schemas/mysql-cache.schema.js.map +1 -0
  720. package/server/infrastructure/cache/services/cache.service.js +18 -0
  721. package/server/infrastructure/cache/services/cache.service.js.map +1 -0
  722. package/server/infrastructure/context/context.module.js +40 -0
  723. package/server/infrastructure/context/context.module.js.map +1 -0
  724. package/server/infrastructure/context/interceptors/context.interceptor.js +45 -0
  725. package/server/infrastructure/context/interceptors/context.interceptor.js.map +1 -0
  726. package/server/infrastructure/context/interfaces/context-store.interface.js +10 -0
  727. package/server/infrastructure/context/interfaces/context-store.interface.js.map +1 -0
  728. package/server/infrastructure/context/services/context-manager.service.js +43 -0
  729. package/server/infrastructure/context/services/context-manager.service.js.map +1 -0
  730. package/server/infrastructure/database/configuration.js +29 -0
  731. package/server/infrastructure/database/configuration.js.map +1 -0
  732. package/server/infrastructure/database/constants.js +41 -0
  733. package/server/infrastructure/database/constants.js.map +1 -0
  734. package/server/infrastructure/database/database.config.js +44 -0
  735. package/server/infrastructure/database/database.config.js.map +1 -0
  736. package/server/infrastructure/database/database.logger.js +22 -0
  737. package/server/infrastructure/database/database.logger.js.map +1 -0
  738. package/server/infrastructure/database/database.module.js +94 -0
  739. package/server/infrastructure/database/database.module.js.map +1 -0
  740. package/server/infrastructure/database/interfaces/database.interface.js +10 -0
  741. package/server/infrastructure/database/interfaces/database.interface.js.map +1 -0
  742. package/server/infrastructure/database/schema.js +40 -0
  743. package/server/infrastructure/database/schema.js.map +1 -0
  744. package/server/infrastructure/database/scripts/create-user.js +97 -0
  745. package/server/infrastructure/database/scripts/create-user.js.map +1 -0
  746. package/server/infrastructure/database/scripts/db.js +68 -0
  747. package/server/infrastructure/database/scripts/db.js.map +1 -0
  748. package/server/infrastructure/database/scripts/seed/main.js +18 -0
  749. package/server/infrastructure/database/scripts/seed/main.js.map +1 -0
  750. package/server/infrastructure/database/scripts/seed/usersgroups.js +92 -0
  751. package/server/infrastructure/database/scripts/seed/usersgroups.js.map +1 -0
  752. package/server/infrastructure/database/utils.js +117 -0
  753. package/server/infrastructure/database/utils.js.map +1 -0
  754. package/server/infrastructure/mailer/interfaces/mail.interface.js +10 -0
  755. package/server/infrastructure/mailer/interfaces/mail.interface.js.map +1 -0
  756. package/server/infrastructure/mailer/mailer.config.js +94 -0
  757. package/server/infrastructure/mailer/mailer.config.js.map +1 -0
  758. package/server/infrastructure/mailer/mailer.module.js +37 -0
  759. package/server/infrastructure/mailer/mailer.module.js.map +1 -0
  760. package/server/infrastructure/mailer/mailer.service.js +93 -0
  761. package/server/infrastructure/mailer/mailer.service.js.map +1 -0
  762. package/server/infrastructure/scheduler/scheduler.constants.js +30 -0
  763. package/server/infrastructure/scheduler/scheduler.constants.js.map +1 -0
  764. package/server/infrastructure/scheduler/scheduler.module.js +52 -0
  765. package/server/infrastructure/scheduler/scheduler.module.js.map +1 -0
  766. package/server/infrastructure/websocket/adapters/cluster.adapter.js +40 -0
  767. package/server/infrastructure/websocket/adapters/cluster.adapter.js.map +1 -0
  768. package/server/infrastructure/websocket/adapters/redis.adapter.js +61 -0
  769. package/server/infrastructure/websocket/adapters/redis.adapter.js.map +1 -0
  770. package/server/infrastructure/websocket/adapters/web-socket.adapter.js +127 -0
  771. package/server/infrastructure/websocket/adapters/web-socket.adapter.js.map +1 -0
  772. package/server/infrastructure/websocket/decorators/web-socket-user.decorator.js +20 -0
  773. package/server/infrastructure/websocket/decorators/web-socket-user.decorator.js.map +1 -0
  774. package/server/infrastructure/websocket/interfaces/auth-socket-io.interface.js +10 -0
  775. package/server/infrastructure/websocket/interfaces/auth-socket-io.interface.js.map +1 -0
  776. package/server/infrastructure/websocket/utils.js +23 -0
  777. package/server/infrastructure/websocket/utils.js.map +1 -0
  778. package/server/infrastructure/websocket/web-socket.config.js +54 -0
  779. package/server/infrastructure/websocket/web-socket.config.js.map +1 -0
  780. package/server/main.js +27 -0
  781. package/server/main.js.map +1 -0
  782. package/static/3rdpartylicenses.txt +1522 -0
  783. package/static/assets/avatar.svg +7 -0
  784. package/static/assets/codemirror/mode/apl/apl.js +174 -0
  785. package/static/assets/codemirror/mode/asciiarmor/asciiarmor.js +74 -0
  786. package/static/assets/codemirror/mode/asn.1/asn.1.js +204 -0
  787. package/static/assets/codemirror/mode/asterisk/asterisk.js +220 -0
  788. package/static/assets/codemirror/mode/brainfuck/brainfuck.js +85 -0
  789. package/static/assets/codemirror/mode/clike/clike.js +942 -0
  790. package/static/assets/codemirror/mode/clojure/clojure.js +293 -0
  791. package/static/assets/codemirror/mode/cmake/cmake.js +97 -0
  792. package/static/assets/codemirror/mode/cobol/cobol.js +255 -0
  793. package/static/assets/codemirror/mode/coffeescript/coffeescript.js +359 -0
  794. package/static/assets/codemirror/mode/commonlisp/commonlisp.js +125 -0
  795. package/static/assets/codemirror/mode/crystal/crystal.js +433 -0
  796. package/static/assets/codemirror/mode/css/css.js +862 -0
  797. package/static/assets/codemirror/mode/cypher/cypher.js +152 -0
  798. package/static/assets/codemirror/mode/d/d.js +223 -0
  799. package/static/assets/codemirror/mode/dart/dart.js +168 -0
  800. package/static/assets/codemirror/mode/diff/diff.js +47 -0
  801. package/static/assets/codemirror/mode/django/django.js +356 -0
  802. package/static/assets/codemirror/mode/dockerfile/dockerfile.js +211 -0
  803. package/static/assets/codemirror/mode/dtd/dtd.js +142 -0
  804. package/static/assets/codemirror/mode/dylan/dylan.js +352 -0
  805. package/static/assets/codemirror/mode/ebnf/ebnf.js +195 -0
  806. package/static/assets/codemirror/mode/ecl/ecl.js +206 -0
  807. package/static/assets/codemirror/mode/eiffel/eiffel.js +160 -0
  808. package/static/assets/codemirror/mode/elm/elm.js +245 -0
  809. package/static/assets/codemirror/mode/erlang/erlang.js +619 -0
  810. package/static/assets/codemirror/mode/factor/factor.js +85 -0
  811. package/static/assets/codemirror/mode/fcl/fcl.js +173 -0
  812. package/static/assets/codemirror/mode/forth/forth.js +180 -0
  813. package/static/assets/codemirror/mode/fortran/fortran.js +188 -0
  814. package/static/assets/codemirror/mode/gas/gas.js +353 -0
  815. package/static/assets/codemirror/mode/gfm/gfm.js +129 -0
  816. package/static/assets/codemirror/mode/gherkin/gherkin.js +194 -0
  817. package/static/assets/codemirror/mode/go/go.js +187 -0
  818. package/static/assets/codemirror/mode/groovy/groovy.js +245 -0
  819. package/static/assets/codemirror/mode/haml/haml.js +161 -0
  820. package/static/assets/codemirror/mode/handlebars/handlebars.js +70 -0
  821. package/static/assets/codemirror/mode/haskell/haskell.js +268 -0
  822. package/static/assets/codemirror/mode/haskell-literate/haskell-literate.js +43 -0
  823. package/static/assets/codemirror/mode/haxe/haxe.js +515 -0
  824. package/static/assets/codemirror/mode/htmlembedded/htmlembedded.js +37 -0
  825. package/static/assets/codemirror/mode/htmlmixed/htmlmixed.js +153 -0
  826. package/static/assets/codemirror/mode/http/http.js +113 -0
  827. package/static/assets/codemirror/mode/idl/idl.js +290 -0
  828. package/static/assets/codemirror/mode/javascript/javascript.js +960 -0
  829. package/static/assets/codemirror/mode/jinja2/jinja2.js +193 -0
  830. package/static/assets/codemirror/mode/jsx/jsx.js +149 -0
  831. package/static/assets/codemirror/mode/julia/julia.js +390 -0
  832. package/static/assets/codemirror/mode/livescript/livescript.js +280 -0
  833. package/static/assets/codemirror/mode/lua/lua.js +160 -0
  834. package/static/assets/codemirror/mode/markdown/markdown.js +886 -0
  835. package/static/assets/codemirror/mode/mathematica/mathematica.js +176 -0
  836. package/static/assets/codemirror/mode/mbox/mbox.js +129 -0
  837. package/static/assets/codemirror/mode/meta.js +221 -0
  838. package/static/assets/codemirror/mode/mirc/mirc.js +193 -0
  839. package/static/assets/codemirror/mode/mllike/mllike.js +359 -0
  840. package/static/assets/codemirror/mode/modelica/modelica.js +245 -0
  841. package/static/assets/codemirror/mode/mscgen/mscgen.js +175 -0
  842. package/static/assets/codemirror/mode/mumps/mumps.js +148 -0
  843. package/static/assets/codemirror/mode/nginx/nginx.js +178 -0
  844. package/static/assets/codemirror/mode/nsis/nsis.js +95 -0
  845. package/static/assets/codemirror/mode/ntriples/ntriples.js +195 -0
  846. package/static/assets/codemirror/mode/octave/octave.js +139 -0
  847. package/static/assets/codemirror/mode/oz/oz.js +252 -0
  848. package/static/assets/codemirror/mode/pascal/pascal.js +136 -0
  849. package/static/assets/codemirror/mode/pegjs/pegjs.js +111 -0
  850. package/static/assets/codemirror/mode/perl/perl.js +836 -0
  851. package/static/assets/codemirror/mode/php/php.js +234 -0
  852. package/static/assets/codemirror/mode/pig/pig.js +178 -0
  853. package/static/assets/codemirror/mode/powershell/powershell.js +398 -0
  854. package/static/assets/codemirror/mode/properties/properties.js +78 -0
  855. package/static/assets/codemirror/mode/protobuf/protobuf.js +72 -0
  856. package/static/assets/codemirror/mode/pug/pug.js +591 -0
  857. package/static/assets/codemirror/mode/puppet/puppet.js +220 -0
  858. package/static/assets/codemirror/mode/python/python.js +402 -0
  859. package/static/assets/codemirror/mode/q/q.js +139 -0
  860. package/static/assets/codemirror/mode/r/r.js +190 -0
  861. package/static/assets/codemirror/mode/rpm/changes/index.html +66 -0
  862. package/static/assets/codemirror/mode/rpm/rpm.js +109 -0
  863. package/static/assets/codemirror/mode/rst/rst.js +557 -0
  864. package/static/assets/codemirror/mode/ruby/ruby.js +303 -0
  865. package/static/assets/codemirror/mode/rust/rust.js +72 -0
  866. package/static/assets/codemirror/mode/sas/sas.js +303 -0
  867. package/static/assets/codemirror/mode/sass/sass.js +459 -0
  868. package/static/assets/codemirror/mode/scheme/scheme.js +284 -0
  869. package/static/assets/codemirror/mode/shell/shell.js +168 -0
  870. package/static/assets/codemirror/mode/sieve/sieve.js +193 -0
  871. package/static/assets/codemirror/mode/slim/slim.js +575 -0
  872. package/static/assets/codemirror/mode/smalltalk/smalltalk.js +168 -0
  873. package/static/assets/codemirror/mode/smarty/smarty.js +225 -0
  874. package/static/assets/codemirror/mode/solr/solr.js +104 -0
  875. package/static/assets/codemirror/mode/soy/soy.js +665 -0
  876. package/static/assets/codemirror/mode/sparql/sparql.js +184 -0
  877. package/static/assets/codemirror/mode/spreadsheet/spreadsheet.js +112 -0
  878. package/static/assets/codemirror/mode/sql/sql.js +529 -0
  879. package/static/assets/codemirror/mode/stex/stex.js +264 -0
  880. package/static/assets/codemirror/mode/stylus/stylus.js +775 -0
  881. package/static/assets/codemirror/mode/swift/swift.js +221 -0
  882. package/static/assets/codemirror/mode/tcl/tcl.js +140 -0
  883. package/static/assets/codemirror/mode/textile/textile.js +469 -0
  884. package/static/assets/codemirror/mode/tiddlywiki/tiddlywiki.css +14 -0
  885. package/static/assets/codemirror/mode/tiddlywiki/tiddlywiki.js +308 -0
  886. package/static/assets/codemirror/mode/tiki/tiki.css +26 -0
  887. package/static/assets/codemirror/mode/tiki/tiki.js +312 -0
  888. package/static/assets/codemirror/mode/toml/toml.js +88 -0
  889. package/static/assets/codemirror/mode/tornado/tornado.js +68 -0
  890. package/static/assets/codemirror/mode/troff/troff.js +84 -0
  891. package/static/assets/codemirror/mode/ttcn/ttcn.js +283 -0
  892. package/static/assets/codemirror/mode/ttcn-cfg/ttcn-cfg.js +214 -0
  893. package/static/assets/codemirror/mode/turtle/turtle.js +162 -0
  894. package/static/assets/codemirror/mode/twig/twig.js +141 -0
  895. package/static/assets/codemirror/mode/vb/vb.js +275 -0
  896. package/static/assets/codemirror/mode/vbscript/vbscript.js +350 -0
  897. package/static/assets/codemirror/mode/velocity/velocity.js +202 -0
  898. package/static/assets/codemirror/mode/verilog/verilog.js +781 -0
  899. package/static/assets/codemirror/mode/vhdl/vhdl.js +189 -0
  900. package/static/assets/codemirror/mode/vue/vue.js +77 -0
  901. package/static/assets/codemirror/mode/wast/wast.js +132 -0
  902. package/static/assets/codemirror/mode/webidl/webidl.js +195 -0
  903. package/static/assets/codemirror/mode/xml/xml.js +417 -0
  904. package/static/assets/codemirror/mode/xquery/xquery.js +448 -0
  905. package/static/assets/codemirror/mode/yacas/yacas.js +204 -0
  906. package/static/assets/codemirror/mode/yaml/yaml.js +120 -0
  907. package/static/assets/codemirror/mode/yaml-frontmatter/yaml-frontmatter.js +72 -0
  908. package/static/assets/codemirror/mode/z80/z80.js +116 -0
  909. package/static/assets/favicon.svg +25 -0
  910. package/static/assets/logo-dark.svg +32 -0
  911. package/static/assets/logo.svg +32 -0
  912. package/static/assets/mimes/7zip.svg +14 -0
  913. package/static/assets/mimes/application-7zip.svg +14 -0
  914. package/static/assets/mimes/application-atom+xml.svg +15 -0
  915. package/static/assets/mimes/application-atom.svg +15 -0
  916. package/static/assets/mimes/application-certificate.svg +28 -0
  917. package/static/assets/mimes/application-epub+zip.svg +10 -0
  918. package/static/assets/mimes/application-gzip.svg +16 -0
  919. package/static/assets/mimes/application-javascript.svg +6 -0
  920. package/static/assets/mimes/application-json.svg +11 -0
  921. package/static/assets/mimes/application-mathml+xml.svg +188 -0
  922. package/static/assets/mimes/application-mp4.svg +18 -0
  923. package/static/assets/mimes/application-msexcel.svg +1 -0
  924. package/static/assets/mimes/application-msword-template.svg +1 -0
  925. package/static/assets/mimes/application-msword.svg +1 -0
  926. package/static/assets/mimes/application-octet-stream.svg +273 -0
  927. package/static/assets/mimes/application-pdf.svg +13 -0
  928. package/static/assets/mimes/application-pgp-encrypted.svg +16 -0
  929. package/static/assets/mimes/application-pgp-keys.svg +16 -0
  930. package/static/assets/mimes/application-pgp-signature.svg +16 -0
  931. package/static/assets/mimes/application-pgp.svg +16 -0
  932. package/static/assets/mimes/application-postscript.svg +57 -0
  933. package/static/assets/mimes/application-powerpoint.svg +1 -0
  934. package/static/assets/mimes/application-rdf+xml.svg +14 -0
  935. package/static/assets/mimes/application-rss+xml.svg +15 -0
  936. package/static/assets/mimes/application-rtf.svg +14 -0
  937. package/static/assets/mimes/application-script-blank.svg +15 -0
  938. package/static/assets/mimes/application-sql.svg +1 -0
  939. package/static/assets/mimes/application-text.svg +14 -0
  940. package/static/assets/mimes/application-vnd.android.package-archive.svg +16 -0
  941. package/static/assets/mimes/application-vnd.apple.keynote.svg +16 -0
  942. package/static/assets/mimes/application-vnd.apple.numbers.svg +16 -0
  943. package/static/assets/mimes/application-vnd.apple.pages.svg +16 -0
  944. package/static/assets/mimes/application-vnd.ms-excel.sheet.binary.macroenabled.12.svg +1 -0
  945. package/static/assets/mimes/application-vnd.ms-excel.sheet.macroenabled.12.svg +1 -0
  946. package/static/assets/mimes/application-vnd.ms-excel.svg +1 -0
  947. package/static/assets/mimes/application-vnd.ms-excel.template.macroenabled.12.svg +1 -0
  948. package/static/assets/mimes/application-vnd.ms-powerpoint.presentation.macroenabled.12.svg +1 -0
  949. package/static/assets/mimes/application-vnd.ms-powerpoint.svg +1 -0
  950. package/static/assets/mimes/application-vnd.ms-powerpoint.template.macroenabled.12.svg +1 -0
  951. package/static/assets/mimes/application-vnd.ms-word.document.macroenabled.12.svg +1 -0
  952. package/static/assets/mimes/application-vnd.ms-word.svg +1 -0
  953. package/static/assets/mimes/application-vnd.ms-word.template.macroenabled.12.svg +1 -0
  954. package/static/assets/mimes/application-vnd.mspowerpoint.svg +1 -0
  955. package/static/assets/mimes/application-vnd.oasis.opendocument.chart.svg +1 -0
  956. package/static/assets/mimes/application-vnd.oasis.opendocument.database.svg +155 -0
  957. package/static/assets/mimes/application-vnd.oasis.opendocument.formula-template.svg +263 -0
  958. package/static/assets/mimes/application-vnd.oasis.opendocument.formula.svg +188 -0
  959. package/static/assets/mimes/application-vnd.oasis.opendocument.graphics-template.svg +530 -0
  960. package/static/assets/mimes/application-vnd.oasis.opendocument.graphics.svg +89 -0
  961. package/static/assets/mimes/application-vnd.oasis.opendocument.presentation-template.svg +197 -0
  962. package/static/assets/mimes/application-vnd.oasis.opendocument.presentation.svg +122 -0
  963. package/static/assets/mimes/application-vnd.oasis.opendocument.spreadsheet-template.svg +452 -0
  964. package/static/assets/mimes/application-vnd.oasis.opendocument.spreadsheet.svg +266 -0
  965. package/static/assets/mimes/application-vnd.oasis.opendocument.text-master.svg +92 -0
  966. package/static/assets/mimes/application-vnd.oasis.opendocument.text-template.svg +90 -0
  967. package/static/assets/mimes/application-vnd.oasis.opendocument.text-web.svg +18 -0
  968. package/static/assets/mimes/application-vnd.oasis.opendocument.text.svg +92 -0
  969. package/static/assets/mimes/application-vnd.openofficeorg.extension.svg +59 -0
  970. package/static/assets/mimes/application-vnd.openxmlformats-officedocument.presentationml.presentation.svg +1 -0
  971. package/static/assets/mimes/application-vnd.openxmlformats-officedocument.presentationml.slideshow.svg +1 -0
  972. package/static/assets/mimes/application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.svg +1 -0
  973. package/static/assets/mimes/application-vnd.openxmlformats-officedocument.spreadsheetml.template.svg +1 -0
  974. package/static/assets/mimes/application-vnd.openxmlformats-officedocument.wordprocessingml.document.svg +1 -0
  975. package/static/assets/mimes/application-vnd.openxmlformats-officedocument.wordprocessingml.template.svg +1 -0
  976. package/static/assets/mimes/application-vnd.rn-realmedia.svg +18 -0
  977. package/static/assets/mimes/application-vnd.sun.xml.calc.svg +1 -0
  978. package/static/assets/mimes/application-vnd.sun.xml.writer-global.svg +1 -0
  979. package/static/assets/mimes/application-vnd.sun.xml.writer-template.svg +1 -0
  980. package/static/assets/mimes/application-vnd.sun.xml.writer.svg +1 -0
  981. package/static/assets/mimes/application-vnd.sun.xml.writer.template.svg +14 -0
  982. package/static/assets/mimes/application-vnd.visio.svg +26 -0
  983. package/static/assets/mimes/application-wps-office.doc.svg +1 -0
  984. package/static/assets/mimes/application-wps-office.docx.svg +1 -0
  985. package/static/assets/mimes/application-wps-office.ppt.svg +1 -0
  986. package/static/assets/mimes/application-wps-office.pptx.svg +1 -0
  987. package/static/assets/mimes/application-wps-office.xls.svg +1 -0
  988. package/static/assets/mimes/application-wps-office.xlsx.svg +1 -0
  989. package/static/assets/mimes/application-x-7z-compressed.svg +14 -0
  990. package/static/assets/mimes/application-x-7zip.svg +14 -0
  991. package/static/assets/mimes/application-x-ace.svg +14 -0
  992. package/static/assets/mimes/application-x-addon.svg +59 -0
  993. package/static/assets/mimes/application-x-apple-diskimage.svg +1 -0
  994. package/static/assets/mimes/application-x-ar.svg +16 -0
  995. package/static/assets/mimes/application-x-arc.svg +14 -0
  996. package/static/assets/mimes/application-x-archive.svg +16 -0
  997. package/static/assets/mimes/application-x-arj.svg +14 -0
  998. package/static/assets/mimes/application-x-audacity-project.svg +24 -0
  999. package/static/assets/mimes/application-x-bittorrent.svg +53 -0
  1000. package/static/assets/mimes/application-x-blender.svg +353 -0
  1001. package/static/assets/mimes/application-x-bzdvi.svg +14 -0
  1002. package/static/assets/mimes/application-x-bzip-compressed-tar.svg +14 -0
  1003. package/static/assets/mimes/application-x-bzip.svg +16 -0
  1004. package/static/assets/mimes/application-x-cd-image.svg +292 -0
  1005. package/static/assets/mimes/application-x-cda.svg +358 -0
  1006. package/static/assets/mimes/application-x-class-file.svg +37 -0
  1007. package/static/assets/mimes/application-x-compress-tar.svg +16 -0
  1008. package/static/assets/mimes/application-x-compress.svg +16 -0
  1009. package/static/assets/mimes/application-x-compressed-tar.svg +14 -0
  1010. package/static/assets/mimes/application-x-core.svg +20 -0
  1011. package/static/assets/mimes/application-x-cpio.svg +16 -0
  1012. package/static/assets/mimes/application-x-deb.svg +14 -0
  1013. package/static/assets/mimes/application-x-designer.svg +48 -0
  1014. package/static/assets/mimes/application-x-egon.svg +12 -0
  1015. package/static/assets/mimes/application-x-executable.svg +40 -0
  1016. package/static/assets/mimes/application-x-extension-html.svg +18 -0
  1017. package/static/assets/mimes/application-x-font-afm.svg +14 -0
  1018. package/static/assets/mimes/application-x-font-snf.svg +14 -0
  1019. package/static/assets/mimes/application-x-font-speedo.svg +14 -0
  1020. package/static/assets/mimes/application-x-font-type1.svg +14 -0
  1021. package/static/assets/mimes/application-x-gettext-translation.svg +14 -0
  1022. package/static/assets/mimes/application-x-glade.svg +48 -0
  1023. package/static/assets/mimes/application-x-gnome-theme-package.svg +109 -0
  1024. package/static/assets/mimes/application-x-gzdvi.svg +16 -0
  1025. package/static/assets/mimes/application-x-gzip.svg +16 -0
  1026. package/static/assets/mimes/application-x-httpd-php.svg +18 -0
  1027. package/static/assets/mimes/application-x-iso9660-image.svg +292 -0
  1028. package/static/assets/mimes/application-x-java-archive.svg +16 -0
  1029. package/static/assets/mimes/application-x-java.svg +37 -0
  1030. package/static/assets/mimes/application-x-jokosher.svg +24 -0
  1031. package/static/assets/mimes/application-x-kcachegrind.svg +273 -0
  1032. package/static/assets/mimes/application-x-kcsrc.svg +109 -0
  1033. package/static/assets/mimes/application-x-keepass.svg +2 -0
  1034. package/static/assets/mimes/application-x-keepass2.svg +2 -0
  1035. package/static/assets/mimes/application-x-kgetlist.svg +53 -0
  1036. package/static/assets/mimes/application-x-lha.svg +14 -0
  1037. package/static/assets/mimes/application-x-lzma-compressed-tar.svg +16 -0
  1038. package/static/assets/mimes/application-x-lzop.svg +16 -0
  1039. package/static/assets/mimes/application-x-m4.svg +14 -0
  1040. package/static/assets/mimes/application-x-matroska.svg +18 -0
  1041. package/static/assets/mimes/application-x-mplayer2.svg +18 -0
  1042. package/static/assets/mimes/application-x-ms-application.svg +306 -0
  1043. package/static/assets/mimes/application-x-ms-dos-executable.svg +306 -0
  1044. package/static/assets/mimes/application-x-msdos-program.svg +306 -0
  1045. package/static/assets/mimes/application-x-msdownload.svg +306 -0
  1046. package/static/assets/mimes/application-x-msi.svg +306 -0
  1047. package/static/assets/mimes/application-x-mswinurl.svg +18 -0
  1048. package/static/assets/mimes/application-x-mswrite.svg +1 -0
  1049. package/static/assets/mimes/application-x-nzb.svg +15 -0
  1050. package/static/assets/mimes/application-x-object.svg +273 -0
  1051. package/static/assets/mimes/application-x-ole-storage.svg +273 -0
  1052. package/static/assets/mimes/application-x-pak.svg +16 -0
  1053. package/static/assets/mimes/application-x-perl.svg +15 -0
  1054. package/static/assets/mimes/application-x-php.svg +18 -0
  1055. package/static/assets/mimes/application-x-plasma.svg +20 -0
  1056. package/static/assets/mimes/application-x-python-bytecode.svg +16 -0
  1057. package/static/assets/mimes/application-x-rar.svg +14 -0
  1058. package/static/assets/mimes/application-x-rpm.svg +14 -0
  1059. package/static/assets/mimes/application-x-ruby.svg +22 -0
  1060. package/static/assets/mimes/application-x-sh.svg +17 -0
  1061. package/static/assets/mimes/application-x-shared-library-la.svg +62 -0
  1062. package/static/assets/mimes/application-x-sharedlib.svg +62 -0
  1063. package/static/assets/mimes/application-x-shellscript.svg +17 -0
  1064. package/static/assets/mimes/application-x-shockwave-flash.svg +18 -0
  1065. package/static/assets/mimes/application-x-srt.svg +210 -0
  1066. package/static/assets/mimes/application-x-subrip.svg +210 -0
  1067. package/static/assets/mimes/application-x-tar.svg +16 -0
  1068. package/static/assets/mimes/application-x-tarz.svg +14 -0
  1069. package/static/assets/mimes/application-x-tex.svg +79 -0
  1070. package/static/assets/mimes/application-x-theme.svg +109 -0
  1071. package/static/assets/mimes/application-x-trash.svg +14 -0
  1072. package/static/assets/mimes/application-x-tzo.svg +14 -0
  1073. package/static/assets/mimes/application-x-wine-extension-pdd.svg +14 -0
  1074. package/static/assets/mimes/application-x-zip.svg +14 -0
  1075. package/static/assets/mimes/application-x-zoo.svg +14 -0
  1076. package/static/assets/mimes/application-xhtml+xml.svg +18 -0
  1077. package/static/assets/mimes/application-xhtml.svg +18 -0
  1078. package/static/assets/mimes/application-xml.svg +18 -0
  1079. package/static/assets/mimes/application-xsd.svg +18 -0
  1080. package/static/assets/mimes/application-xslt+xml.svg +18 -0
  1081. package/static/assets/mimes/application-zip.svg +14 -0
  1082. package/static/assets/mimes/applications-java.svg +14 -0
  1083. package/static/assets/mimes/archive.svg +16 -0
  1084. package/static/assets/mimes/ascii.svg +14 -0
  1085. package/static/assets/mimes/audio-ac3.svg +24 -0
  1086. package/static/assets/mimes/audio-flac.svg +24 -0
  1087. package/static/assets/mimes/audio-mpeg.svg +24 -0
  1088. package/static/assets/mimes/audio-vn.rn-realmedia.svg +18 -0
  1089. package/static/assets/mimes/audio-vnd.rn-realvideo.svg +18 -0
  1090. package/static/assets/mimes/audio-x-adpcm.svg +24 -0
  1091. package/static/assets/mimes/audio-x-aiff.svg +24 -0
  1092. package/static/assets/mimes/audio-x-flac+ogg.svg +24 -0
  1093. package/static/assets/mimes/audio-x-flac.svg +24 -0
  1094. package/static/assets/mimes/audio-x-generic.svg +24 -0
  1095. package/static/assets/mimes/audio-x-it.svg +24 -0
  1096. package/static/assets/mimes/audio-x-monkey.svg +24 -0
  1097. package/static/assets/mimes/audio-x-mpegurl.svg +24 -0
  1098. package/static/assets/mimes/audio-x-wav.svg +24 -0
  1099. package/static/assets/mimes/audio-x-xi.svg +24 -0
  1100. package/static/assets/mimes/audio-x-xm.svg +24 -0
  1101. package/static/assets/mimes/binary.svg +40 -0
  1102. package/static/assets/mimes/deb.svg +14 -0
  1103. package/static/assets/mimes/directory.svg +9 -0
  1104. package/static/assets/mimes/directory_disabled.svg +9 -0
  1105. package/static/assets/mimes/directory_error.svg +9 -0
  1106. package/static/assets/mimes/directory_share.svg +9 -0
  1107. package/static/assets/mimes/directory_sync.svg +9 -0
  1108. package/static/assets/mimes/divx.svg +18 -0
  1109. package/static/assets/mimes/document.svg +14 -0
  1110. package/static/assets/mimes/emblem-package.svg +16 -0
  1111. package/static/assets/mimes/eps.svg +24 -0
  1112. package/static/assets/mimes/exec.svg +40 -0
  1113. package/static/assets/mimes/extension.svg +59 -0
  1114. package/static/assets/mimes/file.svg +12 -0
  1115. package/static/assets/mimes/folder-tar.svg +16 -0
  1116. package/static/assets/mimes/folder_tar.svg +16 -0
  1117. package/static/assets/mimes/font-otf.svg +14 -0
  1118. package/static/assets/mimes/font-x-generic.svg +14 -0
  1119. package/static/assets/mimes/font.svg +14 -0
  1120. package/static/assets/mimes/font_bitmap.svg +14 -0
  1121. package/static/assets/mimes/font_truetype.svg +14 -0
  1122. package/static/assets/mimes/font_type1.svg +14 -0
  1123. package/static/assets/mimes/fonts-package.svg +16 -0
  1124. package/static/assets/mimes/gedit-plugin.svg +59 -0
  1125. package/static/assets/mimes/gnome-exe-thumbnailer-generic-x.svg +306 -0
  1126. package/static/assets/mimes/gnome-exe-thumbnailer-generic.svg +306 -0
  1127. package/static/assets/mimes/gnome-exe-thumbnailer-template.svg +306 -0
  1128. package/static/assets/mimes/gnome-fs-executable.svg +40 -0
  1129. package/static/assets/mimes/gnome-mime-application-atom+xml.svg +15 -0
  1130. package/static/assets/mimes/gnome-mime-application-msexcel.svg +1 -0
  1131. package/static/assets/mimes/gnome-mime-application-msword.svg +1 -0
  1132. package/static/assets/mimes/gnome-mime-application-ogg.svg +24 -0
  1133. package/static/assets/mimes/gnome-mime-application-pdf.svg +13 -0
  1134. package/static/assets/mimes/gnome-mime-application-postscript.svg +14 -0
  1135. package/static/assets/mimes/gnome-mime-application-powerpoint.svg +1 -0
  1136. package/static/assets/mimes/gnome-mime-application-rss+xml.svg +15 -0
  1137. package/static/assets/mimes/gnome-mime-application-rtf.svg +14 -0
  1138. package/static/assets/mimes/gnome-mime-application-vnd.ms-excel.svg +1 -0
  1139. package/static/assets/mimes/gnome-mime-application-vnd.ms-powerpoint.svg +1 -0
  1140. package/static/assets/mimes/gnome-mime-application-vnd.ms-word.svg +1 -0
  1141. package/static/assets/mimes/gnome-mime-application-vnd.mspowerpoint.svg +1 -0
  1142. package/static/assets/mimes/gnome-mime-application-vnd.oasis.opendocument.formula.svg +188 -0
  1143. package/static/assets/mimes/gnome-mime-application-vnd.oasis.opendocument.text-web.svg +18 -0
  1144. package/static/assets/mimes/gnome-mime-application-vnd.openxmlformats-officedocument.presentationml.presentation.svg +1 -0
  1145. package/static/assets/mimes/gnome-mime-application-vnd.openxmlformats-officedocument.presentationml.slideshow.svg +1 -0
  1146. package/static/assets/mimes/gnome-mime-application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.svg +1 -0
  1147. package/static/assets/mimes/gnome-mime-application-vnd.openxmlformats-officedocument.wordprocessingml.document.svg +1 -0
  1148. package/static/assets/mimes/gnome-mime-application-vnd.rn-realmedia-secure.svg +18 -0
  1149. package/static/assets/mimes/gnome-mime-application-vnd.rn-realmedia-vbr.svg +18 -0
  1150. package/static/assets/mimes/gnome-mime-application-vnd.rn-realmedia.svg +18 -0
  1151. package/static/assets/mimes/gnome-mime-application-wps-office.doc.svg +1 -0
  1152. package/static/assets/mimes/gnome-mime-application-wps-office.docx.svg +1 -0
  1153. package/static/assets/mimes/gnome-mime-application-wps-office.ppt.svg +1 -0
  1154. package/static/assets/mimes/gnome-mime-application-wps-office.pptx.svg +1 -0
  1155. package/static/assets/mimes/gnome-mime-application-wps-office.xls.svg +1 -0
  1156. package/static/assets/mimes/gnome-mime-application-wps-office.xlsx.svg +1 -0
  1157. package/static/assets/mimes/gnome-mime-application-x-7z-compressed.svg +14 -0
  1158. package/static/assets/mimes/gnome-mime-application-x-7zip.svg +14 -0
  1159. package/static/assets/mimes/gnome-mime-application-x-archive.svg +16 -0
  1160. package/static/assets/mimes/gnome-mime-application-x-arj.svg +16 -0
  1161. package/static/assets/mimes/gnome-mime-application-x-bittorrent.svg +53 -0
  1162. package/static/assets/mimes/gnome-mime-application-x-bzip-compressed-tar.svg +16 -0
  1163. package/static/assets/mimes/gnome-mime-application-x-bzip-compressed.svg +16 -0
  1164. package/static/assets/mimes/gnome-mime-application-x-bzip.svg +16 -0
  1165. package/static/assets/mimes/gnome-mime-application-x-class-file.svg +14 -0
  1166. package/static/assets/mimes/gnome-mime-application-x-compress.svg +16 -0
  1167. package/static/assets/mimes/gnome-mime-application-x-compressed-tar.svg +16 -0
  1168. package/static/assets/mimes/gnome-mime-application-x-cpio-compressed.svg +16 -0
  1169. package/static/assets/mimes/gnome-mime-application-x-cpio.svg +16 -0
  1170. package/static/assets/mimes/gnome-mime-application-x-deb.svg +14 -0
  1171. package/static/assets/mimes/gnome-mime-application-x-designer.svg +48 -0
  1172. package/static/assets/mimes/gnome-mime-application-x-executable.svg +40 -0
  1173. package/static/assets/mimes/gnome-mime-application-x-font-afm.svg +14 -0
  1174. package/static/assets/mimes/gnome-mime-application-x-font-bdf.svg +14 -0
  1175. package/static/assets/mimes/gnome-mime-application-x-font-linux-psf.svg +14 -0
  1176. package/static/assets/mimes/gnome-mime-application-x-font-pcf.svg +14 -0
  1177. package/static/assets/mimes/gnome-mime-application-x-font-sunos-news.svg +14 -0
  1178. package/static/assets/mimes/gnome-mime-application-x-font-ttf.svg +14 -0
  1179. package/static/assets/mimes/gnome-mime-application-x-glade.svg +48 -0
  1180. package/static/assets/mimes/gnome-mime-application-x-gnome-app-info.svg +109 -0
  1181. package/static/assets/mimes/gnome-mime-application-x-gnome-theme-package.svg +109 -0
  1182. package/static/assets/mimes/gnome-mime-application-x-gzip.svg +16 -0
  1183. package/static/assets/mimes/gnome-mime-application-x-gzpostscript.svg +14 -0
  1184. package/static/assets/mimes/gnome-mime-application-x-jar.svg +16 -0
  1185. package/static/assets/mimes/gnome-mime-application-x-java.svg +14 -0
  1186. package/static/assets/mimes/gnome-mime-application-x-killustrator.svg +12 -0
  1187. package/static/assets/mimes/gnome-mime-application-x-lha.svg +16 -0
  1188. package/static/assets/mimes/gnome-mime-application-x-lhz.svg +16 -0
  1189. package/static/assets/mimes/gnome-mime-application-x-lzma-compressed-tar.svg +16 -0
  1190. package/static/assets/mimes/gnome-mime-application-x-lzma.svg +16 -0
  1191. package/static/assets/mimes/gnome-mime-application-x-ms-dos-executable.svg +306 -0
  1192. package/static/assets/mimes/gnome-mime-application-x-perl.svg +15 -0
  1193. package/static/assets/mimes/gnome-mime-application-x-php.svg +18 -0
  1194. package/static/assets/mimes/gnome-mime-application-x-python-bytecode.svg +16 -0
  1195. package/static/assets/mimes/gnome-mime-application-x-rar.svg +14 -0
  1196. package/static/assets/mimes/gnome-mime-application-x-rpm.svg +14 -0
  1197. package/static/assets/mimes/gnome-mime-application-x-ruby.svg +22 -0
  1198. package/static/assets/mimes/gnome-mime-application-x-shellscript.svg +17 -0
  1199. package/static/assets/mimes/gnome-mime-application-x-shockwave-flash.svg +18 -0
  1200. package/static/assets/mimes/gnome-mime-application-x-stuffit.svg +16 -0
  1201. package/static/assets/mimes/gnome-mime-application-x-tar.svg +16 -0
  1202. package/static/assets/mimes/gnome-mime-application-x-tarz.svg +16 -0
  1203. package/static/assets/mimes/gnome-mime-application-x-tex.svg +79 -0
  1204. package/static/assets/mimes/gnome-mime-application-x-theme.svg +109 -0
  1205. package/static/assets/mimes/gnome-mime-application-x-zip.svg +14 -0
  1206. package/static/assets/mimes/gnome-mime-application-xhtml+xml.svg +18 -0
  1207. package/static/assets/mimes/gnome-mime-application-xml.svg +18 -0
  1208. package/static/assets/mimes/gnome-mime-application-zip.svg +14 -0
  1209. package/static/assets/mimes/gnome-mime-application.svg +40 -0
  1210. package/static/assets/mimes/gnome-mime-audio.svg +24 -0
  1211. package/static/assets/mimes/gnome-mime-image-vnd.adobe.photoshop.svg +14 -0
  1212. package/static/assets/mimes/gnome-mime-image-x-cmu-raster.svg +12 -0
  1213. package/static/assets/mimes/gnome-mime-image-x-killustrator.svg +12 -0
  1214. package/static/assets/mimes/gnome-mime-image-x-psd.svg +14 -0
  1215. package/static/assets/mimes/gnome-mime-image-x-xpixmap.svg +12 -0
  1216. package/static/assets/mimes/gnome-mime-image.svg +12 -0
  1217. package/static/assets/mimes/gnome-mime-text-html.svg +18 -0
  1218. package/static/assets/mimes/gnome-mime-text-install.svg +20 -0
  1219. package/static/assets/mimes/gnome-mime-text-plain.svg +14 -0
  1220. package/static/assets/mimes/gnome-mime-text-vnd.wap.wml.svg +18 -0
  1221. package/static/assets/mimes/gnome-mime-text-x-changelog.svg +208 -0
  1222. package/static/assets/mimes/gnome-mime-text-x-copying.svg +17 -0
  1223. package/static/assets/mimes/gnome-mime-text-x-csh.svg +17 -0
  1224. package/static/assets/mimes/gnome-mime-text-x-gtkrc.svg +109 -0
  1225. package/static/assets/mimes/gnome-mime-text-x-install.svg +17 -0
  1226. package/static/assets/mimes/gnome-mime-text-x-java-source.svg +14 -0
  1227. package/static/assets/mimes/gnome-mime-text-x-java.svg +14 -0
  1228. package/static/assets/mimes/gnome-mime-text-x-makefile.svg +176 -0
  1229. package/static/assets/mimes/gnome-mime-text-x-opml+xml.svg +15 -0
  1230. package/static/assets/mimes/gnome-mime-text-x-opml.svg +15 -0
  1231. package/static/assets/mimes/gnome-mime-text-x-python.svg +16 -0
  1232. package/static/assets/mimes/gnome-mime-text-x-readme.svg +15 -0
  1233. package/static/assets/mimes/gnome-mime-text-x-sh.svg +17 -0
  1234. package/static/assets/mimes/gnome-mime-text-x-zsh.svg +17 -0
  1235. package/static/assets/mimes/gnome-mime-text.svg +14 -0
  1236. package/static/assets/mimes/gnome-mime-video-x-ms-asf.svg +18 -0
  1237. package/static/assets/mimes/gnome-mime-video-x-ms-wmv.svg +18 -0
  1238. package/static/assets/mimes/gnome-mime-video.svg +18 -0
  1239. package/static/assets/mimes/gnome-mime-x-font-afm.svg +14 -0
  1240. package/static/assets/mimes/gnome-mime-x-install.svg +20 -0
  1241. package/static/assets/mimes/gnome-package.svg +16 -0
  1242. package/static/assets/mimes/html.svg +18 -0
  1243. package/static/assets/mimes/image-gif.svg +12 -0
  1244. package/static/assets/mimes/image-jpeg.svg +12 -0
  1245. package/static/assets/mimes/image-png.svg +12 -0
  1246. package/static/assets/mimes/image-svg+xml-compressed.svg +12 -0
  1247. package/static/assets/mimes/image-svg+xml.svg +12 -0
  1248. package/static/assets/mimes/image-svg.svg +12 -0
  1249. package/static/assets/mimes/image-vnd.adobe.photoshop.svg +14 -0
  1250. package/static/assets/mimes/image-vnd.microsoft.icon.svg +12 -0
  1251. package/static/assets/mimes/image-x-eps.svg +24 -0
  1252. package/static/assets/mimes/image-x-generic.svg +12 -0
  1253. package/static/assets/mimes/image-x-psd.svg +14 -0
  1254. package/static/assets/mimes/image-x-psdimage-x-psd.svg +14 -0
  1255. package/static/assets/mimes/image-x-xcf.svg +21 -0
  1256. package/static/assets/mimes/image-x-xfig.svg +12 -0
  1257. package/static/assets/mimes/image.svg +12 -0
  1258. package/static/assets/mimes/internet-feed.svg +15 -0
  1259. package/static/assets/mimes/libpeas-plugin.svg +59 -0
  1260. package/static/assets/mimes/libreoffice-database.svg +155 -0
  1261. package/static/assets/mimes/libreoffice-extension.svg +59 -0
  1262. package/static/assets/mimes/libreoffice-extensionn.svg +59 -0
  1263. package/static/assets/mimes/libreoffice-formula.svg +188 -0
  1264. package/static/assets/mimes/libreoffice-oasis-formula.svg +188 -0
  1265. package/static/assets/mimes/libreoffice34-extension.svg +59 -0
  1266. package/static/assets/mimes/media-audio.svg +24 -0
  1267. package/static/assets/mimes/media-video.svg +18 -0
  1268. package/static/assets/mimes/mime-ascii.svg +14 -0
  1269. package/static/assets/mimes/mime_ascii.svg +14 -0
  1270. package/static/assets/mimes/misc.svg +14 -0
  1271. package/static/assets/mimes/multipart-encrypted.svg +273 -0
  1272. package/static/assets/mimes/music.svg +24 -0
  1273. package/static/assets/mimes/none.svg +110 -0
  1274. package/static/assets/mimes/old-file.svg +22 -0
  1275. package/static/assets/mimes/openofficeorg3-extension.svg +59 -0
  1276. package/static/assets/mimes/package-x-generic.svg +16 -0
  1277. package/static/assets/mimes/package.svg +16 -0
  1278. package/static/assets/mimes/package_editors.svg +14 -0
  1279. package/static/assets/mimes/packages-gdebi.svg +14 -0
  1280. package/static/assets/mimes/pdf.svg +13 -0
  1281. package/static/assets/mimes/preferences-certificate.svg +28 -0
  1282. package/static/assets/mimes/preferences-plugin.svg +59 -0
  1283. package/static/assets/mimes/rar.svg +14 -0
  1284. package/static/assets/mimes/raw.svg +12 -0
  1285. package/static/assets/mimes/rpm.svg +14 -0
  1286. package/static/assets/mimes/scii.svg +14 -0
  1287. package/static/assets/mimes/shellscript.svg +17 -0
  1288. package/static/assets/mimes/sound.svg +24 -0
  1289. package/static/assets/mimes/stock_certificate.svg +28 -0
  1290. package/static/assets/mimes/stock_new-formula.svg +188 -0
  1291. package/static/assets/mimes/stock_new-html.svg +18 -0
  1292. package/static/assets/mimes/stock_script.svg +17 -0
  1293. package/static/assets/mimes/stock_scripts.svg +17 -0
  1294. package/static/assets/mimes/tar.svg +16 -0
  1295. package/static/assets/mimes/text-css.svg +18 -0
  1296. package/static/assets/mimes/text-enriched.svg +14 -0
  1297. package/static/assets/mimes/text-html.svg +18 -0
  1298. package/static/assets/mimes/text-htmlh.svg +18 -0
  1299. package/static/assets/mimes/text-javascript.svg +6 -0
  1300. package/static/assets/mimes/text-markdown.svg +26 -0
  1301. package/static/assets/mimes/text-mht.svg +18 -0
  1302. package/static/assets/mimes/text-plain.svg +14 -0
  1303. package/static/assets/mimes/text-richtext.svg +14 -0
  1304. package/static/assets/mimes/text-typescript.svg +1 -0
  1305. package/static/assets/mimes/text-x-bak.svg +14 -0
  1306. package/static/assets/mimes/text-x-bibtex.svg +79 -0
  1307. package/static/assets/mimes/text-x-changelog.svg +208 -0
  1308. package/static/assets/mimes/text-x-copying.svg +17 -0
  1309. package/static/assets/mimes/text-x-generic.svg +14 -0
  1310. package/static/assets/mimes/text-x-gtkrc.svg +109 -0
  1311. package/static/assets/mimes/text-x-install.svg +20 -0
  1312. package/static/assets/mimes/text-x-java-source.svg +14 -0
  1313. package/static/assets/mimes/text-x-java.svg +14 -0
  1314. package/static/assets/mimes/text-x-log.svg +1135 -0
  1315. package/static/assets/mimes/text-x-lua.svg +14 -0
  1316. package/static/assets/mimes/text-x-makefile.svg +176 -0
  1317. package/static/assets/mimes/text-x-microdvd.svg +210 -0
  1318. package/static/assets/mimes/text-x-nfo.svg +14 -0
  1319. package/static/assets/mimes/text-x-opml+xml.svg +15 -0
  1320. package/static/assets/mimes/text-x-opml.svg +15 -0
  1321. package/static/assets/mimes/text-x-patch.svg +19 -0
  1322. package/static/assets/mimes/text-x-perl.svg +15 -0
  1323. package/static/assets/mimes/text-x-python.svg +16 -0
  1324. package/static/assets/mimes/text-x-readme.svg +15 -0
  1325. package/static/assets/mimes/text-x-ruby.svg +22 -0
  1326. package/static/assets/mimes/text-x-script.svg +17 -0
  1327. package/static/assets/mimes/text-x-tex.svg +79 -0
  1328. package/static/assets/mimes/text-x-vala.svg +14 -0
  1329. package/static/assets/mimes/text-x.svg +14 -0
  1330. package/static/assets/mimes/text-xmcd.svg +358 -0
  1331. package/static/assets/mimes/text-xml.svg +18 -0
  1332. package/static/assets/mimes/text-yaml.svg +1 -0
  1333. package/static/assets/mimes/text.svg +14 -0
  1334. package/static/assets/mimes/text2.svg +14 -0
  1335. package/static/assets/mimes/tgz.svg +16 -0
  1336. package/static/assets/mimes/txt.svg +14 -0
  1337. package/static/assets/mimes/txt2.svg +14 -0
  1338. package/static/assets/mimes/unknown.svg +110 -0
  1339. package/static/assets/mimes/uri-mms.svg +18 -0
  1340. package/static/assets/mimes/uri-mmst.svg +18 -0
  1341. package/static/assets/mimes/uri-mmsu.svg +18 -0
  1342. package/static/assets/mimes/uri-pnm.svg +18 -0
  1343. package/static/assets/mimes/uri-rtspt.svg +18 -0
  1344. package/static/assets/mimes/uri-rtspu.svg +18 -0
  1345. package/static/assets/mimes/video-quicktime.svg +18 -0
  1346. package/static/assets/mimes/video-vivo.svg +18 -0
  1347. package/static/assets/mimes/video-wavelet.svg +18 -0
  1348. package/static/assets/mimes/video-webm.svg +18 -0
  1349. package/static/assets/mimes/video-x-anim.svg +18 -0
  1350. package/static/assets/mimes/video-x-flic.svg +18 -0
  1351. package/static/assets/mimes/video-x-generic.svg +18 -0
  1352. package/static/assets/mimes/video-x-google-vlc-plugin.svg +18 -0
  1353. package/static/assets/mimes/video-x-javafx.svg +18 -0
  1354. package/static/assets/mimes/video-x-matroska.svg +18 -0
  1355. package/static/assets/mimes/video-x-mng.svg +18 -0
  1356. package/static/assets/mimes/video-x-ms-asf-plugin.svg +18 -0
  1357. package/static/assets/mimes/video-x-ms-asf.svg +18 -0
  1358. package/static/assets/mimes/video-x-ms-wmp.svg +18 -0
  1359. package/static/assets/mimes/video-x-ms-wmv.svg +18 -0
  1360. package/static/assets/mimes/video-x-nsv.svg +18 -0
  1361. package/static/assets/mimes/video-x-sgi-movie.svg +18 -0
  1362. package/static/assets/mimes/video-x-theora+ogg.svg +18 -0
  1363. package/static/assets/mimes/video-x-wmv.svg +18 -0
  1364. package/static/assets/mimes/video.svg +18 -0
  1365. package/static/assets/mimes/www.svg +18 -0
  1366. package/static/assets/mimes/x-kde-nsplugin-generated.svg +59 -0
  1367. package/static/assets/mimes/zip.svg +14 -0
  1368. package/static/assets/pdfjs/LICENSE +177 -0
  1369. package/static/assets/pdfjs/build/pdf.mjs +23371 -0
  1370. package/static/assets/pdfjs/build/pdf.mjs.map +1 -0
  1371. package/static/assets/pdfjs/build/pdf.sandbox.mjs +218 -0
  1372. package/static/assets/pdfjs/build/pdf.sandbox.mjs.map +1 -0
  1373. package/static/assets/pdfjs/build/pdf.worker.mjs +58148 -0
  1374. package/static/assets/pdfjs/build/pdf.worker.mjs.map +1 -0
  1375. package/static/assets/pdfjs/version +1 -0
  1376. package/static/assets/pdfjs/web/cmaps/78-EUC-H.bcmap +0 -0
  1377. package/static/assets/pdfjs/web/cmaps/78-EUC-V.bcmap +0 -0
  1378. package/static/assets/pdfjs/web/cmaps/78-H.bcmap +0 -0
  1379. package/static/assets/pdfjs/web/cmaps/78-RKSJ-H.bcmap +0 -0
  1380. package/static/assets/pdfjs/web/cmaps/78-RKSJ-V.bcmap +0 -0
  1381. package/static/assets/pdfjs/web/cmaps/78-V.bcmap +0 -0
  1382. package/static/assets/pdfjs/web/cmaps/78ms-RKSJ-H.bcmap +0 -0
  1383. package/static/assets/pdfjs/web/cmaps/78ms-RKSJ-V.bcmap +0 -0
  1384. package/static/assets/pdfjs/web/cmaps/83pv-RKSJ-H.bcmap +0 -0
  1385. package/static/assets/pdfjs/web/cmaps/90ms-RKSJ-H.bcmap +0 -0
  1386. package/static/assets/pdfjs/web/cmaps/90ms-RKSJ-V.bcmap +0 -0
  1387. package/static/assets/pdfjs/web/cmaps/90msp-RKSJ-H.bcmap +0 -0
  1388. package/static/assets/pdfjs/web/cmaps/90msp-RKSJ-V.bcmap +0 -0
  1389. package/static/assets/pdfjs/web/cmaps/90pv-RKSJ-H.bcmap +0 -0
  1390. package/static/assets/pdfjs/web/cmaps/90pv-RKSJ-V.bcmap +0 -0
  1391. package/static/assets/pdfjs/web/cmaps/Add-H.bcmap +0 -0
  1392. package/static/assets/pdfjs/web/cmaps/Add-RKSJ-H.bcmap +0 -0
  1393. package/static/assets/pdfjs/web/cmaps/Add-RKSJ-V.bcmap +0 -0
  1394. package/static/assets/pdfjs/web/cmaps/Add-V.bcmap +0 -0
  1395. package/static/assets/pdfjs/web/cmaps/Adobe-CNS1-0.bcmap +0 -0
  1396. package/static/assets/pdfjs/web/cmaps/Adobe-CNS1-1.bcmap +0 -0
  1397. package/static/assets/pdfjs/web/cmaps/Adobe-CNS1-2.bcmap +0 -0
  1398. package/static/assets/pdfjs/web/cmaps/Adobe-CNS1-3.bcmap +0 -0
  1399. package/static/assets/pdfjs/web/cmaps/Adobe-CNS1-4.bcmap +0 -0
  1400. package/static/assets/pdfjs/web/cmaps/Adobe-CNS1-5.bcmap +0 -0
  1401. package/static/assets/pdfjs/web/cmaps/Adobe-CNS1-6.bcmap +0 -0
  1402. package/static/assets/pdfjs/web/cmaps/Adobe-CNS1-UCS2.bcmap +0 -0
  1403. package/static/assets/pdfjs/web/cmaps/Adobe-GB1-0.bcmap +0 -0
  1404. package/static/assets/pdfjs/web/cmaps/Adobe-GB1-1.bcmap +0 -0
  1405. package/static/assets/pdfjs/web/cmaps/Adobe-GB1-2.bcmap +0 -0
  1406. package/static/assets/pdfjs/web/cmaps/Adobe-GB1-3.bcmap +0 -0
  1407. package/static/assets/pdfjs/web/cmaps/Adobe-GB1-4.bcmap +0 -0
  1408. package/static/assets/pdfjs/web/cmaps/Adobe-GB1-5.bcmap +0 -0
  1409. package/static/assets/pdfjs/web/cmaps/Adobe-GB1-UCS2.bcmap +0 -0
  1410. package/static/assets/pdfjs/web/cmaps/Adobe-Japan1-0.bcmap +0 -0
  1411. package/static/assets/pdfjs/web/cmaps/Adobe-Japan1-1.bcmap +0 -0
  1412. package/static/assets/pdfjs/web/cmaps/Adobe-Japan1-2.bcmap +0 -0
  1413. package/static/assets/pdfjs/web/cmaps/Adobe-Japan1-3.bcmap +0 -0
  1414. package/static/assets/pdfjs/web/cmaps/Adobe-Japan1-4.bcmap +0 -0
  1415. package/static/assets/pdfjs/web/cmaps/Adobe-Japan1-5.bcmap +0 -0
  1416. package/static/assets/pdfjs/web/cmaps/Adobe-Japan1-6.bcmap +0 -0
  1417. package/static/assets/pdfjs/web/cmaps/Adobe-Japan1-UCS2.bcmap +0 -0
  1418. package/static/assets/pdfjs/web/cmaps/Adobe-Korea1-0.bcmap +0 -0
  1419. package/static/assets/pdfjs/web/cmaps/Adobe-Korea1-1.bcmap +0 -0
  1420. package/static/assets/pdfjs/web/cmaps/Adobe-Korea1-2.bcmap +0 -0
  1421. package/static/assets/pdfjs/web/cmaps/Adobe-Korea1-UCS2.bcmap +0 -0
  1422. package/static/assets/pdfjs/web/cmaps/B5-H.bcmap +0 -0
  1423. package/static/assets/pdfjs/web/cmaps/B5-V.bcmap +0 -0
  1424. package/static/assets/pdfjs/web/cmaps/B5pc-H.bcmap +0 -0
  1425. package/static/assets/pdfjs/web/cmaps/B5pc-V.bcmap +0 -0
  1426. package/static/assets/pdfjs/web/cmaps/CNS-EUC-H.bcmap +0 -0
  1427. package/static/assets/pdfjs/web/cmaps/CNS-EUC-V.bcmap +0 -0
  1428. package/static/assets/pdfjs/web/cmaps/CNS1-H.bcmap +0 -0
  1429. package/static/assets/pdfjs/web/cmaps/CNS1-V.bcmap +0 -0
  1430. package/static/assets/pdfjs/web/cmaps/CNS2-H.bcmap +0 -0
  1431. package/static/assets/pdfjs/web/cmaps/CNS2-V.bcmap +3 -0
  1432. package/static/assets/pdfjs/web/cmaps/ETHK-B5-H.bcmap +0 -0
  1433. package/static/assets/pdfjs/web/cmaps/ETHK-B5-V.bcmap +0 -0
  1434. package/static/assets/pdfjs/web/cmaps/ETen-B5-H.bcmap +0 -0
  1435. package/static/assets/pdfjs/web/cmaps/ETen-B5-V.bcmap +0 -0
  1436. package/static/assets/pdfjs/web/cmaps/ETenms-B5-H.bcmap +3 -0
  1437. package/static/assets/pdfjs/web/cmaps/ETenms-B5-V.bcmap +0 -0
  1438. package/static/assets/pdfjs/web/cmaps/EUC-H.bcmap +0 -0
  1439. package/static/assets/pdfjs/web/cmaps/EUC-V.bcmap +0 -0
  1440. package/static/assets/pdfjs/web/cmaps/Ext-H.bcmap +0 -0
  1441. package/static/assets/pdfjs/web/cmaps/Ext-RKSJ-H.bcmap +0 -0
  1442. package/static/assets/pdfjs/web/cmaps/Ext-RKSJ-V.bcmap +0 -0
  1443. package/static/assets/pdfjs/web/cmaps/Ext-V.bcmap +0 -0
  1444. package/static/assets/pdfjs/web/cmaps/GB-EUC-H.bcmap +0 -0
  1445. package/static/assets/pdfjs/web/cmaps/GB-EUC-V.bcmap +0 -0
  1446. package/static/assets/pdfjs/web/cmaps/GB-H.bcmap +4 -0
  1447. package/static/assets/pdfjs/web/cmaps/GB-V.bcmap +0 -0
  1448. package/static/assets/pdfjs/web/cmaps/GBK-EUC-H.bcmap +0 -0
  1449. package/static/assets/pdfjs/web/cmaps/GBK-EUC-V.bcmap +0 -0
  1450. package/static/assets/pdfjs/web/cmaps/GBK2K-H.bcmap +0 -0
  1451. package/static/assets/pdfjs/web/cmaps/GBK2K-V.bcmap +0 -0
  1452. package/static/assets/pdfjs/web/cmaps/GBKp-EUC-H.bcmap +0 -0
  1453. package/static/assets/pdfjs/web/cmaps/GBKp-EUC-V.bcmap +0 -0
  1454. package/static/assets/pdfjs/web/cmaps/GBT-EUC-H.bcmap +0 -0
  1455. package/static/assets/pdfjs/web/cmaps/GBT-EUC-V.bcmap +0 -0
  1456. package/static/assets/pdfjs/web/cmaps/GBT-H.bcmap +0 -0
  1457. package/static/assets/pdfjs/web/cmaps/GBT-V.bcmap +0 -0
  1458. package/static/assets/pdfjs/web/cmaps/GBTpc-EUC-H.bcmap +0 -0
  1459. package/static/assets/pdfjs/web/cmaps/GBTpc-EUC-V.bcmap +0 -0
  1460. package/static/assets/pdfjs/web/cmaps/GBpc-EUC-H.bcmap +0 -0
  1461. package/static/assets/pdfjs/web/cmaps/GBpc-EUC-V.bcmap +0 -0
  1462. package/static/assets/pdfjs/web/cmaps/H.bcmap +0 -0
  1463. package/static/assets/pdfjs/web/cmaps/HKdla-B5-H.bcmap +0 -0
  1464. package/static/assets/pdfjs/web/cmaps/HKdla-B5-V.bcmap +0 -0
  1465. package/static/assets/pdfjs/web/cmaps/HKdlb-B5-H.bcmap +0 -0
  1466. package/static/assets/pdfjs/web/cmaps/HKdlb-B5-V.bcmap +0 -0
  1467. package/static/assets/pdfjs/web/cmaps/HKgccs-B5-H.bcmap +0 -0
  1468. package/static/assets/pdfjs/web/cmaps/HKgccs-B5-V.bcmap +0 -0
  1469. package/static/assets/pdfjs/web/cmaps/HKm314-B5-H.bcmap +0 -0
  1470. package/static/assets/pdfjs/web/cmaps/HKm314-B5-V.bcmap +0 -0
  1471. package/static/assets/pdfjs/web/cmaps/HKm471-B5-H.bcmap +0 -0
  1472. package/static/assets/pdfjs/web/cmaps/HKm471-B5-V.bcmap +0 -0
  1473. package/static/assets/pdfjs/web/cmaps/HKscs-B5-H.bcmap +0 -0
  1474. package/static/assets/pdfjs/web/cmaps/HKscs-B5-V.bcmap +0 -0
  1475. package/static/assets/pdfjs/web/cmaps/Hankaku.bcmap +0 -0
  1476. package/static/assets/pdfjs/web/cmaps/Hiragana.bcmap +0 -0
  1477. package/static/assets/pdfjs/web/cmaps/KSC-EUC-H.bcmap +0 -0
  1478. package/static/assets/pdfjs/web/cmaps/KSC-EUC-V.bcmap +0 -0
  1479. package/static/assets/pdfjs/web/cmaps/KSC-H.bcmap +0 -0
  1480. package/static/assets/pdfjs/web/cmaps/KSC-Johab-H.bcmap +0 -0
  1481. package/static/assets/pdfjs/web/cmaps/KSC-Johab-V.bcmap +0 -0
  1482. package/static/assets/pdfjs/web/cmaps/KSC-V.bcmap +0 -0
  1483. package/static/assets/pdfjs/web/cmaps/KSCms-UHC-H.bcmap +0 -0
  1484. package/static/assets/pdfjs/web/cmaps/KSCms-UHC-HW-H.bcmap +0 -0
  1485. package/static/assets/pdfjs/web/cmaps/KSCms-UHC-HW-V.bcmap +0 -0
  1486. package/static/assets/pdfjs/web/cmaps/KSCms-UHC-V.bcmap +0 -0
  1487. package/static/assets/pdfjs/web/cmaps/KSCpc-EUC-H.bcmap +0 -0
  1488. package/static/assets/pdfjs/web/cmaps/KSCpc-EUC-V.bcmap +0 -0
  1489. package/static/assets/pdfjs/web/cmaps/Katakana.bcmap +0 -0
  1490. package/static/assets/pdfjs/web/cmaps/LICENSE +36 -0
  1491. package/static/assets/pdfjs/web/cmaps/NWP-H.bcmap +0 -0
  1492. package/static/assets/pdfjs/web/cmaps/NWP-V.bcmap +0 -0
  1493. package/static/assets/pdfjs/web/cmaps/RKSJ-H.bcmap +0 -0
  1494. package/static/assets/pdfjs/web/cmaps/RKSJ-V.bcmap +0 -0
  1495. package/static/assets/pdfjs/web/cmaps/Roman.bcmap +0 -0
  1496. package/static/assets/pdfjs/web/cmaps/UniCNS-UCS2-H.bcmap +0 -0
  1497. package/static/assets/pdfjs/web/cmaps/UniCNS-UCS2-V.bcmap +0 -0
  1498. package/static/assets/pdfjs/web/cmaps/UniCNS-UTF16-H.bcmap +0 -0
  1499. package/static/assets/pdfjs/web/cmaps/UniCNS-UTF16-V.bcmap +0 -0
  1500. package/static/assets/pdfjs/web/cmaps/UniCNS-UTF32-H.bcmap +0 -0
  1501. package/static/assets/pdfjs/web/cmaps/UniCNS-UTF32-V.bcmap +0 -0
  1502. package/static/assets/pdfjs/web/cmaps/UniCNS-UTF8-H.bcmap +0 -0
  1503. package/static/assets/pdfjs/web/cmaps/UniCNS-UTF8-V.bcmap +0 -0
  1504. package/static/assets/pdfjs/web/cmaps/UniGB-UCS2-H.bcmap +0 -0
  1505. package/static/assets/pdfjs/web/cmaps/UniGB-UCS2-V.bcmap +0 -0
  1506. package/static/assets/pdfjs/web/cmaps/UniGB-UTF16-H.bcmap +0 -0
  1507. package/static/assets/pdfjs/web/cmaps/UniGB-UTF16-V.bcmap +0 -0
  1508. package/static/assets/pdfjs/web/cmaps/UniGB-UTF32-H.bcmap +0 -0
  1509. package/static/assets/pdfjs/web/cmaps/UniGB-UTF32-V.bcmap +0 -0
  1510. package/static/assets/pdfjs/web/cmaps/UniGB-UTF8-H.bcmap +0 -0
  1511. package/static/assets/pdfjs/web/cmaps/UniGB-UTF8-V.bcmap +0 -0
  1512. package/static/assets/pdfjs/web/cmaps/UniJIS-UCS2-H.bcmap +0 -0
  1513. package/static/assets/pdfjs/web/cmaps/UniJIS-UCS2-HW-H.bcmap +0 -0
  1514. package/static/assets/pdfjs/web/cmaps/UniJIS-UCS2-HW-V.bcmap +0 -0
  1515. package/static/assets/pdfjs/web/cmaps/UniJIS-UCS2-V.bcmap +0 -0
  1516. package/static/assets/pdfjs/web/cmaps/UniJIS-UTF16-H.bcmap +0 -0
  1517. package/static/assets/pdfjs/web/cmaps/UniJIS-UTF16-V.bcmap +0 -0
  1518. package/static/assets/pdfjs/web/cmaps/UniJIS-UTF32-H.bcmap +0 -0
  1519. package/static/assets/pdfjs/web/cmaps/UniJIS-UTF32-V.bcmap +0 -0
  1520. package/static/assets/pdfjs/web/cmaps/UniJIS-UTF8-H.bcmap +0 -0
  1521. package/static/assets/pdfjs/web/cmaps/UniJIS-UTF8-V.bcmap +0 -0
  1522. package/static/assets/pdfjs/web/cmaps/UniJIS2004-UTF16-H.bcmap +0 -0
  1523. package/static/assets/pdfjs/web/cmaps/UniJIS2004-UTF16-V.bcmap +0 -0
  1524. package/static/assets/pdfjs/web/cmaps/UniJIS2004-UTF32-H.bcmap +0 -0
  1525. package/static/assets/pdfjs/web/cmaps/UniJIS2004-UTF32-V.bcmap +0 -0
  1526. package/static/assets/pdfjs/web/cmaps/UniJIS2004-UTF8-H.bcmap +0 -0
  1527. package/static/assets/pdfjs/web/cmaps/UniJIS2004-UTF8-V.bcmap +0 -0
  1528. package/static/assets/pdfjs/web/cmaps/UniJISPro-UCS2-HW-V.bcmap +0 -0
  1529. package/static/assets/pdfjs/web/cmaps/UniJISPro-UCS2-V.bcmap +0 -0
  1530. package/static/assets/pdfjs/web/cmaps/UniJISPro-UTF8-V.bcmap +0 -0
  1531. package/static/assets/pdfjs/web/cmaps/UniJISX0213-UTF32-H.bcmap +0 -0
  1532. package/static/assets/pdfjs/web/cmaps/UniJISX0213-UTF32-V.bcmap +0 -0
  1533. package/static/assets/pdfjs/web/cmaps/UniJISX02132004-UTF32-H.bcmap +0 -0
  1534. package/static/assets/pdfjs/web/cmaps/UniJISX02132004-UTF32-V.bcmap +0 -0
  1535. package/static/assets/pdfjs/web/cmaps/UniKS-UCS2-H.bcmap +0 -0
  1536. package/static/assets/pdfjs/web/cmaps/UniKS-UCS2-V.bcmap +0 -0
  1537. package/static/assets/pdfjs/web/cmaps/UniKS-UTF16-H.bcmap +0 -0
  1538. package/static/assets/pdfjs/web/cmaps/UniKS-UTF16-V.bcmap +0 -0
  1539. package/static/assets/pdfjs/web/cmaps/UniKS-UTF32-H.bcmap +0 -0
  1540. package/static/assets/pdfjs/web/cmaps/UniKS-UTF32-V.bcmap +0 -0
  1541. package/static/assets/pdfjs/web/cmaps/UniKS-UTF8-H.bcmap +0 -0
  1542. package/static/assets/pdfjs/web/cmaps/UniKS-UTF8-V.bcmap +0 -0
  1543. package/static/assets/pdfjs/web/cmaps/V.bcmap +0 -0
  1544. package/static/assets/pdfjs/web/cmaps/WP-Symbol.bcmap +0 -0
  1545. package/static/assets/pdfjs/web/compressed.tracemonkey-pldi-09.pdf +0 -0
  1546. package/static/assets/pdfjs/web/debugger.css +114 -0
  1547. package/static/assets/pdfjs/web/debugger.mjs +627 -0
  1548. package/static/assets/pdfjs/web/iccs/CGATS001Compat-v2-micro.icc +0 -0
  1549. package/static/assets/pdfjs/web/iccs/LICENSE +116 -0
  1550. package/static/assets/pdfjs/web/images/altText_add.svg +3 -0
  1551. package/static/assets/pdfjs/web/images/altText_disclaimer.svg +3 -0
  1552. package/static/assets/pdfjs/web/images/altText_done.svg +3 -0
  1553. package/static/assets/pdfjs/web/images/altText_spinner.svg +30 -0
  1554. package/static/assets/pdfjs/web/images/altText_warning.svg +3 -0
  1555. package/static/assets/pdfjs/web/images/annotation-check.svg +11 -0
  1556. package/static/assets/pdfjs/web/images/annotation-comment.svg +16 -0
  1557. package/static/assets/pdfjs/web/images/annotation-help.svg +26 -0
  1558. package/static/assets/pdfjs/web/images/annotation-insert.svg +10 -0
  1559. package/static/assets/pdfjs/web/images/annotation-key.svg +11 -0
  1560. package/static/assets/pdfjs/web/images/annotation-newparagraph.svg +11 -0
  1561. package/static/assets/pdfjs/web/images/annotation-noicon.svg +7 -0
  1562. package/static/assets/pdfjs/web/images/annotation-note.svg +42 -0
  1563. package/static/assets/pdfjs/web/images/annotation-paperclip.svg +6 -0
  1564. package/static/assets/pdfjs/web/images/annotation-paragraph.svg +16 -0
  1565. package/static/assets/pdfjs/web/images/annotation-pushpin.svg +7 -0
  1566. package/static/assets/pdfjs/web/images/comment-actionsButton.svg +3 -0
  1567. package/static/assets/pdfjs/web/images/comment-closeButton.svg +3 -0
  1568. package/static/assets/pdfjs/web/images/comment-editButton.svg +3 -0
  1569. package/static/assets/pdfjs/web/images/cursor-editorFreeHighlight.svg +6 -0
  1570. package/static/assets/pdfjs/web/images/cursor-editorFreeText.svg +3 -0
  1571. package/static/assets/pdfjs/web/images/cursor-editorInk.svg +4 -0
  1572. package/static/assets/pdfjs/web/images/cursor-editorTextHighlight.svg +8 -0
  1573. package/static/assets/pdfjs/web/images/editor-toolbar-delete.svg +5 -0
  1574. package/static/assets/pdfjs/web/images/editor-toolbar-edit.svg +3 -0
  1575. package/static/assets/pdfjs/web/images/findbarButton-next.svg +3 -0
  1576. package/static/assets/pdfjs/web/images/findbarButton-previous.svg +3 -0
  1577. package/static/assets/pdfjs/web/images/gv-toolbarButton-download.svg +3 -0
  1578. package/static/assets/pdfjs/web/images/loading-icon.gif +0 -0
  1579. package/static/assets/pdfjs/web/images/loading.svg +1 -0
  1580. package/static/assets/pdfjs/web/images/messageBar_closingButton.svg +3 -0
  1581. package/static/assets/pdfjs/web/images/messageBar_info.svg +3 -0
  1582. package/static/assets/pdfjs/web/images/messageBar_warning.svg +3 -0
  1583. package/static/assets/pdfjs/web/images/secondaryToolbarButton-documentProperties.svg +3 -0
  1584. package/static/assets/pdfjs/web/images/secondaryToolbarButton-firstPage.svg +3 -0
  1585. package/static/assets/pdfjs/web/images/secondaryToolbarButton-handTool.svg +3 -0
  1586. package/static/assets/pdfjs/web/images/secondaryToolbarButton-lastPage.svg +3 -0
  1587. package/static/assets/pdfjs/web/images/secondaryToolbarButton-rotateCcw.svg +3 -0
  1588. package/static/assets/pdfjs/web/images/secondaryToolbarButton-rotateCw.svg +3 -0
  1589. package/static/assets/pdfjs/web/images/secondaryToolbarButton-scrollHorizontal.svg +3 -0
  1590. package/static/assets/pdfjs/web/images/secondaryToolbarButton-scrollPage.svg +3 -0
  1591. package/static/assets/pdfjs/web/images/secondaryToolbarButton-scrollVertical.svg +3 -0
  1592. package/static/assets/pdfjs/web/images/secondaryToolbarButton-scrollWrapped.svg +3 -0
  1593. package/static/assets/pdfjs/web/images/secondaryToolbarButton-selectTool.svg +3 -0
  1594. package/static/assets/pdfjs/web/images/secondaryToolbarButton-spreadEven.svg +3 -0
  1595. package/static/assets/pdfjs/web/images/secondaryToolbarButton-spreadNone.svg +3 -0
  1596. package/static/assets/pdfjs/web/images/secondaryToolbarButton-spreadOdd.svg +3 -0
  1597. package/static/assets/pdfjs/web/images/toolbarButton-bookmark.svg +3 -0
  1598. package/static/assets/pdfjs/web/images/toolbarButton-currentOutlineItem.svg +3 -0
  1599. package/static/assets/pdfjs/web/images/toolbarButton-download.svg +4 -0
  1600. package/static/assets/pdfjs/web/images/toolbarButton-editorFreeText.svg +5 -0
  1601. package/static/assets/pdfjs/web/images/toolbarButton-editorHighlight.svg +6 -0
  1602. package/static/assets/pdfjs/web/images/toolbarButton-editorInk.svg +4 -0
  1603. package/static/assets/pdfjs/web/images/toolbarButton-editorSignature.svg +6 -0
  1604. package/static/assets/pdfjs/web/images/toolbarButton-editorStamp.svg +8 -0
  1605. package/static/assets/pdfjs/web/images/toolbarButton-menuArrow.svg +3 -0
  1606. package/static/assets/pdfjs/web/images/toolbarButton-openFile.svg +3 -0
  1607. package/static/assets/pdfjs/web/images/toolbarButton-pageDown.svg +3 -0
  1608. package/static/assets/pdfjs/web/images/toolbarButton-pageUp.svg +3 -0
  1609. package/static/assets/pdfjs/web/images/toolbarButton-presentationMode.svg +3 -0
  1610. package/static/assets/pdfjs/web/images/toolbarButton-print.svg +3 -0
  1611. package/static/assets/pdfjs/web/images/toolbarButton-search.svg +3 -0
  1612. package/static/assets/pdfjs/web/images/toolbarButton-secondaryToolbarToggle.svg +3 -0
  1613. package/static/assets/pdfjs/web/images/toolbarButton-sidebarToggle.svg +3 -0
  1614. package/static/assets/pdfjs/web/images/toolbarButton-viewAttachments.svg +3 -0
  1615. package/static/assets/pdfjs/web/images/toolbarButton-viewLayers.svg +3 -0
  1616. package/static/assets/pdfjs/web/images/toolbarButton-viewOutline.svg +3 -0
  1617. package/static/assets/pdfjs/web/images/toolbarButton-viewThumbnail.svg +3 -0
  1618. package/static/assets/pdfjs/web/images/toolbarButton-zoomIn.svg +3 -0
  1619. package/static/assets/pdfjs/web/images/toolbarButton-zoomOut.svg +3 -0
  1620. package/static/assets/pdfjs/web/images/treeitem-collapsed.svg +1 -0
  1621. package/static/assets/pdfjs/web/images/treeitem-expanded.svg +1 -0
  1622. package/static/assets/pdfjs/web/locale/ach/viewer.ftl +275 -0
  1623. package/static/assets/pdfjs/web/locale/af/viewer.ftl +262 -0
  1624. package/static/assets/pdfjs/web/locale/an/viewer.ftl +307 -0
  1625. package/static/assets/pdfjs/web/locale/ar/viewer.ftl +627 -0
  1626. package/static/assets/pdfjs/web/locale/ast/viewer.ftl +251 -0
  1627. package/static/assets/pdfjs/web/locale/az/viewer.ftl +307 -0
  1628. package/static/assets/pdfjs/web/locale/be/viewer.ftl +618 -0
  1629. package/static/assets/pdfjs/web/locale/bg/viewer.ftl +451 -0
  1630. package/static/assets/pdfjs/web/locale/bn/viewer.ftl +297 -0
  1631. package/static/assets/pdfjs/web/locale/bo/viewer.ftl +297 -0
  1632. package/static/assets/pdfjs/web/locale/br/viewer.ftl +382 -0
  1633. package/static/assets/pdfjs/web/locale/brx/viewer.ftl +268 -0
  1634. package/static/assets/pdfjs/web/locale/bs/viewer.ftl +618 -0
  1635. package/static/assets/pdfjs/web/locale/ca/viewer.ftl +343 -0
  1636. package/static/assets/pdfjs/web/locale/cak/viewer.ftl +341 -0
  1637. package/static/assets/pdfjs/web/locale/ckb/viewer.ftl +292 -0
  1638. package/static/assets/pdfjs/web/locale/cs/viewer.ftl +621 -0
  1639. package/static/assets/pdfjs/web/locale/cy/viewer.ftl +627 -0
  1640. package/static/assets/pdfjs/web/locale/da/viewer.ftl +615 -0
  1641. package/static/assets/pdfjs/web/locale/de/viewer.ftl +615 -0
  1642. package/static/assets/pdfjs/web/locale/dsb/viewer.ftl +621 -0
  1643. package/static/assets/pdfjs/web/locale/el/viewer.ftl +615 -0
  1644. package/static/assets/pdfjs/web/locale/en-CA/viewer.ftl +615 -0
  1645. package/static/assets/pdfjs/web/locale/en-GB/viewer.ftl +615 -0
  1646. package/static/assets/pdfjs/web/locale/en-US/viewer.ftl +667 -0
  1647. package/static/assets/pdfjs/web/locale/eo/viewer.ftl +615 -0
  1648. package/static/assets/pdfjs/web/locale/es-AR/viewer.ftl +615 -0
  1649. package/static/assets/pdfjs/web/locale/es-CL/viewer.ftl +615 -0
  1650. package/static/assets/pdfjs/web/locale/es-ES/viewer.ftl +615 -0
  1651. package/static/assets/pdfjs/web/locale/es-MX/viewer.ftl +580 -0
  1652. package/static/assets/pdfjs/web/locale/et/viewer.ftl +319 -0
  1653. package/static/assets/pdfjs/web/locale/eu/viewer.ftl +619 -0
  1654. package/static/assets/pdfjs/web/locale/fa/viewer.ftl +378 -0
  1655. package/static/assets/pdfjs/web/locale/ff/viewer.ftl +297 -0
  1656. package/static/assets/pdfjs/web/locale/fi/viewer.ftl +615 -0
  1657. package/static/assets/pdfjs/web/locale/fr/viewer.ftl +611 -0
  1658. package/static/assets/pdfjs/web/locale/fur/viewer.ftl +615 -0
  1659. package/static/assets/pdfjs/web/locale/fy-NL/viewer.ftl +615 -0
  1660. package/static/assets/pdfjs/web/locale/ga-IE/viewer.ftl +263 -0
  1661. package/static/assets/pdfjs/web/locale/gd/viewer.ftl +343 -0
  1662. package/static/assets/pdfjs/web/locale/gl/viewer.ftl +615 -0
  1663. package/static/assets/pdfjs/web/locale/gn/viewer.ftl +614 -0
  1664. package/static/assets/pdfjs/web/locale/gu-IN/viewer.ftl +297 -0
  1665. package/static/assets/pdfjs/web/locale/he/viewer.ftl +615 -0
  1666. package/static/assets/pdfjs/web/locale/hi-IN/viewer.ftl +297 -0
  1667. package/static/assets/pdfjs/web/locale/hr/viewer.ftl +618 -0
  1668. package/static/assets/pdfjs/web/locale/hsb/viewer.ftl +621 -0
  1669. package/static/assets/pdfjs/web/locale/hu/viewer.ftl +615 -0
  1670. package/static/assets/pdfjs/web/locale/hy-AM/viewer.ftl +314 -0
  1671. package/static/assets/pdfjs/web/locale/hye/viewer.ftl +318 -0
  1672. package/static/assets/pdfjs/web/locale/ia/viewer.ftl +615 -0
  1673. package/static/assets/pdfjs/web/locale/id/viewer.ftl +603 -0
  1674. package/static/assets/pdfjs/web/locale/is/viewer.ftl +600 -0
  1675. package/static/assets/pdfjs/web/locale/it/viewer.ftl +623 -0
  1676. package/static/assets/pdfjs/web/locale/ja/viewer.ftl +603 -0
  1677. package/static/assets/pdfjs/web/locale/ka/viewer.ftl +615 -0
  1678. package/static/assets/pdfjs/web/locale/kab/viewer.ftl +595 -0
  1679. package/static/assets/pdfjs/web/locale/kk/viewer.ftl +603 -0
  1680. package/static/assets/pdfjs/web/locale/km/viewer.ftl +273 -0
  1681. package/static/assets/pdfjs/web/locale/kn/viewer.ftl +263 -0
  1682. package/static/assets/pdfjs/web/locale/ko/viewer.ftl +603 -0
  1683. package/static/assets/pdfjs/web/locale/lij/viewer.ftl +297 -0
  1684. package/static/assets/pdfjs/web/locale/lo/viewer.ftl +343 -0
  1685. package/static/assets/pdfjs/web/locale/locale.json +1 -0
  1686. package/static/assets/pdfjs/web/locale/lt/viewer.ftl +318 -0
  1687. package/static/assets/pdfjs/web/locale/ltg/viewer.ftl +296 -0
  1688. package/static/assets/pdfjs/web/locale/lv/viewer.ftl +297 -0
  1689. package/static/assets/pdfjs/web/locale/meh/viewer.ftl +137 -0
  1690. package/static/assets/pdfjs/web/locale/mk/viewer.ftl +265 -0
  1691. package/static/assets/pdfjs/web/locale/ml/viewer.ftl +524 -0
  1692. package/static/assets/pdfjs/web/locale/mr/viewer.ftl +289 -0
  1693. package/static/assets/pdfjs/web/locale/ms/viewer.ftl +297 -0
  1694. package/static/assets/pdfjs/web/locale/my/viewer.ftl +256 -0
  1695. package/static/assets/pdfjs/web/locale/nb-NO/viewer.ftl +615 -0
  1696. package/static/assets/pdfjs/web/locale/ne-NP/viewer.ftl +284 -0
  1697. package/static/assets/pdfjs/web/locale/nl/viewer.ftl +615 -0
  1698. package/static/assets/pdfjs/web/locale/nn-NO/viewer.ftl +609 -0
  1699. package/static/assets/pdfjs/web/locale/oc/viewer.ftl +436 -0
  1700. package/static/assets/pdfjs/web/locale/pa-IN/viewer.ftl +615 -0
  1701. package/static/assets/pdfjs/web/locale/pl/viewer.ftl +618 -0
  1702. package/static/assets/pdfjs/web/locale/pt-BR/viewer.ftl +615 -0
  1703. package/static/assets/pdfjs/web/locale/pt-PT/viewer.ftl +615 -0
  1704. package/static/assets/pdfjs/web/locale/rm/viewer.ftl +615 -0
  1705. package/static/assets/pdfjs/web/locale/ro/viewer.ftl +302 -0
  1706. package/static/assets/pdfjs/web/locale/ru/viewer.ftl +618 -0
  1707. package/static/assets/pdfjs/web/locale/sat/viewer.ftl +355 -0
  1708. package/static/assets/pdfjs/web/locale/sc/viewer.ftl +394 -0
  1709. package/static/assets/pdfjs/web/locale/scn/viewer.ftl +124 -0
  1710. package/static/assets/pdfjs/web/locale/sco/viewer.ftl +314 -0
  1711. package/static/assets/pdfjs/web/locale/si/viewer.ftl +301 -0
  1712. package/static/assets/pdfjs/web/locale/sk/viewer.ftl +621 -0
  1713. package/static/assets/pdfjs/web/locale/skr/viewer.ftl +524 -0
  1714. package/static/assets/pdfjs/web/locale/sl/viewer.ftl +621 -0
  1715. package/static/assets/pdfjs/web/locale/son/viewer.ftl +256 -0
  1716. package/static/assets/pdfjs/web/locale/sq/viewer.ftl +606 -0
  1717. package/static/assets/pdfjs/web/locale/sr/viewer.ftl +451 -0
  1718. package/static/assets/pdfjs/web/locale/sv-SE/viewer.ftl +615 -0
  1719. package/static/assets/pdfjs/web/locale/szl/viewer.ftl +307 -0
  1720. package/static/assets/pdfjs/web/locale/ta/viewer.ftl +273 -0
  1721. package/static/assets/pdfjs/web/locale/te/viewer.ftl +289 -0
  1722. package/static/assets/pdfjs/web/locale/tg/viewer.ftl +615 -0
  1723. package/static/assets/pdfjs/web/locale/th/viewer.ftl +603 -0
  1724. package/static/assets/pdfjs/web/locale/tl/viewer.ftl +307 -0
  1725. package/static/assets/pdfjs/web/locale/tr/viewer.ftl +615 -0
  1726. package/static/assets/pdfjs/web/locale/trs/viewer.ftl +247 -0
  1727. package/static/assets/pdfjs/web/locale/uk/viewer.ftl +618 -0
  1728. package/static/assets/pdfjs/web/locale/ur/viewer.ftl +298 -0
  1729. package/static/assets/pdfjs/web/locale/uz/viewer.ftl +237 -0
  1730. package/static/assets/pdfjs/web/locale/vi/viewer.ftl +603 -0
  1731. package/static/assets/pdfjs/web/locale/wo/viewer.ftl +177 -0
  1732. package/static/assets/pdfjs/web/locale/xh/viewer.ftl +262 -0
  1733. package/static/assets/pdfjs/web/locale/zh-CN/viewer.ftl +603 -0
  1734. package/static/assets/pdfjs/web/locale/zh-TW/viewer.ftl +603 -0
  1735. package/static/assets/pdfjs/web/standard_fonts/FoxitDingbats.pfb +0 -0
  1736. package/static/assets/pdfjs/web/standard_fonts/FoxitFixed.pfb +0 -0
  1737. package/static/assets/pdfjs/web/standard_fonts/FoxitFixedBold.pfb +0 -0
  1738. package/static/assets/pdfjs/web/standard_fonts/FoxitFixedBoldItalic.pfb +0 -0
  1739. package/static/assets/pdfjs/web/standard_fonts/FoxitFixedItalic.pfb +0 -0
  1740. package/static/assets/pdfjs/web/standard_fonts/FoxitSerif.pfb +0 -0
  1741. package/static/assets/pdfjs/web/standard_fonts/FoxitSerifBold.pfb +0 -0
  1742. package/static/assets/pdfjs/web/standard_fonts/FoxitSerifBoldItalic.pfb +0 -0
  1743. package/static/assets/pdfjs/web/standard_fonts/FoxitSerifItalic.pfb +0 -0
  1744. package/static/assets/pdfjs/web/standard_fonts/FoxitSymbol.pfb +0 -0
  1745. package/static/assets/pdfjs/web/standard_fonts/LICENSE_FOXIT +27 -0
  1746. package/static/assets/pdfjs/web/standard_fonts/LICENSE_LIBERATION +102 -0
  1747. package/static/assets/pdfjs/web/standard_fonts/LiberationSans-Bold.ttf +0 -0
  1748. package/static/assets/pdfjs/web/standard_fonts/LiberationSans-BoldItalic.ttf +0 -0
  1749. package/static/assets/pdfjs/web/standard_fonts/LiberationSans-Italic.ttf +0 -0
  1750. package/static/assets/pdfjs/web/standard_fonts/LiberationSans-Regular.ttf +0 -0
  1751. package/static/assets/pdfjs/web/viewer.css +6766 -0
  1752. package/static/assets/pdfjs/web/viewer.html +768 -0
  1753. package/static/assets/pdfjs/web/viewer.mjs +17445 -0
  1754. package/static/assets/pdfjs/web/viewer.mjs.map +1 -0
  1755. package/static/assets/pdfjs/web/wasm/LICENSE_OPENJPEG +39 -0
  1756. package/static/assets/pdfjs/web/wasm/LICENSE_PDFJS_OPENJPEG +22 -0
  1757. package/static/assets/pdfjs/web/wasm/LICENSE_PDFJS_QCMS +22 -0
  1758. package/static/assets/pdfjs/web/wasm/LICENSE_QCMS +21 -0
  1759. package/static/assets/pdfjs/web/wasm/openjpeg.wasm +0 -0
  1760. package/static/assets/pdfjs/web/wasm/openjpeg_nowasm_fallback.js +29 -0
  1761. package/static/assets/pdfjs/web/wasm/qcms_bg.wasm +0 -0
  1762. package/static/assets/protected.png +0 -0
  1763. package/static/chunk-2EBPSJJT.js +1 -0
  1764. package/static/chunk-3V7XYPSJ.js +4 -0
  1765. package/static/chunk-4IYQWOGR.js +1 -0
  1766. package/static/chunk-5RFOYHL3.js +1 -0
  1767. package/static/chunk-7PCJMNDR.js +1 -0
  1768. package/static/chunk-7WRQICEB.js +1 -0
  1769. package/static/chunk-AKM2LQUU.js +1 -0
  1770. package/static/chunk-ATFX6EIO.js +1 -0
  1771. package/static/chunk-ATLT5DK5.js +1 -0
  1772. package/static/chunk-DVHXFWN7.js +1 -0
  1773. package/static/chunk-E27KCFP6.js +24 -0
  1774. package/static/chunk-FPEGN42P.js +564 -0
  1775. package/static/chunk-GAL4ENT6.js +1 -0
  1776. package/static/chunk-GWUCWOVK.js +1 -0
  1777. package/static/chunk-I644MKAO.js +1 -0
  1778. package/static/chunk-IFJD2ISM.js +1 -0
  1779. package/static/chunk-IUUTIYHF.js +1 -0
  1780. package/static/chunk-JXZCNFW7.js +1 -0
  1781. package/static/chunk-MEKYVWV4.js +1 -0
  1782. package/static/chunk-MQZEETHL.js +7 -0
  1783. package/static/chunk-NPLV4M2H.js +1 -0
  1784. package/static/chunk-NU3TPXFY.js +4 -0
  1785. package/static/chunk-O4CXCITB.js +1 -0
  1786. package/static/chunk-OWGR4BYT.js +1 -0
  1787. package/static/chunk-QFRQQ4K3.js +1 -0
  1788. package/static/chunk-RAVRSB6R.js +1 -0
  1789. package/static/chunk-RUNMEQOV.js +1 -0
  1790. package/static/chunk-UGSGMP2I.js +1 -0
  1791. package/static/chunk-UV4UIX6J.js +1 -0
  1792. package/static/chunk-VBD7QTEP.js +1 -0
  1793. package/static/chunk-VBWPPICY.js +1 -0
  1794. package/static/chunk-VQRN7HFP.js +1 -0
  1795. package/static/chunk-WTPZUBNX.js +24 -0
  1796. package/static/chunk-XI72YZ2M.js +1 -0
  1797. package/static/chunk-Z6IHRUVL.js +1 -0
  1798. package/static/chunk-ZVPX26RB.js +1 -0
  1799. package/static/chunk-ZZ3LHYOY.js +1 -0
  1800. package/static/favicon.ico +0 -0
  1801. package/static/index.html +19 -0
  1802. package/static/main-ILCPT3IK.js +10 -0
  1803. package/static/media/videogular-54D7AHHD.woff +0 -0
  1804. package/static/media/videogular-H7MSXT3I.eot +0 -0
  1805. package/static/media/videogular-ULU7CHZC.ttf +0 -0
  1806. package/static/media/videogular-WX5DESMV.svg +29 -0
  1807. package/static/polyfills-GNKGQMRJ.js +2 -0
  1808. package/static/prerendered-routes.json +3 -0
  1809. package/static/scripts-MQMRSPYD.js +30 -0
  1810. package/static/styles-TJJDSCD4.css +1 -0
  1811. package/sync-in-server.js +309 -0
@@ -0,0 +1,564 @@
1
+ import{a as _,b as B,c as P4,g as F2}from"./chunk-GAL4ENT6.js";function N(e){return typeof e=="function"}function Cn(e){return N(e?.lift)}function w(e){return n=>{if(Cn(n))return n.lift(function(t){try{return e(t,this)}catch(c){this.error(c)}});throw new TypeError("Unable to lift unknown Observable type")}}function De(e){let t=e(c=>{Error.call(c),c.stack=new Error().stack});return t.prototype=Object.create(Error.prototype),t.prototype.constructor=t,t}var V4=De(e=>function(t){e(this),this.message=t?`${t.length} errors occurred during unsubscription:
2
+ ${t.map((c,s)=>`${s+1}) ${c.toString()}`).join(`
3
+ `)}`:"",this.name="UnsubscriptionError",this.errors=t});function H1(e,n){if(e){let t=e.indexOf(n);0<=t&&e.splice(t,1)}}var W=class e{constructor(n){this.initialTeardown=n,this.closed=!1,this._parentage=null,this._finalizers=null}unsubscribe(){let n;if(!this.closed){this.closed=!0;let{_parentage:t}=this;if(t)if(this._parentage=null,Array.isArray(t))for(let o of t)o.remove(this);else t.remove(this);let{initialTeardown:c}=this;if(N(c))try{c()}catch(o){n=o instanceof V4?o.errors:[o]}let{_finalizers:s}=this;if(s){this._finalizers=null;for(let o of s)try{Qo(o)}catch(r){n=n??[],r instanceof V4?n=[...n,...r.errors]:n.push(r)}}if(n)throw new V4(n)}}add(n){var t;if(n&&n!==this)if(this.closed)Qo(n);else{if(n instanceof e){if(n.closed||n._hasParent(this))return;n._addParent(this)}(this._finalizers=(t=this._finalizers)!==null&&t!==void 0?t:[]).push(n)}}_hasParent(n){let{_parentage:t}=this;return t===n||Array.isArray(t)&&t.includes(n)}_addParent(n){let{_parentage:t}=this;this._parentage=Array.isArray(t)?(t.push(n),t):t?[t,n]:n}_removeParent(n){let{_parentage:t}=this;t===n?this._parentage=null:Array.isArray(t)&&H1(t,n)}remove(n){let{_finalizers:t}=this;t&&H1(t,n),n instanceof e&&n._removeParent(this)}};W.EMPTY=(()=>{let e=new W;return e.closed=!0,e})();var Ln=W.EMPTY;function j4(e){return e instanceof W||e&&"closed"in e&&N(e.remove)&&N(e.add)&&N(e.unsubscribe)}function Qo(e){N(e)?e():e.unsubscribe()}var R2={onUnhandledError:null,onStoppedNotification:null,Promise:void 0,useDeprecatedSynchronousErrorHandling:!1,useDeprecatedNextContext:!1};var be={setTimeout(e,n,...t){let{delegate:c}=be;return c?.setTimeout?c.setTimeout(e,n,...t):setTimeout(e,n,...t)},clearTimeout(e){let{delegate:n}=be;return(n?.clearTimeout||clearTimeout)(e)},delegate:void 0};function B4(e){be.setTimeout(()=>{let{onUnhandledError:n}=R2;if(n)n(e);else throw e})}function U1(){}var Xo=yn("C",void 0,void 0);function Ko(e){return yn("E",void 0,e)}function Jo(e){return yn("N",e,void 0)}function yn(e,n,t){return{kind:e,value:n,error:t}}var $1=null;function we(e){if(R2.useDeprecatedSynchronousErrorHandling){let n=!$1;if(n&&($1={errorThrown:!1,error:null}),e(),n){let{errorThrown:t,error:c}=$1;if($1=null,t)throw c}}else e()}function er(e){R2.useDeprecatedSynchronousErrorHandling&&$1&&($1.errorThrown=!0,$1.error=e)}var G1=class extends W{constructor(n){super(),this.isStopped=!1,n?(this.destination=n,j4(n)&&n.add(this)):this.destination=u9}static create(n,t,c){return new O2(n,t,c)}next(n){this.isStopped?zn(Jo(n),this):this._next(n)}error(n){this.isStopped?zn(Ko(n),this):(this.isStopped=!0,this._error(n))}complete(){this.isStopped?zn(Xo,this):(this.isStopped=!0,this._complete())}unsubscribe(){this.closed||(this.isStopped=!0,super.unsubscribe(),this.destination=null)}_next(n){this.destination.next(n)}_error(n){try{this.destination.error(n)}finally{this.unsubscribe()}}_complete(){try{this.destination.complete()}finally{this.unsubscribe()}}},a9=Function.prototype.bind;function vn(e,n){return a9.call(e,n)}var Dn=class{constructor(n){this.partialObserver=n}next(n){let{partialObserver:t}=this;if(t.next)try{t.next(n)}catch(c){H4(c)}}error(n){let{partialObserver:t}=this;if(t.error)try{t.error(n)}catch(c){H4(c)}else H4(n)}complete(){let{partialObserver:n}=this;if(n.complete)try{n.complete()}catch(t){H4(t)}}},O2=class extends G1{constructor(n,t,c){super();let s;if(N(n)||!n)s={next:n??void 0,error:t??void 0,complete:c??void 0};else{let o;this&&R2.useDeprecatedNextContext?(o=Object.create(n),o.unsubscribe=()=>this.unsubscribe(),s={next:n.next&&vn(n.next,o),error:n.error&&vn(n.error,o),complete:n.complete&&vn(n.complete,o)}):s=n}this.destination=new Dn(s)}};function H4(e){R2.useDeprecatedSynchronousErrorHandling?er(e):B4(e)}function f9(e){throw e}function zn(e,n){let{onStoppedNotification:t}=R2;t&&be.setTimeout(()=>t(e,n))}var u9={closed:!0,next:U1,error:f9,complete:U1};function E(e,n,t,c,s){return new bn(e,n,t,c,s)}var bn=class extends G1{constructor(n,t,c,s,o,r){super(n),this.onFinalize=o,this.shouldUnsubscribe=r,this._next=t?function(i){try{t(i)}catch(l){n.error(l)}}:super._next,this._error=s?function(i){try{s(i)}catch(l){n.error(l)}finally{this.unsubscribe()}}:super._error,this._complete=c?function(){try{c()}catch(i){n.error(i)}finally{this.unsubscribe()}}:super._complete}unsubscribe(){var n;if(!this.shouldUnsubscribe||this.shouldUnsubscribe()){let{closed:t}=this;super.unsubscribe(),!t&&((n=this.onFinalize)===null||n===void 0||n.call(this))}}};function c1(e,n){return w((t,c)=>{let s=0;t.subscribe(E(c,o=>e.call(n,o,s++)&&c.next(o)))})}var xe=typeof Symbol=="function"&&Symbol.observable||"@@observable";function u2(e){return e}function d9(...e){return wn(e)}function wn(e){return e.length===0?u2:e.length===1?e[0]:function(t){return e.reduce((c,s)=>s(c),t)}}var R=(()=>{class e{constructor(t){t&&(this._subscribe=t)}lift(t){let c=new e;return c.source=this,c.operator=t,c}subscribe(t,c,s){let o=h9(t)?t:new O2(t,c,s);return we(()=>{let{operator:r,source:i}=this;o.add(r?r.call(o,i):i?this._subscribe(o):this._trySubscribe(o))}),o}_trySubscribe(t){try{return this._subscribe(t)}catch(c){t.error(c)}}forEach(t,c){return c=tr(c),new c((s,o)=>{let r=new O2({next:i=>{try{t(i)}catch(l){o(l),r.unsubscribe()}},error:o,complete:s});this.subscribe(r)})}_subscribe(t){var c;return(c=this.source)===null||c===void 0?void 0:c.subscribe(t)}[xe](){return this}pipe(...t){return wn(t)(this)}toPromise(t){return t=tr(t),new t((c,s)=>{let o;this.subscribe(r=>o=r,r=>s(r),()=>c(o))})}}return e.create=n=>new e(n),e})();function tr(e){var n;return(n=e??R2.Promise)!==null&&n!==void 0?n:Promise}function p9(e){return e&&N(e.next)&&N(e.error)&&N(e.complete)}function h9(e){return e&&e instanceof G1||p9(e)&&j4(e)}var s1=new R(e=>e.complete());function Ne(e){return e<=0?()=>s1:w((n,t)=>{let c=0;n.subscribe(E(t,s=>{++c<=e&&(t.next(s),e<=c&&t.complete())}))})}function Uz(e,n,t,c){var s=arguments.length,o=s<3?n:c===null?c=Object.getOwnPropertyDescriptor(n,t):c,r;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")o=Reflect.decorate(e,n,t,c);else for(var i=e.length-1;i>=0;i--)(r=e[i])&&(o=(s<3?r(o):s>3?r(n,t,o):r(n,t))||o);return s>3&&o&&Object.defineProperty(n,t,o),o}function $z(e,n){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(e,n)}function cr(e,n,t,c){function s(o){return o instanceof t?o:new t(function(r){r(o)})}return new(t||(t=Promise))(function(o,r){function i(f){try{a(c.next(f))}catch(u){r(u)}}function l(f){try{a(c.throw(f))}catch(u){r(u)}}function a(f){f.done?o(f.value):s(f.value).then(i,l)}a((c=c.apply(e,n||[])).next())})}function nr(e){var n=typeof Symbol=="function"&&Symbol.iterator,t=n&&e[n],c=0;if(t)return t.call(e);if(e&&typeof e.length=="number")return{next:function(){return e&&c>=e.length&&(e=void 0),{value:e&&e[c++],done:!e}}};throw new TypeError(n?"Object is not iterable.":"Symbol.iterator is not defined.")}function q1(e){return this instanceof q1?(this.v=e,this):new q1(e)}function sr(e,n,t){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var c=t.apply(e,n||[]),s,o=[];return s=Object.create((typeof AsyncIterator=="function"?AsyncIterator:Object).prototype),i("next"),i("throw"),i("return",r),s[Symbol.asyncIterator]=function(){return this},s;function r(d){return function(h){return Promise.resolve(h).then(d,u)}}function i(d,h){c[d]&&(s[d]=function(g){return new Promise(function(z,I){o.push([d,g,z,I])>1||l(d,g)})},h&&(s[d]=h(s[d])))}function l(d,h){try{a(c[d](h))}catch(g){p(o[0][3],g)}}function a(d){d.value instanceof q1?Promise.resolve(d.value.v).then(f,u):p(o[0][2],d)}function f(d){l("next",d)}function u(d){l("throw",d)}function p(d,h){d(h),o.shift(),o.length&&l(o[0][0],o[0][1])}}function or(e){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var n=e[Symbol.asyncIterator],t;return n?n.call(e):(e=typeof nr=="function"?nr(e):e[Symbol.iterator](),t={},c("next"),c("throw"),c("return"),t[Symbol.asyncIterator]=function(){return this},t);function c(o){t[o]=e[o]&&function(r){return new Promise(function(i,l){r=e[o](r),s(i,l,r.done,r.value)})}}function s(o,r,i,l){Promise.resolve(l).then(function(a){o({value:a,done:i})},r)}}var Ee=e=>e&&typeof e.length=="number"&&typeof e!="function";function U4(e){return N(e?.then)}function $4(e){return N(e[xe])}function G4(e){return Symbol.asyncIterator&&N(e?.[Symbol.asyncIterator])}function q4(e){return new TypeError(`You provided ${e!==null&&typeof e=="object"?"an invalid object":`'${e}'`} where a stream was expected. You can provide an Observable, Promise, ReadableStream, Array, AsyncIterable, or Iterable.`)}function m9(){return typeof Symbol!="function"||!Symbol.iterator?"@@iterator":Symbol.iterator}var W4=m9();function Z4(e){return N(e?.[W4])}function Y4(e){return sr(this,arguments,function*(){let t=e.getReader();try{for(;;){let{value:c,done:s}=yield q1(t.read());if(s)return yield q1(void 0);yield yield q1(c)}}finally{t.releaseLock()}})}function Q4(e){return N(e?.getReader)}function P(e){if(e instanceof R)return e;if(e!=null){if($4(e))return g9(e);if(Ee(e))return M9(e);if(U4(e))return C9(e);if(G4(e))return rr(e);if(Z4(e))return L9(e);if(Q4(e))return y9(e)}throw q4(e)}function g9(e){return new R(n=>{let t=e[xe]();if(N(t.subscribe))return t.subscribe(n);throw new TypeError("Provided object does not correctly implement Symbol.observable")})}function M9(e){return new R(n=>{for(let t=0;t<e.length&&!n.closed;t++)n.next(e[t]);n.complete()})}function C9(e){return new R(n=>{e.then(t=>{n.closed||(n.next(t),n.complete())},t=>n.error(t)).then(null,B4)})}function L9(e){return new R(n=>{for(let t of e)if(n.next(t),n.closed)return;n.complete()})}function rr(e){return new R(n=>{v9(e,n).catch(t=>n.error(t))})}function y9(e){return rr(Y4(e))}function v9(e,n){var t,c,s,o;return cr(this,void 0,void 0,function*(){try{for(t=or(e);c=yield t.next(),!c.done;){let r=c.value;if(n.next(r),n.closed)return}}catch(r){s={error:r}}finally{try{c&&!c.done&&(o=t.return)&&(yield o.call(t))}finally{if(s)throw s.error}}n.complete()})}function ir(e){return w((n,t)=>{let c=!1,s=null,o=null,r=!1,i=()=>{if(o?.unsubscribe(),o=null,c){c=!1;let a=s;s=null,t.next(a)}r&&t.complete()},l=()=>{o=null,r&&t.complete()};n.subscribe(E(t,a=>{c=!0,s=a,o||P(e(a)).subscribe(o=E(t,i,l))},()=>{r=!0,(!c||!o||o.closed)&&t.complete()}))})}var X4=class extends W{constructor(n,t){super()}schedule(n,t=0){return this}};var E3={setInterval(e,n,...t){let{delegate:c}=E3;return c?.setInterval?c.setInterval(e,n,...t):setInterval(e,n,...t)},clearInterval(e){let{delegate:n}=E3;return(n?.clearInterval||clearInterval)(e)},delegate:void 0};var D1=class extends X4{constructor(n,t){super(n,t),this.scheduler=n,this.work=t,this.pending=!1}schedule(n,t=0){var c;if(this.closed)return this;this.state=n;let s=this.id,o=this.scheduler;return s!=null&&(this.id=this.recycleAsyncId(o,s,t)),this.pending=!0,this.delay=t,this.id=(c=this.id)!==null&&c!==void 0?c:this.requestAsyncId(o,this.id,t),this}requestAsyncId(n,t,c=0){return E3.setInterval(n.flush.bind(n,this),c)}recycleAsyncId(n,t,c=0){if(c!=null&&this.delay===c&&this.pending===!1)return t;t!=null&&E3.clearInterval(t)}execute(n,t){if(this.closed)return new Error("executing a cancelled action");this.pending=!1;let c=this._execute(n,t);if(c)return c;this.pending===!1&&this.id!=null&&(this.id=this.recycleAsyncId(this.scheduler,this.id,null))}_execute(n,t){let c=!1,s;try{this.work(n)}catch(o){c=!0,s=o||new Error("Scheduled action threw falsy error")}if(c)return this.unsubscribe(),s}unsubscribe(){if(!this.closed){let{id:n,scheduler:t}=this,{actions:c}=t;this.work=this.state=this.scheduler=null,this.pending=!1,H1(c,this),n!=null&&(this.id=this.recycleAsyncId(t,n,null)),this.delay=null,super.unsubscribe()}}};var I3={now(){return(I3.delegate||Date).now()},delegate:void 0};var Ie=class e{constructor(n,t=e.now){this.schedulerActionCtor=n,this.now=t}schedule(n,t=0,c){return new this.schedulerActionCtor(this,n).schedule(c,t)}};Ie.now=I3.now;var b1=class extends Ie{constructor(n,t=Ie.now){super(n,t),this.actions=[],this._active=!1}flush(n){let{actions:t}=this;if(this._active){t.push(n);return}let c;this._active=!0;do if(c=n.execute(n.state,n.delay))break;while(n=t.shift());if(this._active=!1,c){for(;n=t.shift();)n.unsubscribe();throw c}}};var W1=new b1(D1),lr=W1;function K4(e){return e&&N(e.schedule)}function ar(e){return e instanceof Date&&!isNaN(e)}function Z1(e=0,n,t=lr){let c=-1;return n!=null&&(K4(n)?t=n:c=n),new R(s=>{let o=ar(e)?+e-t.now():e;o<0&&(o=0);let r=0;return t.schedule(function(){s.closed||(s.next(r++),0<=c?this.schedule(void 0,c):s.complete())},o)})}function z9(e,n=W1){return ir(()=>Z1(e,n))}function xn(e){return e[e.length-1]}function J4(e){return N(xn(e))?e.pop():void 0}function x2(e){return K4(xn(e))?e.pop():void 0}function e0(e,n){return typeof xn(e)=="number"?e.pop():n}function m2(e,n,t,c=0,s=!1){let o=n.schedule(function(){t(),s?e.add(this.schedule(null,c)):this.unsubscribe()},c);if(e.add(o),!s)return o}function Nn(e){return w((n,t)=>{let c=null,s=!1,o;c=n.subscribe(E(t,void 0,void 0,r=>{o=P(e(r,Nn(e)(n))),c?(c.unsubscribe(),c=null,o.subscribe(t)):s=!0})),s&&(c.unsubscribe(),c=null,o.subscribe(t))})}var{isArray:D9}=Array,{getPrototypeOf:b9,prototype:w9,keys:x9}=Object;function t0(e){if(e.length===1){let n=e[0];if(D9(n))return{args:n,keys:null};if(N9(n)){let t=x9(n);return{args:t.map(c=>n[c]),keys:t}}}return{args:e,keys:null}}function N9(e){return e&&typeof e=="object"&&b9(e)===w9}function S3(e,n=0){return w((t,c)=>{t.subscribe(E(c,s=>m2(c,e,()=>c.next(s),n),()=>m2(c,e,()=>c.complete(),n),s=>m2(c,e,()=>c.error(s),n)))})}function n0(e,n=0){return w((t,c)=>{c.add(e.schedule(()=>t.subscribe(c),n))})}function fr(e,n){return P(e).pipe(n0(n),S3(n))}function ur(e,n){return P(e).pipe(n0(n),S3(n))}function dr(e,n){return new R(t=>{let c=0;return n.schedule(function(){c===e.length?t.complete():(t.next(e[c++]),t.closed||this.schedule())})})}function pr(e,n){return new R(t=>{let c;return m2(t,n,()=>{c=e[W4](),m2(t,n,()=>{let s,o;try{({value:s,done:o}=c.next())}catch(r){t.error(r);return}o?t.complete():t.next(s)},0,!0)}),()=>N(c?.return)&&c.return()})}function c0(e,n){if(!e)throw new Error("Iterable cannot be null");return new R(t=>{m2(t,n,()=>{let c=e[Symbol.asyncIterator]();m2(t,n,()=>{c.next().then(s=>{s.done?t.complete():t.next(s.value)})},0,!0)})})}function hr(e,n){return c0(Y4(e),n)}function mr(e,n){if(e!=null){if($4(e))return fr(e,n);if(Ee(e))return dr(e,n);if(U4(e))return ur(e,n);if(G4(e))return c0(e,n);if(Z4(e))return pr(e,n);if(Q4(e))return hr(e,n)}throw q4(e)}function s2(e,n){return n?mr(e,n):P(e)}function t2(e,n){return w((t,c)=>{let s=0;t.subscribe(E(c,o=>{c.next(e.call(n,o,s++))}))})}var{isArray:E9}=Array;function I9(e,n){return E9(n)?e(...n):e(n)}function Se(e){return t2(n=>I9(e,n))}function s0(e,n){return e.reduce((t,c,s)=>(t[c]=n[s],t),{})}function S9(...e){let n=x2(e),t=J4(e),{args:c,keys:s}=t0(e);if(c.length===0)return s2([],n);let o=new R(_9(c,n,s?r=>s0(s,r):u2));return t?o.pipe(Se(t)):o}function _9(e,n,t=u2){return c=>{gr(n,()=>{let{length:s}=e,o=new Array(s),r=s,i=s;for(let l=0;l<s;l++)gr(n,()=>{let a=s2(e[l],n),f=!1;a.subscribe(E(c,u=>{o[l]=u,f||(f=!0,i--),i||c.next(t(o.slice()))},()=>{--r||c.complete()}))},c)},c)}}function gr(e,n,t){e?m2(t,e,n):n()}function Mr(e,n,t,c,s,o,r,i){let l=[],a=0,f=0,u=!1,p=()=>{u&&!l.length&&!a&&n.complete()},d=g=>a<c?h(g):l.push(g),h=g=>{o&&n.next(g),a++;let z=!1;P(t(g,f++)).subscribe(E(n,I=>{s?.(I),o?d(I):n.next(I)},()=>{z=!0},void 0,()=>{if(z)try{for(a--;l.length&&a<c;){let I=l.shift();r?m2(n,r,()=>h(I)):h(I)}p()}catch(I){n.error(I)}}))};return e.subscribe(E(n,d,()=>{u=!0,p()})),()=>{i?.()}}function N2(e,n,t=1/0){return N(n)?N2((c,s)=>t2((o,r)=>n(c,o,s,r))(P(e(c,s))),t):(typeof n=="number"&&(t=n),w((c,s)=>Mr(c,s,e,t)))}function o0(e,n,t,c,s){return(o,r)=>{let i=t,l=n,a=0;o.subscribe(E(r,f=>{let u=a++;l=i?e(l,f,u):(i=!0,f),c&&r.next(l)},s&&(()=>{i&&r.next(l),r.complete()})))}}function Cr(e,n){return w(o0(e,n,arguments.length>=2,!1,!0))}var T9=(e,n)=>(e.push(n),e);function A9(){return w((e,n)=>{Cr(T9,[])(e).subscribe(n)})}function Y1(e=1/0){return N2(u2,e)}function Lr(){return Y1(1)}function r0(e,n){return N(n)?N2(e,n,1):N2(e,1)}var yr=De(e=>function(){e(this),this.name="ObjectUnsubscribedError",this.message="object unsubscribed"});var Y=(()=>{class e extends R{constructor(){super(),this.closed=!1,this.currentObservers=null,this.observers=[],this.isStopped=!1,this.hasError=!1,this.thrownError=null}lift(t){let c=new i0(this,this);return c.operator=t,c}_throwIfClosed(){if(this.closed)throw new yr}next(t){we(()=>{if(this._throwIfClosed(),!this.isStopped){this.currentObservers||(this.currentObservers=Array.from(this.observers));for(let c of this.currentObservers)c.next(t)}})}error(t){we(()=>{if(this._throwIfClosed(),!this.isStopped){this.hasError=this.isStopped=!0,this.thrownError=t;let{observers:c}=this;for(;c.length;)c.shift().error(t)}})}complete(){we(()=>{if(this._throwIfClosed(),!this.isStopped){this.isStopped=!0;let{observers:t}=this;for(;t.length;)t.shift().complete()}})}unsubscribe(){this.isStopped=this.closed=!0,this.observers=this.currentObservers=null}get observed(){var t;return((t=this.observers)===null||t===void 0?void 0:t.length)>0}_trySubscribe(t){return this._throwIfClosed(),super._trySubscribe(t)}_subscribe(t){return this._throwIfClosed(),this._checkFinalizedStatuses(t),this._innerSubscribe(t)}_innerSubscribe(t){let{hasError:c,isStopped:s,observers:o}=this;return c||s?Ln:(this.currentObservers=null,o.push(t),new W(()=>{this.currentObservers=null,H1(o,t)}))}_checkFinalizedStatuses(t){let{hasError:c,thrownError:s,isStopped:o}=this;c?t.error(s):o&&t.complete()}asObservable(){let t=new R;return t.source=this,t}}return e.create=(n,t)=>new i0(n,t),e})(),i0=class extends Y{constructor(n,t){super(),this.destination=n,this.source=t}next(n){var t,c;(c=(t=this.destination)===null||t===void 0?void 0:t.next)===null||c===void 0||c.call(t,n)}error(n){var t,c;(c=(t=this.destination)===null||t===void 0?void 0:t.error)===null||c===void 0||c.call(t,n)}complete(){var n,t;(t=(n=this.destination)===null||n===void 0?void 0:n.complete)===null||t===void 0||t.call(n)}_subscribe(n){var t,c;return(c=(t=this.source)===null||t===void 0?void 0:t.subscribe(n))!==null&&c!==void 0?c:Ln}};function k9(e,n=W1){return w((t,c)=>{let s=null,o=null,r=null,i=()=>{if(s){s.unsubscribe(),s=null;let a=o;o=null,c.next(a)}};function l(){let a=r+e,f=n.now();if(f<a){s=this.schedule(void 0,a-f),c.add(s);return}i()}t.subscribe(E(c,a=>{o=a,r=n.now(),s||(s=n.schedule(l,e),c.add(s))},()=>{i(),c.complete()},void 0,()=>{o=s=null}))})}function _3(e){return w((n,t)=>{let c=!1;n.subscribe(E(t,s=>{c=!0,t.next(s)},()=>{c||t.next(e),t.complete()}))})}function w1(...e){return Lr()(s2(e,x2(e)))}function vr(){return w((e,n)=>{e.subscribe(E(n,U1))})}function zr(e){return t2(()=>e)}function En(e,n){return n?t=>w1(n.pipe(Ne(1),vr()),t.pipe(En(e))):N2((t,c)=>P(e(t,c)).pipe(Ne(1),zr(t)))}function F9(e,n=W1){let t=Z1(e,n);return En(()=>t)}function _e(...e){let n=x2(e);return s2(e,n)}function In(e,n){let t=N(e)?e:()=>e,c=s=>s.error(t());return new R(n?s=>n.schedule(c,0,s):c)}function R9(e,n=u2){return e=e??O9,w((t,c)=>{let s,o=!0;t.subscribe(E(c,r=>{let i=n(r);(o||!e(s,i))&&(o=!1,s=i,c.next(r))}))})}function O9(e,n){return e===n}var P2=De(e=>function(){e(this),this.name="EmptyError",this.message="no elements in sequence"});function l0(e=P9){return w((n,t)=>{let c=!1;n.subscribe(E(t,s=>{c=!0,t.next(s)},()=>c?t.complete():t.error(e())))})}function P9(){return new P2}function T3(e){return w((n,t)=>{try{n.subscribe(t)}finally{t.add(e)}})}function V9(e,n){let t=arguments.length>=2;return c=>c.pipe(e?c1((s,o)=>e(s,o,c)):u2,Ne(1),t?_3(n):l0(()=>new P2))}function Sn(e){return e<=0?()=>s1:w((n,t)=>{let c=[];n.subscribe(E(t,s=>{c.push(s),e<c.length&&c.shift()},()=>{for(let s of c)t.next(s);t.complete()},void 0,()=>{c=null}))})}function j9(e,n){let t=arguments.length>=2;return c=>c.pipe(e?c1((s,o)=>e(s,o,c)):u2,Sn(1),t?_3(n):l0(()=>new P2))}function Dr(...e){let n=x2(e),t=e0(e,1/0);return w((c,s)=>{Y1(t)(s2([c,...e],n)).subscribe(s)})}function B9(...e){return Dr(...e)}function _n(){return w((e,n)=>{let t=null;e._refCount++;let c=E(n,void 0,void 0,void 0,()=>{if(!e||e._refCount<=0||0<--e._refCount){t=null;return}let s=e._connection,o=t;t=null,s&&(!o||s===o)&&s.unsubscribe(),n.unsubscribe()});e.subscribe(c),c.closed||(t=e.connect())})}var Tn=class extends R{constructor(n,t){super(),this.source=n,this.subjectFactory=t,this._subject=null,this._refCount=0,this._connection=null,Cn(n)&&(this.lift=n.lift)}_subscribe(n){return this.getSubject().subscribe(n)}getSubject(){let n=this._subject;return(!n||n.isStopped)&&(this._subject=this.subjectFactory()),this._subject}_teardown(){this._refCount=0;let{_connection:n}=this;this._subject=this._connection=null,n?.unsubscribe()}connect(){let n=this._connection;if(!n){n=this._connection=new W;let t=this.getSubject();n.add(this.source.subscribe(E(t,void 0,()=>{this._teardown(),t.complete()},c=>{this._teardown(),t.error(c)},()=>this._teardown()))),n.closed&&(this._connection=null,n=W.EMPTY)}return n}refCount(){return _n()(this)}};var x1=class extends Y{constructor(n){super(),this._value=n}get value(){return this.getValue()}_subscribe(n){let t=super._subscribe(n);return!t.closed&&n.next(this._value),t}getValue(){let{hasError:n,thrownError:t,_value:c}=this;if(n)throw t;return this._throwIfClosed(),c}next(n){super.next(this._value=n)}};var A3=class extends Y{constructor(n=1/0,t=1/0,c=I3){super(),this._bufferSize=n,this._windowTime=t,this._timestampProvider=c,this._buffer=[],this._infiniteTimeWindow=!0,this._infiniteTimeWindow=t===1/0,this._bufferSize=Math.max(1,n),this._windowTime=Math.max(1,t)}next(n){let{isStopped:t,_buffer:c,_infiniteTimeWindow:s,_timestampProvider:o,_windowTime:r}=this;t||(c.push(n),!s&&c.push(o.now()+r)),this._trimBuffer(),super.next(n)}_subscribe(n){this._throwIfClosed(),this._trimBuffer();let t=this._innerSubscribe(n),{_infiniteTimeWindow:c,_buffer:s}=this,o=s.slice();for(let r=0;r<o.length&&!n.closed;r+=c?1:2)n.next(o[r]);return this._checkFinalizedStatuses(n),t}_trimBuffer(){let{_bufferSize:n,_timestampProvider:t,_buffer:c,_infiniteTimeWindow:s}=this,o=(s?1:2)*n;if(n<1/0&&o<c.length&&c.splice(0,c.length-o),!s){let r=t.now(),i=0;for(let l=1;l<c.length&&c[l]<=r;l+=2)i=l;i&&c.splice(0,i+1)}}};function H9(e){let n=1/0,t;return e!=null&&(typeof e=="object"?{count:n=1/0,delay:t}=e:n=e),n<=0?()=>s1:w((c,s)=>{let o=0,r,i=()=>{if(r?.unsubscribe(),r=null,t!=null){let a=typeof t=="number"?Z1(t):P(t(o)),f=E(s,()=>{f.unsubscribe(),l()});a.subscribe(f)}else l()},l=()=>{let a=!1;r=c.subscribe(E(s,void 0,()=>{++o<n?r?i():a=!0:s.complete()})),a&&i()};l()})}function U9(e){return w((n,t)=>{let c,s=!1,o,r=()=>{c=n.subscribe(E(t,void 0,void 0,i=>{o||(o=new Y,P(e(o)).subscribe(E(t,()=>c?r():s=!0))),o&&o.next(i)})),s&&(c.unsubscribe(),c=null,s=!1,r())};r()})}function $9(e,n){return w(o0(e,n,arguments.length>=2,!0))}function kn(e={}){let{connector:n=()=>new Y,resetOnError:t=!0,resetOnComplete:c=!0,resetOnRefCountZero:s=!0}=e;return o=>{let r,i,l,a=0,f=!1,u=!1,p=()=>{i?.unsubscribe(),i=void 0},d=()=>{p(),r=l=void 0,f=u=!1},h=()=>{let g=r;d(),g?.unsubscribe()};return w((g,z)=>{a++,!u&&!f&&p();let I=l=l??n();z.add(()=>{a--,a===0&&!u&&!f&&(i=An(h,s))}),I.subscribe(z),!r&&a>0&&(r=new O2({next:j=>I.next(j),error:j=>{u=!0,p(),i=An(d,t,j),I.error(j)},complete:()=>{f=!0,p(),i=An(d,c),I.complete()}}),P(g).subscribe(r))})(o)}}function An(e,n,...t){if(n===!0){e();return}if(n===!1)return;let c=new O2({next:()=>{c.unsubscribe(),e()}});return P(n(...t)).subscribe(c)}function Fn(e,n,t){let c,s=!1;return e&&typeof e=="object"?{bufferSize:c=1/0,windowTime:n=1/0,refCount:s=!1,scheduler:t}=e:c=e??1/0,kn({connector:()=>new A3(c,n,t),resetOnError:!0,resetOnComplete:!1,resetOnRefCountZero:s})}function G9(e){return c1((n,t)=>e<=t)}function q9(...e){let n=x2(e);return w((t,c)=>{(n?w1(e,t,n):w1(e,t)).subscribe(c)})}function a0(e,n){return w((t,c)=>{let s=null,o=0,r=!1,i=()=>r&&!s&&c.complete();t.subscribe(E(c,l=>{s?.unsubscribe();let a=0,f=o++;P(e(l,f)).subscribe(s=E(c,u=>c.next(n?n(l,u,f,a++):u),()=>{s=null,i()}))},()=>{r=!0,i()}))})}function Rn(e){return w((n,t)=>{P(e).subscribe(E(t,()=>t.complete(),U1)),!t.closed&&n.subscribe(t)})}function W9(e,n,t){let c=N(e)||n||t?{next:e,error:n,complete:t}:e;return c?w((s,o)=>{var r;(r=c.subscribe)===null||r===void 0||r.call(c);let i=!0;s.subscribe(E(o,l=>{var a;(a=c.next)===null||a===void 0||a.call(c,l),o.next(l)},()=>{var l;i=!1,(l=c.complete)===null||l===void 0||l.call(c),o.complete()},l=>{var a;i=!1,(a=c.error)===null||a===void 0||a.call(c,l),o.error(l)},()=>{var l,a;i&&((l=c.unsubscribe)===null||l===void 0||l.call(c)),(a=c.finalize)===null||a===void 0||a.call(c)}))}):u2}function jn(e,n){return Object.is(e,n)}var K=null,f0=!1,Bn=1,E2=Symbol("SIGNAL");function A(e){let n=K;return K=e,n}function Hn(){return K}var Te={version:0,lastCleanEpoch:0,dirty:!1,producerNode:void 0,producerLastReadVersion:void 0,producerIndexOfThis:void 0,nextProducerIndex:0,liveConsumerNode:void 0,liveConsumerIndexOfThis:void 0,consumerAllowSignalWrites:!1,consumerIsAlwaysLive:!1,kind:"unknown",producerMustRecompute:()=>!1,producerRecomputeValue:()=>{},consumerMarkedDirty:()=>{},consumerOnSignalRead:()=>{}};function F3(e){if(f0)throw new Error("");if(K===null)return;K.consumerOnSignalRead(e);let n=K.nextProducerIndex++;if(m0(K),n<K.producerNode.length&&K.producerNode[n]!==e&&k3(K)){let t=K.producerNode[n];h0(t,K.producerIndexOfThis[n])}K.producerNode[n]!==e&&(K.producerNode[n]=e,K.producerIndexOfThis[n]=k3(K)?wr(e,K,n):0),K.producerLastReadVersion[n]=e.version}function br(){Bn++}function Un(e){if(!(k3(e)&&!e.dirty)&&!(!e.dirty&&e.lastCleanEpoch===Bn)){if(!e.producerMustRecompute(e)&&!p0(e)){Vn(e);return}e.producerRecomputeValue(e),Vn(e)}}function $n(e){if(e.liveConsumerNode===void 0)return;let n=f0;f0=!0;try{for(let t of e.liveConsumerNode)t.dirty||Z9(t)}finally{f0=n}}function Gn(){return K?.consumerAllowSignalWrites!==!1}function Z9(e){e.dirty=!0,$n(e),e.consumerMarkedDirty?.(e)}function Vn(e){e.dirty=!1,e.lastCleanEpoch=Bn}function R3(e){return e&&(e.nextProducerIndex=0),A(e)}function d0(e,n){if(A(n),!(!e||e.producerNode===void 0||e.producerIndexOfThis===void 0||e.producerLastReadVersion===void 0)){if(k3(e))for(let t=e.nextProducerIndex;t<e.producerNode.length;t++)h0(e.producerNode[t],e.producerIndexOfThis[t]);for(;e.producerNode.length>e.nextProducerIndex;)e.producerNode.pop(),e.producerLastReadVersion.pop(),e.producerIndexOfThis.pop()}}function p0(e){m0(e);for(let n=0;n<e.producerNode.length;n++){let t=e.producerNode[n],c=e.producerLastReadVersion[n];if(c!==t.version||(Un(t),c!==t.version))return!0}return!1}function O3(e){if(m0(e),k3(e))for(let n=0;n<e.producerNode.length;n++)h0(e.producerNode[n],e.producerIndexOfThis[n]);e.producerNode.length=e.producerLastReadVersion.length=e.producerIndexOfThis.length=0,e.liveConsumerNode&&(e.liveConsumerNode.length=e.liveConsumerIndexOfThis.length=0)}function wr(e,n,t){if(xr(e),e.liveConsumerNode.length===0&&Nr(e))for(let c=0;c<e.producerNode.length;c++)e.producerIndexOfThis[c]=wr(e.producerNode[c],e,c);return e.liveConsumerIndexOfThis.push(t),e.liveConsumerNode.push(n)-1}function h0(e,n){if(xr(e),e.liveConsumerNode.length===1&&Nr(e))for(let c=0;c<e.producerNode.length;c++)h0(e.producerNode[c],e.producerIndexOfThis[c]);let t=e.liveConsumerNode.length-1;if(e.liveConsumerNode[n]=e.liveConsumerNode[t],e.liveConsumerIndexOfThis[n]=e.liveConsumerIndexOfThis[t],e.liveConsumerNode.length--,e.liveConsumerIndexOfThis.length--,n<e.liveConsumerNode.length){let c=e.liveConsumerIndexOfThis[n],s=e.liveConsumerNode[n];m0(s),s.producerIndexOfThis[c]=n}}function k3(e){return e.consumerIsAlwaysLive||(e?.liveConsumerNode?.length??0)>0}function m0(e){e.producerNode??=[],e.producerIndexOfThis??=[],e.producerLastReadVersion??=[]}function xr(e){e.liveConsumerNode??=[],e.liveConsumerIndexOfThis??=[]}function Nr(e){return e.producerNode!==void 0}function qn(e,n){let t=Object.create(Y9);t.computation=e,n!==void 0&&(t.equal=n);let c=()=>{if(Un(t),F3(t),t.value===u0)throw t.error;return t.value};return c[E2]=t,c}var On=Symbol("UNSET"),Pn=Symbol("COMPUTING"),u0=Symbol("ERRORED"),Y9=B(_({},Te),{value:On,dirty:!0,error:null,equal:jn,kind:"computed",producerMustRecompute(e){return e.value===On||e.value===Pn},producerRecomputeValue(e){if(e.value===Pn)throw new Error("Detected cycle in computations.");let n=e.value;e.value=Pn;let t=R3(e),c,s=!1;try{c=e.computation(),A(null),s=n!==On&&n!==u0&&c!==u0&&e.equal(n,c)}catch(o){c=u0,e.error=o}finally{d0(e,t)}if(s){e.value=n;return}e.value=c,e.version++}});function Q9(){throw new Error}var Er=Q9;function Ir(e){Er(e)}function Wn(e){Er=e}var X9=null;function Zn(e,n){let t=Object.create(g0);t.value=e,n!==void 0&&(t.equal=n);let c=()=>(F3(t),t.value);return c[E2]=t,c}function P3(e,n){Gn()||Ir(e),e.equal(e.value,n)||(e.value=n,K9(e))}function Yn(e,n){Gn()||Ir(e),P3(e,n(e.value))}var g0=B(_({},Te),{equal:jn,value:void 0,kind:"signal"});function K9(e){e.version++,br(),$n(e),X9?.()}function Qn(e){let n=A(null);try{return e()}finally{A(n)}}var Xn;function V3(){return Xn}function o1(e){let n=Xn;return Xn=e,n}var M0=Symbol("NotFound");var Ae={schedule(e){let n=requestAnimationFrame,t=cancelAnimationFrame,{delegate:c}=Ae;c&&(n=c.requestAnimationFrame,t=c.cancelAnimationFrame);let s=n(o=>{t=void 0,e(o)});return new W(()=>t?.(s))},requestAnimationFrame(...e){let{delegate:n}=Ae;return(n?.requestAnimationFrame||requestAnimationFrame)(...e)},cancelAnimationFrame(...e){let{delegate:n}=Ae;return(n?.cancelAnimationFrame||cancelAnimationFrame)(...e)},delegate:void 0};var C0=class extends D1{constructor(n,t){super(n,t),this.scheduler=n,this.work=t}schedule(n,t=0){return t>0?super.schedule(n,t):(this.delay=t,this.state=n,this.scheduler.flush(this),this)}execute(n,t){return t>0||this.closed?super.execute(n,t):this._execute(n,t)}requestAsyncId(n,t,c=0){return c!=null&&c>0||c==null&&this.delay>0?super.requestAsyncId(n,t,c):(n.flush(this),0)}};var L0=class extends b1{};var nf=new L0(C0);var y0=class extends D1{constructor(n,t){super(n,t),this.scheduler=n,this.work=t}requestAsyncId(n,t,c=0){return c!==null&&c>0?super.requestAsyncId(n,t,c):(n.actions.push(this),n._scheduled||(n._scheduled=Ae.requestAnimationFrame(()=>n.flush(void 0))))}recycleAsyncId(n,t,c=0){var s;if(c!=null?c>0:this.delay>0)return super.recycleAsyncId(n,t,c);let{actions:o}=n;t!=null&&t===n._scheduled&&((s=o[o.length-1])===null||s===void 0?void 0:s.id)!==t&&(Ae.cancelAnimationFrame(t),n._scheduled=void 0)}};var v0=class extends b1{flush(n){this._active=!0;let t;n?t=n.id:(t=this._scheduled,this._scheduled=void 0);let{actions:c}=this,s;n=n||c.shift();do if(s=n.execute(n.state,n.delay))break;while((n=c[0])&&n.id===t&&c.shift());if(this._active=!1,s){for(;(n=c[0])&&n.id===t&&c.shift();)n.unsubscribe();throw s}}};var cf=new v0(y0);function sf(e){return!!e&&(e instanceof R||N(e.lift)&&N(e.subscribe))}function of(e,n){let t=typeof n=="object";return new Promise((c,s)=>{let o=!1,r;e.subscribe({next:i=>{r=i,o=!0},error:s,complete:()=>{o?c(r):t?c(n.defaultValue):s(new P2)}})})}function rf(e,n){let t=typeof n=="object";return new Promise((c,s)=>{let o=new O2({next:r=>{c(r),o.unsubscribe()},error:s,complete:()=>{t?c(n.defaultValue):s(new P2)}});e.subscribe(o)})}function lf(e){return new R(n=>{P(e()).subscribe(n)})}function Kn(...e){let n=J4(e),{args:t,keys:c}=t0(e),s=new R(o=>{let{length:r}=t;if(!r){o.complete();return}let i=new Array(r),l=r,a=r;for(let f=0;f<r;f++){let u=!1;P(t[f]).subscribe(E(o,p=>{u||(u=!0,a--),i[f]=p},()=>l--,void 0,()=>{(!l||!u)&&(a||o.next(c?s0(c,i):i),o.complete())}))}});return n?s.pipe(Se(n)):s}var af=["addListener","removeListener"],ff=["addEventListener","removeEventListener"],uf=["on","off"];function Jn(e,n,t,c){if(N(t)&&(c=t,t=void 0),c)return Jn(e,n,t).pipe(Se(c));let[s,o]=hf(e)?ff.map(r=>i=>e[r](n,i,t)):df(e)?af.map(Sr(e,n)):pf(e)?uf.map(Sr(e,n)):[];if(!s&&Ee(e))return N2(r=>Jn(r,n,t))(P(e));if(!s)throw new TypeError("Invalid event target");return new R(r=>{let i=(...l)=>r.next(1<l.length?l:l[0]);return s(i),()=>o(i)})}function Sr(e,n){return t=>c=>e[t](n,c)}function df(e){return N(e.addListener)&&N(e.removeListener)}function pf(e){return N(e.on)&&N(e.off)}function hf(e){return N(e.addEventListener)&&N(e.removeEventListener)}function e6(...e){let n=x2(e),t=e0(e,1/0),c=e;return c.length?c.length===1?P(c[0]):Y1(t)(s2(c,n)):s1}var yi="https://angular.dev/best-practices/security#preventing-cross-site-scripting-xss",D=class extends Error{code;constructor(n,t){super(xc(n,t)),this.code=n}};function mf(e){return`NG0${Math.abs(e)}`}function xc(e,n){return`${mf(e)}${n?": "+n:""}`}var vi=Symbol("InputSignalNode#UNSET"),gf=B(_({},g0),{transformFn:void 0,applyValueToInputSignal(e,n){P3(e,n)}});function zi(e,n){let t=Object.create(gf);t.value=e,t.transformFn=n?.transform;function c(){if(F3(t),t.value===vi){let s=null;throw new D(-950,s)}return t.value}return c[E2]=t,c}function J3(e){return{toString:e}.toString()}var z0="__parameters__";function Mf(e){return function(...t){if(e){let c=e(...t);for(let s in c)this[s]=c[s]}}}function Di(e,n,t){return J3(()=>{let c=Mf(n);function s(...o){if(this instanceof s)return c.apply(this,o),this;let r=new s(...o);return i.annotation=r,i;function i(l,a,f){let u=l.hasOwnProperty(z0)?l[z0]:Object.defineProperty(l,z0,{value:[]})[z0];for(;u.length<=f;)u.push(null);return(u[f]=u[f]||[]).push(r),l}}return s.prototype.ngMetadataName=e,s.annotationCls=s,s})}var je=globalThis;function H(e){for(let n in e)if(e[n]===H)return n;throw Error("Could not find renamed property on target object.")}function Cf(e,n){for(let t in n)n.hasOwnProperty(t)&&!e.hasOwnProperty(t)&&(e[t]=n[t])}function C2(e){if(typeof e=="string")return e;if(Array.isArray(e))return`[${e.map(C2).join(", ")}]`;if(e==null)return""+e;let n=e.overriddenName||e.name;if(n)return`${n}`;let t=e.toString();if(t==null)return""+t;let c=t.indexOf(`
4
+ `);return c>=0?t.slice(0,c):t}function m6(e,n){return e?n?`${e} ${n}`:e:n||""}var Lf=H({__forward_ref__:H});function l2(e){return e.__forward_ref__=l2,e.toString=function(){return C2(this())},e}function d2(e){return bi(e)?e():e}function bi(e){return typeof e=="function"&&e.hasOwnProperty(Lf)&&e.__forward_ref__===l2}function M(e){return{token:e.token,providedIn:e.providedIn||null,factory:e.factory,value:void 0}}function S2(e){return{providers:e.providers||[],imports:e.imports||[]}}function rt(e){return _r(e,wi)||_r(e,xi)}function RS(e){return rt(e)!==null}function _r(e,n){return e.hasOwnProperty(n)?e[n]:null}function yf(e){let n=e&&(e[wi]||e[xi]);return n||null}function Tr(e){return e&&(e.hasOwnProperty(Ar)||e.hasOwnProperty(vf))?e[Ar]:null}var wi=H({\u0275prov:H}),Ar=H({\u0275inj:H}),xi=H({ngInjectableDef:H}),vf=H({ngInjectorDef:H}),v=class{_desc;ngMetadataName="InjectionToken";\u0275prov;constructor(n,t){this._desc=n,this.\u0275prov=void 0,typeof t=="number"?this.__NG_ELEMENT_ID__=t:t!==void 0&&(this.\u0275prov=M({token:this,providedIn:t.providedIn||"root",factory:t.factory}))}get multi(){return this}toString(){return`InjectionToken ${this._desc}`}};function Ni(e){return e&&!!e.\u0275providers}var zf=H({\u0275cmp:H}),Df=H({\u0275dir:H}),bf=H({\u0275pipe:H}),wf=H({\u0275mod:H}),A0=H({\u0275fac:H}),U3=H({__NG_ELEMENT_ID__:H}),kr=H({__NG_ENV_ID__:H});function K1(e){return typeof e=="string"?e:e==null?"":String(e)}function xf(e){return typeof e=="function"?e.name||e.toString():typeof e=="object"&&e!=null&&typeof e.type=="function"?e.type.name||e.type.toString():K1(e)}function Ei(e,n){throw new D(-200,e)}function Nc(e,n){throw new D(-201,!1)}var F=function(e){return e[e.Default=0]="Default",e[e.Host=1]="Host",e[e.Self=2]="Self",e[e.SkipSelf=4]="SkipSelf",e[e.Optional=8]="Optional",e}(F||{}),g6;function Ii(){return g6}function g2(e){let n=g6;return g6=e,n}function Si(e,n,t){let c=rt(e);if(c&&c.providedIn=="root")return c.value===void 0?c.value=c.factory():c.value;if(t&F.Optional)return null;if(n!==void 0)return n;Nc(e,"Injector")}var Nf={},Q1=Nf,M6="__NG_DI_FLAG__",k0=class{injector;constructor(n){this.injector=n}retrieve(n,t){let c=t;return this.injector.get(n,c.optional?M0:Q1,c)}},F0="ngTempTokenPath",Ef="ngTokenPath",If=/\n/gm,Sf="\u0275",Fr="__source";function _f(e,n=F.Default){if(V3()===void 0)throw new D(-203,!1);if(V3()===null)return Si(e,void 0,n);{let t=V3(),c;return t instanceof k0?c=t.injector:c=t,c.get(e,n&F.Optional?null:void 0,n)}}function C(e,n=F.Default){return(Ii()||_f)(d2(e),n)}function L(e,n=F.Default){return C(e,it(n))}function it(e){return typeof e>"u"||typeof e=="number"?e:0|(e.optional&&8)|(e.host&&1)|(e.self&&2)|(e.skipSelf&&4)}function C6(e){let n=[];for(let t=0;t<e.length;t++){let c=d2(e[t]);if(Array.isArray(c)){if(c.length===0)throw new D(900,!1);let s,o=F.Default;for(let r=0;r<c.length;r++){let i=c[r],l=Tf(i);typeof l=="number"?l===-1?s=i.token:o|=l:s=i}n.push(C(s,o))}else n.push(C(c))}return n}function _i(e,n){return e[M6]=n,e.prototype[M6]=n,e}function Tf(e){return e[M6]}function Af(e,n,t,c){let s=e[F0];throw n[Fr]&&s.unshift(n[Fr]),e.message=kf(`
5
+ `+e.message,s,t,c),e[Ef]=s,e[F0]=null,e}function kf(e,n,t,c=null){e=e&&e.charAt(0)===`
6
+ `&&e.charAt(1)==Sf?e.slice(2):e;let s=C2(n);if(Array.isArray(n))s=n.map(C2).join(" -> ");else if(typeof n=="object"){let o=[];for(let r in n)if(n.hasOwnProperty(r)){let i=n[r];o.push(r+":"+(typeof i=="string"?JSON.stringify(i):C2(i)))}s=`{${o.join(", ")}}`}return`${t}${c?"("+c+")":""}[${s}]: ${e.replace(If,`
7
+ `)}`}var lt=_i(Di("Optional"),8);var Ti=_i(Di("SkipSelf"),4);function J1(e,n){let t=e.hasOwnProperty(A0);return t?e[A0]:null}function Ff(e,n,t){if(e.length!==n.length)return!1;for(let c=0;c<e.length;c++){let s=e[c],o=n[c];if(t&&(s=t(s),o=t(o)),o!==s)return!1}return!0}function Rf(e){return e.flat(Number.POSITIVE_INFINITY)}function Ec(e,n){e.forEach(t=>Array.isArray(t)?Ec(t,n):n(t))}function Ai(e,n,t){n>=e.length?e.push(t):e.splice(n,0,t)}function R0(e,n){return n>=e.length-1?e.pop():e.splice(n,1)[0]}function Of(e,n){let t=[];for(let c=0;c<e;c++)t.push(n);return t}function Pf(e,n,t,c){let s=e.length;if(s==n)e.push(t,c);else if(s===1)e.push(c,e[0]),e[0]=t;else{for(s--,e.push(e[s-1],e[s]);s>n;){let o=s-2;e[s]=e[o],s--}e[n]=t,e[n+1]=c}}function e4(e,n,t){let c=t4(e,n);return c>=0?e[c|1]=t:(c=~c,Pf(e,c,n,t)),c}function t6(e,n){let t=t4(e,n);if(t>=0)return e[t|1]}function t4(e,n){return Vf(e,n,1)}function Vf(e,n,t){let c=0,s=e.length>>t;for(;s!==c;){let o=c+(s-c>>1),r=e[o<<t];if(n===r)return o<<t;r>n?s=o:c=o+1}return~(s<<t)}var ee={},M2=[],$3=new v(""),ki=new v("",-1),Fi=new v(""),O0=class{get(n,t=Q1){if(t===Q1){let c=new Error(`NullInjectorError: No provider for ${C2(n)}!`);throw c.name="NullInjectorError",c}return t}};function Ri(e,n){let t=e[wf]||null;if(!t&&n===!0)throw new Error(`Type ${C2(e)} does not have '\u0275mod' property.`);return t}function te(e){return e[zf]||null}function jf(e){return e[Df]||null}function Bf(e){return e[bf]||null}function ue(e){return{\u0275providers:e}}function Hf(...e){return{\u0275providers:Oi(!0,e),\u0275fromNgModule:!0}}function Oi(e,...n){let t=[],c=new Set,s,o=r=>{t.push(r)};return Ec(n,r=>{let i=r;L6(i,o,[],c)&&(s||=[],s.push(i))}),s!==void 0&&Pi(s,o),t}function Pi(e,n){for(let t=0;t<e.length;t++){let{ngModule:c,providers:s}=e[t];Ic(s,o=>{n(o,c)})}}function L6(e,n,t,c){if(e=d2(e),!e)return!1;let s=null,o=Tr(e),r=!o&&te(e);if(!o&&!r){let l=e.ngModule;if(o=Tr(l),o)s=l;else return!1}else{if(r&&!r.standalone)return!1;s=e}let i=c.has(s);if(r){if(i)return!1;if(c.add(s),r.dependencies){let l=typeof r.dependencies=="function"?r.dependencies():r.dependencies;for(let a of l)L6(a,n,t,c)}}else if(o){if(o.imports!=null&&!i){c.add(s);let a;try{Ec(o.imports,f=>{L6(f,n,t,c)&&(a||=[],a.push(f))})}finally{}a!==void 0&&Pi(a,n)}if(!i){let a=J1(s)||(()=>new s);n({provide:s,useFactory:a,deps:M2},s),n({provide:Fi,useValue:s,multi:!0},s),n({provide:$3,useValue:()=>C(s),multi:!0},s)}let l=o.providers;if(l!=null&&!i){let a=e;Ic(l,f=>{n(f,a)})}}else return!1;return s!==e&&e.providers!==void 0}function Ic(e,n){for(let t of e)Ni(t)&&(t=t.\u0275providers),Array.isArray(t)?Ic(t,n):n(t)}var Uf=H({provide:String,useValue:H});function Vi(e){return e!==null&&typeof e=="object"&&Uf in e}function $f(e){return!!(e&&e.useExisting)}function Gf(e){return!!(e&&e.useFactory)}function Be(e){return typeof e=="function"}function qf(e){return!!e.useClass}var at=new v(""),N0={},Rr={},n6;function ft(){return n6===void 0&&(n6=new O0),n6}var W2=class{},G3=class extends W2{parent;source;scopes;records=new Map;_ngOnDestroyHooks=new Set;_onDestroyHooks=[];get destroyed(){return this._destroyed}_destroyed=!1;injectorDefTypes;constructor(n,t,c,s){super(),this.parent=t,this.source=c,this.scopes=s,v6(n,r=>this.processProvider(r)),this.records.set(ki,ke(void 0,this)),s.has("environment")&&this.records.set(W2,ke(void 0,this));let o=this.records.get(at);o!=null&&typeof o.value=="string"&&this.scopes.add(o.value),this.injectorDefTypes=new Set(this.get(Fi,M2,F.Self))}retrieve(n,t){let c=t;return this.get(n,c.optional?M0:Q1,c)}destroy(){B3(this),this._destroyed=!0;let n=A(null);try{for(let c of this._ngOnDestroyHooks)c.ngOnDestroy();let t=this._onDestroyHooks;this._onDestroyHooks=[];for(let c of t)c()}finally{this.records.clear(),this._ngOnDestroyHooks.clear(),this.injectorDefTypes.clear(),A(n)}}onDestroy(n){return B3(this),this._onDestroyHooks.push(n),()=>this.removeOnDestroy(n)}runInContext(n){B3(this);let t=o1(this),c=g2(void 0),s;try{return n()}finally{o1(t),g2(c)}}get(n,t=Q1,c=F.Default){if(B3(this),n.hasOwnProperty(kr))return n[kr](this);c=it(c);let s,o=o1(this),r=g2(void 0);try{if(!(c&F.SkipSelf)){let l=this.records.get(n);if(l===void 0){let a=Xf(n)&&rt(n);a&&this.injectableDefInScope(a)?l=ke(y6(n),N0):l=null,this.records.set(n,l)}if(l!=null)return this.hydrate(n,l,c)}let i=c&F.Self?ft():this.parent;return t=c&F.Optional&&t===Q1?null:t,i.get(n,t)}catch(i){if(i.name==="NullInjectorError"){if((i[F0]=i[F0]||[]).unshift(C2(n)),o)throw i;return Af(i,n,"R3InjectorError",this.source)}else throw i}finally{g2(r),o1(o)}}resolveInjectorInitializers(){let n=A(null),t=o1(this),c=g2(void 0),s;try{let o=this.get($3,M2,F.Self);for(let r of o)r()}finally{o1(t),g2(c),A(n)}}toString(){let n=[],t=this.records;for(let c of t.keys())n.push(C2(c));return`R3Injector[${n.join(", ")}]`}processProvider(n){n=d2(n);let t=Be(n)?n:d2(n&&n.provide),c=Zf(n);if(!Be(n)&&n.multi===!0){let s=this.records.get(t);s||(s=ke(void 0,N0,!0),s.factory=()=>C6(s.multi),this.records.set(t,s)),t=n,s.multi.push(n)}this.records.set(t,c)}hydrate(n,t,c){let s=A(null);try{return t.value===Rr?Ei(C2(n)):t.value===N0&&(t.value=Rr,t.value=t.factory(void 0,c)),typeof t.value=="object"&&t.value&&Qf(t.value)&&this._ngOnDestroyHooks.add(t.value),t.value}finally{A(s)}}injectableDefInScope(n){if(!n.providedIn)return!1;let t=d2(n.providedIn);return typeof t=="string"?t==="any"||this.scopes.has(t):this.injectorDefTypes.has(t)}removeOnDestroy(n){let t=this._onDestroyHooks.indexOf(n);t!==-1&&this._onDestroyHooks.splice(t,1)}};function y6(e){let n=rt(e),t=n!==null?n.factory:J1(e);if(t!==null)return t;if(e instanceof v)throw new D(204,!1);if(e instanceof Function)return Wf(e);throw new D(204,!1)}function Wf(e){if(e.length>0)throw new D(204,!1);let t=yf(e);return t!==null?()=>t.factory(e):()=>new e}function Zf(e){if(Vi(e))return ke(void 0,e.useValue);{let n=ji(e);return ke(n,N0)}}function ji(e,n,t){let c;if(Be(e)){let s=d2(e);return J1(s)||y6(s)}else if(Vi(e))c=()=>d2(e.useValue);else if(Gf(e))c=()=>e.useFactory(...C6(e.deps||[]));else if($f(e))c=(s,o)=>C(d2(e.useExisting),o!==void 0&&o&F.Optional?F.Optional:void 0);else{let s=d2(e&&(e.useClass||e.provide));if(Yf(e))c=()=>new s(...C6(e.deps));else return J1(s)||y6(s)}return c}function B3(e){if(e.destroyed)throw new D(205,!1)}function ke(e,n,t=!1){return{factory:e,value:n,multi:t?[]:void 0}}function Yf(e){return!!e.deps}function Qf(e){return e!==null&&typeof e=="object"&&typeof e.ngOnDestroy=="function"}function Xf(e){return typeof e=="function"||typeof e=="object"&&e instanceof v}function v6(e,n){for(let t of e)Array.isArray(t)?v6(t,n):t&&Ni(t)?v6(t.\u0275providers,n):n(t)}function ut(e,n){let t;e instanceof G3?(B3(e),t=e):t=new k0(e);let c,s=o1(t),o=g2(void 0);try{return n()}finally{o1(s),g2(o)}}function Bi(){return Ii()!==void 0||V3()!=null}function Sc(e){if(!Bi())throw new D(-203,!1)}function Kf(e){return typeof e=="function"}var K2=0,T=1,S=2,i2=3,B2=4,y2=5,He=6,P0=7,J=8,Ue=9,r1=10,$=11,q3=12,Or=13,Je=14,z2=15,ne=16,Fe=17,i1=18,dt=19,Hi=20,N1=21,c6=22,ce=23,I2=24,Pe=25,Q=26,_c=1;var se=7,V0=8,$e=9,r2=10;function E1(e){return Array.isArray(e)&&typeof e[_c]=="object"}function f1(e){return Array.isArray(e)&&e[_c]===!0}function Tc(e){return(e.flags&4)!==0}function e3(e){return e.componentOffset>-1}function pt(e){return(e.flags&1)===1}function H2(e){return!!e.template}function j0(e){return(e[S]&512)!==0}function t3(e){return(e[S]&256)===256}var z6=class{previousValue;currentValue;firstChange;constructor(n,t,c){this.previousValue=n,this.currentValue=t,this.firstChange=c}isFirstChange(){return this.firstChange}};function Ui(e,n,t,c){n!==null?n.applyValueToInputSignal(n,c):e[t]=c}var n2=(()=>{let e=()=>$i;return e.ngInherit=!0,e})();function $i(e){return e.type.prototype.ngOnChanges&&(e.setInput=eu),Jf}function Jf(){let e=qi(this),n=e?.current;if(n){let t=e.previous;if(t===ee)e.previous=n;else for(let c in n)t[c]=n[c];e.current=null,this.ngOnChanges(n)}}function eu(e,n,t,c,s){let o=this.declaredInputs[c],r=qi(e)||tu(e,{previous:ee,current:null}),i=r.current||(r.current={}),l=r.previous,a=l[o];i[o]=new z6(a&&a.currentValue,t,l===ee),Ui(e,n,s,t)}var Gi="__ngSimpleChanges__";function qi(e){return e[Gi]||null}function tu(e,n){return e[Gi]=n}var Pr=null;var V=function(e,n=null,t){Pr?.(e,n,t)},nu="svg",cu="math";function Z2(e){for(;Array.isArray(e);)e=e[K2];return e}function su(e){for(;Array.isArray(e);){if(typeof e[_c]=="object")return e;e=e[K2]}return null}function Wi(e,n){return Z2(n[e])}function J2(e,n){return Z2(n[e.index])}function Ac(e,n){return e.data[n]}function ht(e,n){return e[n]}function ou(e,n,t,c){t>=e.data.length&&(e.data[t]=null,e.blueprint[t]=null),n[t]=c}function Y2(e,n){let t=n[e];return E1(t)?t:t[K2]}function ru(e){return(e[S]&4)===4}function kc(e){return(e[S]&128)===128}function iu(e){return f1(e[i2])}function I1(e,n){return n==null?null:e[n]}function Zi(e){e[Fe]=0}function Yi(e){e[S]&1024||(e[S]|=1024,kc(e)&&n3(e))}function lu(e,n){for(;e>0;)n=n[Je],e--;return n}function mt(e){return!!(e[S]&9216||e[I2]?.dirty)}function D6(e){e[r1].changeDetectionScheduler?.notify(8),e[S]&64&&(e[S]|=1024),mt(e)&&n3(e)}function n3(e){e[r1].changeDetectionScheduler?.notify(0);let n=oe(e);for(;n!==null&&!(n[S]&8192||(n[S]|=8192,!kc(n)));)n=oe(n)}function Qi(e,n){if(t3(e))throw new D(911,!1);e[N1]===null&&(e[N1]=[]),e[N1].push(n)}function au(e,n){if(e[N1]===null)return;let t=e[N1].indexOf(n);t!==-1&&e[N1].splice(t,1)}function oe(e){let n=e[i2];return f1(n)?n[i2]:n}function Fc(e){return e[P0]??=[]}function Rc(e){return e.cleanup??=[]}function fu(e,n,t,c){let s=Fc(n);s.push(t),e.firstCreatePass&&Rc(e).push(c,s.length-1)}var k={lFrame:s8(null),bindingsEnabled:!0,skipHydrationRootTNode:null};var b6=!1;function uu(){return k.lFrame.elementDepthCount}function du(){k.lFrame.elementDepthCount++}function pu(){k.lFrame.elementDepthCount--}function Oc(){return k.bindingsEnabled}function Xi(){return k.skipHydrationRootTNode!==null}function hu(e){return k.skipHydrationRootTNode===e}function mu(){k.skipHydrationRootTNode=null}function x(){return k.lFrame.lView}function G(){return k.lFrame.tView}function OS(e){return k.lFrame.contextLView=e,e[J]}function PS(e){return k.lFrame.contextLView=null,e}function a2(){let e=Ki();for(;e!==null&&e.type===64;)e=e.parent;return e}function Ki(){return k.lFrame.currentTNode}function gu(){let e=k.lFrame,n=e.currentTNode;return e.isParent?n:n.parent}function de(e,n){let t=k.lFrame;t.currentTNode=e,t.isParent=n}function Pc(){return k.lFrame.isParent}function Vc(){k.lFrame.isParent=!1}function Mu(){return k.lFrame.contextLView}function Ji(){return b6}function B0(e){let n=b6;return b6=e,n}function _1(){let e=k.lFrame,n=e.bindingRootIndex;return n===-1&&(n=e.bindingRootIndex=e.tView.bindingStartIndex),n}function Cu(){return k.lFrame.bindingIndex}function Lu(e){return k.lFrame.bindingIndex=e}function T1(){return k.lFrame.bindingIndex++}function jc(e){let n=k.lFrame,t=n.bindingIndex;return n.bindingIndex=n.bindingIndex+e,t}function yu(){return k.lFrame.inI18n}function vu(e,n){let t=k.lFrame;t.bindingIndex=t.bindingRootIndex=e,w6(n)}function zu(){return k.lFrame.currentDirectiveIndex}function w6(e){k.lFrame.currentDirectiveIndex=e}function e8(e){let n=k.lFrame.currentDirectiveIndex;return n===-1?null:e[n]}function t8(){return k.lFrame.currentQueryIndex}function Bc(e){k.lFrame.currentQueryIndex=e}function Du(e){let n=e[T];return n.type===2?n.declTNode:n.type===1?e[y2]:null}function n8(e,n,t){if(t&F.SkipSelf){let s=n,o=e;for(;s=s.parent,s===null&&!(t&F.Host);)if(s=Du(o),s===null||(o=o[Je],s.type&10))break;if(s===null)return!1;n=s,e=o}let c=k.lFrame=c8();return c.currentTNode=n,c.lView=e,!0}function Hc(e){let n=c8(),t=e[T];k.lFrame=n,n.currentTNode=t.firstChild,n.lView=e,n.tView=t,n.contextLView=e,n.bindingIndex=t.bindingStartIndex,n.inI18n=!1}function c8(){let e=k.lFrame,n=e===null?null:e.child;return n===null?s8(e):n}function s8(e){let n={currentTNode:null,isParent:!0,lView:null,tView:null,selectedIndex:-1,contextLView:null,elementDepthCount:0,currentNamespace:null,currentDirectiveIndex:-1,bindingRootIndex:-1,bindingIndex:-1,currentQueryIndex:0,parent:e,child:null,inI18n:!1};return e!==null&&(e.child=n),n}function o8(){let e=k.lFrame;return k.lFrame=e.parent,e.currentTNode=null,e.lView=null,e}var r8=o8;function Uc(){let e=o8();e.isParent=!0,e.tView=null,e.selectedIndex=-1,e.contextLView=null,e.elementDepthCount=0,e.currentDirectiveIndex=-1,e.currentNamespace=null,e.bindingRootIndex=-1,e.bindingIndex=-1,e.currentQueryIndex=0}function bu(e){return(k.lFrame.contextLView=lu(e,k.lFrame.contextLView))[J]}function u1(){return k.lFrame.selectedIndex}function re(e){k.lFrame.selectedIndex=e}function pe(){let e=k.lFrame;return Ac(e.tView,e.selectedIndex)}function wu(){return k.lFrame.currentNamespace}var i8=!0;function gt(){return i8}function Mt(e){i8=e}function xu(e,n,t){let{ngOnChanges:c,ngOnInit:s,ngDoCheck:o}=n.type.prototype;if(c){let r=$i(n);(t.preOrderHooks??=[]).push(e,r),(t.preOrderCheckHooks??=[]).push(e,r)}s&&(t.preOrderHooks??=[]).push(0-e,s),o&&((t.preOrderHooks??=[]).push(e,o),(t.preOrderCheckHooks??=[]).push(e,o))}function $c(e,n){for(let t=n.directiveStart,c=n.directiveEnd;t<c;t++){let o=e.data[t].type.prototype,{ngAfterContentInit:r,ngAfterContentChecked:i,ngAfterViewInit:l,ngAfterViewChecked:a,ngOnDestroy:f}=o;r&&(e.contentHooks??=[]).push(-t,r),i&&((e.contentHooks??=[]).push(t,i),(e.contentCheckHooks??=[]).push(t,i)),l&&(e.viewHooks??=[]).push(-t,l),a&&((e.viewHooks??=[]).push(t,a),(e.viewCheckHooks??=[]).push(t,a)),f!=null&&(e.destroyHooks??=[]).push(t,f)}}function E0(e,n,t){l8(e,n,3,t)}function I0(e,n,t,c){(e[S]&3)===t&&l8(e,n,t,c)}function s6(e,n){let t=e[S];(t&3)===n&&(t&=16383,t+=1,e[S]=t)}function l8(e,n,t,c){let s=c!==void 0?e[Fe]&65535:0,o=c??-1,r=n.length-1,i=0;for(let l=s;l<r;l++)if(typeof n[l+1]=="number"){if(i=n[l],c!=null&&i>=c)break}else n[l]<0&&(e[Fe]+=65536),(i<o||o==-1)&&(Nu(e,t,n,l),e[Fe]=(e[Fe]&4294901760)+l+2),l++}function Vr(e,n){V(4,e,n);let t=A(null);try{n.call(e)}finally{A(t),V(5,e,n)}}function Nu(e,n,t,c){let s=t[c]<0,o=t[c+1],r=s?-t[c]:t[c],i=e[r];s?e[S]>>14<e[Fe]>>16&&(e[S]&3)===n&&(e[S]+=16384,Vr(i,o)):Vr(i,o)}var Ve=-1,ie=class{factory;injectImpl;resolving=!1;canSeeViewProviders;multi;componentProviders;index;providerFactory;constructor(n,t,c){this.factory=n,this.canSeeViewProviders=t,this.injectImpl=c}};function Eu(e){return(e.flags&8)!==0}function Iu(e){return(e.flags&16)!==0}function Su(e,n,t){let c=0;for(;c<t.length;){let s=t[c];if(typeof s=="number"){if(s!==0)break;c++;let o=t[c++],r=t[c++],i=t[c++];e.setAttribute(n,r,i,o)}else{let o=s,r=t[++c];_u(o)?e.setProperty(n,o,r):e.setAttribute(n,o,r),c++}}return c}function a8(e){return e===3||e===4||e===6}function _u(e){return e.charCodeAt(0)===64}function Ge(e,n){if(!(n===null||n.length===0))if(e===null||e.length===0)e=n.slice();else{let t=-1;for(let c=0;c<n.length;c++){let s=n[c];typeof s=="number"?t=s:t===0||(t===-1||t===2?jr(e,t,s,null,n[++c]):jr(e,t,s,null,null))}}return e}function jr(e,n,t,c,s){let o=0,r=e.length;if(n===-1)r=-1;else for(;o<e.length;){let i=e[o++];if(typeof i=="number"){if(i===n){r=-1;break}else if(i>n){r=o-1;break}}}for(;o<e.length;){let i=e[o];if(typeof i=="number")break;if(i===t){s!==null&&(e[o+1]=s);return}o++,s!==null&&o++}r!==-1&&(e.splice(r,0,n),o=r+1),e.splice(o++,0,t),s!==null&&e.splice(o++,0,s)}function f8(e){return e!==Ve}function H0(e){return e&32767}function Tu(e){return e>>16}function U0(e,n){let t=Tu(e),c=n;for(;t>0;)c=c[Je],t--;return c}var x6=!0;function $0(e){let n=x6;return x6=e,n}var Au=256,u8=Au-1,d8=5,ku=0,q2={};function Fu(e,n,t){let c;typeof t=="string"?c=t.charCodeAt(0)||0:t.hasOwnProperty(U3)&&(c=t[U3]),c==null&&(c=t[U3]=ku++);let s=c&u8,o=1<<s;n.data[e+(s>>d8)]|=o}function G0(e,n){let t=p8(e,n);if(t!==-1)return t;let c=n[T];c.firstCreatePass&&(e.injectorIndex=n.length,o6(c.data,e),o6(n,null),o6(c.blueprint,null));let s=Gc(e,n),o=e.injectorIndex;if(f8(s)){let r=H0(s),i=U0(s,n),l=i[T].data;for(let a=0;a<8;a++)n[o+a]=i[r+a]|l[r+a]}return n[o+8]=s,o}function o6(e,n){e.push(0,0,0,0,0,0,0,0,n)}function p8(e,n){return e.injectorIndex===-1||e.parent&&e.parent.injectorIndex===e.injectorIndex||n[e.injectorIndex+8]===null?-1:e.injectorIndex}function Gc(e,n){if(e.parent&&e.parent.injectorIndex!==-1)return e.parent.injectorIndex;let t=0,c=null,s=n;for(;s!==null;){if(c=C8(s),c===null)return Ve;if(t++,s=s[Je],c.injectorIndex!==-1)return c.injectorIndex|t<<16}return Ve}function N6(e,n,t){Fu(e,n,t)}function Ru(e,n){if(n==="class")return e.classes;if(n==="style")return e.styles;let t=e.attrs;if(t){let c=t.length,s=0;for(;s<c;){let o=t[s];if(a8(o))break;if(o===0)s=s+2;else if(typeof o=="number")for(s++;s<c&&typeof t[s]=="string";)s++;else{if(o===n)return t[s+1];s=s+2}}}return null}function h8(e,n,t){if(t&F.Optional||e!==void 0)return e;Nc(n,"NodeInjector")}function m8(e,n,t,c){if(t&F.Optional&&c===void 0&&(c=null),(t&(F.Self|F.Host))===0){let s=e[Ue],o=g2(void 0);try{return s?s.get(n,c,t&F.Optional):Si(n,c,t&F.Optional)}finally{g2(o)}}return h8(c,n,t)}function g8(e,n,t,c=F.Default,s){if(e!==null){if(n[S]&2048&&!(c&F.Self)){let r=ju(e,n,t,c,q2);if(r!==q2)return r}let o=M8(e,n,t,c,q2);if(o!==q2)return o}return m8(n,t,c,s)}function M8(e,n,t,c,s){let o=Pu(t);if(typeof o=="function"){if(!n8(n,e,c))return c&F.Host?h8(s,t,c):m8(n,t,c,s);try{let r;if(r=o(c),r==null&&!(c&F.Optional))Nc(t);else return r}finally{r8()}}else if(typeof o=="number"){let r=null,i=p8(e,n),l=Ve,a=c&F.Host?n[z2][y2]:null;for((i===-1||c&F.SkipSelf)&&(l=i===-1?Gc(e,n):n[i+8],l===Ve||!Hr(c,!1)?i=-1:(r=n[T],i=H0(l),n=U0(l,n)));i!==-1;){let f=n[T];if(Br(o,i,f.data)){let u=Ou(i,n,t,r,c,a);if(u!==q2)return u}l=n[i+8],l!==Ve&&Hr(c,n[T].data[i+8]===a)&&Br(o,i,n)?(r=f,i=H0(l),n=U0(l,n)):i=-1}}return s}function Ou(e,n,t,c,s,o){let r=n[T],i=r.data[e+8],l=c==null?e3(i)&&x6:c!=r&&(i.type&3)!==0,a=s&F.Host&&o===i,f=S0(i,r,t,l,a);return f!==null?W3(n,r,f,i,s):q2}function S0(e,n,t,c,s){let o=e.providerIndexes,r=n.data,i=o&1048575,l=e.directiveStart,a=e.directiveEnd,f=o>>20,u=c?i:i+f,p=s?i+f:a;for(let d=u;d<p;d++){let h=r[d];if(d<l&&t===h||d>=l&&h.type===t)return d}if(s){let d=r[l];if(d&&H2(d)&&d.type===t)return l}return null}function W3(e,n,t,c,s){let o=e[t],r=n.data;if(o instanceof ie){let i=o;i.resolving&&Ei(xf(r[t]));let l=$0(i.canSeeViewProviders);i.resolving=!0;let a,f=i.injectImpl?g2(i.injectImpl):null,u=n8(e,c,F.Default);try{o=e[t]=i.factory(void 0,s,r,e,c),n.firstCreatePass&&t>=c.directiveStart&&xu(t,r[t],n)}finally{f!==null&&g2(f),$0(l),i.resolving=!1,r8()}}return o}function Pu(e){if(typeof e=="string")return e.charCodeAt(0)||0;let n=e.hasOwnProperty(U3)?e[U3]:void 0;return typeof n=="number"?n>=0?n&u8:Vu:n}function Br(e,n,t){let c=1<<e;return!!(t[n+(e>>d8)]&c)}function Hr(e,n){return!(e&F.Self)&&!(e&F.Host&&n)}var X1=class{_tNode;_lView;constructor(n,t){this._tNode=n,this._lView=t}get(n,t,c){return g8(this._tNode,this._lView,n,it(c),t)}};function Vu(){return new X1(a2(),x())}function _2(e){return J3(()=>{let n=e.prototype.constructor,t=n[A0]||E6(n),c=Object.prototype,s=Object.getPrototypeOf(e.prototype).constructor;for(;s&&s!==c;){let o=s[A0]||E6(s);if(o&&o!==t)return o;s=Object.getPrototypeOf(s)}return o=>new o})}function E6(e){return bi(e)?()=>{let n=E6(d2(e));return n&&n()}:J1(e)}function ju(e,n,t,c,s){let o=e,r=n;for(;o!==null&&r!==null&&r[S]&2048&&!j0(r);){let i=M8(o,r,t,c|F.Self,q2);if(i!==q2)return i;let l=o.parent;if(!l){let a=r[Hi];if(a){let f=a.get(t,q2,c);if(f!==q2)return f}l=C8(r),r=r[Je]}o=l}return s}function C8(e){let n=e[T],t=n.type;return t===2?n.declTNode:t===1?e[y2]:null}function Bu(e){return Ru(a2(),e)}function Ur(e,n=null,t=null,c){let s=L8(e,n,t,c);return s.resolveInjectorInitializers(),s}function L8(e,n=null,t=null,c,s=new Set){let o=[t||M2,Hf(e)];return c=c||(typeof e=="object"?void 0:C2(e)),new G3(o,n||ft(),c||null,s)}var p2=class e{static THROW_IF_NOT_FOUND=Q1;static NULL=new O0;static create(n,t){if(Array.isArray(n))return Ur({name:""},t,n,"");{let c=n.name??"";return Ur({name:c},n.parent,n.providers,c)}}static \u0275prov=M({token:e,providedIn:"any",factory:()=>C(ki)});static __NG_ELEMENT_ID__=-1};var Hu=new v("");Hu.__NG_ELEMENT_ID__=e=>{let n=a2();if(n===null)throw new D(204,!1);if(n.type&2)return n.value;if(e&F.Optional)return null;throw new D(204,!1)};var y8=!1,n4=(()=>{class e{static __NG_ELEMENT_ID__=Uu;static __NG_ENV_ID__=t=>t}return e})(),q0=class extends n4{_lView;constructor(n){super(),this._lView=n}onDestroy(n){let t=this._lView;return t3(t)?(n(),()=>{}):(Qi(t,n),()=>au(t,n))}};function Uu(){return new q0(x())}var le=class{},Ct=new v("",{providedIn:"root",factory:()=>!1});var v8=new v(""),z8=new v(""),he=(()=>{class e{taskId=0;pendingTasks=new Set;get _hasPendingTasks(){return this.hasPendingTasks.value}hasPendingTasks=new x1(!1);add(){this._hasPendingTasks||this.hasPendingTasks.next(!0);let t=this.taskId++;return this.pendingTasks.add(t),t}has(t){return this.pendingTasks.has(t)}remove(t){this.pendingTasks.delete(t),this.pendingTasks.size===0&&this._hasPendingTasks&&this.hasPendingTasks.next(!1)}ngOnDestroy(){this.pendingTasks.clear(),this._hasPendingTasks&&this.hasPendingTasks.next(!1)}static \u0275prov=M({token:e,providedIn:"root",factory:()=>new e})}return e})();var I6=class extends Y{__isAsync;destroyRef=void 0;pendingTasks=void 0;constructor(n=!1){super(),this.__isAsync=n,Bi()&&(this.destroyRef=L(n4,{optional:!0})??void 0,this.pendingTasks=L(he,{optional:!0})??void 0)}emit(n){let t=A(null);try{super.next(n)}finally{A(t)}}subscribe(n,t,c){let s=n,o=t||(()=>null),r=c;if(n&&typeof n=="object"){let l=n;s=l.next?.bind(l),o=l.error?.bind(l),r=l.complete?.bind(l)}this.__isAsync&&(o=this.wrapInTimeout(o),s&&(s=this.wrapInTimeout(s)),r&&(r=this.wrapInTimeout(r)));let i=super.subscribe({next:s,error:o,complete:r});return n instanceof W&&n.add(i),i}wrapInTimeout(n){return t=>{let c=this.pendingTasks?.add();setTimeout(()=>{try{n(t)}finally{c!==void 0&&this.pendingTasks?.remove(c)}})}}},o2=I6;function Z3(...e){}function D8(e){let n,t;function c(){e=Z3;try{t!==void 0&&typeof cancelAnimationFrame=="function"&&cancelAnimationFrame(t),n!==void 0&&clearTimeout(n)}catch{}}return n=setTimeout(()=>{e(),c()}),typeof requestAnimationFrame=="function"&&(t=requestAnimationFrame(()=>{e(),c()})),()=>c()}function $r(e){return queueMicrotask(()=>e()),()=>{e=Z3}}var qc="isAngularZone",W0=qc+"_ID",$u=0,e2=class e{hasPendingMacrotasks=!1;hasPendingMicrotasks=!1;isStable=!0;onUnstable=new o2(!1);onMicrotaskEmpty=new o2(!1);onStable=new o2(!1);onError=new o2(!1);constructor(n){let{enableLongStackTrace:t=!1,shouldCoalesceEventChangeDetection:c=!1,shouldCoalesceRunChangeDetection:s=!1,scheduleInRootZone:o=y8}=n;if(typeof Zone>"u")throw new D(908,!1);Zone.assertZonePatched();let r=this;r._nesting=0,r._outer=r._inner=Zone.current,Zone.TaskTrackingZoneSpec&&(r._inner=r._inner.fork(new Zone.TaskTrackingZoneSpec)),t&&Zone.longStackTraceZoneSpec&&(r._inner=r._inner.fork(Zone.longStackTraceZoneSpec)),r.shouldCoalesceEventChangeDetection=!s&&c,r.shouldCoalesceRunChangeDetection=s,r.callbackScheduled=!1,r.scheduleInRootZone=o,Wu(r)}static isInAngularZone(){return typeof Zone<"u"&&Zone.current.get(qc)===!0}static assertInAngularZone(){if(!e.isInAngularZone())throw new D(909,!1)}static assertNotInAngularZone(){if(e.isInAngularZone())throw new D(909,!1)}run(n,t,c){return this._inner.run(n,t,c)}runTask(n,t,c,s){let o=this._inner,r=o.scheduleEventTask("NgZoneEvent: "+s,n,Gu,Z3,Z3);try{return o.runTask(r,t,c)}finally{o.cancelTask(r)}}runGuarded(n,t,c){return this._inner.runGuarded(n,t,c)}runOutsideAngular(n){return this._outer.run(n)}},Gu={};function Wc(e){if(e._nesting==0&&!e.hasPendingMicrotasks&&!e.isStable)try{e._nesting++,e.onMicrotaskEmpty.emit(null)}finally{if(e._nesting--,!e.hasPendingMicrotasks)try{e.runOutsideAngular(()=>e.onStable.emit(null))}finally{e.isStable=!0}}}function qu(e){if(e.isCheckStableRunning||e.callbackScheduled)return;e.callbackScheduled=!0;function n(){D8(()=>{e.callbackScheduled=!1,S6(e),e.isCheckStableRunning=!0,Wc(e),e.isCheckStableRunning=!1})}e.scheduleInRootZone?Zone.root.run(()=>{n()}):e._outer.run(()=>{n()}),S6(e)}function Wu(e){let n=()=>{qu(e)},t=$u++;e._inner=e._inner.fork({name:"angular",properties:{[qc]:!0,[W0]:t,[W0+t]:!0},onInvokeTask:(c,s,o,r,i,l)=>{if(Zu(l))return c.invokeTask(o,r,i,l);try{return Gr(e),c.invokeTask(o,r,i,l)}finally{(e.shouldCoalesceEventChangeDetection&&r.type==="eventTask"||e.shouldCoalesceRunChangeDetection)&&n(),qr(e)}},onInvoke:(c,s,o,r,i,l,a)=>{try{return Gr(e),c.invoke(o,r,i,l,a)}finally{e.shouldCoalesceRunChangeDetection&&!e.callbackScheduled&&!Yu(l)&&n(),qr(e)}},onHasTask:(c,s,o,r)=>{c.hasTask(o,r),s===o&&(r.change=="microTask"?(e._hasPendingMicrotasks=r.microTask,S6(e),Wc(e)):r.change=="macroTask"&&(e.hasPendingMacrotasks=r.macroTask))},onHandleError:(c,s,o,r)=>(c.handleError(o,r),e.runOutsideAngular(()=>e.onError.emit(r)),!1)})}function S6(e){e._hasPendingMicrotasks||(e.shouldCoalesceEventChangeDetection||e.shouldCoalesceRunChangeDetection)&&e.callbackScheduled===!0?e.hasPendingMicrotasks=!0:e.hasPendingMicrotasks=!1}function Gr(e){e._nesting++,e.isStable&&(e.isStable=!1,e.onUnstable.emit(null))}function qr(e){e._nesting--,Wc(e)}var _6=class{hasPendingMicrotasks=!1;hasPendingMacrotasks=!1;isStable=!0;onUnstable=new o2;onMicrotaskEmpty=new o2;onStable=new o2;onError=new o2;run(n,t,c){return n.apply(t,c)}runGuarded(n,t,c){return n.apply(t,c)}runOutsideAngular(n){return n()}runTask(n,t,c,s){return n.apply(t,c)}};function Zu(e){return b8(e,"__ignore_ng_zone__")}function Yu(e){return b8(e,"__scheduler_tick__")}function b8(e,n){return!Array.isArray(e)||e.length!==1?!1:e[0]?.data?.[n]===!0}var Q2=class{_console=console;handleError(n){this._console.error("ERROR",n)}},Qu=new v("",{providedIn:"root",factory:()=>{let e=L(e2),n=L(Q2);return t=>e.runOutsideAngular(()=>n.handleError(t))}});function Wr(e,n){return zi(e,n)}function Xu(e){return zi(vi,e)}var VS=(Wr.required=Xu,Wr);function Ku(){return c3(a2(),x())}function c3(e,n){return new c2(J2(e,n))}var c2=(()=>{class e{nativeElement;constructor(t){this.nativeElement=t}static __NG_ELEMENT_ID__=Ku}return e})();function Ju(e){return e instanceof c2?e.nativeElement:e}function ed(e){return typeof e=="function"&&e[E2]!==void 0}function s3(e,n){let t=Zn(e,n?.equal),c=t[E2];return t.set=s=>P3(c,s),t.update=s=>Yn(c,s),t.asReadonly=td.bind(t),t}function td(){let e=this[E2];if(e.readonlyFn===void 0){let n=()=>this();n[E2]=e,e.readonlyFn=n}return e.readonlyFn}function w8(e){return ed(e)&&typeof e.set=="function"}function nd(){return this._results[Symbol.iterator]()}var T6=class{_emitDistinctChangesOnly;dirty=!0;_onDirty=void 0;_results=[];_changesDetected=!1;_changes=void 0;length=0;first=void 0;last=void 0;get changes(){return this._changes??=new Y}constructor(n=!1){this._emitDistinctChangesOnly=n}get(n){return this._results[n]}map(n){return this._results.map(n)}filter(n){return this._results.filter(n)}find(n){return this._results.find(n)}reduce(n,t){return this._results.reduce(n,t)}forEach(n){this._results.forEach(n)}some(n){return this._results.some(n)}toArray(){return this._results.slice()}toString(){return this._results.toString()}reset(n,t){this.dirty=!1;let c=Rf(n);(this._changesDetected=!Ff(this._results,c,t))&&(this._results=c,this.length=c.length,this.last=c[this.length-1],this.first=c[0])}notifyOnChanges(){this._changes!==void 0&&(this._changesDetected||!this._emitDistinctChangesOnly)&&this._changes.next(this)}onDirty(n){this._onDirty=n}setDirty(){this.dirty=!0,this._onDirty?.()}destroy(){this._changes!==void 0&&(this._changes.complete(),this._changes.unsubscribe())}[Symbol.iterator]=nd};function x8(e){return(e.flags&128)===128}var N8=function(e){return e[e.OnPush=0]="OnPush",e[e.Default=1]="Default",e}(N8||{}),E8=new Map,cd=0;function sd(){return cd++}function od(e){E8.set(e[dt],e)}function A6(e){E8.delete(e[dt])}var Zr="__ngContext__";function o3(e,n){E1(n)?(e[Zr]=n[dt],od(n)):e[Zr]=n}function I8(e){return _8(e[q3])}function S8(e){return _8(e[B2])}function _8(e){for(;e!==null&&!f1(e);)e=e[B2];return e}var k6;function T8(e){k6=e}function A8(){if(k6!==void 0)return k6;if(typeof document<"u")return document;throw new D(210,!1)}var Zc=new v("",{providedIn:"root",factory:()=>rd}),rd="ng",Yc=new v(""),r3=new v("",{providedIn:"platform",factory:()=>"unknown"});var jS=new v(""),Qc=new v("",{providedIn:"root",factory:()=>A8().body?.querySelector("[ngCspNonce]")?.getAttribute("ngCspNonce")||null}),Xc={breakpoints:[16,32,48,64,96,128,256,384,640,750,828,1080,1200,1920,2048,3840],placeholderResolution:30,disableImageSizeWarning:!1,disableImageLazyLoadWarning:!1},k8=new v("",{providedIn:"root",factory:()=>Xc});var id="h",ld="b";var F8=!1,ad=new v("",{providedIn:"root",factory:()=>F8});var Kc=function(e){return e[e.CHANGE_DETECTION=0]="CHANGE_DETECTION",e[e.AFTER_NEXT_RENDER=1]="AFTER_NEXT_RENDER",e}(Kc||{}),i3=new v(""),Yr=new Set;function A1(e){Yr.has(e)||(Yr.add(e),performance?.mark?.("mark_feature_usage",{detail:{feature:e}}))}var Jc=(()=>{class e{view;node;constructor(t,c){this.view=t,this.node=c}static __NG_ELEMENT_ID__=fd}return e})();function fd(){return new Jc(x(),a2())}var Re=function(e){return e[e.EarlyRead=0]="EarlyRead",e[e.Write=1]="Write",e[e.MixedReadWrite=2]="MixedReadWrite",e[e.Read=3]="Read",e}(Re||{}),R8=(()=>{class e{impl=null;execute(){this.impl?.execute()}static \u0275prov=M({token:e,providedIn:"root",factory:()=>new e})}return e})(),ud=[Re.EarlyRead,Re.Write,Re.MixedReadWrite,Re.Read],dd=(()=>{class e{ngZone=L(e2);scheduler=L(le);errorHandler=L(Q2,{optional:!0});sequences=new Set;deferredRegistrations=new Set;executing=!1;constructor(){L(i3,{optional:!0})}execute(){let t=this.sequences.size>0;t&&V(16),this.executing=!0;for(let c of ud)for(let s of this.sequences)if(!(s.erroredOrDestroyed||!s.hooks[c]))try{s.pipelinedValue=this.ngZone.runOutsideAngular(()=>this.maybeTrace(()=>{let o=s.hooks[c];return o(s.pipelinedValue)},s.snapshot))}catch(o){s.erroredOrDestroyed=!0,this.errorHandler?.handleError(o)}this.executing=!1;for(let c of this.sequences)c.afterRun(),c.once&&(this.sequences.delete(c),c.destroy());for(let c of this.deferredRegistrations)this.sequences.add(c);this.deferredRegistrations.size>0&&this.scheduler.notify(7),this.deferredRegistrations.clear(),t&&V(17)}register(t){let{view:c}=t;c!==void 0?((c[Pe]??=[]).push(t),n3(c),c[S]|=8192):this.executing?this.deferredRegistrations.add(t):this.addSequence(t)}addSequence(t){this.sequences.add(t),this.scheduler.notify(7)}unregister(t){this.executing&&this.sequences.has(t)?(t.erroredOrDestroyed=!0,t.pipelinedValue=void 0,t.once=!0):(this.sequences.delete(t),this.deferredRegistrations.delete(t))}maybeTrace(t,c){return c?c.run(Kc.AFTER_NEXT_RENDER,t):t()}static \u0275prov=M({token:e,providedIn:"root",factory:()=>new e})}return e})(),F6=class{impl;hooks;view;once;snapshot;erroredOrDestroyed=!1;pipelinedValue=void 0;unregisterOnDestroy;constructor(n,t,c,s,o,r=null){this.impl=n,this.hooks=t,this.view=c,this.once=s,this.snapshot=r,this.unregisterOnDestroy=o?.onDestroy(()=>this.destroy())}afterRun(){this.erroredOrDestroyed=!1,this.pipelinedValue=void 0,this.snapshot?.dispose(),this.snapshot=null}destroy(){this.impl.unregister(this),this.unregisterOnDestroy?.();let n=this.view?.[Pe];n&&(this.view[Pe]=n.filter(t=>t!==this))}};function pd(e,n){!n?.injector&&Sc(pd);let t=n?.injector??L(p2);return A1("NgAfterRender"),O8(e,t,n,!1)}function hd(e,n){!n?.injector&&Sc(hd);let t=n?.injector??L(p2);return A1("NgAfterNextRender"),O8(e,t,n,!0)}function md(e,n){if(e instanceof Function){let t=[void 0,void 0,void 0,void 0];return t[n]=e,t}else return[e.earlyRead,e.write,e.mixedReadWrite,e.read]}function O8(e,n,t,c){let s=n.get(R8);s.impl??=n.get(dd);let o=n.get(i3,null,{optional:!0}),r=t?.phase??Re.MixedReadWrite,i=t?.manualCleanup!==!0?n.get(n4):null,l=n.get(Jc,null,{optional:!0}),a=new F6(s.impl,md(e,r),l?.view,c,i,o?.snapshot(null));return s.impl.register(a),a}var gd=(e,n,t,c)=>{};function Md(e,n,t,c){gd(e,n,t,c)}var Cd=()=>null;function P8(e,n,t=!1){return Cd(e,n,t)}function V8(e,n){let t=e.contentQueries;if(t!==null){let c=A(null);try{for(let s=0;s<t.length;s+=2){let o=t[s],r=t[s+1];if(r!==-1){let i=e.data[r];Bc(o),i.contentQueries(2,n[r],r)}}}finally{A(c)}}}function R6(e,n,t){Bc(0);let c=A(null);try{n(e,t)}finally{A(c)}}function es(e,n,t){if(Tc(n)){let c=A(null);try{let s=n.directiveStart,o=n.directiveEnd;for(let r=s;r<o;r++){let i=e.data[r];if(i.contentQueries){let l=t[r];i.contentQueries(1,l,r)}}}finally{A(c)}}}var X2=function(e){return e[e.Emulated=0]="Emulated",e[e.None=2]="None",e[e.ShadowDom=3]="ShadowDom",e}(X2||{}),D0;function Ld(){if(D0===void 0&&(D0=null,je.trustedTypes))try{D0=je.trustedTypes.createPolicy("angular",{createHTML:e=>e,createScript:e=>e,createScriptURL:e=>e})}catch{}return D0}function Lt(e){return Ld()?.createHTML(e)||e}var b0;function j8(){if(b0===void 0&&(b0=null,je.trustedTypes))try{b0=je.trustedTypes.createPolicy("angular#unsafe-bypass",{createHTML:e=>e,createScript:e=>e,createScriptURL:e=>e})}catch{}return b0}function Qr(e){return j8()?.createHTML(e)||e}function Xr(e){return j8()?.createScriptURL(e)||e}var l1=class{changingThisBreaksApplicationSecurity;constructor(n){this.changingThisBreaksApplicationSecurity=n}toString(){return`SafeValue must use [property]=binding: ${this.changingThisBreaksApplicationSecurity} (see ${yi})`}},O6=class extends l1{getTypeName(){return"HTML"}},P6=class extends l1{getTypeName(){return"Style"}},V6=class extends l1{getTypeName(){return"Script"}},j6=class extends l1{getTypeName(){return"URL"}},B6=class extends l1{getTypeName(){return"ResourceURL"}};function D2(e){return e instanceof l1?e.changingThisBreaksApplicationSecurity:e}function d1(e,n){let t=yd(e);if(t!=null&&t!==n){if(t==="ResourceURL"&&n==="URL")return!0;throw new Error(`Required a safe ${n}, got a ${t} (see ${yi})`)}return t===n}function yd(e){return e instanceof l1&&e.getTypeName()||null}function B8(e){return new O6(e)}function H8(e){return new P6(e)}function U8(e){return new V6(e)}function $8(e){return new j6(e)}function G8(e){return new B6(e)}function vd(e){let n=new U6(e);return zd()?new H6(n):n}var H6=class{inertDocumentHelper;constructor(n){this.inertDocumentHelper=n}getInertBodyElement(n){n="<body><remove></remove>"+n;try{let t=new window.DOMParser().parseFromString(Lt(n),"text/html").body;return t===null?this.inertDocumentHelper.getInertBodyElement(n):(t.firstChild?.remove(),t)}catch{return null}}},U6=class{defaultDoc;inertDocument;constructor(n){this.defaultDoc=n,this.inertDocument=this.defaultDoc.implementation.createHTMLDocument("sanitization-inert")}getInertBodyElement(n){let t=this.inertDocument.createElement("template");return t.innerHTML=Lt(n),t}};function zd(){try{return!!new window.DOMParser().parseFromString(Lt(""),"text/html")}catch{return!1}}var Dd=/^(?!javascript:)(?:[a-z0-9+.-]+:|[^&:\/?#]*(?:[\/?#]|$))/i;function yt(e){return e=String(e),e.match(Dd)?e:"unsafe:"+e}function p1(e){let n={};for(let t of e.split(","))n[t]=!0;return n}function c4(...e){let n={};for(let t of e)for(let c in t)t.hasOwnProperty(c)&&(n[c]=!0);return n}var q8=p1("area,br,col,hr,img,wbr"),W8=p1("colgroup,dd,dt,li,p,tbody,td,tfoot,th,thead,tr"),Z8=p1("rp,rt"),bd=c4(Z8,W8),wd=c4(W8,p1("address,article,aside,blockquote,caption,center,del,details,dialog,dir,div,dl,figure,figcaption,footer,h1,h2,h3,h4,h5,h6,header,hgroup,hr,ins,main,map,menu,nav,ol,pre,section,summary,table,ul")),xd=c4(Z8,p1("a,abbr,acronym,audio,b,bdi,bdo,big,br,cite,code,del,dfn,em,font,i,img,ins,kbd,label,map,mark,picture,q,ruby,rp,rt,s,samp,small,source,span,strike,strong,sub,sup,time,track,tt,u,var,video")),Kr=c4(q8,wd,xd,bd),Y8=p1("background,cite,href,itemtype,longdesc,poster,src,xlink:href"),Nd=p1("abbr,accesskey,align,alt,autoplay,axis,bgcolor,border,cellpadding,cellspacing,class,clear,color,cols,colspan,compact,controls,coords,datetime,default,dir,download,face,headers,height,hidden,hreflang,hspace,ismap,itemscope,itemprop,kind,label,lang,language,loop,media,muted,nohref,nowrap,open,preload,rel,rev,role,rows,rowspan,rules,scope,scrolling,shape,size,sizes,span,srclang,srcset,start,summary,tabindex,target,title,translate,type,usemap,valign,value,vspace,width"),Ed=p1("aria-activedescendant,aria-atomic,aria-autocomplete,aria-busy,aria-checked,aria-colcount,aria-colindex,aria-colspan,aria-controls,aria-current,aria-describedby,aria-details,aria-disabled,aria-dropeffect,aria-errormessage,aria-expanded,aria-flowto,aria-grabbed,aria-haspopup,aria-hidden,aria-invalid,aria-keyshortcuts,aria-label,aria-labelledby,aria-level,aria-live,aria-modal,aria-multiline,aria-multiselectable,aria-orientation,aria-owns,aria-placeholder,aria-posinset,aria-pressed,aria-readonly,aria-relevant,aria-required,aria-roledescription,aria-rowcount,aria-rowindex,aria-rowspan,aria-selected,aria-setsize,aria-sort,aria-valuemax,aria-valuemin,aria-valuenow,aria-valuetext"),Id=c4(Y8,Nd,Ed),Sd=p1("script,style,template"),$6=class{sanitizedSomething=!1;buf=[];sanitizeChildren(n){let t=n.firstChild,c=!0,s=[];for(;t;){if(t.nodeType===Node.ELEMENT_NODE?c=this.startElement(t):t.nodeType===Node.TEXT_NODE?this.chars(t.nodeValue):this.sanitizedSomething=!0,c&&t.firstChild){s.push(t),t=Ad(t);continue}for(;t;){t.nodeType===Node.ELEMENT_NODE&&this.endElement(t);let o=Td(t);if(o){t=o;break}t=s.pop()}}return this.buf.join("")}startElement(n){let t=Jr(n).toLowerCase();if(!Kr.hasOwnProperty(t))return this.sanitizedSomething=!0,!Sd.hasOwnProperty(t);this.buf.push("<"),this.buf.push(t);let c=n.attributes;for(let s=0;s<c.length;s++){let o=c.item(s),r=o.name,i=r.toLowerCase();if(!Id.hasOwnProperty(i)){this.sanitizedSomething=!0;continue}let l=o.value;Y8[i]&&(l=yt(l)),this.buf.push(" ",r,'="',ei(l),'"')}return this.buf.push(">"),!0}endElement(n){let t=Jr(n).toLowerCase();Kr.hasOwnProperty(t)&&!q8.hasOwnProperty(t)&&(this.buf.push("</"),this.buf.push(t),this.buf.push(">"))}chars(n){this.buf.push(ei(n))}};function _d(e,n){return(e.compareDocumentPosition(n)&Node.DOCUMENT_POSITION_CONTAINED_BY)!==Node.DOCUMENT_POSITION_CONTAINED_BY}function Td(e){let n=e.nextSibling;if(n&&e!==n.previousSibling)throw Q8(n);return n}function Ad(e){let n=e.firstChild;if(n&&_d(e,n))throw Q8(n);return n}function Jr(e){let n=e.nodeName;return typeof n=="string"?n:"FORM"}function Q8(e){return new Error(`Failed to sanitize html because the element is clobbered: ${e.outerHTML}`)}var kd=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,Fd=/([^\#-~ |!])/g;function ei(e){return e.replace(/&/g,"&amp;").replace(kd,function(n){let t=n.charCodeAt(0),c=n.charCodeAt(1);return"&#"+((t-55296)*1024+(c-56320)+65536)+";"}).replace(Fd,function(n){return"&#"+n.charCodeAt(0)+";"}).replace(/</g,"&lt;").replace(/>/g,"&gt;")}var w0;function ts(e,n){let t=null;try{w0=w0||vd(e);let c=n?String(n):"";t=w0.getInertBodyElement(c);let s=5,o=c;do{if(s===0)throw new Error("Failed to sanitize html because the input is unstable");s--,c=o,o=t.innerHTML,t=w0.getInertBodyElement(c)}while(c!==o);let i=new $6().sanitizeChildren(ti(t)||t);return Lt(i)}finally{if(t){let c=ti(t)||t;for(;c.firstChild;)c.firstChild.remove()}}}function ti(e){return"content"in e&&Rd(e)?e.content:null}function Rd(e){return e.nodeType===Node.ELEMENT_NODE&&e.nodeName==="TEMPLATE"}var U2=function(e){return e[e.NONE=0]="NONE",e[e.HTML=1]="HTML",e[e.STYLE=2]="STYLE",e[e.SCRIPT=3]="SCRIPT",e[e.URL=4]="URL",e[e.RESOURCE_URL=5]="RESOURCE_URL",e}(U2||{});function X8(e){let n=ns();return n?Qr(n.sanitize(U2.HTML,e)||""):d1(e,"HTML")?Qr(D2(e)):ts(A8(),K1(e))}function Od(e){let n=ns();return n?n.sanitize(U2.URL,e)||"":d1(e,"URL")?D2(e):yt(K1(e))}function Pd(e){let n=ns();if(n)return Xr(n.sanitize(U2.RESOURCE_URL,e)||"");if(d1(e,"ResourceURL"))return Xr(D2(e));throw new D(904,!1)}function Vd(e,n){return n==="src"&&(e==="embed"||e==="frame"||e==="iframe"||e==="media"||e==="script")||n==="href"&&(e==="base"||e==="link")?Pd:Od}function BS(e,n,t){return Vd(n,t)(e)}function ns(){let e=x();return e&&e[r1].sanitizer}var jd=/^>|^->|<!--|-->|--!>|<!-$/g,Bd=/(<|>)/g,Hd="\u200B$1\u200B";function Ud(e){return e.replace(jd,n=>n.replace(Bd,Hd))}function HS(e){return e.ownerDocument.defaultView}function US(e){return e.ownerDocument}function $S(e){return e.ownerDocument.body}function K8(e){return e instanceof Function?e():e}function $d(e,n,t){let c=e.length;for(;;){let s=e.indexOf(n,t);if(s===-1)return s;if(s===0||e.charCodeAt(s-1)<=32){let o=n.length;if(s+o===c||e.charCodeAt(s+o)<=32)return s}t=s+1}}var J8="ng-template";function Gd(e,n,t,c){let s=0;if(c){for(;s<n.length&&typeof n[s]=="string";s+=2)if(n[s]==="class"&&$d(n[s+1].toLowerCase(),t,0)!==-1)return!0}else if(cs(e))return!1;if(s=n.indexOf(1,s),s>-1){let o;for(;++s<n.length&&typeof(o=n[s])=="string";)if(o.toLowerCase()===t)return!0}return!1}function cs(e){return e.type===4&&e.value!==J8}function qd(e,n,t){let c=e.type===4&&!t?J8:e.value;return n===c}function Wd(e,n,t){let c=4,s=e.attrs,o=s!==null?Qd(s):0,r=!1;for(let i=0;i<n.length;i++){let l=n[i];if(typeof l=="number"){if(!r&&!V2(c)&&!V2(l))return!1;if(r&&V2(l))continue;r=!1,c=l|c&1;continue}if(!r)if(c&4){if(c=2|c&1,l!==""&&!qd(e,l,t)||l===""&&n.length===1){if(V2(c))return!1;r=!0}}else if(c&8){if(s===null||!Gd(e,s,l,t)){if(V2(c))return!1;r=!0}}else{let a=n[++i],f=Zd(l,s,cs(e),t);if(f===-1){if(V2(c))return!1;r=!0;continue}if(a!==""){let u;if(f>o?u="":u=s[f+1].toLowerCase(),c&2&&a!==u){if(V2(c))return!1;r=!0}}}}return V2(c)||r}function V2(e){return(e&1)===0}function Zd(e,n,t,c){if(n===null)return-1;let s=0;if(c||!t){let o=!1;for(;s<n.length;){let r=n[s];if(r===e)return s;if(r===3||r===6)o=!0;else if(r===1||r===2){let i=n[++s];for(;typeof i=="string";)i=n[++s];continue}else{if(r===4)break;if(r===0){s+=4;continue}}s+=o?1:2}return-1}else return Xd(n,e)}function el(e,n,t=!1){for(let c=0;c<n.length;c++)if(Wd(e,n[c],t))return!0;return!1}function Yd(e){let n=e.attrs;if(n!=null){let t=n.indexOf(5);if((t&1)===0)return n[t+1]}return null}function Qd(e){for(let n=0;n<e.length;n++){let t=e[n];if(a8(t))return n}return e.length}function Xd(e,n){let t=e.indexOf(4);if(t>-1)for(t++;t<e.length;){let c=e[t];if(typeof c=="number")return-1;if(c===n)return t;t++}return-1}function Kd(e,n){e:for(let t=0;t<n.length;t++){let c=n[t];if(e.length===c.length){for(let s=0;s<e.length;s++)if(e[s]!==c[s])continue e;return!0}}return!1}function ni(e,n){return e?":not("+n.trim()+")":n}function Jd(e){let n=e[0],t=1,c=2,s="",o=!1;for(;t<e.length;){let r=e[t];if(typeof r=="string")if(c&2){let i=e[++t];s+="["+r+(i.length>0?'="'+i+'"':"")+"]"}else c&8?s+="."+r:c&4&&(s+=" "+r);else s!==""&&!V2(r)&&(n+=ni(o,s),s=""),c=r,o=o||!V2(c);t++}return s!==""&&(n+=ni(o,s)),n}function ep(e){return e.map(Jd).join(",")}function tp(e){let n=[],t=[],c=1,s=2;for(;c<e.length;){let o=e[c];if(typeof o=="string")s===2?o!==""&&n.push(o,e[++c]):s===8&&t.push(o);else{if(!V2(s))break;s=o}c++}return t.length&&n.push(1,...t),n}var h2={};function np(e,n){return e.createText(n)}function cp(e,n,t){e.setValue(n,t)}function sp(e,n){return e.createComment(Ud(n))}function tl(e,n,t){return e.createElement(n,t)}function Z0(e,n,t,c,s){e.insertBefore(n,t,c,s)}function nl(e,n,t){e.appendChild(n,t)}function ci(e,n,t,c,s){c!==null?Z0(e,n,t,c,s):nl(e,n,t)}function op(e,n,t){e.removeChild(null,n,t)}function rp(e,n,t){e.setAttribute(n,"style",t)}function ip(e,n,t){t===""?e.removeAttribute(n,"class"):e.setAttribute(n,"class",t)}function cl(e,n,t){let{mergedAttrs:c,classes:s,styles:o}=t;c!==null&&Su(e,n,c),s!==null&&ip(e,n,s),o!==null&&rp(e,n,o)}function ss(e,n,t,c,s,o,r,i,l,a,f){let u=Q+c,p=u+s,d=lp(u,p),h=typeof a=="function"?a():a;return d[T]={type:e,blueprint:d,template:t,queries:null,viewQuery:i,declTNode:n,data:d.slice().fill(null,u),bindingStartIndex:u,expandoStartIndex:p,hostBindingOpCodes:null,firstCreatePass:!0,firstUpdatePass:!0,staticViewQueries:!1,staticContentQueries:!1,preOrderHooks:null,preOrderCheckHooks:null,contentHooks:null,contentCheckHooks:null,viewHooks:null,viewCheckHooks:null,destroyHooks:null,cleanup:null,contentQueries:null,components:null,directiveRegistry:typeof o=="function"?o():o,pipeRegistry:typeof r=="function"?r():r,firstChild:null,schemas:l,consts:h,incompleteFirstPass:!1,ssrId:f}}function lp(e,n){let t=[];for(let c=0;c<n;c++)t.push(c<e?null:h2);return t}function ap(e){let n=e.tView;return n===null||n.incompleteFirstPass?e.tView=ss(1,null,e.template,e.decls,e.vars,e.directiveDefs,e.pipeDefs,e.viewQuery,e.schemas,e.consts,e.id):n}function os(e,n,t,c,s,o,r,i,l,a,f){let u=n.blueprint.slice();return u[K2]=s,u[S]=c|4|128|8|64|1024,(a!==null||e&&e[S]&2048)&&(u[S]|=2048),Zi(u),u[i2]=u[Je]=e,u[J]=t,u[r1]=r||e&&e[r1],u[$]=i||e&&e[$],u[Ue]=l||e&&e[Ue]||null,u[y2]=o,u[dt]=sd(),u[He]=f,u[Hi]=a,u[z2]=n.type==2?e[z2]:u,u}function fp(e,n,t){let c=J2(n,e),s=ap(t),o=e[r1].rendererFactory,r=rs(e,os(e,s,null,sl(t),c,n,null,o.createRenderer(c,t),null,null,null));return e[n.index]=r}function sl(e){let n=16;return e.signals?n=4096:e.onPush&&(n=64),n}function ol(e,n,t,c){if(t===0)return-1;let s=n.length;for(let o=0;o<t;o++)n.push(c),e.blueprint.push(c),e.data.push(null);return s}function rs(e,n){return e[q3]?e[Or][B2]=n:e[q3]=n,e[Or]=n,n}function GS(e=1){rl(G(),x(),u1()+e,!1)}function rl(e,n,t,c){if(!c)if((n[S]&3)===3){let o=e.preOrderCheckHooks;o!==null&&E0(n,o,t)}else{let o=e.preOrderHooks;o!==null&&I0(n,o,0,t)}re(t)}var vt=function(e){return e[e.None=0]="None",e[e.SignalBased=1]="SignalBased",e[e.HasDecoratorInputTransform=2]="HasDecoratorInputTransform",e}(vt||{});function G6(e,n,t,c){let s=A(null);try{let[o,r,i]=e.inputs[t],l=null;(r&vt.SignalBased)!==0&&(l=n[o][E2]),l!==null&&l.transformFn!==void 0?c=l.transformFn(c):i!==null&&(c=i.call(n,c)),e.setInput!==null?e.setInput(n,l,c,t,o):Ui(n,l,o,c)}finally{A(s)}}function il(e,n,t,c,s){let o=u1(),r=c&2;try{re(-1),r&&n.length>Q&&rl(e,n,Q,!1),V(r?2:0,s),t(c,s)}finally{re(o),V(r?3:1,s)}}function zt(e,n,t){gp(e,n,t),(t.flags&64)===64&&Mp(e,n,t)}function is(e,n,t=J2){let c=n.localNames;if(c!==null){let s=n.index+1;for(let o=0;o<c.length;o+=2){let r=c[o+1],i=r===-1?t(n,e):e[r];e[s++]=i}}}function up(e,n,t,c){let o=c.get(ad,F8)||t===X2.ShadowDom,r=e.selectRootElement(n,o);return dp(r),r}function dp(e){pp(e)}var pp=()=>null;function hp(e){return e==="class"?"className":e==="for"?"htmlFor":e==="formaction"?"formAction":e==="innerHtml"?"innerHTML":e==="readonly"?"readOnly":e==="tabindex"?"tabIndex":e}function l3(e,n,t,c,s,o,r,i){if(!i&&as(n,e,t,c,s)){e3(n)&&mp(t,n.index);return}if(n.type&3){let l=J2(n,t);c=hp(c),s=r!=null?r(s,n.value||"",c):s,o.setProperty(l,c,s)}else n.type&12}function mp(e,n){let t=Y2(n,e);t[S]&16||(t[S]|=64)}function gp(e,n,t){let c=t.directiveStart,s=t.directiveEnd;e3(t)&&fp(n,t,e.data[c+t.componentOffset]),e.firstCreatePass||G0(t,n);let o=t.initialInputs;for(let r=c;r<s;r++){let i=e.data[r],l=W3(n,e,r,t);if(o3(l,n),o!==null&&vp(n,r-c,l,i,t,o),H2(i)){let a=Y2(t.index,n);a[J]=W3(n,e,r,t)}}}function Mp(e,n,t){let c=t.directiveStart,s=t.directiveEnd,o=t.index,r=zu();try{re(o);for(let i=c;i<s;i++){let l=e.data[i],a=n[i];w6(i),(l.hostBindings!==null||l.hostVars!==0||l.hostAttrs!==null)&&Cp(l,a)}}finally{re(-1),w6(r)}}function Cp(e,n){e.hostBindings!==null&&e.hostBindings(1,n)}function ls(e,n){let t=e.directiveRegistry,c=null;if(t)for(let s=0;s<t.length;s++){let o=t[s];el(n,o.selectors,!1)&&(c??=[],H2(o)?c.unshift(o):c.push(o))}return c}function Lp(e,n,t,c,s,o){let r=J2(e,n);yp(n[$],r,o,e.value,t,c,s)}function yp(e,n,t,c,s,o,r){if(o==null)e.removeAttribute(n,s,t);else{let i=r==null?K1(o):r(o,c||"",s);e.setAttribute(n,s,i,t)}}function vp(e,n,t,c,s,o){let r=o[n];if(r!==null)for(let i=0;i<r.length;i+=2){let l=r[i],a=r[i+1];G6(c,t,l,a)}}function zp(e,n,t){return(e===null||H2(e))&&(t=su(t[n.index])),t[$]}function Dp(e,n){let t=e[Ue],c=t?t.get(Q2,null):null;c&&c.handleError(n)}function as(e,n,t,c,s){let o=e.inputs?.[c],r=e.hostDirectiveInputs?.[c],i=!1;if(r)for(let l=0;l<r.length;l+=2){let a=r[l],f=r[l+1],u=n.data[a];G6(u,t[a],f,s),i=!0}if(o)for(let l of o){let a=t[l],f=n.data[l];G6(f,a,c,s),i=!0}return i}function bp(e,n){let t=Y2(n,e),c=t[T];wp(c,t);let s=t[K2];s!==null&&t[He]===null&&(t[He]=P8(s,t[Ue])),V(18),fs(c,t,t[J]),V(19,t[J])}function wp(e,n){for(let t=n.length;t<e.blueprint.length;t++)n.push(e.blueprint[t])}function fs(e,n,t){Hc(n);try{let c=e.viewQuery;c!==null&&R6(1,c,t);let s=e.template;s!==null&&il(e,n,s,1,t),e.firstCreatePass&&(e.firstCreatePass=!1),n[i1]?.finishViewCreation(e),e.staticContentQueries&&V8(e,n),e.staticViewQueries&&R6(2,e.viewQuery,t);let o=e.components;o!==null&&xp(n,o)}catch(c){throw e.firstCreatePass&&(e.incompleteFirstPass=!0,e.firstCreatePass=!1),c}finally{n[S]&=-5,Uc()}}function xp(e,n){for(let t=0;t<n.length;t++)bp(e,n[t])}function s4(e,n,t,c){let s=A(null);try{let o=n.tView,i=e[S]&4096?4096:16,l=os(e,o,t,i,null,n,null,null,c?.injector??null,c?.embeddedViewInjector??null,c?.dehydratedView??null),a=e[n.index];l[ne]=a;let f=e[i1];return f!==null&&(l[i1]=f.createEmbeddedView(o)),fs(o,l,t),l}finally{A(s)}}function qe(e,n){return!n||n.firstChild===null||x8(e)}var Np;function us(e,n){return Np(e,n)}var a1=function(e){return e[e.Important=1]="Important",e[e.DashCase=2]="DashCase",e}(a1||{});function ds(e){return(e.flags&32)===32}function Oe(e,n,t,c,s){if(c!=null){let o,r=!1;f1(c)?o=c:E1(c)&&(r=!0,c=c[K2]);let i=Z2(c);e===0&&t!==null?s==null?nl(n,t,i):Z0(n,t,i,s||null,!0):e===1&&t!==null?Z0(n,t,i,s||null,!0):e===2?op(n,i,r):e===3&&n.destroyNode(i),o!=null&&Op(n,e,o,t,s)}}function Ep(e,n){ll(e,n),n[K2]=null,n[y2]=null}function Ip(e,n,t,c,s,o){c[K2]=s,c[y2]=n,wt(e,c,t,1,s,o)}function ll(e,n){n[r1].changeDetectionScheduler?.notify(9),wt(e,n,n[$],2,null,null)}function Sp(e){let n=e[q3];if(!n)return r6(e[T],e);for(;n;){let t=null;if(E1(n))t=n[q3];else{let c=n[r2];c&&(t=c)}if(!t){for(;n&&!n[B2]&&n!==e;)E1(n)&&r6(n[T],n),n=n[i2];n===null&&(n=e),E1(n)&&r6(n[T],n),t=n&&n[B2]}n=t}}function ps(e,n){let t=e[$e],c=t.indexOf(n);t.splice(c,1)}function Dt(e,n){if(t3(n))return;let t=n[$];t.destroyNode&&wt(e,n,t,3,null,null),Sp(n)}function r6(e,n){if(t3(n))return;let t=A(null);try{n[S]&=-129,n[S]|=256,n[I2]&&O3(n[I2]),Tp(e,n),_p(e,n),n[T].type===1&&n[$].destroy();let c=n[ne];if(c!==null&&f1(n[i2])){c!==n[i2]&&ps(c,n);let s=n[i1];s!==null&&s.detachView(e)}A6(n)}finally{A(t)}}function _p(e,n){let t=e.cleanup,c=n[P0];if(t!==null)for(let r=0;r<t.length-1;r+=2)if(typeof t[r]=="string"){let i=t[r+3];i>=0?c[i]():c[-i].unsubscribe(),r+=2}else{let i=c[t[r+1]];t[r].call(i)}c!==null&&(n[P0]=null);let s=n[N1];if(s!==null){n[N1]=null;for(let r=0;r<s.length;r++){let i=s[r];i()}}let o=n[ce];if(o!==null){n[ce]=null;for(let r of o)r.destroy()}}function Tp(e,n){let t;if(e!=null&&(t=e.destroyHooks)!=null)for(let c=0;c<t.length;c+=2){let s=n[t[c]];if(!(s instanceof ie)){let o=t[c+1];if(Array.isArray(o))for(let r=0;r<o.length;r+=2){let i=s[o[r]],l=o[r+1];V(4,i,l);try{l.call(i)}finally{V(5,i,l)}}else{V(4,s,o);try{o.call(s)}finally{V(5,s,o)}}}}}function al(e,n,t){return Ap(e,n.parent,t)}function Ap(e,n,t){let c=n;for(;c!==null&&c.type&168;)n=c,c=n.parent;if(c===null)return t[K2];if(e3(c)){let{encapsulation:s}=e.data[c.directiveStart+c.componentOffset];if(s===X2.None||s===X2.Emulated)return null}return J2(c,t)}function fl(e,n,t){return Fp(e,n,t)}function kp(e,n,t){return e.type&40?J2(e,t):null}var Fp=kp,si;function bt(e,n,t,c){let s=al(e,c,n),o=n[$],r=c.parent||n[y2],i=fl(r,c,n);if(s!=null)if(Array.isArray(t))for(let l=0;l<t.length;l++)ci(o,s,t[l],i,!1);else ci(o,s,t,i,!1);si!==void 0&&si(o,c,n,t,s)}function H3(e,n){if(n!==null){let t=n.type;if(t&3)return J2(n,e);if(t&4)return q6(-1,e[n.index]);if(t&8){let c=n.child;if(c!==null)return H3(e,c);{let s=e[n.index];return f1(s)?q6(-1,s):Z2(s)}}else{if(t&128)return H3(e,n.next);if(t&32)return us(n,e)()||Z2(e[n.index]);{let c=ul(e,n);if(c!==null){if(Array.isArray(c))return c[0];let s=oe(e[z2]);return H3(s,c)}else return H3(e,n.next)}}}return null}function ul(e,n){if(n!==null){let c=e[z2][y2],s=n.projection;return c.projection[s]}return null}function q6(e,n){let t=r2+e+1;if(t<n.length){let c=n[t],s=c[T].firstChild;if(s!==null)return H3(c,s)}return n[se]}function hs(e,n,t,c,s,o,r){for(;t!=null;){if(t.type===128){t=t.next;continue}let i=c[t.index],l=t.type;if(r&&n===0&&(i&&o3(Z2(i),c),t.flags|=2),!ds(t))if(l&8)hs(e,n,t.child,c,s,o,!1),Oe(n,e,s,i,o);else if(l&32){let a=us(t,c),f;for(;f=a();)Oe(n,e,s,f,o);Oe(n,e,s,i,o)}else l&16?dl(e,n,c,t,s,o):Oe(n,e,s,i,o);t=r?t.projectionNext:t.next}}function wt(e,n,t,c,s,o){hs(t,c,e.firstChild,n,s,o,!1)}function Rp(e,n,t){let c=n[$],s=al(e,t,n),o=t.parent||n[y2],r=fl(o,t,n);dl(c,0,n,t,s,r)}function dl(e,n,t,c,s,o){let r=t[z2],l=r[y2].projection[c.projection];if(Array.isArray(l))for(let a=0;a<l.length;a++){let f=l[a];Oe(n,e,s,f,o)}else{let a=l,f=r[i2];x8(c)&&(a.flags|=128),hs(e,n,a,f,s,o,!0)}}function Op(e,n,t,c,s){let o=t[se],r=Z2(t);o!==r&&Oe(n,e,c,o,s);for(let i=r2;i<t.length;i++){let l=t[i];wt(l[T],l,e,n,c,o)}}function Pp(e,n,t,c,s){if(n)s?e.addClass(t,c):e.removeClass(t,c);else{let o=c.indexOf("-")===-1?void 0:a1.DashCase;s==null?e.removeStyle(t,c,o):(typeof s=="string"&&s.endsWith("!important")&&(s=s.slice(0,-10),o|=a1.Important),e.setStyle(t,c,s,o))}}function Y0(e,n,t,c,s=!1){for(;t!==null;){if(t.type===128){t=s?t.projectionNext:t.next;continue}let o=n[t.index];o!==null&&c.push(Z2(o)),f1(o)&&Vp(o,c);let r=t.type;if(r&8)Y0(e,n,t.child,c);else if(r&32){let i=us(t,n),l;for(;l=i();)c.push(l)}else if(r&16){let i=ul(n,t);if(Array.isArray(i))c.push(...i);else{let l=oe(n[z2]);Y0(l[T],l,i,c,!0)}}t=s?t.projectionNext:t.next}return c}function Vp(e,n){for(let t=r2;t<e.length;t++){let c=e[t],s=c[T].firstChild;s!==null&&Y0(c[T],c,s,n)}e[se]!==e[K2]&&n.push(e[se])}function pl(e){if(e[Pe]!==null){for(let n of e[Pe])n.impl.addSequence(n);e[Pe].length=0}}var hl=[];function jp(e){return e[I2]??Bp(e)}function Bp(e){let n=hl.pop()??Object.create(Up);return n.lView=e,n}function Hp(e){e.lView[I2]!==e&&(e.lView=null,hl.push(e))}var Up=B(_({},Te),{consumerIsAlwaysLive:!0,kind:"template",consumerMarkedDirty:e=>{n3(e.lView)},consumerOnSignalRead(){this.lView[I2]=this}});function $p(e){let n=e[I2]??Object.create(Gp);return n.lView=e,n}var Gp=B(_({},Te),{consumerIsAlwaysLive:!0,kind:"template",consumerMarkedDirty:e=>{let n=oe(e.lView);for(;n&&!ml(n[T]);)n=oe(n);n&&Yi(n)},consumerOnSignalRead(){this.lView[I2]=this}});function ml(e){return e.type!==2}function gl(e){if(e[ce]===null)return;let n=!0;for(;n;){let t=!1;for(let c of e[ce])c.dirty&&(t=!0,c.zone===null||Zone.current===c.zone?c.run():c.zone.run(()=>c.run()));n=t&&!!(e[S]&8192)}}var qp=100;function Ml(e,n=!0,t=0){let s=e[r1].rendererFactory,o=!1;o||s.begin?.();try{Wp(e,t)}catch(r){throw n&&Dp(e,r),r}finally{o||s.end?.()}}function Wp(e,n){let t=Ji();try{B0(!0),W6(e,n);let c=0;for(;mt(e);){if(c===qp)throw new D(103,!1);c++,W6(e,1)}}finally{B0(t)}}function Zp(e,n,t,c){if(t3(n))return;let s=n[S],o=!1,r=!1;Hc(n);let i=!0,l=null,a=null;o||(ml(e)?(a=jp(n),l=R3(a)):Hn()===null?(i=!1,a=$p(n),l=R3(a)):n[I2]&&(O3(n[I2]),n[I2]=null));try{Zi(n),Lu(e.bindingStartIndex),t!==null&&il(e,n,t,2,c);let f=(s&3)===3;if(!o)if(f){let d=e.preOrderCheckHooks;d!==null&&E0(n,d,null)}else{let d=e.preOrderHooks;d!==null&&I0(n,d,0,null),s6(n,0)}if(r||Yp(n),gl(n),Cl(n,0),e.contentQueries!==null&&V8(e,n),!o)if(f){let d=e.contentCheckHooks;d!==null&&E0(n,d)}else{let d=e.contentHooks;d!==null&&I0(n,d,1),s6(n,1)}Xp(e,n);let u=e.components;u!==null&&yl(n,u,0);let p=e.viewQuery;if(p!==null&&R6(2,p,c),!o)if(f){let d=e.viewCheckHooks;d!==null&&E0(n,d)}else{let d=e.viewHooks;d!==null&&I0(n,d,2),s6(n,2)}if(e.firstUpdatePass===!0&&(e.firstUpdatePass=!1),n[c6]){for(let d of n[c6])d();n[c6]=null}o||(pl(n),n[S]&=-73)}catch(f){throw o||n3(n),f}finally{a!==null&&(d0(a,l),i&&Hp(a)),Uc()}}function Cl(e,n){for(let t=I8(e);t!==null;t=S8(t))for(let c=r2;c<t.length;c++){let s=t[c];Ll(s,n)}}function Yp(e){for(let n=I8(e);n!==null;n=S8(n)){if(!(n[S]&2))continue;let t=n[$e];for(let c=0;c<t.length;c++){let s=t[c];Yi(s)}}}function Qp(e,n,t){V(18);let c=Y2(n,e);Ll(c,t),V(19,c[J])}function Ll(e,n){kc(e)&&W6(e,n)}function W6(e,n){let c=e[T],s=e[S],o=e[I2],r=!!(n===0&&s&16);if(r||=!!(s&64&&n===0),r||=!!(s&1024),r||=!!(o?.dirty&&p0(o)),r||=!1,o&&(o.dirty=!1),e[S]&=-9217,r)Zp(c,e,c.template,e[J]);else if(s&8192){gl(e),Cl(e,1);let i=c.components;i!==null&&yl(e,i,1),pl(e)}}function yl(e,n,t){for(let c=0;c<n.length;c++)Qp(e,n[c],t)}function Xp(e,n){let t=e.hostBindingOpCodes;if(t!==null)try{for(let c=0;c<t.length;c++){let s=t[c];if(s<0)re(~s);else{let o=s,r=t[++c],i=t[++c];vu(r,o);let l=n[o];V(24,l),i(2,l),V(25,l)}}}finally{re(-1)}}function ms(e,n){let t=Ji()?64:1088;for(e[r1].changeDetectionScheduler?.notify(n);e;){e[S]|=t;let c=oe(e);if(j0(e)&&!c)return e;e=c}return null}function vl(e,n,t,c){return[e,!0,0,n,null,c,null,t,null,null]}function zl(e,n){let t=r2+n;if(t<e.length)return e[t]}function o4(e,n,t,c=!0){let s=n[T];if(Kp(s,n,e,t),c){let r=q6(t,e),i=n[$],l=i.parentNode(e[se]);l!==null&&Ip(s,e[y2],i,n,l,r)}let o=n[He];o!==null&&o.firstChild!==null&&(o.firstChild=null)}function Dl(e,n){let t=Y3(e,n);return t!==void 0&&Dt(t[T],t),t}function Y3(e,n){if(e.length<=r2)return;let t=r2+n,c=e[t];if(c){let s=c[ne];s!==null&&s!==e&&ps(s,c),n>0&&(e[t-1][B2]=c[B2]);let o=R0(e,r2+n);Ep(c[T],c);let r=o[i1];r!==null&&r.detachView(o[T]),c[i2]=null,c[B2]=null,c[S]&=-129}return c}function Kp(e,n,t,c){let s=r2+c,o=t.length;c>0&&(t[s-1][B2]=n),c<o-r2?(n[B2]=t[s],Ai(t,r2+c,n)):(t.push(n),n[B2]=null),n[i2]=t;let r=n[ne];r!==null&&t!==r&&bl(r,n);let i=n[i1];i!==null&&i.insertView(e),D6(n),n[S]|=128}function bl(e,n){let t=e[$e],c=n[i2];if(E1(c))e[S]|=2;else{let s=c[i2][z2];n[z2]!==s&&(e[S]|=2)}t===null?e[$e]=[n]:t.push(n)}var Q3=class{_lView;_cdRefInjectingView;notifyErrorHandler;_appRef=null;_attachedToViewContainer=!1;get rootNodes(){let n=this._lView,t=n[T];return Y0(t,n,t.firstChild,[])}constructor(n,t,c=!0){this._lView=n,this._cdRefInjectingView=t,this.notifyErrorHandler=c}get context(){return this._lView[J]}set context(n){this._lView[J]=n}get destroyed(){return t3(this._lView)}destroy(){if(this._appRef)this._appRef.detachView(this);else if(this._attachedToViewContainer){let n=this._lView[i2];if(f1(n)){let t=n[V0],c=t?t.indexOf(this):-1;c>-1&&(Y3(n,c),R0(t,c))}this._attachedToViewContainer=!1}Dt(this._lView[T],this._lView)}onDestroy(n){Qi(this._lView,n)}markForCheck(){ms(this._cdRefInjectingView||this._lView,4)}detach(){this._lView[S]&=-129}reattach(){D6(this._lView),this._lView[S]|=128}detectChanges(){this._lView[S]|=1024,Ml(this._lView,this.notifyErrorHandler)}checkNoChanges(){}attachToViewContainerRef(){if(this._appRef)throw new D(902,!1);this._attachedToViewContainer=!0}detachFromAppRef(){this._appRef=null;let n=j0(this._lView),t=this._lView[ne];t!==null&&!n&&ps(t,this._lView),ll(this._lView[T],this._lView)}attachToAppRef(n){if(this._attachedToViewContainer)throw new D(902,!1);this._appRef=n;let t=j0(this._lView),c=this._lView[ne];c!==null&&!t&&bl(c,this._lView),D6(this._lView)}};var S1=(()=>{class e{static __NG_ELEMENT_ID__=th}return e})(),Jp=S1,eh=class extends Jp{_declarationLView;_declarationTContainer;elementRef;constructor(n,t,c){super(),this._declarationLView=n,this._declarationTContainer=t,this.elementRef=c}get ssrId(){return this._declarationTContainer.tView?.ssrId||null}createEmbeddedView(n,t){return this.createEmbeddedViewImpl(n,t)}createEmbeddedViewImpl(n,t,c){let s=s4(this._declarationLView,this._declarationTContainer,n,{embeddedViewInjector:t,dehydratedView:c});return new Q3(s)}};function th(){return xt(a2(),x())}function xt(e,n){return e.type&4?new eh(n,e,c3(e,n)):null}function r4(e,n,t,c,s){let o=e.data[n];if(o===null)o=nh(e,n,t,c,s),yu()&&(o.flags|=32);else if(o.type&64){o.type=t,o.value=c,o.attrs=s;let r=gu();o.injectorIndex=r===null?-1:r.injectorIndex}return de(o,!0),o}function nh(e,n,t,c,s){let o=Ki(),r=Pc(),i=r?o:o&&o.parent,l=e.data[n]=sh(e,i,t,n,c,s);return ch(e,l,o,r),l}function ch(e,n,t,c){e.firstChild===null&&(e.firstChild=n),t!==null&&(c?t.child==null&&n.parent!==null&&(t.child=n):t.next===null&&(t.next=n,n.prev=t))}function sh(e,n,t,c,s,o){let r=n?n.injectorIndex:-1,i=0;return Xi()&&(i|=128),{type:t,index:c,insertBeforeIndex:null,injectorIndex:r,directiveStart:-1,directiveEnd:-1,directiveStylingLast:-1,componentOffset:-1,propertyBindings:null,flags:i,providerIndexes:0,value:s,attrs:o,mergedAttrs:null,localNames:null,initialInputs:null,inputs:null,hostDirectiveInputs:null,outputs:null,hostDirectiveOutputs:null,directiveToIndex:null,tView:null,next:null,prev:null,projectionNext:null,child:null,parent:n,projection:null,styles:null,stylesWithoutHost:null,residualStyles:void 0,classes:null,classesWithoutHost:null,residualClasses:void 0,classBindings:0,styleBindings:0}}var ZS=new RegExp(`^(\\d+)*(${ld}|${id})*(.*)`);var oh=()=>null;function We(e,n){return oh(e,n)}var rh=class{},wl=class{},Z6=class{resolveComponentFactory(n){throw Error(`No component factory found for ${C2(n)}.`)}},Nt=class{static NULL=new Z6},Ze=class{},b2=(()=>{class e{destroyNode=null;static __NG_ELEMENT_ID__=()=>ih()}return e})();function ih(){let e=x(),n=a2(),t=Y2(n.index,e);return(E1(t)?t:e)[$]}var lh=(()=>{class e{static \u0275prov=M({token:e,providedIn:"root",factory:()=>null})}return e})();var i6={},Y6=class{injector;parentInjector;constructor(n,t){this.injector=n,this.parentInjector=t}get(n,t,c){c=it(c);let s=this.injector.get(n,i6,c);return s!==i6||t===i6?s:this.parentInjector.get(n,t,c)}};function Q6(e,n,t){let c=t?e.styles:null,s=t?e.classes:null,o=0;if(n!==null)for(let r=0;r<n.length;r++){let i=n[r];if(typeof i=="number")o=i;else if(o==1)s=m6(s,i);else if(o==2){let l=i,a=n[++r];c=m6(c,l+": "+a+";")}}t?e.styles=c:e.stylesWithoutHost=c,t?e.classes=s:e.classesWithoutHost=s}function y(e,n=F.Default){let t=x();if(t===null)return C(e,n);let c=a2();return g8(c,t,d2(e),n)}function gs(e,n,t,c,s){let o=c===null?null:{"":-1},r=s(e,t);if(r!==null){let i,l=null,a=null,f=fh(r);f===null?i=r:[i,l,a]=f,ph(e,n,t,i,o,l,a)}o!==null&&c!==null&&ah(t,c,o)}function ah(e,n,t){let c=e.localNames=[];for(let s=0;s<n.length;s+=2){let o=t[n[s+1]];if(o==null)throw new D(-301,!1);c.push(n[s],o)}}function fh(e){let n=null,t=!1;for(let r=0;r<e.length;r++){let i=e[r];if(r===0&&H2(i)&&(n=i),i.findHostDirectiveDefs!==null){t=!0;break}}if(!t)return null;let c=null,s=null,o=null;for(let r of e)r.findHostDirectiveDefs!==null&&(c??=[],s??=new Map,o??=new Map,uh(r,c,o,s)),r===n&&(c??=[],c.push(r));return c!==null?(c.push(...n===null?e:e.slice(1)),[c,s,o]):null}function uh(e,n,t,c){let s=n.length;e.findHostDirectiveDefs(e,n,c),t.set(e,[s,n.length-1])}function dh(e,n,t){n.componentOffset=t,(e.components??=[]).push(n.index)}function ph(e,n,t,c,s,o,r){let i=c.length,l=!1;for(let p=0;p<i;p++){let d=c[p];!l&&H2(d)&&(l=!0,dh(e,t,p)),N6(G0(t,n),e,d.type)}Lh(t,e.data.length,i);for(let p=0;p<i;p++){let d=c[p];d.providersResolver&&d.providersResolver(d)}let a=!1,f=!1,u=ol(e,n,i,null);i>0&&(t.directiveToIndex=new Map);for(let p=0;p<i;p++){let d=c[p];if(t.mergedAttrs=Ge(t.mergedAttrs,d.hostAttrs),mh(e,t,n,u,d),Ch(u,d,s),r!==null&&r.has(d)){let[g,z]=r.get(d);t.directiveToIndex.set(d.type,[u,g+t.directiveStart,z+t.directiveStart])}else(o===null||!o.has(d))&&t.directiveToIndex.set(d.type,u);d.contentQueries!==null&&(t.flags|=4),(d.hostBindings!==null||d.hostAttrs!==null||d.hostVars!==0)&&(t.flags|=64);let h=d.type.prototype;!a&&(h.ngOnChanges||h.ngOnInit||h.ngDoCheck)&&((e.preOrderHooks??=[]).push(t.index),a=!0),!f&&(h.ngOnChanges||h.ngDoCheck)&&((e.preOrderCheckHooks??=[]).push(t.index),f=!0),u++}hh(e,t,o)}function hh(e,n,t){for(let c=n.directiveStart;c<n.directiveEnd;c++){let s=e.data[c];if(t===null||!t.has(s))oi(0,n,s,c),oi(1,n,s,c),ii(n,c,!1);else{let o=t.get(s);ri(0,n,o,c),ri(1,n,o,c),ii(n,c,!0)}}}function oi(e,n,t,c){let s=e===0?t.inputs:t.outputs;for(let o in s)if(s.hasOwnProperty(o)){let r;e===0?r=n.inputs??={}:r=n.outputs??={},r[o]??=[],r[o].push(c),xl(n,o)}}function ri(e,n,t,c){let s=e===0?t.inputs:t.outputs;for(let o in s)if(s.hasOwnProperty(o)){let r=s[o],i;e===0?i=n.hostDirectiveInputs??={}:i=n.hostDirectiveOutputs??={},i[r]??=[],i[r].push(c,o),xl(n,r)}}function xl(e,n){n==="class"?e.flags|=8:n==="style"&&(e.flags|=16)}function ii(e,n,t){let{attrs:c,inputs:s,hostDirectiveInputs:o}=e;if(c===null||!t&&s===null||t&&o===null||cs(e)){e.initialInputs??=[],e.initialInputs.push(null);return}let r=null,i=0;for(;i<c.length;){let l=c[i];if(l===0){i+=4;continue}else if(l===5){i+=2;continue}else if(typeof l=="number")break;if(!t&&s.hasOwnProperty(l)){let a=s[l];for(let f of a)if(f===n){r??=[],r.push(l,c[i+1]);break}}else if(t&&o.hasOwnProperty(l)){let a=o[l];for(let f=0;f<a.length;f+=2)if(a[f]===n){r??=[],r.push(a[f+1],c[i+1]);break}}i+=2}e.initialInputs??=[],e.initialInputs.push(r)}function mh(e,n,t,c,s){e.data[c]=s;let o=s.factory||(s.factory=J1(s.type,!0)),r=new ie(o,H2(s),y);e.blueprint[c]=r,t[c]=r,gh(e,n,c,ol(e,t,s.hostVars,h2),s)}function gh(e,n,t,c,s){let o=s.hostBindings;if(o){let r=e.hostBindingOpCodes;r===null&&(r=e.hostBindingOpCodes=[]);let i=~n.index;Mh(r)!=i&&r.push(i),r.push(t,c,o)}}function Mh(e){let n=e.length;for(;n>0;){let t=e[--n];if(typeof t=="number"&&t<0)return t}return 0}function Ch(e,n,t){if(t){if(n.exportAs)for(let c=0;c<n.exportAs.length;c++)t[n.exportAs[c]]=e;H2(n)&&(t[""]=e)}}function Lh(e,n,t){e.flags|=1,e.directiveStart=n,e.directiveEnd=n+t,e.providerIndexes=n}function Nl(e,n,t,c,s,o,r,i){let l=n.consts,a=I1(l,r),f=r4(n,e,2,c,a);return o&&gs(n,t,f,I1(l,i),s),f.mergedAttrs=Ge(f.mergedAttrs,f.attrs),f.attrs!==null&&Q6(f,f.attrs,!1),f.mergedAttrs!==null&&Q6(f,f.mergedAttrs,!0),n.queries!==null&&n.queries.elementStart(n,f),f}function El(e,n){$c(e,n),Tc(n)&&e.queries.elementEnd(n)}var Q0=class extends Nt{ngModule;constructor(n){super(),this.ngModule=n}resolveComponentFactory(n){let t=te(n);return new Ye(t,this.ngModule)}};function yh(e){return Object.keys(e).map(n=>{let[t,c,s]=e[n],o={propName:t,templateName:n,isSignal:(c&vt.SignalBased)!==0};return s&&(o.transform=s),o})}function vh(e){return Object.keys(e).map(n=>({propName:e[n],templateName:n}))}function zh(e,n,t){let c=n instanceof W2?n:n?.injector;return c&&e.getStandaloneInjector!==null&&(c=e.getStandaloneInjector(c)||c),c?new Y6(t,c):t}function Dh(e){let n=e.get(Ze,null);if(n===null)throw new D(407,!1);let t=e.get(lh,null),c=e.get(le,null);return{rendererFactory:n,sanitizer:t,changeDetectionScheduler:c}}function bh(e,n){let t=(e.selectors[0][0]||"div").toLowerCase();return tl(n,t,t==="svg"?nu:t==="math"?cu:null)}var Ye=class extends wl{componentDef;ngModule;selector;componentType;ngContentSelectors;isBoundToModule;cachedInputs=null;cachedOutputs=null;get inputs(){return this.cachedInputs??=yh(this.componentDef.inputs),this.cachedInputs}get outputs(){return this.cachedOutputs??=vh(this.componentDef.outputs),this.cachedOutputs}constructor(n,t){super(),this.componentDef=n,this.ngModule=t,this.componentType=n.type,this.selector=ep(n.selectors),this.ngContentSelectors=n.ngContentSelectors??[],this.isBoundToModule=!!t}create(n,t,c,s){V(22);let o=A(null);try{let r=this.componentDef,i=c?["ng-version","19.2.14"]:tp(this.componentDef.selectors[0]),l=ss(0,null,null,1,0,null,null,null,null,[i],null),a=zh(r,s||this.ngModule,n),f=Dh(a),u=f.rendererFactory.createRenderer(null,r),p=c?up(u,c,r.encapsulation,a):bh(r,u),d=os(null,l,null,512|sl(r),null,null,f,u,a,null,P8(p,a,!0));d[Q]=p,Hc(d);let h=null;try{let g=Nl(Q,l,d,"#host",()=>[this.componentDef],!0,0);p&&(cl(u,p,g),o3(p,d)),zt(l,d,g),es(l,g,d),El(l,g),t!==void 0&&wh(g,this.ngContentSelectors,t),h=Y2(g.index,d),d[J]=h[J],fs(l,d,null)}catch(g){throw h!==null&&A6(h),A6(d),g}finally{V(23),Uc()}return new X6(this.componentType,d)}finally{A(o)}}},X6=class extends rh{_rootLView;instance;hostView;changeDetectorRef;componentType;location;previousInputValues=null;_tNode;constructor(n,t){super(),this._rootLView=t,this._tNode=Ac(t[T],Q),this.location=c3(this._tNode,t),this.instance=Y2(this._tNode.index,t)[J],this.hostView=this.changeDetectorRef=new Q3(t,void 0,!1),this.componentType=n}setInput(n,t){let c=this._tNode;if(this.previousInputValues??=new Map,this.previousInputValues.has(n)&&Object.is(this.previousInputValues.get(n),t))return;let s=this._rootLView,o=as(c,s[T],s,n,t);this.previousInputValues.set(n,t);let r=Y2(c.index,s);ms(r,1)}get injector(){return new X1(this._tNode,this._rootLView)}destroy(){this.hostView.destroy()}onDestroy(n){this.hostView.onDestroy(n)}};function wh(e,n,t){let c=e.projection=[];for(let s=0;s<n.length;s++){let o=t[s];c.push(o!=null&&o.length?Array.from(o):null)}}var h1=(()=>{class e{static __NG_ELEMENT_ID__=xh}return e})();function xh(){let e=a2();return Sl(e,x())}var Nh=h1,Il=class extends Nh{_lContainer;_hostTNode;_hostLView;constructor(n,t,c){super(),this._lContainer=n,this._hostTNode=t,this._hostLView=c}get element(){return c3(this._hostTNode,this._hostLView)}get injector(){return new X1(this._hostTNode,this._hostLView)}get parentInjector(){let n=Gc(this._hostTNode,this._hostLView);if(f8(n)){let t=U0(n,this._hostLView),c=H0(n),s=t[T].data[c+8];return new X1(s,t)}else return new X1(null,this._hostLView)}clear(){for(;this.length>0;)this.remove(this.length-1)}get(n){let t=li(this._lContainer);return t!==null&&t[n]||null}get length(){return this._lContainer.length-r2}createEmbeddedView(n,t,c){let s,o;typeof c=="number"?s=c:c!=null&&(s=c.index,o=c.injector);let r=We(this._lContainer,n.ssrId),i=n.createEmbeddedViewImpl(t||{},o,r);return this.insertImpl(i,s,qe(this._hostTNode,r)),i}createComponent(n,t,c,s,o){let r=n&&!Kf(n),i;if(r)i=t;else{let h=t||{};i=h.index,c=h.injector,s=h.projectableNodes,o=h.environmentInjector||h.ngModuleRef}let l=r?n:new Ye(te(n)),a=c||this.parentInjector;if(!o&&l.ngModule==null){let g=(r?a:this.parentInjector).get(W2,null);g&&(o=g)}let f=te(l.componentType??{}),u=We(this._lContainer,f?.id??null),p=u?.firstChild??null,d=l.create(a,s,p,o);return this.insertImpl(d.hostView,i,qe(this._hostTNode,u)),d}insert(n,t){return this.insertImpl(n,t,!0)}insertImpl(n,t,c){let s=n._lView;if(iu(s)){let i=this.indexOf(n);if(i!==-1)this.detach(i);else{let l=s[i2],a=new Il(l,l[y2],l[i2]);a.detach(a.indexOf(n))}}let o=this._adjustIndex(t),r=this._lContainer;return o4(r,s,o,c),n.attachToViewContainerRef(),Ai(l6(r),o,n),n}move(n,t){return this.insert(n,t)}indexOf(n){let t=li(this._lContainer);return t!==null?t.indexOf(n):-1}remove(n){let t=this._adjustIndex(n,-1),c=Y3(this._lContainer,t);c&&(R0(l6(this._lContainer),t),Dt(c[T],c))}detach(n){let t=this._adjustIndex(n,-1),c=Y3(this._lContainer,t);return c&&R0(l6(this._lContainer),t)!=null?new Q3(c):null}_adjustIndex(n,t=0){return n??this.length+t}};function li(e){return e[V0]}function l6(e){return e[V0]||(e[V0]=[])}function Sl(e,n){let t,c=n[e.index];return f1(c)?t=c:(t=vl(c,n,null,e),n[e.index]=t,rs(n,t)),Ih(t,n,e,c),new Il(t,e,n)}function Eh(e,n){let t=e[$],c=t.createComment(""),s=J2(n,e),o=t.parentNode(s);return Z0(t,o,c,t.nextSibling(s),!1),c}var Ih=Th,Sh=()=>!1;function _h(e,n,t){return Sh(e,n,t)}function Th(e,n,t,c){if(e[se])return;let s;t.type&8?s=Z2(c):s=Eh(n,t),e[se]=s}var K6=class e{queryList;matches=null;constructor(n){this.queryList=n}clone(){return new e(this.queryList)}setDirty(){this.queryList.setDirty()}},J6=class e{queries;constructor(n=[]){this.queries=n}createEmbeddedView(n){let t=n.queries;if(t!==null){let c=n.contentQueries!==null?n.contentQueries[0]:t.length,s=[];for(let o=0;o<c;o++){let r=t.getByIndex(o),i=this.queries[r.indexInDeclarationView];s.push(i.clone())}return new e(s)}return null}insertView(n){this.dirtyQueriesWithMatches(n)}detachView(n){this.dirtyQueriesWithMatches(n)}finishViewCreation(n){this.dirtyQueriesWithMatches(n)}dirtyQueriesWithMatches(n){for(let t=0;t<this.queries.length;t++)Ms(n,t).matches!==null&&this.queries[t].setDirty()}},X0=class{flags;read;predicate;constructor(n,t,c=null){this.flags=t,this.read=c,typeof n=="string"?this.predicate=jh(n):this.predicate=n}},ec=class e{queries;constructor(n=[]){this.queries=n}elementStart(n,t){for(let c=0;c<this.queries.length;c++)this.queries[c].elementStart(n,t)}elementEnd(n){for(let t=0;t<this.queries.length;t++)this.queries[t].elementEnd(n)}embeddedTView(n){let t=null;for(let c=0;c<this.length;c++){let s=t!==null?t.length:0,o=this.getByIndex(c).embeddedTView(n,s);o&&(o.indexInDeclarationView=c,t!==null?t.push(o):t=[o])}return t!==null?new e(t):null}template(n,t){for(let c=0;c<this.queries.length;c++)this.queries[c].template(n,t)}getByIndex(n){return this.queries[n]}get length(){return this.queries.length}track(n){this.queries.push(n)}},tc=class e{metadata;matches=null;indexInDeclarationView=-1;crossesNgTemplate=!1;_declarationNodeIndex;_appliesToNextNode=!0;constructor(n,t=-1){this.metadata=n,this._declarationNodeIndex=t}elementStart(n,t){this.isApplyingToNode(t)&&this.matchTNode(n,t)}elementEnd(n){this._declarationNodeIndex===n.index&&(this._appliesToNextNode=!1)}template(n,t){this.elementStart(n,t)}embeddedTView(n,t){return this.isApplyingToNode(n)?(this.crossesNgTemplate=!0,this.addMatch(-n.index,t),new e(this.metadata)):null}isApplyingToNode(n){if(this._appliesToNextNode&&(this.metadata.flags&1)!==1){let t=this._declarationNodeIndex,c=n.parent;for(;c!==null&&c.type&8&&c.index!==t;)c=c.parent;return t===(c!==null?c.index:-1)}return this._appliesToNextNode}matchTNode(n,t){let c=this.metadata.predicate;if(Array.isArray(c))for(let s=0;s<c.length;s++){let o=c[s];this.matchTNodeWithReadOption(n,t,Ah(t,o)),this.matchTNodeWithReadOption(n,t,S0(t,n,o,!1,!1))}else c===S1?t.type&4&&this.matchTNodeWithReadOption(n,t,-1):this.matchTNodeWithReadOption(n,t,S0(t,n,c,!1,!1))}matchTNodeWithReadOption(n,t,c){if(c!==null){let s=this.metadata.read;if(s!==null)if(s===c2||s===h1||s===S1&&t.type&4)this.addMatch(t.index,-2);else{let o=S0(t,n,s,!1,!1);o!==null&&this.addMatch(t.index,o)}else this.addMatch(t.index,c)}}addMatch(n,t){this.matches===null?this.matches=[n,t]:this.matches.push(n,t)}};function Ah(e,n){let t=e.localNames;if(t!==null){for(let c=0;c<t.length;c+=2)if(t[c]===n)return t[c+1]}return null}function kh(e,n){return e.type&11?c3(e,n):e.type&4?xt(e,n):null}function Fh(e,n,t,c){return t===-1?kh(n,e):t===-2?Rh(e,n,c):W3(e,e[T],t,n)}function Rh(e,n,t){if(t===c2)return c3(n,e);if(t===S1)return xt(n,e);if(t===h1)return Sl(n,e)}function _l(e,n,t,c){let s=n[i1].queries[c];if(s.matches===null){let o=e.data,r=t.matches,i=[];for(let l=0;r!==null&&l<r.length;l+=2){let a=r[l];if(a<0)i.push(null);else{let f=o[a];i.push(Fh(n,f,r[l+1],t.metadata.read))}}s.matches=i}return s.matches}function nc(e,n,t,c){let s=e.queries.getByIndex(t),o=s.matches;if(o!==null){let r=_l(e,n,s,t);for(let i=0;i<o.length;i+=2){let l=o[i];if(l>0)c.push(r[i/2]);else{let a=o[i+1],f=n[-l];for(let u=r2;u<f.length;u++){let p=f[u];p[ne]===p[i2]&&nc(p[T],p,a,c)}if(f[$e]!==null){let u=f[$e];for(let p=0;p<u.length;p++){let d=u[p];nc(d[T],d,a,c)}}}}}return c}function Oh(e,n){return e[i1].queries[n].queryList}function Tl(e,n,t){let c=new T6((t&4)===4);return fu(e,n,c,c.destroy),(n[i1]??=new J6).queries.push(new K6(c))-1}function Ph(e,n,t){let c=G();return c.firstCreatePass&&(Al(c,new X0(e,n,t),-1),(n&2)===2&&(c.staticViewQueries=!0)),Tl(c,x(),n)}function Vh(e,n,t,c){let s=G();if(s.firstCreatePass){let o=a2();Al(s,new X0(n,t,c),o.index),Bh(s,e),(t&2)===2&&(s.staticContentQueries=!0)}return Tl(s,x(),t)}function jh(e){return e.split(",").map(n=>n.trim())}function Al(e,n,t){e.queries===null&&(e.queries=new ec),e.queries.track(new tc(n,t))}function Bh(e,n){let t=e.contentQueries||(e.contentQueries=[]),c=t.length?t[t.length-1]:-1;n!==c&&t.push(e.queries.length-1,n)}function Ms(e,n){return e.queries.getByIndex(n)}function Hh(e,n){let t=e[T],c=Ms(t,n);return c.crossesNgTemplate?nc(t,e,n,[]):_l(t,e,c,n)}var ae=class{},Uh=class{};function kl(e,n){return new K0(e,n??null,[])}var K0=class extends ae{ngModuleType;_parent;_bootstrapComponents=[];_r3Injector;instance;destroyCbs=[];componentFactoryResolver=new Q0(this);constructor(n,t,c,s=!0){super(),this.ngModuleType=n,this._parent=t;let o=Ri(n);this._bootstrapComponents=K8(o.bootstrap),this._r3Injector=L8(n,t,[{provide:ae,useValue:this},{provide:Nt,useValue:this.componentFactoryResolver},...c],C2(n),new Set(["environment"])),s&&this.resolveInjectorInitializers()}resolveInjectorInitializers(){this._r3Injector.resolveInjectorInitializers(),this.instance=this._r3Injector.get(this.ngModuleType)}get injector(){return this._r3Injector}destroy(){let n=this._r3Injector;!n.destroyed&&n.destroy(),this.destroyCbs.forEach(t=>t()),this.destroyCbs=null}onDestroy(n){this.destroyCbs.push(n)}},cc=class extends Uh{moduleType;constructor(n){super(),this.moduleType=n}create(n){return new K0(this.moduleType,n,[])}};var J0=class extends ae{injector;componentFactoryResolver=new Q0(this);instance=null;constructor(n){super();let t=new G3([...n.providers,{provide:ae,useValue:this},{provide:Nt,useValue:this.componentFactoryResolver}],n.parent||ft(),n.debugName,new Set(["environment"]));this.injector=t,n.runEnvironmentInitializers&&t.resolveInjectorInitializers()}destroy(){this.injector.destroy()}onDestroy(n){this.injector.onDestroy(n)}};function $h(e,n,t=null){return new J0({providers:e,parent:n,debugName:t,runEnvironmentInitializers:!0}).injector}var Gh=(()=>{class e{_injector;cachedInjectors=new Map;constructor(t){this._injector=t}getOrCreateStandaloneInjector(t){if(!t.standalone)return null;if(!this.cachedInjectors.has(t)){let c=Oi(!1,t.type),s=c.length>0?$h([c],this._injector,`Standalone[${t.type.name}]`):null;this.cachedInjectors.set(t,s)}return this.cachedInjectors.get(t)}ngOnDestroy(){try{for(let t of this.cachedInjectors.values())t!==null&&t.destroy()}finally{this.cachedInjectors.clear()}}static \u0275prov=M({token:e,providedIn:"environment",factory:()=>new e(C(W2))})}return e})();function Cs(e){return J3(()=>{let n=Fl(e),t=B(_({},n),{decls:e.decls,vars:e.vars,template:e.template,consts:e.consts||null,ngContentSelectors:e.ngContentSelectors,onPush:e.changeDetection===N8.OnPush,directiveDefs:null,pipeDefs:null,dependencies:n.standalone&&e.dependencies||null,getStandaloneInjector:n.standalone?s=>s.get(Gh).getOrCreateStandaloneInjector(t):null,getExternalStyles:null,signals:e.signals??!1,data:e.data||{},encapsulation:e.encapsulation||X2.Emulated,styles:e.styles||M2,_:null,schemas:e.schemas||null,tView:null,id:""});n.standalone&&A1("NgStandalone"),Rl(t);let c=e.dependencies;return t.directiveDefs=ai(c,!1),t.pipeDefs=ai(c,!0),t.id=Qh(t),t})}function qh(e){return te(e)||jf(e)}function Wh(e){return e!==null}function T2(e){return J3(()=>({type:e.type,bootstrap:e.bootstrap||M2,declarations:e.declarations||M2,imports:e.imports||M2,exports:e.exports||M2,transitiveCompileScopes:null,schemas:e.schemas||null,id:e.id||null}))}function Zh(e,n){if(e==null)return ee;let t={};for(let c in e)if(e.hasOwnProperty(c)){let s=e[c],o,r,i,l;Array.isArray(s)?(i=s[0],o=s[1],r=s[2]??o,l=s[3]||null):(o=s,r=s,i=vt.None,l=null),t[o]=[c,i,l],n[o]=r}return t}function Yh(e){if(e==null)return ee;let n={};for(let t in e)e.hasOwnProperty(t)&&(n[e[t]]=t);return n}function O(e){return J3(()=>{let n=Fl(e);return Rl(n),n})}function a3(e){return{type:e.type,name:e.name,factory:null,pure:e.pure!==!1,standalone:e.standalone??!0,onDestroy:e.type.prototype.ngOnDestroy||null}}function Fl(e){let n={};return{type:e.type,providersResolver:null,factory:null,hostBindings:e.hostBindings||null,hostVars:e.hostVars||0,hostAttrs:e.hostAttrs||null,contentQueries:e.contentQueries||null,declaredInputs:n,inputConfig:e.inputs||ee,exportAs:e.exportAs||null,standalone:e.standalone??!0,signals:e.signals===!0,selectors:e.selectors||M2,viewQuery:e.viewQuery||null,features:e.features||null,setInput:null,findHostDirectiveDefs:null,hostDirectives:null,inputs:Zh(e.inputs,n),outputs:Yh(e.outputs),debugInfo:null}}function Rl(e){e.features?.forEach(n=>n(e))}function ai(e,n){if(!e)return null;let t=n?Bf:qh;return()=>(typeof e=="function"?e():e).map(c=>t(c)).filter(Wh)}function Qh(e){let n=0,t=typeof e.consts=="function"?"":e.consts,c=[e.selectors,e.ngContentSelectors,e.hostVars,e.hostAttrs,t,e.vars,e.decls,e.encapsulation,e.standalone,e.signals,e.exportAs,JSON.stringify(e.inputs),JSON.stringify(e.outputs),Object.getOwnPropertyNames(e.type.prototype),!!e.contentQueries,!!e.viewQuery];for(let o of c.join("|"))n=Math.imul(31,n)+o.charCodeAt(0)<<0;return n+=2147483648,"c"+n}function Xh(e){return Object.getPrototypeOf(e.prototype).constructor}function X(e){let n=Xh(e.type),t=!0,c=[e];for(;n;){let s;if(H2(e))s=n.\u0275cmp||n.\u0275dir;else{if(n.\u0275cmp)throw new D(903,!1);s=n.\u0275dir}if(s){if(t){c.push(s);let r=e;r.inputs=a6(e.inputs),r.declaredInputs=a6(e.declaredInputs),r.outputs=a6(e.outputs);let i=s.hostBindings;i&&nm(e,i);let l=s.viewQuery,a=s.contentQueries;if(l&&em(e,l),a&&tm(e,a),Kh(e,s),Cf(e.outputs,s.outputs),H2(s)&&s.data.animation){let f=e.data;f.animation=(f.animation||[]).concat(s.data.animation)}}let o=s.features;if(o)for(let r=0;r<o.length;r++){let i=o[r];i&&i.ngInherit&&i(e),i===X&&(t=!1)}}n=Object.getPrototypeOf(n)}Jh(c)}function Kh(e,n){for(let t in n.inputs){if(!n.inputs.hasOwnProperty(t)||e.inputs.hasOwnProperty(t))continue;let c=n.inputs[t];c!==void 0&&(e.inputs[t]=c,e.declaredInputs[t]=n.declaredInputs[t])}}function Jh(e){let n=0,t=null;for(let c=e.length-1;c>=0;c--){let s=e[c];s.hostVars=n+=s.hostVars,s.hostAttrs=Ge(s.hostAttrs,t=Ge(t,s.hostAttrs))}}function a6(e){return e===ee?{}:e===M2?[]:e}function em(e,n){let t=e.viewQuery;t?e.viewQuery=(c,s)=>{n(c,s),t(c,s)}:e.viewQuery=n}function tm(e,n){let t=e.contentQueries;t?e.contentQueries=(c,s,o)=>{n(c,s,o),t(c,s,o)}:e.contentQueries=n}function nm(e,n){let t=e.hostBindings;t?e.hostBindings=(c,s)=>{n(c,s),t(c,s)}:e.hostBindings=n}function Ol(e){return Ls(e)?Array.isArray(e)||!(e instanceof Map)&&Symbol.iterator in e:!1}function cm(e,n){if(Array.isArray(e))for(let t=0;t<e.length;t++)n(e[t]);else{let t=e[Symbol.iterator](),c;for(;!(c=t.next()).done;)n(c.value)}}function Ls(e){return e!==null&&(typeof e=="function"||typeof e=="object")}function i4(e,n,t){return e[n]=t}function sm(e,n){return e[n]}function L2(e,n,t){let c=e[n];return Object.is(c,t)?!1:(e[n]=t,!0)}function X3(e,n,t,c){let s=L2(e,n,t);return L2(e,n+1,c)||s}function om(e,n,t,c,s){let o=X3(e,n,t,c);return L2(e,n+2,s)||o}function rm(e,n,t,c,s,o){let r=X3(e,n,t,c);return X3(e,n+2,s,o)||r}function im(e,n,t,c,s,o,r,i,l){let a=n.consts,f=r4(n,e,4,r||null,i||null);Oc()&&gs(n,t,f,I1(a,l),ls),f.mergedAttrs=Ge(f.mergedAttrs,f.attrs),$c(n,f);let u=f.tView=ss(2,f,c,s,o,n.directiveRegistry,n.pipeRegistry,null,n.schemas,a,null);return n.queries!==null&&(n.queries.template(n,f),u.queries=n.queries.embeddedTView(f)),f}function et(e,n,t,c,s,o,r,i,l,a){let f=t+Q,u=n.firstCreatePass?im(f,n,e,c,s,o,r,i,l):n.data[f];de(u,!1);let p=am(n,e,u,t);gt()&&bt(n,e,p,u),o3(p,e);let d=vl(p,e,p,u);return e[f]=d,rs(e,d),_h(d,u,e),pt(u)&&zt(n,e,u),l!=null&&is(e,u,a),u}function lm(e,n,t,c,s,o,r,i){let l=x(),a=G(),f=I1(a.consts,o);return et(l,a,e,n,t,c,s,f,r,i),lm}var am=fm;function fm(e,n,t,c){return Mt(!0),n[$].createComment("")}var um=(()=>{class e{log(t){console.log(t)}warn(t){console.warn(t)}static \u0275fac=function(c){return new(c||e)};static \u0275prov=M({token:e,factory:e.\u0275fac,providedIn:"platform"})}return e})();var Pl=new v("");var Vl=(()=>{class e{static \u0275prov=M({token:e,providedIn:"root",factory:()=>new sc})}return e})(),sc=class{queuedEffectCount=0;queues=new Map;schedule(n){this.enqueue(n)}remove(n){let t=n.zone,c=this.queues.get(t);c.has(n)&&(c.delete(n),this.queuedEffectCount--)}enqueue(n){let t=n.zone;this.queues.has(t)||this.queues.set(t,new Set);let c=this.queues.get(t);c.has(n)||(this.queuedEffectCount++,c.add(n))}flush(){for(;this.queuedEffectCount>0;)for(let[n,t]of this.queues)n===null?this.flushQueue(t):n.run(()=>this.flushQueue(t))}flushQueue(n){for(let t of n)n.delete(t),this.queuedEffectCount--,t.run()}};function f3(e){return!!e&&typeof e.then=="function"}function ys(e){return!!e&&typeof e.subscribe=="function"}var vs=new v("");var jl=(()=>{class e{resolve;reject;initialized=!1;done=!1;donePromise=new Promise((t,c)=>{this.resolve=t,this.reject=c});appInits=L(vs,{optional:!0})??[];injector=L(p2);constructor(){}runInitializers(){if(this.initialized)return;let t=[];for(let s of this.appInits){let o=ut(this.injector,s);if(f3(o))t.push(o);else if(ys(o)){let r=new Promise((i,l)=>{o.subscribe({complete:i,error:l})});t.push(r)}}let c=()=>{this.done=!0,this.resolve()};Promise.all(t).then(()=>{c()}).catch(s=>{this.reject(s)}),t.length===0&&c(),this.initialized=!0}static \u0275fac=function(c){return new(c||e)};static \u0275prov=M({token:e,factory:e.\u0275fac,providedIn:"root"})}return e})(),dm=new v("");function pm(){Wn(()=>{throw new D(600,!1)})}function hm(e){return e.isBoundToModule}var mm=10;var Qe=(()=>{class e{_runningTick=!1;_destroyed=!1;_destroyListeners=[];_views=[];internalErrorHandler=L(Qu);afterRenderManager=L(R8);zonelessEnabled=L(Ct);rootEffectScheduler=L(Vl);dirtyFlags=0;tracingSnapshot=null;externalTestViews=new Set;afterTick=new Y;get allViews(){return[...this.externalTestViews.keys(),...this._views]}get destroyed(){return this._destroyed}componentTypes=[];components=[];isStable=L(he).hasPendingTasks.pipe(t2(t=>!t));constructor(){L(i3,{optional:!0})}whenStable(){let t;return new Promise(c=>{t=this.isStable.subscribe({next:s=>{s&&c()}})}).finally(()=>{t.unsubscribe()})}_injector=L(W2);_rendererFactory=null;get injector(){return this._injector}bootstrap(t,c){return this.bootstrapImpl(t,c)}bootstrapImpl(t,c,s=p2.NULL){V(10);let o=t instanceof wl;if(!this._injector.get(jl).done){let d="";throw new D(405,d)}let i;o?i=t:i=this._injector.get(Nt).resolveComponentFactory(t),this.componentTypes.push(i.componentType);let l=hm(i)?void 0:this._injector.get(ae),a=c||i.selector,f=i.create(s,[],a,l),u=f.location.nativeElement,p=f.injector.get(Pl,null);return p?.registerApplication(u),f.onDestroy(()=>{this.detachView(f.hostView),_0(this.components,f),p?.unregisterApplication(u)}),this._loadComponent(f),V(11,f),f}tick(){this.zonelessEnabled||(this.dirtyFlags|=1),this._tick()}_tick(){V(12),this.tracingSnapshot!==null?this.tracingSnapshot.run(Kc.CHANGE_DETECTION,this.tickImpl):this.tickImpl()}tickImpl=()=>{if(this._runningTick)throw new D(101,!1);let t=A(null);try{this._runningTick=!0,this.synchronize()}catch(c){this.internalErrorHandler(c)}finally{this._runningTick=!1,this.tracingSnapshot?.dispose(),this.tracingSnapshot=null,A(t),this.afterTick.next(),V(13)}};synchronize(){this._rendererFactory===null&&!this._injector.destroyed&&(this._rendererFactory=this._injector.get(Ze,null,{optional:!0}));let t=0;for(;this.dirtyFlags!==0&&t++<mm;)V(14),this.synchronizeOnce(),V(15)}synchronizeOnce(){if(this.dirtyFlags&16&&(this.dirtyFlags&=-17,this.rootEffectScheduler.flush()),this.dirtyFlags&7){let t=!!(this.dirtyFlags&1);this.dirtyFlags&=-8,this.dirtyFlags|=8;for(let{_lView:c,notifyErrorHandler:s}of this.allViews)gm(c,s,t,this.zonelessEnabled);if(this.dirtyFlags&=-5,this.syncDirtyFlagsWithViews(),this.dirtyFlags&23)return}else this._rendererFactory?.begin?.(),this._rendererFactory?.end?.();this.dirtyFlags&8&&(this.dirtyFlags&=-9,this.afterRenderManager.execute()),this.syncDirtyFlagsWithViews()}syncDirtyFlagsWithViews(){if(this.allViews.some(({_lView:t})=>mt(t))){this.dirtyFlags|=2;return}else this.dirtyFlags&=-8}attachView(t){let c=t;this._views.push(c),c.attachToAppRef(this)}detachView(t){let c=t;_0(this._views,c),c.detachFromAppRef()}_loadComponent(t){this.attachView(t.hostView),this.tick(),this.components.push(t),this._injector.get(dm,[]).forEach(s=>s(t))}ngOnDestroy(){if(!this._destroyed)try{this._destroyListeners.forEach(t=>t()),this._views.slice().forEach(t=>t.destroy())}finally{this._destroyed=!0,this._views=[],this._destroyListeners=[]}}onDestroy(t){return this._destroyListeners.push(t),()=>_0(this._destroyListeners,t)}destroy(){if(this._destroyed)throw new D(406,!1);let t=this._injector;t.destroy&&!t.destroyed&&t.destroy()}get viewCount(){return this._views.length}static \u0275fac=function(c){return new(c||e)};static \u0275prov=M({token:e,factory:e.\u0275fac,providedIn:"root"})}return e})();function _0(e,n){let t=e.indexOf(n);t>-1&&e.splice(t,1)}function gm(e,n,t,c){if(!t&&!mt(e))return;Ml(e,n,t&&!c?0:1)}function u3(e,n,t,c){let s=x(),o=T1();if(L2(s,o,n)){let r=G(),i=pe();Lp(i,s,e,n,t,c)}return u3}function zs(e,n,t,c){return L2(e,T1(),t)?n+K1(t)+c:h2}function Ds(e,n,t,c,s,o){let r=Cu(),i=X3(e,r,t,s);return jc(2),i?n+K1(t)+c+K1(s)+o:h2}function x0(e,n){return e<<17|n<<2}function fe(e){return e>>17&32767}function Mm(e){return(e&2)==2}function Cm(e,n){return e&131071|n<<17}function oc(e){return e|2}function Xe(e){return(e&131068)>>2}function f6(e,n){return e&-131069|n<<2}function Lm(e){return(e&1)===1}function rc(e){return e|1}function ym(e,n,t,c,s,o){let r=o?n.classBindings:n.styleBindings,i=fe(r),l=Xe(r);e[c]=t;let a=!1,f;if(Array.isArray(t)){let u=t;f=u[1],(f===null||t4(u,f)>0)&&(a=!0)}else f=t;if(s)if(l!==0){let p=fe(e[i+1]);e[c+1]=x0(p,i),p!==0&&(e[p+1]=f6(e[p+1],c)),e[i+1]=Cm(e[i+1],c)}else e[c+1]=x0(i,0),i!==0&&(e[i+1]=f6(e[i+1],c)),i=c;else e[c+1]=x0(l,0),i===0?i=c:e[l+1]=f6(e[l+1],c),l=c;a&&(e[c+1]=oc(e[c+1])),fi(e,f,c,!0),fi(e,f,c,!1),vm(n,f,e,c,o),r=x0(i,l),o?n.classBindings=r:n.styleBindings=r}function vm(e,n,t,c,s){let o=s?e.residualClasses:e.residualStyles;o!=null&&typeof n=="string"&&t4(o,n)>=0&&(t[c+1]=rc(t[c+1]))}function fi(e,n,t,c){let s=e[t+1],o=n===null,r=c?fe(s):Xe(s),i=!1;for(;r!==0&&(i===!1||o);){let l=e[r],a=e[r+1];zm(l,n)&&(i=!0,e[r+1]=c?rc(a):oc(a)),r=c?fe(a):Xe(a)}i&&(e[t+1]=c?oc(s):rc(s))}function zm(e,n){return e===null||n==null||(Array.isArray(e)?e[1]:e)===n?!0:Array.isArray(e)&&typeof n=="string"?t4(e,n)>=0:!1}var j2={textEnd:0,key:0,keyEnd:0,value:0,valueEnd:0};function Dm(e){return e.substring(j2.key,j2.keyEnd)}function bm(e){return wm(e),Bl(e,Hl(e,0,j2.textEnd))}function Bl(e,n){let t=j2.textEnd;return t===n?-1:(n=j2.keyEnd=xm(e,j2.key=n,t),Hl(e,n,t))}function wm(e){j2.key=0,j2.keyEnd=0,j2.value=0,j2.valueEnd=0,j2.textEnd=e.length}function Hl(e,n,t){for(;n<t&&e.charCodeAt(n)<=32;)n++;return n}function xm(e,n,t){for(;n<t&&e.charCodeAt(n)>32;)n++;return n}function Nm(e,n,t){let c=x(),s=T1();if(L2(c,s,n)){let o=G(),r=pe();l3(o,r,c,e,n,c[$],t,!1)}return Nm}function ic(e,n,t,c,s){as(n,e,t,s?"class":"style",c)}function bs(e,n,t){return Ul(e,n,t,!1),bs}function l4(e,n){return Ul(e,n,null,!0),l4}function t_(e){xs(Am,ws,e,!0)}function ws(e,n){for(let t=bm(n);t>=0;t=Bl(n,t))e4(e,Dm(n),!0)}function Ul(e,n,t,c){let s=x(),o=G(),r=jc(2);if(o.firstUpdatePass&&Gl(o,e,r,c),n!==h2&&L2(s,r,n)){let i=o.data[u1()];ql(o,i,s,s[$],e,s[r+1]=Fm(n,t),c,r)}}function xs(e,n,t,c){let s=G(),o=jc(2);s.firstUpdatePass&&Gl(s,null,o,c);let r=x();if(t!==h2&&L2(r,o,t)){let i=s.data[u1()];if(Wl(i,c)&&!$l(s,o)){let l=c?i.classesWithoutHost:i.stylesWithoutHost;l!==null&&(t=m6(l,t||"")),ic(s,i,r,t,c)}else km(s,i,r,r[$],r[o+1],r[o+1]=Tm(e,n,t),c,o)}}function $l(e,n){return n>=e.expandoStartIndex}function Gl(e,n,t,c){let s=e.data;if(s[t+1]===null){let o=s[u1()],r=$l(e,t);Wl(o,c)&&n===null&&!r&&(n=!1),n=Em(s,o,n,c),ym(s,o,n,t,r,c)}}function Em(e,n,t,c){let s=e8(e),o=c?n.residualClasses:n.residualStyles;if(s===null)(c?n.classBindings:n.styleBindings)===0&&(t=u6(null,e,n,t,c),t=K3(t,n.attrs,c),o=null);else{let r=n.directiveStylingLast;if(r===-1||e[r]!==s)if(t=u6(s,e,n,t,c),o===null){let l=Im(e,n,c);l!==void 0&&Array.isArray(l)&&(l=u6(null,e,n,l[1],c),l=K3(l,n.attrs,c),Sm(e,n,c,l))}else o=_m(e,n,c)}return o!==void 0&&(c?n.residualClasses=o:n.residualStyles=o),t}function Im(e,n,t){let c=t?n.classBindings:n.styleBindings;if(Xe(c)!==0)return e[fe(c)]}function Sm(e,n,t,c){let s=t?n.classBindings:n.styleBindings;e[fe(s)]=c}function _m(e,n,t){let c,s=n.directiveEnd;for(let o=1+n.directiveStylingLast;o<s;o++){let r=e[o].hostAttrs;c=K3(c,r,t)}return K3(c,n.attrs,t)}function u6(e,n,t,c,s){let o=null,r=t.directiveEnd,i=t.directiveStylingLast;for(i===-1?i=t.directiveStart:i++;i<r&&(o=n[i],c=K3(c,o.hostAttrs,s),o!==e);)i++;return e!==null&&(t.directiveStylingLast=i),c}function K3(e,n,t){let c=t?1:2,s=-1;if(n!==null)for(let o=0;o<n.length;o++){let r=n[o];typeof r=="number"?s=r:s===c&&(Array.isArray(e)||(e=e===void 0?[]:["",e]),e4(e,r,t?!0:n[++o]))}return e===void 0?null:e}function Tm(e,n,t){if(t==null||t==="")return M2;let c=[],s=D2(t);if(Array.isArray(s))for(let o=0;o<s.length;o++)e(c,s[o],!0);else if(typeof s=="object")for(let o in s)s.hasOwnProperty(o)&&e(c,o,s[o]);else typeof s=="string"&&n(c,s);return c}function Am(e,n,t){let c=String(n);c!==""&&!c.includes(" ")&&e4(e,c,t)}function km(e,n,t,c,s,o,r,i){s===h2&&(s=M2);let l=0,a=0,f=0<s.length?s[0]:null,u=0<o.length?o[0]:null;for(;f!==null||u!==null;){let p=l<s.length?s[l+1]:void 0,d=a<o.length?o[a+1]:void 0,h=null,g;f===u?(l+=2,a+=2,p!==d&&(h=u,g=d)):u===null||f!==null&&f<u?(l+=2,h=f):(a+=2,h=u,g=d),h!==null&&ql(e,n,t,c,h,g,r,i),f=l<s.length?s[l]:null,u=a<o.length?o[a]:null}}function ql(e,n,t,c,s,o,r,i){if(!(n.type&3))return;let l=e.data,a=l[i+1],f=Lm(a)?ui(l,n,t,s,Xe(a),r):void 0;if(!tt(f)){tt(o)||Mm(a)&&(o=ui(l,null,t,s,i,r));let u=Wi(u1(),t);Pp(c,r,u,s,o)}}function ui(e,n,t,c,s,o){let r=n===null,i;for(;s>0;){let l=e[s],a=Array.isArray(l),f=a?l[1]:l,u=f===null,p=t[s+1];p===h2&&(p=u?M2:void 0);let d=u?t6(p,c):f===c?p:void 0;if(a&&!tt(d)&&(d=t6(l,c)),tt(d)&&(i=d,r))return i;let h=e[s+1];s=r?fe(h):Xe(h)}if(n!==null){let l=o?n.residualClasses:n.residualStyles;l!=null&&(i=t6(l,c))}return i}function tt(e){return e!==void 0}function Fm(e,n){return e==null||e===""||(typeof n=="string"?e=e+n:typeof e=="object"&&(e=C2(D2(e)))),e}function Wl(e,n){return(e.flags&(n?8:16))!==0}function n_(e,n,t){let c=x(),s=zs(c,e,n,t);xs(e4,ws,s,!0)}function c_(e,n,t,c,s){let o=x(),r=Ds(o,e,n,t,c,s);xs(e4,ws,r,!0)}var lc=class{destroy(n){}updateValue(n,t){}swap(n,t){let c=Math.min(n,t),s=Math.max(n,t),o=this.detach(s);if(s-c>1){let r=this.detach(c);this.attach(c,o),this.attach(s,r)}else this.attach(c,o)}move(n,t){this.attach(t,this.detach(n))}};function d6(e,n,t,c,s){return e===t&&Object.is(n,c)?1:Object.is(s(e,n),s(t,c))?-1:0}function Rm(e,n,t){let c,s,o=0,r=e.length-1,i=void 0;if(Array.isArray(n)){let l=n.length-1;for(;o<=r&&o<=l;){let a=e.at(o),f=n[o],u=d6(o,a,o,f,t);if(u!==0){u<0&&e.updateValue(o,f),o++;continue}let p=e.at(r),d=n[l],h=d6(r,p,l,d,t);if(h!==0){h<0&&e.updateValue(r,d),r--,l--;continue}let g=t(o,a),z=t(r,p),I=t(o,f);if(Object.is(I,z)){let j=t(l,d);Object.is(j,g)?(e.swap(o,r),e.updateValue(r,d),l--,r--):e.move(r,o),e.updateValue(o,f),o++;continue}if(c??=new nt,s??=pi(e,o,r,t),ac(e,c,o,I))e.updateValue(o,f),o++,r++;else if(s.has(I))c.set(g,e.detach(o)),r--;else{let j=e.create(o,n[o]);e.attach(o,j),o++,r++}}for(;o<=l;)di(e,c,t,o,n[o]),o++}else if(n!=null){let l=n[Symbol.iterator](),a=l.next();for(;!a.done&&o<=r;){let f=e.at(o),u=a.value,p=d6(o,f,o,u,t);if(p!==0)p<0&&e.updateValue(o,u),o++,a=l.next();else{c??=new nt,s??=pi(e,o,r,t);let d=t(o,u);if(ac(e,c,o,d))e.updateValue(o,u),o++,r++,a=l.next();else if(!s.has(d))e.attach(o,e.create(o,u)),o++,r++,a=l.next();else{let h=t(o,f);c.set(h,e.detach(o)),r--}}}for(;!a.done;)di(e,c,t,e.length,a.value),a=l.next()}for(;o<=r;)e.destroy(e.detach(r--));c?.forEach(l=>{e.destroy(l)})}function ac(e,n,t,c){return n!==void 0&&n.has(c)?(e.attach(t,n.get(c)),n.delete(c),!0):!1}function di(e,n,t,c,s){if(ac(e,n,c,t(c,s)))e.updateValue(c,s);else{let o=e.create(c,s);e.attach(c,o)}}function pi(e,n,t,c){let s=new Set;for(let o=n;o<=t;o++)s.add(c(o,e.at(o)));return s}var nt=class{kvMap=new Map;_vMap=void 0;has(n){return this.kvMap.has(n)}delete(n){if(!this.has(n))return!1;let t=this.kvMap.get(n);return this._vMap!==void 0&&this._vMap.has(t)?(this.kvMap.set(n,this._vMap.get(t)),this._vMap.delete(t)):this.kvMap.delete(n),!0}get(n){return this.kvMap.get(n)}set(n,t){if(this.kvMap.has(n)){let c=this.kvMap.get(n);this._vMap===void 0&&(this._vMap=new Map);let s=this._vMap;for(;s.has(c);)c=s.get(c);s.set(c,t)}else this.kvMap.set(n,t)}forEach(n){for(let[t,c]of this.kvMap)if(n(c,t),this._vMap!==void 0){let s=this._vMap;for(;s.has(c);)c=s.get(c),n(c,t)}}};function s_(e,n){A1("NgControlFlow");let t=x(),c=T1(),s=t[c]!==h2?t[c]:-1,o=s!==-1?ct(t,Q+s):void 0,r=0;if(L2(t,c,e)){let i=A(null);try{if(o!==void 0&&Dl(o,r),e!==-1){let l=Q+e,a=ct(t,l),f=pc(t[T],l),u=We(a,f.tView.ssrId),p=s4(t,f,n,{dehydratedView:u});o4(a,p,r,qe(f,u))}}finally{A(i)}}else if(o!==void 0){let i=zl(o,r);i!==void 0&&(i[J]=n)}}var fc=class{lContainer;$implicit;$index;constructor(n,t,c){this.lContainer=n,this.$implicit=t,this.$index=c}get $count(){return this.lContainer.length-r2}};function o_(e){return e}var uc=class{hasEmptyBlock;trackByFn;liveCollection;constructor(n,t,c){this.hasEmptyBlock=n,this.trackByFn=t,this.liveCollection=c}};function r_(e,n,t,c,s,o,r,i,l,a,f,u,p){A1("NgControlFlow");let d=x(),h=G(),g=l!==void 0,z=x(),I=i?r.bind(z[z2][J]):r,j=new uc(g,I);z[Q+e]=j,et(d,h,e+1,n,t,c,s,I1(h.consts,o)),g&&et(d,h,e+2,l,a,f,u,I1(h.consts,p))}var dc=class extends lc{lContainer;hostLView;templateTNode;operationsCounter=void 0;needsIndexUpdate=!1;constructor(n,t,c){super(),this.lContainer=n,this.hostLView=t,this.templateTNode=c}get length(){return this.lContainer.length-r2}at(n){return this.getLView(n)[J].$implicit}attach(n,t){let c=t[He];this.needsIndexUpdate||=n!==this.length,o4(this.lContainer,t,n,qe(this.templateTNode,c))}detach(n){return this.needsIndexUpdate||=n!==this.length-1,Om(this.lContainer,n)}create(n,t){let c=We(this.lContainer,this.templateTNode.tView.ssrId),s=s4(this.hostLView,this.templateTNode,new fc(this.lContainer,t,n),{dehydratedView:c});return this.operationsCounter?.recordCreate(),s}destroy(n){Dt(n[T],n),this.operationsCounter?.recordDestroy()}updateValue(n,t){this.getLView(n)[J].$implicit=t}reset(){this.needsIndexUpdate=!1,this.operationsCounter?.reset()}updateIndexes(){if(this.needsIndexUpdate)for(let n=0;n<this.length;n++)this.getLView(n)[J].$index=n}getLView(n){return Pm(this.lContainer,n)}};function i_(e){let n=A(null),t=u1();try{let c=x(),s=c[T],o=c[t],r=t+1,i=ct(c,r);if(o.liveCollection===void 0){let a=pc(s,r);o.liveCollection=new dc(i,c,a)}else o.liveCollection.reset();let l=o.liveCollection;if(Rm(l,e,o.trackByFn),l.updateIndexes(),o.hasEmptyBlock){let a=T1(),f=l.length===0;if(L2(c,a,f)){let u=t+2,p=ct(c,u);if(f){let d=pc(s,u),h=We(p,d.tView.ssrId),g=s4(c,d,void 0,{dehydratedView:h});o4(p,g,0,qe(d,h))}else Dl(p,0)}}}finally{A(n)}}function ct(e,n){return e[n]}function Om(e,n){return Y3(e,n)}function Pm(e,n){return zl(e,n)}function pc(e,n){return Ac(e,n)}function Zl(e,n,t,c){let s=x(),o=G(),r=Q+e,i=s[$],l=o.firstCreatePass?Nl(r,o,s,n,ls,Oc(),t,c):o.data[r],a=jm(o,s,l,i,n,e);s[r]=a;let f=pt(l);return de(l,!0),cl(i,a,l),!ds(l)&&gt()&&bt(o,s,a,l),(uu()===0||f)&&o3(a,s),du(),f&&(zt(o,s,l),es(o,l,s)),c!==null&&is(s,l),Zl}function Yl(){let e=a2();Pc()?Vc():(e=e.parent,de(e,!1));let n=e;hu(n)&&mu(),pu();let t=G();return t.firstCreatePass&&El(t,n),n.classesWithoutHost!=null&&Eu(n)&&ic(t,n,x(),n.classesWithoutHost,!0),n.stylesWithoutHost!=null&&Iu(n)&&ic(t,n,x(),n.stylesWithoutHost,!1),Yl}function Vm(e,n,t,c){return Zl(e,n,t,c),Yl(),Vm}var jm=(e,n,t,c,s,o)=>(Mt(!0),tl(c,s,wu()));function Bm(e,n,t,c,s){let o=n.consts,r=I1(o,c),i=r4(n,e,8,"ng-container",r);r!==null&&Q6(i,r,!0);let l=I1(o,s);return Oc()&&gs(n,t,i,l,ls),i.mergedAttrs=Ge(i.mergedAttrs,i.attrs),n.queries!==null&&n.queries.elementStart(n,i),i}function Ql(e,n,t){let c=x(),s=G(),o=e+Q,r=s.firstCreatePass?Bm(o,s,c,n,t):s.data[o];de(r,!0);let i=Um(s,c,r,e);return c[o]=i,gt()&&bt(s,c,i,r),o3(i,c),pt(r)&&(zt(s,c,r),es(s,r,c)),t!=null&&is(c,r),Ql}function Xl(){let e=a2(),n=G();return Pc()?Vc():(e=e.parent,de(e,!1)),n.firstCreatePass&&($c(n,e),Tc(e)&&n.queries.elementEnd(e)),Xl}function Hm(e,n,t){return Ql(e,n,t),Xl(),Hm}var Um=(e,n,t,c)=>(Mt(!0),sp(n[$],""));function l_(){return x()}function Ns(e,n,t){let c=x(),s=T1();if(L2(c,s,n)){let o=G(),r=pe();l3(o,r,c,e,n,c[$],t,!0)}return Ns}function $m(e,n,t){let c=x(),s=T1();if(L2(c,s,n)){let o=G(),r=pe(),i=e8(o.data),l=zp(i,r,c);l3(o,r,c,e,n,l,t,!0)}return $m}var st="en-US";var Gm=st;function qm(e){typeof e=="string"&&(Gm=e.toLowerCase().replace(/_/g,"-"))}function hi(e,n,t){return function c(s){if(s===Function)return t;let o=e3(e)?Y2(e.index,n):n;ms(o,5);let r=n[J],i=mi(n,r,t,s),l=c.__ngNextListenerFn__;for(;l;)i=mi(n,r,l,s)&&i,l=l.__ngNextListenerFn__;return i}}function mi(e,n,t,c){let s=A(null);try{return V(6,n,t),t(c)!==!1}catch(o){return Wm(e,o),!1}finally{V(7,n,t),A(s)}}function Wm(e,n){let t=e[Ue],c=t?t.get(Q2,null):null;c&&c.handleError(n)}function gi(e,n,t,c,s,o){let r=n[t],i=n[T],a=i.data[t].outputs[c],f=r[a],u=i.firstCreatePass?Rc(i):null,p=Fc(n),d=f.subscribe(o),h=p.length;p.push(o,d),u&&u.push(s,e.index,h,-(h+1))}function m1(e,n,t,c){let s=x(),o=G(),r=a2();return Kl(o,s,s[$],r,e,n,c),m1}function Zm(e,n,t,c){let s=e.cleanup;if(s!=null)for(let o=0;o<s.length-1;o+=2){let r=s[o];if(r===t&&s[o+1]===c){let i=n[P0],l=s[o+2];return i.length>l?i[l]:null}typeof r=="string"&&(o+=2)}return null}function Kl(e,n,t,c,s,o,r){let i=pt(c),a=e.firstCreatePass?Rc(e):null,f=Fc(n),u=!0;if(c.type&3||r){let p=J2(c,n),d=r?r(p):p,h=f.length,g=r?I=>r(Z2(I[c.index])):c.index,z=null;if(!r&&i&&(z=Zm(e,n,s,c.index)),z!==null){let I=z.__ngLastListenerFn__||z;I.__ngNextListenerFn__=o,z.__ngLastListenerFn__=o,u=!1}else{o=hi(c,n,o),Md(n,d,s,o);let I=t.listen(d,s,o);f.push(o,I),a&&a.push(s,g,h,h+1)}}else o=hi(c,n,o);if(u){let p=c.outputs?.[s],d=c.hostDirectiveOutputs?.[s];if(d&&d.length)for(let h=0;h<d.length;h+=2){let g=d[h],z=d[h+1];gi(c,n,g,z,s,o)}if(p&&p.length)for(let h of p)gi(c,n,h,s,s,o)}}function a_(e=1){return bu(e)}function Ym(e,n){let t=null,c=Yd(e);for(let s=0;s<n.length;s++){let o=n[s];if(o==="*"){t=s;continue}if(c===null?el(e,o,!0):Kd(c,o))return s}return t}function Jl(e){let n=x()[z2][y2];if(!n.projection){let t=e?e.length:1,c=n.projection=Of(t,null),s=c.slice(),o=n.child;for(;o!==null;){if(o.type!==128){let r=e?Ym(o,e):0;r!==null&&(s[r]?s[r].projectionNext=o:c[r]=o,s[r]=o)}o=o.next}}}function ea(e,n=0,t,c,s,o){let r=x(),i=G(),l=c?e+1:null;l!==null&&et(r,i,l,c,s,o,null,t);let a=r4(i,Q+e,16,null,t||null);a.projection===null&&(a.projection=n),Vc();let u=!r[He]||Xi();r[z2][y2].projection[a.projection]===null&&l!==null?Qm(r,i,l):u&&!ds(a)&&Rp(i,r,a)}function Qm(e,n,t){let c=Q+t,s=n.data[c],o=e[c],r=We(o,s.tView.ssrId),i=s4(e,s,void 0,{dehydratedView:r});o4(o,i,0,qe(s,r))}function Xm(e,n,t){return ta(e,"",n,"",t),Xm}function ta(e,n,t,c,s){let o=x(),r=zs(o,n,t,c);if(r!==h2){let i=G(),l=pe();l3(i,l,o,e,r,o[$],s,!1)}return ta}function Km(e,n,t,c,s,o,r){let i=x(),l=Ds(i,n,t,c,s,o);if(l!==h2){let a=G(),f=pe();l3(a,f,i,e,l,i[$],r,!1)}return Km}function f_(e,n,t,c){Vh(e,n,t,c)}function u_(e,n,t){Ph(e,n,t)}function d_(e){let n=x(),t=G(),c=t8();Bc(c+1);let s=Ms(t,c);if(e.dirty&&ru(n)===((s.metadata.flags&2)===2)){if(s.matches===null)e.reset([]);else{let o=Hh(n,c);e.reset(o,Ju),e.notifyOnChanges()}return!0}return!1}function p_(){return Oh(x(),t8())}function h_(e){let n=Mu();return ht(n,Q+e)}function m_(e,n=""){let t=x(),c=G(),s=e+Q,o=c.firstCreatePass?r4(c,s,1,n,null):c.data[s],r=Jm(c,t,o,n,e);t[s]=r,gt()&&bt(c,t,r,o),de(o,!1)}var Jm=(e,n,t,c,s)=>(Mt(!0),np(n[$],c));function eg(e){return na("",e,""),eg}function na(e,n,t){let c=x(),s=zs(c,e,n,t);return s!==h2&&ca(c,u1(),s),na}function tg(e,n,t,c,s){let o=x(),r=Ds(o,e,n,t,c,s);return r!==h2&&ca(o,u1(),r),tg}function ca(e,n,t){let c=Wi(n,e);cp(e[$],c,t)}function ng(e,n,t){w8(n)&&(n=n());let c=x(),s=T1();if(L2(c,s,n)){let o=G(),r=pe();l3(o,r,c,e,n,c[$],t,!1)}return ng}function g_(e,n){let t=w8(e);return t&&e.set(n),t}function cg(e,n){let t=x(),c=G(),s=a2();return Kl(c,t,t[$],s,e,n),cg}function sg(e,n,t){let c=G();if(c.firstCreatePass){let s=H2(e);hc(t,c.data,c.blueprint,s,!0),hc(n,c.data,c.blueprint,s,!1)}}function hc(e,n,t,c,s){if(e=d2(e),Array.isArray(e))for(let o=0;o<e.length;o++)hc(e[o],n,t,c,s);else{let o=G(),r=x(),i=a2(),l=Be(e)?e:d2(e.provide),a=ji(e),f=i.providerIndexes&1048575,u=i.directiveStart,p=i.providerIndexes>>20;if(Be(e)||!e.multi){let d=new ie(a,s,y),h=h6(l,n,s?f:f+p,u);h===-1?(N6(G0(i,r),o,l),p6(o,e,n.length),n.push(l),i.directiveStart++,i.directiveEnd++,s&&(i.providerIndexes+=1048576),t.push(d),r.push(d)):(t[h]=d,r[h]=d)}else{let d=h6(l,n,f+p,u),h=h6(l,n,f,f+p),g=d>=0&&t[d],z=h>=0&&t[h];if(s&&!z||!s&&!g){N6(G0(i,r),o,l);let I=ig(s?rg:og,t.length,s,c,a);!s&&z&&(t[h].providerFactory=I),p6(o,e,n.length,0),n.push(l),i.directiveStart++,i.directiveEnd++,s&&(i.providerIndexes+=1048576),t.push(I),r.push(I)}else{let I=sa(t[s?h:d],a,!s&&c);p6(o,e,d>-1?d:h,I)}!s&&c&&z&&t[h].componentProviders++}}}function p6(e,n,t,c){let s=Be(n),o=qf(n);if(s||o){let l=(o?d2(n.useClass):n).prototype.ngOnDestroy;if(l){let a=e.destroyHooks||(e.destroyHooks=[]);if(!s&&n.multi){let f=a.indexOf(t);f===-1?a.push(t,[c,l]):a[f+1].push(c,l)}else a.push(t,l)}}}function sa(e,n,t){return t&&e.componentProviders++,e.multi.push(n)-1}function h6(e,n,t,c){for(let s=t;s<c;s++)if(n[s]===e)return s;return-1}function og(e,n,t,c,s){return mc(this.multi,[])}function rg(e,n,t,c,s){let o=this.multi,r;if(this.providerFactory){let i=this.providerFactory.componentProviders,l=W3(c,c[T],this.providerFactory.index,s);r=l.slice(0,i),mc(o,r);for(let a=i;a<l.length;a++)r.push(l[a])}else r=[],mc(o,r);return r}function mc(e,n){for(let t=0;t<e.length;t++){let c=e[t];n.push(c())}return n}function ig(e,n,t,c,s){let o=new ie(e,t,y);return o.multi=[],o.index=n,o.componentProviders=0,sa(o,s,c&&!t),o}function v2(e,n=[]){return t=>{t.providersResolver=(c,s)=>sg(c,s?s(e):e,n)}}function M_(e,n,t){let c=_1()+e,s=x();return s[c]===h2?i4(s,c,t?n.call(t):n()):sm(s,c)}function C_(e,n,t,c){return oa(x(),_1(),e,n,t,c)}function L_(e,n,t,c,s){return ra(x(),_1(),e,n,t,c,s)}function y_(e,n,t,c,s,o){return ia(x(),_1(),e,n,t,c,s,o)}function v_(e,n,t,c,s,o,r){return lg(x(),_1(),e,n,t,c,s,o,r)}function Et(e,n){let t=e[n];return t===h2?void 0:t}function oa(e,n,t,c,s,o){let r=n+t;return L2(e,r,s)?i4(e,r+1,o?c.call(o,s):c(s)):Et(e,r+1)}function ra(e,n,t,c,s,o,r){let i=n+t;return X3(e,i,s,o)?i4(e,i+2,r?c.call(r,s,o):c(s,o)):Et(e,i+2)}function ia(e,n,t,c,s,o,r,i){let l=n+t;return om(e,l,s,o,r)?i4(e,l+3,i?c.call(i,s,o,r):c(s,o,r)):Et(e,l+3)}function lg(e,n,t,c,s,o,r,i,l){let a=n+t;return rm(e,a,s,o,r,i)?i4(e,a+4,l?c.call(l,s,o,r,i):c(s,o,r,i)):Et(e,a+4)}function z_(e,n){let t=G(),c,s=e+Q;t.firstCreatePass?(c=ag(n,t.pipeRegistry),t.data[s]=c,c.onDestroy&&(t.destroyHooks??=[]).push(s,c.onDestroy)):c=t.data[s];let o=c.factory||(c.factory=J1(c.type,!0)),r,i=g2(y);try{let l=$0(!1),a=o();return $0(l),ou(t,x(),s,a),a}finally{g2(i)}}function ag(e,n){if(n)for(let t=n.length-1;t>=0;t--){let c=n[t];if(e===c.name)return c}}function D_(e,n,t){let c=e+Q,s=x(),o=ht(s,c);return Es(s,c)?oa(s,_1(),n,o.transform,t,o):o.transform(t)}function b_(e,n,t,c){let s=e+Q,o=x(),r=ht(o,s);return Es(o,s)?ra(o,_1(),n,r.transform,t,c,r):r.transform(t,c)}function w_(e,n,t,c,s){let o=e+Q,r=x(),i=ht(r,o);return Es(r,o)?ia(r,_1(),n,i.transform,t,c,s,i):i.transform(t,c,s)}function Es(e,n){return e[T].data[n].pure}function x_(e,n){return xt(e,n)}var Ke=class{full;major;minor;patch;constructor(n){this.full=n;let t=n.split(".");this.major=t[0],this.minor=t[1],this.patch=t.slice(2).join(".")}},N_=new Ke("19.2.14"),gc=class{ngModuleFactory;componentFactories;constructor(n,t){this.ngModuleFactory=n,this.componentFactories=t}},E_=(()=>{class e{compileModuleSync(t){return new cc(t)}compileModuleAsync(t){return Promise.resolve(this.compileModuleSync(t))}compileModuleAndAllComponentsSync(t){let c=this.compileModuleSync(t),s=Ri(t),o=K8(s.declarations).reduce((r,i)=>{let l=te(i);return l&&r.push(new Ye(l)),r},[]);return new gc(c,o)}compileModuleAndAllComponentsAsync(t){return Promise.resolve(this.compileModuleAndAllComponentsSync(t))}clearCache(){}clearCacheFor(t){}getModuleId(t){}static \u0275fac=function(c){return new(c||e)};static \u0275prov=M({token:e,factory:e.\u0275fac,providedIn:"root"})}return e})();var fg=(()=>{class e{zone=L(e2);changeDetectionScheduler=L(le);applicationRef=L(Qe);_onMicrotaskEmptySubscription;initialize(){this._onMicrotaskEmptySubscription||(this._onMicrotaskEmptySubscription=this.zone.onMicrotaskEmpty.subscribe({next:()=>{this.changeDetectionScheduler.runningTick||this.zone.run(()=>{this.applicationRef.tick()})}}))}ngOnDestroy(){this._onMicrotaskEmptySubscription?.unsubscribe()}static \u0275fac=function(c){return new(c||e)};static \u0275prov=M({token:e,factory:e.\u0275fac,providedIn:"root"})}return e})(),ug=new v("",{factory:()=>!1});function la({ngZoneFactory:e,ignoreChangesOutsideZone:n,scheduleInRootZone:t}){return e??=()=>new e2(B(_({},aa()),{scheduleInRootZone:t})),[{provide:e2,useFactory:e},{provide:$3,multi:!0,useFactory:()=>{let c=L(fg,{optional:!0});return()=>c.initialize()}},{provide:$3,multi:!0,useFactory:()=>{let c=L(dg);return()=>{c.initialize()}}},n===!0?{provide:v8,useValue:!0}:[],{provide:z8,useValue:t??y8}]}function I_(e){let n=e?.ignoreChangesOutsideZone,t=e?.scheduleInRootZone,c=la({ngZoneFactory:()=>{let s=aa(e);return s.scheduleInRootZone=t,s.shouldCoalesceEventChangeDetection&&A1("NgZone_CoalesceEvent"),new e2(s)},ignoreChangesOutsideZone:n,scheduleInRootZone:t});return ue([{provide:ug,useValue:!0},{provide:Ct,useValue:!1},c])}function aa(e){return{enableLongStackTrace:!1,shouldCoalesceEventChangeDetection:e?.eventCoalescing??!1,shouldCoalesceRunChangeDetection:e?.runCoalescing??!1}}var dg=(()=>{class e{subscription=new W;initialized=!1;zone=L(e2);pendingTasks=L(he);initialize(){if(this.initialized)return;this.initialized=!0;let t=null;!this.zone.isStable&&!this.zone.hasPendingMacrotasks&&!this.zone.hasPendingMicrotasks&&(t=this.pendingTasks.add()),this.zone.runOutsideAngular(()=>{this.subscription.add(this.zone.onStable.subscribe(()=>{e2.assertNotInAngularZone(),queueMicrotask(()=>{t!==null&&!this.zone.hasPendingMacrotasks&&!this.zone.hasPendingMicrotasks&&(this.pendingTasks.remove(t),t=null)})}))}),this.subscription.add(this.zone.onUnstable.subscribe(()=>{e2.assertInAngularZone(),t??=this.pendingTasks.add()}))}ngOnDestroy(){this.subscription.unsubscribe()}static \u0275fac=function(c){return new(c||e)};static \u0275prov=M({token:e,factory:e.\u0275fac,providedIn:"root"})}return e})();var pg=(()=>{class e{appRef=L(Qe);taskService=L(he);ngZone=L(e2);zonelessEnabled=L(Ct);tracing=L(i3,{optional:!0});disableScheduling=L(v8,{optional:!0})??!1;zoneIsDefined=typeof Zone<"u"&&!!Zone.root.run;schedulerTickApplyArgs=[{data:{__scheduler_tick__:!0}}];subscriptions=new W;angularZoneId=this.zoneIsDefined?this.ngZone._inner?.get(W0):null;scheduleInRootZone=!this.zonelessEnabled&&this.zoneIsDefined&&(L(z8,{optional:!0})??!1);cancelScheduledCallback=null;useMicrotaskScheduler=!1;runningTick=!1;pendingRenderTaskId=null;constructor(){this.subscriptions.add(this.appRef.afterTick.subscribe(()=>{this.runningTick||this.cleanup()})),this.subscriptions.add(this.ngZone.onUnstable.subscribe(()=>{this.runningTick||this.cleanup()})),this.disableScheduling||=!this.zonelessEnabled&&(this.ngZone instanceof _6||!this.zoneIsDefined)}notify(t){if(!this.zonelessEnabled&&t===5)return;let c=!1;switch(t){case 0:{this.appRef.dirtyFlags|=2;break}case 3:case 2:case 4:case 5:case 1:{this.appRef.dirtyFlags|=4;break}case 6:{this.appRef.dirtyFlags|=2,c=!0;break}case 12:{this.appRef.dirtyFlags|=16,c=!0;break}case 13:{this.appRef.dirtyFlags|=2,c=!0;break}case 11:{c=!0;break}case 9:case 8:case 7:case 10:default:this.appRef.dirtyFlags|=8}if(this.appRef.tracingSnapshot=this.tracing?.snapshot(this.appRef.tracingSnapshot)??null,!this.shouldScheduleTick(c))return;let s=this.useMicrotaskScheduler?$r:D8;this.pendingRenderTaskId=this.taskService.add(),this.scheduleInRootZone?this.cancelScheduledCallback=Zone.root.run(()=>s(()=>this.tick())):this.cancelScheduledCallback=this.ngZone.runOutsideAngular(()=>s(()=>this.tick()))}shouldScheduleTick(t){return!(this.disableScheduling&&!t||this.appRef.destroyed||this.pendingRenderTaskId!==null||this.runningTick||this.appRef._runningTick||!this.zonelessEnabled&&this.zoneIsDefined&&Zone.current.get(W0+this.angularZoneId))}tick(){if(this.runningTick||this.appRef.destroyed)return;if(this.appRef.dirtyFlags===0){this.cleanup();return}!this.zonelessEnabled&&this.appRef.dirtyFlags&7&&(this.appRef.dirtyFlags|=1);let t=this.taskService.add();try{this.ngZone.run(()=>{this.runningTick=!0,this.appRef._tick()},void 0,this.schedulerTickApplyArgs)}catch(c){throw this.taskService.remove(t),c}finally{this.cleanup()}this.useMicrotaskScheduler=!0,$r(()=>{this.useMicrotaskScheduler=!1,this.taskService.remove(t)})}ngOnDestroy(){this.subscriptions.unsubscribe(),this.cleanup()}cleanup(){if(this.runningTick=!1,this.cancelScheduledCallback?.(),this.cancelScheduledCallback=null,this.pendingRenderTaskId!==null){let t=this.pendingRenderTaskId;this.pendingRenderTaskId=null,this.taskService.remove(t)}}static \u0275fac=function(c){return new(c||e)};static \u0275prov=M({token:e,factory:e.\u0275fac,providedIn:"root"})}return e})();function hg(){return typeof $localize<"u"&&$localize.locale||st}var Is=new v("",{providedIn:"root",factory:()=>L(Is,F.Optional|F.SkipSelf)||hg()});var Mc=new v(""),mg=new v("");function j3(e){return!e.moduleRef}function gg(e){let n=j3(e)?e.r3Injector:e.moduleRef.injector,t=n.get(e2);return t.run(()=>{j3(e)?e.r3Injector.resolveInjectorInitializers():e.moduleRef.resolveInjectorInitializers();let c=n.get(Q2,null),s;if(t.runOutsideAngular(()=>{s=t.onError.subscribe({next:o=>{c.handleError(o)}})}),j3(e)){let o=()=>n.destroy(),r=e.platformInjector.get(Mc);r.add(o),n.onDestroy(()=>{s.unsubscribe(),r.delete(o)})}else{let o=()=>e.moduleRef.destroy(),r=e.platformInjector.get(Mc);r.add(o),e.moduleRef.onDestroy(()=>{_0(e.allPlatformModules,e.moduleRef),s.unsubscribe(),r.delete(o)})}return Cg(c,t,()=>{let o=n.get(jl);return o.runInitializers(),o.donePromise.then(()=>{let r=n.get(Is,st);if(qm(r||st),!n.get(mg,!0))return j3(e)?n.get(Qe):(e.allPlatformModules.push(e.moduleRef),e.moduleRef);if(j3(e)){let l=n.get(Qe);return e.rootComponent!==void 0&&l.bootstrap(e.rootComponent),l}else return Mg(e.moduleRef,e.allPlatformModules),e.moduleRef})})})}function Mg(e,n){let t=e.injector.get(Qe);if(e._bootstrapComponents.length>0)e._bootstrapComponents.forEach(c=>t.bootstrap(c));else if(e.instance.ngDoBootstrap)e.instance.ngDoBootstrap(t);else throw new D(-403,!1);n.push(e)}function Cg(e,n,t){try{let c=t();return f3(c)?c.catch(s=>{throw n.runOutsideAngular(()=>e.handleError(s)),s}):c}catch(c){throw n.runOutsideAngular(()=>e.handleError(c)),c}}var T0=null;function Lg(e=[],n){return p2.create({name:n,providers:[{provide:at,useValue:"platform"},{provide:Mc,useValue:new Set([()=>T0=null])},...e]})}function yg(e=[]){if(T0)return T0;let n=Lg(e);return T0=n,pm(),vg(n),n}function vg(e){let n=e.get(Yc,null);ut(e,()=>{n?.forEach(t=>t())})}function S_(){return!1}var me=(()=>{class e{static __NG_ELEMENT_ID__=zg}return e})();function zg(e){return Dg(a2(),x(),(e&16)===16)}function Dg(e,n,t){if(e3(e)&&!t){let c=Y2(e.index,n);return new Q3(c,c)}else if(e.type&175){let c=n[z2];return new Q3(c,n)}return null}var Cc=class{constructor(){}supports(n){return Ol(n)}create(n){return new Lc(n)}},bg=(e,n)=>n,Lc=class{length=0;collection;_linkedRecords=null;_unlinkedRecords=null;_previousItHead=null;_itHead=null;_itTail=null;_additionsHead=null;_additionsTail=null;_movesHead=null;_movesTail=null;_removalsHead=null;_removalsTail=null;_identityChangesHead=null;_identityChangesTail=null;_trackByFn;constructor(n){this._trackByFn=n||bg}forEachItem(n){let t;for(t=this._itHead;t!==null;t=t._next)n(t)}forEachOperation(n){let t=this._itHead,c=this._removalsHead,s=0,o=null;for(;t||c;){let r=!c||t&&t.currentIndex<Mi(c,s,o)?t:c,i=Mi(r,s,o),l=r.currentIndex;if(r===c)s--,c=c._nextRemoved;else if(t=t._next,r.previousIndex==null)s++;else{o||(o=[]);let a=i-s,f=l-s;if(a!=f){for(let p=0;p<a;p++){let d=p<o.length?o[p]:o[p]=0,h=d+p;f<=h&&h<a&&(o[p]=d+1)}let u=r.previousIndex;o[u]=f-a}}i!==l&&n(r,i,l)}}forEachPreviousItem(n){let t;for(t=this._previousItHead;t!==null;t=t._nextPrevious)n(t)}forEachAddedItem(n){let t;for(t=this._additionsHead;t!==null;t=t._nextAdded)n(t)}forEachMovedItem(n){let t;for(t=this._movesHead;t!==null;t=t._nextMoved)n(t)}forEachRemovedItem(n){let t;for(t=this._removalsHead;t!==null;t=t._nextRemoved)n(t)}forEachIdentityChange(n){let t;for(t=this._identityChangesHead;t!==null;t=t._nextIdentityChange)n(t)}diff(n){if(n==null&&(n=[]),!Ol(n))throw new D(900,!1);return this.check(n)?this:null}onDestroy(){}check(n){this._reset();let t=this._itHead,c=!1,s,o,r;if(Array.isArray(n)){this.length=n.length;for(let i=0;i<this.length;i++)o=n[i],r=this._trackByFn(i,o),t===null||!Object.is(t.trackById,r)?(t=this._mismatch(t,o,r,i),c=!0):(c&&(t=this._verifyReinsertion(t,o,r,i)),Object.is(t.item,o)||this._addIdentityChange(t,o)),t=t._next}else s=0,cm(n,i=>{r=this._trackByFn(s,i),t===null||!Object.is(t.trackById,r)?(t=this._mismatch(t,i,r,s),c=!0):(c&&(t=this._verifyReinsertion(t,i,r,s)),Object.is(t.item,i)||this._addIdentityChange(t,i)),t=t._next,s++}),this.length=s;return this._truncate(t),this.collection=n,this.isDirty}get isDirty(){return this._additionsHead!==null||this._movesHead!==null||this._removalsHead!==null||this._identityChangesHead!==null}_reset(){if(this.isDirty){let n;for(n=this._previousItHead=this._itHead;n!==null;n=n._next)n._nextPrevious=n._next;for(n=this._additionsHead;n!==null;n=n._nextAdded)n.previousIndex=n.currentIndex;for(this._additionsHead=this._additionsTail=null,n=this._movesHead;n!==null;n=n._nextMoved)n.previousIndex=n.currentIndex;this._movesHead=this._movesTail=null,this._removalsHead=this._removalsTail=null,this._identityChangesHead=this._identityChangesTail=null}}_mismatch(n,t,c,s){let o;return n===null?o=this._itTail:(o=n._prev,this._remove(n)),n=this._unlinkedRecords===null?null:this._unlinkedRecords.get(c,null),n!==null?(Object.is(n.item,t)||this._addIdentityChange(n,t),this._reinsertAfter(n,o,s)):(n=this._linkedRecords===null?null:this._linkedRecords.get(c,s),n!==null?(Object.is(n.item,t)||this._addIdentityChange(n,t),this._moveAfter(n,o,s)):n=this._addAfter(new yc(t,c),o,s)),n}_verifyReinsertion(n,t,c,s){let o=this._unlinkedRecords===null?null:this._unlinkedRecords.get(c,null);return o!==null?n=this._reinsertAfter(o,n._prev,s):n.currentIndex!=s&&(n.currentIndex=s,this._addToMoves(n,s)),n}_truncate(n){for(;n!==null;){let t=n._next;this._addToRemovals(this._unlink(n)),n=t}this._unlinkedRecords!==null&&this._unlinkedRecords.clear(),this._additionsTail!==null&&(this._additionsTail._nextAdded=null),this._movesTail!==null&&(this._movesTail._nextMoved=null),this._itTail!==null&&(this._itTail._next=null),this._removalsTail!==null&&(this._removalsTail._nextRemoved=null),this._identityChangesTail!==null&&(this._identityChangesTail._nextIdentityChange=null)}_reinsertAfter(n,t,c){this._unlinkedRecords!==null&&this._unlinkedRecords.remove(n);let s=n._prevRemoved,o=n._nextRemoved;return s===null?this._removalsHead=o:s._nextRemoved=o,o===null?this._removalsTail=s:o._prevRemoved=s,this._insertAfter(n,t,c),this._addToMoves(n,c),n}_moveAfter(n,t,c){return this._unlink(n),this._insertAfter(n,t,c),this._addToMoves(n,c),n}_addAfter(n,t,c){return this._insertAfter(n,t,c),this._additionsTail===null?this._additionsTail=this._additionsHead=n:this._additionsTail=this._additionsTail._nextAdded=n,n}_insertAfter(n,t,c){let s=t===null?this._itHead:t._next;return n._next=s,n._prev=t,s===null?this._itTail=n:s._prev=n,t===null?this._itHead=n:t._next=n,this._linkedRecords===null&&(this._linkedRecords=new ot),this._linkedRecords.put(n),n.currentIndex=c,n}_remove(n){return this._addToRemovals(this._unlink(n))}_unlink(n){this._linkedRecords!==null&&this._linkedRecords.remove(n);let t=n._prev,c=n._next;return t===null?this._itHead=c:t._next=c,c===null?this._itTail=t:c._prev=t,n}_addToMoves(n,t){return n.previousIndex===t||(this._movesTail===null?this._movesTail=this._movesHead=n:this._movesTail=this._movesTail._nextMoved=n),n}_addToRemovals(n){return this._unlinkedRecords===null&&(this._unlinkedRecords=new ot),this._unlinkedRecords.put(n),n.currentIndex=null,n._nextRemoved=null,this._removalsTail===null?(this._removalsTail=this._removalsHead=n,n._prevRemoved=null):(n._prevRemoved=this._removalsTail,this._removalsTail=this._removalsTail._nextRemoved=n),n}_addIdentityChange(n,t){return n.item=t,this._identityChangesTail===null?this._identityChangesTail=this._identityChangesHead=n:this._identityChangesTail=this._identityChangesTail._nextIdentityChange=n,n}},yc=class{item;trackById;currentIndex=null;previousIndex=null;_nextPrevious=null;_prev=null;_next=null;_prevDup=null;_nextDup=null;_prevRemoved=null;_nextRemoved=null;_nextAdded=null;_nextMoved=null;_nextIdentityChange=null;constructor(n,t){this.item=n,this.trackById=t}},vc=class{_head=null;_tail=null;add(n){this._head===null?(this._head=this._tail=n,n._nextDup=null,n._prevDup=null):(this._tail._nextDup=n,n._prevDup=this._tail,n._nextDup=null,this._tail=n)}get(n,t){let c;for(c=this._head;c!==null;c=c._nextDup)if((t===null||t<=c.currentIndex)&&Object.is(c.trackById,n))return c;return null}remove(n){let t=n._prevDup,c=n._nextDup;return t===null?this._head=c:t._nextDup=c,c===null?this._tail=t:c._prevDup=t,this._head===null}},ot=class{map=new Map;put(n){let t=n.trackById,c=this.map.get(t);c||(c=new vc,this.map.set(t,c)),c.add(n)}get(n,t){let c=n,s=this.map.get(c);return s?s.get(n,t):null}remove(n){let t=n.trackById;return this.map.get(t).remove(n)&&this.map.delete(t),n}get isEmpty(){return this.map.size===0}clear(){this.map.clear()}};function Mi(e,n,t){let c=e.previousIndex;if(c===null)return c;let s=0;return t&&c<t.length&&(s=t[c]),c+n+s}var zc=class{constructor(){}supports(n){return n instanceof Map||Ls(n)}create(){return new Dc}},Dc=class{_records=new Map;_mapHead=null;_appendAfter=null;_previousMapHead=null;_changesHead=null;_changesTail=null;_additionsHead=null;_additionsTail=null;_removalsHead=null;_removalsTail=null;get isDirty(){return this._additionsHead!==null||this._changesHead!==null||this._removalsHead!==null}forEachItem(n){let t;for(t=this._mapHead;t!==null;t=t._next)n(t)}forEachPreviousItem(n){let t;for(t=this._previousMapHead;t!==null;t=t._nextPrevious)n(t)}forEachChangedItem(n){let t;for(t=this._changesHead;t!==null;t=t._nextChanged)n(t)}forEachAddedItem(n){let t;for(t=this._additionsHead;t!==null;t=t._nextAdded)n(t)}forEachRemovedItem(n){let t;for(t=this._removalsHead;t!==null;t=t._nextRemoved)n(t)}diff(n){if(!n)n=new Map;else if(!(n instanceof Map||Ls(n)))throw new D(900,!1);return this.check(n)?this:null}onDestroy(){}check(n){this._reset();let t=this._mapHead;if(this._appendAfter=null,this._forEach(n,(c,s)=>{if(t&&t.key===s)this._maybeAddToChanges(t,c),this._appendAfter=t,t=t._next;else{let o=this._getOrCreateRecordForKey(s,c);t=this._insertBeforeOrAppend(t,o)}}),t){t._prev&&(t._prev._next=null),this._removalsHead=t;for(let c=t;c!==null;c=c._nextRemoved)c===this._mapHead&&(this._mapHead=null),this._records.delete(c.key),c._nextRemoved=c._next,c.previousValue=c.currentValue,c.currentValue=null,c._prev=null,c._next=null}return this._changesTail&&(this._changesTail._nextChanged=null),this._additionsTail&&(this._additionsTail._nextAdded=null),this.isDirty}_insertBeforeOrAppend(n,t){if(n){let c=n._prev;return t._next=n,t._prev=c,n._prev=t,c&&(c._next=t),n===this._mapHead&&(this._mapHead=t),this._appendAfter=n,n}return this._appendAfter?(this._appendAfter._next=t,t._prev=this._appendAfter):this._mapHead=t,this._appendAfter=t,null}_getOrCreateRecordForKey(n,t){if(this._records.has(n)){let s=this._records.get(n);this._maybeAddToChanges(s,t);let o=s._prev,r=s._next;return o&&(o._next=r),r&&(r._prev=o),s._next=null,s._prev=null,s}let c=new bc(n);return this._records.set(n,c),c.currentValue=t,this._addToAdditions(c),c}_reset(){if(this.isDirty){let n;for(this._previousMapHead=this._mapHead,n=this._previousMapHead;n!==null;n=n._next)n._nextPrevious=n._next;for(n=this._changesHead;n!==null;n=n._nextChanged)n.previousValue=n.currentValue;for(n=this._additionsHead;n!=null;n=n._nextAdded)n.previousValue=n.currentValue;this._changesHead=this._changesTail=null,this._additionsHead=this._additionsTail=null,this._removalsHead=null}}_maybeAddToChanges(n,t){Object.is(t,n.currentValue)||(n.previousValue=n.currentValue,n.currentValue=t,this._addToChanges(n))}_addToAdditions(n){this._additionsHead===null?this._additionsHead=this._additionsTail=n:(this._additionsTail._nextAdded=n,this._additionsTail=n)}_addToChanges(n){this._changesHead===null?this._changesHead=this._changesTail=n:(this._changesTail._nextChanged=n,this._changesTail=n)}_forEach(n,t){n instanceof Map?n.forEach(t):Object.keys(n).forEach(c=>t(n[c],c))}},bc=class{key;previousValue=null;currentValue=null;_nextPrevious=null;_next=null;_prev=null;_nextAdded=null;_nextRemoved=null;_nextChanged=null;constructor(n){this.key=n}};function Ci(){return new Ss([new Cc])}var Ss=(()=>{class e{factories;static \u0275prov=M({token:e,providedIn:"root",factory:Ci});constructor(t){this.factories=t}static create(t,c){if(c!=null){let s=c.factories.slice();t=t.concat(s)}return new e(t)}static extend(t){return{provide:e,useFactory:c=>e.create(t,c||Ci()),deps:[[e,new Ti,new lt]]}}find(t){let c=this.factories.find(s=>s.supports(t));if(c!=null)return c;throw new D(901,!1)}}return e})();function Li(){return new _s([new zc])}var _s=(()=>{class e{static \u0275prov=M({token:e,providedIn:"root",factory:Li});factories;constructor(t){this.factories=t}static create(t,c){if(c){let s=c.factories.slice();t=t.concat(s)}return new e(t)}static extend(t){return{provide:e,useFactory:c=>e.create(t,c||Li()),deps:[[e,new Ti,new lt]]}}find(t){let c=this.factories.find(s=>s.supports(t));if(c)return c;throw new D(901,!1)}}return e})();function fa(e){V(8);try{let{rootComponent:n,appProviders:t,platformProviders:c}=e,s=yg(c),o=[la({}),{provide:le,useExisting:pg},...t||[]],r=new J0({providers:o,parent:s,debugName:"",runEnvironmentInitializers:!1});return gg({r3Injector:r.injector,platformInjector:s,rootComponent:n})}catch(n){return Promise.reject(n)}finally{V(9)}}function k1(e){return typeof e=="boolean"?e:e!=null&&e!=="false"}function Ts(e,n=NaN){return!isNaN(parseFloat(e))&&!isNaN(Number(e))?Number(e):n}function A2(e){return Qn(e)}function d3(e,n){return qn(e,n?.equal)}var wc=class{[E2];constructor(n){this[E2]=n}destroy(){this[E2].destroy()}};function wg(e,n){!n?.injector&&Sc(wg);let t=n?.injector??L(p2),c=n?.manualCleanup!==!0?t.get(n4):null,s,o=t.get(Jc,null,{optional:!0}),r=t.get(le);return o!==null&&!n?.forceRoot?(s=Eg(o.view,r,e),c instanceof q0&&c._lView===o.view&&(c=null)):s=Ig(e,t.get(Vl),r),s.injector=t,c!==null&&(s.onDestroyFn=c.onDestroy(()=>s.destroy())),new wc(s)}var ua=B(_({},Te),{consumerIsAlwaysLive:!0,consumerAllowSignalWrites:!0,dirty:!0,hasRun:!1,cleanupFns:void 0,zone:null,kind:"effect",onDestroyFn:Z3,run(){if(this.dirty=!1,this.hasRun&&!p0(this))return;this.hasRun=!0;let e=c=>(this.cleanupFns??=[]).push(c),n=R3(this),t=B0(!1);try{this.maybeCleanup(),this.fn(e)}finally{B0(t),d0(this,n)}},maybeCleanup(){if(this.cleanupFns?.length)try{for(;this.cleanupFns.length;)this.cleanupFns.pop()()}finally{this.cleanupFns=[]}}}),xg=B(_({},ua),{consumerMarkedDirty(){this.scheduler.schedule(this),this.notifier.notify(12)},destroy(){O3(this),this.onDestroyFn(),this.maybeCleanup(),this.scheduler.remove(this)}}),Ng=B(_({},ua),{consumerMarkedDirty(){this.view[S]|=8192,n3(this.view),this.notifier.notify(13)},destroy(){O3(this),this.onDestroyFn(),this.maybeCleanup(),this.view[ce]?.delete(this)}});function Eg(e,n,t){let c=Object.create(Ng);return c.view=e,c.zone=typeof Zone<"u"?Zone.current:null,c.notifier=n,c.fn=t,e[ce]??=new Set,e[ce].add(c),c.consumerMarkedDirty(c),c}function Ig(e,n,t){let c=Object.create(xg);return c.fn=e,c.scheduler=n,c.notifier=t,c.zone=typeof Zone<"u"?Zone.current:null,c.scheduler.schedule(c),c.notifier.notify(12),c}function __(e,n){let t=te(e),c=n.elementInjector||ft();return new Ye(t).create(c,n.projectableNodes,n.hostElement,n.environmentInjector)}var Z=new v("");var ha=null;function k2(){return ha}function As(e){ha??=e}var a4=class{},f4=(()=>{class e{historyGo(t){throw new Error("")}static \u0275fac=function(c){return new(c||e)};static \u0275prov=M({token:e,factory:()=>L(ma),providedIn:"platform"})}return e})();var ma=(()=>{class e extends f4{_location;_history;_doc=L(Z);constructor(){super(),this._location=window.location,this._history=window.history}getBaseHrefFromDOM(){return k2().getBaseHref(this._doc)}onPopState(t){let c=k2().getGlobalEventTarget(this._doc,"window");return c.addEventListener("popstate",t,!1),()=>c.removeEventListener("popstate",t)}onHashChange(t){let c=k2().getGlobalEventTarget(this._doc,"window");return c.addEventListener("hashchange",t,!1),()=>c.removeEventListener("hashchange",t)}get href(){return this._location.href}get protocol(){return this._location.protocol}get hostname(){return this._location.hostname}get port(){return this._location.port}get pathname(){return this._location.pathname}get search(){return this._location.search}get hash(){return this._location.hash}set pathname(t){this._location.pathname=t}pushState(t,c,s){this._history.pushState(t,c,s)}replaceState(t,c,s){this._history.replaceState(t,c,s)}forward(){this._history.forward()}back(){this._history.back()}historyGo(t=0){this._history.go(t)}getState(){return this._history.state}static \u0275fac=function(c){return new(c||e)};static \u0275prov=M({token:e,factory:()=>new e,providedIn:"platform"})}return e})();function It(e,n){return e?n?e.endsWith("/")?n.startsWith("/")?e+n.slice(1):e+n:n.startsWith("/")?e+n:`${e}/${n}`:e:n}function da(e){let n=e.search(/#|\?|$/);return e[n-1]==="/"?e.slice(0,n-1)+e.slice(n):e}function $2(e){return e&&e[0]!=="?"?`?${e}`:e}var p3=(()=>{class e{historyGo(t){throw new Error("")}static \u0275fac=function(c){return new(c||e)};static \u0275prov=M({token:e,factory:()=>L(ga),providedIn:"root"})}return e})(),St=new v(""),ga=(()=>{class e extends p3{_platformLocation;_baseHref;_removeListenerFns=[];constructor(t,c){super(),this._platformLocation=t,this._baseHref=c??this._platformLocation.getBaseHrefFromDOM()??L(Z).location?.origin??""}ngOnDestroy(){for(;this._removeListenerFns.length;)this._removeListenerFns.pop()()}onPopState(t){this._removeListenerFns.push(this._platformLocation.onPopState(t),this._platformLocation.onHashChange(t))}getBaseHref(){return this._baseHref}prepareExternalUrl(t){return It(this._baseHref,t)}path(t=!1){let c=this._platformLocation.pathname+$2(this._platformLocation.search),s=this._platformLocation.hash;return s&&t?`${c}${s}`:c}pushState(t,c,s,o){let r=this.prepareExternalUrl(s+$2(o));this._platformLocation.pushState(t,c,r)}replaceState(t,c,s,o){let r=this.prepareExternalUrl(s+$2(o));this._platformLocation.replaceState(t,c,r)}forward(){this._platformLocation.forward()}back(){this._platformLocation.back()}getState(){return this._platformLocation.getState()}historyGo(t=0){this._platformLocation.historyGo?.(t)}static \u0275fac=function(c){return new(c||e)(C(f4),C(St,8))};static \u0275prov=M({token:e,factory:e.\u0275fac,providedIn:"root"})}return e})(),Ma=(()=>{class e{_subject=new Y;_basePath;_locationStrategy;_urlChangeListeners=[];_urlChangeSubscription=null;constructor(t){this._locationStrategy=t;let c=this._locationStrategy.getBaseHref();this._basePath=Tg(da(pa(c))),this._locationStrategy.onPopState(s=>{this._subject.next({url:this.path(!0),pop:!0,state:s.state,type:s.type})})}ngOnDestroy(){this._urlChangeSubscription?.unsubscribe(),this._urlChangeListeners=[]}path(t=!1){return this.normalize(this._locationStrategy.path(t))}getState(){return this._locationStrategy.getState()}isCurrentPathEqualTo(t,c=""){return this.path()==this.normalize(t+$2(c))}normalize(t){return e.stripTrailingSlash(_g(this._basePath,pa(t)))}prepareExternalUrl(t){return t&&t[0]!=="/"&&(t="/"+t),this._locationStrategy.prepareExternalUrl(t)}go(t,c="",s=null){this._locationStrategy.pushState(s,"",t,c),this._notifyUrlChangeListeners(this.prepareExternalUrl(t+$2(c)),s)}replaceState(t,c="",s=null){this._locationStrategy.replaceState(s,"",t,c),this._notifyUrlChangeListeners(this.prepareExternalUrl(t+$2(c)),s)}forward(){this._locationStrategy.forward()}back(){this._locationStrategy.back()}historyGo(t=0){this._locationStrategy.historyGo?.(t)}onUrlChange(t){return this._urlChangeListeners.push(t),this._urlChangeSubscription??=this.subscribe(c=>{this._notifyUrlChangeListeners(c.url,c.state)}),()=>{let c=this._urlChangeListeners.indexOf(t);this._urlChangeListeners.splice(c,1),this._urlChangeListeners.length===0&&(this._urlChangeSubscription?.unsubscribe(),this._urlChangeSubscription=null)}}_notifyUrlChangeListeners(t="",c){this._urlChangeListeners.forEach(s=>s(t,c))}subscribe(t,c,s){return this._subject.subscribe({next:t,error:c??void 0,complete:s??void 0})}static normalizeQueryParams=$2;static joinWithSlash=It;static stripTrailingSlash=da;static \u0275fac=function(c){return new(c||e)(C(p3))};static \u0275prov=M({token:e,factory:()=>Sg(),providedIn:"root"})}return e})();function Sg(){return new Ma(C(p3))}function _g(e,n){if(!e||!n.startsWith(e))return n;let t=n.substring(e.length);return t===""||["/",";","?","#"].includes(t[0])?t:n}function pa(e){return e.replace(/\/index.html$/,"")}function Tg(e){if(new RegExp("^(https?:)?//").test(e)){let[,t]=e.split(/\/\/[^\/]+/);return t}return e}var Ag=(()=>{class e extends p3{_platformLocation;_baseHref="";_removeListenerFns=[];constructor(t,c){super(),this._platformLocation=t,c!=null&&(this._baseHref=c)}ngOnDestroy(){for(;this._removeListenerFns.length;)this._removeListenerFns.pop()()}onPopState(t){this._removeListenerFns.push(this._platformLocation.onPopState(t),this._platformLocation.onHashChange(t))}getBaseHref(){return this._baseHref}path(t=!1){let c=this._platformLocation.hash??"#";return c.length>0?c.substring(1):c}prepareExternalUrl(t){let c=It(this._baseHref,t);return c.length>0?"#"+c:c}pushState(t,c,s,o){let r=this.prepareExternalUrl(s+$2(o))||this._platformLocation.pathname;this._platformLocation.pushState(t,c,r)}replaceState(t,c,s,o){let r=this.prepareExternalUrl(s+$2(o))||this._platformLocation.pathname;this._platformLocation.replaceState(t,c,r)}forward(){this._platformLocation.forward()}back(){this._platformLocation.back()}getState(){return this._platformLocation.getState()}historyGo(t=0){this._platformLocation.historyGo?.(t)}static \u0275fac=function(c){return new(c||e)(C(f4),C(St,8))};static \u0275prov=M({token:e,factory:e.\u0275fac})}return e})();var ks=/\s+/,Ca=[],kg=(()=>{class e{_ngEl;_renderer;initialClasses=Ca;rawClass;stateMap=new Map;constructor(t,c){this._ngEl=t,this._renderer=c}set klass(t){this.initialClasses=t!=null?t.trim().split(ks):Ca}set ngClass(t){this.rawClass=typeof t=="string"?t.trim().split(ks):t}ngDoCheck(){for(let c of this.initialClasses)this._updateState(c,!0);let t=this.rawClass;if(Array.isArray(t)||t instanceof Set)for(let c of t)this._updateState(c,!0);else if(t!=null)for(let c of Object.keys(t))this._updateState(c,!!t[c]);this._applyStateDiff()}_updateState(t,c){let s=this.stateMap.get(t);s!==void 0?(s.enabled!==c&&(s.changed=!0,s.enabled=c),s.touched=!0):this.stateMap.set(t,{enabled:c,changed:!0,touched:!0})}_applyStateDiff(){for(let t of this.stateMap){let c=t[0],s=t[1];s.changed?(this._toggleClass(c,s.enabled),s.changed=!1):s.touched||(s.enabled&&this._toggleClass(c,!1),this.stateMap.delete(c)),s.touched=!1}}_toggleClass(t,c){t=t.trim(),t.length>0&&t.split(ks).forEach(s=>{c?this._renderer.addClass(this._ngEl.nativeElement,s):this._renderer.removeClass(this._ngEl.nativeElement,s)})}static \u0275fac=function(c){return new(c||e)(y(c2),y(b2))};static \u0275dir=O({type:e,selectors:[["","ngClass",""]],inputs:{klass:[0,"class","klass"],ngClass:"ngClass"}})}return e})(),Fg=(()=>{class e{_viewContainerRef;ngComponentOutlet=null;ngComponentOutletInputs;ngComponentOutletInjector;ngComponentOutletContent;ngComponentOutletNgModule;ngComponentOutletNgModuleFactory;_componentRef;_moduleRef;_inputsUsed=new Map;get componentInstance(){return this._componentRef?.instance??null}constructor(t){this._viewContainerRef=t}_needToReCreateNgModuleInstance(t){return t.ngComponentOutletNgModule!==void 0||t.ngComponentOutletNgModuleFactory!==void 0}_needToReCreateComponentInstance(t){return t.ngComponentOutlet!==void 0||t.ngComponentOutletContent!==void 0||t.ngComponentOutletInjector!==void 0||this._needToReCreateNgModuleInstance(t)}ngOnChanges(t){if(this._needToReCreateComponentInstance(t)&&(this._viewContainerRef.clear(),this._inputsUsed.clear(),this._componentRef=void 0,this.ngComponentOutlet)){let c=this.ngComponentOutletInjector||this._viewContainerRef.parentInjector;this._needToReCreateNgModuleInstance(t)&&(this._moduleRef?.destroy(),this.ngComponentOutletNgModule?this._moduleRef=kl(this.ngComponentOutletNgModule,La(c)):this.ngComponentOutletNgModuleFactory?this._moduleRef=this.ngComponentOutletNgModuleFactory.create(La(c)):this._moduleRef=void 0),this._componentRef=this._viewContainerRef.createComponent(this.ngComponentOutlet,{injector:c,ngModuleRef:this._moduleRef,projectableNodes:this.ngComponentOutletContent})}}ngDoCheck(){if(this._componentRef){if(this.ngComponentOutletInputs)for(let t of Object.keys(this.ngComponentOutletInputs))this._inputsUsed.set(t,!0);this._applyInputStateDiff(this._componentRef)}}ngOnDestroy(){this._moduleRef?.destroy()}_applyInputStateDiff(t){for(let[c,s]of this._inputsUsed)s?(t.setInput(c,this.ngComponentOutletInputs[c]),this._inputsUsed.set(c,!1)):(t.setInput(c,void 0),this._inputsUsed.delete(c))}static \u0275fac=function(c){return new(c||e)(y(h1))};static \u0275dir=O({type:e,selectors:[["","ngComponentOutlet",""]],inputs:{ngComponentOutlet:"ngComponentOutlet",ngComponentOutletInputs:"ngComponentOutletInputs",ngComponentOutletInjector:"ngComponentOutletInjector",ngComponentOutletContent:"ngComponentOutletContent",ngComponentOutletNgModule:"ngComponentOutletNgModule",ngComponentOutletNgModuleFactory:"ngComponentOutletNgModuleFactory"},exportAs:["ngComponentOutlet"],features:[n2]})}return e})();function La(e){return e.get(ae).injector}var _t=class{$implicit;ngForOf;index;count;constructor(n,t,c,s){this.$implicit=n,this.ngForOf=t,this.index=c,this.count=s}get first(){return this.index===0}get last(){return this.index===this.count-1}get even(){return this.index%2===0}get odd(){return!this.even}},Da=(()=>{class e{_viewContainer;_template;_differs;set ngForOf(t){this._ngForOf=t,this._ngForOfDirty=!0}set ngForTrackBy(t){this._trackByFn=t}get ngForTrackBy(){return this._trackByFn}_ngForOf=null;_ngForOfDirty=!0;_differ=null;_trackByFn;constructor(t,c,s){this._viewContainer=t,this._template=c,this._differs=s}set ngForTemplate(t){t&&(this._template=t)}ngDoCheck(){if(this._ngForOfDirty){this._ngForOfDirty=!1;let t=this._ngForOf;!this._differ&&t&&(this._differ=this._differs.find(t).create(this.ngForTrackBy))}if(this._differ){let t=this._differ.diff(this._ngForOf);t&&this._applyChanges(t)}}_applyChanges(t){let c=this._viewContainer;t.forEachOperation((s,o,r)=>{if(s.previousIndex==null)c.createEmbeddedView(this._template,new _t(s.item,this._ngForOf,-1,-1),r===null?void 0:r);else if(r==null)c.remove(o===null?void 0:o);else if(o!==null){let i=c.get(o);c.move(i,r),ya(i,s)}});for(let s=0,o=c.length;s<o;s++){let i=c.get(s).context;i.index=s,i.count=o,i.ngForOf=this._ngForOf}t.forEachIdentityChange(s=>{let o=c.get(s.currentIndex);ya(o,s)})}static ngTemplateContextGuard(t,c){return!0}static \u0275fac=function(c){return new(c||e)(y(h1),y(S1),y(Ss))};static \u0275dir=O({type:e,selectors:[["","ngFor","","ngForOf",""]],inputs:{ngForOf:"ngForOf",ngForTrackBy:"ngForTrackBy",ngForTemplate:"ngForTemplate"}})}return e})();function ya(e,n){e.context.$implicit=n.item}var Rg=(()=>{class e{_viewContainer;_context=new Tt;_thenTemplateRef=null;_elseTemplateRef=null;_thenViewRef=null;_elseViewRef=null;constructor(t,c){this._viewContainer=t,this._thenTemplateRef=c}set ngIf(t){this._context.$implicit=this._context.ngIf=t,this._updateView()}set ngIfThen(t){va(t,!1),this._thenTemplateRef=t,this._thenViewRef=null,this._updateView()}set ngIfElse(t){va(t,!1),this._elseTemplateRef=t,this._elseViewRef=null,this._updateView()}_updateView(){this._context.$implicit?this._thenViewRef||(this._viewContainer.clear(),this._elseViewRef=null,this._thenTemplateRef&&(this._thenViewRef=this._viewContainer.createEmbeddedView(this._thenTemplateRef,this._context))):this._elseViewRef||(this._viewContainer.clear(),this._thenViewRef=null,this._elseTemplateRef&&(this._elseViewRef=this._viewContainer.createEmbeddedView(this._elseTemplateRef,this._context)))}static ngIfUseIfTypeGuard;static ngTemplateGuard_ngIf;static ngTemplateContextGuard(t,c){return!0}static \u0275fac=function(c){return new(c||e)(y(h1),y(S1))};static \u0275dir=O({type:e,selectors:[["","ngIf",""]],inputs:{ngIf:"ngIf",ngIfThen:"ngIfThen",ngIfElse:"ngIfElse"}})}return e})(),Tt=class{$implicit=null;ngIf=null};function va(e,n){if(e&&!e.createEmbeddedView)throw new D(2020,!1)}var Fs=class{_viewContainerRef;_templateRef;_created=!1;constructor(n,t){this._viewContainerRef=n,this._templateRef=t}create(){this._created=!0,this._viewContainerRef.createEmbeddedView(this._templateRef)}destroy(){this._created=!1,this._viewContainerRef.clear()}enforceState(n){n&&!this._created?this.create():!n&&this._created&&this.destroy()}},ba=(()=>{class e{_defaultViews=[];_defaultUsed=!1;_caseCount=0;_lastCaseCheckIndex=0;_lastCasesMatched=!1;_ngSwitch;set ngSwitch(t){this._ngSwitch=t,this._caseCount===0&&this._updateDefaultCases(!0)}_addCase(){return this._caseCount++}_addDefault(t){this._defaultViews.push(t)}_matchCase(t){let c=t===this._ngSwitch;return this._lastCasesMatched||=c,this._lastCaseCheckIndex++,this._lastCaseCheckIndex===this._caseCount&&(this._updateDefaultCases(!this._lastCasesMatched),this._lastCaseCheckIndex=0,this._lastCasesMatched=!1),c}_updateDefaultCases(t){if(this._defaultViews.length>0&&t!==this._defaultUsed){this._defaultUsed=t;for(let c of this._defaultViews)c.enforceState(t)}}static \u0275fac=function(c){return new(c||e)};static \u0275dir=O({type:e,selectors:[["","ngSwitch",""]],inputs:{ngSwitch:"ngSwitch"}})}return e})(),Og=(()=>{class e{ngSwitch;_view;ngSwitchCase;constructor(t,c,s){this.ngSwitch=s,s._addCase(),this._view=new Fs(t,c)}ngDoCheck(){this._view.enforceState(this.ngSwitch._matchCase(this.ngSwitchCase))}static \u0275fac=function(c){return new(c||e)(y(h1),y(S1),y(ba,9))};static \u0275dir=O({type:e,selectors:[["","ngSwitchCase",""]],inputs:{ngSwitchCase:"ngSwitchCase"}})}return e})();var Pg=(()=>{class e{_viewContainerRef;_viewRef=null;ngTemplateOutletContext=null;ngTemplateOutlet=null;ngTemplateOutletInjector=null;constructor(t){this._viewContainerRef=t}ngOnChanges(t){if(this._shouldRecreateView(t)){let c=this._viewContainerRef;if(this._viewRef&&c.remove(c.indexOf(this._viewRef)),!this.ngTemplateOutlet){this._viewRef=null;return}let s=this._createContextForwardProxy();this._viewRef=c.createEmbeddedView(this.ngTemplateOutlet,s,{injector:this.ngTemplateOutletInjector??void 0})}}_shouldRecreateView(t){return!!t.ngTemplateOutlet||!!t.ngTemplateOutletInjector}_createContextForwardProxy(){return new Proxy({},{set:(t,c,s)=>this.ngTemplateOutletContext?Reflect.set(this.ngTemplateOutletContext,c,s):!1,get:(t,c,s)=>{if(this.ngTemplateOutletContext)return Reflect.get(this.ngTemplateOutletContext,c,s)}})}static \u0275fac=function(c){return new(c||e)(y(h1))};static \u0275dir=O({type:e,selectors:[["","ngTemplateOutlet",""]],inputs:{ngTemplateOutletContext:"ngTemplateOutletContext",ngTemplateOutlet:"ngTemplateOutlet",ngTemplateOutletInjector:"ngTemplateOutletInjector"},features:[n2]})}return e})();function wa(e,n){return new D(2100,!1)}var Rs=class{createSubscription(n,t){return A2(()=>n.subscribe({next:t,error:c=>{throw c}}))}dispose(n){A2(()=>n.unsubscribe())}},Os=class{createSubscription(n,t){return n.then(c=>t?.(c),c=>{throw c}),{unsubscribe:()=>{t=null}}}dispose(n){n.unsubscribe()}},Vg=new Os,jg=new Rs,Bg=(()=>{class e{_ref;_latestValue=null;markForCheckOnValueUpdate=!0;_subscription=null;_obj=null;_strategy=null;constructor(t){this._ref=t}ngOnDestroy(){this._subscription&&this._dispose(),this._ref=null}transform(t){if(!this._obj){if(t)try{this.markForCheckOnValueUpdate=!1,this._subscribe(t)}finally{this.markForCheckOnValueUpdate=!0}return this._latestValue}return t!==this._obj?(this._dispose(),this.transform(t)):this._latestValue}_subscribe(t){this._obj=t,this._strategy=this._selectStrategy(t),this._subscription=this._strategy.createSubscription(t,c=>this._updateLatestValue(t,c))}_selectStrategy(t){if(f3(t))return Vg;if(ys(t))return jg;throw wa(e,t)}_dispose(){this._strategy.dispose(this._subscription),this._latestValue=null,this._subscription=null,this._obj=null}_updateLatestValue(t,c){t===this._obj&&(this._latestValue=c,this.markForCheckOnValueUpdate&&this._ref?.markForCheck())}static \u0275fac=function(c){return new(c||e)(y(me,16))};static \u0275pipe=a3({name:"async",type:e,pure:!1})}return e})();var Hg=/(?:[0-9A-Za-z\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0560-\u0588\u05D0-\u05EA\u05EF-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u0860-\u086A\u0870-\u0887\u0889-\u088E\u08A0-\u08C9\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u09FC\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C5D\u0C60\u0C61\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D04-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D5F-\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16F1-\u16F8\u1700-\u1711\u171F-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1878\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4C\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1C80-\u1C88\u1C90-\u1CBA\u1CBD-\u1CBF\u1CE9-\u1CEC\u1CEE-\u1CF3\u1CF5\u1CF6\u1CFA\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2183\u2184\u2C00-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005\u3006\u3031-\u3035\u303B\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312F\u3131-\u318E\u31A0-\u31BF\u31F0-\u31FF\u3400-\u4DBF\u4E00-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6E5\uA717-\uA71F\uA722-\uA788\uA78B-\uA7CA\uA7D0\uA7D1\uA7D3\uA7D5-\uA7D9\uA7F2-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA8FD\uA8FE\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uA9E0-\uA9E4\uA9E6-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB69\uAB70-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDE80-\uDE9C\uDEA0-\uDED0\uDF00-\uDF1F\uDF2D-\uDF40\uDF42-\uDF49\uDF50-\uDF75\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF]|\uD801[\uDC00-\uDC9D\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDD70-\uDD7A\uDD7C-\uDD8A\uDD8C-\uDD92\uDD94\uDD95\uDD97-\uDDA1\uDDA3-\uDDB1\uDDB3-\uDDB9\uDDBB\uDDBC\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67\uDF80-\uDF85\uDF87-\uDFB0\uDFB2-\uDFBA]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00\uDE10-\uDE13\uDE15-\uDE17\uDE19-\uDE35\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE4\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2\uDD00-\uDD23\uDE80-\uDEA9\uDEB0\uDEB1\uDF00-\uDF1C\uDF27\uDF30-\uDF45\uDF70-\uDF81\uDFB0-\uDFC4\uDFE0-\uDFF6]|\uD804[\uDC03-\uDC37\uDC71\uDC72\uDC75\uDC83-\uDCAF\uDCD0-\uDCE8\uDD03-\uDD26\uDD44\uDD47\uDD50-\uDD72\uDD76\uDD83-\uDDB2\uDDC1-\uDDC4\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE2B\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEDE\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3D\uDF50\uDF5D-\uDF61]|\uD805[\uDC00-\uDC34\uDC47-\uDC4A\uDC5F-\uDC61\uDC80-\uDCAF\uDCC4\uDCC5\uDCC7\uDD80-\uDDAE\uDDD8-\uDDDB\uDE00-\uDE2F\uDE44\uDE80-\uDEAA\uDEB8\uDF00-\uDF1A\uDF40-\uDF46]|\uD806[\uDC00-\uDC2B\uDCA0-\uDCDF\uDCFF-\uDD06\uDD09\uDD0C-\uDD13\uDD15\uDD16\uDD18-\uDD2F\uDD3F\uDD41\uDDA0-\uDDA7\uDDAA-\uDDD0\uDDE1\uDDE3\uDE00\uDE0B-\uDE32\uDE3A\uDE50\uDE5C-\uDE89\uDE9D\uDEB0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC2E\uDC40\uDC72-\uDC8F\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD30\uDD46\uDD60-\uDD65\uDD67\uDD68\uDD6A-\uDD89\uDD98\uDEE0-\uDEF2\uDFB0]|\uD808[\uDC00-\uDF99]|\uD809[\uDC80-\uDD43]|\uD80B[\uDF90-\uDFF0]|[\uD80C\uD81C-\uD820\uD822\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879\uD880-\uD883][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2E]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDE70-\uDEBE\uDED0-\uDEED\uDF00-\uDF2F\uDF40-\uDF43\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDE40-\uDE7F\uDF00-\uDF4A\uDF50\uDF93-\uDF9F\uDFE0\uDFE1\uDFE3]|\uD821[\uDC00-\uDFF7]|\uD823[\uDC00-\uDCD5\uDD00-\uDD08]|\uD82B[\uDFF0-\uDFF3\uDFF5-\uDFFB\uDFFD\uDFFE]|\uD82C[\uDC00-\uDD22\uDD50-\uDD52\uDD64-\uDD67\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB]|\uD837[\uDF00-\uDF1E]|\uD838[\uDD00-\uDD2C\uDD37-\uDD3D\uDD4E\uDE90-\uDEAD\uDEC0-\uDEEB]|\uD839[\uDFE0-\uDFE6\uDFE8-\uDFEB\uDFED\uDFEE\uDFF0-\uDFFE]|\uD83A[\uDC00-\uDCC4\uDD00-\uDD43\uDD4B]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD869[\uDC00-\uDEDF\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF38\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0]|\uD87E[\uDC00-\uDE1D]|\uD884[\uDC00-\uDF4A])\S*/g,Ug=(()=>{class e{transform(t){if(t==null)return null;if(typeof t!="string")throw wa(e,t);return t.replace(Hg,c=>c[0].toUpperCase()+c.slice(1).toLowerCase())}static \u0275fac=function(c){return new(c||e)};static \u0275pipe=a3({name:"titlecase",type:e,pure:!0})}return e})();function $g(e,n){return{key:e,value:n}}var Gg=(()=>{class e{differs;constructor(t){this.differs=t}differ;keyValues=[];compareFn=za;transform(t,c=za){if(!t||!(t instanceof Map)&&typeof t!="object")return null;this.differ??=this.differs.find(t).create();let s=this.differ.diff(t),o=c!==this.compareFn;return s&&(this.keyValues=[],s.forEachItem(r=>{this.keyValues.push($g(r.key,r.currentValue))})),(s||o)&&(c&&this.keyValues.sort(c),this.compareFn=c),this.keyValues}static \u0275fac=function(c){return new(c||e)(y(_s,16))};static \u0275pipe=a3({name:"keyvalue",type:e,pure:!1})}return e})();function za(e,n){let t=e.key,c=n.key;if(t===c)return 0;if(t==null)return 1;if(c==null)return-1;if(typeof t=="string"&&typeof c=="string")return t<c?-1:1;if(typeof t=="number"&&typeof c=="number")return t-c;if(typeof t=="boolean"&&typeof c=="boolean")return t<c?-1:1;let s=String(t),o=String(c);return s==o?0:s<o?-1:1}var xa=(()=>{class e{static \u0275fac=function(c){return new(c||e)};static \u0275mod=T2({type:e});static \u0275inj=S2({})}return e})();function u4(e,n){n=encodeURIComponent(n);for(let t of e.split(";")){let c=t.indexOf("="),[s,o]=c==-1?[t,""]:[t.slice(0,c),t.slice(c+1)];if(s.trim()===n)return decodeURIComponent(o)}return null}var At="browser",Na="server";function qg(e){return e===At}function kt(e){return e===Na}var ge=class{};var Ia=e=>e.src,Wg=new v("",{providedIn:"root",factory:()=>Ia});var Ea=/^((\s*\d+w\s*(,|$)){1,})$/;var Zg=[1,2],Yg=640;var Qg=1920,Xg=1080;var hA=(()=>{class e{imageLoader=L(Wg);config=Kg(L(k8));renderer=L(b2);imgElement=L(c2).nativeElement;injector=L(p2);lcpObserver;_renderedSrc=null;ngSrc;ngSrcset;sizes;width;height;loading;priority=!1;loaderParams;disableOptimizedSrcset=!1;fill=!1;placeholder;placeholderConfig;src;srcset;constructor(){}ngOnInit(){A1("NgOptimizedImage"),this.placeholder&&this.removePlaceholderOnLoad(this.imgElement),this.setHostAttributes()}setHostAttributes(){this.fill?this.sizes||="100vw":(this.setHostAttribute("width",this.width.toString()),this.setHostAttribute("height",this.height.toString())),this.setHostAttribute("loading",this.getLoadingBehavior()),this.setHostAttribute("fetchpriority",this.getFetchPriority()),this.setHostAttribute("ng-img","true");let t=this.updateSrcAndSrcset();this.sizes?this.getLoadingBehavior()==="lazy"?this.setHostAttribute("sizes","auto, "+this.sizes):this.setHostAttribute("sizes",this.sizes):this.ngSrcset&&Ea.test(this.ngSrcset)&&this.getLoadingBehavior()==="lazy"&&this.setHostAttribute("sizes","auto, 100vw")}ngOnChanges(t){if(t.ngSrc&&!t.ngSrc.isFirstChange()){let c=this._renderedSrc;this.updateSrcAndSrcset(!0)}}callImageLoader(t){let c=t;return this.loaderParams&&(c.loaderParams=this.loaderParams),this.imageLoader(c)}getLoadingBehavior(){return!this.priority&&this.loading!==void 0?this.loading:this.priority?"eager":"lazy"}getFetchPriority(){return this.priority?"high":"auto"}getRewrittenSrc(){if(!this._renderedSrc){let t={src:this.ngSrc};this._renderedSrc=this.callImageLoader(t)}return this._renderedSrc}getRewrittenSrcset(){let t=Ea.test(this.ngSrcset);return this.ngSrcset.split(",").filter(s=>s!=="").map(s=>{s=s.trim();let o=t?parseFloat(s):parseFloat(s)*this.width;return`${this.callImageLoader({src:this.ngSrc,width:o})} ${s}`}).join(", ")}getAutomaticSrcset(){return this.sizes?this.getResponsiveSrcset():this.getFixedSrcset()}getResponsiveSrcset(){let{breakpoints:t}=this.config,c=t;return this.sizes?.trim()==="100vw"&&(c=t.filter(o=>o>=Yg)),c.map(o=>`${this.callImageLoader({src:this.ngSrc,width:o})} ${o}w`).join(", ")}updateSrcAndSrcset(t=!1){t&&(this._renderedSrc=null);let c=this.getRewrittenSrc();this.setHostAttribute("src",c);let s;return this.ngSrcset?s=this.getRewrittenSrcset():this.shouldGenerateAutomaticSrcset()&&(s=this.getAutomaticSrcset()),s&&this.setHostAttribute("srcset",s),s}getFixedSrcset(){return Zg.map(c=>`${this.callImageLoader({src:this.ngSrc,width:this.width*c})} ${c}x`).join(", ")}shouldGenerateAutomaticSrcset(){let t=!1;return this.sizes||(t=this.width>Qg||this.height>Xg),!this.disableOptimizedSrcset&&!this.srcset&&this.imageLoader!==Ia&&!t}generatePlaceholder(t){let{placeholderResolution:c}=this.config;return t===!0?`url(${this.callImageLoader({src:this.ngSrc,width:c,isPlaceholder:!0})})`:typeof t=="string"?`url(${t})`:null}shouldBlurPlaceholder(t){return!t||!t.hasOwnProperty("blur")?!0:!!t.blur}removePlaceholderOnLoad(t){let c=()=>{let r=this.injector.get(me);s(),o(),this.placeholder=!1,r.markForCheck()},s=this.renderer.listen(t,"load",c),o=this.renderer.listen(t,"error",c);Jg(t,c)}setHostAttribute(t,c){this.renderer.setAttribute(this.imgElement,t,c)}static \u0275fac=function(c){return new(c||e)};static \u0275dir=O({type:e,selectors:[["img","ngSrc",""]],hostVars:18,hostBindings:function(c,s){c&2&&bs("position",s.fill?"absolute":null)("width",s.fill?"100%":null)("height",s.fill?"100%":null)("inset",s.fill?"0":null)("background-size",s.placeholder?"cover":null)("background-position",s.placeholder?"50% 50%":null)("background-repeat",s.placeholder?"no-repeat":null)("background-image",s.placeholder?s.generatePlaceholder(s.placeholder):null)("filter",s.placeholder&&s.shouldBlurPlaceholder(s.placeholderConfig)?"blur(15px)":null)},inputs:{ngSrc:[2,"ngSrc","ngSrc",eM],ngSrcset:"ngSrcset",sizes:"sizes",width:[2,"width","width",Ts],height:[2,"height","height",Ts],loading:"loading",priority:[2,"priority","priority",k1],loaderParams:"loaderParams",disableOptimizedSrcset:[2,"disableOptimizedSrcset","disableOptimizedSrcset",k1],fill:[2,"fill","fill",k1],placeholder:[2,"placeholder","placeholder",tM],placeholderConfig:"placeholderConfig",src:"src",srcset:"srcset"},features:[n2]})}return e})();function Kg(e){let n={};return e.breakpoints&&(n.breakpoints=e.breakpoints.sort((t,c)=>t-c)),Object.assign({},Xc,e,n)}function Jg(e,n){e.complete&&e.naturalWidth&&n()}function eM(e){return typeof e=="string"?e:D2(e)}function tM(e){return typeof e=="string"&&e!=="true"&&e!=="false"&&e!==""?e:k1(e)}var h3=new v(""),Bs=(()=>{class e{_zone;_plugins;_eventNameToPlugin=new Map;constructor(t,c){this._zone=c,t.forEach(s=>{s.manager=this}),this._plugins=t.slice().reverse()}addEventListener(t,c,s,o){return this._findPluginFor(c).addEventListener(t,c,s,o)}getZone(){return this._zone}_findPluginFor(t){let c=this._eventNameToPlugin.get(t);if(c)return c;if(c=this._plugins.find(o=>o.supports(t)),!c)throw new D(5101,!1);return this._eventNameToPlugin.set(t,c),c}static \u0275fac=function(c){return new(c||e)(C(h3),C(e2))};static \u0275prov=M({token:e,factory:e.\u0275fac})}return e})(),Me=class{_doc;constructor(n){this._doc=n}manager},Ft="ng-app-id";function Sa(e){for(let n of e)n.remove()}function _a(e,n){let t=n.createElement("style");return t.textContent=e,t}function nM(e,n,t,c){let s=e.head?.querySelectorAll(`style[${Ft}="${n}"],link[${Ft}="${n}"]`);if(s)for(let o of s)o.removeAttribute(Ft),o instanceof HTMLLinkElement?c.set(o.href.slice(o.href.lastIndexOf("/")+1),{usage:0,elements:[o]}):o.textContent&&t.set(o.textContent,{usage:0,elements:[o]})}function Vs(e,n){let t=n.createElement("link");return t.setAttribute("rel","stylesheet"),t.setAttribute("href",e),t}var Hs=(()=>{class e{doc;appId;nonce;inline=new Map;external=new Map;hosts=new Set;isServer;constructor(t,c,s,o={}){this.doc=t,this.appId=c,this.nonce=s,this.isServer=kt(o),nM(t,c,this.inline,this.external),this.hosts.add(t.head)}addStyles(t,c){for(let s of t)this.addUsage(s,this.inline,_a);c?.forEach(s=>this.addUsage(s,this.external,Vs))}removeStyles(t,c){for(let s of t)this.removeUsage(s,this.inline);c?.forEach(s=>this.removeUsage(s,this.external))}addUsage(t,c,s){let o=c.get(t);o?o.usage++:c.set(t,{usage:1,elements:[...this.hosts].map(r=>this.addElement(r,s(t,this.doc)))})}removeUsage(t,c){let s=c.get(t);s&&(s.usage--,s.usage<=0&&(Sa(s.elements),c.delete(t)))}ngOnDestroy(){for(let[,{elements:t}]of[...this.inline,...this.external])Sa(t);this.hosts.clear()}addHost(t){this.hosts.add(t);for(let[c,{elements:s}]of this.inline)s.push(this.addElement(t,_a(c,this.doc)));for(let[c,{elements:s}]of this.external)s.push(this.addElement(t,Vs(c,this.doc)))}removeHost(t){this.hosts.delete(t)}addElement(t,c){return this.nonce&&c.setAttribute("nonce",this.nonce),this.isServer&&c.setAttribute(Ft,this.appId),t.appendChild(c)}static \u0275fac=function(c){return new(c||e)(C(Z),C(Zc),C(Qc,8),C(r3))};static \u0275prov=M({token:e,factory:e.\u0275fac})}return e})(),Ps={svg:"http://www.w3.org/2000/svg",xhtml:"http://www.w3.org/1999/xhtml",xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/",math:"http://www.w3.org/1998/Math/MathML"},Us=/%COMP%/g;var Aa="%COMP%",cM=`_nghost-${Aa}`,sM=`_ngcontent-${Aa}`,oM=!0,rM=new v("",{providedIn:"root",factory:()=>oM});function iM(e){return sM.replace(Us,e)}function lM(e){return cM.replace(Us,e)}function ka(e,n){return n.map(t=>t.replace(Us,e))}var $s=(()=>{class e{eventManager;sharedStylesHost;appId;removeStylesOnCompDestroy;doc;platformId;ngZone;nonce;tracingService;rendererByCompId=new Map;defaultRenderer;platformIsServer;constructor(t,c,s,o,r,i,l,a=null,f=null){this.eventManager=t,this.sharedStylesHost=c,this.appId=s,this.removeStylesOnCompDestroy=o,this.doc=r,this.platformId=i,this.ngZone=l,this.nonce=a,this.tracingService=f,this.platformIsServer=kt(i),this.defaultRenderer=new d4(t,r,l,this.platformIsServer,this.tracingService)}createRenderer(t,c){if(!t||!c)return this.defaultRenderer;this.platformIsServer&&c.encapsulation===X2.ShadowDom&&(c=B(_({},c),{encapsulation:X2.Emulated}));let s=this.getOrCreateRenderer(t,c);return s instanceof Rt?s.applyToHost(t):s instanceof p4&&s.applyStyles(),s}getOrCreateRenderer(t,c){let s=this.rendererByCompId,o=s.get(c.id);if(!o){let r=this.doc,i=this.ngZone,l=this.eventManager,a=this.sharedStylesHost,f=this.removeStylesOnCompDestroy,u=this.platformIsServer,p=this.tracingService;switch(c.encapsulation){case X2.Emulated:o=new Rt(l,a,c,this.appId,f,r,i,u,p);break;case X2.ShadowDom:return new js(l,a,t,c,r,i,this.nonce,u,p);default:o=new p4(l,a,c,f,r,i,u,p);break}s.set(c.id,o)}return o}ngOnDestroy(){this.rendererByCompId.clear()}componentReplaced(t){this.rendererByCompId.delete(t)}static \u0275fac=function(c){return new(c||e)(C(Bs),C(Hs),C(Zc),C(rM),C(Z),C(r3),C(e2),C(Qc),C(i3,8))};static \u0275prov=M({token:e,factory:e.\u0275fac})}return e})(),d4=class{eventManager;doc;ngZone;platformIsServer;tracingService;data=Object.create(null);throwOnSyntheticProps=!0;constructor(n,t,c,s,o){this.eventManager=n,this.doc=t,this.ngZone=c,this.platformIsServer=s,this.tracingService=o}destroy(){}destroyNode=null;createElement(n,t){return t?this.doc.createElementNS(Ps[t]||t,n):this.doc.createElement(n)}createComment(n){return this.doc.createComment(n)}createText(n){return this.doc.createTextNode(n)}appendChild(n,t){(Ta(n)?n.content:n).appendChild(t)}insertBefore(n,t,c){n&&(Ta(n)?n.content:n).insertBefore(t,c)}removeChild(n,t){t.remove()}selectRootElement(n,t){let c=typeof n=="string"?this.doc.querySelector(n):n;if(!c)throw new D(-5104,!1);return t||(c.textContent=""),c}parentNode(n){return n.parentNode}nextSibling(n){return n.nextSibling}setAttribute(n,t,c,s){if(s){t=s+":"+t;let o=Ps[s];o?n.setAttributeNS(o,t,c):n.setAttribute(t,c)}else n.setAttribute(t,c)}removeAttribute(n,t,c){if(c){let s=Ps[c];s?n.removeAttributeNS(s,t):n.removeAttribute(`${c}:${t}`)}else n.removeAttribute(t)}addClass(n,t){n.classList.add(t)}removeClass(n,t){n.classList.remove(t)}setStyle(n,t,c,s){s&(a1.DashCase|a1.Important)?n.style.setProperty(t,c,s&a1.Important?"important":""):n.style[t]=c}removeStyle(n,t,c){c&a1.DashCase?n.style.removeProperty(t):n.style[t]=""}setProperty(n,t,c){n!=null&&(n[t]=c)}setValue(n,t){n.nodeValue=t}listen(n,t,c,s){if(typeof n=="string"&&(n=k2().getGlobalEventTarget(this.doc,n),!n))throw new D(5102,!1);let o=this.decoratePreventDefault(c);return this.tracingService?.wrapEventListener&&(o=this.tracingService.wrapEventListener(n,t,o)),this.eventManager.addEventListener(n,t,o,s)}decoratePreventDefault(n){return t=>{if(t==="__ngUnwrap__")return n;(this.platformIsServer?this.ngZone.runGuarded(()=>n(t)):n(t))===!1&&t.preventDefault()}}};function Ta(e){return e.tagName==="TEMPLATE"&&e.content!==void 0}var js=class extends d4{sharedStylesHost;hostEl;shadowRoot;constructor(n,t,c,s,o,r,i,l,a){super(n,o,r,l,a),this.sharedStylesHost=t,this.hostEl=c,this.shadowRoot=c.attachShadow({mode:"open"}),this.sharedStylesHost.addHost(this.shadowRoot);let f=s.styles;f=ka(s.id,f);for(let p of f){let d=document.createElement("style");i&&d.setAttribute("nonce",i),d.textContent=p,this.shadowRoot.appendChild(d)}let u=s.getExternalStyles?.();if(u)for(let p of u){let d=Vs(p,o);i&&d.setAttribute("nonce",i),this.shadowRoot.appendChild(d)}}nodeOrShadowRoot(n){return n===this.hostEl?this.shadowRoot:n}appendChild(n,t){return super.appendChild(this.nodeOrShadowRoot(n),t)}insertBefore(n,t,c){return super.insertBefore(this.nodeOrShadowRoot(n),t,c)}removeChild(n,t){return super.removeChild(null,t)}parentNode(n){return this.nodeOrShadowRoot(super.parentNode(this.nodeOrShadowRoot(n)))}destroy(){this.sharedStylesHost.removeHost(this.shadowRoot)}},p4=class extends d4{sharedStylesHost;removeStylesOnCompDestroy;styles;styleUrls;constructor(n,t,c,s,o,r,i,l,a){super(n,o,r,i,l),this.sharedStylesHost=t,this.removeStylesOnCompDestroy=s;let f=c.styles;this.styles=a?ka(a,f):f,this.styleUrls=c.getExternalStyles?.(a)}applyStyles(){this.sharedStylesHost.addStyles(this.styles,this.styleUrls)}destroy(){this.removeStylesOnCompDestroy&&this.sharedStylesHost.removeStyles(this.styles,this.styleUrls)}},Rt=class extends p4{contentAttr;hostAttr;constructor(n,t,c,s,o,r,i,l,a){let f=s+"-"+c.id;super(n,t,c,o,r,i,l,a,f),this.contentAttr=iM(f),this.hostAttr=lM(f)}applyToHost(n){this.applyStyles(),this.setAttribute(n,this.hostAttr,"")}createElement(n,t){let c=super.createElement(n,t);return super.setAttribute(c,this.contentAttr,""),c}};var Ot=class e extends a4{supportsDOMEvents=!0;static makeCurrent(){As(new e)}onAndCancel(n,t,c,s){return n.addEventListener(t,c,s),()=>{n.removeEventListener(t,c,s)}}dispatchEvent(n,t){n.dispatchEvent(t)}remove(n){n.remove()}createElement(n,t){return t=t||this.getDefaultDocument(),t.createElement(n)}createHtmlDocument(){return document.implementation.createHTMLDocument("fakeTitle")}getDefaultDocument(){return document}isElementNode(n){return n.nodeType===Node.ELEMENT_NODE}isShadowRoot(n){return n instanceof DocumentFragment}getGlobalEventTarget(n,t){return t==="window"?window:t==="document"?n:t==="body"?n.body:null}getBaseHref(n){let t=aM();return t==null?null:fM(t)}resetBaseElement(){h4=null}getUserAgent(){return window.navigator.userAgent}getCookie(n){return u4(document.cookie,n)}},h4=null;function aM(){return h4=h4||document.head.querySelector("base"),h4?h4.getAttribute("href"):null}function fM(e){return new URL(e,document.baseURI).pathname}var uM=(()=>{class e{build(){return new XMLHttpRequest}static \u0275fac=function(c){return new(c||e)};static \u0275prov=M({token:e,factory:e.\u0275fac})}return e})(),Ra=(()=>{class e extends Me{constructor(t){super(t)}supports(t){return!0}addEventListener(t,c,s,o){return t.addEventListener(c,s,o),()=>this.removeEventListener(t,c,s,o)}removeEventListener(t,c,s,o){return t.removeEventListener(c,s,o)}static \u0275fac=function(c){return new(c||e)(C(Z))};static \u0275prov=M({token:e,factory:e.\u0275fac})}return e})(),Fa=["alt","control","meta","shift"],dM={"\b":"Backspace"," ":"Tab","\x7F":"Delete","\x1B":"Escape",Del:"Delete",Esc:"Escape",Left:"ArrowLeft",Right:"ArrowRight",Up:"ArrowUp",Down:"ArrowDown",Menu:"ContextMenu",Scroll:"ScrollLock",Win:"OS"},pM={alt:e=>e.altKey,control:e=>e.ctrlKey,meta:e=>e.metaKey,shift:e=>e.shiftKey},Oa=(()=>{class e extends Me{constructor(t){super(t)}supports(t){return e.parseEventName(t)!=null}addEventListener(t,c,s,o){let r=e.parseEventName(c),i=e.eventCallback(r.fullKey,s,this.manager.getZone());return this.manager.getZone().runOutsideAngular(()=>k2().onAndCancel(t,r.domEventName,i,o))}static parseEventName(t){let c=t.toLowerCase().split("."),s=c.shift();if(c.length===0||!(s==="keydown"||s==="keyup"))return null;let o=e._normalizeKey(c.pop()),r="",i=c.indexOf("code");if(i>-1&&(c.splice(i,1),r="code."),Fa.forEach(a=>{let f=c.indexOf(a);f>-1&&(c.splice(f,1),r+=a+".")}),r+=o,c.length!=0||o.length===0)return null;let l={};return l.domEventName=s,l.fullKey=r,l}static matchEventFullKeyCode(t,c){let s=dM[t.key]||t.key,o="";return c.indexOf("code.")>-1&&(s=t.code,o="code."),s==null||!s?!1:(s=s.toLowerCase(),s===" "?s="space":s==="."&&(s="dot"),Fa.forEach(r=>{if(r!==s){let i=pM[r];i(t)&&(o+=r+".")}}),o+=s,o===c)}static eventCallback(t,c,s){return o=>{e.matchEventFullKeyCode(o,t)&&s.runGuarded(()=>c(o))}}static _normalizeKey(t){return t==="esc"?"escape":t}static \u0275fac=function(c){return new(c||e)(C(Z))};static \u0275prov=M({token:e,factory:e.\u0275fac})}return e})();function hM(e,n){return fa(_({rootComponent:e},mM(n)))}function mM(e){return{appProviders:[...yM,...e?.providers??[]],platformProviders:LM}}function gM(){Ot.makeCurrent()}function MM(){return new Q2}function CM(){return T8(document),document}var LM=[{provide:r3,useValue:At},{provide:Yc,useValue:gM,multi:!0},{provide:Z,useFactory:CM}];var yM=[{provide:at,useValue:"root"},{provide:Q2,useFactory:MM},{provide:h3,useClass:Ra,multi:!0,deps:[Z]},{provide:h3,useClass:Oa,multi:!0,deps:[Z]},$s,Hs,Bs,{provide:Ze,useExisting:$s},{provide:ge,useClass:uM},[]];var g3=class{},m4=class{},F1=class e{headers;normalizedNames=new Map;lazyInit;lazyUpdate=null;constructor(n){n?typeof n=="string"?this.lazyInit=()=>{this.headers=new Map,n.split(`
8
+ `).forEach(t=>{let c=t.indexOf(":");if(c>0){let s=t.slice(0,c),o=t.slice(c+1).trim();this.addHeaderEntry(s,o)}})}:typeof Headers<"u"&&n instanceof Headers?(this.headers=new Map,n.forEach((t,c)=>{this.addHeaderEntry(c,t)})):this.lazyInit=()=>{this.headers=new Map,Object.entries(n).forEach(([t,c])=>{this.setHeaderEntries(t,c)})}:this.headers=new Map}has(n){return this.init(),this.headers.has(n.toLowerCase())}get(n){this.init();let t=this.headers.get(n.toLowerCase());return t&&t.length>0?t[0]:null}keys(){return this.init(),Array.from(this.normalizedNames.values())}getAll(n){return this.init(),this.headers.get(n.toLowerCase())||null}append(n,t){return this.clone({name:n,value:t,op:"a"})}set(n,t){return this.clone({name:n,value:t,op:"s"})}delete(n,t){return this.clone({name:n,value:t,op:"d"})}maybeSetNormalizedName(n,t){this.normalizedNames.has(t)||this.normalizedNames.set(t,n)}init(){this.lazyInit&&(this.lazyInit instanceof e?this.copyFrom(this.lazyInit):this.lazyInit(),this.lazyInit=null,this.lazyUpdate&&(this.lazyUpdate.forEach(n=>this.applyUpdate(n)),this.lazyUpdate=null))}copyFrom(n){n.init(),Array.from(n.headers.keys()).forEach(t=>{this.headers.set(t,n.headers.get(t)),this.normalizedNames.set(t,n.normalizedNames.get(t))})}clone(n){let t=new e;return t.lazyInit=this.lazyInit&&this.lazyInit instanceof e?this.lazyInit:this,t.lazyUpdate=(this.lazyUpdate||[]).concat([n]),t}applyUpdate(n){let t=n.name.toLowerCase();switch(n.op){case"a":case"s":let c=n.value;if(typeof c=="string"&&(c=[c]),c.length===0)return;this.maybeSetNormalizedName(n.name,t);let s=(n.op==="a"?this.headers.get(t):void 0)||[];s.push(...c),this.headers.set(t,s);break;case"d":let o=n.value;if(!o)this.headers.delete(t),this.normalizedNames.delete(t);else{let r=this.headers.get(t);if(!r)return;r=r.filter(i=>o.indexOf(i)===-1),r.length===0?(this.headers.delete(t),this.normalizedNames.delete(t)):this.headers.set(t,r)}break}}addHeaderEntry(n,t){let c=n.toLowerCase();this.maybeSetNormalizedName(n,c),this.headers.has(c)?this.headers.get(c).push(t):this.headers.set(c,[t])}setHeaderEntries(n,t){let c=(Array.isArray(t)?t:[t]).map(o=>o.toString()),s=n.toLowerCase();this.headers.set(s,c),this.maybeSetNormalizedName(n,s)}forEach(n){this.init(),Array.from(this.normalizedNames.keys()).forEach(t=>n(this.normalizedNames.get(t),this.headers.get(t)))}};var Vt=class{encodeKey(n){return Pa(n)}encodeValue(n){return Pa(n)}decodeKey(n){return decodeURIComponent(n)}decodeValue(n){return decodeURIComponent(n)}};function vM(e,n){let t=new Map;return e.length>0&&e.replace(/^\?/,"").split("&").forEach(s=>{let o=s.indexOf("="),[r,i]=o==-1?[n.decodeKey(s),""]:[n.decodeKey(s.slice(0,o)),n.decodeValue(s.slice(o+1))],l=t.get(r)||[];l.push(i),t.set(r,l)}),t}var zM=/%(\d[a-f0-9])/gi,DM={40:"@","3A":":",24:"$","2C":",","3B":";","3D":"=","3F":"?","2F":"/"};function Pa(e){return encodeURIComponent(e).replace(zM,(n,t)=>DM[t]??n)}function Pt(e){return`${e}`}var g1=class e{map;encoder;updates=null;cloneFrom=null;constructor(n={}){if(this.encoder=n.encoder||new Vt,n.fromString){if(n.fromObject)throw new D(2805,!1);this.map=vM(n.fromString,this.encoder)}else n.fromObject?(this.map=new Map,Object.keys(n.fromObject).forEach(t=>{let c=n.fromObject[t],s=Array.isArray(c)?c.map(Pt):[Pt(c)];this.map.set(t,s)})):this.map=null}has(n){return this.init(),this.map.has(n)}get(n){this.init();let t=this.map.get(n);return t?t[0]:null}getAll(n){return this.init(),this.map.get(n)||null}keys(){return this.init(),Array.from(this.map.keys())}append(n,t){return this.clone({param:n,value:t,op:"a"})}appendAll(n){let t=[];return Object.keys(n).forEach(c=>{let s=n[c];Array.isArray(s)?s.forEach(o=>{t.push({param:c,value:o,op:"a"})}):t.push({param:c,value:s,op:"a"})}),this.clone(t)}set(n,t){return this.clone({param:n,value:t,op:"s"})}delete(n,t){return this.clone({param:n,value:t,op:"d"})}toString(){return this.init(),this.keys().map(n=>{let t=this.encoder.encodeKey(n);return this.map.get(n).map(c=>t+"="+this.encoder.encodeValue(c)).join("&")}).filter(n=>n!=="").join("&")}clone(n){let t=new e({encoder:this.encoder});return t.cloneFrom=this.cloneFrom||this,t.updates=(this.updates||[]).concat(n),t}init(){this.map===null&&(this.map=new Map),this.cloneFrom!==null&&(this.cloneFrom.init(),this.cloneFrom.keys().forEach(n=>this.map.set(n,this.cloneFrom.map.get(n))),this.updates.forEach(n=>{switch(n.op){case"a":case"s":let t=(n.op==="a"?this.map.get(n.param):void 0)||[];t.push(Pt(n.value)),this.map.set(n.param,t);break;case"d":if(n.value!==void 0){let c=this.map.get(n.param)||[],s=c.indexOf(Pt(n.value));s!==-1&&c.splice(s,1),c.length>0?this.map.set(n.param,c):this.map.delete(n.param)}else{this.map.delete(n.param);break}}}),this.cloneFrom=this.updates=null)}};var jt=class{map=new Map;set(n,t){return this.map.set(n,t),this}get(n){return this.map.has(n)||this.map.set(n,n.defaultValue()),this.map.get(n)}delete(n){return this.map.delete(n),this}has(n){return this.map.has(n)}keys(){return this.map.keys()}};function bM(e){switch(e){case"DELETE":case"GET":case"HEAD":case"OPTIONS":case"JSONP":return!1;default:return!0}}function Va(e){return typeof ArrayBuffer<"u"&&e instanceof ArrayBuffer}function ja(e){return typeof Blob<"u"&&e instanceof Blob}function Ba(e){return typeof FormData<"u"&&e instanceof FormData}function wM(e){return typeof URLSearchParams<"u"&&e instanceof URLSearchParams}var Ha="Content-Type",Ua="Accept",Ga="X-Request-URL",qa="text/plain",Wa="application/json",xM=`${Wa}, ${qa}, */*`,m3=class e{url;body=null;headers;context;reportProgress=!1;withCredentials=!1;responseType="json";method;params;urlWithParams;transferCache;constructor(n,t,c,s){this.url=t,this.method=n.toUpperCase();let o;if(bM(this.method)||s?(this.body=c!==void 0?c:null,o=s):o=c,o&&(this.reportProgress=!!o.reportProgress,this.withCredentials=!!o.withCredentials,o.responseType&&(this.responseType=o.responseType),o.headers&&(this.headers=o.headers),o.context&&(this.context=o.context),o.params&&(this.params=o.params),this.transferCache=o.transferCache),this.headers??=new F1,this.context??=new jt,!this.params)this.params=new g1,this.urlWithParams=t;else{let r=this.params.toString();if(r.length===0)this.urlWithParams=t;else{let i=t.indexOf("?"),l=i===-1?"?":i<t.length-1?"&":"";this.urlWithParams=t+l+r}}}serializeBody(){return this.body===null?null:typeof this.body=="string"||Va(this.body)||ja(this.body)||Ba(this.body)||wM(this.body)?this.body:this.body instanceof g1?this.body.toString():typeof this.body=="object"||typeof this.body=="boolean"||Array.isArray(this.body)?JSON.stringify(this.body):this.body.toString()}detectContentTypeHeader(){return this.body===null||Ba(this.body)?null:ja(this.body)?this.body.type||null:Va(this.body)?null:typeof this.body=="string"?qa:this.body instanceof g1?"application/x-www-form-urlencoded;charset=UTF-8":typeof this.body=="object"||typeof this.body=="number"||typeof this.body=="boolean"?Wa:null}clone(n={}){let t=n.method||this.method,c=n.url||this.url,s=n.responseType||this.responseType,o=n.transferCache??this.transferCache,r=n.body!==void 0?n.body:this.body,i=n.withCredentials??this.withCredentials,l=n.reportProgress??this.reportProgress,a=n.headers||this.headers,f=n.params||this.params,u=n.context??this.context;return n.setHeaders!==void 0&&(a=Object.keys(n.setHeaders).reduce((p,d)=>p.set(d,n.setHeaders[d]),a)),n.setParams&&(f=Object.keys(n.setParams).reduce((p,d)=>p.set(d,n.setParams[d]),f)),new e(t,c,r,{params:f,headers:a,context:u,reportProgress:l,responseType:s,withCredentials:i,transferCache:o})}},Ce=function(e){return e[e.Sent=0]="Sent",e[e.UploadProgress=1]="UploadProgress",e[e.ResponseHeader=2]="ResponseHeader",e[e.DownloadProgress=3]="DownloadProgress",e[e.Response=4]="Response",e[e.User=5]="User",e}(Ce||{}),M3=class{headers;status;statusText;url;ok;type;constructor(n,t=200,c="OK"){this.headers=n.headers||new F1,this.status=n.status!==void 0?n.status:t,this.statusText=n.statusText||c,this.url=n.url||null,this.ok=this.status>=200&&this.status<300}},Bt=class e extends M3{constructor(n={}){super(n)}type=Ce.ResponseHeader;clone(n={}){return new e({headers:n.headers||this.headers,status:n.status!==void 0?n.status:this.status,statusText:n.statusText||this.statusText,url:n.url||this.url||void 0})}},g4=class e extends M3{body;constructor(n={}){super(n),this.body=n.body!==void 0?n.body:null}type=Ce.Response;clone(n={}){return new e({body:n.body!==void 0?n.body:this.body,headers:n.headers||this.headers,status:n.status!==void 0?n.status:this.status,statusText:n.statusText||this.statusText,url:n.url||this.url||void 0})}},M4=class extends M3{name="HttpErrorResponse";message;error;ok=!1;constructor(n){super(n,0,"Unknown Error"),this.status>=200&&this.status<300?this.message=`Http failure during parsing for ${n.url||"(unknown url)"}`:this.message=`Http failure response for ${n.url||"(unknown url)"}: ${n.status} ${n.statusText}`,this.error=n.error||null}},NM=200,EM=204;function Gs(e,n){return{body:n,headers:e.headers,context:e.context,observe:e.observe,params:e.params,reportProgress:e.reportProgress,responseType:e.responseType,withCredentials:e.withCredentials,transferCache:e.transferCache}}var Za=(()=>{class e{handler;constructor(t){this.handler=t}request(t,c,s={}){let o;if(t instanceof m3)o=t;else{let l;s.headers instanceof F1?l=s.headers:l=new F1(s.headers);let a;s.params&&(s.params instanceof g1?a=s.params:a=new g1({fromObject:s.params})),o=new m3(t,c,s.body!==void 0?s.body:null,{headers:l,context:s.context,params:a,reportProgress:s.reportProgress,responseType:s.responseType||"json",withCredentials:s.withCredentials,transferCache:s.transferCache})}let r=_e(o).pipe(r0(l=>this.handler.handle(l)));if(t instanceof m3||s.observe==="events")return r;let i=r.pipe(c1(l=>l instanceof g4));switch(s.observe||"body"){case"body":switch(o.responseType){case"arraybuffer":return i.pipe(t2(l=>{if(l.body!==null&&!(l.body instanceof ArrayBuffer))throw new D(2806,!1);return l.body}));case"blob":return i.pipe(t2(l=>{if(l.body!==null&&!(l.body instanceof Blob))throw new D(2807,!1);return l.body}));case"text":return i.pipe(t2(l=>{if(l.body!==null&&typeof l.body!="string")throw new D(2808,!1);return l.body}));case"json":default:return i.pipe(t2(l=>l.body))}case"response":return i;default:throw new D(2809,!1)}}delete(t,c={}){return this.request("DELETE",t,c)}get(t,c={}){return this.request("GET",t,c)}head(t,c={}){return this.request("HEAD",t,c)}jsonp(t,c){return this.request("JSONP",t,{params:new g1().append(c,"JSONP_CALLBACK"),observe:"body",responseType:"json"})}options(t,c={}){return this.request("OPTIONS",t,c)}patch(t,c,s={}){return this.request("PATCH",t,Gs(s,c))}post(t,c,s={}){return this.request("POST",t,Gs(s,c))}put(t,c,s={}){return this.request("PUT",t,Gs(s,c))}static \u0275fac=function(c){return new(c||e)(C(g3))};static \u0275prov=M({token:e,factory:e.\u0275fac})}return e})();var IM=new v("");function Ya(e,n){return n(e)}function SM(e,n){return(t,c)=>n.intercept(t,{handle:s=>e(s,c)})}function _M(e,n,t){return(c,s)=>ut(t,()=>n(c,o=>e(o,s)))}var Qa=new v(""),Ws=new v(""),Xa=new v(""),Zs=new v("",{providedIn:"root",factory:()=>!0});function TM(){let e=null;return(n,t)=>{e===null&&(e=(L(Qa,{optional:!0})??[]).reduceRight(SM,Ya));let c=L(he);if(L(Zs)){let o=c.add();return e(n,t).pipe(T3(()=>c.remove(o)))}else return e(n,t)}}var Ht=(()=>{class e extends g3{backend;injector;chain=null;pendingTasks=L(he);contributeToStability=L(Zs);constructor(t,c){super(),this.backend=t,this.injector=c}handle(t){if(this.chain===null){let c=Array.from(new Set([...this.injector.get(Ws),...this.injector.get(Xa,[])]));this.chain=c.reduceRight((s,o)=>_M(s,o,this.injector),Ya)}if(this.contributeToStability){let c=this.pendingTasks.add();return this.chain(t,s=>this.backend.handle(s)).pipe(T3(()=>this.pendingTasks.remove(c)))}else return this.chain(t,c=>this.backend.handle(c))}static \u0275fac=function(c){return new(c||e)(C(m4),C(W2))};static \u0275prov=M({token:e,factory:e.\u0275fac})}return e})();var AM=/^\)\]\}',?\n/,kM=RegExp(`^${Ga}:`,"m");function FM(e){return"responseURL"in e&&e.responseURL?e.responseURL:kM.test(e.getAllResponseHeaders())?e.getResponseHeader(Ga):null}var qs=(()=>{class e{xhrFactory;constructor(t){this.xhrFactory=t}handle(t){if(t.method==="JSONP")throw new D(-2800,!1);let c=this.xhrFactory;return(c.\u0275loadImpl?s2(c.\u0275loadImpl()):_e(null)).pipe(a0(()=>new R(o=>{let r=c.build();if(r.open(t.method,t.urlWithParams),t.withCredentials&&(r.withCredentials=!0),t.headers.forEach((g,z)=>r.setRequestHeader(g,z.join(","))),t.headers.has(Ua)||r.setRequestHeader(Ua,xM),!t.headers.has(Ha)){let g=t.detectContentTypeHeader();g!==null&&r.setRequestHeader(Ha,g)}if(t.responseType){let g=t.responseType.toLowerCase();r.responseType=g!=="json"?g:"text"}let i=t.serializeBody(),l=null,a=()=>{if(l!==null)return l;let g=r.statusText||"OK",z=new F1(r.getAllResponseHeaders()),I=FM(r)||t.url;return l=new Bt({headers:z,status:r.status,statusText:g,url:I}),l},f=()=>{let{headers:g,status:z,statusText:I,url:j}=a(),U=null;z!==EM&&(U=typeof r.response>"u"?r.responseText:r.response),z===0&&(z=U?NM:0);let G2=z>=200&&z<300;if(t.responseType==="json"&&typeof U=="string"){let z1=U;U=U.replace(AM,"");try{U=U!==""?JSON.parse(U):null}catch(gn){U=z1,G2&&(G2=!1,U={error:gn,text:U})}}G2?(o.next(new g4({body:U,headers:g,status:z,statusText:I,url:j||void 0})),o.complete()):o.error(new M4({error:U,headers:g,status:z,statusText:I,url:j||void 0}))},u=g=>{let{url:z}=a(),I=new M4({error:g,status:r.status||0,statusText:r.statusText||"Unknown Error",url:z||void 0});o.error(I)},p=!1,d=g=>{p||(o.next(a()),p=!0);let z={type:Ce.DownloadProgress,loaded:g.loaded};g.lengthComputable&&(z.total=g.total),t.responseType==="text"&&r.responseText&&(z.partialText=r.responseText),o.next(z)},h=g=>{let z={type:Ce.UploadProgress,loaded:g.loaded};g.lengthComputable&&(z.total=g.total),o.next(z)};return r.addEventListener("load",f),r.addEventListener("error",u),r.addEventListener("timeout",u),r.addEventListener("abort",u),t.reportProgress&&(r.addEventListener("progress",d),i!==null&&r.upload&&r.upload.addEventListener("progress",h)),r.send(i),o.next({type:Ce.Sent}),()=>{r.removeEventListener("error",u),r.removeEventListener("abort",u),r.removeEventListener("load",f),r.removeEventListener("timeout",u),t.reportProgress&&(r.removeEventListener("progress",d),i!==null&&r.upload&&r.upload.removeEventListener("progress",h)),r.readyState!==r.DONE&&r.abort()}})))}static \u0275fac=function(c){return new(c||e)(C(ge))};static \u0275prov=M({token:e,factory:e.\u0275fac})}return e})(),Ka=new v(""),RM="XSRF-TOKEN",Ja=new v("",{providedIn:"root",factory:()=>RM}),OM="X-XSRF-TOKEN",e5=new v("",{providedIn:"root",factory:()=>OM}),C4=class{},PM=(()=>{class e{doc;cookieName;lastCookieString="";lastToken=null;parseCount=0;constructor(t,c){this.doc=t,this.cookieName=c}getToken(){let t=this.doc.cookie||"";return t!==this.lastCookieString&&(this.parseCount++,this.lastToken=u4(t,this.cookieName),this.lastCookieString=t),this.lastToken}static \u0275fac=function(c){return new(c||e)(C(Z),C(Ja))};static \u0275prov=M({token:e,factory:e.\u0275fac})}return e})();function VM(e,n){let t=e.url.toLowerCase();if(!L(Ka)||e.method==="GET"||e.method==="HEAD"||t.startsWith("http://")||t.startsWith("https://"))return n(e);let c=L(C4).getToken(),s=L(e5);return c!=null&&!e.headers.has(s)&&(e=e.clone({headers:e.headers.set(s,c)})),n(e)}var Ut=function(e){return e[e.Interceptors=0]="Interceptors",e[e.LegacyInterceptors=1]="LegacyInterceptors",e[e.CustomXsrfConfiguration=2]="CustomXsrfConfiguration",e[e.NoXsrfProtection=3]="NoXsrfProtection",e[e.JsonpSupport=4]="JsonpSupport",e[e.RequestsMadeViaParent=5]="RequestsMadeViaParent",e[e.Fetch=6]="Fetch",e}(Ut||{});function t5(e,n){return{\u0275kind:e,\u0275providers:n}}function jM(...e){let n=[Za,qs,Ht,{provide:g3,useExisting:Ht},{provide:m4,useFactory:()=>L(IM,{optional:!0})??L(qs)},{provide:Ws,useValue:VM,multi:!0},{provide:Ka,useValue:!0},{provide:C4,useClass:PM}];for(let t of e)n.push(...t.\u0275providers);return ue(n)}var $a=new v("");function BM(){return t5(Ut.LegacyInterceptors,[{provide:$a,useFactory:TM},{provide:Ws,useExisting:$a,multi:!0}])}function HM({cookieName:e,headerName:n}){let t=[];return e!==void 0&&t.push({provide:Ja,useValue:e}),n!==void 0&&t.push({provide:e5,useValue:n}),t5(Ut.CustomXsrfConfiguration,t)}var Rk=(()=>{class e{_doc;constructor(t){this._doc=t}getTitle(){return this._doc.title}setTitle(t){this._doc.title=t||""}static \u0275fac=function(c){return new(c||e)(C(Z))};static \u0275prov=M({token:e,factory:e.\u0275fac,providedIn:"root"})}return e})();var UM={pan:!0,panstart:!0,panmove:!0,panend:!0,pancancel:!0,panleft:!0,panright:!0,panup:!0,pandown:!0,pinch:!0,pinchstart:!0,pinchmove:!0,pinchend:!0,pinchcancel:!0,pinchin:!0,pinchout:!0,press:!0,pressup:!0,rotate:!0,rotatestart:!0,rotatemove:!0,rotateend:!0,rotatecancel:!0,swipe:!0,swipeleft:!0,swiperight:!0,swipeup:!0,swipedown:!0,tap:!0,doubletap:!0},Ys=new v(""),n5=new v(""),$M=(()=>{class e{events=[];overrides={};options;buildHammer(t){let c=new Hammer(t,this.options);c.get("pinch").set({enable:!0}),c.get("rotate").set({enable:!0});for(let s in this.overrides)c.get(s).set(this.overrides[s]);return c}static \u0275fac=function(c){return new(c||e)};static \u0275prov=M({token:e,factory:e.\u0275fac})}return e})(),GM=(()=>{class e extends Me{_config;_injector;loader;_loaderPromise=null;constructor(t,c,s,o){super(t),this._config=c,this._injector=s,this.loader=o}supports(t){return!(!UM.hasOwnProperty(t.toLowerCase())&&!this.isCustomEvent(t)||!window.Hammer&&!this.loader)}addEventListener(t,c,s){let o=this.manager.getZone();if(c=c.toLowerCase(),!window.Hammer&&this.loader){this._loaderPromise=this._loaderPromise||o.runOutsideAngular(()=>this.loader());let r=!1,i=()=>{r=!0};return o.runOutsideAngular(()=>this._loaderPromise.then(()=>{if(!window.Hammer){i=()=>{};return}r||(i=this.addEventListener(t,c,s))}).catch(()=>{i=()=>{}})),()=>{i()}}return o.runOutsideAngular(()=>{let r=this._config.buildHammer(t),i=function(l){o.runGuarded(function(){s(l)})};return r.on(c,i),()=>{r.off(c,i),typeof r.destroy=="function"&&r.destroy()}})}isCustomEvent(t){return this._config.events.indexOf(t)>-1}static \u0275fac=function(c){return new(c||e)(C(Z),C(Ys),C(p2),C(n5,8))};static \u0275prov=M({token:e,factory:e.\u0275fac})}return e})(),Ok=(()=>{class e{static \u0275fac=function(c){return new(c||e)};static \u0275mod=T2({type:e});static \u0275inj=S2({providers:[{provide:h3,useClass:GM,multi:!0,deps:[Z,Ys,p2,[new lt,n5]]},{provide:Ys,useClass:$M}]})}return e})(),Qs=(()=>{class e{static \u0275fac=function(c){return new(c||e)};static \u0275prov=M({token:e,factory:function(c){let s=null;return c?s=new(c||e):s=C(qM),s},providedIn:"root"})}return e})(),qM=(()=>{class e extends Qs{_doc;constructor(t){super(),this._doc=t}sanitize(t,c){if(c==null)return null;switch(t){case U2.NONE:return c;case U2.HTML:return d1(c,"HTML")?D2(c):ts(this._doc,String(c)).toString();case U2.STYLE:return d1(c,"Style")?D2(c):c;case U2.SCRIPT:if(d1(c,"Script"))return D2(c);throw new D(5200,!1);case U2.URL:return d1(c,"URL")?D2(c):yt(String(c));case U2.RESOURCE_URL:if(d1(c,"ResourceURL"))return D2(c);throw new D(5201,!1);default:throw new D(5202,!1)}}bypassSecurityTrustHtml(t){return B8(t)}bypassSecurityTrustStyle(t){return H8(t)}bypassSecurityTrustScript(t){return U8(t)}bypassSecurityTrustUrl(t){return $8(t)}bypassSecurityTrustResourceUrl(t){return G8(t)}static \u0275fac=function(c){return new(c||e)(C(Z))};static \u0275prov=M({token:e,factory:e.\u0275fac,providedIn:"root"})}return e})();var d5=(()=>{class e{_renderer;_elementRef;onChange=t=>{};onTouched=()=>{};constructor(t,c){this._renderer=t,this._elementRef=c}setProperty(t,c){this._renderer.setProperty(this._elementRef.nativeElement,t,c)}registerOnTouched(t){this.onTouched=t}registerOnChange(t){this.onChange=t}setDisabledState(t){this.setProperty("disabled",t)}static \u0275fac=function(c){return new(c||e)(y(b2),y(c2))};static \u0275dir=O({type:e})}return e})(),x4=(()=>{class e extends d5{static \u0275fac=(()=>{let t;return function(s){return(t||(t=_2(e)))(s||e)}})();static \u0275dir=O({type:e,features:[X]})}return e})(),O1=new v(""),ZM={provide:O1,useExisting:l2(()=>YM),multi:!0},YM=(()=>{class e extends x4{writeValue(t){this.setProperty("checked",t)}static \u0275fac=(()=>{let t;return function(s){return(t||(t=_2(e)))(s||e)}})();static \u0275dir=O({type:e,selectors:[["input","type","checkbox","formControlName",""],["input","type","checkbox","formControl",""],["input","type","checkbox","ngModel",""]],hostBindings:function(c,s){c&1&&m1("change",function(r){return s.onChange(r.target.checked)})("blur",function(){return s.onTouched()})},standalone:!1,features:[v2([ZM]),X]})}return e})(),QM={provide:O1,useExisting:l2(()=>p5),multi:!0};function XM(){let e=k2()?k2().getUserAgent():"";return/android (\d+)/.test(e.toLowerCase())}var KM=new v(""),p5=(()=>{class e extends d5{_compositionMode;_composing=!1;constructor(t,c,s){super(t,c),this._compositionMode=s,this._compositionMode==null&&(this._compositionMode=!XM())}writeValue(t){let c=t??"";this.setProperty("value",c)}_handleInput(t){(!this._compositionMode||this._compositionMode&&!this._composing)&&this.onChange(t)}_compositionStart(){this._composing=!0}_compositionEnd(t){this._composing=!1,this._compositionMode&&this.onChange(t)}static \u0275fac=function(c){return new(c||e)(y(b2),y(c2),y(KM,8))};static \u0275dir=O({type:e,selectors:[["input","formControlName","",3,"type","checkbox"],["textarea","formControlName",""],["input","formControl","",3,"type","checkbox"],["textarea","formControl",""],["input","ngModel","",3,"type","checkbox"],["textarea","ngModel",""],["","ngDefaultControl",""]],hostBindings:function(c,s){c&1&&m1("input",function(r){return s._handleInput(r.target.value)})("blur",function(){return s.onTouched()})("compositionstart",function(){return s._compositionStart()})("compositionend",function(r){return s._compositionEnd(r.target.value)})},standalone:!1,features:[v2([QM]),X]})}return e})();function eo(e){return e==null||to(e)===0}function to(e){return e==null?null:Array.isArray(e)||typeof e=="string"?e.length:e instanceof Set?e.size:null}var Le=new v(""),N4=new v(""),JM=/^(?=.{1,254}$)(?=.{1,64}@)[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+)*@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/,c5=class{static min(n){return h5(n)}static max(n){return eC(n)}static required(n){return m5(n)}static requiredTrue(n){return tC(n)}static email(n){return nC(n)}static minLength(n){return cC(n)}static maxLength(n){return sC(n)}static pattern(n){return oC(n)}static nullValidator(n){return Gt()}static compose(n){return v5(n)}static composeAsync(n){return z5(n)}};function h5(e){return n=>{if(n.value==null||e==null)return null;let t=parseFloat(n.value);return!isNaN(t)&&t<e?{min:{min:e,actual:n.value}}:null}}function eC(e){return n=>{if(n.value==null||e==null)return null;let t=parseFloat(n.value);return!isNaN(t)&&t>e?{max:{max:e,actual:n.value}}:null}}function m5(e){return eo(e.value)?{required:!0}:null}function tC(e){return e.value===!0?null:{required:!0}}function nC(e){return eo(e.value)||JM.test(e.value)?null:{email:!0}}function cC(e){return n=>{let t=n.value?.length??to(n.value);return t===null||t===0?null:t<e?{minlength:{requiredLength:e,actualLength:t}}:null}}function sC(e){return n=>{let t=n.value?.length??to(n.value);return t!==null&&t>e?{maxlength:{requiredLength:e,actualLength:t}}:null}}function oC(e){if(!e)return Gt;let n,t;return typeof e=="string"?(t="",e.charAt(0)!=="^"&&(t+="^"),t+=e,e.charAt(e.length-1)!=="$"&&(t+="$"),n=new RegExp(t)):(t=e.toString(),n=e),c=>{if(eo(c.value))return null;let s=c.value;return n.test(s)?null:{pattern:{requiredPattern:t,actualValue:s}}}}function Gt(e){return null}function g5(e){return e!=null}function M5(e){return f3(e)?s2(e):e}function C5(e){let n={};return e.forEach(t=>{n=t!=null?_(_({},n),t):n}),Object.keys(n).length===0?null:n}function L5(e,n){return n.map(t=>t(e))}function rC(e){return!e.validate}function y5(e){return e.map(n=>rC(n)?n:t=>n.validate(t))}function v5(e){if(!e)return null;let n=e.filter(g5);return n.length==0?null:function(t){return C5(L5(t,n))}}function no(e){return e!=null?v5(y5(e)):null}function z5(e){if(!e)return null;let n=e.filter(g5);return n.length==0?null:function(t){let c=L5(t,n).map(M5);return Kn(c).pipe(t2(C5))}}function co(e){return e!=null?z5(y5(e)):null}function s5(e,n){return e===null?[n]:Array.isArray(e)?[...e,n]:[e,n]}function D5(e){return e._rawValidators}function b5(e){return e._rawAsyncValidators}function Xs(e){return e?Array.isArray(e)?e:[e]:[]}function qt(e,n){return Array.isArray(e)?e.includes(n):e===n}function o5(e,n){let t=Xs(n);return Xs(e).forEach(s=>{qt(t,s)||t.push(s)}),t}function r5(e,n){return Xs(n).filter(t=>!qt(e,t))}var Wt=class{get value(){return this.control?this.control.value:null}get valid(){return this.control?this.control.valid:null}get invalid(){return this.control?this.control.invalid:null}get pending(){return this.control?this.control.pending:null}get disabled(){return this.control?this.control.disabled:null}get enabled(){return this.control?this.control.enabled:null}get errors(){return this.control?this.control.errors:null}get pristine(){return this.control?this.control.pristine:null}get dirty(){return this.control?this.control.dirty:null}get touched(){return this.control?this.control.touched:null}get status(){return this.control?this.control.status:null}get untouched(){return this.control?this.control.untouched:null}get statusChanges(){return this.control?this.control.statusChanges:null}get valueChanges(){return this.control?this.control.valueChanges:null}get path(){return null}_composedValidatorFn;_composedAsyncValidatorFn;_rawValidators=[];_rawAsyncValidators=[];_setValidators(n){this._rawValidators=n||[],this._composedValidatorFn=no(this._rawValidators)}_setAsyncValidators(n){this._rawAsyncValidators=n||[],this._composedAsyncValidatorFn=co(this._rawAsyncValidators)}get validator(){return this._composedValidatorFn||null}get asyncValidator(){return this._composedAsyncValidatorFn||null}_onDestroyCallbacks=[];_registerOnDestroy(n){this._onDestroyCallbacks.push(n)}_invokeOnDestroyCallbacks(){this._onDestroyCallbacks.forEach(n=>n()),this._onDestroyCallbacks=[]}reset(n=void 0){this.control&&this.control.reset(n)}hasError(n,t){return this.control?this.control.hasError(n,t):!1}getError(n,t){return this.control?this.control.getError(n,t):null}},M1=class extends Wt{name;get formDirective(){return null}get path(){return null}},C1=class extends Wt{_parent=null;name=null;valueAccessor=null},Zt=class{_cd;constructor(n){this._cd=n}get isTouched(){return this._cd?.control?._touched?.(),!!this._cd?.control?.touched}get isUntouched(){return!!this._cd?.control?.untouched}get isPristine(){return this._cd?.control?._pristine?.(),!!this._cd?.control?.pristine}get isDirty(){return!!this._cd?.control?.dirty}get isValid(){return this._cd?.control?._status?.(),!!this._cd?.control?.valid}get isInvalid(){return!!this._cd?.control?.invalid}get isPending(){return!!this._cd?.control?.pending}get isSubmitted(){return this._cd?._submitted?.(),!!this._cd?.submitted}},iC={"[class.ng-untouched]":"isUntouched","[class.ng-touched]":"isTouched","[class.ng-pristine]":"isPristine","[class.ng-dirty]":"isDirty","[class.ng-valid]":"isValid","[class.ng-invalid]":"isInvalid","[class.ng-pending]":"isPending"},eF=B(_({},iC),{"[class.ng-submitted]":"isSubmitted"}),tF=(()=>{class e extends Zt{constructor(t){super(t)}static \u0275fac=function(c){return new(c||e)(y(C1,2))};static \u0275dir=O({type:e,selectors:[["","formControlName",""],["","ngModel",""],["","formControl",""]],hostVars:14,hostBindings:function(c,s){c&2&&l4("ng-untouched",s.isUntouched)("ng-touched",s.isTouched)("ng-pristine",s.isPristine)("ng-dirty",s.isDirty)("ng-valid",s.isValid)("ng-invalid",s.isInvalid)("ng-pending",s.isPending)},standalone:!1,features:[X]})}return e})(),nF=(()=>{class e extends Zt{constructor(t){super(t)}static \u0275fac=function(c){return new(c||e)(y(M1,10))};static \u0275dir=O({type:e,selectors:[["","formGroupName",""],["","formArrayName",""],["","ngModelGroup",""],["","formGroup",""],["form",3,"ngNoForm",""],["","ngForm",""]],hostVars:16,hostBindings:function(c,s){c&2&&l4("ng-untouched",s.isUntouched)("ng-touched",s.isTouched)("ng-pristine",s.isPristine)("ng-dirty",s.isDirty)("ng-valid",s.isValid)("ng-invalid",s.isInvalid)("ng-pending",s.isPending)("ng-submitted",s.isSubmitted)},standalone:!1,features:[X]})}return e})();var L4="VALID",$t="INVALID",C3="PENDING",y4="DISABLED",R1=class{},Yt=class extends R1{value;source;constructor(n,t){super(),this.value=n,this.source=t}},z4=class extends R1{pristine;source;constructor(n,t){super(),this.pristine=n,this.source=t}},D4=class extends R1{touched;source;constructor(n,t){super(),this.touched=n,this.source=t}},L3=class extends R1{status;source;constructor(n,t){super(),this.status=n,this.source=t}},Qt=class extends R1{source;constructor(n){super(),this.source=n}},Xt=class extends R1{source;constructor(n){super(),this.source=n}};function so(e){return(tn(e)?e.validators:e)||null}function lC(e){return Array.isArray(e)?no(e):e||null}function oo(e,n){return(tn(n)?n.asyncValidators:e)||null}function aC(e){return Array.isArray(e)?co(e):e||null}function tn(e){return e!=null&&!Array.isArray(e)&&typeof e=="object"}function w5(e,n,t){let c=e.controls;if(!(n?Object.keys(c):c).length)throw new D(1e3,"");if(!c[t])throw new D(1001,"")}function x5(e,n,t){e._forEachChild((c,s)=>{if(t[s]===void 0)throw new D(1002,"")})}var y3=class{_pendingDirty=!1;_hasOwnPendingAsyncValidator=null;_pendingTouched=!1;_onCollectionChange=()=>{};_updateOn;_parent=null;_asyncValidationSubscription;_composedValidatorFn;_composedAsyncValidatorFn;_rawValidators;_rawAsyncValidators;value;constructor(n,t){this._assignValidators(n),this._assignAsyncValidators(t)}get validator(){return this._composedValidatorFn}set validator(n){this._rawValidators=this._composedValidatorFn=n}get asyncValidator(){return this._composedAsyncValidatorFn}set asyncValidator(n){this._rawAsyncValidators=this._composedAsyncValidatorFn=n}get parent(){return this._parent}get status(){return A2(this.statusReactive)}set status(n){A2(()=>this.statusReactive.set(n))}_status=d3(()=>this.statusReactive());statusReactive=s3(void 0);get valid(){return this.status===L4}get invalid(){return this.status===$t}get pending(){return this.status==C3}get disabled(){return this.status===y4}get enabled(){return this.status!==y4}errors;get pristine(){return A2(this.pristineReactive)}set pristine(n){A2(()=>this.pristineReactive.set(n))}_pristine=d3(()=>this.pristineReactive());pristineReactive=s3(!0);get dirty(){return!this.pristine}get touched(){return A2(this.touchedReactive)}set touched(n){A2(()=>this.touchedReactive.set(n))}_touched=d3(()=>this.touchedReactive());touchedReactive=s3(!1);get untouched(){return!this.touched}_events=new Y;events=this._events.asObservable();valueChanges;statusChanges;get updateOn(){return this._updateOn?this._updateOn:this.parent?this.parent.updateOn:"change"}setValidators(n){this._assignValidators(n)}setAsyncValidators(n){this._assignAsyncValidators(n)}addValidators(n){this.setValidators(o5(n,this._rawValidators))}addAsyncValidators(n){this.setAsyncValidators(o5(n,this._rawAsyncValidators))}removeValidators(n){this.setValidators(r5(n,this._rawValidators))}removeAsyncValidators(n){this.setAsyncValidators(r5(n,this._rawAsyncValidators))}hasValidator(n){return qt(this._rawValidators,n)}hasAsyncValidator(n){return qt(this._rawAsyncValidators,n)}clearValidators(){this.validator=null}clearAsyncValidators(){this.asyncValidator=null}markAsTouched(n={}){let t=this.touched===!1;this.touched=!0;let c=n.sourceControl??this;this._parent&&!n.onlySelf&&this._parent.markAsTouched(B(_({},n),{sourceControl:c})),t&&n.emitEvent!==!1&&this._events.next(new D4(!0,c))}markAllAsTouched(n={}){this.markAsTouched({onlySelf:!0,emitEvent:n.emitEvent,sourceControl:this}),this._forEachChild(t=>t.markAllAsTouched(n))}markAsUntouched(n={}){let t=this.touched===!0;this.touched=!1,this._pendingTouched=!1;let c=n.sourceControl??this;this._forEachChild(s=>{s.markAsUntouched({onlySelf:!0,emitEvent:n.emitEvent,sourceControl:c})}),this._parent&&!n.onlySelf&&this._parent._updateTouched(n,c),t&&n.emitEvent!==!1&&this._events.next(new D4(!1,c))}markAsDirty(n={}){let t=this.pristine===!0;this.pristine=!1;let c=n.sourceControl??this;this._parent&&!n.onlySelf&&this._parent.markAsDirty(B(_({},n),{sourceControl:c})),t&&n.emitEvent!==!1&&this._events.next(new z4(!1,c))}markAsPristine(n={}){let t=this.pristine===!1;this.pristine=!0,this._pendingDirty=!1;let c=n.sourceControl??this;this._forEachChild(s=>{s.markAsPristine({onlySelf:!0,emitEvent:n.emitEvent})}),this._parent&&!n.onlySelf&&this._parent._updatePristine(n,c),t&&n.emitEvent!==!1&&this._events.next(new z4(!0,c))}markAsPending(n={}){this.status=C3;let t=n.sourceControl??this;n.emitEvent!==!1&&(this._events.next(new L3(this.status,t)),this.statusChanges.emit(this.status)),this._parent&&!n.onlySelf&&this._parent.markAsPending(B(_({},n),{sourceControl:t}))}disable(n={}){let t=this._parentMarkedDirty(n.onlySelf);this.status=y4,this.errors=null,this._forEachChild(s=>{s.disable(B(_({},n),{onlySelf:!0}))}),this._updateValue();let c=n.sourceControl??this;n.emitEvent!==!1&&(this._events.next(new Yt(this.value,c)),this._events.next(new L3(this.status,c)),this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._updateAncestors(B(_({},n),{skipPristineCheck:t}),this),this._onDisabledChange.forEach(s=>s(!0))}enable(n={}){let t=this._parentMarkedDirty(n.onlySelf);this.status=L4,this._forEachChild(c=>{c.enable(B(_({},n),{onlySelf:!0}))}),this.updateValueAndValidity({onlySelf:!0,emitEvent:n.emitEvent}),this._updateAncestors(B(_({},n),{skipPristineCheck:t}),this),this._onDisabledChange.forEach(c=>c(!1))}_updateAncestors(n,t){this._parent&&!n.onlySelf&&(this._parent.updateValueAndValidity(n),n.skipPristineCheck||this._parent._updatePristine({},t),this._parent._updateTouched({},t))}setParent(n){this._parent=n}getRawValue(){return this.value}updateValueAndValidity(n={}){if(this._setInitialStatus(),this._updateValue(),this.enabled){let c=this._cancelExistingSubscription();this.errors=this._runValidator(),this.status=this._calculateStatus(),(this.status===L4||this.status===C3)&&this._runAsyncValidator(c,n.emitEvent)}let t=n.sourceControl??this;n.emitEvent!==!1&&(this._events.next(new Yt(this.value,t)),this._events.next(new L3(this.status,t)),this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._parent&&!n.onlySelf&&this._parent.updateValueAndValidity(B(_({},n),{sourceControl:t}))}_updateTreeValidity(n={emitEvent:!0}){this._forEachChild(t=>t._updateTreeValidity(n)),this.updateValueAndValidity({onlySelf:!0,emitEvent:n.emitEvent})}_setInitialStatus(){this.status=this._allControlsDisabled()?y4:L4}_runValidator(){return this.validator?this.validator(this):null}_runAsyncValidator(n,t){if(this.asyncValidator){this.status=C3,this._hasOwnPendingAsyncValidator={emitEvent:t!==!1};let c=M5(this.asyncValidator(this));this._asyncValidationSubscription=c.subscribe(s=>{this._hasOwnPendingAsyncValidator=null,this.setErrors(s,{emitEvent:t,shouldHaveEmitted:n})})}}_cancelExistingSubscription(){if(this._asyncValidationSubscription){this._asyncValidationSubscription.unsubscribe();let n=this._hasOwnPendingAsyncValidator?.emitEvent??!1;return this._hasOwnPendingAsyncValidator=null,n}return!1}setErrors(n,t={}){this.errors=n,this._updateControlsErrors(t.emitEvent!==!1,this,t.shouldHaveEmitted)}get(n){let t=n;return t==null||(Array.isArray(t)||(t=t.split(".")),t.length===0)?null:t.reduce((c,s)=>c&&c._find(s),this)}getError(n,t){let c=t?this.get(t):this;return c&&c.errors?c.errors[n]:null}hasError(n,t){return!!this.getError(n,t)}get root(){let n=this;for(;n._parent;)n=n._parent;return n}_updateControlsErrors(n,t,c){this.status=this._calculateStatus(),n&&this.statusChanges.emit(this.status),(n||c)&&this._events.next(new L3(this.status,t)),this._parent&&this._parent._updateControlsErrors(n,t,c)}_initObservables(){this.valueChanges=new o2,this.statusChanges=new o2}_calculateStatus(){return this._allControlsDisabled()?y4:this.errors?$t:this._hasOwnPendingAsyncValidator||this._anyControlsHaveStatus(C3)?C3:this._anyControlsHaveStatus($t)?$t:L4}_anyControlsHaveStatus(n){return this._anyControls(t=>t.status===n)}_anyControlsDirty(){return this._anyControls(n=>n.dirty)}_anyControlsTouched(){return this._anyControls(n=>n.touched)}_updatePristine(n,t){let c=!this._anyControlsDirty(),s=this.pristine!==c;this.pristine=c,this._parent&&!n.onlySelf&&this._parent._updatePristine(n,t),s&&this._events.next(new z4(this.pristine,t))}_updateTouched(n={},t){this.touched=this._anyControlsTouched(),this._events.next(new D4(this.touched,t)),this._parent&&!n.onlySelf&&this._parent._updateTouched(n,t)}_onDisabledChange=[];_registerOnCollectionChange(n){this._onCollectionChange=n}_setUpdateStrategy(n){tn(n)&&n.updateOn!=null&&(this._updateOn=n.updateOn)}_parentMarkedDirty(n){let t=this._parent&&this._parent.dirty;return!n&&!!t&&!this._parent._anyControlsDirty()}_find(n){return null}_assignValidators(n){this._rawValidators=Array.isArray(n)?n.slice():n,this._composedValidatorFn=lC(this._rawValidators)}_assignAsyncValidators(n){this._rawAsyncValidators=Array.isArray(n)?n.slice():n,this._composedAsyncValidatorFn=aC(this._rawAsyncValidators)}},v3=class extends y3{constructor(n,t,c){super(so(t),oo(c,t)),this.controls=n,this._initObservables(),this._setUpdateStrategy(t),this._setUpControls(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!!this.asyncValidator})}controls;registerControl(n,t){return this.controls[n]?this.controls[n]:(this.controls[n]=t,t.setParent(this),t._registerOnCollectionChange(this._onCollectionChange),t)}addControl(n,t,c={}){this.registerControl(n,t),this.updateValueAndValidity({emitEvent:c.emitEvent}),this._onCollectionChange()}removeControl(n,t={}){this.controls[n]&&this.controls[n]._registerOnCollectionChange(()=>{}),delete this.controls[n],this.updateValueAndValidity({emitEvent:t.emitEvent}),this._onCollectionChange()}setControl(n,t,c={}){this.controls[n]&&this.controls[n]._registerOnCollectionChange(()=>{}),delete this.controls[n],t&&this.registerControl(n,t),this.updateValueAndValidity({emitEvent:c.emitEvent}),this._onCollectionChange()}contains(n){return this.controls.hasOwnProperty(n)&&this.controls[n].enabled}setValue(n,t={}){x5(this,!0,n),Object.keys(n).forEach(c=>{w5(this,!0,c),this.controls[c].setValue(n[c],{onlySelf:!0,emitEvent:t.emitEvent})}),this.updateValueAndValidity(t)}patchValue(n,t={}){n!=null&&(Object.keys(n).forEach(c=>{let s=this.controls[c];s&&s.patchValue(n[c],{onlySelf:!0,emitEvent:t.emitEvent})}),this.updateValueAndValidity(t))}reset(n={},t={}){this._forEachChild((c,s)=>{c.reset(n?n[s]:null,{onlySelf:!0,emitEvent:t.emitEvent})}),this._updatePristine(t,this),this._updateTouched(t,this),this.updateValueAndValidity(t)}getRawValue(){return this._reduceChildren({},(n,t,c)=>(n[c]=t.getRawValue(),n))}_syncPendingControls(){let n=this._reduceChildren(!1,(t,c)=>c._syncPendingControls()?!0:t);return n&&this.updateValueAndValidity({onlySelf:!0}),n}_forEachChild(n){Object.keys(this.controls).forEach(t=>{let c=this.controls[t];c&&n(c,t)})}_setUpControls(){this._forEachChild(n=>{n.setParent(this),n._registerOnCollectionChange(this._onCollectionChange)})}_updateValue(){this.value=this._reduceValue()}_anyControls(n){for(let[t,c]of Object.entries(this.controls))if(this.contains(t)&&n(c))return!0;return!1}_reduceValue(){let n={};return this._reduceChildren(n,(t,c,s)=>((c.enabled||this.disabled)&&(t[s]=c.value),t))}_reduceChildren(n,t){let c=n;return this._forEachChild((s,o)=>{c=t(c,s,o)}),c}_allControlsDisabled(){for(let n of Object.keys(this.controls))if(this.controls[n].enabled)return!1;return Object.keys(this.controls).length>0||this.disabled}_find(n){return this.controls.hasOwnProperty(n)?this.controls[n]:null}};var Ks=class extends v3{};var z3=new v("",{providedIn:"root",factory:()=>nn}),nn="always";function N5(e,n){return[...n.path,e]}function w4(e,n,t=nn){ro(e,n),n.valueAccessor.writeValue(e.value),(e.disabled||t==="always")&&n.valueAccessor.setDisabledState?.(e.disabled),uC(e,n),pC(e,n),dC(e,n),fC(e,n)}function Kt(e,n,t=!0){let c=()=>{};n.valueAccessor&&(n.valueAccessor.registerOnChange(c),n.valueAccessor.registerOnTouched(c)),en(e,n),e&&(n._invokeOnDestroyCallbacks(),e._registerOnCollectionChange(()=>{}))}function Jt(e,n){e.forEach(t=>{t.registerOnValidatorChange&&t.registerOnValidatorChange(n)})}function fC(e,n){if(n.valueAccessor.setDisabledState){let t=c=>{n.valueAccessor.setDisabledState(c)};e.registerOnDisabledChange(t),n._registerOnDestroy(()=>{e._unregisterOnDisabledChange(t)})}}function ro(e,n){let t=D5(e);n.validator!==null?e.setValidators(s5(t,n.validator)):typeof t=="function"&&e.setValidators([t]);let c=b5(e);n.asyncValidator!==null?e.setAsyncValidators(s5(c,n.asyncValidator)):typeof c=="function"&&e.setAsyncValidators([c]);let s=()=>e.updateValueAndValidity();Jt(n._rawValidators,s),Jt(n._rawAsyncValidators,s)}function en(e,n){let t=!1;if(e!==null){if(n.validator!==null){let s=D5(e);if(Array.isArray(s)&&s.length>0){let o=s.filter(r=>r!==n.validator);o.length!==s.length&&(t=!0,e.setValidators(o))}}if(n.asyncValidator!==null){let s=b5(e);if(Array.isArray(s)&&s.length>0){let o=s.filter(r=>r!==n.asyncValidator);o.length!==s.length&&(t=!0,e.setAsyncValidators(o))}}}let c=()=>{};return Jt(n._rawValidators,c),Jt(n._rawAsyncValidators,c),t}function uC(e,n){n.valueAccessor.registerOnChange(t=>{e._pendingValue=t,e._pendingChange=!0,e._pendingDirty=!0,e.updateOn==="change"&&E5(e,n)})}function dC(e,n){n.valueAccessor.registerOnTouched(()=>{e._pendingTouched=!0,e.updateOn==="blur"&&e._pendingChange&&E5(e,n),e.updateOn!=="submit"&&e.markAsTouched()})}function E5(e,n){e._pendingDirty&&e.markAsDirty(),e.setValue(e._pendingValue,{emitModelToViewChange:!1}),n.viewToModelUpdate(e._pendingValue),e._pendingChange=!1}function pC(e,n){let t=(c,s)=>{n.valueAccessor.writeValue(c),s&&n.viewToModelUpdate(c)};e.registerOnChange(t),n._registerOnDestroy(()=>{e._unregisterOnChange(t)})}function I5(e,n){e==null,ro(e,n)}function hC(e,n){return en(e,n)}function io(e,n){if(!e.hasOwnProperty("model"))return!1;let t=e.model;return t.isFirstChange()?!0:!Object.is(n,t.currentValue)}function mC(e){return Object.getPrototypeOf(e.constructor)===x4}function S5(e,n){e._syncPendingControls(),n.forEach(t=>{let c=t.control;c.updateOn==="submit"&&c._pendingChange&&(t.viewToModelUpdate(c._pendingValue),c._pendingChange=!1)})}function lo(e,n){if(!n)return null;Array.isArray(n);let t,c,s;return n.forEach(o=>{o.constructor===p5?t=o:mC(o)?c=o:s=o}),s||c||t||null}function gC(e,n){let t=e.indexOf(n);t>-1&&e.splice(t,1)}var MC={provide:M1,useExisting:l2(()=>CC)},v4=Promise.resolve(),CC=(()=>{class e extends M1{callSetDisabledState;get submitted(){return A2(this.submittedReactive)}_submitted=d3(()=>this.submittedReactive());submittedReactive=s3(!1);_directives=new Set;form;ngSubmit=new o2;options;constructor(t,c,s){super(),this.callSetDisabledState=s,this.form=new v3({},no(t),co(c))}ngAfterViewInit(){this._setUpdateStrategy()}get formDirective(){return this}get control(){return this.form}get path(){return[]}get controls(){return this.form.controls}addControl(t){v4.then(()=>{let c=this._findContainer(t.path);t.control=c.registerControl(t.name,t.control),w4(t.control,t,this.callSetDisabledState),t.control.updateValueAndValidity({emitEvent:!1}),this._directives.add(t)})}getControl(t){return this.form.get(t.path)}removeControl(t){v4.then(()=>{let c=this._findContainer(t.path);c&&c.removeControl(t.name),this._directives.delete(t)})}addFormGroup(t){v4.then(()=>{let c=this._findContainer(t.path),s=new v3({});I5(s,t),c.registerControl(t.name,s),s.updateValueAndValidity({emitEvent:!1})})}removeFormGroup(t){v4.then(()=>{let c=this._findContainer(t.path);c&&c.removeControl(t.name)})}getFormGroup(t){return this.form.get(t.path)}updateModel(t,c){v4.then(()=>{this.form.get(t.path).setValue(c)})}setValue(t){this.control.setValue(t)}onSubmit(t){return this.submittedReactive.set(!0),S5(this.form,this._directives),this.ngSubmit.emit(t),this.form._events.next(new Qt(this.control)),t?.target?.method==="dialog"}onReset(){this.resetForm()}resetForm(t=void 0){this.form.reset(t),this.submittedReactive.set(!1),this.form._events.next(new Xt(this.form))}_setUpdateStrategy(){this.options&&this.options.updateOn!=null&&(this.form._updateOn=this.options.updateOn)}_findContainer(t){return t.pop(),t.length?this.form.get(t):this.form}static \u0275fac=function(c){return new(c||e)(y(Le,10),y(N4,10),y(z3,8))};static \u0275dir=O({type:e,selectors:[["form",3,"ngNoForm","",3,"formGroup",""],["ng-form"],["","ngForm",""]],hostBindings:function(c,s){c&1&&m1("submit",function(r){return s.onSubmit(r)})("reset",function(){return s.onReset()})},inputs:{options:[0,"ngFormOptions","options"]},outputs:{ngSubmit:"ngSubmit"},exportAs:["ngForm"],standalone:!1,features:[v2([MC]),X]})}return e})();function i5(e,n){let t=e.indexOf(n);t>-1&&e.splice(t,1)}function l5(e){return typeof e=="object"&&e!==null&&Object.keys(e).length===2&&"value"in e&&"disabled"in e}var b4=class extends y3{defaultValue=null;_onChange=[];_pendingValue;_pendingChange=!1;constructor(n=null,t,c){super(so(t),oo(c,t)),this._applyFormState(n),this._setUpdateStrategy(t),this._initObservables(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!!this.asyncValidator}),tn(t)&&(t.nonNullable||t.initialValueIsDefault)&&(l5(n)?this.defaultValue=n.value:this.defaultValue=n)}setValue(n,t={}){this.value=this._pendingValue=n,this._onChange.length&&t.emitModelToViewChange!==!1&&this._onChange.forEach(c=>c(this.value,t.emitViewToModelChange!==!1)),this.updateValueAndValidity(t)}patchValue(n,t={}){this.setValue(n,t)}reset(n=this.defaultValue,t={}){this._applyFormState(n),this.markAsPristine(t),this.markAsUntouched(t),this.setValue(this.value,t),this._pendingChange=!1}_updateValue(){}_anyControls(n){return!1}_allControlsDisabled(){return this.disabled}registerOnChange(n){this._onChange.push(n)}_unregisterOnChange(n){i5(this._onChange,n)}registerOnDisabledChange(n){this._onDisabledChange.push(n)}_unregisterOnDisabledChange(n){i5(this._onDisabledChange,n)}_forEachChild(n){}_syncPendingControls(){return this.updateOn==="submit"&&(this._pendingDirty&&this.markAsDirty(),this._pendingTouched&&this.markAsTouched(),this._pendingChange)?(this.setValue(this._pendingValue,{onlySelf:!0,emitModelToViewChange:!1}),!0):!1}_applyFormState(n){l5(n)?(this.value=this._pendingValue=n.value,n.disabled?this.disable({onlySelf:!0,emitEvent:!1}):this.enable({onlySelf:!0,emitEvent:!1})):this.value=this._pendingValue=n}};var LC=e=>e instanceof b4;var yC={provide:C1,useExisting:l2(()=>vC)},a5=Promise.resolve(),vC=(()=>{class e extends C1{_changeDetectorRef;callSetDisabledState;control=new b4;static ngAcceptInputType_isDisabled;_registered=!1;viewModel;name="";isDisabled;model;options;update=new o2;constructor(t,c,s,o,r,i){super(),this._changeDetectorRef=r,this.callSetDisabledState=i,this._parent=t,this._setValidators(c),this._setAsyncValidators(s),this.valueAccessor=lo(this,o)}ngOnChanges(t){if(this._checkForErrors(),!this._registered||"name"in t){if(this._registered&&(this._checkName(),this.formDirective)){let c=t.name.previousValue;this.formDirective.removeControl({name:c,path:this._getPath(c)})}this._setUpControl()}"isDisabled"in t&&this._updateDisabled(t),io(t,this.viewModel)&&(this._updateValue(this.model),this.viewModel=this.model)}ngOnDestroy(){this.formDirective&&this.formDirective.removeControl(this)}get path(){return this._getPath(this.name)}get formDirective(){return this._parent?this._parent.formDirective:null}viewToModelUpdate(t){this.viewModel=t,this.update.emit(t)}_setUpControl(){this._setUpdateStrategy(),this._isStandalone()?this._setUpStandalone():this.formDirective.addControl(this),this._registered=!0}_setUpdateStrategy(){this.options&&this.options.updateOn!=null&&(this.control._updateOn=this.options.updateOn)}_isStandalone(){return!this._parent||!!(this.options&&this.options.standalone)}_setUpStandalone(){w4(this.control,this,this.callSetDisabledState),this.control.updateValueAndValidity({emitEvent:!1})}_checkForErrors(){this._checkName()}_checkName(){this.options&&this.options.name&&(this.name=this.options.name),!this._isStandalone()&&this.name}_updateValue(t){a5.then(()=>{this.control.setValue(t,{emitViewToModelChange:!1}),this._changeDetectorRef?.markForCheck()})}_updateDisabled(t){let c=t.isDisabled.currentValue,s=c!==0&&k1(c);a5.then(()=>{s&&!this.control.disabled?this.control.disable():!s&&this.control.disabled&&this.control.enable(),this._changeDetectorRef?.markForCheck()})}_getPath(t){return this._parent?N5(t,this._parent):[t]}static \u0275fac=function(c){return new(c||e)(y(M1,9),y(Le,10),y(N4,10),y(O1,10),y(me,8),y(z3,8))};static \u0275dir=O({type:e,selectors:[["","ngModel","",3,"formControlName","",3,"formControl",""]],inputs:{name:"name",isDisabled:[0,"disabled","isDisabled"],model:[0,"ngModel","model"],options:[0,"ngModelOptions","options"]},outputs:{update:"ngModelChange"},exportAs:["ngModel"],standalone:!1,features:[v2([yC]),X,n2]})}return e})();var sF=(()=>{class e{static \u0275fac=function(c){return new(c||e)};static \u0275dir=O({type:e,selectors:[["form",3,"ngNoForm","",3,"ngNativeValidate",""]],hostAttrs:["novalidate",""],standalone:!1})}return e})(),zC={provide:O1,useExisting:l2(()=>DC),multi:!0},DC=(()=>{class e extends x4{writeValue(t){let c=t??"";this.setProperty("value",c)}registerOnChange(t){this.onChange=c=>{t(c==""?null:parseFloat(c))}}static \u0275fac=(()=>{let t;return function(s){return(t||(t=_2(e)))(s||e)}})();static \u0275dir=O({type:e,selectors:[["input","type","number","formControlName",""],["input","type","number","formControl",""],["input","type","number","ngModel",""]],hostBindings:function(c,s){c&1&&m1("input",function(r){return s.onChange(r.target.value)})("blur",function(){return s.onTouched()})},standalone:!1,features:[v2([zC]),X]})}return e})();var ao=new v(""),bC={provide:C1,useExisting:l2(()=>wC)},wC=(()=>{class e extends C1{_ngModelWarningConfig;callSetDisabledState;viewModel;form;set isDisabled(t){}model;update=new o2;static _ngModelWarningSentOnce=!1;_ngModelWarningSent=!1;constructor(t,c,s,o,r){super(),this._ngModelWarningConfig=o,this.callSetDisabledState=r,this._setValidators(t),this._setAsyncValidators(c),this.valueAccessor=lo(this,s)}ngOnChanges(t){if(this._isControlChanged(t)){let c=t.form.previousValue;c&&Kt(c,this,!1),w4(this.form,this,this.callSetDisabledState),this.form.updateValueAndValidity({emitEvent:!1})}io(t,this.viewModel)&&(this.form.setValue(this.model),this.viewModel=this.model)}ngOnDestroy(){this.form&&Kt(this.form,this,!1)}get path(){return[]}get control(){return this.form}viewToModelUpdate(t){this.viewModel=t,this.update.emit(t)}_isControlChanged(t){return t.hasOwnProperty("form")}static \u0275fac=function(c){return new(c||e)(y(Le,10),y(N4,10),y(O1,10),y(ao,8),y(z3,8))};static \u0275dir=O({type:e,selectors:[["","formControl",""]],inputs:{form:[0,"formControl","form"],isDisabled:[0,"disabled","isDisabled"],model:[0,"ngModel","model"]},outputs:{update:"ngModelChange"},exportAs:["ngForm"],standalone:!1,features:[v2([bC]),X,n2]})}return e})(),xC={provide:M1,useExisting:l2(()=>NC)},NC=(()=>{class e extends M1{callSetDisabledState;get submitted(){return A2(this._submittedReactive)}set submitted(t){this._submittedReactive.set(t)}_submitted=d3(()=>this._submittedReactive());_submittedReactive=s3(!1);_oldForm;_onCollectionChange=()=>this._updateDomValue();directives=[];form=null;ngSubmit=new o2;constructor(t,c,s){super(),this.callSetDisabledState=s,this._setValidators(t),this._setAsyncValidators(c)}ngOnChanges(t){t.hasOwnProperty("form")&&(this._updateValidators(),this._updateDomValue(),this._updateRegistrations(),this._oldForm=this.form)}ngOnDestroy(){this.form&&(en(this.form,this),this.form._onCollectionChange===this._onCollectionChange&&this.form._registerOnCollectionChange(()=>{}))}get formDirective(){return this}get control(){return this.form}get path(){return[]}addControl(t){let c=this.form.get(t.path);return w4(c,t,this.callSetDisabledState),c.updateValueAndValidity({emitEvent:!1}),this.directives.push(t),c}getControl(t){return this.form.get(t.path)}removeControl(t){Kt(t.control||null,t,!1),gC(this.directives,t)}addFormGroup(t){this._setUpFormContainer(t)}removeFormGroup(t){this._cleanUpFormContainer(t)}getFormGroup(t){return this.form.get(t.path)}addFormArray(t){this._setUpFormContainer(t)}removeFormArray(t){this._cleanUpFormContainer(t)}getFormArray(t){return this.form.get(t.path)}updateModel(t,c){this.form.get(t.path).setValue(c)}onSubmit(t){return this._submittedReactive.set(!0),S5(this.form,this.directives),this.ngSubmit.emit(t),this.form._events.next(new Qt(this.control)),t?.target?.method==="dialog"}onReset(){this.resetForm()}resetForm(t=void 0){this.form.reset(t),this._submittedReactive.set(!1),this.form._events.next(new Xt(this.form))}_updateDomValue(){this.directives.forEach(t=>{let c=t.control,s=this.form.get(t.path);c!==s&&(Kt(c||null,t),LC(s)&&(w4(s,t,this.callSetDisabledState),t.control=s))}),this.form._updateTreeValidity({emitEvent:!1})}_setUpFormContainer(t){let c=this.form.get(t.path);I5(c,t),c.updateValueAndValidity({emitEvent:!1})}_cleanUpFormContainer(t){if(this.form){let c=this.form.get(t.path);c&&hC(c,t)&&c.updateValueAndValidity({emitEvent:!1})}}_updateRegistrations(){this.form._registerOnCollectionChange(this._onCollectionChange),this._oldForm&&this._oldForm._registerOnCollectionChange(()=>{})}_updateValidators(){ro(this.form,this),this._oldForm&&en(this._oldForm,this)}static \u0275fac=function(c){return new(c||e)(y(Le,10),y(N4,10),y(z3,8))};static \u0275dir=O({type:e,selectors:[["","formGroup",""]],hostBindings:function(c,s){c&1&&m1("submit",function(r){return s.onSubmit(r)})("reset",function(){return s.onReset()})},inputs:{form:[0,"formGroup","form"]},outputs:{ngSubmit:"ngSubmit"},exportAs:["ngForm"],standalone:!1,features:[v2([xC]),X,n2]})}return e})();var EC={provide:C1,useExisting:l2(()=>IC)},IC=(()=>{class e extends C1{_ngModelWarningConfig;_added=!1;viewModel;control;name=null;set isDisabled(t){}model;update=new o2;static _ngModelWarningSentOnce=!1;_ngModelWarningSent=!1;constructor(t,c,s,o,r){super(),this._ngModelWarningConfig=r,this._parent=t,this._setValidators(c),this._setAsyncValidators(s),this.valueAccessor=lo(this,o)}ngOnChanges(t){this._added||this._setUpControl(),io(t,this.viewModel)&&(this.viewModel=this.model,this.formDirective.updateModel(this,this.model))}ngOnDestroy(){this.formDirective&&this.formDirective.removeControl(this)}viewToModelUpdate(t){this.viewModel=t,this.update.emit(t)}get path(){return N5(this.name==null?this.name:this.name.toString(),this._parent)}get formDirective(){return this._parent?this._parent.formDirective:null}_setUpControl(){this.control=this.formDirective.addControl(this),this._added=!0}static \u0275fac=function(c){return new(c||e)(y(M1,13),y(Le,10),y(N4,10),y(O1,10),y(ao,8))};static \u0275dir=O({type:e,selectors:[["","formControlName",""]],inputs:{name:[0,"formControlName","name"],isDisabled:[0,"disabled","isDisabled"],model:[0,"ngModel","model"]},outputs:{update:"ngModelChange"},standalone:!1,features:[v2([EC]),X,n2]})}return e})();var SC={provide:O1,useExisting:l2(()=>T5),multi:!0};function _5(e,n){return e==null?`${n}`:(n&&typeof n=="object"&&(n="Object"),`${e}: ${n}`.slice(0,50))}function _C(e){return e.split(":")[0]}var T5=(()=>{class e extends x4{value;_optionMap=new Map;_idCounter=0;set compareWith(t){this._compareWith=t}_compareWith=Object.is;writeValue(t){this.value=t;let c=this._getOptionId(t),s=_5(c,t);this.setProperty("value",s)}registerOnChange(t){this.onChange=c=>{this.value=this._getOptionValue(c),t(this.value)}}_registerOption(){return(this._idCounter++).toString()}_getOptionId(t){for(let c of this._optionMap.keys())if(this._compareWith(this._optionMap.get(c),t))return c;return null}_getOptionValue(t){let c=_C(t);return this._optionMap.has(c)?this._optionMap.get(c):t}static \u0275fac=(()=>{let t;return function(s){return(t||(t=_2(e)))(s||e)}})();static \u0275dir=O({type:e,selectors:[["select","formControlName","",3,"multiple",""],["select","formControl","",3,"multiple",""],["select","ngModel","",3,"multiple",""]],hostBindings:function(c,s){c&1&&m1("change",function(r){return s.onChange(r.target.value)})("blur",function(){return s.onTouched()})},inputs:{compareWith:"compareWith"},standalone:!1,features:[v2([SC]),X]})}return e})(),oF=(()=>{class e{_element;_renderer;_select;id;constructor(t,c,s){this._element=t,this._renderer=c,this._select=s,this._select&&(this.id=this._select._registerOption())}set ngValue(t){this._select!=null&&(this._select._optionMap.set(this.id,t),this._setElementValue(_5(this.id,t)),this._select.writeValue(this._select.value))}set value(t){this._setElementValue(t),this._select&&this._select.writeValue(this._select.value)}_setElementValue(t){this._renderer.setProperty(this._element.nativeElement,"value",t)}ngOnDestroy(){this._select&&(this._select._optionMap.delete(this.id),this._select.writeValue(this._select.value))}static \u0275fac=function(c){return new(c||e)(y(c2),y(b2),y(T5,9))};static \u0275dir=O({type:e,selectors:[["option"]],inputs:{ngValue:"ngValue",value:"value"},standalone:!1})}return e})(),TC={provide:O1,useExisting:l2(()=>A5),multi:!0};function f5(e,n){return e==null?`${n}`:(typeof n=="string"&&(n=`'${n}'`),n&&typeof n=="object"&&(n="Object"),`${e}: ${n}`.slice(0,50))}function AC(e){return e.split(":")[0]}var A5=(()=>{class e extends x4{value;_optionMap=new Map;_idCounter=0;set compareWith(t){this._compareWith=t}_compareWith=Object.is;writeValue(t){this.value=t;let c;if(Array.isArray(t)){let s=t.map(o=>this._getOptionId(o));c=(o,r)=>{o._setSelected(s.indexOf(r.toString())>-1)}}else c=(s,o)=>{s._setSelected(!1)};this._optionMap.forEach(c)}registerOnChange(t){this.onChange=c=>{let s=[],o=c.selectedOptions;if(o!==void 0){let r=o;for(let i=0;i<r.length;i++){let l=r[i],a=this._getOptionValue(l.value);s.push(a)}}else{let r=c.options;for(let i=0;i<r.length;i++){let l=r[i];if(l.selected){let a=this._getOptionValue(l.value);s.push(a)}}}this.value=s,t(s)}}_registerOption(t){let c=(this._idCounter++).toString();return this._optionMap.set(c,t),c}_getOptionId(t){for(let c of this._optionMap.keys())if(this._compareWith(this._optionMap.get(c)._value,t))return c;return null}_getOptionValue(t){let c=AC(t);return this._optionMap.has(c)?this._optionMap.get(c)._value:t}static \u0275fac=(()=>{let t;return function(s){return(t||(t=_2(e)))(s||e)}})();static \u0275dir=O({type:e,selectors:[["select","multiple","","formControlName",""],["select","multiple","","formControl",""],["select","multiple","","ngModel",""]],hostBindings:function(c,s){c&1&&m1("change",function(r){return s.onChange(r.target)})("blur",function(){return s.onTouched()})},inputs:{compareWith:"compareWith"},standalone:!1,features:[v2([TC]),X]})}return e})(),rF=(()=>{class e{_element;_renderer;_select;id;_value;constructor(t,c,s){this._element=t,this._renderer=c,this._select=s,this._select&&(this.id=this._select._registerOption(this))}set ngValue(t){this._select!=null&&(this._value=t,this._setElementValue(f5(this.id,t)),this._select.writeValue(this._select.value))}set value(t){this._select?(this._value=t,this._setElementValue(f5(this.id,t)),this._select.writeValue(this._select.value)):this._setElementValue(t)}_setElementValue(t){this._renderer.setProperty(this._element.nativeElement,"value",t)}_setSelected(t){this._renderer.setProperty(this._element.nativeElement,"selected",t)}ngOnDestroy(){this._select&&(this._select._optionMap.delete(this.id),this._select.writeValue(this._select.value))}static \u0275fac=function(c){return new(c||e)(y(c2),y(b2),y(A5,9))};static \u0275dir=O({type:e,selectors:[["option"]],inputs:{ngValue:"ngValue",value:"value"},standalone:!1})}return e})();function kC(e){return typeof e=="number"?e:parseFloat(e)}var k5=(()=>{class e{_validator=Gt;_onChange;_enabled;ngOnChanges(t){if(this.inputName in t){let c=this.normalizeInput(t[this.inputName].currentValue);this._enabled=this.enabled(c),this._validator=this._enabled?this.createValidator(c):Gt,this._onChange&&this._onChange()}}validate(t){return this._validator(t)}registerOnValidatorChange(t){this._onChange=t}enabled(t){return t!=null}static \u0275fac=function(c){return new(c||e)};static \u0275dir=O({type:e,features:[n2]})}return e})();var FC={provide:Le,useExisting:l2(()=>RC),multi:!0},RC=(()=>{class e extends k5{min;inputName="min";normalizeInput=t=>kC(t);createValidator=t=>h5(t);static \u0275fac=(()=>{let t;return function(s){return(t||(t=_2(e)))(s||e)}})();static \u0275dir=O({type:e,selectors:[["input","type","number","min","","formControlName",""],["input","type","number","min","","formControl",""],["input","type","number","min","","ngModel",""]],hostVars:1,hostBindings:function(c,s){c&2&&u3("min",s._enabled?s.min:null)},inputs:{min:"min"},standalone:!1,features:[v2([FC]),X]})}return e})(),OC={provide:Le,useExisting:l2(()=>PC),multi:!0};var PC=(()=>{class e extends k5{required;inputName="required";normalizeInput=k1;createValidator=t=>m5;enabled(t){return t}static \u0275fac=(()=>{let t;return function(s){return(t||(t=_2(e)))(s||e)}})();static \u0275dir=O({type:e,selectors:[["","required","","formControlName","",3,"type","checkbox"],["","required","","formControl","",3,"type","checkbox"],["","required","","ngModel","",3,"type","checkbox"]],hostVars:1,hostBindings:function(c,s){c&2&&u3("required",s._enabled?"":null)},inputs:{required:"required"},standalone:!1,features:[v2([OC]),X]})}return e})();var F5=(()=>{class e{static \u0275fac=function(c){return new(c||e)};static \u0275mod=T2({type:e});static \u0275inj=S2({})}return e})(),Js=class extends y3{constructor(n,t,c){super(so(t),oo(c,t)),this.controls=n,this._initObservables(),this._setUpdateStrategy(t),this._setUpControls(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!!this.asyncValidator})}controls;at(n){return this.controls[this._adjustIndex(n)]}push(n,t={}){this.controls.push(n),this._registerControl(n),this.updateValueAndValidity({emitEvent:t.emitEvent}),this._onCollectionChange()}insert(n,t,c={}){this.controls.splice(n,0,t),this._registerControl(t),this.updateValueAndValidity({emitEvent:c.emitEvent})}removeAt(n,t={}){let c=this._adjustIndex(n);c<0&&(c=0),this.controls[c]&&this.controls[c]._registerOnCollectionChange(()=>{}),this.controls.splice(c,1),this.updateValueAndValidity({emitEvent:t.emitEvent})}setControl(n,t,c={}){let s=this._adjustIndex(n);s<0&&(s=0),this.controls[s]&&this.controls[s]._registerOnCollectionChange(()=>{}),this.controls.splice(s,1),t&&(this.controls.splice(s,0,t),this._registerControl(t)),this.updateValueAndValidity({emitEvent:c.emitEvent}),this._onCollectionChange()}get length(){return this.controls.length}setValue(n,t={}){x5(this,!1,n),n.forEach((c,s)=>{w5(this,!1,s),this.at(s).setValue(c,{onlySelf:!0,emitEvent:t.emitEvent})}),this.updateValueAndValidity(t)}patchValue(n,t={}){n!=null&&(n.forEach((c,s)=>{this.at(s)&&this.at(s).patchValue(c,{onlySelf:!0,emitEvent:t.emitEvent})}),this.updateValueAndValidity(t))}reset(n=[],t={}){this._forEachChild((c,s)=>{c.reset(n[s],{onlySelf:!0,emitEvent:t.emitEvent})}),this._updatePristine(t,this),this._updateTouched(t,this),this.updateValueAndValidity(t)}getRawValue(){return this.controls.map(n=>n.getRawValue())}clear(n={}){this.controls.length<1||(this._forEachChild(t=>t._registerOnCollectionChange(()=>{})),this.controls.splice(0),this.updateValueAndValidity({emitEvent:n.emitEvent}))}_adjustIndex(n){return n<0?n+this.length:n}_syncPendingControls(){let n=this.controls.reduce((t,c)=>c._syncPendingControls()?!0:t,!1);return n&&this.updateValueAndValidity({onlySelf:!0}),n}_forEachChild(n){this.controls.forEach((t,c)=>{n(t,c)})}_updateValue(){this.value=this.controls.filter(n=>n.enabled||this.disabled).map(n=>n.value)}_anyControls(n){return this.controls.some(t=>t.enabled&&n(t))}_setUpControls(){this._forEachChild(n=>this._registerControl(n))}_allControlsDisabled(){for(let n of this.controls)if(n.enabled)return!1;return this.controls.length>0||this.disabled}_registerControl(n){n.setParent(this),n._registerOnCollectionChange(this._onCollectionChange)}_find(n){return this.at(n)??null}};function u5(e){return!!e&&(e.asyncValidators!==void 0||e.validators!==void 0||e.updateOn!==void 0)}var VC=(()=>{class e{useNonNullable=!1;get nonNullable(){let t=new e;return t.useNonNullable=!0,t}group(t,c=null){let s=this._reduceControls(t),o={};return u5(c)?o=c:c!==null&&(o.validators=c.validator,o.asyncValidators=c.asyncValidator),new v3(s,o)}record(t,c=null){let s=this._reduceControls(t);return new Ks(s,c)}control(t,c,s){let o={};return this.useNonNullable?(u5(c)?o=c:(o.validators=c,o.asyncValidators=s),new b4(t,B(_({},o),{nonNullable:!0}))):new b4(t,c,s)}array(t,c,s){let o=t.map(r=>this._createControl(r));return new Js(o,c,s)}_reduceControls(t){let c={};return Object.keys(t).forEach(s=>{c[s]=this._createControl(t[s])}),c}_createControl(t){if(t instanceof b4)return t;if(t instanceof y3)return t;if(Array.isArray(t)){let c=t[0],s=t.length>1?t[1]:null,o=t.length>2?t[2]:null;return this.control(c,s,o)}else return this.control(t)}static \u0275fac=function(c){return new(c||e)};static \u0275prov=M({token:e,factory:e.\u0275fac,providedIn:"root"})}return e})();var iF=(()=>{class e extends VC{group(t,c=null){return super.group(t,c)}control(t,c,s){return super.control(t,c,s)}array(t,c,s){return super.array(t,c,s)}static \u0275fac=(()=>{let t;return function(s){return(t||(t=_2(e)))(s||e)}})();static \u0275prov=M({token:e,factory:e.\u0275fac,providedIn:"root"})}return e})();var lF=(()=>{class e{static withConfig(t){return{ngModule:e,providers:[{provide:z3,useValue:t.callSetDisabledState??nn}]}}static \u0275fac=function(c){return new(c||e)};static \u0275mod=T2({type:e});static \u0275inj=S2({imports:[F5]})}return e})(),aF=(()=>{class e{static withConfig(t){return{ngModule:e,providers:[{provide:ao,useValue:t.warnOnNgModelWithFormControl??"always"},{provide:z3,useValue:t.callSetDisabledState??nn}]}}static \u0275fac=function(c){return new(c||e)};static \u0275mod=T2({type:e});static \u0275inj=S2({imports:[F5]})}return e})();var E4=new v("L10N_CONFIG"),po=new v("L10N_LOCALE");function cn(e,n){return new Error(`angular-l10n (${e.name}): ${n}`)}function jC(e){return new RegExp(/^([a-z]{2,3})(\-[A-Z][a-z]{3})?(\-[A-Z]{2})?(-u.+)?$/).test(e)}function D3(e,n){if(e==null||e==="")return"";if(!jC(e))throw cn(D3,"Invalid language");let[,t="",c="",s=""]=e.match(/^([a-z]{2,3})(\-[A-Z][a-z]{3})?(\-[A-Z]{2})?/)||[];switch(n){case"language":return t;case"language-script":return t+c;case"language-region":return t+s;case"language-script-region":return t+c+s}}function BC(e){let n=null;if(typeof navigator<"u"&&navigator.language)switch(e){case"language-region":case"language-script-region":n=navigator.language;break;default:n=navigator.language.split("-")[0]}return n}function B5(e,n,t){return e.find(s=>D3(s.locale.language,t)===n)}function R5(e,n,t){return n?t?e.split(t).reduce((c,s)=>(c&&c[s])!=null?c[s]:null,n):n[e]!=null?n[e]:null:null}function HC(e,n){return e.replace(/{{\s?([^{}\s]*)\s?}}/g,(c,s)=>{let o=n[s];return o!==void 0?o:c})}function H5(e,n){let t=Object.assign({},e);return uo(e)&&uo(n)&&Object.keys(n).forEach(c=>{uo(n[c])?c in e?t[c]=H5(e[c],n[c]):Object.assign(t,{[c]:n[c]}):Object.assign(t,{[c]:n[c]})}),t}function fo(e){return typeof e=="string"&&!isNaN(+e-parseFloat(e))?+e:e}function U5(e){if(O5(e))return e;if(typeof e=="number"&&!isNaN(e))return new Date(e);if(typeof e=="string"){if(e=e.trim(),!isNaN(e-parseFloat(e)))return new Date(parseFloat(e));if(/^(\d{4}-\d{1,2}-\d{1,2})$/.test(e)){let[c,s,o]=e.split("-").map(r=>+r);return new Date(c,s-1,o)}let t=e.match(/^(\d{4})-?(\d\d)-?(\d\d)(?:T(\d\d)(?::?(\d\d)(?::?(\d\d)(?:\.(\d+))?)?)?(Z|([+-])(\d\d):?(\d\d))?)?$/);if(t)return GC(t)}let n=new Date(e);if(!O5(n))throw cn(U5,"Invalid date");return n}var UC={full:{weekday:"long",year:"numeric",month:"long",day:"numeric"},long:{year:"numeric",month:"long",day:"numeric"},medium:{year:"numeric",month:"short",day:"numeric"},short:{year:"2-digit",month:"numeric",day:"numeric"}},$C={full:{hour:"numeric",minute:"numeric",second:"numeric",timeZoneName:"long"},long:{hour:"numeric",minute:"numeric",second:"numeric",timeZoneName:"short"},medium:{hour:"numeric",minute:"numeric",second:"numeric"},short:{hour:"numeric",minute:"numeric"}};function $5(e){let n=e.match(/^(\d+)?\.((\d+)(\-(\d+))?)?$/);if(n==null)throw cn($5,"Invalid digits");return{minimumIntegerDigits:n[1]?parseInt(n[1]):void 0,minimumFractionDigits:n[3]?parseInt(n[3]):void 0,maximumFractionDigits:n[5]?parseInt(n[5]):void 0}}function uo(e){return typeof e=="object"&&!Array.isArray(e)}function O5(e){return e instanceof Date&&!isNaN(e.valueOf())}function GC(e){let n=new Date(0),t=0,c=0,s=e[8]?n.setUTCFullYear:n.setFullYear,o=e[8]?n.setUTCHours:n.setHours;e[9]&&(t=Number(e[9]+e[10]),c=Number(e[9]+e[11])),s.call(n,Number(e[1]),Number(e[2])-1,Number(e[3]));let r=Number(e[4]||0)-t,i=Number(e[5]||0)-c,l=Number(e[6]||0),a=Math.round(parseFloat("0."+(e[7]||0))*1e3);return o.call(n,r,i,l,a),n}var ho=(()=>{class e{constructor(){this.cache={}}read(t,c){if(this.cache[t])return this.cache[t];let s=c.pipe(Fn(1));return this.cache[t]=s,s}static{this.\u0275fac=function(c){return new(c||e)}}static{this.\u0275prov=M({token:e,factory:e.\u0275fac})}}return e})(),G5=(()=>{class e{static{this.\u0275fac=function(c){return new(c||e)}}static{this.\u0275prov=M({token:e,factory:e.\u0275fac})}}return e})(),qC=(()=>{class e{read(){return F2(this,null,function*(){return Promise.resolve(null)})}write(t){return F2(this,null,function*(){})}static{this.\u0275fac=function(c){return new(c||e)}}static{this.\u0275prov=M({token:e,factory:e.\u0275fac})}}return e})(),q5=(()=>{class e{static{this.\u0275fac=function(c){return new(c||e)}}static{this.\u0275prov=M({token:e,factory:e.\u0275fac})}}return e})(),WC=(()=>{class e{constructor(t){this.config=t}get(){return F2(this,null,function*(){let t=BC(this.config.format);if(t){let c=B5(this.config.schema,t,this.config.format);if(c)return Promise.resolve(c.locale)}return Promise.resolve(null)})}static{this.\u0275fac=function(c){return new(c||e)(C(E4))}}static{this.\u0275prov=M({token:e,factory:e.\u0275fac})}}return e})(),mo=(()=>{class e{static{this.\u0275fac=function(c){return new(c||e)}}static{this.\u0275prov=M({token:e,factory:e.\u0275fac})}}return e})(),ZC=(()=>{class e{get(t,c){return c.asset[t]?_e(c.asset[t]):In(()=>cn(e,"Asset not found"))}static{this.\u0275fac=function(c){return new(c||e)}}static{this.\u0275prov=M({token:e,factory:e.\u0275fac})}}return e})(),W5=(()=>{class e{static{this.\u0275fac=function(c){return new(c||e)}}static{this.\u0275prov=M({token:e,factory:e.\u0275fac})}}return e})(),YC=(()=>{class e{constructor(t,c,s){this.config=t,this.cache=c,this.translationLoader=s}get(t,c){let s=[],o=t.match(/-?[a-zA-z]+/g)||[],r="";for(let i of o)r+=i,this.config.cache?s.push(this.cache.read(`${c.name}-${r}`,this.translationLoader.get(r,c))):s.push(this.translationLoader.get(r,c));return s}static{this.\u0275fac=function(c){return new(c||e)(C(E4),C(ho),C(mo))}}static{this.\u0275prov=M({token:e,factory:e.\u0275fac})}}return e})(),Z5=(()=>{class e{static{this.\u0275fac=function(c){return new(c||e)}}static{this.\u0275prov=M({token:e,factory:e.\u0275fac})}}return e})(),QC=(()=>{class e{parseValue(t,c,s){return c?HC(s,c):s}static{this.\u0275fac=function(c){return new(c||e)}}static{this.\u0275prov=M({token:e,factory:e.\u0275fac})}}return e})(),Y5=(()=>{class e{static{this.\u0275fac=function(c){return new(c||e)}}static{this.\u0275prov=M({token:e,factory:e.\u0275fac})}}return e})(),XC=(()=>{class e{handle(t,c,s){return t}static{this.\u0275fac=function(c){return new(c||e)}}static{this.\u0275prov=M({token:e,factory:e.\u0275fac})}}return e})(),I4=(()=>{class e{constructor(t,c,s,o,r,i,l,a,f){this.config=t,this.locale=c,this.cache=s,this.storage=o,this.resolveLocale=r,this.translationFallback=i,this.translationLoader=l,this.translationHandler=a,this.missingTranslationHandler=f,this.data={},this.translation=new x1(this.locale),this.error=new x1(null)}getLocale(){return this.locale}setLocale(t){return F2(this,null,function*(){yield this.loadTranslations(this.config.providers,t)})}onChange(){return this.translation.asObservable()}onError(){return this.error.asObservable()}translate(t,c,s=this.locale.language){if(s=D3(s,this.config.format),Array.isArray(t)){let r={};for(let i of t)r[i]=this.translate(i,c,s);return r}let o=R5(t,this.data[s],this.config.keySeparator);return o?this.translationHandler.parseValue(t,c,o):this.missingTranslationHandler.handle(t,o,c)}has(t,c=this.locale.language){return c=D3(c,this.config.format),R5(t,this.data[c],this.config.keySeparator)!==null}getLanguageDirection(t=this.locale.language){let c=B5(this.config.schema,t,this.config.format);return c?c.dir:void 0}getAvailableLanguages(){return this.config.schema.map(c=>D3(c.locale.language,this.config.format))}init(){return F2(this,arguments,function*(t=this.config.providers){let c=null;c==null&&(c=yield this.storage.read()),c==null&&(c=yield this.resolveLocale.get()),c==null&&(c=this.config.defaultLocale),yield this.loadTranslations(t,c)})}loadTranslations(){return F2(this,arguments,function*(t=this.config.providers,c=this.locale){let s=D3(c.language,this.config.format);return new Promise(o=>{w1(...this.getTranslation(t,s)).subscribe({next:r=>this.addData(r,s),error:r=>{this.handleError(r),o()},complete:()=>{this.releaseTranslation(c),o()}})})})}addData(t,c){this.data[c]=this.data[c]!==void 0?H5(this.data[c],t):t}addProviders(t){t.forEach(c=>{this.config.providers.find(s=>s.name===c.name)||this.config.providers.push(c)})}getTranslation(t,c){let s=[],o=[];for(let r of t)this.config.fallback?o=o.concat(this.translationFallback.get(c,r)):this.config.cache?s.push(this.cache.read(`${r.name}-${c}`,this.translationLoader.get(c,r))):s.push(this.translationLoader.get(c,r));return o.push(e6(...s)),o}handleError(t){this.error.next(t)}releaseTranslation(t){Object.assign(this.locale,t),this.translation.next(this.locale),this.storage.write(this.locale)}static{this.\u0275fac=function(c){return new(c||e)(C(E4),C(po),C(ho),C(G5),C(q5),C(W5),C(mo),C(Z5),C(Y5))}}static{this.\u0275prov=M({token:e,factory:e.\u0275fac})}}return e})();function P5(e){return KC(e)}var V5=10;function KC(e){let n=[],t,c=0,s=1;for(n.push(e);n.length>0&&c<=V5;){if(t=n.splice(0,1)[0],JC(t))return t;if(c<V5&&t.childNodes)for(let o of Array.from(t.childNodes))eL(o)&&n.push(o);--s===0&&(c++,s=n.length)}return e}function JC(e){return typeof e<"u"&&e.nodeType===3&&e.nodeValue!=null&&e.nodeValue.trim()!==""}function eL(e){if(typeof e<"u"&&e.nodeType===1&&e.attributes){for(let n of Array.from(e.attributes))if(n&&/^l10n|translate/.test(n.name))return!1}return!0}var tL=(()=>{class e{constructor(){this.el=L(c2),this.renderer=L(b2),this.translation=L(I4),this.attributes=[],this.destroy=new Y}set innerHTML(t){this.content=t.toString()}ngAfterViewInit(){this.el&&this.el.nativeElement&&(this.element=this.el.nativeElement,this.renderNode=P5(this.el.nativeElement),this.text=this.getText(),this.attributes=this.getAttributes(),this.addTextListener(),this.language?(this.replaceText(),this.replaceAttributes()):this.addTranslationListener())}ngOnChanges(){this.text&&((this.nodeValue==null||this.nodeValue==="")&&(this.value?this.text=this.value:this.content&&(this.text=this.content)),this.replaceText()),this.attributes&&this.attributes.length>0&&this.replaceAttributes()}ngOnDestroy(){this.destroy.next(!0),this.removeTextListener()}getText(){let t="";return this.element&&this.element.childNodes.length>0?t=this.getNodeValue():this.value?t=this.value:this.content&&(t=this.content),t}getNodeValue(){return this.nodeValue=this.renderNode!=null&&this.renderNode.nodeValue!=null?this.renderNode.nodeValue:"",this.nodeValue?this.nodeValue.trim():""}getAttributes(){let t=[];if(this.element&&this.element.attributes){for(let c of Array.from(this.element.attributes))if(c&&c.name){let[,s=""]=c.name.match(/^l10n-(.+)$/)||[];if(s){let o=Array.from(this.element.attributes).find(r=>r.name===s);o&&t.push({name:o.name,value:o.value})}}}return t}addTextListener(){typeof MutationObserver<"u"&&(this.textObserver=new MutationObserver(()=>{this.element&&(this.renderNode=P5(this.element),this.text=this.getText(),this.replaceText())}),this.renderNode&&this.textObserver.observe(this.renderNode,{subtree:!0,characterData:!0}))}removeTextListener(){this.textObserver&&this.textObserver.disconnect()}addTranslationListener(){this.translation.onChange().pipe(Rn(this.destroy)).subscribe({next:()=>{this.replaceText(),this.replaceAttributes()}})}replaceText(){this.text&&this.setText(this.getValue(this.text))}replaceAttributes(){this.attributes.length>0&&this.setAttributes(this.getAttributesValues())}setText(t){t&&(this.nodeValue&&this.text?(this.removeTextListener(),this.renderer.setValue(this.renderNode,this.nodeValue.replace(this.text,t)),this.addTextListener()):this.value?this.renderer.setAttribute(this.element,"value",t):this.content&&this.renderer.setProperty(this.element,"innerHTML",t))}setAttributes(t){for(let c of this.attributes)this.renderer.setAttribute(this.element,c.name,t[c.value])}getAttributesValues(){let t=this.attributes.map(s=>s.value),c={};for(let s of t)c[s]=this.getValue(s);return c}static{this.\u0275fac=function(c){return new(c||e)}}static{this.\u0275dir=O({type:e,inputs:{value:"value",innerHTML:"innerHTML",language:"language"},standalone:!1,features:[n2]})}}return e})();var j5=(()=>{class e{static{this.\u0275fac=function(c){return new(c||e)}}static{this.\u0275prov=M({token:e,factory:e.\u0275fac})}}return e})(),nL=(()=>{class e{constructor(t){this.translation=t}init(){return F2(this,null,function*(){yield this.translation.init()})}static{this.\u0275fac=function(c){return new(c||e)(C(I4))}}static{this.\u0275prov=M({token:e,factory:e.\u0275fac})}}return e})(),cL=(()=>{class e{constructor(t,c,s){this.config=t,this.locale=c,this.translation=s}formatDate(t,c,s=this.locale.dateLanguage||this.locale.language,o=this.locale.timeZone){t=U5(t);let r={};if(c&&c){let i=c,{dateStyle:l,timeStyle:a}=i,f=P4(i,["dateStyle","timeStyle"]);l&&(r=_(_({},r),UC[l])),a&&(r=_(_({},r),$C[a])),r=_(_({},r),f)}return o&&(r.timeZone=o),new Intl.DateTimeFormat(s,r).format(t)}formatNumber(t,c,s=this.locale.numberLanguage||this.locale.language,o=this.locale.currency,r,i){if(c&&c.style==="unit"&&!c.unit)return t;t=fo(t),typeof r=="function"&&(t=r(t,this.locale,Object.values(i||{})));let l={};if(c){let a=c,{digits:f}=a,u=P4(a,["digits"]);f&&(l=_(_({},l),$5(f))),l=_(_({},l),u)}return o&&(l.currency=o),new Intl.NumberFormat(s,l).format(t)}formatRelativeTime(t,c,s,o=this.locale.dateLanguage||this.locale.language){return t=fo(t),new Intl.RelativeTimeFormat(o,s).format(t,c)}plural(t,c="",s,o=this.locale.language){t=fo(t);let r=new Intl.PluralRules(o,s).select(t),i=c?`${c}${this.config.keySeparator}${r}`:r;return this.translation.translate(i,{value:t})}displayNames(t,c,s=this.locale.language){return new Intl.DisplayNames(s,c).of(t)||t}getCurrencySymbol(t=this.locale){let c=this.formatNumber(0,{digits:"1.0-0"},t.numberLanguage||t.language),o=this.formatNumber(0,{digits:"1.0-0",style:"currency",currencyDisplay:"symbol"},t.numberLanguage||t.language,t.currency).replace(c,"");return o=o.trim(),o}compare(t,c,s,o=this.locale.language){let r=this.translation.translate(t),i=this.translation.translate(c);return new Intl.Collator(o,s).compare(r,i)}list(t,c,s=this.locale.language){let o=t.map(r=>this.translation.translate(r));return s==null||s===""?o.join(", "):new Intl.ListFormat(s,c).format(o)}static{this.\u0275fac=function(c){return new(c||e)(C(E4),C(po),C(I4))}}static{this.\u0275prov=M({token:e,factory:e.\u0275fac})}}return e})();function sL(e){return()=>e.init()}function vF(e,n={}){return ue([I4,ho,{provide:E4,useValue:e},{provide:po,useValue:{language:"",units:{}}},{provide:G5,useClass:n.storage||qC},{provide:q5,useClass:n.localeResolver||WC},{provide:W5,useClass:n.translationFallback||YC},{provide:mo,useClass:n.translationLoader||ZC},{provide:Z5,useClass:n.translationHandler||QC},{provide:Y5,useClass:n.missingTranslationHandler||XC},{provide:j5,useClass:n.loader||nL},{provide:vs,useFactory:sL,deps:[j5],multi:!0}])}function zF(){return ue([cL])}var DF=(()=>{class e{constructor(t){this.translation=t}transform(t,c,s){return t==null||t===""?null:this.translation.translate(t,s,c)}static{this.\u0275fac=function(c){return new(c||e)(y(I4,16))}}static{this.\u0275pipe=a3({name:"translate",type:e,pure:!0})}}return e})();var bF=(()=>{class e extends tL{set l10nTranslate(t){t&&(this.params=t)}set translate(t){t&&(this.params=t)}getValue(t){return this.translation.translate(t,this.params,this.language)}static{this.\u0275fac=(()=>{let t;return function(s){return(t||(t=_2(e)))(s||e)}})()}static{this.\u0275dir=O({type:e,selectors:[["","l10nTranslate",""],["","translate",""]],inputs:{l10nTranslate:"l10nTranslate",translate:"translate",params:"params"},features:[X]})}}return e})();function oL(e,n,t){return(n=iL(n))in e?Object.defineProperty(e,n,{value:t,enumerable:!0,configurable:!0,writable:!0}):e[n]=t,e}function Q5(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var c=Object.getOwnPropertySymbols(e);n&&(c=c.filter(function(s){return Object.getOwnPropertyDescriptor(e,s).enumerable})),t.push.apply(t,c)}return t}function m(e){for(var n=1;n<arguments.length;n++){var t=arguments[n]!=null?arguments[n]:{};n%2?Q5(Object(t),!0).forEach(function(c){oL(e,c,t[c])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):Q5(Object(t)).forEach(function(c){Object.defineProperty(e,c,Object.getOwnPropertyDescriptor(t,c))})}return e}function rL(e,n){if(typeof e!="object"||!e)return e;var t=e[Symbol.toPrimitive];if(t!==void 0){var c=t.call(e,n||"default");if(typeof c!="object")return c;throw new TypeError("@@toPrimitive must return a primitive value.")}return(n==="string"?String:Number)(e)}function iL(e){var n=rL(e,"string");return typeof n=="symbol"?n:n+""}var X5=()=>{},Po={},D7={},b7=null,w7={mark:X5,measure:X5};try{typeof window<"u"&&(Po=window),typeof document<"u"&&(D7=document),typeof MutationObserver<"u"&&(b7=MutationObserver),typeof performance<"u"&&(w7=performance)}catch{}var{userAgent:K5=""}=Po.navigator||{},V1=Po,q=D7,J5=b7,sn=w7,NF=!!V1.document,v1=!!q.documentElement&&!!q.head&&typeof q.addEventListener=="function"&&typeof q.createElement=="function",x7=~K5.indexOf("MSIE")||~K5.indexOf("Trident/"),lL=/fa(s|r|l|t|d|dr|dl|dt|b|k|kd|ss|sr|sl|st|sds|sdr|sdl|sdt)?[\-\ ]/,aL=/Font ?Awesome ?([56 ]*)(Solid|Regular|Light|Thin|Duotone|Brands|Free|Pro|Sharp Duotone|Sharp|Kit)?.*/i,N7={classic:{fa:"solid",fas:"solid","fa-solid":"solid",far:"regular","fa-regular":"regular",fal:"light","fa-light":"light",fat:"thin","fa-thin":"thin",fab:"brands","fa-brands":"brands"},duotone:{fa:"solid",fad:"solid","fa-solid":"solid","fa-duotone":"solid",fadr:"regular","fa-regular":"regular",fadl:"light","fa-light":"light",fadt:"thin","fa-thin":"thin"},sharp:{fa:"solid",fass:"solid","fa-solid":"solid",fasr:"regular","fa-regular":"regular",fasl:"light","fa-light":"light",fast:"thin","fa-thin":"thin"},"sharp-duotone":{fa:"solid",fasds:"solid","fa-solid":"solid",fasdr:"regular","fa-regular":"regular",fasdl:"light","fa-light":"light",fasdt:"thin","fa-thin":"thin"}},fL={GROUP:"duotone-group",SWAP_OPACITY:"swap-opacity",PRIMARY:"primary",SECONDARY:"secondary"},E7=["fa-classic","fa-duotone","fa-sharp","fa-sharp-duotone"],f2="classic",un="duotone",uL="sharp",dL="sharp-duotone",I7=[f2,un,uL,dL],pL={classic:{900:"fas",400:"far",normal:"far",300:"fal",100:"fat"},duotone:{900:"fad",400:"fadr",300:"fadl",100:"fadt"},sharp:{900:"fass",400:"fasr",300:"fasl",100:"fast"},"sharp-duotone":{900:"fasds",400:"fasdr",300:"fasdl",100:"fasdt"}},hL={"Font Awesome 6 Free":{900:"fas",400:"far"},"Font Awesome 6 Pro":{900:"fas",400:"far",normal:"far",300:"fal",100:"fat"},"Font Awesome 6 Brands":{400:"fab",normal:"fab"},"Font Awesome 6 Duotone":{900:"fad",400:"fadr",normal:"fadr",300:"fadl",100:"fadt"},"Font Awesome 6 Sharp":{900:"fass",400:"fasr",normal:"fasr",300:"fasl",100:"fast"},"Font Awesome 6 Sharp Duotone":{900:"fasds",400:"fasdr",normal:"fasdr",300:"fasdl",100:"fasdt"}},mL=new Map([["classic",{defaultShortPrefixId:"fas",defaultStyleId:"solid",styleIds:["solid","regular","light","thin","brands"],futureStyleIds:[],defaultFontWeight:900}],["sharp",{defaultShortPrefixId:"fass",defaultStyleId:"solid",styleIds:["solid","regular","light","thin"],futureStyleIds:[],defaultFontWeight:900}],["duotone",{defaultShortPrefixId:"fad",defaultStyleId:"solid",styleIds:["solid","regular","light","thin"],futureStyleIds:[],defaultFontWeight:900}],["sharp-duotone",{defaultShortPrefixId:"fasds",defaultStyleId:"solid",styleIds:["solid","regular","light","thin"],futureStyleIds:[],defaultFontWeight:900}]]),gL={classic:{solid:"fas",regular:"far",light:"fal",thin:"fat",brands:"fab"},duotone:{solid:"fad",regular:"fadr",light:"fadl",thin:"fadt"},sharp:{solid:"fass",regular:"fasr",light:"fasl",thin:"fast"},"sharp-duotone":{solid:"fasds",regular:"fasdr",light:"fasdl",thin:"fasdt"}},ML=["fak","fa-kit","fakd","fa-kit-duotone"],e7={kit:{fak:"kit","fa-kit":"kit"},"kit-duotone":{fakd:"kit-duotone","fa-kit-duotone":"kit-duotone"}},CL=["kit"],LL={kit:{"fa-kit":"fak"},"kit-duotone":{"fa-kit-duotone":"fakd"}},yL=["fak","fakd"],vL={kit:{fak:"fa-kit"},"kit-duotone":{fakd:"fa-kit-duotone"}},t7={kit:{kit:"fak"},"kit-duotone":{"kit-duotone":"fakd"}},on={GROUP:"duotone-group",SWAP_OPACITY:"swap-opacity",PRIMARY:"primary",SECONDARY:"secondary"},zL=["fa-classic","fa-duotone","fa-sharp","fa-sharp-duotone"],DL=["fak","fa-kit","fakd","fa-kit-duotone"],bL={"Font Awesome Kit":{400:"fak",normal:"fak"},"Font Awesome Kit Duotone":{400:"fakd",normal:"fakd"}},wL={classic:{"fa-brands":"fab","fa-duotone":"fad","fa-light":"fal","fa-regular":"far","fa-solid":"fas","fa-thin":"fat"},duotone:{"fa-regular":"fadr","fa-light":"fadl","fa-thin":"fadt"},sharp:{"fa-solid":"fass","fa-regular":"fasr","fa-light":"fasl","fa-thin":"fast"},"sharp-duotone":{"fa-solid":"fasds","fa-regular":"fasdr","fa-light":"fasdl","fa-thin":"fasdt"}},xL={classic:["fas","far","fal","fat","fad"],duotone:["fadr","fadl","fadt"],sharp:["fass","fasr","fasl","fast"],"sharp-duotone":["fasds","fasdr","fasdl","fasdt"]},vo={classic:{fab:"fa-brands",fad:"fa-duotone",fal:"fa-light",far:"fa-regular",fas:"fa-solid",fat:"fa-thin"},duotone:{fadr:"fa-regular",fadl:"fa-light",fadt:"fa-thin"},sharp:{fass:"fa-solid",fasr:"fa-regular",fasl:"fa-light",fast:"fa-thin"},"sharp-duotone":{fasds:"fa-solid",fasdr:"fa-regular",fasdl:"fa-light",fasdt:"fa-thin"}},NL=["fa-solid","fa-regular","fa-light","fa-thin","fa-duotone","fa-brands"],zo=["fa","fas","far","fal","fat","fad","fadr","fadl","fadt","fab","fass","fasr","fasl","fast","fasds","fasdr","fasdl","fasdt",...zL,...NL],EL=["solid","regular","light","thin","duotone","brands"],S7=[1,2,3,4,5,6,7,8,9,10],IL=S7.concat([11,12,13,14,15,16,17,18,19,20]),SL=[...Object.keys(xL),...EL,"2xs","xs","sm","lg","xl","2xl","beat","border","fade","beat-fade","bounce","flip-both","flip-horizontal","flip-vertical","flip","fw","inverse","layers-counter","layers-text","layers","li","pull-left","pull-right","pulse","rotate-180","rotate-270","rotate-90","rotate-by","shake","spin-pulse","spin-reverse","spin","stack-1x","stack-2x","stack","ul",on.GROUP,on.SWAP_OPACITY,on.PRIMARY,on.SECONDARY].concat(S7.map(e=>"".concat(e,"x"))).concat(IL.map(e=>"w-".concat(e))),_L={"Font Awesome 5 Free":{900:"fas",400:"far"},"Font Awesome 5 Pro":{900:"fas",400:"far",normal:"far",300:"fal"},"Font Awesome 5 Brands":{400:"fab",normal:"fab"},"Font Awesome 5 Duotone":{900:"fad"}},L1="___FONT_AWESOME___",Do=16,_7="fa",T7="svg-inline--fa",ve="data-fa-i2svg",bo="data-fa-pseudo-element",TL="data-fa-pseudo-element-pending",Vo="data-prefix",jo="data-icon",n7="fontawesome-i2svg",AL="async",kL=["HTML","HEAD","STYLE","SCRIPT"],A7=(()=>{try{return!0}catch{return!1}})();function F4(e){return new Proxy(e,{get(n,t){return t in n?n[t]:n[f2]}})}var k7=m({},N7);k7[f2]=m(m(m(m({},{"fa-duotone":"duotone"}),N7[f2]),e7.kit),e7["kit-duotone"]);var FL=F4(k7),wo=m({},gL);wo[f2]=m(m(m(m({},{duotone:"fad"}),wo[f2]),t7.kit),t7["kit-duotone"]);var c7=F4(wo),xo=m({},vo);xo[f2]=m(m({},xo[f2]),vL.kit);var Bo=F4(xo),No=m({},wL);No[f2]=m(m({},No[f2]),LL.kit);var EF=F4(No),RL=lL,F7="fa-layers-text",OL=aL,PL=m({},pL),IF=F4(PL),VL=["class","data-prefix","data-icon","data-fa-transform","data-fa-mask"],go=fL,jL=[...CL,...SL],_4=V1.FontAwesomeConfig||{};function BL(e){var n=q.querySelector("script["+e+"]");if(n)return n.getAttribute(e)}function HL(e){return e===""?!0:e==="false"?!1:e==="true"?!0:e}q&&typeof q.querySelector=="function"&&[["data-family-prefix","familyPrefix"],["data-css-prefix","cssPrefix"],["data-family-default","familyDefault"],["data-style-default","styleDefault"],["data-replacement-class","replacementClass"],["data-auto-replace-svg","autoReplaceSvg"],["data-auto-add-css","autoAddCss"],["data-auto-a11y","autoA11y"],["data-search-pseudo-elements","searchPseudoElements"],["data-observe-mutations","observeMutations"],["data-mutate-approach","mutateApproach"],["data-keep-original-source","keepOriginalSource"],["data-measure-performance","measurePerformance"],["data-show-missing-icons","showMissingIcons"]].forEach(n=>{let[t,c]=n,s=HL(BL(t));s!=null&&(_4[c]=s)});var R7={styleDefault:"solid",familyDefault:f2,cssPrefix:_7,replacementClass:T7,autoReplaceSvg:!0,autoAddCss:!0,autoA11y:!0,searchPseudoElements:!1,observeMutations:!0,mutateApproach:"async",keepOriginalSource:!0,measurePerformance:!1,showMissingIcons:!0};_4.familyPrefix&&(_4.cssPrefix=_4.familyPrefix);var x3=m(m({},R7),_4);x3.autoReplaceSvg||(x3.observeMutations=!1);var b={};Object.keys(R7).forEach(e=>{Object.defineProperty(b,e,{enumerable:!0,set:function(n){x3[e]=n,T4.forEach(t=>t(b))},get:function(){return x3[e]}})});Object.defineProperty(b,"familyPrefix",{enumerable:!0,set:function(e){x3.cssPrefix=e,T4.forEach(n=>n(b))},get:function(){return x3.cssPrefix}});V1.FontAwesomeConfig=b;var T4=[];function UL(e){return T4.push(e),()=>{T4.splice(T4.indexOf(e),1)}}var P1=Do,t1={size:16,x:0,y:0,rotate:0,flipX:!1,flipY:!1};function $L(e){if(!e||!v1)return;let n=q.createElement("style");n.setAttribute("type","text/css"),n.innerHTML=e;let t=q.head.childNodes,c=null;for(let s=t.length-1;s>-1;s--){let o=t[s],r=(o.tagName||"").toUpperCase();["STYLE","LINK"].indexOf(r)>-1&&(c=o)}return q.head.insertBefore(n,c),e}var GL="0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";function A4(){let e=12,n="";for(;e-- >0;)n+=GL[Math.random()*62|0];return n}function N3(e){let n=[];for(let t=(e||[]).length>>>0;t--;)n[t]=e[t];return n}function Ho(e){return e.classList?N3(e.classList):(e.getAttribute("class")||"").split(" ").filter(n=>n)}function O7(e){return"".concat(e).replace(/&/g,"&amp;").replace(/"/g,"&quot;").replace(/'/g,"&#39;").replace(/</g,"&lt;").replace(/>/g,"&gt;")}function qL(e){return Object.keys(e||{}).reduce((n,t)=>n+"".concat(t,'="').concat(O7(e[t]),'" '),"").trim()}function dn(e){return Object.keys(e||{}).reduce((n,t)=>n+"".concat(t,": ").concat(e[t].trim(),";"),"")}function Uo(e){return e.size!==t1.size||e.x!==t1.x||e.y!==t1.y||e.rotate!==t1.rotate||e.flipX||e.flipY}function WL(e){let{transform:n,containerWidth:t,iconWidth:c}=e,s={transform:"translate(".concat(t/2," 256)")},o="translate(".concat(n.x*32,", ").concat(n.y*32,") "),r="scale(".concat(n.size/16*(n.flipX?-1:1),", ").concat(n.size/16*(n.flipY?-1:1),") "),i="rotate(".concat(n.rotate," 0 0)"),l={transform:"".concat(o," ").concat(r," ").concat(i)},a={transform:"translate(".concat(c/2*-1," -256)")};return{outer:s,inner:l,path:a}}function ZL(e){let{transform:n,width:t=Do,height:c=Do,startCentered:s=!1}=e,o="";return s&&x7?o+="translate(".concat(n.x/P1-t/2,"em, ").concat(n.y/P1-c/2,"em) "):s?o+="translate(calc(-50% + ".concat(n.x/P1,"em), calc(-50% + ").concat(n.y/P1,"em)) "):o+="translate(".concat(n.x/P1,"em, ").concat(n.y/P1,"em) "),o+="scale(".concat(n.size/P1*(n.flipX?-1:1),", ").concat(n.size/P1*(n.flipY?-1:1),") "),o+="rotate(".concat(n.rotate,"deg) "),o}var YL=`:root, :host {
9
+ --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free";
10
+ --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free";
11
+ --fa-font-light: normal 300 1em/1 "Font Awesome 6 Pro";
12
+ --fa-font-thin: normal 100 1em/1 "Font Awesome 6 Pro";
13
+ --fa-font-duotone: normal 900 1em/1 "Font Awesome 6 Duotone";
14
+ --fa-font-duotone-regular: normal 400 1em/1 "Font Awesome 6 Duotone";
15
+ --fa-font-duotone-light: normal 300 1em/1 "Font Awesome 6 Duotone";
16
+ --fa-font-duotone-thin: normal 100 1em/1 "Font Awesome 6 Duotone";
17
+ --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands";
18
+ --fa-font-sharp-solid: normal 900 1em/1 "Font Awesome 6 Sharp";
19
+ --fa-font-sharp-regular: normal 400 1em/1 "Font Awesome 6 Sharp";
20
+ --fa-font-sharp-light: normal 300 1em/1 "Font Awesome 6 Sharp";
21
+ --fa-font-sharp-thin: normal 100 1em/1 "Font Awesome 6 Sharp";
22
+ --fa-font-sharp-duotone-solid: normal 900 1em/1 "Font Awesome 6 Sharp Duotone";
23
+ --fa-font-sharp-duotone-regular: normal 400 1em/1 "Font Awesome 6 Sharp Duotone";
24
+ --fa-font-sharp-duotone-light: normal 300 1em/1 "Font Awesome 6 Sharp Duotone";
25
+ --fa-font-sharp-duotone-thin: normal 100 1em/1 "Font Awesome 6 Sharp Duotone";
26
+ }
27
+
28
+ svg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {
29
+ overflow: visible;
30
+ box-sizing: content-box;
31
+ }
32
+
33
+ .svg-inline--fa {
34
+ display: var(--fa-display, inline-block);
35
+ height: 1em;
36
+ overflow: visible;
37
+ vertical-align: -0.125em;
38
+ }
39
+ .svg-inline--fa.fa-2xs {
40
+ vertical-align: 0.1em;
41
+ }
42
+ .svg-inline--fa.fa-xs {
43
+ vertical-align: 0em;
44
+ }
45
+ .svg-inline--fa.fa-sm {
46
+ vertical-align: -0.0714285705em;
47
+ }
48
+ .svg-inline--fa.fa-lg {
49
+ vertical-align: -0.2em;
50
+ }
51
+ .svg-inline--fa.fa-xl {
52
+ vertical-align: -0.25em;
53
+ }
54
+ .svg-inline--fa.fa-2xl {
55
+ vertical-align: -0.3125em;
56
+ }
57
+ .svg-inline--fa.fa-pull-left {
58
+ margin-right: var(--fa-pull-margin, 0.3em);
59
+ width: auto;
60
+ }
61
+ .svg-inline--fa.fa-pull-right {
62
+ margin-left: var(--fa-pull-margin, 0.3em);
63
+ width: auto;
64
+ }
65
+ .svg-inline--fa.fa-li {
66
+ width: var(--fa-li-width, 2em);
67
+ top: 0.25em;
68
+ }
69
+ .svg-inline--fa.fa-fw {
70
+ width: var(--fa-fw-width, 1.25em);
71
+ }
72
+
73
+ .fa-layers svg.svg-inline--fa {
74
+ bottom: 0;
75
+ left: 0;
76
+ margin: auto;
77
+ position: absolute;
78
+ right: 0;
79
+ top: 0;
80
+ }
81
+
82
+ .fa-layers-counter, .fa-layers-text {
83
+ display: inline-block;
84
+ position: absolute;
85
+ text-align: center;
86
+ }
87
+
88
+ .fa-layers {
89
+ display: inline-block;
90
+ height: 1em;
91
+ position: relative;
92
+ text-align: center;
93
+ vertical-align: -0.125em;
94
+ width: 1em;
95
+ }
96
+ .fa-layers svg.svg-inline--fa {
97
+ transform-origin: center center;
98
+ }
99
+
100
+ .fa-layers-text {
101
+ left: 50%;
102
+ top: 50%;
103
+ transform: translate(-50%, -50%);
104
+ transform-origin: center center;
105
+ }
106
+
107
+ .fa-layers-counter {
108
+ background-color: var(--fa-counter-background-color, #ff253a);
109
+ border-radius: var(--fa-counter-border-radius, 1em);
110
+ box-sizing: border-box;
111
+ color: var(--fa-inverse, #fff);
112
+ line-height: var(--fa-counter-line-height, 1);
113
+ max-width: var(--fa-counter-max-width, 5em);
114
+ min-width: var(--fa-counter-min-width, 1.5em);
115
+ overflow: hidden;
116
+ padding: var(--fa-counter-padding, 0.25em 0.5em);
117
+ right: var(--fa-right, 0);
118
+ text-overflow: ellipsis;
119
+ top: var(--fa-top, 0);
120
+ transform: scale(var(--fa-counter-scale, 0.25));
121
+ transform-origin: top right;
122
+ }
123
+
124
+ .fa-layers-bottom-right {
125
+ bottom: var(--fa-bottom, 0);
126
+ right: var(--fa-right, 0);
127
+ top: auto;
128
+ transform: scale(var(--fa-layers-scale, 0.25));
129
+ transform-origin: bottom right;
130
+ }
131
+
132
+ .fa-layers-bottom-left {
133
+ bottom: var(--fa-bottom, 0);
134
+ left: var(--fa-left, 0);
135
+ right: auto;
136
+ top: auto;
137
+ transform: scale(var(--fa-layers-scale, 0.25));
138
+ transform-origin: bottom left;
139
+ }
140
+
141
+ .fa-layers-top-right {
142
+ top: var(--fa-top, 0);
143
+ right: var(--fa-right, 0);
144
+ transform: scale(var(--fa-layers-scale, 0.25));
145
+ transform-origin: top right;
146
+ }
147
+
148
+ .fa-layers-top-left {
149
+ left: var(--fa-left, 0);
150
+ right: auto;
151
+ top: var(--fa-top, 0);
152
+ transform: scale(var(--fa-layers-scale, 0.25));
153
+ transform-origin: top left;
154
+ }
155
+
156
+ .fa-1x {
157
+ font-size: 1em;
158
+ }
159
+
160
+ .fa-2x {
161
+ font-size: 2em;
162
+ }
163
+
164
+ .fa-3x {
165
+ font-size: 3em;
166
+ }
167
+
168
+ .fa-4x {
169
+ font-size: 4em;
170
+ }
171
+
172
+ .fa-5x {
173
+ font-size: 5em;
174
+ }
175
+
176
+ .fa-6x {
177
+ font-size: 6em;
178
+ }
179
+
180
+ .fa-7x {
181
+ font-size: 7em;
182
+ }
183
+
184
+ .fa-8x {
185
+ font-size: 8em;
186
+ }
187
+
188
+ .fa-9x {
189
+ font-size: 9em;
190
+ }
191
+
192
+ .fa-10x {
193
+ font-size: 10em;
194
+ }
195
+
196
+ .fa-2xs {
197
+ font-size: 0.625em;
198
+ line-height: 0.1em;
199
+ vertical-align: 0.225em;
200
+ }
201
+
202
+ .fa-xs {
203
+ font-size: 0.75em;
204
+ line-height: 0.0833333337em;
205
+ vertical-align: 0.125em;
206
+ }
207
+
208
+ .fa-sm {
209
+ font-size: 0.875em;
210
+ line-height: 0.0714285718em;
211
+ vertical-align: 0.0535714295em;
212
+ }
213
+
214
+ .fa-lg {
215
+ font-size: 1.25em;
216
+ line-height: 0.05em;
217
+ vertical-align: -0.075em;
218
+ }
219
+
220
+ .fa-xl {
221
+ font-size: 1.5em;
222
+ line-height: 0.0416666682em;
223
+ vertical-align: -0.125em;
224
+ }
225
+
226
+ .fa-2xl {
227
+ font-size: 2em;
228
+ line-height: 0.03125em;
229
+ vertical-align: -0.1875em;
230
+ }
231
+
232
+ .fa-fw {
233
+ text-align: center;
234
+ width: 1.25em;
235
+ }
236
+
237
+ .fa-ul {
238
+ list-style-type: none;
239
+ margin-left: var(--fa-li-margin, 2.5em);
240
+ padding-left: 0;
241
+ }
242
+ .fa-ul > li {
243
+ position: relative;
244
+ }
245
+
246
+ .fa-li {
247
+ left: calc(-1 * var(--fa-li-width, 2em));
248
+ position: absolute;
249
+ text-align: center;
250
+ width: var(--fa-li-width, 2em);
251
+ line-height: inherit;
252
+ }
253
+
254
+ .fa-border {
255
+ border-color: var(--fa-border-color, #eee);
256
+ border-radius: var(--fa-border-radius, 0.1em);
257
+ border-style: var(--fa-border-style, solid);
258
+ border-width: var(--fa-border-width, 0.08em);
259
+ padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);
260
+ }
261
+
262
+ .fa-pull-left {
263
+ float: left;
264
+ margin-right: var(--fa-pull-margin, 0.3em);
265
+ }
266
+
267
+ .fa-pull-right {
268
+ float: right;
269
+ margin-left: var(--fa-pull-margin, 0.3em);
270
+ }
271
+
272
+ .fa-beat {
273
+ animation-name: fa-beat;
274
+ animation-delay: var(--fa-animation-delay, 0s);
275
+ animation-direction: var(--fa-animation-direction, normal);
276
+ animation-duration: var(--fa-animation-duration, 1s);
277
+ animation-iteration-count: var(--fa-animation-iteration-count, infinite);
278
+ animation-timing-function: var(--fa-animation-timing, ease-in-out);
279
+ }
280
+
281
+ .fa-bounce {
282
+ animation-name: fa-bounce;
283
+ animation-delay: var(--fa-animation-delay, 0s);
284
+ animation-direction: var(--fa-animation-direction, normal);
285
+ animation-duration: var(--fa-animation-duration, 1s);
286
+ animation-iteration-count: var(--fa-animation-iteration-count, infinite);
287
+ animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));
288
+ }
289
+
290
+ .fa-fade {
291
+ animation-name: fa-fade;
292
+ animation-delay: var(--fa-animation-delay, 0s);
293
+ animation-direction: var(--fa-animation-direction, normal);
294
+ animation-duration: var(--fa-animation-duration, 1s);
295
+ animation-iteration-count: var(--fa-animation-iteration-count, infinite);
296
+ animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
297
+ }
298
+
299
+ .fa-beat-fade {
300
+ animation-name: fa-beat-fade;
301
+ animation-delay: var(--fa-animation-delay, 0s);
302
+ animation-direction: var(--fa-animation-direction, normal);
303
+ animation-duration: var(--fa-animation-duration, 1s);
304
+ animation-iteration-count: var(--fa-animation-iteration-count, infinite);
305
+ animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
306
+ }
307
+
308
+ .fa-flip {
309
+ animation-name: fa-flip;
310
+ animation-delay: var(--fa-animation-delay, 0s);
311
+ animation-direction: var(--fa-animation-direction, normal);
312
+ animation-duration: var(--fa-animation-duration, 1s);
313
+ animation-iteration-count: var(--fa-animation-iteration-count, infinite);
314
+ animation-timing-function: var(--fa-animation-timing, ease-in-out);
315
+ }
316
+
317
+ .fa-shake {
318
+ animation-name: fa-shake;
319
+ animation-delay: var(--fa-animation-delay, 0s);
320
+ animation-direction: var(--fa-animation-direction, normal);
321
+ animation-duration: var(--fa-animation-duration, 1s);
322
+ animation-iteration-count: var(--fa-animation-iteration-count, infinite);
323
+ animation-timing-function: var(--fa-animation-timing, linear);
324
+ }
325
+
326
+ .fa-spin {
327
+ animation-name: fa-spin;
328
+ animation-delay: var(--fa-animation-delay, 0s);
329
+ animation-direction: var(--fa-animation-direction, normal);
330
+ animation-duration: var(--fa-animation-duration, 2s);
331
+ animation-iteration-count: var(--fa-animation-iteration-count, infinite);
332
+ animation-timing-function: var(--fa-animation-timing, linear);
333
+ }
334
+
335
+ .fa-spin-reverse {
336
+ --fa-animation-direction: reverse;
337
+ }
338
+
339
+ .fa-pulse,
340
+ .fa-spin-pulse {
341
+ animation-name: fa-spin;
342
+ animation-direction: var(--fa-animation-direction, normal);
343
+ animation-duration: var(--fa-animation-duration, 1s);
344
+ animation-iteration-count: var(--fa-animation-iteration-count, infinite);
345
+ animation-timing-function: var(--fa-animation-timing, steps(8));
346
+ }
347
+
348
+ @media (prefers-reduced-motion: reduce) {
349
+ .fa-beat,
350
+ .fa-bounce,
351
+ .fa-fade,
352
+ .fa-beat-fade,
353
+ .fa-flip,
354
+ .fa-pulse,
355
+ .fa-shake,
356
+ .fa-spin,
357
+ .fa-spin-pulse {
358
+ animation-delay: -1ms;
359
+ animation-duration: 1ms;
360
+ animation-iteration-count: 1;
361
+ transition-delay: 0s;
362
+ transition-duration: 0s;
363
+ }
364
+ }
365
+ @keyframes fa-beat {
366
+ 0%, 90% {
367
+ transform: scale(1);
368
+ }
369
+ 45% {
370
+ transform: scale(var(--fa-beat-scale, 1.25));
371
+ }
372
+ }
373
+ @keyframes fa-bounce {
374
+ 0% {
375
+ transform: scale(1, 1) translateY(0);
376
+ }
377
+ 10% {
378
+ transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);
379
+ }
380
+ 30% {
381
+ transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));
382
+ }
383
+ 50% {
384
+ transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);
385
+ }
386
+ 57% {
387
+ transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));
388
+ }
389
+ 64% {
390
+ transform: scale(1, 1) translateY(0);
391
+ }
392
+ 100% {
393
+ transform: scale(1, 1) translateY(0);
394
+ }
395
+ }
396
+ @keyframes fa-fade {
397
+ 50% {
398
+ opacity: var(--fa-fade-opacity, 0.4);
399
+ }
400
+ }
401
+ @keyframes fa-beat-fade {
402
+ 0%, 100% {
403
+ opacity: var(--fa-beat-fade-opacity, 0.4);
404
+ transform: scale(1);
405
+ }
406
+ 50% {
407
+ opacity: 1;
408
+ transform: scale(var(--fa-beat-fade-scale, 1.125));
409
+ }
410
+ }
411
+ @keyframes fa-flip {
412
+ 50% {
413
+ transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
414
+ }
415
+ }
416
+ @keyframes fa-shake {
417
+ 0% {
418
+ transform: rotate(-15deg);
419
+ }
420
+ 4% {
421
+ transform: rotate(15deg);
422
+ }
423
+ 8%, 24% {
424
+ transform: rotate(-18deg);
425
+ }
426
+ 12%, 28% {
427
+ transform: rotate(18deg);
428
+ }
429
+ 16% {
430
+ transform: rotate(-22deg);
431
+ }
432
+ 20% {
433
+ transform: rotate(22deg);
434
+ }
435
+ 32% {
436
+ transform: rotate(-12deg);
437
+ }
438
+ 36% {
439
+ transform: rotate(12deg);
440
+ }
441
+ 40%, 100% {
442
+ transform: rotate(0deg);
443
+ }
444
+ }
445
+ @keyframes fa-spin {
446
+ 0% {
447
+ transform: rotate(0deg);
448
+ }
449
+ 100% {
450
+ transform: rotate(360deg);
451
+ }
452
+ }
453
+ .fa-rotate-90 {
454
+ transform: rotate(90deg);
455
+ }
456
+
457
+ .fa-rotate-180 {
458
+ transform: rotate(180deg);
459
+ }
460
+
461
+ .fa-rotate-270 {
462
+ transform: rotate(270deg);
463
+ }
464
+
465
+ .fa-flip-horizontal {
466
+ transform: scale(-1, 1);
467
+ }
468
+
469
+ .fa-flip-vertical {
470
+ transform: scale(1, -1);
471
+ }
472
+
473
+ .fa-flip-both,
474
+ .fa-flip-horizontal.fa-flip-vertical {
475
+ transform: scale(-1, -1);
476
+ }
477
+
478
+ .fa-rotate-by {
479
+ transform: rotate(var(--fa-rotate-angle, 0));
480
+ }
481
+
482
+ .fa-stack {
483
+ display: inline-block;
484
+ vertical-align: middle;
485
+ height: 2em;
486
+ position: relative;
487
+ width: 2.5em;
488
+ }
489
+
490
+ .fa-stack-1x,
491
+ .fa-stack-2x {
492
+ bottom: 0;
493
+ left: 0;
494
+ margin: auto;
495
+ position: absolute;
496
+ right: 0;
497
+ top: 0;
498
+ z-index: var(--fa-stack-z-index, auto);
499
+ }
500
+
501
+ .svg-inline--fa.fa-stack-1x {
502
+ height: 1em;
503
+ width: 1.25em;
504
+ }
505
+ .svg-inline--fa.fa-stack-2x {
506
+ height: 2em;
507
+ width: 2.5em;
508
+ }
509
+
510
+ .fa-inverse {
511
+ color: var(--fa-inverse, #fff);
512
+ }
513
+
514
+ .sr-only,
515
+ .fa-sr-only {
516
+ position: absolute;
517
+ width: 1px;
518
+ height: 1px;
519
+ padding: 0;
520
+ margin: -1px;
521
+ overflow: hidden;
522
+ clip: rect(0, 0, 0, 0);
523
+ white-space: nowrap;
524
+ border-width: 0;
525
+ }
526
+
527
+ .sr-only-focusable:not(:focus),
528
+ .fa-sr-only-focusable:not(:focus) {
529
+ position: absolute;
530
+ width: 1px;
531
+ height: 1px;
532
+ padding: 0;
533
+ margin: -1px;
534
+ overflow: hidden;
535
+ clip: rect(0, 0, 0, 0);
536
+ white-space: nowrap;
537
+ border-width: 0;
538
+ }
539
+
540
+ .svg-inline--fa .fa-primary {
541
+ fill: var(--fa-primary-color, currentColor);
542
+ opacity: var(--fa-primary-opacity, 1);
543
+ }
544
+
545
+ .svg-inline--fa .fa-secondary {
546
+ fill: var(--fa-secondary-color, currentColor);
547
+ opacity: var(--fa-secondary-opacity, 0.4);
548
+ }
549
+
550
+ .svg-inline--fa.fa-swap-opacity .fa-primary {
551
+ opacity: var(--fa-secondary-opacity, 0.4);
552
+ }
553
+
554
+ .svg-inline--fa.fa-swap-opacity .fa-secondary {
555
+ opacity: var(--fa-primary-opacity, 1);
556
+ }
557
+
558
+ .svg-inline--fa mask .fa-primary,
559
+ .svg-inline--fa mask .fa-secondary {
560
+ fill: black;
561
+ }`;function P7(){let e=_7,n=T7,t=b.cssPrefix,c=b.replacementClass,s=YL;if(t!==e||c!==n){let o=new RegExp("\\.".concat(e,"\\-"),"g"),r=new RegExp("\\--".concat(e,"\\-"),"g"),i=new RegExp("\\.".concat(n),"g");s=s.replace(o,".".concat(t,"-")).replace(r,"--".concat(t,"-")).replace(i,".".concat(c))}return s}var s7=!1;function Mo(){b.autoAddCss&&!s7&&($L(P7()),s7=!0)}var QL={mixout(){return{dom:{css:P7,insertCss:Mo}}},hooks(){return{beforeDOMElementCreation(){Mo()},beforeI2svg(){Mo()}}}},y1=V1||{};y1[L1]||(y1[L1]={});y1[L1].styles||(y1[L1].styles={});y1[L1].hooks||(y1[L1].hooks={});y1[L1].shims||(y1[L1].shims=[]);var n1=y1[L1],V7=[],j7=function(){q.removeEventListener("DOMContentLoaded",j7),an=1,V7.map(e=>e())},an=!1;v1&&(an=(q.documentElement.doScroll?/^loaded|^c/:/^loaded|^i|^c/).test(q.readyState),an||q.addEventListener("DOMContentLoaded",j7));function XL(e){v1&&(an?setTimeout(e,0):V7.push(e))}function R4(e){let{tag:n,attributes:t={},children:c=[]}=e;return typeof e=="string"?O7(e):"<".concat(n," ").concat(qL(t),">").concat(c.map(R4).join(""),"</").concat(n,">")}function o7(e,n,t){if(e&&e[n]&&e[n][t])return{prefix:n,iconName:t,icon:e[n][t]}}var KL=function(n,t){return function(c,s,o,r){return n.call(t,c,s,o,r)}},Co=function(n,t,c,s){var o=Object.keys(n),r=o.length,i=s!==void 0?KL(t,s):t,l,a,f;for(c===void 0?(l=1,f=n[o[0]]):(l=0,f=c);l<r;l++)a=o[l],f=i(f,n[a],a,n);return f};function JL(e){let n=[],t=0,c=e.length;for(;t<c;){let s=e.charCodeAt(t++);if(s>=55296&&s<=56319&&t<c){let o=e.charCodeAt(t++);(o&64512)==56320?n.push(((s&1023)<<10)+(o&1023)+65536):(n.push(s),t--)}else n.push(s)}return n}function Eo(e){let n=JL(e);return n.length===1?n[0].toString(16):null}function ey(e,n){let t=e.length,c=e.charCodeAt(n),s;return c>=55296&&c<=56319&&t>n+1&&(s=e.charCodeAt(n+1),s>=56320&&s<=57343)?(c-55296)*1024+s-56320+65536:c}function r7(e){return Object.keys(e).reduce((n,t)=>{let c=e[t];return!!c.icon?n[c.iconName]=c.icon:n[t]=c,n},{})}function Io(e,n){let t=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},{skipHooks:c=!1}=t,s=r7(n);typeof n1.hooks.addPack=="function"&&!c?n1.hooks.addPack(e,r7(n)):n1.styles[e]=m(m({},n1.styles[e]||{}),s),e==="fas"&&Io("fa",n)}var{styles:k4,shims:ty}=n1,B7=Object.keys(Bo),ny=B7.reduce((e,n)=>(e[n]=Object.keys(Bo[n]),e),{}),$o=null,H7={},U7={},$7={},G7={},q7={};function cy(e){return~jL.indexOf(e)}function sy(e,n){let t=n.split("-"),c=t[0],s=t.slice(1).join("-");return c===e&&s!==""&&!cy(s)?s:null}var W7=()=>{let e=c=>Co(k4,(s,o,r)=>(s[r]=Co(o,c,{}),s),{});H7=e((c,s,o)=>(s[3]&&(c[s[3]]=o),s[2]&&s[2].filter(i=>typeof i=="number").forEach(i=>{c[i.toString(16)]=o}),c)),U7=e((c,s,o)=>(c[o]=o,s[2]&&s[2].filter(i=>typeof i=="string").forEach(i=>{c[i]=o}),c)),q7=e((c,s,o)=>{let r=s[2];return c[o]=o,r.forEach(i=>{c[i]=o}),c});let n="far"in k4||b.autoFetchSvg,t=Co(ty,(c,s)=>{let o=s[0],r=s[1],i=s[2];return r==="far"&&!n&&(r="fas"),typeof o=="string"&&(c.names[o]={prefix:r,iconName:i}),typeof o=="number"&&(c.unicodes[o.toString(16)]={prefix:r,iconName:i}),c},{names:{},unicodes:{}});$7=t.names,G7=t.unicodes,$o=pn(b.styleDefault,{family:b.familyDefault})};UL(e=>{$o=pn(e.styleDefault,{family:b.familyDefault})});W7();function Go(e,n){return(H7[e]||{})[n]}function oy(e,n){return(U7[e]||{})[n]}function ye(e,n){return(q7[e]||{})[n]}function Z7(e){return $7[e]||{prefix:null,iconName:null}}function ry(e){let n=G7[e],t=Go("fas",e);return n||(t?{prefix:"fas",iconName:t}:null)||{prefix:null,iconName:null}}function j1(){return $o}var Y7=()=>({prefix:null,iconName:null,rest:[]});function iy(e){let n=f2,t=B7.reduce((c,s)=>(c[s]="".concat(b.cssPrefix,"-").concat(s),c),{});return I7.forEach(c=>{(e.includes(t[c])||e.some(s=>ny[c].includes(s)))&&(n=c)}),n}function pn(e){let n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},{family:t=f2}=n,c=FL[t][e];if(t===un&&!e)return"fad";let s=c7[t][e]||c7[t][c],o=e in n1.styles?e:null;return s||o||null}function ly(e){let n=[],t=null;return e.forEach(c=>{let s=sy(b.cssPrefix,c);s?t=s:c&&n.push(c)}),{iconName:t,rest:n}}function i7(e){return e.sort().filter((n,t,c)=>c.indexOf(n)===t)}function hn(e){let n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},{skipLookups:t=!1}=n,c=null,s=zo.concat(DL),o=i7(e.filter(u=>s.includes(u))),r=i7(e.filter(u=>!zo.includes(u))),i=o.filter(u=>(c=u,!E7.includes(u))),[l=null]=i,a=iy(o),f=m(m({},ly(r)),{},{prefix:pn(l,{family:a})});return m(m(m({},f),dy({values:e,family:a,styles:k4,config:b,canonical:f,givenPrefix:c})),ay(t,c,f))}function ay(e,n,t){let{prefix:c,iconName:s}=t;if(e||!c||!s)return{prefix:c,iconName:s};let o=n==="fa"?Z7(s):{},r=ye(c,s);return s=o.iconName||r||s,c=o.prefix||c,c==="far"&&!k4.far&&k4.fas&&!b.autoFetchSvg&&(c="fas"),{prefix:c,iconName:s}}var fy=I7.filter(e=>e!==f2||e!==un),uy=Object.keys(vo).filter(e=>e!==f2).map(e=>Object.keys(vo[e])).flat();function dy(e){let{values:n,family:t,canonical:c,givenPrefix:s="",styles:o={},config:r={}}=e,i=t===un,l=n.includes("fa-duotone")||n.includes("fad"),a=r.familyDefault==="duotone",f=c.prefix==="fad"||c.prefix==="fa-duotone";if(!i&&(l||a||f)&&(c.prefix="fad"),(n.includes("fa-brands")||n.includes("fab"))&&(c.prefix="fab"),!c.prefix&&fy.includes(t)&&(Object.keys(o).find(p=>uy.includes(p))||r.autoFetchSvg)){let p=mL.get(t).defaultShortPrefixId;c.prefix=p,c.iconName=ye(c.prefix,c.iconName)||c.iconName}return(c.prefix==="fa"||s==="fa")&&(c.prefix=j1()||"fas"),c}var So=class{constructor(){this.definitions={}}add(){for(var n=arguments.length,t=new Array(n),c=0;c<n;c++)t[c]=arguments[c];let s=t.reduce(this._pullDefinitions,{});Object.keys(s).forEach(o=>{this.definitions[o]=m(m({},this.definitions[o]||{}),s[o]),Io(o,s[o]);let r=Bo[f2][o];r&&Io(r,s[o]),W7()})}reset(){this.definitions={}}_pullDefinitions(n,t){let c=t.prefix&&t.iconName&&t.icon?{0:t}:t;return Object.keys(c).map(s=>{let{prefix:o,iconName:r,icon:i}=c[s],l=i[2];n[o]||(n[o]={}),l.length>0&&l.forEach(a=>{typeof a=="string"&&(n[o][a]=i)}),n[o][r]=i}),n}},l7=[],b3={},w3={},py=Object.keys(w3);function hy(e,n){let{mixoutsTo:t}=n;return l7=e,b3={},Object.keys(w3).forEach(c=>{py.indexOf(c)===-1&&delete w3[c]}),l7.forEach(c=>{let s=c.mixout?c.mixout():{};if(Object.keys(s).forEach(o=>{typeof s[o]=="function"&&(t[o]=s[o]),typeof s[o]=="object"&&Object.keys(s[o]).forEach(r=>{t[o]||(t[o]={}),t[o][r]=s[o][r]})}),c.hooks){let o=c.hooks();Object.keys(o).forEach(r=>{b3[r]||(b3[r]=[]),b3[r].push(o[r])})}c.provides&&c.provides(w3)}),t}function _o(e,n){for(var t=arguments.length,c=new Array(t>2?t-2:0),s=2;s<t;s++)c[s-2]=arguments[s];return(b3[e]||[]).forEach(r=>{n=r.apply(null,[n,...c])}),n}function ze(e){for(var n=arguments.length,t=new Array(n>1?n-1:0),c=1;c<n;c++)t[c-1]=arguments[c];(b3[e]||[]).forEach(o=>{o.apply(null,t)})}function B1(){let e=arguments[0],n=Array.prototype.slice.call(arguments,1);return w3[e]?w3[e].apply(null,n):void 0}function To(e){e.prefix==="fa"&&(e.prefix="fas");let{iconName:n}=e,t=e.prefix||j1();if(n)return n=ye(t,n)||n,o7(Q7.definitions,t,n)||o7(n1.styles,t,n)}var Q7=new So,my=()=>{b.autoReplaceSvg=!1,b.observeMutations=!1,ze("noAuto")},gy={i2svg:function(){let e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};return v1?(ze("beforeI2svg",e),B1("pseudoElements2svg",e),B1("i2svg",e)):Promise.reject(new Error("Operation requires a DOM of some kind."))},watch:function(){let e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},{autoReplaceSvgRoot:n}=e;b.autoReplaceSvg===!1&&(b.autoReplaceSvg=!0),b.observeMutations=!0,XL(()=>{Cy({autoReplaceSvgRoot:n}),ze("watch",e)})}},My={icon:e=>{if(e===null)return null;if(typeof e=="object"&&e.prefix&&e.iconName)return{prefix:e.prefix,iconName:ye(e.prefix,e.iconName)||e.iconName};if(Array.isArray(e)&&e.length===2){let n=e[1].indexOf("fa-")===0?e[1].slice(3):e[1],t=pn(e[0]);return{prefix:t,iconName:ye(t,n)||n}}if(typeof e=="string"&&(e.indexOf("".concat(b.cssPrefix,"-"))>-1||e.match(RL))){let n=hn(e.split(" "),{skipLookups:!0});return{prefix:n.prefix||j1(),iconName:ye(n.prefix,n.iconName)||n.iconName}}if(typeof e=="string"){let n=j1();return{prefix:n,iconName:ye(n,e)||e}}}},w2={noAuto:my,config:b,dom:gy,parse:My,library:Q7,findIconDefinition:To,toHtml:R4},Cy=function(){let e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},{autoReplaceSvgRoot:n=q}=e;(Object.keys(n1.styles).length>0||b.autoFetchSvg)&&v1&&b.autoReplaceSvg&&w2.dom.i2svg({node:n})};function mn(e,n){return Object.defineProperty(e,"abstract",{get:n}),Object.defineProperty(e,"html",{get:function(){return e.abstract.map(t=>R4(t))}}),Object.defineProperty(e,"node",{get:function(){if(!v1)return;let t=q.createElement("div");return t.innerHTML=e.html,t.children}}),e}function Ly(e){let{children:n,main:t,mask:c,attributes:s,styles:o,transform:r}=e;if(Uo(r)&&t.found&&!c.found){let{width:i,height:l}=t,a={x:i/l/2,y:.5};s.style=dn(m(m({},o),{},{"transform-origin":"".concat(a.x+r.x/16,"em ").concat(a.y+r.y/16,"em")}))}return[{tag:"svg",attributes:s,children:n}]}function yy(e){let{prefix:n,iconName:t,children:c,attributes:s,symbol:o}=e,r=o===!0?"".concat(n,"-").concat(b.cssPrefix,"-").concat(t):o;return[{tag:"svg",attributes:{style:"display: none;"},children:[{tag:"symbol",attributes:m(m({},s),{},{id:r}),children:c}]}]}function qo(e){let{icons:{main:n,mask:t},prefix:c,iconName:s,transform:o,symbol:r,title:i,maskId:l,titleId:a,extra:f,watchable:u=!1}=e,{width:p,height:d}=t.found?t:n,h=yL.includes(c),g=[b.replacementClass,s?"".concat(b.cssPrefix,"-").concat(s):""].filter(z1=>f.classes.indexOf(z1)===-1).filter(z1=>z1!==""||!!z1).concat(f.classes).join(" "),z={children:[],attributes:m(m({},f.attributes),{},{"data-prefix":c,"data-icon":s,class:g,role:f.attributes.role||"img",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 ".concat(p," ").concat(d)})},I=h&&!~f.classes.indexOf("fa-fw")?{width:"".concat(p/d*16*.0625,"em")}:{};u&&(z.attributes[ve]=""),i&&(z.children.push({tag:"title",attributes:{id:z.attributes["aria-labelledby"]||"title-".concat(a||A4())},children:[i]}),delete z.attributes.title);let j=m(m({},z),{},{prefix:c,iconName:s,main:n,mask:t,maskId:l,transform:o,symbol:r,styles:m(m({},I),f.styles)}),{children:U,attributes:G2}=t.found&&n.found?B1("generateAbstractMask",j)||{children:[],attributes:{}}:B1("generateAbstractIcon",j)||{children:[],attributes:{}};return j.children=U,j.attributes=G2,r?yy(j):Ly(j)}function a7(e){let{content:n,width:t,height:c,transform:s,title:o,extra:r,watchable:i=!1}=e,l=m(m(m({},r.attributes),o?{title:o}:{}),{},{class:r.classes.join(" ")});i&&(l[ve]="");let a=m({},r.styles);Uo(s)&&(a.transform=ZL({transform:s,startCentered:!0,width:t,height:c}),a["-webkit-transform"]=a.transform);let f=dn(a);f.length>0&&(l.style=f);let u=[];return u.push({tag:"span",attributes:l,children:[n]}),o&&u.push({tag:"span",attributes:{class:"sr-only"},children:[o]}),u}function vy(e){let{content:n,title:t,extra:c}=e,s=m(m(m({},c.attributes),t?{title:t}:{}),{},{class:c.classes.join(" ")}),o=dn(c.styles);o.length>0&&(s.style=o);let r=[];return r.push({tag:"span",attributes:s,children:[n]}),t&&r.push({tag:"span",attributes:{class:"sr-only"},children:[t]}),r}var{styles:Lo}=n1;function Ao(e){let n=e[0],t=e[1],[c]=e.slice(4),s=null;return Array.isArray(c)?s={tag:"g",attributes:{class:"".concat(b.cssPrefix,"-").concat(go.GROUP)},children:[{tag:"path",attributes:{class:"".concat(b.cssPrefix,"-").concat(go.SECONDARY),fill:"currentColor",d:c[0]}},{tag:"path",attributes:{class:"".concat(b.cssPrefix,"-").concat(go.PRIMARY),fill:"currentColor",d:c[1]}}]}:s={tag:"path",attributes:{fill:"currentColor",d:c}},{found:!0,width:n,height:t,icon:s}}var zy={found:!1,width:512,height:512};function Dy(e,n){!A7&&!b.showMissingIcons&&e&&console.error('Icon with name "'.concat(e,'" and prefix "').concat(n,'" is missing.'))}function ko(e,n){let t=n;return n==="fa"&&b.styleDefault!==null&&(n=j1()),new Promise((c,s)=>{if(t==="fa"){let o=Z7(e)||{};e=o.iconName||e,n=o.prefix||n}if(e&&n&&Lo[n]&&Lo[n][e]){let o=Lo[n][e];return c(Ao(o))}Dy(e,n),c(m(m({},zy),{},{icon:b.showMissingIcons&&e?B1("missingIconAbstract")||{}:{}}))})}var f7=()=>{},Fo=b.measurePerformance&&sn&&sn.mark&&sn.measure?sn:{mark:f7,measure:f7},S4='FA "6.7.2"',by=e=>(Fo.mark("".concat(S4," ").concat(e," begins")),()=>X7(e)),X7=e=>{Fo.mark("".concat(S4," ").concat(e," ends")),Fo.measure("".concat(S4," ").concat(e),"".concat(S4," ").concat(e," begins"),"".concat(S4," ").concat(e," ends"))},Wo={begin:by,end:X7},rn=()=>{};function u7(e){return typeof(e.getAttribute?e.getAttribute(ve):null)=="string"}function wy(e){let n=e.getAttribute?e.getAttribute(Vo):null,t=e.getAttribute?e.getAttribute(jo):null;return n&&t}function xy(e){return e&&e.classList&&e.classList.contains&&e.classList.contains(b.replacementClass)}function Ny(){return b.autoReplaceSvg===!0?ln.replace:ln[b.autoReplaceSvg]||ln.replace}function Ey(e){return q.createElementNS("http://www.w3.org/2000/svg",e)}function Iy(e){return q.createElement(e)}function K7(e){let n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},{ceFn:t=e.tag==="svg"?Ey:Iy}=n;if(typeof e=="string")return q.createTextNode(e);let c=t(e.tag);return Object.keys(e.attributes||[]).forEach(function(o){c.setAttribute(o,e.attributes[o])}),(e.children||[]).forEach(function(o){c.appendChild(K7(o,{ceFn:t}))}),c}function Sy(e){let n=" ".concat(e.outerHTML," ");return n="".concat(n,"Font Awesome fontawesome.com "),n}var ln={replace:function(e){let n=e[0];if(n.parentNode)if(e[1].forEach(t=>{n.parentNode.insertBefore(K7(t),n)}),n.getAttribute(ve)===null&&b.keepOriginalSource){let t=q.createComment(Sy(n));n.parentNode.replaceChild(t,n)}else n.remove()},nest:function(e){let n=e[0],t=e[1];if(~Ho(n).indexOf(b.replacementClass))return ln.replace(e);let c=new RegExp("".concat(b.cssPrefix,"-.*"));if(delete t[0].attributes.id,t[0].attributes.class){let o=t[0].attributes.class.split(" ").reduce((r,i)=>(i===b.replacementClass||i.match(c)?r.toSvg.push(i):r.toNode.push(i),r),{toNode:[],toSvg:[]});t[0].attributes.class=o.toSvg.join(" "),o.toNode.length===0?n.removeAttribute("class"):n.setAttribute("class",o.toNode.join(" "))}let s=t.map(o=>R4(o)).join(`
562
+ `);n.setAttribute(ve,""),n.innerHTML=s}};function d7(e){e()}function J7(e,n){let t=typeof n=="function"?n:rn;if(e.length===0)t();else{let c=d7;b.mutateApproach===AL&&(c=V1.requestAnimationFrame||d7),c(()=>{let s=Ny(),o=Wo.begin("mutate");e.map(s),o(),t()})}}var Zo=!1;function e9(){Zo=!0}function Ro(){Zo=!1}var fn=null;function p7(e){if(!J5||!b.observeMutations)return;let{treeCallback:n=rn,nodeCallback:t=rn,pseudoElementsCallback:c=rn,observeMutationsRoot:s=q}=e;fn=new J5(o=>{if(Zo)return;let r=j1();N3(o).forEach(i=>{if(i.type==="childList"&&i.addedNodes.length>0&&!u7(i.addedNodes[0])&&(b.searchPseudoElements&&c(i.target),n(i.target)),i.type==="attributes"&&i.target.parentNode&&b.searchPseudoElements&&c(i.target.parentNode),i.type==="attributes"&&u7(i.target)&&~VL.indexOf(i.attributeName))if(i.attributeName==="class"&&wy(i.target)){let{prefix:l,iconName:a}=hn(Ho(i.target));i.target.setAttribute(Vo,l||r),a&&i.target.setAttribute(jo,a)}else xy(i.target)&&t(i.target)})}),v1&&fn.observe(s,{childList:!0,attributes:!0,characterData:!0,subtree:!0})}function _y(){fn&&fn.disconnect()}function Ty(e){let n=e.getAttribute("style"),t=[];return n&&(t=n.split(";").reduce((c,s)=>{let o=s.split(":"),r=o[0],i=o.slice(1);return r&&i.length>0&&(c[r]=i.join(":").trim()),c},{})),t}function Ay(e){let n=e.getAttribute("data-prefix"),t=e.getAttribute("data-icon"),c=e.innerText!==void 0?e.innerText.trim():"",s=hn(Ho(e));return s.prefix||(s.prefix=j1()),n&&t&&(s.prefix=n,s.iconName=t),s.iconName&&s.prefix||(s.prefix&&c.length>0&&(s.iconName=oy(s.prefix,e.innerText)||Go(s.prefix,Eo(e.innerText))),!s.iconName&&b.autoFetchSvg&&e.firstChild&&e.firstChild.nodeType===Node.TEXT_NODE&&(s.iconName=e.firstChild.data)),s}function ky(e){let n=N3(e.attributes).reduce((s,o)=>(s.name!=="class"&&s.name!=="style"&&(s[o.name]=o.value),s),{}),t=e.getAttribute("title"),c=e.getAttribute("data-fa-title-id");return b.autoA11y&&(t?n["aria-labelledby"]="".concat(b.replacementClass,"-title-").concat(c||A4()):(n["aria-hidden"]="true",n.focusable="false")),n}function Fy(){return{iconName:null,title:null,titleId:null,prefix:null,transform:t1,symbol:!1,mask:{iconName:null,prefix:null,rest:[]},maskId:null,extra:{classes:[],styles:{},attributes:{}}}}function h7(e){let n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{styleParser:!0},{iconName:t,prefix:c,rest:s}=Ay(e),o=ky(e),r=_o("parseNodeAttributes",{},e),i=n.styleParser?Ty(e):[];return m({iconName:t,title:e.getAttribute("title"),titleId:e.getAttribute("data-fa-title-id"),prefix:c,transform:t1,mask:{iconName:null,prefix:null,rest:[]},maskId:null,symbol:!1,extra:{classes:s,styles:i,attributes:o}},r)}var{styles:Ry}=n1;function t9(e){let n=b.autoReplaceSvg==="nest"?h7(e,{styleParser:!1}):h7(e);return~n.extra.classes.indexOf(F7)?B1("generateLayersText",e,n):B1("generateSvgReplacementMutation",e,n)}function Oy(){return[...ML,...zo]}function m7(e){let n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:null;if(!v1)return Promise.resolve();let t=q.documentElement.classList,c=f=>t.add("".concat(n7,"-").concat(f)),s=f=>t.remove("".concat(n7,"-").concat(f)),o=b.autoFetchSvg?Oy():E7.concat(Object.keys(Ry));o.includes("fa")||o.push("fa");let r=[".".concat(F7,":not([").concat(ve,"])")].concat(o.map(f=>".".concat(f,":not([").concat(ve,"])"))).join(", ");if(r.length===0)return Promise.resolve();let i=[];try{i=N3(e.querySelectorAll(r))}catch{}if(i.length>0)c("pending"),s("complete");else return Promise.resolve();let l=Wo.begin("onTree"),a=i.reduce((f,u)=>{try{let p=t9(u);p&&f.push(p)}catch(p){A7||p.name==="MissingIcon"&&console.error(p)}return f},[]);return new Promise((f,u)=>{Promise.all(a).then(p=>{J7(p,()=>{c("active"),c("complete"),s("pending"),typeof n=="function"&&n(),l(),f()})}).catch(p=>{l(),u(p)})})}function Py(e){let n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:null;t9(e).then(t=>{t&&J7([t],n)})}function Vy(e){return function(n){let t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},c=(n||{}).icon?n:To(n||{}),{mask:s}=t;return s&&(s=(s||{}).icon?s:To(s||{})),e(c,m(m({},t),{},{mask:s}))}}var jy=function(e){let n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},{transform:t=t1,symbol:c=!1,mask:s=null,maskId:o=null,title:r=null,titleId:i=null,classes:l=[],attributes:a={},styles:f={}}=n;if(!e)return;let{prefix:u,iconName:p,icon:d}=e;return mn(m({type:"icon"},e),()=>(ze("beforeDOMElementCreation",{iconDefinition:e,params:n}),b.autoA11y&&(r?a["aria-labelledby"]="".concat(b.replacementClass,"-title-").concat(i||A4()):(a["aria-hidden"]="true",a.focusable="false")),qo({icons:{main:Ao(d),mask:s?Ao(s.icon):{found:!1,width:null,height:null,icon:{}}},prefix:u,iconName:p,transform:m(m({},t1),t),symbol:c,title:r,maskId:o,titleId:i,extra:{attributes:a,styles:f,classes:l}})))},By={mixout(){return{icon:Vy(jy)}},hooks(){return{mutationObserverCallbacks(e){return e.treeCallback=m7,e.nodeCallback=Py,e}}},provides(e){e.i2svg=function(n){let{node:t=q,callback:c=()=>{}}=n;return m7(t,c)},e.generateSvgReplacementMutation=function(n,t){let{iconName:c,title:s,titleId:o,prefix:r,transform:i,symbol:l,mask:a,maskId:f,extra:u}=t;return new Promise((p,d)=>{Promise.all([ko(c,r),a.iconName?ko(a.iconName,a.prefix):Promise.resolve({found:!1,width:512,height:512,icon:{}})]).then(h=>{let[g,z]=h;p([n,qo({icons:{main:g,mask:z},prefix:r,iconName:c,transform:i,symbol:l,maskId:f,title:s,titleId:o,extra:u,watchable:!0})])}).catch(d)})},e.generateAbstractIcon=function(n){let{children:t,attributes:c,main:s,transform:o,styles:r}=n,i=dn(r);i.length>0&&(c.style=i);let l;return Uo(o)&&(l=B1("generateAbstractTransformGrouping",{main:s,transform:o,containerWidth:s.width,iconWidth:s.width})),t.push(l||s.icon),{children:t,attributes:c}}}},Hy={mixout(){return{layer(e){let n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},{classes:t=[]}=n;return mn({type:"layer"},()=>{ze("beforeDOMElementCreation",{assembler:e,params:n});let c=[];return e(s=>{Array.isArray(s)?s.map(o=>{c=c.concat(o.abstract)}):c=c.concat(s.abstract)}),[{tag:"span",attributes:{class:["".concat(b.cssPrefix,"-layers"),...t].join(" ")},children:c}]})}}}},Uy={mixout(){return{counter(e){let n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},{title:t=null,classes:c=[],attributes:s={},styles:o={}}=n;return mn({type:"counter",content:e},()=>(ze("beforeDOMElementCreation",{content:e,params:n}),vy({content:e.toString(),title:t,extra:{attributes:s,styles:o,classes:["".concat(b.cssPrefix,"-layers-counter"),...c]}})))}}}},$y={mixout(){return{text(e){let n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},{transform:t=t1,title:c=null,classes:s=[],attributes:o={},styles:r={}}=n;return mn({type:"text",content:e},()=>(ze("beforeDOMElementCreation",{content:e,params:n}),a7({content:e,transform:m(m({},t1),t),title:c,extra:{attributes:o,styles:r,classes:["".concat(b.cssPrefix,"-layers-text"),...s]}})))}}},provides(e){e.generateLayersText=function(n,t){let{title:c,transform:s,extra:o}=t,r=null,i=null;if(x7){let l=parseInt(getComputedStyle(n).fontSize,10),a=n.getBoundingClientRect();r=a.width/l,i=a.height/l}return b.autoA11y&&!c&&(o.attributes["aria-hidden"]="true"),Promise.resolve([n,a7({content:n.innerHTML,width:r,height:i,transform:s,title:c,extra:o,watchable:!0})])}}},Gy=new RegExp('"',"ug"),g7=[1105920,1112319],M7=m(m(m(m({},{FontAwesome:{normal:"fas",400:"fas"}}),hL),_L),bL),Oo=Object.keys(M7).reduce((e,n)=>(e[n.toLowerCase()]=M7[n],e),{}),qy=Object.keys(Oo).reduce((e,n)=>{let t=Oo[n];return e[n]=t[900]||[...Object.entries(t)][0][1],e},{});function Wy(e){let n=e.replace(Gy,""),t=ey(n,0),c=t>=g7[0]&&t<=g7[1],s=n.length===2?n[0]===n[1]:!1;return{value:Eo(s?n[0]:n),isSecondary:c||s}}function Zy(e,n){let t=e.replace(/^['"]|['"]$/g,"").toLowerCase(),c=parseInt(n),s=isNaN(c)?"normal":c;return(Oo[t]||{})[s]||qy[t]}function C7(e,n){let t="".concat(TL).concat(n.replace(":","-"));return new Promise((c,s)=>{if(e.getAttribute(t)!==null)return c();let r=N3(e.children).filter(p=>p.getAttribute(bo)===n)[0],i=V1.getComputedStyle(e,n),l=i.getPropertyValue("font-family"),a=l.match(OL),f=i.getPropertyValue("font-weight"),u=i.getPropertyValue("content");if(r&&!a)return e.removeChild(r),c();if(a&&u!=="none"&&u!==""){let p=i.getPropertyValue("content"),d=Zy(l,f),{value:h,isSecondary:g}=Wy(p),z=a[0].startsWith("FontAwesome"),I=Go(d,h),j=I;if(z){let U=ry(h);U.iconName&&U.prefix&&(I=U.iconName,d=U.prefix)}if(I&&!g&&(!r||r.getAttribute(Vo)!==d||r.getAttribute(jo)!==j)){e.setAttribute(t,j),r&&e.removeChild(r);let U=Fy(),{extra:G2}=U;G2.attributes[bo]=n,ko(I,d).then(z1=>{let gn=qo(m(m({},U),{},{icons:{main:z1,mask:Y7()},prefix:d,iconName:j,extra:G2,watchable:!0})),Mn=q.createElementNS("http://www.w3.org/2000/svg","svg");n==="::before"?e.insertBefore(Mn,e.firstChild):e.appendChild(Mn),Mn.outerHTML=gn.map(l9=>R4(l9)).join(`
563
+ `),e.removeAttribute(t),c()}).catch(s)}else c()}else c()})}function Yy(e){return Promise.all([C7(e,"::before"),C7(e,"::after")])}function Qy(e){return e.parentNode!==document.head&&!~kL.indexOf(e.tagName.toUpperCase())&&!e.getAttribute(bo)&&(!e.parentNode||e.parentNode.tagName!=="svg")}function L7(e){if(v1)return new Promise((n,t)=>{let c=N3(e.querySelectorAll("*")).filter(Qy).map(Yy),s=Wo.begin("searchPseudoElements");e9(),Promise.all(c).then(()=>{s(),Ro(),n()}).catch(()=>{s(),Ro(),t()})})}var Xy={hooks(){return{mutationObserverCallbacks(e){return e.pseudoElementsCallback=L7,e}}},provides(e){e.pseudoElements2svg=function(n){let{node:t=q}=n;b.searchPseudoElements&&L7(t)}}},y7=!1,Ky={mixout(){return{dom:{unwatch(){e9(),y7=!0}}}},hooks(){return{bootstrap(){p7(_o("mutationObserverCallbacks",{}))},noAuto(){_y()},watch(e){let{observeMutationsRoot:n}=e;y7?Ro():p7(_o("mutationObserverCallbacks",{observeMutationsRoot:n}))}}}},v7=e=>{let n={size:16,x:0,y:0,flipX:!1,flipY:!1,rotate:0};return e.toLowerCase().split(" ").reduce((t,c)=>{let s=c.toLowerCase().split("-"),o=s[0],r=s.slice(1).join("-");if(o&&r==="h")return t.flipX=!0,t;if(o&&r==="v")return t.flipY=!0,t;if(r=parseFloat(r),isNaN(r))return t;switch(o){case"grow":t.size=t.size+r;break;case"shrink":t.size=t.size-r;break;case"left":t.x=t.x-r;break;case"right":t.x=t.x+r;break;case"up":t.y=t.y-r;break;case"down":t.y=t.y+r;break;case"rotate":t.rotate=t.rotate+r;break}return t},n)},Jy={mixout(){return{parse:{transform:e=>v7(e)}}},hooks(){return{parseNodeAttributes(e,n){let t=n.getAttribute("data-fa-transform");return t&&(e.transform=v7(t)),e}}},provides(e){e.generateAbstractTransformGrouping=function(n){let{main:t,transform:c,containerWidth:s,iconWidth:o}=n,r={transform:"translate(".concat(s/2," 256)")},i="translate(".concat(c.x*32,", ").concat(c.y*32,") "),l="scale(".concat(c.size/16*(c.flipX?-1:1),", ").concat(c.size/16*(c.flipY?-1:1),") "),a="rotate(".concat(c.rotate," 0 0)"),f={transform:"".concat(i," ").concat(l," ").concat(a)},u={transform:"translate(".concat(o/2*-1," -256)")},p={outer:r,inner:f,path:u};return{tag:"g",attributes:m({},p.outer),children:[{tag:"g",attributes:m({},p.inner),children:[{tag:t.icon.tag,children:t.icon.children,attributes:m(m({},t.icon.attributes),p.path)}]}]}}}},yo={x:0,y:0,width:"100%",height:"100%"};function z7(e){let n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0;return e.attributes&&(e.attributes.fill||n)&&(e.attributes.fill="black"),e}function ev(e){return e.tag==="g"?e.children:[e]}var tv={hooks(){return{parseNodeAttributes(e,n){let t=n.getAttribute("data-fa-mask"),c=t?hn(t.split(" ").map(s=>s.trim())):Y7();return c.prefix||(c.prefix=j1()),e.mask=c,e.maskId=n.getAttribute("data-fa-mask-id"),e}}},provides(e){e.generateAbstractMask=function(n){let{children:t,attributes:c,main:s,mask:o,maskId:r,transform:i}=n,{width:l,icon:a}=s,{width:f,icon:u}=o,p=WL({transform:i,containerWidth:f,iconWidth:l}),d={tag:"rect",attributes:m(m({},yo),{},{fill:"white"})},h=a.children?{children:a.children.map(z7)}:{},g={tag:"g",attributes:m({},p.inner),children:[z7(m({tag:a.tag,attributes:m(m({},a.attributes),p.path)},h))]},z={tag:"g",attributes:m({},p.outer),children:[g]},I="mask-".concat(r||A4()),j="clip-".concat(r||A4()),U={tag:"mask",attributes:m(m({},yo),{},{id:I,maskUnits:"userSpaceOnUse",maskContentUnits:"userSpaceOnUse"}),children:[d,z]},G2={tag:"defs",children:[{tag:"clipPath",attributes:{id:j},children:ev(u)},U]};return t.push(G2,{tag:"rect",attributes:m({fill:"currentColor","clip-path":"url(#".concat(j,")"),mask:"url(#".concat(I,")")},yo)}),{children:t,attributes:c}}}},nv={provides(e){let n=!1;V1.matchMedia&&(n=V1.matchMedia("(prefers-reduced-motion: reduce)").matches),e.missingIconAbstract=function(){let t=[],c={fill:"currentColor"},s={attributeType:"XML",repeatCount:"indefinite",dur:"2s"};t.push({tag:"path",attributes:m(m({},c),{},{d:"M156.5,447.7l-12.6,29.5c-18.7-9.5-35.9-21.2-51.5-34.9l22.7-22.7C127.6,430.5,141.5,440,156.5,447.7z M40.6,272H8.5 c1.4,21.2,5.4,41.7,11.7,61.1L50,321.2C45.1,305.5,41.8,289,40.6,272z M40.6,240c1.4-18.8,5.2-37,11.1-54.1l-29.5-12.6 C14.7,194.3,10,216.7,8.5,240H40.6z M64.3,156.5c7.8-14.9,17.2-28.8,28.1-41.5L69.7,92.3c-13.7,15.6-25.5,32.8-34.9,51.5 L64.3,156.5z M397,419.6c-13.9,12-29.4,22.3-46.1,30.4l11.9,29.8c20.7-9.9,39.8-22.6,56.9-37.6L397,419.6z M115,92.4 c13.9-12,29.4-22.3,46.1-30.4l-11.9-29.8c-20.7,9.9-39.8,22.6-56.8,37.6L115,92.4z M447.7,355.5c-7.8,14.9-17.2,28.8-28.1,41.5 l22.7,22.7c13.7-15.6,25.5-32.9,34.9-51.5L447.7,355.5z M471.4,272c-1.4,18.8-5.2,37-11.1,54.1l29.5,12.6 c7.5-21.1,12.2-43.5,13.6-66.8H471.4z M321.2,462c-15.7,5-32.2,8.2-49.2,9.4v32.1c21.2-1.4,41.7-5.4,61.1-11.7L321.2,462z M240,471.4c-18.8-1.4-37-5.2-54.1-11.1l-12.6,29.5c21.1,7.5,43.5,12.2,66.8,13.6V471.4z M462,190.8c5,15.7,8.2,32.2,9.4,49.2h32.1 c-1.4-21.2-5.4-41.7-11.7-61.1L462,190.8z M92.4,397c-12-13.9-22.3-29.4-30.4-46.1l-29.8,11.9c9.9,20.7,22.6,39.8,37.6,56.9 L92.4,397z M272,40.6c18.8,1.4,36.9,5.2,54.1,11.1l12.6-29.5C317.7,14.7,295.3,10,272,8.5V40.6z M190.8,50 c15.7-5,32.2-8.2,49.2-9.4V8.5c-21.2,1.4-41.7,5.4-61.1,11.7L190.8,50z M442.3,92.3L419.6,115c12,13.9,22.3,29.4,30.5,46.1 l29.8-11.9C470,128.5,457.3,109.4,442.3,92.3z M397,92.4l22.7-22.7c-15.6-13.7-32.8-25.5-51.5-34.9l-12.6,29.5 C370.4,72.1,384.4,81.5,397,92.4z"})});let o=m(m({},s),{},{attributeName:"opacity"}),r={tag:"circle",attributes:m(m({},c),{},{cx:"256",cy:"364",r:"28"}),children:[]};return n||r.children.push({tag:"animate",attributes:m(m({},s),{},{attributeName:"r",values:"28;14;28;28;14;28;"})},{tag:"animate",attributes:m(m({},o),{},{values:"1;0;1;1;0;1;"})}),t.push(r),t.push({tag:"path",attributes:m(m({},c),{},{opacity:"1",d:"M263.7,312h-16c-6.6,0-12-5.4-12-12c0-71,77.4-63.9,77.4-107.8c0-20-17.8-40.2-57.4-40.2c-29.1,0-44.3,9.6-59.2,28.7 c-3.9,5-11.1,6-16.2,2.4l-13.1-9.2c-5.6-3.9-6.9-11.8-2.6-17.2c21.2-27.2,46.4-44.7,91.2-44.7c52.3,0,97.4,29.8,97.4,80.2 c0,67.6-77.4,63.5-77.4,107.8C275.7,306.6,270.3,312,263.7,312z"}),children:n?[]:[{tag:"animate",attributes:m(m({},o),{},{values:"1;0;0;0;0;1;"})}]}),n||t.push({tag:"path",attributes:m(m({},c),{},{opacity:"0",d:"M232.5,134.5l7,168c0.3,6.4,5.6,11.5,12,11.5h9c6.4,0,11.7-5.1,12-11.5l7-168c0.3-6.8-5.2-12.5-12-12.5h-23 C237.7,122,232.2,127.7,232.5,134.5z"}),children:[{tag:"animate",attributes:m(m({},o),{},{values:"0;0;1;1;0;0;"})}]}),{tag:"g",attributes:{class:"missing"},children:t}}}},cv={hooks(){return{parseNodeAttributes(e,n){let t=n.getAttribute("data-fa-symbol"),c=t===null?!1:t===""?!0:t;return e.symbol=c,e}}}},sv=[QL,By,Hy,Uy,$y,Xy,Ky,Jy,tv,nv,cv];hy(sv,{mixoutsTo:w2});var SF=w2.noAuto,n9=w2.config,_F=w2.library,c9=w2.dom,s9=w2.parse,TF=w2.findIconDefinition,AF=w2.toHtml,o9=w2.icon,kF=w2.layer,ov=w2.text,rv=w2.counter;var iv=["*"],lv=e=>{throw new Error(`Could not find icon with iconName=${e.iconName} and prefix=${e.prefix} in the icon library.`)},av=()=>{throw new Error("Property `icon` is required for `fa-icon`/`fa-duotone-icon` components.")},i9=e=>e!=null&&(e===90||e===180||e===270||e==="90"||e==="180"||e==="270"),fv=e=>{let n=i9(e.rotate),t={[`fa-${e.animation}`]:e.animation!=null&&!e.animation.startsWith("spin"),"fa-spin":e.animation==="spin"||e.animation==="spin-reverse","fa-spin-pulse":e.animation==="spin-pulse"||e.animation==="spin-pulse-reverse","fa-spin-reverse":e.animation==="spin-reverse"||e.animation==="spin-pulse-reverse","fa-pulse":e.animation==="spin-pulse"||e.animation==="spin-pulse-reverse","fa-fw":e.fixedWidth,"fa-border":e.border,"fa-inverse":e.inverse,"fa-layers-counter":e.counter,"fa-flip-horizontal":e.flip==="horizontal"||e.flip==="both","fa-flip-vertical":e.flip==="vertical"||e.flip==="both",[`fa-${e.size}`]:e.size!==null,[`fa-rotate-${e.rotate}`]:n,"fa-rotate-by":e.rotate!=null&&!n,[`fa-pull-${e.pull}`]:e.pull!==null,[`fa-stack-${e.stackItemSize}`]:e.stackItemSize!=null};return Object.keys(t).map(c=>t[c]?c:null).filter(c=>c)},Yo=new WeakSet,r9="fa-auto-css";function uv(e,n){if(!n.autoAddCss||Yo.has(e))return;if(e.getElementById(r9)!=null){n.autoAddCss=!1,Yo.add(e);return}let t=e.createElement("style");t.setAttribute("type","text/css"),t.setAttribute("id",r9),t.innerHTML=c9.css();let c=e.head.childNodes,s=null;for(let o=c.length-1;o>-1;o--){let r=c[o],i=r.nodeName.toUpperCase();["STYLE","LINK"].indexOf(i)>-1&&(s=r)}e.head.insertBefore(t,s),n.autoAddCss=!1,Yo.add(e)}var dv=e=>e.prefix!==void 0&&e.iconName!==void 0,pv=(e,n)=>dv(e)?e:Array.isArray(e)&&e.length===2?{prefix:e[0],iconName:e[1]}:{prefix:n,iconName:e},hv=(()=>{class e{constructor(){this.defaultPrefix="fas",this.fallbackIcon=null,this._autoAddCss=!0}set autoAddCss(t){n9.autoAddCss=t,this._autoAddCss=t}get autoAddCss(){return this._autoAddCss}static{this.\u0275fac=function(c){return new(c||e)}}static{this.\u0275prov=M({token:e,factory:e.\u0275fac,providedIn:"root"})}}return e})(),mv=(()=>{class e{constructor(){this.definitions={}}addIcons(...t){for(let c of t){c.prefix in this.definitions||(this.definitions[c.prefix]={}),this.definitions[c.prefix][c.iconName]=c;for(let s of c.icon[2])typeof s=="string"&&(this.definitions[c.prefix][s]=c)}}addIconPacks(...t){for(let c of t){let s=Object.keys(c).map(o=>c[o]);this.addIcons(...s)}}getIconDefinition(t,c){return t in this.definitions&&c in this.definitions[t]?this.definitions[t][c]:null}static{this.\u0275fac=function(c){return new(c||e)}}static{this.\u0275prov=M({token:e,factory:e.\u0275fac,providedIn:"root"})}}return e})(),gv=(()=>{class e{constructor(){this.stackItemSize="1x"}ngOnChanges(t){if("size"in t)throw new Error('fa-icon is not allowed to customize size when used inside fa-stack. Set size on the enclosing fa-stack instead: <fa-stack size="4x">...</fa-stack>.')}static{this.\u0275fac=function(c){return new(c||e)}}static{this.\u0275dir=O({type:e,selectors:[["fa-icon","stackItemSize",""],["fa-duotone-icon","stackItemSize",""]],inputs:{stackItemSize:"stackItemSize",size:"size"},features:[n2]})}}return e})(),Mv=(()=>{class e{constructor(t,c){this.renderer=t,this.elementRef=c}ngOnInit(){this.renderer.addClass(this.elementRef.nativeElement,"fa-stack")}ngOnChanges(t){"size"in t&&(t.size.currentValue!=null&&this.renderer.addClass(this.elementRef.nativeElement,`fa-${t.size.currentValue}`),t.size.previousValue!=null&&this.renderer.removeClass(this.elementRef.nativeElement,`fa-${t.size.previousValue}`))}static{this.\u0275fac=function(c){return new(c||e)(y(b2),y(c2))}}static{this.\u0275cmp=Cs({type:e,selectors:[["fa-stack"]],inputs:{size:"size"},features:[n2],ngContentSelectors:iv,decls:1,vars:0,template:function(c,s){c&1&&(Jl(),ea(0))},encapsulation:2})}}return e})(),qF=(()=>{class e{constructor(t,c,s,o,r){this.sanitizer=t,this.config=c,this.iconLibrary=s,this.stackItem=o,this.document=L(Z),r!=null&&o==null&&console.error('FontAwesome: fa-icon and fa-duotone-icon elements must specify stackItemSize attribute when wrapped into fa-stack. Example: <fa-icon stackItemSize="2x"></fa-icon>.')}ngOnChanges(t){if(this.icon==null&&this.config.fallbackIcon==null){av();return}if(t){let c=this.findIconDefinition(this.icon??this.config.fallbackIcon);if(c!=null){let s=this.buildParams();uv(this.document,this.config);let o=o9(c,s);this.renderedIconHTML=this.sanitizer.bypassSecurityTrustHtml(o.html.join(`
564
+ `))}}}render(){this.ngOnChanges({})}findIconDefinition(t){let c=pv(t,this.config.defaultPrefix);if("icon"in c)return c;let s=this.iconLibrary.getIconDefinition(c.prefix,c.iconName);return s??(lv(c),null)}buildParams(){let t={flip:this.flip,animation:this.animation,border:this.border,inverse:this.inverse,size:this.size||null,pull:this.pull||null,rotate:this.rotate||null,fixedWidth:typeof this.fixedWidth=="boolean"?this.fixedWidth:this.config.fixedWidth,stackItemSize:this.stackItem!=null?this.stackItem.stackItemSize:null},c=typeof this.transform=="string"?s9.transform(this.transform):this.transform,s={};return t.rotate!=null&&!i9(t.rotate)&&(s["--fa-rotate-angle"]=`${t.rotate}`),{title:this.title,transform:c,classes:fv(t),mask:this.mask!=null?this.findIconDefinition(this.mask):null,symbol:this.symbol,attributes:{role:this.a11yRole},styles:s}}static{this.\u0275fac=function(c){return new(c||e)(y(Qs),y(hv),y(mv),y(gv,8),y(Mv,8))}}static{this.\u0275cmp=Cs({type:e,selectors:[["fa-icon"]],hostAttrs:[1,"ng-fa-icon"],hostVars:2,hostBindings:function(c,s){c&2&&(Ns("innerHTML",s.renderedIconHTML,X8),u3("title",s.title))},inputs:{icon:"icon",title:"title",animation:"animation",mask:"mask",flip:"flip",size:"size",pull:"pull",border:"border",inverse:"inverse",symbol:"symbol",rotate:"rotate",fixedWidth:"fixedWidth",transform:"transform",a11yRole:"a11yRole"},features:[n2],decls:0,vars:0,template:function(c,s){},encapsulation:2})}}return e})();var ZF={prefix:"fas",iconName:"at",icon:[512,512,[61946],"40","M256 64C150 64 64 150 64 256s86 192 192 192c17.7 0 32 14.3 32 32s-14.3 32-32 32C114.6 512 0 397.4 0 256S114.6 0 256 0S512 114.6 512 256l0 32c0 53-43 96-96 96c-29.3 0-55.6-13.2-73.2-33.9C320 371.1 289.5 384 256 384c-70.7 0-128-57.3-128-128s57.3-128 128-128c27.9 0 53.7 8.9 74.7 24.1c5.7-5 13.1-8.1 21.3-8.1c17.7 0 32 14.3 32 32l0 80 0 32c0 17.7 14.3 32 32 32s32-14.3 32-32l0-32c0-106-86-192-192-192zm64 192a64 64 0 1 0 -128 0 64 64 0 1 0 128 0z"]},Cv={prefix:"fas",iconName:"trash-can",icon:[448,512,[61460,"trash-alt"],"f2ed","M135.2 17.7C140.6 6.8 151.7 0 163.8 0L284.2 0c12.1 0 23.2 6.8 28.6 17.7L320 32l96 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 96C14.3 96 0 81.7 0 64S14.3 32 32 32l96 0 7.2-14.3zM32 128l384 0 0 320c0 35.3-28.7 64-64 64L96 512c-35.3 0-64-28.7-64-64l0-320zm96 64c-8.8 0-16 7.2-16 16l0 224c0 8.8 7.2 16 16 16s16-7.2 16-16l0-224c0-8.8-7.2-16-16-16zm96 0c-8.8 0-16 7.2-16 16l0 224c0 8.8 7.2 16 16 16s16-7.2 16-16l0-224c0-8.8-7.2-16-16-16zm96 0c-8.8 0-16 7.2-16 16l0 224c0 8.8 7.2 16 16 16s16-7.2 16-16l0-224c0-8.8-7.2-16-16-16z"]},YF=Cv;var QF={prefix:"fas",iconName:"info",icon:[192,512,[],"f129","M48 80a48 48 0 1 1 96 0A48 48 0 1 1 48 80zM0 224c0-17.7 14.3-32 32-32l64 0c17.7 0 32 14.3 32 32l0 224 32 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 512c-17.7 0-32-14.3-32-32s14.3-32 32-32l32 0 0-192-32 0c-17.7 0-32-14.3-32-32z"]};var Lv={prefix:"fas",iconName:"file-lines",icon:[384,512,[128441,128462,61686,"file-alt","file-text"],"f15c","M64 0C28.7 0 0 28.7 0 64L0 448c0 35.3 28.7 64 64 64l256 0c35.3 0 64-28.7 64-64l0-288-128 0c-17.7 0-32-14.3-32-32L224 0 64 0zM256 0l0 128 128 0L256 0zM112 256l160 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-160 0c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64l160 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-160 0c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64l160 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-160 0c-8.8 0-16-7.2-16-16s7.2-16 16-16z"]},XF=Lv;var KF={prefix:"fas",iconName:"right-from-bracket",icon:[512,512,["sign-out-alt"],"f2f5","M377.9 105.9L500.7 228.7c7.2 7.2 11.3 17.1 11.3 27.3s-4.1 20.1-11.3 27.3L377.9 406.1c-6.4 6.4-15 9.9-24 9.9c-18.7 0-33.9-15.2-33.9-33.9l0-62.1-128 0c-17.7 0-32-14.3-32-32l0-64c0-17.7 14.3-32 32-32l128 0 0-62.1c0-18.7 15.2-33.9 33.9-33.9c9 0 17.6 3.6 24 9.9zM160 96L96 96c-17.7 0-32 14.3-32 32l0 256c0 17.7 14.3 32 32 32l64 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-64 0c-53 0-96-43-96-96L0 128C0 75 43 32 96 32l64 0c17.7 0 32 14.3 32 32s-14.3 32-32 32z"]};var JF={prefix:"fas",iconName:"users-rectangle",icon:[640,512,[],"e594","M96 0C43 0 0 43 0 96L0 416c0 53 43 96 96 96l448 0c53 0 96-43 96-96l0-320c0-53-43-96-96-96L96 0zM64 96c0-17.7 14.3-32 32-32l448 0c17.7 0 32 14.3 32 32l0 320c0 17.7-14.3 32-32 32L96 448c-17.7 0-32-14.3-32-32L64 96zm159.8 80a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM96 309.3c0 14.7 11.9 26.7 26.7 26.7l56.1 0c8-34.1 32.8-61.7 65.2-73.6c-7.5-4.1-16.2-6.4-25.3-6.4l-69.3 0C119.9 256 96 279.9 96 309.3zM461.2 336l56.1 0c14.7 0 26.7-11.9 26.7-26.7c0-29.5-23.9-53.3-53.3-53.3l-69.3 0c-9.2 0-17.8 2.3-25.3 6.4c32.4 11.9 57.2 39.5 65.2 73.6zM372 289c-3.9-.7-7.9-1-12-1l-80 0c-4.1 0-8.1 .3-12 1c-26 4.4-47.3 22.7-55.9 47c-2.7 7.5-4.1 15.6-4.1 24c0 13.3 10.7 24 24 24l176 0c13.3 0 24-10.7 24-24c0-8.4-1.4-16.5-4.1-24c-8.6-24.3-29.9-42.6-55.9-47zM512 176a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM320 256a64 64 0 1 0 0-128 64 64 0 1 0 0 128z"]};var eR={prefix:"fas",iconName:"laptop",icon:[640,512,[128187],"f109","M128 32C92.7 32 64 60.7 64 96l0 256 64 0 0-256 384 0 0 256 64 0 0-256c0-35.3-28.7-64-64-64L128 32zM19.2 384C8.6 384 0 392.6 0 403.2C0 445.6 34.4 480 76.8 480l486.4 0c42.4 0 76.8-34.4 76.8-76.8c0-10.6-8.6-19.2-19.2-19.2L19.2 384z"]};var yv={prefix:"fas",iconName:"pencil",icon:[512,512,[9999,61504,"pencil-alt"],"f303","M410.3 231l11.3-11.3-33.9-33.9-62.1-62.1L291.7 89.8l-11.3 11.3-22.6 22.6L58.6 322.9c-10.4 10.4-18 23.3-22.2 37.4L1 480.7c-2.5 8.4-.2 17.5 6.1 23.7s15.3 8.5 23.7 6.1l120.3-35.4c14.1-4.2 27-11.8 37.4-22.2L387.7 253.7 410.3 231zM160 399.4l-9.1 22.7c-4 3.1-8.5 5.4-13.3 6.9L59.4 452l23-78.1c1.4-4.9 3.8-9.4 6.9-13.3l22.7-9.1 0 32c0 8.8 7.2 16 16 16l32 0zM362.7 18.7L348.3 33.2 325.7 55.8 314.3 67.1l33.9 33.9 62.1 62.1 33.9 33.9 11.3-11.3 22.6-22.6 14.5-14.5c25-25 25-65.5 0-90.5L453.3 18.7c-25-25-65.5-25-90.5 0zm-47.4 168l-144 144c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6l144-144c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6z"]},tR=yv;var nR={prefix:"fas",iconName:"comments",icon:[640,512,[128490,61670],"f086","M208 352c114.9 0 208-78.8 208-176S322.9 0 208 0S0 78.8 0 176c0 38.6 14.7 74.3 39.6 103.4c-3.5 9.4-8.7 17.7-14.2 24.7c-4.8 6.2-9.7 11-13.3 14.3c-1.8 1.6-3.3 2.9-4.3 3.7c-.5 .4-.9 .7-1.1 .8l-.2 .2s0 0 0 0s0 0 0 0C1 327.2-1.4 334.4 .8 340.9S9.1 352 16 352c21.8 0 43.8-5.6 62.1-12.5c9.2-3.5 17.8-7.4 25.2-11.4C134.1 343.3 169.8 352 208 352zM448 176c0 112.3-99.1 196.9-216.5 207C255.8 457.4 336.4 512 432 512c38.2 0 73.9-8.7 104.7-23.9c7.5 4 16 7.9 25.2 11.4c18.3 6.9 40.3 12.5 62.1 12.5c6.9 0 13.1-4.5 15.2-11.1c2.1-6.6-.2-13.8-5.8-17.9c0 0 0 0 0 0s0 0 0 0l-.2-.2c-.2-.2-.6-.4-1.1-.8c-1-.8-2.5-2-4.3-3.7c-3.6-3.3-8.5-8.1-13.3-14.3c-5.5-7-10.7-15.4-14.2-24.7c24.9-29 39.6-64.7 39.6-103.4c0-92.8-84.9-168.9-192.6-175.5c.4 5.1 .6 10.3 .6 15.5z"]};var cR={prefix:"fas",iconName:"clipboard-list",icon:[384,512,[],"f46d","M192 0c-41.8 0-77.4 26.7-90.5 64L64 64C28.7 64 0 92.7 0 128L0 448c0 35.3 28.7 64 64 64l256 0c35.3 0 64-28.7 64-64l0-320c0-35.3-28.7-64-64-64l-37.5 0C269.4 26.7 233.8 0 192 0zm0 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM72 272a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zm104-16l128 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-128 0c-8.8 0-16-7.2-16-16s7.2-16 16-16zM72 368a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zm88 0c0-8.8 7.2-16 16-16l128 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-128 0c-8.8 0-16-7.2-16-16z"]};var sR={prefix:"fas",iconName:"toggle-off",icon:[576,512,[],"f204","M384 128c70.7 0 128 57.3 128 128s-57.3 128-128 128l-192 0c-70.7 0-128-57.3-128-128s57.3-128 128-128l192 0zM576 256c0-106-86-192-192-192L192 64C86 64 0 150 0 256S86 448 192 448l192 0c106 0 192-86 192-192zM192 352a96 96 0 1 0 0-192 96 96 0 1 0 0 192z"]};var oR={prefix:"fas",iconName:"reply",icon:[512,512,[61714,"mail-reply"],"f3e5","M205 34.8c11.5 5.1 19 16.6 19 29.2l0 64 112 0c97.2 0 176 78.8 176 176c0 113.3-81.5 163.9-100.2 174.1c-2.5 1.4-5.3 1.9-8.1 1.9c-10.9 0-19.7-8.9-19.7-19.7c0-7.5 4.3-14.4 9.8-19.5c9.4-8.8 22.2-26.4 22.2-56.7c0-53-43-96-96-96l-96 0 0 64c0 12.6-7.4 24.1-19 29.2s-25 3-34.4-5.4l-160-144C3.9 225.7 0 217.1 0 208s3.9-17.7 10.6-23.8l160-144c9.4-8.5 22.9-10.6 34.4-5.4z"]};var rR={prefix:"fas",iconName:"lightbulb",icon:[384,512,[128161],"f0eb","M272 384c9.6-31.9 29.5-59.1 49.2-86.2c0 0 0 0 0 0c5.2-7.1 10.4-14.2 15.4-21.4c19.8-28.5 31.4-63 31.4-100.3C368 78.8 289.2 0 192 0S16 78.8 16 176c0 37.3 11.6 71.9 31.4 100.3c5 7.2 10.2 14.3 15.4 21.4c0 0 0 0 0 0c19.8 27.1 39.7 54.4 49.2 86.2l160 0zM192 512c44.2 0 80-35.8 80-80l0-16-160 0 0 16c0 44.2 35.8 80 80 80zM112 176c0 8.8-7.2 16-16 16s-16-7.2-16-16c0-61.9 50.1-112 112-112c8.8 0 16 7.2 16 16s-7.2 16-16 16c-44.2 0-80 35.8-80 80z"]};var vv={prefix:"fas",iconName:"circle-exclamation",icon:[512,512,["exclamation-circle"],"f06a","M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm0-384c13.3 0 24 10.7 24 24l0 112c0 13.3-10.7 24-24 24s-24-10.7-24-24l0-112c0-13.3 10.7-24 24-24zM224 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z"]},iR=vv;var lR={prefix:"fas",iconName:"flag",icon:[448,512,[127988,61725],"f024","M64 32C64 14.3 49.7 0 32 0S0 14.3 0 32L0 64 0 368 0 480c0 17.7 14.3 32 32 32s32-14.3 32-32l0-128 64.3-16.1c41.1-10.3 84.6-5.5 122.5 13.4c44.2 22.1 95.5 24.8 141.7 7.4l34.7-13c12.5-4.7 20.8-16.6 20.8-30l0-247.7c0-23-24.2-38-44.8-27.7l-9.6 4.8c-46.3 23.2-100.8 23.2-147.1 0c-35.1-17.6-75.4-22-113.5-12.5L64 48l0-16z"]};var aR={prefix:"fas",iconName:"folder-plus",icon:[512,512,[],"f65e","M512 416c0 35.3-28.7 64-64 64L64 480c-35.3 0-64-28.7-64-64L0 96C0 60.7 28.7 32 64 32l128 0c20.1 0 39.1 9.5 51.2 25.6l19.2 25.6c6 8.1 15.5 12.8 25.6 12.8l160 0c35.3 0 64 28.7 64 64l0 256zM232 376c0 13.3 10.7 24 24 24s24-10.7 24-24l0-64 64 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-64 0 0-64c0-13.3-10.7-24-24-24s-24 10.7-24 24l0 64-64 0c-13.3 0-24 10.7-24 24s10.7 24 24 24l64 0 0 64z"]};var fR={prefix:"fas",iconName:"lock",icon:[448,512,[128274],"f023","M144 144l0 48 160 0 0-48c0-44.2-35.8-80-80-80s-80 35.8-80 80zM80 192l0-48C80 64.5 144.5 0 224 0s144 64.5 144 144l0 48 16 0c35.3 0 64 28.7 64 64l0 192c0 35.3-28.7 64-64 64L64 512c-35.3 0-64-28.7-64-64L0 256c0-35.3 28.7-64 64-64l16 0z"]};var zv={prefix:"fas",iconName:"pen-to-square",icon:[512,512,["edit"],"f044","M471.6 21.7c-21.9-21.9-57.3-21.9-79.2 0L362.3 51.7l97.9 97.9 30.1-30.1c21.9-21.9 21.9-57.3 0-79.2L471.6 21.7zm-299.2 220c-6.1 6.1-10.8 13.6-13.5 21.9l-29.6 88.8c-2.9 8.6-.6 18.1 5.8 24.6s15.9 8.7 24.6 5.8l88.8-29.6c8.2-2.7 15.7-7.4 21.9-13.5L437.7 172.3 339.7 74.3 172.4 241.7zM96 64C43 64 0 107 0 160L0 416c0 53 43 96 96 96l256 0c53 0 96-43 96-96l0-96c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 96c0 17.7-14.3 32-32 32L96 448c-17.7 0-32-14.3-32-32l0-256c0-17.7 14.3-32 32-32l96 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L96 64z"]},uR=zv;var dR={prefix:"fas",iconName:"share-nodes",icon:[448,512,["share-alt"],"f1e0","M352 224c53 0 96-43 96-96s-43-96-96-96s-96 43-96 96c0 4 .2 8 .7 11.9l-94.1 47C145.4 170.2 121.9 160 96 160c-53 0-96 43-96 96s43 96 96 96c25.9 0 49.4-10.2 66.6-26.9l94.1 47c-.5 3.9-.7 7.8-.7 11.9c0 53 43 96 96 96s96-43 96-96s-43-96-96-96c-25.9 0-49.4 10.2-66.6 26.9l-94.1-47c.5-3.9 .7-7.8 .7-11.9s-.2-8-.7-11.9l94.1-47C302.6 213.8 326.1 224 352 224z"]};var pR={prefix:"fas",iconName:"users",icon:[640,512,[],"f0c0","M144 0a80 80 0 1 1 0 160A80 80 0 1 1 144 0zM512 0a80 80 0 1 1 0 160A80 80 0 1 1 512 0zM0 298.7C0 239.8 47.8 192 106.7 192l42.7 0c15.9 0 31 3.5 44.6 9.7c-1.3 7.2-1.9 14.7-1.9 22.3c0 38.2 16.8 72.5 43.3 96c-.2 0-.4 0-.7 0L21.3 320C9.6 320 0 310.4 0 298.7zM405.3 320c-.2 0-.4 0-.7 0c26.6-23.5 43.3-57.8 43.3-96c0-7.6-.7-15-1.9-22.3c13.6-6.3 28.7-9.7 44.6-9.7l42.7 0C592.2 192 640 239.8 640 298.7c0 11.8-9.6 21.3-21.3 21.3l-213.3 0zM224 224a96 96 0 1 1 192 0 96 96 0 1 1 -192 0zM128 485.3C128 411.7 187.7 352 261.3 352l117.3 0C452.3 352 512 411.7 512 485.3c0 14.7-11.9 26.7-26.7 26.7l-330.7 0c-14.7 0-26.7-11.9-26.7-26.7z"]},hR={prefix:"fas",iconName:"eye-slash",icon:[640,512,[],"f070","M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L525.6 386.7c39.6-40.6 66.4-86.1 79.9-118.4c3.3-7.9 3.3-16.7 0-24.6c-14.9-35.7-46.2-87.7-93-131.1C465.5 68.8 400.8 32 320 32c-68.2 0-125 26.3-169.3 60.8L38.8 5.1zM223.1 149.5C248.6 126.2 282.7 112 320 112c79.5 0 144 64.5 144 144c0 24.9-6.3 48.3-17.4 68.7L408 294.5c8.4-19.3 10.6-41.4 4.8-63.3c-11.1-41.5-47.8-69.4-88.6-71.1c-5.8-.2-9.2 6.1-7.4 11.7c2.1 6.4 3.3 13.2 3.3 20.3c0 10.2-2.4 19.8-6.6 28.3l-90.3-70.8zM373 389.9c-16.4 6.5-34.3 10.1-53 10.1c-79.5 0-144-64.5-144-144c0-6.9 .5-13.6 1.4-20.2L83.1 161.5C60.3 191.2 44 220.8 34.5 243.7c-3.3 7.9-3.3 16.7 0 24.6c14.9 35.7 46.2 87.7 93 131.1C174.5 443.2 239.2 480 320 480c47.8 0 89.9-12.9 126.2-32.5L373 389.9z"]};var mR={prefix:"fas",iconName:"angle-right",icon:[320,512,[8250],"f105","M278.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-160 160c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L210.7 256 73.4 118.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l160 160z"]};var gR={prefix:"fas",iconName:"folder",icon:[512,512,[128193,128447,61716,"folder-blank"],"f07b","M64 480H448c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64H288c-10.1 0-19.6-4.7-25.6-12.8L243.2 57.6C231.1 41.5 212.1 32 192 32H64C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64z"]};var MR={prefix:"fas",iconName:"gauge",icon:[512,512,["dashboard","gauge-med","tachometer-alt-average"],"f624","M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm320 96c0-26.9-16.5-49.9-40-59.3L280 88c0-13.3-10.7-24-24-24s-24 10.7-24 24l0 204.7c-23.5 9.5-40 32.5-40 59.3c0 35.3 28.7 64 64 64s64-28.7 64-64zM144 176a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm-16 80a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm288 32a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM400 144a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z"]};var CR={prefix:"fas",iconName:"wand-magic-sparkles",icon:[576,512,["magic-wand-sparkles"],"e2ca","M234.7 42.7L197 56.8c-3 1.1-5 4-5 7.2s2 6.1 5 7.2l37.7 14.1L248.8 123c1.1 3 4 5 7.2 5s6.1-2 7.2-5l14.1-37.7L315 71.2c3-1.1 5-4 5-7.2s-2-6.1-5-7.2L277.3 42.7 263.2 5c-1.1-3-4-5-7.2-5s-6.1 2-7.2 5L234.7 42.7zM46.1 395.4c-18.7 18.7-18.7 49.1 0 67.9l34.6 34.6c18.7 18.7 49.1 18.7 67.9 0L529.9 116.5c18.7-18.7 18.7-49.1 0-67.9L495.3 14.1c-18.7-18.7-49.1-18.7-67.9 0L46.1 395.4zM484.6 82.6l-105 105-23.3-23.3 105-105 23.3 23.3zM7.5 117.2C3 118.9 0 123.2 0 128s3 9.1 7.5 10.8L64 160l21.2 56.5c1.7 4.5 6 7.5 10.8 7.5s9.1-3 10.8-7.5L128 160l56.5-21.2c4.5-1.7 7.5-6 7.5-10.8s-3-9.1-7.5-10.8L128 96 106.8 39.5C105.1 35 100.8 32 96 32s-9.1 3-10.8 7.5L64 96 7.5 117.2zm352 256c-4.5 1.7-7.5 6-7.5 10.8s3 9.1 7.5 10.8L416 416l21.2 56.5c1.7 4.5 6 7.5 10.8 7.5s9.1-3 10.8-7.5L480 416l56.5-21.2c4.5-1.7 7.5-6 7.5-10.8s-3-9.1-7.5-10.8L480 352l-21.2-56.5c-1.7-4.5-6-7.5-10.8-7.5s-9.1 3-10.8 7.5L416 352l-56.5 21.2z"]};var LR={prefix:"fas",iconName:"user",icon:[448,512,[128100,62144],"f007","M224 256A128 128 0 1 0 224 0a128 128 0 1 0 0 256zm-45.7 48C79.8 304 0 383.8 0 482.3C0 498.7 13.3 512 29.7 512l388.6 0c16.4 0 29.7-13.3 29.7-29.7C448 383.8 368.2 304 269.7 304l-91.4 0z"]};var yR={prefix:"fas",iconName:"key",icon:[512,512,[128273],"f084","M336 352c97.2 0 176-78.8 176-176S433.2 0 336 0S160 78.8 160 176c0 18.7 2.9 36.8 8.3 53.7L7 391c-4.5 4.5-7 10.6-7 17l0 80c0 13.3 10.7 24 24 24l80 0c13.3 0 24-10.7 24-24l0-40 40 0c13.3 0 24-10.7 24-24l0-40 40 0c6.4 0 12.5-2.5 17-7l33.3-33.3c16.9 5.4 35 8.3 53.7 8.3zM376 96a40 40 0 1 1 0 80 40 40 0 1 1 0-80z"]};var vR={prefix:"fas",iconName:"globe",icon:[512,512,[127760],"f0ac","M352 256c0 22.2-1.2 43.6-3.3 64l-185.3 0c-2.2-20.4-3.3-41.8-3.3-64s1.2-43.6 3.3-64l185.3 0c2.2 20.4 3.3 41.8 3.3 64zm28.8-64l123.1 0c5.3 20.5 8.1 41.9 8.1 64s-2.8 43.5-8.1 64l-123.1 0c2.1-20.6 3.2-42 3.2-64s-1.1-43.4-3.2-64zm112.6-32l-116.7 0c-10-63.9-29.8-117.4-55.3-151.6c78.3 20.7 142 77.5 171.9 151.6zm-149.1 0l-176.6 0c6.1-36.4 15.5-68.6 27-94.7c10.5-23.6 22.2-40.7 33.5-51.5C239.4 3.2 248.7 0 256 0s16.6 3.2 27.8 13.8c11.3 10.8 23 27.9 33.5 51.5c11.6 26 20.9 58.2 27 94.7zm-209 0L18.6 160C48.6 85.9 112.2 29.1 190.6 8.4C165.1 42.6 145.3 96.1 135.3 160zM8.1 192l123.1 0c-2.1 20.6-3.2 42-3.2 64s1.1 43.4 3.2 64L8.1 320C2.8 299.5 0 278.1 0 256s2.8-43.5 8.1-64zM194.7 446.6c-11.6-26-20.9-58.2-27-94.6l176.6 0c-6.1 36.4-15.5 68.6-27 94.6c-10.5 23.6-22.2 40.7-33.5 51.5C272.6 508.8 263.3 512 256 512s-16.6-3.2-27.8-13.8c-11.3-10.8-23-27.9-33.5-51.5zM135.3 352c10 63.9 29.8 117.4 55.3 151.6C112.2 482.9 48.6 426.1 18.6 352l116.7 0zm358.1 0c-30 74.1-93.6 130.9-171.9 151.6c25.5-34.2 45.2-87.7 55.3-151.6l116.7 0z"]};var zR={prefix:"fas",iconName:"ban",icon:[512,512,[128683,"cancel"],"f05e","M367.2 412.5L99.5 144.8C77.1 176.1 64 214.5 64 256c0 106 86 192 192 192c41.5 0 79.9-13.1 111.2-35.5zm45.3-45.3C434.9 335.9 448 297.5 448 256c0-106-86-192-192-192c-41.5 0-79.9 13.1-111.2 35.5L412.5 367.2zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256z"]};var DR={prefix:"fas",iconName:"shuffle",icon:[512,512,[128256,"random"],"f074","M403.8 34.4c12-5 25.7-2.2 34.9 6.9l64 64c6 6 9.4 14.1 9.4 22.6s-3.4 16.6-9.4 22.6l-64 64c-9.2 9.2-22.9 11.9-34.9 6.9s-19.8-16.6-19.8-29.6l0-32-32 0c-10.1 0-19.6 4.7-25.6 12.8L284 229.3 244 176l31.2-41.6C293.3 110.2 321.8 96 352 96l32 0 0-32c0-12.9 7.8-24.6 19.8-29.6zM164 282.7L204 336l-31.2 41.6C154.7 401.8 126.2 416 96 416l-64 0c-17.7 0-32-14.3-32-32s14.3-32 32-32l64 0c10.1 0 19.6-4.7 25.6-12.8L164 282.7zm274.6 188c-9.2 9.2-22.9 11.9-34.9 6.9s-19.8-16.6-19.8-29.6l0-32-32 0c-30.2 0-58.7-14.2-76.8-38.4L121.6 172.8c-6-8.1-15.5-12.8-25.6-12.8l-64 0c-17.7 0-32-14.3-32-32s14.3-32 32-32l64 0c30.2 0 58.7 14.2 76.8 38.4L326.4 339.2c6 8.1 15.5 12.8 25.6 12.8l32 0 0-32c0-12.9 7.8-24.6 19.8-29.6s25.7-2.2 34.9 6.9l64 64c6 6 9.4 14.1 9.4 22.6s-3.4 16.6-9.4 22.6l-64 64z"]};var bR={prefix:"fas",iconName:"spell-check",icon:[576,512,[],"f891","M112 0C99.1 0 87.4 7.8 82.5 19.7l-66.7 160-13.3 32c-6.8 16.3 .9 35 17.2 41.8s35-.9 41.8-17.2L66.7 224l90.7 0 5.1 12.3c6.8 16.3 25.5 24 41.8 17.2s24-25.5 17.2-41.8l-13.3-32-66.7-160C136.6 7.8 124.9 0 112 0zm18.7 160l-37.3 0L112 115.2 130.7 160zM256 32l0 96 0 96c0 17.7 14.3 32 32 32l80 0c44.2 0 80-35.8 80-80c0-23.1-9.8-43.8-25.4-58.4c6-11.2 9.4-24 9.4-37.6c0-44.2-35.8-80-80-80L288 0c-17.7 0-32 14.3-32 32zm96 64l-32 0 0-32 32 0c8.8 0 16 7.2 16 16s-7.2 16-16 16zm-32 64l32 0 16 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-48 0 0-32zM566.6 310.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L352 434.7l-73.4-73.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l96 96c12.5 12.5 32.8 12.5 45.3 0l192-192z"]};var wR={prefix:"fas",iconName:"server",icon:[512,512,[],"f233","M64 32C28.7 32 0 60.7 0 96l0 64c0 35.3 28.7 64 64 64l384 0c35.3 0 64-28.7 64-64l0-64c0-35.3-28.7-64-64-64L64 32zm280 72a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm48 24a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zM64 288c-35.3 0-64 28.7-64 64l0 64c0 35.3 28.7 64 64 64l384 0c35.3 0 64-28.7 64-64l0-64c0-35.3-28.7-64-64-64L64 288zm280 72a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm56 24a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z"]};var Dv={prefix:"fas",iconName:"right-to-bracket",icon:[512,512,["sign-in-alt"],"f2f6","M217.9 105.9L340.7 228.7c7.2 7.2 11.3 17.1 11.3 27.3s-4.1 20.1-11.3 27.3L217.9 406.1c-6.4 6.4-15 9.9-24 9.9c-18.7 0-33.9-15.2-33.9-33.9l0-62.1L32 320c-17.7 0-32-14.3-32-32l0-64c0-17.7 14.3-32 32-32l128 0 0-62.1c0-18.7 15.2-33.9 33.9-33.9c9 0 17.6 3.6 24 9.9zM352 416l64 0c17.7 0 32-14.3 32-32l0-256c0-17.7-14.3-32-32-32l-64 0c-17.7 0-32-14.3-32-32s14.3-32 32-32l64 0c53 0 96 43 96 96l0 256c0 53-43 96-96 96l-64 0c-17.7 0-32-14.3-32-32s14.3-32 32-32z"]},xR=Dv;var NR={prefix:"fas",iconName:"user-group",icon:[640,512,[128101,"user-friends"],"f500","M96 128a128 128 0 1 1 256 0A128 128 0 1 1 96 128zM0 482.3C0 383.8 79.8 304 178.3 304l91.4 0C368.2 304 448 383.8 448 482.3c0 16.4-13.3 29.7-29.7 29.7L29.7 512C13.3 512 0 498.7 0 482.3zM609.3 512l-137.8 0c5.4-9.4 8.6-20.3 8.6-32l0-8c0-60.7-27.1-115.2-69.8-151.8c2.4-.1 4.7-.2 7.1-.2l61.4 0C567.8 320 640 392.2 640 481.3c0 17-13.8 30.7-30.7 30.7zM432 256c-31 0-59-12.6-79.3-32.9C372.4 196.5 384 163.6 384 128c0-26.8-6.6-52.1-18.3-74.3C384.3 40.1 407.2 32 432 32c61.9 0 112 50.1 112 112s-50.1 112-112 112z"]};var ER={prefix:"fas",iconName:"toggle-on",icon:[576,512,[],"f205","M192 64C86 64 0 150 0 256S86 448 192 448l192 0c106 0 192-86 192-192s-86-192-192-192L192 64zm192 96a96 96 0 1 1 0 192 96 96 0 1 1 0-192z"]};var IR={prefix:"fas",iconName:"user-minus",icon:[640,512,[],"f503","M96 128a128 128 0 1 1 256 0A128 128 0 1 1 96 128zM0 482.3C0 383.8 79.8 304 178.3 304l91.4 0C368.2 304 448 383.8 448 482.3c0 16.4-13.3 29.7-29.7 29.7L29.7 512C13.3 512 0 498.7 0 482.3zM472 200l144 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-144 0c-13.3 0-24-10.7-24-24s10.7-24 24-24z"]};var SR={prefix:"fas",iconName:"clipboard",icon:[384,512,[128203],"f328","M192 0c-41.8 0-77.4 26.7-90.5 64L64 64C28.7 64 0 92.7 0 128L0 448c0 35.3 28.7 64 64 64l256 0c35.3 0 64-28.7 64-64l0-320c0-35.3-28.7-64-64-64l-37.5 0C269.4 26.7 233.8 0 192 0zm0 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM112 192l160 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-160 0c-8.8 0-16-7.2-16-16s7.2-16 16-16z"]};var _R={prefix:"fas",iconName:"wifi",icon:[640,512,["wifi-3","wifi-strong"],"f1eb","M54.2 202.9C123.2 136.7 216.8 96 320 96s196.8 40.7 265.8 106.9c12.8 12.2 33 11.8 45.2-.9s11.8-33-.9-45.2C549.7 79.5 440.4 32 320 32S90.3 79.5 9.8 156.7C-2.9 169-3.3 189.2 8.9 202s32.5 13.2 45.2 .9zM320 256c56.8 0 108.6 21.1 148.2 56c13.3 11.7 33.5 10.4 45.2-2.8s10.4-33.5-2.8-45.2C459.8 219.2 393 192 320 192s-139.8 27.2-190.5 72c-13.3 11.7-14.5 31.9-2.8 45.2s31.9 14.5 45.2 2.8c39.5-34.9 91.3-56 148.2-56zm64 160a64 64 0 1 0 -128 0 64 64 0 1 0 128 0z"]};var TR={prefix:"fas",iconName:"user-pen",icon:[640,512,["user-edit"],"f4ff","M224 256A128 128 0 1 0 224 0a128 128 0 1 0 0 256zm-45.7 48C79.8 304 0 383.8 0 482.3C0 498.7 13.3 512 29.7 512l293.1 0c-3.1-8.8-3.7-18.4-1.4-27.8l15-60.1c2.8-11.3 8.6-21.5 16.8-29.7l40.3-40.3c-32.1-31-75.7-50.1-123.9-50.1l-91.4 0zm435.5-68.3c-15.6-15.6-40.9-15.6-56.6 0l-29.4 29.4 71 71 29.4-29.4c15.6-15.6 15.6-40.9 0-56.6l-14.4-14.4zM375.9 417c-4.1 4.1-7 9.2-8.4 14.9l-15 60.1c-1.4 5.5 .2 11.2 4.2 15.2s9.7 5.6 15.2 4.2l60.1-15c5.6-1.4 10.8-4.3 14.9-8.4L576.1 358.7l-71-71L375.9 417z"]};var AR={prefix:"fas",iconName:"folder-closed",icon:[512,512,[],"e185","M448 480L64 480c-35.3 0-64-28.7-64-64L0 192l512 0 0 224c0 35.3-28.7 64-64 64zm64-320L0 160 0 96C0 60.7 28.7 32 64 32l128 0c20.1 0 39.1 9.5 51.2 25.6l19.2 25.6c6 8.1 15.5 12.8 25.6 12.8l160 0c35.3 0 64 28.7 64 64z"]};var kR={prefix:"fas",iconName:"angles-right",icon:[512,512,[187,"angle-double-right"],"f101","M470.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L402.7 256 265.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160zm-352 160l160-160c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L210.7 256 73.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0z"]};var FR={prefix:"fas",iconName:"file-import",icon:[512,512,["arrow-right-to-file"],"f56f","M128 64c0-35.3 28.7-64 64-64L352 0l0 128c0 17.7 14.3 32 32 32l128 0 0 288c0 35.3-28.7 64-64 64l-256 0c-35.3 0-64-28.7-64-64l0-112 174.1 0-39 39c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l80-80c9.4-9.4 9.4-24.6 0-33.9l-80-80c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l39 39L128 288l0-224zm0 224l0 48L24 336c-13.3 0-24-10.7-24-24s10.7-24 24-24l104 0zM512 128l-128 0L384 0 512 128z"]};var RR={prefix:"fas",iconName:"address-card",icon:[576,512,[62140,"contact-card","vcard"],"f2bb","M64 32C28.7 32 0 60.7 0 96L0 416c0 35.3 28.7 64 64 64l448 0c35.3 0 64-28.7 64-64l0-320c0-35.3-28.7-64-64-64L64 32zm80 256l64 0c44.2 0 80 35.8 80 80c0 8.8-7.2 16-16 16L80 384c-8.8 0-16-7.2-16-16c0-44.2 35.8-80 80-80zm-32-96a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zm256-32l128 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-128 0c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64l128 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-128 0c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64l128 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-128 0c-8.8 0-16-7.2-16-16s7.2-16 16-16z"]};var bv={prefix:"fas",iconName:"circle-arrow-left",icon:[512,512,["arrow-circle-left"],"f0a8","M512 256A256 256 0 1 0 0 256a256 256 0 1 0 512 0zM215 127c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-71 71L392 232c13.3 0 24 10.7 24 24s-10.7 24-24 24l-214.1 0 71 71c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0L103 273c-9.4-9.4-9.4-24.6 0-33.9L215 127z"]},OR=bv;var PR={prefix:"fas",iconName:"shield-halved",icon:[512,512,["shield-alt"],"f3ed","M256 0c4.6 0 9.2 1 13.4 2.9L457.7 82.8c22 9.3 38.4 31 38.3 57.2c-.5 99.2-41.3 280.7-213.6 363.2c-16.7 8-36.1 8-52.8 0C57.3 420.7 16.5 239.2 16 140c-.1-26.2 16.3-47.9 38.3-57.2L242.7 2.9C246.8 1 251.4 0 256 0zm0 66.8l0 378.1C394 378 431.1 230.1 432 141.4L256 66.8s0 0 0 0z"]};var VR={prefix:"fas",iconName:"layer-group",icon:[576,512,[],"f5fd","M264.5 5.2c14.9-6.9 32.1-6.9 47 0l218.6 101c8.5 3.9 13.9 12.4 13.9 21.8s-5.4 17.9-13.9 21.8l-218.6 101c-14.9 6.9-32.1 6.9-47 0L45.9 149.8C37.4 145.8 32 137.3 32 128s5.4-17.9 13.9-21.8L264.5 5.2zM476.9 209.6l53.2 24.6c8.5 3.9 13.9 12.4 13.9 21.8s-5.4 17.9-13.9 21.8l-218.6 101c-14.9 6.9-32.1 6.9-47 0L45.9 277.8C37.4 273.8 32 265.3 32 256s5.4-17.9 13.9-21.8l53.2-24.6 152 70.2c23.4 10.8 50.4 10.8 73.8 0l152-70.2zm-152 198.2l152-70.2 53.2 24.6c8.5 3.9 13.9 12.4 13.9 21.8s-5.4 17.9-13.9 21.8l-218.6 101c-14.9 6.9-32.1 6.9-47 0L45.9 405.8C37.4 401.8 32 393.3 32 384s5.4-17.9 13.9-21.8l53.2-24.6 152 70.2c23.4 10.8 50.4 10.8 73.8 0z"]};var wv={prefix:"fas",iconName:"file-zipper",icon:[384,512,["file-archive"],"f1c6","M64 0C28.7 0 0 28.7 0 64L0 448c0 35.3 28.7 64 64 64l256 0c35.3 0 64-28.7 64-64l0-288-128 0c-17.7 0-32-14.3-32-32L224 0 64 0zM256 0l0 128 128 0L256 0zM96 48c0-8.8 7.2-16 16-16l32 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-32 0c-8.8 0-16-7.2-16-16zm0 64c0-8.8 7.2-16 16-16l32 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-32 0c-8.8 0-16-7.2-16-16zm0 64c0-8.8 7.2-16 16-16l32 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-32 0c-8.8 0-16-7.2-16-16zm-6.3 71.8c3.7-14 16.4-23.8 30.9-23.8l14.8 0c14.5 0 27.2 9.7 30.9 23.8l23.5 88.2c1.4 5.4 2.1 10.9 2.1 16.4c0 35.2-28.8 63.7-64 63.7s-64-28.5-64-63.7c0-5.5 .7-11.1 2.1-16.4l23.5-88.2zM112 336c-8.8 0-16 7.2-16 16s7.2 16 16 16l32 0c8.8 0 16-7.2 16-16s-7.2-16-16-16l-32 0z"]},jR=wv;var xv={prefix:"fas",iconName:"circle-arrow-right",icon:[512,512,["arrow-circle-right"],"f0a9","M0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zM297 385c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l71-71L120 280c-13.3 0-24-10.7-24-24s10.7-24 24-24l214.1 0-71-71c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L409 239c9.4 9.4 9.4 24.6 0 33.9L297 385z"]},BR=xv;var HR={prefix:"fas",iconName:"filter",icon:[512,512,[],"f0b0","M3.9 54.9C10.5 40.9 24.5 32 40 32l432 0c15.5 0 29.5 8.9 36.1 22.9s4.6 30.5-5.2 42.5L320 320.9 320 448c0 12.1-6.8 23.2-17.7 28.6s-23.8 4.3-33.5-3l-64-48c-8.1-6-12.8-15.5-12.8-25.6l0-79.1L9 97.3C-.7 85.4-2.8 68.8 3.9 54.9z"]},UR={prefix:"fas",iconName:"question",icon:[320,512,[10067,10068,61736],"3f","M80 160c0-35.3 28.7-64 64-64l32 0c35.3 0 64 28.7 64 64l0 3.6c0 21.8-11.1 42.1-29.4 53.8l-42.2 27.1c-25.2 16.2-40.4 44.1-40.4 74l0 1.4c0 17.7 14.3 32 32 32s32-14.3 32-32l0-1.4c0-8.2 4.2-15.8 11-20.2l42.2-27.1c36.6-23.6 58.8-64.1 58.8-107.7l0-3.6c0-70.7-57.3-128-128-128l-32 0C73.3 32 16 89.3 16 160c0 17.7 14.3 32 32 32s32-14.3 32-32zm80 320a40 40 0 1 0 0-80 40 40 0 1 0 0 80z"]};var Nv={prefix:"fas",iconName:"up-down-left-right",icon:[512,512,["arrows-alt"],"f0b2","M278.6 9.4c-12.5-12.5-32.8-12.5-45.3 0l-64 64c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8l32 0 0 96-96 0 0-32c0-12.9-7.8-24.6-19.8-29.6s-25.7-2.2-34.9 6.9l-64 64c-12.5 12.5-12.5 32.8 0 45.3l64 64c9.2 9.2 22.9 11.9 34.9 6.9s19.8-16.6 19.8-29.6l0-32 96 0 0 96-32 0c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9l64 64c12.5 12.5 32.8 12.5 45.3 0l64-64c9.2-9.2 11.9-22.9 6.9-34.9s-16.6-19.8-29.6-19.8l-32 0 0-96 96 0 0 32c0 12.9 7.8 24.6 19.8 29.6s25.7 2.2 34.9-6.9l64-64c12.5-12.5 12.5-32.8 0-45.3l-64-64c-9.2-9.2-22.9-11.9-34.9-6.9s-19.8 16.6-19.8 29.6l0 32-96 0 0-96 32 0c12.9 0 24.6-7.8 29.6-19.8s2.2-25.7-6.9-34.9l-64-64z"]},$R=Nv;var GR={prefix:"fas",iconName:"lock-open",icon:[576,512,[],"f3c1","M352 144c0-44.2 35.8-80 80-80s80 35.8 80 80l0 48c0 17.7 14.3 32 32 32s32-14.3 32-32l0-48C576 64.5 511.5 0 432 0S288 64.5 288 144l0 48L64 192c-35.3 0-64 28.7-64 64L0 448c0 35.3 28.7 64 64 64l320 0c35.3 0 64-28.7 64-64l0-192c0-35.3-28.7-64-64-64l-32 0 0-48z"]};var qR={prefix:"fas",iconName:"circle",icon:[512,512,[128308,128309,128992,128993,128994,128995,128996,9679,9898,9899,11044,61708,61915],"f111","M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512z"]};var WR={prefix:"fas",iconName:"clipboard-check",icon:[384,512,[],"f46c","M192 0c-41.8 0-77.4 26.7-90.5 64L64 64C28.7 64 0 92.7 0 128L0 448c0 35.3 28.7 64 64 64l256 0c35.3 0 64-28.7 64-64l0-320c0-35.3-28.7-64-64-64l-37.5 0C269.4 26.7 233.8 0 192 0zm0 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM305 273L177 401c-9.4 9.4-24.6 9.4-33.9 0L79 337c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L271 239c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z"]};var ZR={prefix:"fas",iconName:"code-branch",icon:[448,512,[],"f126","M80 104a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm80-24c0 32.8-19.7 61-48 73.3l0 87.8c18.8-10.9 40.7-17.1 64-17.1l96 0c35.3 0 64-28.7 64-64l0-6.7C307.7 141 288 112.8 288 80c0-44.2 35.8-80 80-80s80 35.8 80 80c0 32.8-19.7 61-48 73.3l0 6.7c0 70.7-57.3 128-128 128l-96 0c-35.3 0-64 28.7-64 64l0 6.7c28.3 12.3 48 40.5 48 73.3c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-32.8 19.7-61 48-73.3l0-6.7 0-198.7C19.7 141 0 112.8 0 80C0 35.8 35.8 0 80 0s80 35.8 80 80zm232 0a24 24 0 1 0 -48 0 24 24 0 1 0 48 0zM80 456a24 24 0 1 0 0-48 24 24 0 1 0 0 48z"]};var YR={prefix:"fas",iconName:"file-circle-minus",icon:[576,512,[],"e4ed","M0 64C0 28.7 28.7 0 64 0L224 0l0 128c0 17.7 14.3 32 32 32l128 0 0 38.6C310.1 219.5 256 287.4 256 368c0 59.1 29.1 111.3 73.7 143.3c-3.2 .5-6.4 .7-9.7 .7L64 512c-35.3 0-64-28.7-64-64L0 64zm384 64l-128 0L256 0 384 128zM288 368a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm224 0c0-8.8-7.2-16-16-16l-128 0c-8.8 0-16 7.2-16 16s7.2 16 16 16l128 0c8.8 0 16-7.2 16-16z"]};var QR={prefix:"fas",iconName:"terminal",icon:[576,512,[],"f120","M9.4 86.6C-3.1 74.1-3.1 53.9 9.4 41.4s32.8-12.5 45.3 0l192 192c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L178.7 256 9.4 86.6zM256 416l288 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-288 0c-17.7 0-32-14.3-32-32s14.3-32 32-32z"]};var XR={prefix:"fas",iconName:"eye",icon:[576,512,[128065],"f06e","M288 32c-80.8 0-145.5 36.8-192.6 80.6C48.6 156 17.3 208 2.5 243.7c-3.3 7.9-3.3 16.7 0 24.6C17.3 304 48.6 356 95.4 399.4C142.5 443.2 207.2 480 288 480s145.5-36.8 192.6-80.6c46.8-43.5 78.1-95.4 93-131.1c3.3-7.9 3.3-16.7 0-24.6c-14.9-35.7-46.2-87.7-93-131.1C433.5 68.8 368.8 32 288 32zM144 256a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm144-64c0 35.3-28.7 64-64 64c-7.1 0-13.9-1.2-20.3-3.3c-5.5-1.8-11.9 1.6-11.7 7.4c.3 6.9 1.3 13.8 3.2 20.7c13.7 51.2 66.4 81.6 117.6 67.9s81.6-66.4 67.9-117.6c-11.1-41.5-47.8-69.4-88.6-71.1c-5.8-.2-9.2 6.1-7.4 11.7c2.1 6.4 3.3 13.2 3.3 20.3z"]};var KR={prefix:"fas",iconName:"pen",icon:[512,512,[128394],"f304","M362.7 19.3L314.3 67.7 444.3 197.7l48.4-48.4c25-25 25-65.5 0-90.5L453.3 19.3c-25-25-65.5-25-90.5 0zm-71 71L58.6 323.5c-10.4 10.4-18 23.3-22.2 37.4L1 481.2C-1.5 489.7 .8 498.8 7 505s15.3 8.5 23.7 6.1l120.3-35.4c14.1-4.2 27-11.8 37.4-22.2L421.7 220.3 291.7 90.3z"]};var JR={prefix:"fas",iconName:"comment-dots",icon:[512,512,[128172,62075,"commenting"],"f4ad","M256 448c141.4 0 256-93.1 256-208S397.4 32 256 32S0 125.1 0 240c0 45.1 17.7 86.8 47.7 120.9c-1.9 24.5-11.4 46.3-21.4 62.9c-5.5 9.2-11.1 16.6-15.2 21.6c-2.1 2.5-3.7 4.4-4.9 5.7c-.6 .6-1 1.1-1.3 1.4l-.3 .3c0 0 0 0 0 0c0 0 0 0 0 0s0 0 0 0s0 0 0 0c-4.6 4.6-5.9 11.4-3.4 17.4c2.5 6 8.3 9.9 14.8 9.9c28.7 0 57.6-8.9 81.6-19.3c22.9-10 42.4-21.9 54.3-30.6c31.8 11.5 67 17.9 104.1 17.9zM128 208a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm128 0a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm96 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z"]};var Ev={prefix:"fas",iconName:"arrow-rotate-right",icon:[512,512,[8635,"arrow-right-rotate","arrow-rotate-forward","redo"],"f01e","M386.3 160L336 160c-17.7 0-32 14.3-32 32s14.3 32 32 32l128 0c17.7 0 32-14.3 32-32l0-128c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 51.2L414.4 97.6c-87.5-87.5-229.3-87.5-316.8 0s-87.5 229.3 0 316.8s229.3 87.5 316.8 0c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0c-62.5 62.5-163.8 62.5-226.3 0s-62.5-163.8 0-226.3s163.8-62.5 226.3 0L386.3 160z"]};var eO=Ev;var tO={prefix:"fas",iconName:"calendar-xmark",icon:[448,512,["calendar-times"],"f273","M128 0c17.7 0 32 14.3 32 32l0 32 128 0 0-32c0-17.7 14.3-32 32-32s32 14.3 32 32l0 32 48 0c26.5 0 48 21.5 48 48l0 48L0 160l0-48C0 85.5 21.5 64 48 64l48 0 0-32c0-17.7 14.3-32 32-32zM0 192l448 0 0 272c0 26.5-21.5 48-48 48L48 512c-26.5 0-48-21.5-48-48L0 192zM305 305c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-47 47-47-47c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l47 47-47 47c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l47-47 47 47c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-47-47 47-47z"]};var nO={prefix:"fas",iconName:"user-gear",icon:[640,512,["user-cog"],"f4fe","M224 0a128 128 0 1 1 0 256A128 128 0 1 1 224 0zM178.3 304l91.4 0c11.8 0 23.4 1.2 34.5 3.3c-2.1 18.5 7.4 35.6 21.8 44.8c-16.6 10.6-26.7 31.6-20 53.3c4 12.9 9.4 25.5 16.4 37.6s15.2 23.1 24.4 33c15.7 16.9 39.6 18.4 57.2 8.7l0 .9c0 9.2 2.7 18.5 7.9 26.3L29.7 512C13.3 512 0 498.7 0 482.3C0 383.8 79.8 304 178.3 304zM436 218.2c0-7 4.5-13.3 11.3-14.8c10.5-2.4 21.5-3.7 32.7-3.7s22.2 1.3 32.7 3.7c6.8 1.5 11.3 7.8 11.3 14.8l0 30.6c7.9 3.4 15.4 7.7 22.3 12.8l24.9-14.3c6.1-3.5 13.7-2.7 18.5 2.4c7.6 8.1 14.3 17.2 20.1 27.2s10.3 20.4 13.5 31c2.1 6.7-1.1 13.7-7.2 17.2l-25 14.4c.4 4 .7 8.1 .7 12.3s-.2 8.2-.7 12.3l25 14.4c6.1 3.5 9.2 10.5 7.2 17.2c-3.3 10.6-7.8 21-13.5 31s-12.5 19.1-20.1 27.2c-4.8 5.1-12.5 5.9-18.5 2.4l-24.9-14.3c-6.9 5.1-14.3 9.4-22.3 12.8l0 30.6c0 7-4.5 13.3-11.3 14.8c-10.5 2.4-21.5 3.7-32.7 3.7s-22.2-1.3-32.7-3.7c-6.8-1.5-11.3-7.8-11.3-14.8l0-30.5c-8-3.4-15.6-7.7-22.5-12.9l-24.7 14.3c-6.1 3.5-13.7 2.7-18.5-2.4c-7.6-8.1-14.3-17.2-20.1-27.2s-10.3-20.4-13.5-31c-2.1-6.7 1.1-13.7 7.2-17.2l24.8-14.3c-.4-4.1-.7-8.2-.7-12.4s.2-8.3 .7-12.4L343.8 325c-6.1-3.5-9.2-10.5-7.2-17.2c3.3-10.6 7.7-21 13.5-31s12.5-19.1 20.1-27.2c4.8-5.1 12.4-5.9 18.5-2.4l24.8 14.3c6.9-5.1 14.5-9.4 22.5-12.9l0-30.5zm92.1 133.5a48.1 48.1 0 1 0 -96.1 0 48.1 48.1 0 1 0 96.1 0z"]};var Iv={prefix:"fas",iconName:"table-cells",icon:[512,512,["th"],"f00a","M64 32C28.7 32 0 60.7 0 96L0 416c0 35.3 28.7 64 64 64l384 0c35.3 0 64-28.7 64-64l0-320c0-35.3-28.7-64-64-64L64 32zm88 64l0 64-88 0 0-64 88 0zm56 0l88 0 0 64-88 0 0-64zm240 0l0 64-88 0 0-64 88 0zM64 224l88 0 0 64-88 0 0-64zm232 0l0 64-88 0 0-64 88 0zm64 0l88 0 0 64-88 0 0-64zM152 352l0 64-88 0 0-64 88 0zm56 0l88 0 0 64-88 0 0-64zm240 0l0 64-88 0 0-64 88 0z"]},cO=Iv;var sO={prefix:"fas",iconName:"user-secret",icon:[448,512,[128373],"f21b","M224 16c-6.7 0-10.8-2.8-15.5-6.1C201.9 5.4 194 0 176 0c-30.5 0-52 43.7-66 89.4C62.7 98.1 32 112.2 32 128c0 14.3 25 27.1 64.6 35.9c-.4 4-.6 8-.6 12.1c0 17 3.3 33.2 9.3 48l-59.9 0C38 224 32 230 32 237.4c0 1.7 .3 3.4 1 5l38.8 96.9C28.2 371.8 0 423.8 0 482.3C0 498.7 13.3 512 29.7 512l388.6 0c16.4 0 29.7-13.3 29.7-29.7c0-58.5-28.2-110.4-71.7-143L415 242.4c.6-1.6 1-3.3 1-5c0-7.4-6-13.4-13.4-13.4l-59.9 0c6-14.8 9.3-31 9.3-48c0-4.1-.2-8.1-.6-12.1C391 155.1 416 142.3 416 128c0-15.8-30.7-29.9-78-38.6C324 43.7 302.5 0 272 0c-18 0-25.9 5.4-32.5 9.9c-4.8 3.3-8.8 6.1-15.5 6.1zm56 208l-12.4 0c-16.5 0-31.1-10.6-36.3-26.2c-2.3-7-12.2-7-14.5 0c-5.2 15.6-19.9 26.2-36.3 26.2L168 224c-22.1 0-40-17.9-40-40l0-14.4c28.2 4.1 61 6.4 96 6.4s67.8-2.3 96-6.4l0 14.4c0 22.1-17.9 40-40 40zm-88 96l16 32L176 480 128 288l64 32zm128-32L272 480 240 352l16-32 64-32z"]};var Sv={prefix:"fas",iconName:"table-cells-large",icon:[512,512,["th-large"],"f009","M448 96l0 128-160 0 0-128 160 0zm0 192l0 128-160 0 0-128 160 0zM224 224L64 224 64 96l160 0 0 128zM64 288l160 0 0 128L64 416l0-128zM64 32C28.7 32 0 60.7 0 96L0 416c0 35.3 28.7 64 64 64l384 0c35.3 0 64-28.7 64-64l0-320c0-35.3-28.7-64-64-64L64 32z"]},oO=Sv;var _v={prefix:"fas",iconName:"circle-info",icon:[512,512,["info-circle"],"f05a","M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM216 336l24 0 0-64-24 0c-13.3 0-24-10.7-24-24s10.7-24 24-24l48 0c13.3 0 24 10.7 24 24l0 88 8 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-80 0c-13.3 0-24-10.7-24-24s10.7-24 24-24zm40-208a32 32 0 1 1 0 64 32 32 0 1 1 0-64z"]},rO=_v;var iO={prefix:"fas",iconName:"calendar-check",icon:[448,512,[],"f274","M128 0c17.7 0 32 14.3 32 32l0 32 128 0 0-32c0-17.7 14.3-32 32-32s32 14.3 32 32l0 32 48 0c26.5 0 48 21.5 48 48l0 48L0 160l0-48C0 85.5 21.5 64 48 64l48 0 0-32c0-17.7 14.3-32 32-32zM0 192l448 0 0 272c0 26.5-21.5 48-48 48L48 512c-26.5 0-48-21.5-48-48L0 192zM329 305c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-95 95-47-47c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l64 64c9.4 9.4 24.6 9.4 33.9 0L329 305z"]};var lO={prefix:"fas",iconName:"minus",icon:[448,512,[8211,8722,10134,"subtract"],"f068","M432 256c0 17.7-14.3 32-32 32L48 288c-17.7 0-32-14.3-32-32s14.3-32 32-32l352 0c17.7 0 32 14.3 32 32z"]};var Tv={prefix:"fas",iconName:"gear",icon:[512,512,[9881,"cog"],"f013","M495.9 166.6c3.2 8.7 .5 18.4-6.4 24.6l-43.3 39.4c1.1 8.3 1.7 16.8 1.7 25.4s-.6 17.1-1.7 25.4l43.3 39.4c6.9 6.2 9.6 15.9 6.4 24.6c-4.4 11.9-9.7 23.3-15.8 34.3l-4.7 8.1c-6.6 11-14 21.4-22.1 31.2c-5.9 7.2-15.7 9.6-24.5 6.8l-55.7-17.7c-13.4 10.3-28.2 18.9-44 25.4l-12.5 57.1c-2 9.1-9 16.3-18.2 17.8c-13.8 2.3-28 3.5-42.5 3.5s-28.7-1.2-42.5-3.5c-9.2-1.5-16.2-8.7-18.2-17.8l-12.5-57.1c-15.8-6.5-30.6-15.1-44-25.4L83.1 425.9c-8.8 2.8-18.6 .3-24.5-6.8c-8.1-9.8-15.5-20.2-22.1-31.2l-4.7-8.1c-6.1-11-11.4-22.4-15.8-34.3c-3.2-8.7-.5-18.4 6.4-24.6l43.3-39.4C64.6 273.1 64 264.6 64 256s.6-17.1 1.7-25.4L22.4 191.2c-6.9-6.2-9.6-15.9-6.4-24.6c4.4-11.9 9.7-23.3 15.8-34.3l4.7-8.1c6.6-11 14-21.4 22.1-31.2c5.9-7.2 15.7-9.6 24.5-6.8l55.7 17.7c13.4-10.3 28.2-18.9 44-25.4l12.5-57.1c2-9.1 9-16.3 18.2-17.8C227.3 1.2 241.5 0 256 0s28.7 1.2 42.5 3.5c9.2 1.5 16.2 8.7 18.2 17.8l12.5 57.1c15.8 6.5 30.6 15.1 44 25.4l55.7-17.7c8.8-2.8 18.6-.3 24.5 6.8c8.1 9.8 15.5 20.2 22.1 31.2l4.7 8.1c6.1 11 11.4 22.4 15.8 34.3zM256 336a80 80 0 1 0 0-160 80 80 0 1 0 0 160z"]},aO=Tv;var fO={prefix:"fas",iconName:"clock",icon:[512,512,[128339,"clock-four"],"f017","M256 0a256 256 0 1 1 0 512A256 256 0 1 1 256 0zM232 120l0 136c0 8 4 15.5 10.7 20l96 64c11 7.4 25.9 4.4 33.3-6.7s4.4-25.9-6.7-33.3L280 243.2 280 120c0-13.3-10.7-24-24-24s-24 10.7-24 24z"]};var uO={prefix:"fas",iconName:"caret-down",icon:[320,512,[],"f0d7","M137.4 374.6c12.5 12.5 32.8 12.5 45.3 0l128-128c9.2-9.2 11.9-22.9 6.9-34.9s-16.6-19.8-29.6-19.8L32 192c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9l128 128z"]};var dO={prefix:"fas",iconName:"folder-tree",icon:[576,512,[],"f802","M64 32C64 14.3 49.7 0 32 0S0 14.3 0 32l0 96L0 384c0 35.3 28.7 64 64 64l192 0 0-64L64 384l0-224 192 0 0-64L64 96l0-64zM288 192c0 17.7 14.3 32 32 32l224 0c17.7 0 32-14.3 32-32l0-128c0-17.7-14.3-32-32-32l-98.7 0c-8.5 0-16.6-3.4-22.6-9.4L409.4 9.4c-6-6-14.1-9.4-22.6-9.4L320 0c-17.7 0-32 14.3-32 32l0 160zm0 288c0 17.7 14.3 32 32 32l224 0c17.7 0 32-14.3 32-32l0-128c0-17.7-14.3-32-32-32l-98.7 0c-8.5 0-16.6-3.4-22.6-9.4l-13.3-13.3c-6-6-14.1-9.4-22.6-9.4L320 288c-17.7 0-32 14.3-32 32l0 160z"]};var pO={prefix:"fas",iconName:"flask",icon:[448,512,[],"f0c3","M288 0L160 0 128 0C110.3 0 96 14.3 96 32s14.3 32 32 32l0 132.8c0 11.8-3.3 23.5-9.5 33.5L10.3 406.2C3.6 417.2 0 429.7 0 442.6C0 480.9 31.1 512 69.4 512l309.2 0c38.3 0 69.4-31.1 69.4-69.4c0-12.8-3.6-25.4-10.3-36.4L329.5 230.4c-6.2-10.1-9.5-21.7-9.5-33.5L320 64c17.7 0 32-14.3 32-32s-14.3-32-32-32L288 0zM192 196.8L192 64l64 0 0 132.8c0 23.7 6.6 46.9 19 67.1L309.5 320l-171 0L173 263.9c12.4-20.2 19-43.4 19-67.1z"]};var hO={prefix:"fas",iconName:"power-off",icon:[512,512,[9211],"f011","M288 32c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 224c0 17.7 14.3 32 32 32s32-14.3 32-32l0-224zM143.5 120.6c13.6-11.3 15.4-31.5 4.1-45.1s-31.5-15.4-45.1-4.1C49.7 115.4 16 181.8 16 256c0 132.5 107.5 240 240 240s240-107.5 240-240c0-74.2-33.8-140.6-86.6-184.6c-13.6-11.3-33.8-9.4-45.1 4.1s-9.4 33.8 4.1 45.1c38.9 32.3 63.5 81 63.5 135.4c0 97.2-78.8 176-176 176s-176-78.8-176-176c0-54.4 24.7-103.1 63.5-135.4z"]};var mO={prefix:"fas",iconName:"download",icon:[512,512,[],"f019","M288 32c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 242.7-73.4-73.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l128 128c12.5 12.5 32.8 12.5 45.3 0l128-128c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L288 274.7 288 32zM64 352c-35.3 0-64 28.7-64 64l0 32c0 35.3 28.7 64 64 64l384 0c35.3 0 64-28.7 64-64l0-32c0-35.3-28.7-64-64-64l-101.5 0-45.3 45.3c-25 25-65.5 25-90.5 0L165.5 352 64 352zm368 56a24 24 0 1 1 0 48 24 24 0 1 1 0-48z"]};var gO={prefix:"fas",iconName:"forward",icon:[512,512,[9193],"f04e","M52.5 440.6c-9.5 7.9-22.8 9.7-34.1 4.4S0 428.4 0 416L0 96C0 83.6 7.2 72.3 18.4 67s24.5-3.6 34.1 4.4L224 214.3l0 41.7 0 41.7L52.5 440.6zM256 352l0-96 0-128 0-32c0-12.4 7.2-23.7 18.4-29s24.5-3.6 34.1 4.4l192 160c7.3 6.1 11.5 15.1 11.5 24.6s-4.2 18.5-11.5 24.6l-192 160c-9.5 7.9-22.8 9.7-34.1 4.4s-18.4-16.6-18.4-29l0-64z"]};var Av={prefix:"fas",iconName:"house",icon:[576,512,[127968,63498,63500,"home","home-alt","home-lg-alt"],"f015","M575.8 255.5c0 18-15 32.1-32 32.1l-32 0 .7 160.2c0 2.7-.2 5.4-.5 8.1l0 16.2c0 22.1-17.9 40-40 40l-16 0c-1.1 0-2.2 0-3.3-.1c-1.4 .1-2.8 .1-4.2 .1L416 512l-24 0c-22.1 0-40-17.9-40-40l0-24 0-64c0-17.7-14.3-32-32-32l-64 0c-17.7 0-32 14.3-32 32l0 64 0 24c0 22.1-17.9 40-40 40l-24 0-31.9 0c-1.5 0-3-.1-4.5-.2c-1.2 .1-2.4 .2-3.6 .2l-16 0c-22.1 0-40-17.9-40-40l0-112c0-.9 0-1.9 .1-2.8l0-69.7-32 0c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L564.8 231.5c8 7 12 15 11 24z"]},MO=Av;var kv={prefix:"fas",iconName:"up-long",icon:[320,512,["long-arrow-alt-up"],"f30c","M318 177.5c3.8-8.8 2-19-4.6-26l-136-144C172.9 2.7 166.6 0 160 0s-12.9 2.7-17.4 7.5l-136 144c-6.6 7-8.4 17.2-4.6 26S14.4 192 24 192l72 0 0 288c0 17.7 14.3 32 32 32l64 0c17.7 0 32-14.3 32-32l0-288 72 0c9.6 0 18.2-5.7 22-14.5z"]},CO=kv,LO={prefix:"fas",iconName:"stop",icon:[384,512,[9209],"f04d","M0 128C0 92.7 28.7 64 64 64H320c35.3 0 64 28.7 64 64V384c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128z"]};var yO={prefix:"fas",iconName:"upload",icon:[512,512,[],"f093","M288 109.3L288 352c0 17.7-14.3 32-32 32s-32-14.3-32-32l0-242.7-73.4 73.4c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l128-128c12.5-12.5 32.8-12.5 45.3 0l128 128c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L288 109.3zM64 352l128 0c0 35.3 28.7 64 64 64s64-28.7 64-64l128 0c35.3 0 64 28.7 64 64l0 32c0 35.3-28.7 64-64 64L64 512c-35.3 0-64-28.7-64-64l0-32c0-35.3 28.7-64 64-64zM432 456a24 24 0 1 0 0-48 24 24 0 1 0 0 48z"]};var vO={prefix:"fas",iconName:"file-arrow-down",icon:[384,512,["file-download"],"f56d","M64 0C28.7 0 0 28.7 0 64L0 448c0 35.3 28.7 64 64 64l256 0c35.3 0 64-28.7 64-64l0-288-128 0c-17.7 0-32-14.3-32-32L224 0 64 0zM256 0l0 128 128 0L256 0zM216 232l0 102.1 31-31c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-72 72c-9.4 9.4-24.6 9.4-33.9 0l-72-72c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l31 31L168 232c0-13.3 10.7-24 24-24s24 10.7 24 24z"]};var Fv={prefix:"fas",iconName:"ellipsis",icon:[448,512,["ellipsis-h"],"f141","M8 256a56 56 0 1 1 112 0A56 56 0 1 1 8 256zm160 0a56 56 0 1 1 112 0 56 56 0 1 1 -112 0zm216-56a56 56 0 1 1 0 112 56 56 0 1 1 0-112z"]},zO=Fv;var DO={prefix:"fas",iconName:"bug",icon:[512,512,[],"f188","M256 0c53 0 96 43 96 96l0 3.6c0 15.7-12.7 28.4-28.4 28.4l-135.1 0c-15.7 0-28.4-12.7-28.4-28.4l0-3.6c0-53 43-96 96-96zM41.4 105.4c12.5-12.5 32.8-12.5 45.3 0l64 64c.7 .7 1.3 1.4 1.9 2.1c14.2-7.3 30.4-11.4 47.5-11.4l112 0c17.1 0 33.2 4.1 47.5 11.4c.6-.7 1.2-1.4 1.9-2.1l64-64c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3l-64 64c-.7 .7-1.4 1.3-2.1 1.9c6.2 12 10.1 25.3 11.1 39.5l64.3 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-64 0c0 24.6-5.5 47.8-15.4 68.6c2.2 1.3 4.2 2.9 6 4.8l64 64c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0l-63.1-63.1c-24.5 21.8-55.8 36.2-90.3 39.6L272 240c0-8.8-7.2-16-16-16s-16 7.2-16 16l0 239.2c-34.5-3.4-65.8-17.8-90.3-39.6L86.6 502.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l64-64c1.9-1.9 3.9-3.4 6-4.8C101.5 367.8 96 344.6 96 320l-64 0c-17.7 0-32-14.3-32-32s14.3-32 32-32l64.3 0c1.1-14.1 5-27.5 11.1-39.5c-.7-.6-1.4-1.2-2.1-1.9l-64-64c-12.5-12.5-12.5-32.8 0-45.3z"]};var Rv={prefix:"fas",iconName:"location-dot",icon:[384,512,["map-marker-alt"],"f3c5","M215.7 499.2C267 435 384 279.4 384 192C384 86 298 0 192 0S0 86 0 192c0 87.4 117 243 168.3 307.2c12.3 15.3 35.1 15.3 47.4 0zM192 128a64 64 0 1 1 0 128 64 64 0 1 1 0-128z"]},bO=Rv;var wO={prefix:"fas",iconName:"arrow-down",icon:[384,512,[8595],"f063","M169.4 470.6c12.5 12.5 32.8 12.5 45.3 0l160-160c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 370.8 224 64c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 306.7L54.6 265.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160z"]};var xO={prefix:"fas",iconName:"link",icon:[640,512,[128279,"chain"],"f0c1","M579.8 267.7c56.5-56.5 56.5-148 0-204.5c-50-50-128.8-56.5-186.3-15.4l-1.6 1.1c-14.4 10.3-17.7 30.3-7.4 44.6s30.3 17.7 44.6 7.4l1.6-1.1c32.1-22.9 76-19.3 103.8 8.6c31.5 31.5 31.5 82.5 0 114L422.3 334.8c-31.5 31.5-82.5 31.5-114 0c-27.9-27.9-31.5-71.8-8.6-103.8l1.1-1.6c10.3-14.4 6.9-34.4-7.4-44.6s-34.4-6.9-44.6 7.4l-1.1 1.6C206.5 251.2 213 330 263 380c56.5 56.5 148 56.5 204.5 0L579.8 267.7zM60.2 244.3c-56.5 56.5-56.5 148 0 204.5c50 50 128.8 56.5 186.3 15.4l1.6-1.1c14.4-10.3 17.7-30.3 7.4-44.6s-30.3-17.7-44.6-7.4l-1.6 1.1c-32.1 22.9-76 19.3-103.8-8.6C74 372 74 321 105.5 289.5L217.7 177.2c31.5-31.5 82.5-31.5 114 0c27.9 27.9 31.5 71.8 8.6 103.9l-1.1 1.6c-10.3 14.4-6.9 34.4 7.4 44.6s34.4 6.9 44.6-7.4l1.1-1.6C433.5 260.8 427 182 377 132c-56.5-56.5-148-56.5-204.5 0L60.2 244.3z"]};var NO={prefix:"fas",iconName:"play",icon:[384,512,[9654],"f04b","M73 39c-14.8-9.1-33.4-9.4-48.5-.9S0 62.6 0 80L0 432c0 17.4 9.4 33.4 24.5 41.9s33.7 8.1 48.5-.9L361 297c14.3-8.7 23-24.2 23-41s-8.7-32.2-23-41L73 39z"]},EO={prefix:"fas",iconName:"font",icon:[448,512,[],"f031","M254 52.8C249.3 40.3 237.3 32 224 32s-25.3 8.3-30 20.8L57.8 416 32 416c-17.7 0-32 14.3-32 32s14.3 32 32 32l96 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-1.8 0 18-48 159.6 0 18 48-1.8 0c-17.7 0-32 14.3-32 32s14.3 32 32 32l96 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-25.8 0L254 52.8zM279.8 304l-111.6 0L224 155.1 279.8 304z"]};var IO={prefix:"fas",iconName:"magnifying-glass",icon:[512,512,[128269,"search"],"f002","M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM208 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288z"]};var SO={prefix:"fas",iconName:"file-pen",icon:[576,512,[128221,"file-edit"],"f31c","M0 64C0 28.7 28.7 0 64 0L224 0l0 128c0 17.7 14.3 32 32 32l128 0 0 125.7-86.8 86.8c-10.3 10.3-17.5 23.1-21 37.2l-18.7 74.9c-2.3 9.2-1.8 18.8 1.3 27.5L64 512c-35.3 0-64-28.7-64-64L0 64zm384 64l-128 0L256 0 384 128zM549.8 235.7l14.4 14.4c15.6 15.6 15.6 40.9 0 56.6l-29.4 29.4-71-71 29.4-29.4c15.6-15.6 40.9-15.6 56.6 0zM311.9 417L441.1 287.8l71 71L382.9 487.9c-4.1 4.1-9.2 7-14.9 8.4l-60.1 15c-5.5 1.4-11.2-.2-15.2-4.2s-5.6-9.7-4.2-15.2l15-60.1c1.4-5.6 4.3-10.8 8.4-14.9z"]};var Ov={prefix:"fas",iconName:"down-long",icon:[320,512,["long-arrow-alt-down"],"f309","M2 334.5c-3.8 8.8-2 19 4.6 26l136 144c4.5 4.8 10.8 7.5 17.4 7.5s12.9-2.7 17.4-7.5l136-144c6.6-7 8.4-17.2 4.6-26s-12.5-14.5-22-14.5l-72 0 0-288c0-17.7-14.3-32-32-32L128 0C110.3 0 96 14.3 96 32l0 288-72 0c-9.6 0-18.2 5.7-22 14.5z"]},_O=Ov;var TO={prefix:"fas",iconName:"arrow-up",icon:[384,512,[8593],"f062","M214.6 41.4c-12.5-12.5-32.8-12.5-45.3 0l-160 160c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L160 141.2 160 448c0 17.7 14.3 32 32 32s32-14.3 32-32l0-306.7L329.4 246.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-160-160z"]};var AO={prefix:"fas",iconName:"circle-user",icon:[512,512,[62142,"user-circle"],"f2bd","M399 384.2C376.9 345.8 335.4 320 288 320l-64 0c-47.4 0-88.9 25.8-111 64.2c35.2 39.2 86.2 63.8 143 63.8s107.8-24.7 143-63.8zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm256 16a72 72 0 1 0 0-144 72 72 0 1 0 0 144z"]};var kO={prefix:"fas",iconName:"user-shield",icon:[640,512,[],"f505","M224 256A128 128 0 1 0 224 0a128 128 0 1 0 0 256zm-45.7 48C79.8 304 0 383.8 0 482.3C0 498.7 13.3 512 29.7 512l388.6 0c1.8 0 3.5-.2 5.3-.5c-76.3-55.1-99.8-141-103.1-200.2c-16.1-4.8-33.1-7.3-50.7-7.3l-91.4 0zm308.8-78.3l-120 48C358 277.4 352 286.2 352 296c0 63.3 25.9 168.8 134.8 214.2c5.9 2.5 12.6 2.5 18.5 0C614.1 464.8 640 359.3 640 296c0-9.8-6-18.6-15.1-22.3l-120-48c-5.7-2.3-12.1-2.3-17.8 0zM591.4 312c-3.9 50.7-27.2 116.7-95.4 149.7l0-187.8L591.4 312z"]};var FO={prefix:"fas",iconName:"circle-half-stroke",icon:[512,512,[9680,"adjust"],"f042","M448 256c0-106-86-192-192-192l0 384c106 0 192-86 192-192zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256z"]};var RO={prefix:"fas",iconName:"copy",icon:[448,512,[],"f0c5","M208 0L332.1 0c12.7 0 24.9 5.1 33.9 14.1l67.9 67.9c9 9 14.1 21.2 14.1 33.9L448 336c0 26.5-21.5 48-48 48l-192 0c-26.5 0-48-21.5-48-48l0-288c0-26.5 21.5-48 48-48zM48 128l80 0 0 64-64 0 0 256 192 0 0-32 64 0 0 48c0 26.5-21.5 48-48 48L48 512c-26.5 0-48-21.5-48-48L0 176c0-26.5 21.5-48 48-48z"]};var OO={prefix:"fas",iconName:"plus",icon:[448,512,[10133,61543,"add"],"2b","M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 144L48 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l144 0 0 144c0 17.7 14.3 32 32 32s32-14.3 32-32l0-144 144 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-144 0 0-144z"]};var Pv={prefix:"fas",iconName:"xmark",icon:[384,512,[128473,10005,10006,10060,215,"close","multiply","remove","times"],"f00d","M342.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 210.7 86.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L146.7 256 41.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 301.3 297.4 406.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L237.3 256 342.6 150.6z"]};var PO=Pv;var VO={prefix:"fas",iconName:"chevron-right",icon:[320,512,[9002],"f054","M310.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 256 73.4 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192z"]};var jO={prefix:"fas",iconName:"rotate",icon:[512,512,[128260,"sync-alt"],"f2f1","M142.9 142.9c-17.5 17.5-30.1 38-37.8 59.8c-5.9 16.7-24.2 25.4-40.8 19.5s-25.4-24.2-19.5-40.8C55.6 150.7 73.2 122 97.6 97.6c87.2-87.2 228.3-87.5 315.8-1L455 55c6.9-6.9 17.2-8.9 26.2-5.2s14.8 12.5 14.8 22.2l0 128c0 13.3-10.7 24-24 24l-8.4 0c0 0 0 0 0 0L344 224c-9.7 0-18.5-5.8-22.2-14.8s-1.7-19.3 5.2-26.2l41.1-41.1c-62.6-61.5-163.1-61.2-225.3 1zM16 312c0-13.3 10.7-24 24-24l7.6 0 .7 0L168 288c9.7 0 18.5 5.8 22.2 14.8s1.7 19.3-5.2 26.2l-41.1 41.1c62.6 61.5 163.1 61.2 225.3-1c17.5-17.5 30.1-38 37.8-59.8c5.9-16.7 24.2-25.4 40.8-19.5s25.4 24.2 19.5 40.8c-10.8 30.6-28.4 59.3-52.9 83.8c-87.2 87.2-228.3 87.5-315.8 1L57 457c-6.9 6.9-17.2 8.9-26.2 5.2S16 449.7 16 440l0-119.6 0-.7 0-7.6z"]};var BO={prefix:"fas",iconName:"spinner",icon:[512,512,[],"f110","M304 48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zm0 416a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM48 304a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm464-48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM142.9 437A48 48 0 1 0 75 369.1 48 48 0 1 0 142.9 437zm0-294.2A48 48 0 1 0 75 75a48 48 0 1 0 67.9 67.9zM369.1 437A48 48 0 1 0 437 369.1 48 48 0 1 0 369.1 437z"]};var Vv={prefix:"fas",iconName:"circle-plus",icon:[512,512,["plus-circle"],"f055","M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM232 344l0-64-64 0c-13.3 0-24-10.7-24-24s10.7-24 24-24l64 0 0-64c0-13.3 10.7-24 24-24s24 10.7 24 24l0 64 64 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-64 0 0 64c0 13.3-10.7 24-24 24s-24-10.7-24-24z"]},HO=Vv;var UO={prefix:"fas",iconName:"clone",icon:[512,512,[],"f24d","M288 448L64 448l0-224 64 0 0-64-64 0c-35.3 0-64 28.7-64 64L0 448c0 35.3 28.7 64 64 64l224 0c35.3 0 64-28.7 64-64l0-64-64 0 0 64zm-64-96l224 0c35.3 0 64-28.7 64-64l0-224c0-35.3-28.7-64-64-64L224 0c-35.3 0-64 28.7-64 64l0 224c0 35.3 28.7 64 64 64z"]};var $O={prefix:"fas",iconName:"file-circle-plus",icon:[576,512,[58606],"e494","M0 64C0 28.7 28.7 0 64 0L224 0l0 128c0 17.7 14.3 32 32 32l128 0 0 38.6C310.1 219.5 256 287.4 256 368c0 59.1 29.1 111.3 73.7 143.3c-3.2 .5-6.4 .7-9.7 .7L64 512c-35.3 0-64-28.7-64-64L0 64zm384 64l-128 0L256 0 384 128zm48 96a144 144 0 1 1 0 288 144 144 0 1 1 0-288zm16 80c0-8.8-7.2-16-16-16s-16 7.2-16 16l0 48-48 0c-8.8 0-16 7.2-16 16s7.2 16 16 16l48 0 0 48c0 8.8 7.2 16 16 16s16-7.2 16-16l0-48 48 0c8.8 0 16-7.2 16-16s-7.2-16-16-16l-48 0 0-48z"]};var GO={prefix:"fas",iconName:"anchor",icon:[576,512,[9875],"f13d","M320 96a32 32 0 1 1 -64 0 32 32 0 1 1 64 0zm21.1 80C367 158.8 384 129.4 384 96c0-53-43-96-96-96s-96 43-96 96c0 33.4 17 62.8 42.9 80L224 176c-17.7 0-32 14.3-32 32s14.3 32 32 32l32 0 0 208-48 0c-53 0-96-43-96-96l0-6.1 7 7c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L97 263c-9.4-9.4-24.6-9.4-33.9 0L7 319c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l7-7 0 6.1c0 88.4 71.6 160 160 160l80 0 80 0c88.4 0 160-71.6 160-160l0-6.1 7 7c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-56-56c-9.4-9.4-24.6-9.4-33.9 0l-56 56c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l7-7 0 6.1c0 53-43 96-96 96l-48 0 0-208 32 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-10.9 0z"]};var qO={prefix:"fas",iconName:"desktop",icon:[576,512,[128421,61704,"desktop-alt"],"f390","M64 0C28.7 0 0 28.7 0 64L0 352c0 35.3 28.7 64 64 64l176 0-10.7 32L160 448c-17.7 0-32 14.3-32 32s14.3 32 32 32l256 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-69.3 0L336 416l176 0c35.3 0 64-28.7 64-64l0-288c0-35.3-28.7-64-64-64L64 0zM512 64l0 224L64 288 64 64l448 0z"]};var jv={prefix:"fas",iconName:"table-list",icon:[512,512,["th-list"],"f00b","M0 96C0 60.7 28.7 32 64 32l384 0c35.3 0 64 28.7 64 64l0 320c0 35.3-28.7 64-64 64L64 480c-35.3 0-64-28.7-64-64L0 96zm64 0l0 64 64 0 0-64L64 96zm384 0L192 96l0 64 256 0 0-64zM64 224l0 64 64 0 0-64-64 0zm384 0l-256 0 0 64 256 0 0-64zM64 352l0 64 64 0 0-64-64 0zm384 0l-256 0 0 64 256 0 0-64z"]},WO=jv;var ZO={prefix:"fas",iconName:"user-plus",icon:[640,512,[],"f234","M96 128a128 128 0 1 1 256 0A128 128 0 1 1 96 128zM0 482.3C0 383.8 79.8 304 178.3 304l91.4 0C368.2 304 448 383.8 448 482.3c0 16.4-13.3 29.7-29.7 29.7L29.7 512C13.3 512 0 498.7 0 482.3zM504 312l0-64-64 0c-13.3 0-24-10.7-24-24s10.7-24 24-24l64 0 0-64c0-13.3 10.7-24 24-24s24 10.7 24 24l0 64 64 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-64 0 0 64c0 13.3-10.7 24-24 24s-24-10.7-24-24z"]},YO={prefix:"fas",iconName:"check",icon:[448,512,[10003,10004],"f00c","M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z"]};var QO={prefix:"fas",iconName:"angle-left",icon:[320,512,[8249],"f104","M41.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 256 246.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160z"]};var Bv={prefix:"fas",iconName:"triangle-exclamation",icon:[512,512,[9888,"exclamation-triangle","warning"],"f071","M256 32c14.2 0 27.3 7.5 34.5 19.8l216 368c7.3 12.4 7.3 27.7 .2 40.1S486.3 480 472 480L40 480c-14.3 0-27.6-7.7-34.7-20.1s-7-27.8 .2-40.1l216-368C228.7 39.5 241.8 32 256 32zm0 128c-13.3 0-24 10.7-24 24l0 112c0 13.3 10.7 24 24 24s24-10.7 24-24l0-112c0-13.3-10.7-24-24-24zm32 224a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z"]},XO=Bv;var KO={prefix:"fas",iconName:"share",icon:[512,512,["mail-forward"],"f064","M307 34.8c-11.5 5.1-19 16.6-19 29.2l0 64-112 0C78.8 128 0 206.8 0 304C0 417.3 81.5 467.9 100.2 478.1c2.5 1.4 5.3 1.9 8.1 1.9c10.9 0 19.7-8.9 19.7-19.7c0-7.5-4.3-14.4-9.8-19.5C108.8 431.9 96 414.4 96 384c0-53 43-96 96-96l96 0 0 64c0 12.6 7.4 24.1 19 29.2s25 3 34.4-5.4l160-144c6.7-6.1 10.6-14.7 10.6-23.8s-3.8-17.7-10.6-23.8l-160-144c-9.4-8.5-22.9-10.6-34.4-5.4z"]};var JO={prefix:"fas",iconName:"right-left",icon:[512,512,["exchange-alt"],"f362","M32 96l320 0 0-64c0-12.9 7.8-24.6 19.8-29.6s25.7-2.2 34.9 6.9l96 96c6 6 9.4 14.1 9.4 22.6s-3.4 16.6-9.4 22.6l-96 96c-9.2 9.2-22.9 11.9-34.9 6.9s-19.8-16.6-19.8-29.6l0-64L32 160c-17.7 0-32-14.3-32-32s14.3-32 32-32zM480 352c17.7 0 32 14.3 32 32s-14.3 32-32 32l-320 0 0 64c0 12.9-7.8 24.6-19.8 29.6s-25.7 2.2-34.9-6.9l-96-96c-6-6-9.4-14.1-9.4-22.6s3.4-16.6 9.4-22.6l96-96c9.2-9.2 22.9-11.9 34.9-6.9s19.8 16.6 19.8 29.6l0 64 320 0z"]};var eP={prefix:"fas",iconName:"dice",icon:[640,512,[127922],"f522","M274.9 34.3c-28.1-28.1-73.7-28.1-101.8 0L34.3 173.1c-28.1 28.1-28.1 73.7 0 101.8L173.1 413.7c28.1 28.1 73.7 28.1 101.8 0L413.7 274.9c28.1-28.1 28.1-73.7 0-101.8L274.9 34.3zM200 224a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zM96 200a24 24 0 1 1 0 48 24 24 0 1 1 0-48zM224 376a24 24 0 1 1 0-48 24 24 0 1 1 0 48zM352 200a24 24 0 1 1 0 48 24 24 0 1 1 0-48zM224 120a24 24 0 1 1 0-48 24 24 0 1 1 0 48zm96 328c0 35.3 28.7 64 64 64l192 0c35.3 0 64-28.7 64-64l0-192c0-35.3-28.7-64-64-64l-114.3 0c11.6 36 3.1 77-25.4 105.5L320 413.8l0 34.2zM480 328a24 24 0 1 1 0 48 24 24 0 1 1 0-48z"]};var Hv={prefix:"fas",iconName:"circle-xmark",icon:[512,512,[61532,"times-circle","xmark-circle"],"f057","M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM175 175c9.4-9.4 24.6-9.4 33.9 0l47 47 47-47c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-47 47 47 47c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-47-47-47 47c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l47-47-47-47c-9.4-9.4-9.4-24.6 0-33.9z"]},tP=Hv;var nP={prefix:"fas",iconName:"magnifying-glass-plus",icon:[512,512,["search-plus"],"f00e","M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM184 296c0 13.3 10.7 24 24 24s24-10.7 24-24l0-64 64 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-64 0 0-64c0-13.3-10.7-24-24-24s-24 10.7-24 24l0 64-64 0c-13.3 0-24 10.7-24 24s10.7 24 24 24l64 0 0 64z"]};var cP={prefix:"fas",iconName:"magnifying-glass-minus",icon:[512,512,["search-minus"],"f010","M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM136 184c-13.3 0-24 10.7-24 24s10.7 24 24 24l144 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-144 0z"]};var Uv={prefix:"fas",iconName:"user-large",icon:[512,512,["user-alt"],"f406","M256 288A144 144 0 1 0 256 0a144 144 0 1 0 0 288zm-94.7 32C72.2 320 0 392.2 0 481.3c0 17 13.8 30.7 30.7 30.7l450.6 0c17 0 30.7-13.8 30.7-30.7C512 392.2 439.8 320 350.7 320l-189.4 0z"]},sP=Uv;var oP={prefix:"fas",iconName:"exclamation",icon:[128,512,[10069,10071,61738],"21","M96 64c0-17.7-14.3-32-32-32S32 46.3 32 64l0 256c0 17.7 14.3 32 32 32s32-14.3 32-32L96 64zM64 480a40 40 0 1 0 0-80 40 40 0 1 0 0 80z"]},rP={prefix:"fas",iconName:"arrows-spin",icon:[512,512,[],"e4bb","M256 96c38.4 0 73.7 13.5 101.3 36.1l-32.6 32.6c-4.6 4.6-5.9 11.5-3.5 17.4s8.3 9.9 14.8 9.9l112 0c8.8 0 16-7.2 16-16l0-112c0-6.5-3.9-12.3-9.9-14.8s-12.9-1.1-17.4 3.5l-34 34C363.4 52.6 312.1 32 256 32c-10.9 0-21.5 .8-32 2.3l0 64.9c10.3-2.1 21-3.2 32-3.2zM132.1 154.7l32.6 32.6c4.6 4.6 11.5 5.9 17.4 3.5s9.9-8.3 9.9-14.8l0-112c0-8.8-7.2-16-16-16L64 48c-6.5 0-12.3 3.9-14.8 9.9s-1.1 12.9 3.5 17.4l34 34C52.6 148.6 32 199.9 32 256c0 10.9 .8 21.5 2.3 32l64.9 0c-2.1-10.3-3.2-21-3.2-32c0-38.4 13.5-73.7 36.1-101.3zM477.7 224l-64.9 0c2.1 10.3 3.2 21 3.2 32c0 38.4-13.5 73.7-36.1 101.3l-32.6-32.6c-4.6-4.6-11.5-5.9-17.4-3.5s-9.9 8.3-9.9 14.8l0 112c0 8.8 7.2 16 16 16l112 0c6.5 0 12.3-3.9 14.8-9.9s1.1-12.9-3.5-17.4l-34-34C459.4 363.4 480 312.1 480 256c0-10.9-.8-21.5-2.3-32zM256 416c-38.4 0-73.7-13.5-101.3-36.1l32.6-32.6c4.6-4.6 5.9-11.5 3.5-17.4s-8.3-9.9-14.8-9.9L64 320c-8.8 0-16 7.2-16 16l0 112c0 6.5 3.9 12.3 9.9 14.8s12.9 1.1 17.4-3.5l34-34C148.6 459.4 199.9 480 256 480c10.9 0 21.5-.8 32-2.3l0-64.9c-10.3 2.1-21 3.2-32 3.2z"]};var iP={prefix:"fas",iconName:"users-gear",icon:[640,512,["users-cog"],"f509","M144 160A80 80 0 1 0 144 0a80 80 0 1 0 0 160zm368 0A80 80 0 1 0 512 0a80 80 0 1 0 0 160zM0 298.7C0 310.4 9.6 320 21.3 320l213.3 0c.2 0 .4 0 .7 0c-26.6-23.5-43.3-57.8-43.3-96c0-7.6 .7-15 1.9-22.3c-13.6-6.3-28.7-9.7-44.6-9.7l-42.7 0C47.8 192 0 239.8 0 298.7zM320 320c24 0 45.9-8.8 62.7-23.3c2.5-3.7 5.2-7.3 8-10.7c2.7-3.3 5.7-6.1 9-8.3C410 262.3 416 243.9 416 224c0-53-43-96-96-96s-96 43-96 96s43 96 96 96zm65.4 60.2c-10.3-5.9-18.1-16.2-20.8-28.2l-103.2 0C187.7 352 128 411.7 128 485.3c0 14.7 11.9 26.7 26.7 26.7l300.6 0c-2.1-5.2-3.2-10.9-3.2-16.4l0-3c-1.3-.7-2.7-1.5-4-2.3l-2.6 1.5c-16.8 9.7-40.5 8-54.7-9.7c-4.5-5.6-8.6-11.5-12.4-17.6l-.1-.2-.1-.2-2.4-4.1-.1-.2-.1-.2c-3.4-6.2-6.4-12.6-9-19.3c-8.2-21.2 2.2-42.6 19-52.3l2.7-1.5c0-.8 0-1.5 0-2.3s0-1.5 0-2.3l-2.7-1.5zM533.3 192l-42.7 0c-15.9 0-31 3.5-44.6 9.7c1.3 7.2 1.9 14.7 1.9 22.3c0 17.4-3.5 33.9-9.7 49c2.5 .9 4.9 2 7.1 3.3l2.6 1.5c1.3-.8 2.6-1.6 4-2.3l0-3c0-19.4 13.3-39.1 35.8-42.6c7.9-1.2 16-1.9 24.2-1.9s16.3 .6 24.2 1.9c22.5 3.5 35.8 23.2 35.8 42.6l0 3c1.3 .7 2.7 1.5 4 2.3l2.6-1.5c16.8-9.7 40.5-8 54.7 9.7c2.3 2.8 4.5 5.8 6.6 8.7c-2.1-57.1-49-102.7-106.6-102.7zm91.3 163.9c6.3-3.6 9.5-11.1 6.8-18c-2.1-5.5-4.6-10.8-7.4-15.9l-2.3-4c-3.1-5.1-6.5-9.9-10.2-14.5c-4.6-5.7-12.7-6.7-19-3l-2.9 1.7c-9.2 5.3-20.4 4-29.6-1.3s-16.1-14.5-16.1-25.1l0-3.4c0-7.3-4.9-13.8-12.1-14.9c-6.5-1-13.1-1.5-19.9-1.5s-13.4 .5-19.9 1.5c-7.2 1.1-12.1 7.6-12.1 14.9l0 3.4c0 10.6-6.9 19.8-16.1 25.1s-20.4 6.6-29.6 1.3l-2.9-1.7c-6.3-3.6-14.4-2.6-19 3c-3.7 4.6-7.1 9.5-10.2 14.6l-2.3 3.9c-2.8 5.1-5.3 10.4-7.4 15.9c-2.6 6.8 .5 14.3 6.8 17.9l2.9 1.7c9.2 5.3 13.7 15.8 13.7 26.4s-4.5 21.1-13.7 26.4l-3 1.7c-6.3 3.6-9.5 11.1-6.8 17.9c2.1 5.5 4.6 10.7 7.4 15.8l2.4 4.1c3 5.1 6.4 9.9 10.1 14.5c4.6 5.7 12.7 6.7 19 3l2.9-1.7c9.2-5.3 20.4-4 29.6 1.3s16.1 14.5 16.1 25.1l0 3.4c0 7.3 4.9 13.8 12.1 14.9c6.5 1 13.1 1.5 19.9 1.5s13.4-.5 19.9-1.5c7.2-1.1 12.1-7.6 12.1-14.9l0-3.4c0-10.6 6.9-19.8 16.1-25.1s20.4-6.6 29.6-1.3l2.9 1.7c6.3 3.6 14.4 2.6 19-3c3.7-4.6 7.1-9.4 10.1-14.5l2.4-4.2c2.8-5.1 5.3-10.3 7.4-15.8c2.6-6.8-.5-14.3-6.8-17.9l-3-1.7c-9.2-5.3-13.7-15.8-13.7-26.4s4.5-21.1 13.7-26.4l3-1.7zM472 384a40 40 0 1 1 80 0 40 40 0 1 1 -80 0z"]};var O4={UNAUTHORIZED:"unauthorized",DISABLED:"disabled",EXCEEDED:"exceeded",EXPIRED:"expired",NOT_FOUND:"not found"},$v=function(e){return e.SPACE="space",e.SHARE="share",e}($v||{});var uP={LINKS:"links",LINK:"link",AUTH:"auth"},dP={[O4.NOT_FOUND]:"The link was not found",[O4.DISABLED]:"The link is disabled",[O4.EXPIRED]:"The link is expired",[O4.EXCEEDED]:"The maximum number of access allowed to the link is exceeded"};export{W as a,d9 as b,R as c,_n as d,Tn as e,Y as f,x1 as g,A3 as h,nf as i,cf as j,s1 as k,Uz as l,$z as m,S3 as n,s2 as o,_e as p,In as q,sf as r,P2 as s,of as t,rf as u,t2 as v,S9 as w,N2 as x,Y1 as y,w1 as z,lf as A,Jn as B,Z1 as C,e6 as D,c1 as E,z9 as F,Nn as G,A9 as H,r0 as I,k9 as J,_3 as K,Ne as L,F9 as M,R9 as N,T3 as O,V9 as P,Sn as Q,j9 as R,B9 as S,H9 as T,U9 as U,$9 as V,kn as W,G9 as X,q9 as Y,a0 as Z,Rn as _,W9 as $,D as aa,l2 as ba,M as ca,S2 as da,RS as ea,v as fa,F as ga,C as ha,L as ia,ue as ja,Hf as ka,W2 as la,ut as ma,Sc as na,n2 as oa,OS as pa,PS as qa,_2 as ra,Bu as sa,p2 as ta,n4 as ua,he as va,o2 as wa,e2 as xa,VS as ya,c2 as za,ed as Aa,s3 as Ba,T6 as Ca,Zc as Da,r3 as Ea,jS as Fa,A1 as Ga,pd as Ha,hd as Ia,X2 as Ja,U2 as Ka,X8 as La,Od as Ma,Pd as Na,BS as Oa,HS as Pa,US as Qa,$S as Ra,GS as Sa,S1 as Ta,Nt as Ua,Ze as Va,b2 as Wa,y as Xa,h1 as Ya,ae as Za,Uh as _a,$h as $a,Cs as ab,T2 as bb,O as cb,a3 as db,X as eb,lm as fb,um as gb,f3 as hb,dm as ib,Qe as jb,u3 as kb,Nm as lb,bs as mb,l4 as nb,t_ as ob,n_ as pb,c_ as qb,s_ as rb,o_ as sb,r_ as tb,i_ as ub,Zl as vb,Yl as wb,Vm as xb,Ql as yb,Xl as zb,Hm as Ab,l_ as Bb,Ns as Cb,$m as Db,m1 as Eb,a_ as Fb,Jl as Gb,ea as Hb,Xm as Ib,ta as Jb,Km as Kb,f_ as Lb,u_ as Mb,d_ as Nb,p_ as Ob,h_ as Pb,m_ as Qb,eg as Rb,na as Sb,tg as Tb,ng as Ub,g_ as Vb,cg as Wb,v2 as Xb,M_ as Yb,C_ as Zb,L_ as _b,y_ as $b,v_ as ac,z_ as bc,D_ as cc,b_ as dc,w_ as ec,x_ as fc,N_ as gc,E_ as hc,I_ as ic,S_ as jc,me as kc,_s as lc,k1 as mc,A2 as nc,d3 as oc,wg as pc,__ as qc,Z as rc,p3 as sc,Ma as tc,Ag as uc,kg as vc,Fg as wc,Da as xc,Rg as yc,ba as zc,Og as Ac,Pg as Bc,Bg as Cc,Ug as Dc,Gg as Ec,xa as Fc,qg as Gc,hA as Hc,$s as Ic,hM as Jc,g1 as Kc,Ce as Lc,Za as Mc,Qa as Nc,jM as Oc,BM as Pc,HM as Qc,Rk as Rc,Ys as Sc,$M as Tc,Ok as Uc,Qs as Vc,O1 as Wc,YM as Xc,p5 as Yc,Le as Zc,c5 as _c,C1 as $c,tF as ad,nF as bd,v3 as cd,CC as dd,b4 as ed,vC as fd,sF as gd,DC as hd,wC as id,NC as jd,IC as kd,T5 as ld,oF as md,rF as nd,RC as od,PC as pd,VC as qd,iF as rd,lF as sd,aF as td,po as ud,BC as vd,I4 as wd,j5 as xd,vF as yd,zF as zd,DF as Ad,bF as Bd,hv as Cd,qF as Dd,ZF as Ed,Cv as Fd,YF as Gd,QF as Hd,XF as Id,KF as Jd,JF as Kd,eR as Ld,yv as Md,tR as Nd,nR as Od,cR as Pd,sR as Qd,oR as Rd,rR as Sd,vv as Td,iR as Ud,lR as Vd,aR as Wd,fR as Xd,uR as Yd,dR as Zd,pR as _d,hR as $d,mR as ae,gR as be,MR as ce,CR as de,LR as ee,yR as fe,vR as ge,zR as he,DR as ie,bR as je,wR as ke,xR as le,NR as me,ER as ne,IR as oe,SR as pe,_R as qe,TR as re,AR as se,kR as te,FR as ue,RR as ve,OR as we,PR as xe,VR as ye,jR as ze,BR as Ae,HR as Be,UR as Ce,Nv as De,$R as Ee,GR as Fe,qR as Ge,WR as He,ZR as Ie,YR as Je,QR as Ke,XR as Le,KR as Me,JR as Ne,Ev as Oe,eO as Pe,tO as Qe,nO as Re,cO as Se,sO as Te,oO as Ue,_v as Ve,rO as We,iO as Xe,lO as Ye,Tv as Ze,aO as _e,fO as $e,uO as af,dO as bf,pO as cf,hO as df,mO as ef,gO as ff,MO as gf,CO as hf,LO as if,yO as jf,vO as kf,Fv as lf,zO as mf,DO as nf,bO as of,wO as pf,xO as qf,NO as rf,EO as sf,IO as tf,SO as uf,_O as vf,TO as wf,AO as xf,kO as yf,FO as zf,RO as Af,OO as Bf,Pv as Cf,PO as Df,VO as Ef,jO as Ff,BO as Gf,HO as Hf,UO as If,$O as Jf,GO as Kf,qO as Lf,WO as Mf,ZO as Nf,YO as Of,QO as Pf,XO as Qf,KO as Rf,JO as Sf,eP as Tf,tP as Uf,nP as Vf,cP as Wf,sP as Xf,oP as Yf,rP as Zf,iP as _f,O4 as $f,$v as ag,uP as bg,dP as cg};