@angular/core 7.2.0-beta.0 → 7.2.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 (454) hide show
  1. package/bundles/core-testing.umd.js +194 -128
  2. package/bundles/core-testing.umd.js.map +1 -1
  3. package/bundles/core-testing.umd.min.js +10 -10
  4. package/bundles/core-testing.umd.min.js.map +1 -1
  5. package/bundles/core.umd.js +5582 -4512
  6. package/bundles/core.umd.js.map +1 -1
  7. package/bundles/core.umd.min.js +122 -129
  8. package/bundles/core.umd.min.js.map +1 -1
  9. package/core.d.ts +12 -12
  10. package/core.metadata.json +1 -1
  11. package/esm2015/core.externs.js +45 -35
  12. package/esm2015/core.js +12 -13
  13. package/esm2015/index.js +3 -4
  14. package/esm2015/public_api.js +3 -5
  15. package/esm2015/src/application_init.js +22 -10
  16. package/esm2015/src/application_module.js +6 -5
  17. package/esm2015/src/application_ref.js +94 -37
  18. package/esm2015/src/application_tokens.js +21 -16
  19. package/esm2015/src/change_detection/change_detection.js +8 -7
  20. package/esm2015/src/change_detection/change_detection_util.js +2 -4
  21. package/esm2015/src/change_detection/change_detector_ref.js +2 -3
  22. package/esm2015/src/change_detection/constants.js +30 -32
  23. package/esm2015/src/change_detection/differs/default_iterable_differ.js +108 -29
  24. package/esm2015/src/change_detection/differs/default_keyvalue_differ.js +53 -16
  25. package/esm2015/src/change_detection/differs/iterable_differs.js +100 -90
  26. package/esm2015/src/change_detection/differs/keyvalue_differs.js +85 -73
  27. package/esm2015/src/change_detection/pipe_transform.js +10 -5
  28. package/esm2015/src/change_detection.js +7 -3
  29. package/esm2015/src/codegen_private_exports.js +2 -3
  30. package/esm2015/src/console.js +3 -3
  31. package/esm2015/src/core.js +3 -4
  32. package/esm2015/src/core_private_export.js +2 -3
  33. package/esm2015/src/core_render3_private_export.js +13 -7
  34. package/esm2015/src/debug/debug_node.js +132 -90
  35. package/esm2015/src/di/defs.js +59 -50
  36. package/esm2015/src/di/forward_ref.js +5 -6
  37. package/esm2015/src/di/injectable.js +11 -11
  38. package/esm2015/src/di/injection_token.js +10 -6
  39. package/esm2015/src/di/injector.js +53 -43
  40. package/esm2015/src/di/injector_compatibility.js +13 -12
  41. package/esm2015/src/di/metadata.js +22 -13
  42. package/esm2015/src/di/provider.js +137 -120
  43. package/esm2015/src/di/r3_injector.js +127 -57
  44. package/esm2015/src/di/reflective_errors.js +19 -13
  45. package/esm2015/src/di/reflective_injector.js +20 -16
  46. package/esm2015/src/di/reflective_key.js +7 -5
  47. package/esm2015/src/di/reflective_provider.js +21 -20
  48. package/esm2015/src/di/scope.js +5 -5
  49. package/esm2015/src/di/util.js +13 -14
  50. package/esm2015/src/di.js +2 -3
  51. package/esm2015/src/error_handler.js +5 -4
  52. package/esm2015/src/errors.js +7 -8
  53. package/esm2015/src/event_emitter.js +3 -3
  54. package/esm2015/src/i18n/tokens.js +12 -10
  55. package/esm2015/src/is_dev_mode.js +2 -3
  56. package/esm2015/src/ivy_switch.js +2 -3
  57. package/esm2015/src/linker/compiler.js +9 -12
  58. package/esm2015/src/linker/component_factory.js +2 -3
  59. package/esm2015/src/linker/component_factory_resolver.js +24 -10
  60. package/esm2015/src/linker/element_ref.js +5 -3
  61. package/esm2015/src/linker/ng_module_factory.js +6 -5
  62. package/esm2015/src/linker/ng_module_factory_loader.js +63 -16
  63. package/esm2015/src/linker/query_list.js +16 -14
  64. package/esm2015/src/linker/system_js_ng_module_factory_loader.js +12 -5
  65. package/esm2015/src/linker/template_ref.js +2 -3
  66. package/esm2015/src/linker/view_container_ref.js +2 -3
  67. package/esm2015/src/linker/view_ref.js +13 -7
  68. package/esm2015/src/linker.js +3 -3
  69. package/esm2015/src/metadata/di.js +22 -15
  70. package/esm2015/src/metadata/directives.js +33 -19
  71. package/esm2015/src/metadata/lifecycle_hooks.js +81 -66
  72. package/esm2015/src/metadata/ng_module.js +82 -68
  73. package/esm2015/src/metadata/resource_loading.js +4 -3
  74. package/esm2015/src/metadata/view.js +25 -26
  75. package/esm2015/src/metadata.js +6 -3
  76. package/esm2015/src/platform_core_providers.js +5 -5
  77. package/esm2015/src/profile/profile.js +17 -13
  78. package/esm2015/src/profile/wtf_impl.js +36 -16
  79. package/esm2015/src/r3_symbols.js +18 -5
  80. package/esm2015/src/reflection/platform_reflection_capabilities.js +81 -40
  81. package/esm2015/src/reflection/reflection.js +5 -5
  82. package/esm2015/src/reflection/reflection_capabilities.js +38 -27
  83. package/esm2015/src/reflection/reflector.js +2 -3
  84. package/esm2015/src/reflection/types.js +2 -12
  85. package/esm2015/src/render/api.js +67 -47
  86. package/esm2015/src/render.js +3 -3
  87. package/esm2015/src/render3/assert.js +38 -3
  88. package/esm2015/src/render3/bindings.js +111 -0
  89. package/esm2015/src/render3/component.js +88 -77
  90. package/esm2015/src/render3/component_ref.js +86 -56
  91. package/esm2015/src/render3/context_discovery.js +94 -92
  92. package/esm2015/src/render3/definition.js +58 -51
  93. package/esm2015/src/render3/di.js +206 -166
  94. package/esm2015/src/render3/di_setup.js +51 -31
  95. package/esm2015/src/render3/discovery_utils.js +225 -39
  96. package/esm2015/src/render3/empty.js +28 -0
  97. package/esm2015/src/render3/errors.js +11 -15
  98. package/esm2015/src/render3/features/inherit_definition_feature.js +13 -10
  99. package/esm2015/src/render3/features/ng_onchanges_feature.js +15 -12
  100. package/esm2015/src/render3/features/providers_feature.js +2 -3
  101. package/esm2015/src/render3/fields.js +5 -5
  102. package/esm2015/src/render3/global_utils.js +22 -7
  103. package/esm2015/src/render3/global_utils_api.js +13 -7
  104. package/esm2015/src/render3/hooks.js +21 -26
  105. package/esm2015/src/render3/i18n.js +134 -115
  106. package/esm2015/src/render3/index.js +15 -7
  107. package/esm2015/src/render3/instructions.js +938 -813
  108. package/esm2015/src/render3/interfaces/container.js +37 -6
  109. package/esm2015/src/render3/interfaces/context.js +39 -37
  110. package/esm2015/src/render3/interfaces/definition.js +225 -265
  111. package/esm2015/src/render3/interfaces/i18n.js +179 -151
  112. package/esm2015/src/render3/interfaces/injector.js +95 -13
  113. package/esm2015/src/render3/interfaces/node.js +413 -382
  114. package/esm2015/src/render3/interfaces/player.js +78 -37
  115. package/esm2015/src/render3/interfaces/projection.js +5 -10
  116. package/esm2015/src/render3/interfaces/query.js +66 -60
  117. package/esm2015/src/render3/interfaces/renderer.js +292 -117
  118. package/esm2015/src/render3/interfaces/sanitization.js +2 -6
  119. package/esm2015/src/render3/interfaces/styling.js +322 -111
  120. package/esm2015/src/render3/interfaces/view.js +356 -298
  121. package/esm2015/src/render3/jit/compiler_facade.js +10 -4
  122. package/esm2015/src/render3/jit/compiler_facade_interface.js +195 -152
  123. package/esm2015/src/render3/jit/directive.js +26 -16
  124. package/esm2015/src/render3/jit/environment.js +8 -5
  125. package/esm2015/src/render3/jit/injectable.js +7 -10
  126. package/esm2015/src/render3/jit/module.js +309 -25
  127. package/esm2015/src/render3/jit/pipe.js +2 -3
  128. package/esm2015/src/render3/jit/util.js +2 -3
  129. package/esm2015/src/render3/metadata.js +11 -10
  130. package/esm2015/src/render3/ng_dev_mode.js +5 -6
  131. package/esm2015/src/render3/ng_module_ref.js +48 -22
  132. package/esm2015/src/render3/node_assert.js +2 -3
  133. package/esm2015/src/render3/node_manipulation.js +137 -117
  134. package/esm2015/src/render3/node_selector_matcher.js +46 -19
  135. package/esm2015/src/render3/pipe.js +36 -21
  136. package/esm2015/src/render3/players.js +17 -12
  137. package/esm2015/src/render3/pure_function.js +86 -39
  138. package/esm2015/src/render3/query.js +93 -80
  139. package/esm2015/src/render3/state.js +88 -203
  140. package/esm2015/src/render3/styling/class_and_style_bindings.js +963 -249
  141. package/esm2015/src/render3/styling/core_player_handler.js +6 -4
  142. package/esm2015/src/render3/styling/player_factory.js +3 -4
  143. package/esm2015/src/render3/styling/util.js +69 -31
  144. package/esm2015/src/render3/tokens.js +7 -6
  145. package/esm2015/src/render3/util.js +65 -55
  146. package/esm2015/src/render3/view_engine_compatibility.js +36 -59
  147. package/esm2015/src/render3/view_engine_compatibility_prebound.js +2 -3
  148. package/esm2015/src/render3/view_ref.js +58 -44
  149. package/esm2015/src/sanitization/bypass.js +29 -6
  150. package/esm2015/src/sanitization/html_sanitizer.js +48 -16
  151. package/esm2015/src/sanitization/inert_body.js +33 -18
  152. package/esm2015/src/sanitization/sanitization.js +35 -25
  153. package/esm2015/src/sanitization/security.js +3 -4
  154. package/esm2015/src/sanitization/style_sanitizer.js +10 -7
  155. package/esm2015/src/sanitization/url_sanitizer.js +9 -7
  156. package/esm2015/src/testability/testability.js +72 -42
  157. package/esm2015/src/type.js +6 -8
  158. package/esm2015/src/util/decorators.js +19 -14
  159. package/esm2015/src/util/lang.js +2 -3
  160. package/esm2015/src/util/ng_reflect.js +2 -3
  161. package/esm2015/src/util/noop.js +2 -3
  162. package/esm2015/src/util/property.js +3 -4
  163. package/esm2015/src/util.js +12 -4
  164. package/esm2015/src/version.js +6 -6
  165. package/esm2015/src/view/element.js +17 -17
  166. package/esm2015/src/view/entrypoint.js +15 -5
  167. package/esm2015/src/view/errors.js +4 -5
  168. package/esm2015/src/view/index.js +2 -3
  169. package/esm2015/src/view/ng_content.js +3 -4
  170. package/esm2015/src/view/ng_module.js +2 -3
  171. package/esm2015/src/view/provider.js +89 -24
  172. package/esm2015/src/view/pure_expression.js +14 -15
  173. package/esm2015/src/view/query.js +14 -14
  174. package/esm2015/src/view/refs.js +96 -38
  175. package/esm2015/src/view/services.js +64 -37
  176. package/esm2015/src/view/text.js +5 -6
  177. package/esm2015/src/view/types.js +390 -325
  178. package/esm2015/src/view/util.js +29 -24
  179. package/esm2015/src/view/view.js +43 -36
  180. package/esm2015/src/view/view_attach.js +9 -10
  181. package/esm2015/src/zone/ng_zone.js +29 -28
  182. package/esm2015/src/zone.js +3 -3
  183. package/esm2015/testing/index.js +2 -3
  184. package/esm2015/testing/public_api.js +4 -4
  185. package/esm2015/testing/src/async.js +2 -3
  186. package/esm2015/testing/src/async_fallback.js +8 -7
  187. package/esm2015/testing/src/async_test_completer.js +14 -6
  188. package/esm2015/testing/src/before_each.js +10 -4
  189. package/esm2015/testing/src/component_fixture.js +48 -17
  190. package/esm2015/testing/src/fake_async.js +9 -3
  191. package/esm2015/testing/src/fake_async_fallback.js +5 -5
  192. package/esm2015/testing/src/lang_utils.js +3 -4
  193. package/esm2015/testing/src/logger.js +2 -3
  194. package/esm2015/testing/src/metadata_override.js +2 -6
  195. package/esm2015/testing/src/metadata_overrider.js +9 -8
  196. package/esm2015/testing/src/ng_zone_mock.js +2 -3
  197. package/esm2015/testing/src/private_export_testing.js +2 -3
  198. package/esm2015/testing/src/r3_test_bed.js +324 -174
  199. package/esm2015/testing/src/resolvers.js +28 -11
  200. package/esm2015/testing/src/test_bed.js +123 -54
  201. package/esm2015/testing/src/test_bed_common.js +142 -85
  202. package/esm2015/testing/src/test_compiler.js +2 -3
  203. package/esm2015/testing/src/testing.js +3 -3
  204. package/esm2015/testing/src/testing_internal.js +17 -12
  205. package/esm2015/testing/testing.js +1 -2
  206. package/esm5/core.js +12 -13
  207. package/esm5/index.js +1 -2
  208. package/esm5/public_api.js +1 -2
  209. package/esm5/src/application_init.js +1 -2
  210. package/esm5/src/application_module.js +1 -2
  211. package/esm5/src/application_ref.js +1 -2
  212. package/esm5/src/application_tokens.js +1 -2
  213. package/esm5/src/change_detection/change_detection.js +1 -2
  214. package/esm5/src/change_detection/change_detection_util.js +1 -2
  215. package/esm5/src/change_detection/change_detector_ref.js +1 -2
  216. package/esm5/src/change_detection/constants.js +3 -4
  217. package/esm5/src/change_detection/differs/default_iterable_differ.js +1 -2
  218. package/esm5/src/change_detection/differs/default_keyvalue_differ.js +1 -2
  219. package/esm5/src/change_detection/differs/iterable_differs.js +1 -2
  220. package/esm5/src/change_detection/differs/keyvalue_differs.js +1 -2
  221. package/esm5/src/change_detection/pipe_transform.js +1 -2
  222. package/esm5/src/change_detection.js +1 -2
  223. package/esm5/src/codegen_private_exports.js +1 -2
  224. package/esm5/src/console.js +1 -2
  225. package/esm5/src/core.js +1 -2
  226. package/esm5/src/core_private_export.js +1 -2
  227. package/esm5/src/core_render3_private_export.js +7 -5
  228. package/esm5/src/debug/debug_node.js +79 -58
  229. package/esm5/src/di/defs.js +3 -4
  230. package/esm5/src/di/forward_ref.js +1 -2
  231. package/esm5/src/di/injectable.js +1 -2
  232. package/esm5/src/di/injection_token.js +1 -2
  233. package/esm5/src/di/injector.js +1 -2
  234. package/esm5/src/di/injector_compatibility.js +1 -2
  235. package/esm5/src/di/metadata.js +1 -2
  236. package/esm5/src/di/provider.js +1 -2
  237. package/esm5/src/di/r3_injector.js +48 -28
  238. package/esm5/src/di/reflective_errors.js +1 -2
  239. package/esm5/src/di/reflective_injector.js +1 -2
  240. package/esm5/src/di/reflective_key.js +1 -2
  241. package/esm5/src/di/reflective_provider.js +1 -2
  242. package/esm5/src/di/scope.js +1 -2
  243. package/esm5/src/di/util.js +1 -2
  244. package/esm5/src/di.js +1 -2
  245. package/esm5/src/error_handler.js +1 -2
  246. package/esm5/src/errors.js +1 -2
  247. package/esm5/src/event_emitter.js +1 -2
  248. package/esm5/src/i18n/tokens.js +1 -2
  249. package/esm5/src/is_dev_mode.js +1 -2
  250. package/esm5/src/ivy_switch.js +1 -2
  251. package/esm5/src/linker/compiler.js +1 -2
  252. package/esm5/src/linker/component_factory.js +1 -2
  253. package/esm5/src/linker/component_factory_resolver.js +1 -2
  254. package/esm5/src/linker/element_ref.js +1 -2
  255. package/esm5/src/linker/ng_module_factory.js +1 -2
  256. package/esm5/src/linker/ng_module_factory_loader.js +37 -13
  257. package/esm5/src/linker/query_list.js +1 -2
  258. package/esm5/src/linker/system_js_ng_module_factory_loader.js +1 -2
  259. package/esm5/src/linker/template_ref.js +1 -2
  260. package/esm5/src/linker/view_container_ref.js +1 -2
  261. package/esm5/src/linker/view_ref.js +1 -2
  262. package/esm5/src/linker.js +1 -2
  263. package/esm5/src/metadata/di.js +1 -2
  264. package/esm5/src/metadata/directives.js +1 -2
  265. package/esm5/src/metadata/lifecycle_hooks.js +1 -2
  266. package/esm5/src/metadata/ng_module.js +1 -2
  267. package/esm5/src/metadata/resource_loading.js +1 -2
  268. package/esm5/src/metadata/view.js +1 -2
  269. package/esm5/src/metadata.js +1 -2
  270. package/esm5/src/platform_core_providers.js +1 -2
  271. package/esm5/src/profile/profile.js +1 -2
  272. package/esm5/src/profile/wtf_impl.js +1 -2
  273. package/esm5/src/r3_symbols.js +1 -2
  274. package/esm5/src/reflection/platform_reflection_capabilities.js +1 -2
  275. package/esm5/src/reflection/reflection.js +1 -2
  276. package/esm5/src/reflection/reflection_capabilities.js +1 -2
  277. package/esm5/src/reflection/reflector.js +1 -2
  278. package/esm5/src/reflection/types.js +1 -2
  279. package/esm5/src/render/api.js +1 -2
  280. package/esm5/src/render.js +1 -2
  281. package/esm5/src/render3/assert.js +15 -2
  282. package/esm5/src/render3/bindings.js +63 -0
  283. package/esm5/src/render3/component.js +23 -16
  284. package/esm5/src/render3/component_ref.js +43 -36
  285. package/esm5/src/render3/context_discovery.js +68 -77
  286. package/esm5/src/render3/definition.js +30 -24
  287. package/esm5/src/render3/di.js +142 -135
  288. package/esm5/src/render3/di_setup.js +20 -21
  289. package/esm5/src/render3/discovery_utils.js +167 -36
  290. package/esm5/src/render3/empty.js +22 -0
  291. package/esm5/src/render3/errors.js +9 -12
  292. package/esm5/src/render3/features/inherit_definition_feature.js +3 -5
  293. package/esm5/src/render3/features/ng_onchanges_feature.js +11 -10
  294. package/esm5/src/render3/features/providers_feature.js +1 -2
  295. package/esm5/src/render3/fields.js +1 -2
  296. package/esm5/src/render3/global_utils.js +4 -3
  297. package/esm5/src/render3/global_utils_api.js +2 -3
  298. package/esm5/src/render3/hooks.js +14 -16
  299. package/esm5/src/render3/i18n.js +22 -27
  300. package/esm5/src/render3/index.js +5 -6
  301. package/esm5/src/render3/instructions.js +698 -593
  302. package/esm5/src/render3/interfaces/container.js +10 -3
  303. package/esm5/src/render3/interfaces/context.js +1 -2
  304. package/esm5/src/render3/interfaces/definition.js +1 -2
  305. package/esm5/src/render3/interfaces/i18n.js +1 -2
  306. package/esm5/src/render3/interfaces/injector.js +5 -6
  307. package/esm5/src/render3/interfaces/node.js +1 -2
  308. package/esm5/src/render3/interfaces/player.js +1 -2
  309. package/esm5/src/render3/interfaces/projection.js +1 -2
  310. package/esm5/src/render3/interfaces/query.js +1 -2
  311. package/esm5/src/render3/interfaces/renderer.js +1 -2
  312. package/esm5/src/render3/interfaces/sanitization.js +1 -2
  313. package/esm5/src/render3/interfaces/styling.js +1 -2
  314. package/esm5/src/render3/interfaces/view.js +3 -4
  315. package/esm5/src/render3/jit/compiler_facade.js +1 -2
  316. package/esm5/src/render3/jit/compiler_facade_interface.js +1 -2
  317. package/esm5/src/render3/jit/directive.js +19 -10
  318. package/esm5/src/render3/jit/environment.js +4 -2
  319. package/esm5/src/render3/jit/injectable.js +17 -18
  320. package/esm5/src/render3/jit/module.js +207 -13
  321. package/esm5/src/render3/jit/pipe.js +1 -2
  322. package/esm5/src/render3/jit/util.js +1 -2
  323. package/esm5/src/render3/metadata.js +1 -2
  324. package/esm5/src/render3/ng_dev_mode.js +1 -2
  325. package/esm5/src/render3/ng_module_ref.js +29 -11
  326. package/esm5/src/render3/node_assert.js +1 -2
  327. package/esm5/src/render3/node_manipulation.js +54 -50
  328. package/esm5/src/render3/node_selector_matcher.js +28 -9
  329. package/esm5/src/render3/pipe.js +33 -19
  330. package/esm5/src/render3/players.js +7 -9
  331. package/esm5/src/render3/pure_function.js +48 -38
  332. package/esm5/src/render3/query.js +8 -9
  333. package/esm5/src/render3/state.js +50 -135
  334. package/esm5/src/render3/styling/class_and_style_bindings.js +684 -214
  335. package/esm5/src/render3/styling/core_player_handler.js +1 -2
  336. package/esm5/src/render3/styling/player_factory.js +1 -2
  337. package/esm5/src/render3/styling/util.js +39 -22
  338. package/esm5/src/render3/tokens.js +1 -2
  339. package/esm5/src/render3/util.js +49 -37
  340. package/esm5/src/render3/view_engine_compatibility.js +20 -33
  341. package/esm5/src/render3/view_engine_compatibility_prebound.js +1 -2
  342. package/esm5/src/render3/view_ref.js +33 -30
  343. package/esm5/src/sanitization/bypass.js +1 -2
  344. package/esm5/src/sanitization/html_sanitizer.js +1 -2
  345. package/esm5/src/sanitization/inert_body.js +4 -5
  346. package/esm5/src/sanitization/sanitization.js +25 -20
  347. package/esm5/src/sanitization/security.js +1 -2
  348. package/esm5/src/sanitization/style_sanitizer.js +1 -2
  349. package/esm5/src/sanitization/url_sanitizer.js +1 -2
  350. package/esm5/src/testability/testability.js +1 -2
  351. package/esm5/src/type.js +1 -2
  352. package/esm5/src/util/decorators.js +1 -2
  353. package/esm5/src/util/lang.js +1 -2
  354. package/esm5/src/util/ng_reflect.js +1 -2
  355. package/esm5/src/util/noop.js +1 -2
  356. package/esm5/src/util/property.js +1 -2
  357. package/esm5/src/util.js +1 -2
  358. package/esm5/src/version.js +2 -3
  359. package/esm5/src/view/element.js +1 -2
  360. package/esm5/src/view/entrypoint.js +1 -2
  361. package/esm5/src/view/errors.js +1 -2
  362. package/esm5/src/view/index.js +1 -2
  363. package/esm5/src/view/ng_content.js +1 -2
  364. package/esm5/src/view/ng_module.js +1 -2
  365. package/esm5/src/view/provider.js +1 -2
  366. package/esm5/src/view/pure_expression.js +1 -2
  367. package/esm5/src/view/query.js +1 -2
  368. package/esm5/src/view/refs.js +1 -2
  369. package/esm5/src/view/services.js +1 -2
  370. package/esm5/src/view/text.js +1 -2
  371. package/esm5/src/view/types.js +1 -2
  372. package/esm5/src/view/util.js +1 -2
  373. package/esm5/src/view/view.js +1 -2
  374. package/esm5/src/view/view_attach.js +1 -2
  375. package/esm5/src/zone/ng_zone.js +1 -2
  376. package/esm5/src/zone.js +1 -2
  377. package/esm5/testing/index.js +1 -2
  378. package/esm5/testing/public_api.js +1 -2
  379. package/esm5/testing/src/async.js +1 -2
  380. package/esm5/testing/src/async_fallback.js +1 -2
  381. package/esm5/testing/src/async_test_completer.js +1 -2
  382. package/esm5/testing/src/before_each.js +1 -2
  383. package/esm5/testing/src/component_fixture.js +1 -2
  384. package/esm5/testing/src/fake_async.js +1 -2
  385. package/esm5/testing/src/fake_async_fallback.js +1 -2
  386. package/esm5/testing/src/lang_utils.js +1 -2
  387. package/esm5/testing/src/logger.js +1 -2
  388. package/esm5/testing/src/metadata_override.js +1 -2
  389. package/esm5/testing/src/metadata_overrider.js +1 -2
  390. package/esm5/testing/src/ng_zone_mock.js +1 -2
  391. package/esm5/testing/src/private_export_testing.js +1 -2
  392. package/esm5/testing/src/r3_test_bed.js +182 -121
  393. package/esm5/testing/src/resolvers.js +11 -7
  394. package/esm5/testing/src/test_bed.js +1 -2
  395. package/esm5/testing/src/test_bed_common.js +1 -2
  396. package/esm5/testing/src/test_compiler.js +1 -2
  397. package/esm5/testing/src/testing.js +1 -2
  398. package/esm5/testing/src/testing_internal.js +2 -3
  399. package/esm5/testing/testing.js +1 -2
  400. package/fesm2015/core.js +8560 -6153
  401. package/fesm2015/core.js.map +1 -1
  402. package/fesm2015/testing.js +351 -229
  403. package/fesm2015/testing.js.map +1 -1
  404. package/fesm5/core.js +5541 -4482
  405. package/fesm5/core.js.map +1 -1
  406. package/fesm5/testing.js +185 -130
  407. package/fesm5/testing.js.map +1 -1
  408. package/package.json +1 -1
  409. package/src/change_detection/constants.d.ts +2 -2
  410. package/src/core_render3_private_export.d.ts +6 -3
  411. package/src/di/injectable.d.ts +3 -2
  412. package/src/di/r3_injector.d.ts +1 -1
  413. package/src/linker/ng_module_factory_loader.d.ts +5 -1
  414. package/src/render3/assert.d.ts +6 -0
  415. package/src/render3/bindings.d.ts +20 -0
  416. package/src/render3/component.d.ts +3 -3
  417. package/src/render3/component_ref.d.ts +14 -4
  418. package/src/render3/context_discovery.d.ts +9 -9
  419. package/src/render3/definition.d.ts +8 -23
  420. package/src/render3/di.d.ts +19 -17
  421. package/src/render3/discovery_utils.d.ts +66 -8
  422. package/src/render3/empty.d.ts +16 -0
  423. package/src/render3/errors.d.ts +1 -1
  424. package/src/render3/global_utils_api.d.ts +1 -1
  425. package/src/render3/hooks.d.ts +7 -6
  426. package/src/render3/index.d.ts +4 -4
  427. package/src/render3/instructions.d.ts +163 -118
  428. package/src/render3/interfaces/container.d.ts +9 -8
  429. package/src/render3/interfaces/context.d.ts +3 -3
  430. package/src/render3/interfaces/definition.d.ts +2 -12
  431. package/src/render3/interfaces/i18n.d.ts +25 -25
  432. package/src/render3/interfaces/injector.d.ts +8 -9
  433. package/src/render3/interfaces/node.d.ts +56 -23
  434. package/src/render3/interfaces/renderer.d.ts +2 -1
  435. package/src/render3/interfaces/styling.d.ts +392 -117
  436. package/src/render3/interfaces/view.d.ts +49 -35
  437. package/src/render3/jit/compiler_facade_interface.d.ts +10 -3
  438. package/src/render3/jit/module.d.ts +9 -1
  439. package/src/render3/metadata.d.ts +1 -1
  440. package/src/render3/ng_module_ref.d.ts +8 -6
  441. package/src/render3/node_manipulation.d.ts +21 -27
  442. package/src/render3/node_selector_matcher.d.ts +2 -2
  443. package/src/render3/state.d.ts +11 -38
  444. package/src/render3/styling/class_and_style_bindings.d.ts +130 -43
  445. package/src/render3/styling/util.d.ts +9 -4
  446. package/src/render3/util.d.ts +31 -25
  447. package/src/render3/view_engine_compatibility.d.ts +5 -12
  448. package/src/render3/view_engine_compatibility_prebound.d.ts +2 -2
  449. package/src/render3/view_ref.d.ts +2 -2
  450. package/src/sanitization/sanitization.d.ts +3 -2
  451. package/testing/src/r3_test_bed.d.ts +15 -0
  452. package/testing/src/resolvers.d.ts +2 -2
  453. package/testing/testing.metadata.json +1 -1
  454. package/testing.d.ts +5 -0
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v7.2.0-beta.0
2
+ * @license Angular v7.2.0
3
3
  * (c) 2010-2018 Google, Inc. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -25,7 +25,7 @@
25
25
  * Use of this source code is governed by an MIT-style license that can be
26
26
  * found in the LICENSE file at https://angular.io/license
27
27
  */
28
- function C(e){return{providedIn:e.providedIn||null,factory:e.factory,value:void 0}}function x(e){return{factory:e.factory,providers:e.providers||[],imports:e.imports||[]}}function I(e){return e.hasOwnProperty(g)?e[g]:null}function k(e){return e.hasOwnProperty(y)?e[y]:null}
28
+ function C(e){return{providedIn:e.providedIn||null,factory:e.factory,value:void 0}}function x(e){return{factory:e.factory,providers:e.providers||[],imports:e.imports||[]}}function I(e){return e&&e.hasOwnProperty(g)?e[g]:null}function k(e){return e&&e.hasOwnProperty(y)?e[y]:null}
29
29
  /**
30
30
  * @license
31
31
  * Copyright Google Inc. All Rights Reserved.
@@ -39,14 +39,14 @@ function C(e){return{providedIn:e.providedIn||null,factory:e.factory,value:void
39
39
  *
40
40
  * Use of this source code is governed by an MIT-style license that can be
41
41
  * found in the LICENSE file at https://angular.io/license
42
- */function N(e,t,n,r,o){var i=D(t);function a(){for(var e,t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];if(this instanceof a)return i.call.apply(i,f([this],t)),this;var u=new((e=a).bind.apply(e,f([void 0],t)));return function e(n){return o&&o.apply(void 0,f([n],t)),(n.hasOwnProperty(O)?n[O]:Object.defineProperty(n,O,{value:[]})[O]).push(u),r&&r(n),n}}return n&&(a.prototype=Object.create(n.prototype)),a.prototype.ngMetadataName=e,a.annotationCls=a,a}function D(e){return function t(){for(var n=[],r=0;r<arguments.length;r++)n[r]=arguments[r];if(e){var o=e.apply(void 0,f(n));for(var i in o)this[i]=o[i]}}}function R(e,t,n){var r=D(t);function o(){for(var e,t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];if(this instanceof o)return r.apply(this,t),this;var i=new((e=o).bind.apply(e,f([void 0],t)));return a.annotation=i,a;function a(e,t,n){for(var r=e.hasOwnProperty(T)?e[T]:Object.defineProperty(e,T,{value:[]})[T];r.length<=n;)r.push(null);return(r[n]=r[n]||[]).push(i),e}}return n&&(o.prototype=Object.create(n.prototype)),o.prototype.ngMetadataName=e,o.annotationCls=o,o}function j(e,t,n,r){var o=D(t);function i(){for(var e,t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];if(this instanceof i)return o.apply(this,t),this;var a=new((e=i).bind.apply(e,f([void 0],t)));return function u(e,n){var o=e.constructor,i=o.hasOwnProperty(P)?o[P]:Object.defineProperty(o,P,{value:{}})[P];i[n]=i.hasOwnProperty(n)&&i[n]||[],i[n].unshift(a),r&&r.apply(void 0,f([e,n],t))}}return n&&(i.prototype=Object.create(n.prototype)),i.prototype.ngMetadataName=e,i.annotationCls=i,i}
42
+ */function N(e,t,n,r,o){var i=R(t);function a(){for(var e,t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];if(this instanceof a)return i.call.apply(i,f([this],t)),this;var u=new((e=a).bind.apply(e,f([void 0],t)));return function e(n){return o&&o.apply(void 0,f([n],t)),(n.hasOwnProperty(O)?n[O]:Object.defineProperty(n,O,{value:[]})[O]).push(u),r&&r(n),n}}return n&&(a.prototype=Object.create(n.prototype)),a.prototype.ngMetadataName=e,a.annotationCls=a,a}function R(e){return function t(){for(var n=[],r=0;r<arguments.length;r++)n[r]=arguments[r];if(e){var o=e.apply(void 0,f(n));for(var i in o)this[i]=o[i]}}}function j(e,t,n){var r=R(t);function o(){for(var e,t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];if(this instanceof o)return r.apply(this,t),this;var i=new((e=o).bind.apply(e,f([void 0],t)));return a.annotation=i,a;function a(e,t,n){for(var r=e.hasOwnProperty(T)?e[T]:Object.defineProperty(e,T,{value:[]})[T];r.length<=n;)r.push(null);return(r[n]=r[n]||[]).push(i),e}}return n&&(o.prototype=Object.create(n.prototype)),o.prototype.ngMetadataName=e,o.annotationCls=o,o}function D(e,t,n,r){var o=R(t);function i(){for(var e,t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];if(this instanceof i)return o.apply(this,t),this;var a=new((e=i).bind.apply(e,f([void 0],t)));return function u(e,n){var o=e.constructor,i=o.hasOwnProperty(P)?o[P]:Object.defineProperty(o,P,{value:{}})[P];i[n]=i.hasOwnProperty(n)&&i[n]||[],i[n].unshift(a),r&&r.apply(void 0,f([e,n],t))}}return n&&(i.prototype=Object.create(n.prototype)),i.prototype.ngMetadataName=e,i.annotationCls=i,i}
43
43
  /**
44
44
  * @license
45
45
  * Copyright Google Inc. All Rights Reserved.
46
46
  *
47
47
  * Use of this source code is governed by an MIT-style license that can be
48
48
  * found in the LICENSE file at https://angular.io/license
49
- */var A,S,V,M=new E("AnalyzeForEntryComponents"),F=R("Attribute",function(e){return{attributeName:e}}),H=j("ContentChildren",function(e,t){return void 0===t&&(t={}),i({selector:e,first:!1,isViewQuery:!1,descendants:!1},t)},V=function V(){}),L=j("ContentChild",function(e,t){return void 0===t&&(t={}),i({selector:e,first:!0,isViewQuery:!1,descendants:!0},t)},V),B=j("ViewChildren",function(e,t){return void 0===t&&(t={}),i({selector:e,first:!1,isViewQuery:!0,descendants:!0},t)},V),U=j("ViewChild",function(e,t){return i({selector:e,first:!0,isViewQuery:!0,descendants:!0},t)},V);(
49
+ */var A,S,V,M=new E("AnalyzeForEntryComponents"),F=j("Attribute",function(e){return{attributeName:e}}),H=D("ContentChildren",function(e,t){return void 0===t&&(t={}),i({selector:e,first:!1,isViewQuery:!1,descendants:!1},t)},V=function V(){}),L=D("ContentChild",function(e,t){return void 0===t&&(t={}),i({selector:e,first:!0,isViewQuery:!1,descendants:!0},t)},V),B=D("ViewChildren",function(e,t){return void 0===t&&(t={}),i({selector:e,first:!1,isViewQuery:!0,descendants:!0},t)},V),U=D("ViewChild",function(e,t){return i({selector:e,first:!0,isViewQuery:!0,descendants:!0},t)},V);(
50
50
  /**
51
51
  * @license
52
52
  * Copyright Google Inc. All Rights Reserved.
@@ -54,14 +54,15 @@ function C(e){return{providedIn:e.providedIn||null,factory:e.factory,value:void
54
54
  * Use of this source code is governed by an MIT-style license that can be
55
55
  * found in the LICENSE file at https://angular.io/license
56
56
  */
57
- A=e.ChangeDetectionStrategy||(e.ChangeDetectionStrategy={}))[A.OnPush=0]="OnPush",A[A.Default=1]="Default",(S=e.ɵChangeDetectorStatus||(e.ɵChangeDetectorStatus={}))[S.CheckOnce=0]="CheckOnce",S[S.Checked=1]="Checked",S[S.CheckAlways=2]="CheckAlways",S[S.Detached=3]="Detached",S[S.Errored=4]="Errored",S[S.Destroyed=5]="Destroyed";var z,Q=new Set;function Z(e){return e.templateUrl||e.styleUrls&&e.styleUrls.length}function q(e){return"string"==typeof e?e:e.text()}
57
+ A=e.ChangeDetectionStrategy||(e.ChangeDetectionStrategy={}))[A.OnPush=0]="OnPush",A[A.Default=1]="Default",(S=e.ɵChangeDetectorStatus||(e.ɵChangeDetectorStatus={}))[S.CheckOnce=0]="CheckOnce",S[S.Checked=1]="Checked",S[S.CheckAlways=2]="CheckAlways",S[S.Detached=3]="Detached",S[S.Errored=4]="Errored",S[S.Destroyed=5]="Destroyed";
58
58
  /**
59
59
  * @license
60
60
  * Copyright Google Inc. All Rights Reserved.
61
61
  *
62
62
  * Use of this source code is governed by an MIT-style license that can be
63
63
  * found in the LICENSE file at https://angular.io/license
64
- */(
64
+ */
65
+ var z="undefined"!=typeof window&&window,Q="undefined"!=typeof self&&"undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope&&self,Z="undefined"!=typeof global&&global||z||Q,q=Promise.resolve(0),K=null;function W(){if(!K){var e=Z.Symbol;if(e&&e.iterator)K=e.iterator;else for(var t=Object.getOwnPropertyNames(Map.prototype),n=0;n<t.length;++n){var r=t[n];"entries"!==r&&"size"!==r&&Map.prototype[r]===Map.prototype.entries&&(K=r)}}return K}function G(e){"undefined"==typeof Zone?q.then(function(){e&&e.apply(null,null)}):Zone.current.scheduleMicroTask("scheduleMicrotask",e)}function Y(e,t){return e===t||"number"==typeof e&&"number"==typeof t&&isNaN(e)&&isNaN(t)}function $(e){if("string"==typeof e)return e;if(e instanceof Array)return"["+e.map($).join(", ")+"]";if(null==e)return""+e;if(e.overriddenName)return""+e.overriddenName;if(e.name)return""+e.name;var t=e.toString();if(null==t)return""+t;var n=t.indexOf("\n");return-1===n?t:t.substring(0,n)}
65
66
  /**
66
67
  * @license
67
68
  * Copyright Google Inc. All Rights Reserved.
@@ -69,30 +70,37 @@ A=e.ChangeDetectionStrategy||(e.ChangeDetectionStrategy={}))[A.OnPush=0]="OnPush
69
70
  * Use of this source code is governed by an MIT-style license that can be
70
71
  * found in the LICENSE file at https://angular.io/license
71
72
  */
72
- z=e.ViewEncapsulation||(e.ViewEncapsulation={}))[z.Emulated=0]="Emulated",z[z.Native=1]="Native",z[z.None=2]="None",z[z.ShadowDom=3]="ShadowDom";
73
+ var J=d({__forward_ref__:d});function X(e){return e.__forward_ref__=X,e.toString=function(){return $(this())},e}function ee(e){var t=e;return"function"==typeof t&&t.hasOwnProperty(J)&&t.__forward_ref__===X?t():e}
73
74
  /**
74
75
  * @license
75
76
  * Copyright Google Inc. All Rights Reserved.
76
77
  *
77
78
  * Use of this source code is governed by an MIT-style license that can be
78
79
  * found in the LICENSE file at https://angular.io/license
79
- */
80
- var K="undefined"!=typeof window&&window,W="undefined"!=typeof self&&"undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope&&self,G="undefined"!=typeof global&&global||K||W,Y=Promise.resolve(0),$=null;function J(){if(!$){var e=G.Symbol;if(e&&e.iterator)$=e.iterator;else for(var t=Object.getOwnPropertyNames(Map.prototype),n=0;n<t.length;++n){var r=t[n];"entries"!==r&&"size"!==r&&Map.prototype[r]===Map.prototype.entries&&($=r)}}return $}function X(e){"undefined"==typeof Zone?Y.then(function(){e&&e.apply(null,null)}):Zone.current.scheduleMicroTask("scheduleMicrotask",e)}function ee(e,t){return e===t||"number"==typeof e&&"number"==typeof t&&isNaN(e)&&isNaN(t)}function te(e){if("string"==typeof e)return e;if(e instanceof Array)return"["+e.map(te).join(", ")+"]";if(null==e)return""+e;if(e.overriddenName)return""+e.overriddenName;if(e.name)return""+e.name;var t=e.toString();if(null==t)return""+t;var n=t.indexOf("\n");return-1===n?t:t.substring(0,n)}
80
+ */var te,ne=new Set;function re(e){return e.templateUrl||e.styleUrls&&e.styleUrls.length}function oe(e){return"string"==typeof e?e:e.text()}
81
81
  /**
82
82
  * @license
83
83
  * Copyright Google Inc. All Rights Reserved.
84
84
  *
85
85
  * Use of this source code is governed by an MIT-style license that can be
86
86
  * found in the LICENSE file at https://angular.io/license
87
- */
88
- var ne={},re=[],oe=0;function ie(t){var n=t.type,r=n.prototype,o={},i={type:n,providersResolver:null,consts:t.consts,vars:t.vars,hostVars:t.hostVars||0,factory:t.factory,template:t.template||null,hostBindings:t.hostBindings||null,contentQueries:t.contentQueries||null,contentQueriesRefresh:t.contentQueriesRefresh||null,attributes:t.attributes||null,declaredInputs:o,inputs:null,outputs:null,exportAs:t.exportAs||null,onInit:r.ngOnInit||null,doCheck:r.ngDoCheck||null,afterContentInit:r.ngAfterContentInit||null,afterContentChecked:r.ngAfterContentChecked||null,afterViewInit:r.ngAfterViewInit||null,afterViewChecked:r.ngAfterViewChecked||null,onDestroy:r.ngOnDestroy||null,onPush:t.changeDetection===e.ChangeDetectionStrategy.OnPush,directiveDefs:null,pipeDefs:null,selectors:t.selectors,viewQuery:t.viewQuery||null,features:t.features||null,data:t.data||{},encapsulation:t.encapsulation||e.ViewEncapsulation.Emulated,id:"c",styles:t.styles||re,_:null};return i._=function a(e){return""+{toString:e}}
87
+ */(
89
88
  /**
90
89
  * @license
91
90
  * Copyright Google Inc. All Rights Reserved.
92
91
  *
93
92
  * Use of this source code is governed by an MIT-style license that can be
94
93
  * found in the LICENSE file at https://angular.io/license
95
- */(function(){var e=t.directives,n=t.features,r=t.pipes;i.id+=oe++,i.inputs=le(t.inputs,o),i.outputs=le(t.outputs),n&&n.forEach(function(e){return e(i)}),i.directiveDefs=e?function(){return("function"==typeof e?e():e).map(ae)}:null,i.pipeDefs=r?function(){return("function"==typeof r?r():r).map(ue)}:null}),i}function ae(e){return he(e)||ve(e)}function ue(e){return ge(e)}function se(e){return{type:e.type,bootstrap:e.bootstrap||re,declarations:e.declarations||re,imports:e.imports||re,exports:e.exports||re,transitiveCompileScopes:null}}function le(e,t){if(null==e)return ne;var n={};for(var r in e)if(e.hasOwnProperty(r)){var o=e[r],i=o;Array.isArray(o)&&(i=o[1],o=o[0]),n[o]=r,t&&(t[i]=r)}return n}function ce(e){var t={};return{inputs:le(e.inputs,t),declaredInputs:t,outputs:le(e.outputs)}}var fe,de=ie;function pe(e){return{name:e.name,factory:e.factory,pure:!1!==e.pure,onDestroy:e.type.prototype.ngOnDestroy||null}}function he(e){return e[h]||null}function ve(e){return e[v]||null}function ge(e){return e[m]||null}function ye(e){return e[_]||null}
94
+ */
95
+ te=e.ViewEncapsulation||(e.ViewEncapsulation={}))[te.Emulated=0]="Emulated",te[te.Native=1]="Native",te[te.None=2]="None",te[te.ShadowDom=3]="ShadowDom";
96
+ /**
97
+ * @license
98
+ * Copyright Google Inc. All Rights Reserved.
99
+ *
100
+ * Use of this source code is governed by an MIT-style license that can be
101
+ * found in the LICENSE file at https://angular.io/license
102
+ */
103
+ var ie={},ae=[],ue=0;function se(t){var n=t.type,r=n.prototype,o={},i={type:n,providersResolver:null,consts:t.consts,vars:t.vars,factory:t.factory,template:t.template||null,hostBindings:t.hostBindings||null,contentQueries:t.contentQueries||null,contentQueriesRefresh:t.contentQueriesRefresh||null,attributes:t.attributes||null,declaredInputs:o,inputs:null,outputs:null,exportAs:t.exportAs||null,onInit:r.ngOnInit||null,doCheck:r.ngDoCheck||null,afterContentInit:r.ngAfterContentInit||null,afterContentChecked:r.ngAfterContentChecked||null,afterViewInit:r.ngAfterViewInit||null,afterViewChecked:r.ngAfterViewChecked||null,onDestroy:r.ngOnDestroy||null,onPush:t.changeDetection===e.ChangeDetectionStrategy.OnPush,directiveDefs:null,pipeDefs:null,selectors:t.selectors,viewQuery:t.viewQuery||null,features:t.features||null,data:t.data||{},encapsulation:t.encapsulation||e.ViewEncapsulation.Emulated,id:"c",styles:t.styles||ae,_:null};return i._=function a(e){return""+{toString:e}}(function(){var e=t.directives,n=t.features,r=t.pipes;i.id+=ue++,i.inputs=de(t.inputs,o),i.outputs=de(t.outputs),n&&n.forEach(function(e){return e(i)}),i.directiveDefs=e?function(){return("function"==typeof e?e():e).map(le)}:null,i.pipeDefs=r?function(){return("function"==typeof r?r():r).map(ce)}:null}),i}function le(e){return ge(e)||ye(e)}function ce(e){return me(e)}function fe(e){return{type:e.type,bootstrap:e.bootstrap||ae,declarations:e.declarations||ae,imports:e.imports||ae,exports:e.exports||ae,transitiveCompileScopes:null}}function de(e,t){if(null==e)return ie;var n={};for(var r in e)if(e.hasOwnProperty(r)){var o=e[r],i=o;Array.isArray(o)&&(i=o[1],o=o[0]),n[o]=r,t&&(t[o]=i)}return n}function pe(e){var t={};return{inputs:de(e.inputs,t),declaredInputs:t,outputs:de(e.outputs)}}var he=se;function ve(e){return{name:e.name,factory:e.factory,pure:!1!==e.pure,onDestroy:e.type.prototype.ngOnDestroy||null}}function ge(e){return e[h]||null}function ye(e){return e[v]||null}function me(e){return e[m]||null}function _e(e,t){var n=e[_]||null;if(!n&&!0===t)throw new Error("Type "+$(e)+" does not have 'ngModuleDef' property.");return n}
96
104
  /**
97
105
  * @license
98
106
  * Copyright Google Inc. All Rights Reserved.
@@ -107,14 +115,14 @@ var ne={},re=[],oe=0;function ie(t){var n=t.type,r=n.prototype,o={},i={type:n,pr
107
115
  * Use of this source code is governed by an MIT-style license that can be
108
116
  * found in the LICENSE file at https://angular.io/license
109
117
  */
110
- function me(){var e=G.ng;if(!e||!e.ɵcompilerFacade)throw new Error("Angular JIT compilation failed: '@angular/compiler' not loaded!\n - JIT compilation is discouraged for production use-cases! Consider AOT mode instead.\n - Did you bootstrap using '@angular/platform-browser-dynamic' or '@angular/platform-server'?\n - Alternatively provide the compiler with 'import \"@angular/compiler\";' before bootstrapping.");return e.ɵcompilerFacade}
118
+ var we,be=0,Ce=1,xe=2,Ie=3,ke=4,Ee=5,Oe=6,Te=7,Pe=8,Ne=9,Re=10,je=11,De=12,Ae=13,Se=14,Ve=15,Me=16,Fe=17,He=18,Le=0,Be=1,Ue=6,ze=7,Qe=8,Ze="__ngContext__",qe=8,Ke=8,We=9,Ge=-1,Ye=(we=function we(e,t,n){this.factory=e,this.resolving=!1,this.canSeeViewProviders=t,this.injectImpl=n}).prototype;function $e(e){return"function"==typeof e?e.name||e:"string"==typeof e?e:null==e?"":"object"==typeof e&&"function"==typeof e.type?e.type.name||e.type:""+e}function Je(e,t){return e[t+He]}function Xe(e){for(;Array.isArray(e);)e=e[Ee];return e}function et(e,t){return Xe(t[e+He])}function tt(e,t){return Xe(t[e.index])}function nt(e,t){return t[be].data[e+He]}function rt(e,t){var n=t[e];return n.length>=He?n:n[Ee]}function ot(e){return 0!=(4&e.flags)}function it(e){return 1==(1&e.flags)}function at(e){return null!==e.template}function ut(e){return Array.isArray(e)&&e.length===Qe}function st(e){return 0!=(128&e[Ce])}function lt(e){for(var t=Array.isArray(e)?e:dt(e);t&&!(128&t[Ce]);)t=t[xe];return t}function ct(e){return lt(e)[Ne]}function ft(e){return e[Ze]}function dt(e){var t=ft(e);return t?Array.isArray(t)?t:t.lView:null}function pt(e){return e!==Ge}function ht(e){return 32767&e}function vt(e){return e>>16}function gt(e,t){for(var n=vt(e),r=t;n>0;)r=r[Fe],n--;return r}var yt,mt=("undefined"!=typeof requestAnimationFrame&&requestAnimationFrame||setTimeout).bind(Z);function _t(e,t){for(var n=0;n<e.length;n++)t.push(e[n])}function wt(e){for(var t=e[Oe];t&&2===t.type;)t=(e=e[Fe])[Oe];return e}
111
119
  /**
112
120
  * @license
113
121
  * Copyright Google Inc. All Rights Reserved.
114
122
  *
115
123
  * Use of this source code is governed by an MIT-style license that can be
116
124
  * found in the LICENSE file at https://angular.io/license
117
- */!function(e){e[e.Token=0]="Token",e[e.Attribute=1]="Attribute"}(fe||(fe={}));var _e,we=R("Inject",function(e){return{token:e}}),be=R("Optional"),Ce=R("Self"),xe=R("SkipSelf"),Ie=R("Host");(
125
+ */
118
126
  /**
119
127
  * @license
120
128
  * Copyright Google Inc. All Rights Reserved.
@@ -122,14 +130,14 @@ function me(){var e=G.ng;if(!e||!e.ɵcompilerFacade)throw new Error("Angular JIT
122
130
  * Use of this source code is governed by an MIT-style license that can be
123
131
  * found in the LICENSE file at https://angular.io/license
124
132
  */
125
- _e=e.InjectFlags||(e.InjectFlags={}))[_e.Default=0]="Default",_e[_e.Host=1]="Host",_e[_e.Self=2]="Self",_e[_e.SkipSelf=4]="SkipSelf",_e[_e.Optional=8]="Optional";var ke,Ee=void 0;function Oe(e){var t=Ee;return Ee=e,t}function Te(e){var t=ke;return ke=e,t}function Pe(t,n){if(void 0===n&&(n=e.InjectFlags.Default),void 0===Ee)throw new Error("inject() must be called from an injection context");return null===Ee?De(t,void 0,n):Ee.get(t,n&e.InjectFlags.Optional?null:void 0,n)}function Ne(t,n){return void 0===n&&(n=e.InjectFlags.Default),(ke||Pe)(t,n)}function De(t,n,r){var o=I(t);if(o&&"root"==o.providedIn)return void 0===o.value?o.value=o.factory():o.value;if(r&e.InjectFlags.Optional)return null;if(void 0!==n)return n;throw new Error("Injector: NOT_FOUND ["+te(t)+"]")}function Re(t){for(var n=[],r=0;r<t.length;r++){var o=t[r];if(Array.isArray(o)){if(0===o.length)throw new Error("Arguments array must have arguments.");for(var i=void 0,a=e.InjectFlags.Default,u=0;u<o.length;u++){var s=o[u];s instanceof be||"Optional"===s.ngMetadataName?a|=e.InjectFlags.Optional:s instanceof xe||"SkipSelf"===s.ngMetadataName?a|=e.InjectFlags.SkipSelf:s instanceof Ce||"Self"===s.ngMetadataName?a|=e.InjectFlags.Self:i=s instanceof we?s.token:s}n.push(Ne(i,a))}else n.push(Ne(o))}return n}
133
+ function bt(){var e=Z.ng;if(!e||!e.ɵcompilerFacade)throw new Error("Angular JIT compilation failed: '@angular/compiler' not loaded!\n - JIT compilation is discouraged for production use-cases! Consider AOT mode instead.\n - Did you bootstrap using '@angular/platform-browser-dynamic' or '@angular/platform-server'?\n - Alternatively provide the compiler with 'import \"@angular/compiler\";' before bootstrapping.");return e.ɵcompilerFacade}
126
134
  /**
127
135
  * @license
128
136
  * Copyright Google Inc. All Rights Reserved.
129
137
  *
130
138
  * Use of this source code is governed by an MIT-style license that can be
131
139
  * found in the LICENSE file at https://angular.io/license
132
- */
140
+ */!function(e){e[e.Token=0]="Token",e[e.Attribute=1]="Attribute"}(yt||(yt={}));var Ct,xt=j("Inject",function(e){return{token:e}}),It=j("Optional"),kt=j("Self"),Et=j("SkipSelf"),Ot=j("Host");(
133
141
  /**
134
142
  * @license
135
143
  * Copyright Google Inc. All Rights Reserved.
@@ -137,7 +145,7 @@ _e=e.InjectFlags||(e.InjectFlags={}))[_e.Default=0]="Default",_e[_e.Host=1]="Hos
137
145
  * Use of this source code is governed by an MIT-style license that can be
138
146
  * found in the LICENSE file at https://angular.io/license
139
147
  */
140
- var je,Ae=8,Se=8,Ve=9,Me=-1,Fe=(je=function je(e,t,n){this.factory=e,this.resolving=!1,this.canSeeViewProviders=t,this.injectImpl=n}).prototype,He=0,Le=1,Be=2,Ue=3,ze=4,Qe=5,Ze=6,qe=7,Ke=8,We=9,Ge=10,Ye=11,$e=12,Je=13,Xe=14,et=15,tt=16,nt=17,rt=18;
148
+ Ct=e.InjectFlags||(e.InjectFlags={}))[Ct.Default=0]="Default",Ct[Ct.Host=1]="Host",Ct[Ct.Self=2]="Self",Ct[Ct.SkipSelf=4]="SkipSelf",Ct[Ct.Optional=8]="Optional";var Tt,Pt,Nt=void 0;function Rt(e){var t=Nt;return Nt=e,t}function jt(e){var t=Tt;return Tt=e,t}function Dt(t,n){if(void 0===n&&(n=e.InjectFlags.Default),void 0===Nt)throw new Error("inject() must be called from an injection context");return null===Nt?St(t,void 0,n):Nt.get(t,n&e.InjectFlags.Optional?null:void 0,n)}function At(t,n){return void 0===n&&(n=e.InjectFlags.Default),(Tt||Dt)(t,n)}function St(t,n,r){var o=I(t);if(o&&"root"==o.providedIn)return void 0===o.value?o.value=o.factory():o.value;if(r&e.InjectFlags.Optional)return null;if(void 0!==n)return n;throw new Error("Injector: NOT_FOUND ["+$(t)+"]")}function Vt(t){for(var n=[],r=0;r<t.length;r++){var o=t[r];if(Array.isArray(o)){if(0===o.length)throw new Error("Arguments array must have arguments.");for(var i=void 0,a=e.InjectFlags.Default,u=0;u<o.length;u++){var s=o[u];s instanceof It||"Optional"===s.ngMetadataName?a|=e.InjectFlags.Optional:s instanceof Et||"SkipSelf"===s.ngMetadataName?a|=e.InjectFlags.SkipSelf:s instanceof kt||"Self"===s.ngMetadataName?a|=e.InjectFlags.Self:i=s instanceof xt?s.token:s}n.push(At(i,a))}else n.push(At(o))}return n}
141
149
  /**
142
150
  * @license
143
151
  * Copyright Google Inc. All Rights Reserved.
@@ -145,121 +153,121 @@ var je,Ae=8,Se=8,Ve=9,Me=-1,Fe=(je=function je(e,t,n){this.factory=e,this.resolv
145
153
  * Use of this source code is governed by an MIT-style license that can be
146
154
  * found in the LICENSE file at https://angular.io/license
147
155
  */
148
- function ot(e,t,n,r){t&&(r.initHooks||(r.initHooks=[])).push(e,t),n&&((r.initHooks||(r.initHooks=[])).push(e,n),(r.checkHooks||(r.checkHooks=[])).push(e,n))}function it(e,t){if(t.firstTemplatePass)for(var n=e>>16,r=n+(4095&e),o=n;o<r;o++){var i=t.data[o];at(i,t,o),ut(i,t,o),st(i,t,o)}}function at(e,t,n){e.afterContentInit&&(t.contentHooks||(t.contentHooks=[])).push(n,e.afterContentInit),e.afterContentChecked&&((t.contentHooks||(t.contentHooks=[])).push(n,e.afterContentChecked),(t.contentCheckHooks||(t.contentCheckHooks=[])).push(n,e.afterContentChecked))}function ut(e,t,n){e.afterViewInit&&(t.viewHooks||(t.viewHooks=[])).push(n,e.afterViewInit),e.afterViewChecked&&((t.viewHooks||(t.viewHooks=[])).push(n,e.afterViewChecked),(t.viewCheckHooks||(t.viewCheckHooks=[])).push(n,e.afterViewChecked))}function st(e,t,n){null!=e.onDestroy&&(t.destroyHooks||(t.destroyHooks=[])).push(n,e.onDestroy)}function lt(e,t,n){16&e[Le]&&(ct(e,t.initHooks,t.checkHooks,n),e[Le]&=-17)}function ct(e,t,n,r){var o=r?t:n;o&&ft(e,o)}function ft(e,t){for(var n=0;n<t.length;n+=2)t[n+1].call(e[t[n]])}
149
156
  /**
150
157
  * @license
151
158
  * Copyright Google Inc. All Rights Reserved.
152
159
  *
153
160
  * Use of this source code is governed by an MIT-style license that can be
154
161
  * found in the LICENSE file at https://angular.io/license
155
- */function dt(e,t){var n=vt(e),r=vt(t);return n&&r?function o(e,t,n){for(var r=e[J()](),o=t[J()]();;){var i=r.next(),a=o.next();if(i.done&&a.done)return!0;if(i.done||a.done)return!1;if(!n(i.value,a.value))return!1}}(e,t,dt):!(n||!e||"object"!=typeof e&&"function"!=typeof e||r||!t||"object"!=typeof t&&"function"!=typeof t)||ee(e,t)}var pt=function(){function e(e){this.wrapped=e}return e.wrap=function(t){return new e(t)},e.unwrap=function(t){return e.isWrapped(t)?t.wrapped:t},e.isWrapped=function(t){return t instanceof e},e}(),ht=function(){function e(e,t,n){this.previousValue=e,this.currentValue=t,this.firstChange=n}return e.prototype.isFirstChange=function(){return this.firstChange},e}();function vt(e){return!!gt(e)&&(Array.isArray(e)||!(e instanceof Map)&&J()in e)}function gt(e){return null!==e&&("function"==typeof e||"object"==typeof e)}
162
+ */
163
+ function Mt(e,t,n,r){t&&(r.initHooks||(r.initHooks=[])).push(e,t),n&&((r.initHooks||(r.initHooks=[])).push(e,n),(r.checkHooks||(r.checkHooks=[])).push(e,n))}function Ft(e,t){if(e.firstTemplatePass)for(var n=t.directiveStart,r=t.directiveEnd;n<r;n++){var o=e.data[n];Ht(o,e,n),Lt(o,e,n),Bt(o,e,n)}}function Ht(e,t,n){e.afterContentInit&&(t.contentHooks||(t.contentHooks=[])).push(n,e.afterContentInit),e.afterContentChecked&&((t.contentHooks||(t.contentHooks=[])).push(n,e.afterContentChecked),(t.contentCheckHooks||(t.contentCheckHooks=[])).push(n,e.afterContentChecked))}function Lt(e,t,n){e.afterViewInit&&(t.viewHooks||(t.viewHooks=[])).push(n,e.afterViewInit),e.afterViewChecked&&((t.viewHooks||(t.viewHooks=[])).push(n,e.afterViewChecked),(t.viewCheckHooks||(t.viewCheckHooks=[])).push(n,e.afterViewChecked))}function Bt(e,t,n){null!=e.onDestroy&&(t.destroyHooks||(t.destroyHooks=[])).push(n,e.onDestroy)}function Ut(e,t,n){!n&&32&e[Ce]&&(zt(e,t.initHooks,t.checkHooks,n),e[Ce]&=-33)}function zt(e,t,n,r){if(!r){var o=2&e[Ce]?t:n;o&&Qt(e,o)}}function Qt(e,t){for(var n=0;n<t.length;n+=2)t[n+1].call(e[t[n]])}
156
164
  /**
157
165
  * @license
158
166
  * Copyright Google Inc. All Rights Reserved.
159
167
  *
160
168
  * Use of this source code is governed by an MIT-style license that can be
161
169
  * found in the LICENSE file at https://angular.io/license
162
- */var yt=0,mt=1,_t=6,wt=7,bt="__ngContext__";function Ct(e){return"function"==typeof e?e.name||e:"string"==typeof e?e:null==e?"":""+e}function xt(e,t){return t[e+rt]}function It(e){for(;Array.isArray(e);)e=e[Qe];return e}function kt(e,t){return It(t[e+rt])}function Et(e,t){return It(t[e.index])}function Ot(e,t){return t[He].data[e+rt]}function Tt(e,t){var n=t[e];return n.length>=rt?n:n[Qe]}function Pt(e){return 0!=(16384&e.flags)}function Nt(e){return 4096==(4096&e.flags)}function Dt(e){return null!==e.template}function Rt(e){return Array.isArray(e)&&"number"==typeof e[yt]}function jt(e){return 0!=(64&e[Le])}function At(e){for(var t=Array.isArray(e)?e:Mt(e);t&&!(64&t[Le]);)t=t[Be];return t}function St(e){return At(e)[We]}function Vt(e){return e[bt]}function Mt(e){var t=Vt(e);return t?Array.isArray(t)?t:t.lViewData:null}function Ft(e){return e!==Me}function Ht(e){return 32767&e}function Lt(e){return e>>16}function Bt(e,t){for(var n=Lt(e),r=t;n>0;)r=r[nt],n--;return r}var Ut,zt,Qt,Zt,qt,Kt,Wt,Gt,Yt,$t,Jt=("undefined"!=typeof requestAnimationFrame&&requestAnimationFrame||setTimeout).bind(G);function Xt(e,t){for(var n=0;n<e.length;n++)t.push(e[n])}
170
+ */var Zt,qt,Kt,Wt,Gt=null;function Yt(e){Gt=e}function $t(){Zt=!0}function Jt(){Zt=!1}function Xt(){return Wt}function en(e){sn=e}function tn(){return qt}function nn(e){qt=e}function rn(e,t){qt=e,Wt=t}function on(){return Kt}function an(e){Kt=e}function un(e){return void 0===e&&(e=Wt),1==(1&e[Ce])}var sn=null,ln=!1;function cn(){return ln}function fn(e){ln=e}var dn=!0;function pn(){return dn}function hn(e){dn=e}var vn=-1;function gn(){return vn}function yn(e){vn=e}function mn(e,t){var n=Wt;if(e){var r=e[be];dn=r.firstTemplatePass,vn=r.bindingStartIndex}return qt=t,Kt=!0,Wt=sn=e,n}function _n(e){return void 0===e&&(e=1),(sn=function t(e,n){for(;e>0;)n=n[Fe],e--;return n}(e,sn))[Ne]}function wn(e){var t=Wt[be];un(Wt)?Wt[Ce]&=-2:(zt(Wt,t.viewHooks,t.viewCheckHooks,ln),Wt[Ce]&=-11,Wt[Ce]|=32,Wt[Te]=t.bindingStartIndex),mn(e,null)}
163
171
  /**
164
172
  * @license
165
173
  * Copyright Google Inc. All Rights Reserved.
166
174
  *
167
175
  * Use of this source code is governed by an MIT-style license that can be
168
176
  * found in the LICENSE file at https://angular.io/license
169
- */function en(){return Ut}function tn(){return zt}function nn(){return $t&&$t[Je]}function rn(){Zt=!0}function on(){Zt=!1}function an(){return $t}function un(){return $t}function sn(e){_n=e}function ln(){return qt}function cn(e){qt=e}function fn(e,t){qt=e,$t=t}function dn(){return Kt}function pn(e){Kt=e}function hn(){return Wt}function vn(){return Gt}function gn(e){Gt=e}function yn(){return Yt}function mn(){return $t}var _n=null;function wn(e){return e[Ke]||(e[Ke]=[])}function bn(e){return e[He].cleanup||(e[He].cleanup=[])}var Cn=!1;function xn(){return Cn}function In(e){Cn=e}var kn=!0;function En(){return kn}function On(e){kn=e}var Tn=-1;function Pn(){return Tn}function Nn(e){Tn=e}function Dn(e,t){var n=$t;return Wt=e&&e[He],Yt=e&&1==(1&e[Le]),kn=e&&Wt.firstTemplatePass,Tn=e&&Wt.bindingStartIndex,zt=e&&e[Ye],Ut=e&&e[$e],qt=t,Kt=!0,$t=_n=e,n&&(n[ze]=Gt),Gt=e&&e[ze],n}function Rn(e){return void 0===e&&(e=1),(_n=function t(e,n){for(;e>0;)n=n[nt],e--;return n}(e,_n))[We]}function jn(e,t){t||(Cn||ct($t,Wt.viewHooks,Wt.viewCheckHooks,Yt),$t[Le]&=-6),$t[Le]|=16,$t[qe]=Wt.bindingStartIndex,Dn(e,null)}
177
+ */var bn=!0;function Cn(e){var t=bn;return bn=e,t}var xn=255,In=0;function kn(e,t){var n=On(e,t);if(-1!==n)return n;var r=t[be];r.firstTemplatePass&&(e.injectorIndex=t.length,En(r.data,e),En(t,null),En(r.blueprint,null));var o=Tn(e,t),i=ht(o),a=gt(o,t),u=e.injectorIndex;if(pt(o))for(var s=a[be].data,l=0;l<8;l++)t[u+l]=a[i+l]|s[i+l];return t[u+Ke]=o,u}function En(e,t){e.push(0,0,0,0,0,0,0,0,t)}function On(e,t){return-1===e.injectorIndex||e.parent&&e.parent.injectorIndex===e.injectorIndex||null==t[e.injectorIndex+Ke]?-1:e.injectorIndex}function Tn(e,t){if(e.parent&&-1!==e.parent.injectorIndex)return e.parent.injectorIndex;for(var n=t[Oe],r=1;n&&-1===n.injectorIndex;)n=(t=t[Fe])?t[Oe]:null,r++;return n?n.injectorIndex|r<<16:-1}function Pn(e,t,n){!function r(e,t,n){var r="string"!=typeof n?n[b]:n.charCodeAt(0)||0;null==r&&(r=n[b]=In++);var o=r&xn,i=1<<o,a=64&o,u=32&o,s=t.data;128&o?a?u?s[e+7]|=i:s[e+6]|=i:u?s[e+5]|=i:s[e+4]|=i:a?u?s[e+3]|=i:s[e+2]|=i:u?s[e+1]|=i:s[e]|=i}(e,t[be],n)}function Nn(e,t){var n=e.attrs;if(n)for(var r=0;r<n.length;r+=2){var o=n[r];if(3===o)break;if(o==t)return n[r+1]}return null}function Rn(t,n,r,o,i){if(void 0===o&&(o=e.InjectFlags.Default),t){var a=function u(e){if("string"==typeof e)return e.charCodeAt(0)||0;var t=e[b];return"number"==typeof t?t&xn:t}(r);if("function"==typeof a){var s=tn(),l=Xt();rn(t,n);try{var c=a();if(null!=c||o&e.InjectFlags.Optional)return c;throw new Error("No provider for "+$e(r)+"!")}finally{rn(s,l)}}else if("number"==typeof a){var f=null,d=On(t,n),p=Ge,h=o&e.InjectFlags.Host?wt(n)[Oe]:null;for((-1===d||o&e.InjectFlags.SkipSelf)&&(p=-1===d?Tn(t,n):n[d+Ke],Mn(o,!1)?(f=n[be],d=ht(p),n=gt(p,n)):d=-1);-1!==d;){p=n[d+Ke];var v=n[be];if(Vn(a,d,v.data)){var g=Dn(d,n,r,f,o,h);if(g!==jn)return g}Mn(o,n[be].data[d+qe]===h)&&Vn(a,d,n)?(f=v,d=ht(p),n=gt(p,n)):d=-1}}}if(o&e.InjectFlags.Optional&&void 0===i&&(i=null),0==(o&(e.InjectFlags.Self|e.InjectFlags.Host))){var y=n[Re];return y?y.get(r,i,o&e.InjectFlags.Optional):St(r,i,o&e.InjectFlags.Optional)}if(o&e.InjectFlags.Optional)return i;throw new Error("NodeInjector: NOT_FOUND ["+$e(r)+"]")}var jn={};function Dn(t,n,r,o,i,a){var u=n[be],s=u.data[t+qe],l=An(s,n,r,null==o?it(s)&&bn:o!=u&&3===s.type,i&e.InjectFlags.Host&&a===s);return null!==l?Sn(u.data,n,l,s):jn}function An(e,t,n,r,o){for(var i=e.providerIndexes,a=t[be].data,u=65535&i,s=e.directiveStart,l=i>>16,c=o?u+l:e.directiveEnd,f=r?u:u+l;f<c;f++){var d=a[f];if(f<s&&n===d||f>=s&&d.type===n)return f}if(o){var p=a[s];if(p&&at(p)&&p.type===n)return s}return null}function Sn(e,t,n,r){var o=t[n];if(function i(e){return null!=e&&"object"==typeof e&&Object.getPrototypeOf(e)==Ye}
170
178
  /**
171
179
  * @license
172
180
  * Copyright Google Inc. All Rights Reserved.
173
181
  *
174
182
  * Use of this source code is governed by an MIT-style license that can be
175
183
  * found in the LICENSE file at https://angular.io/license
176
- */
177
- var An=!1;function Sn(e){var t=An;return An=e,t}var Vn=255,Mn=0;function Fn(e,t){var n=Ln(e,t);if(-1!==n)return n;var r=t[He];r.firstTemplatePass&&(e.injectorIndex=t.length,Hn(r.data,e),Hn(t,null),Hn(r.blueprint,null));var o=Bn(e,t),i=Ht(o),a=Bt(o,t),u=e.injectorIndex;if(Ft(o))for(var s=a[He].data,l=0;l<8;l++)t[u+l]=a[i+l]|s[i+l];return t[u+Se]=o,u}function Hn(e,t){e.push(0,0,0,0,0,0,0,0,t)}function Ln(e,t){return-1===e.injectorIndex||e.parent&&e.parent.injectorIndex===e.injectorIndex||null==t[e.injectorIndex+Se]?-1:e.injectorIndex}function Bn(e,t){if(e.parent&&-1!==e.parent.injectorIndex)return e.parent.injectorIndex;for(var n=t[Ze],r=1;n&&-1===n.injectorIndex;)n=(t=t[nt])[Ze],r++;return n?n.injectorIndex|r<<16|(n&&3===n.type?32768:0):-1}function Un(e,t,n){!function r(e,t,n){var r=n[b];null==r&&(r=n[b]=Mn++);var o=r&Vn,i=1<<o,a=64&o,u=32&o,s=t.data;128&o?a?u?s[e+7]|=i:s[e+6]|=i:u?s[e+5]|=i:s[e+4]|=i:a?u?s[e+3]|=i:s[e+2]|=i:u?s[e+1]|=i:s[e]|=i}(e,t[He],n)}function zn(e,t){var n=e.attrs;if(n)for(var r=0;r<n.length;r+=2){var o=n[r];if(1===o)break;if(o==t)return n[r+1]}return null}function Qn(t,n,r,o,i){void 0===o&&(o=e.InjectFlags.Default);var a=function u(e){var t=e[b];return"number"==typeof t?t&Vn:t}(r);if("function"==typeof a){var s=ln(),l=mn();fn(t,n);try{var c=a();if(null!=c||o&e.InjectFlags.Optional)return c;throw new Error("No provider for "+Ct(r))}finally{fn(s,l)}}else if("number"==typeof a){var f=null,d=Ln(t,n),p=Me;for((-1===d||o&e.InjectFlags.SkipSelf)&&(Yn(o,p=-1===d?Bn(t,n):n[d+Se])?(f=n[He],d=Ht(p),n=Bt(p,n)):d=-1);-1!==d;){p=n[d+Se];var h=n[He];if(Gn(a,d,h.data)){var v=qn(d,n,r,f);if(v!==Zn)return v}Yn(o,p)&&Gn(a,d,n)?(f=h,d=Ht(p),n=Bt(p,n)):d=-1}}if(o&e.InjectFlags.Optional&&void 0===i&&(i=null),0==(o&(e.InjectFlags.Self|e.InjectFlags.Host))){var g=n[Ge];return g?g.get(r,i,o&e.InjectFlags.Optional):De(r,i,o&e.InjectFlags.Optional)}if(o&e.InjectFlags.Optional)return i;throw new Error("NodeInjector: NOT_FOUND ["+Ct(r)+"]")}var Zn={};function qn(e,t,n,r){var o=t[He],i=o.data[e+Ae],a=!1;(null==r&&Nt(i)&&An||null!=r&&r!=o&&(null==o.node||3===o.node.type))&&(a=!0);var u=Kn(i,t,n,a);return null!==u?Wn(o.data,t,u,i):Zn}function Kn(e,t,n,r){for(var o=e.flags,i=e.providerIndexes,a=t[He].data,u=65535&i,s=o>>16,l=4095&o,c=r?u:u+(i>>16);c<s+l;c++){var f=a[c];if(c<s&&n===f||c>=s&&f.type===n)return c}return null}function Wn(e,t,n,r){var o=t[n];if(function i(e){return null!=e&&"object"==typeof e&&Object.getPrototypeOf(e)==Fe}
184
+ */(o)){var a=o;if(a.resolving)throw new Error("Circular dep for "+$e(e[n]));var u=Cn(a.canSeeViewProviders);a.resolving=!0;var s=void 0;a.injectImpl&&(s=jt(a.injectImpl));var l=tn(),c=Xt();rn(r,t);try{o=t[n]=a.factory(null,e,t,r)}finally{a.injectImpl&&jt(s),Cn(u),a.resolving=!1,rn(l,c)}}return o}function Vn(e,t,n){var r=64&e,o=32&e;return!!((128&e?r?o?n[t+7]:n[t+6]:o?n[t+5]:n[t+4]:r?o?n[t+3]:n[t+2]:o?n[t+1]:n[t])&1<<e)}function Mn(t,n){return!(t&e.InjectFlags.Self||t&e.InjectFlags.Host&&n)}var Fn=function(){function e(e,t){this._tNode=e,this._lView=t}return e.prototype.get=function(e,t){return Rn(this._tNode,this._lView,e,void 0,t)},e}();function Hn(e){var t=e,n=ge(t)||ye(t)||me(t)||I(t)||k(t);return n&&void 0!==n.factory?n.factory:null}function Ln(e){var t=Hn(Object.getPrototypeOf(e.prototype).constructor);return null!==t?t:function(e){return new e}}
178
185
  /**
179
186
  * @license
180
187
  * Copyright Google Inc. All Rights Reserved.
181
188
  *
182
189
  * Use of this source code is governed by an MIT-style license that can be
183
190
  * found in the LICENSE file at https://angular.io/license
184
- */(o)){var a=o;if(a.resolving)throw new Error("Circular dep for "+Ct(e[n]));var u=Sn(a.canSeeViewProviders);a.resolving=!0;var s=void 0;a.injectImpl&&(s=Te(a.injectImpl));var l=ln(),c=mn();fn(r,t);try{o=t[n]=a.factory(null,e,t,r)}finally{a.injectImpl&&Te(s),Sn(u),a.resolving=!1,fn(l,c)}}return o}function Gn(e,t,n){var r=64&e,o=32&e;return!!((128&e?r?o?n[t+7]:n[t+6]:o?n[t+5]:n[t+4]:r?o?n[t+3]:n[t+2]:o?n[t+1]:n[t])&1<<e)}function Yn(t,n){return!(t&e.InjectFlags.Self||t&e.InjectFlags.Host&&32768&n)}var $n=function(){function e(e,t){this._tNode=e,this._lView=t,this._injectorIndex=Fn(e,t)}return e.prototype.get=function(e){var t=ln(),n=un();fn(this._tNode,this._lView);try{return Qn(this._tNode,this._lView,e)}finally{fn(t,n)}},e}();function Jn(e){var t=e,n=he(t)||ve(t)||ge(t)||I(t)||k(t);return n&&void 0!==n.factory?n.factory:null}function Xn(e){var t=Jn(Object.getPrototypeOf(e.prototype).constructor);return null!==t?t:function(e){return new e}}
191
+ */function Bn(e){var t=ft(e);if(t){if(Array.isArray(t)){var n=t,r=void 0,o=void 0,i=void 0;if(function a(e){return e&&e.constructor&&e.constructor.ngComponentDef}(e)){if(-1==(r=Kn(n,e)))throw new Error("The provided component was not found in the application");o=e}else if(function u(e){return e&&e.constructor&&e.constructor.ngDirectiveDef}(e)){if(-1==(r=function s(e,t){for(var n=e[be].firstChild;n;){for(var r=n.directiveEnd,o=n.directiveStart;o<r;o++)if(e[o]===t)return n.index;n=qn(n)}return-1}(n,e)))throw new Error("The provided directive was not found in the application");i=Wn(r,n,!1)}else if(-1==(r=Zn(n,e)))return null;var l=ft(g=Xe(n[r])),c=l&&!Array.isArray(l)?l:Un(n,r,g);if(o&&void 0===c.component&&(c.component=o,Qn(c.component,c)),i&&void 0===c.directives){c.directives=i;for(var f=0;f<i.length;f++)Qn(i[f],c)}Qn(c.native,c),t=c}}else for(var d=e,p=d;p=p.parentNode;){var h=ft(p);if(h){if(n=void 0,!(n=Array.isArray(h)?h:h.lView))return null;var v=Zn(n,d);if(v>=0){var g;Qn(g=Xe(n[v]),c=Un(n,v,g)),t=c;break}}}return t||null}function Un(e,t,n){return{lView:e,nodeIndex:t,native:n,component:void 0,directives:void 0,localRefs:void 0}}function zn(e){var t,n=ft(e);if(Array.isArray(n)){var r=Kn(n,e);(o=Un(n,r,(t=rt(r,n))[Ee])).component=e,Qn(e,o),Qn(o.native,o)}else{var o;t=rt((o=n).nodeIndex,o.lView)}return t}function Qn(e,t){e[Ze]=t}function Zn(e,t){for(var n=e[be].firstChild;n;){if(tt(n,e)===t)return n.index;n=qn(n)}return-1}function qn(e){if(e.child)return e.child;if(e.next)return e.next;for(;e.parent&&!e.parent.next;)e=e.parent;return e.parent&&e.parent.next}function Kn(e,t){var n=e[be].components;if(n)for(var r=0;r<n.length;r++){var o=n[r];if(rt(o,e)[Ne]===t)return o}else if(rt(He,e)[Ne]===t)return He;return-1}function Wn(e,t,n){var r=t[be].data[e],o=r.directiveStart;return 0==o?ae:(!n&&1&r.flags&&o++,t.slice(o,r.directiveEnd))}
185
192
  /**
186
193
  * @license
187
194
  * Copyright Google Inc. All Rights Reserved.
188
195
  *
189
196
  * Use of this source code is governed by an MIT-style license that can be
190
197
  * found in the LICENSE file at https://angular.io/license
191
- */function er(e){var t=Vt(e);if(t){if(Array.isArray(t)){var n=t,r=void 0,o=void 0,i=void 0;if(function a(e){return e&&e.constructor&&e.constructor.ngComponentDef}(e)){if(-1==(r=ar(n,e)))throw new Error("The provided component was not found in the application");o=e}else if(function u(e){return e&&e.constructor&&e.constructor.ngDirectiveDef}(e)){if(-1==(r=function s(e,t){for(var n=e[He].firstChild;n;){for(var r=sr(n),o=lr(n,r),i=r;i<o;i++)if(e[i]===t)return n.index;n=ir(n)}return-1}(n,e)))throw new Error("The provided directive was not found in the application");i=ur(r,n,!1)}else if(-1==(r=or(n,e)))return null;var l=Vt(g=It(n[r])),c=l&&!Array.isArray(l)?l:tr(n,r,g);if(o&&void 0===c.component&&(c.component=o,rr(c.component,c)),i&&void 0===c.directives){c.directives=i;for(var f=0;f<i.length;f++)rr(i[f],c)}rr(c.native,c),t=c}}else for(var d=e,p=d;p=p.parentNode;){var h=Vt(p);if(h){if(n=void 0,!(n=Array.isArray(h)?h:h.lViewData))return null;var v=or(n,d);if(v>=0){var g;rr(g=It(n[v]),c=tr(n,v,g)),t=c;break}}}return t||null}function tr(e,t,n){return{lViewData:e,nodeIndex:t,native:n,component:void 0,directives:void 0,localRefs:void 0}}function nr(e){var t,n=Vt(e);if(Array.isArray(n)){var r=ar(n,e);(o=tr(n,r,(t=Tt(r,n))[Qe])).component=e,rr(e,o),rr(o.native,o)}else{var o;t=Tt((o=n).nodeIndex,o.lViewData)}return t}function rr(e,t){e[bt]=t}function or(e,t){for(var n=e[He].firstChild;n;){if(Et(n,e)===t)return n.index;n=ir(n)}return-1}function ir(e){return e.child?e.child:e.next?e.next:e.parent&&e.parent.next||null}function ar(e,t){var n=e[He].components;if(n)for(var r=0;r<n.length;r++){var o=n[r];if(Tt(o,e)[We]===t)return o}else if(Tt(rt,e)[We]===t)return rt;return-1}function ur(e,t,n){var r=t[He].data[e],o=sr(r);if(0==o)return re;var i=lr(r,o);return!n&&4096&r.flags&&o++,t.slice(o,i)}function sr(e){return e.flags>>16}function lr(e,t){var n=4095&e.flags;return n?t+n:-1}
198
+ */
199
+ function Gn(e){var t=or(e);return void 0===t.component&&(t.component=function n(e,t){var n=t[be].data[e];return 1&n.flags?t[n.directiveStart]:null}(t.nodeIndex,t.lView)),t.component}function Yn(e){return or(e).lView[Ne]}function $n(e){for(var t=nr(e).lView;t[xe]&&null===t[Ee];)t=t[xe];return 128&t[Ce]?null:t[Ne]}function Jn(e){return function t(e){var t;for(t=Array.isArray(e)?e:dt(e);t&&!(128&t[Ce]);)t=t[xe];return t}(Array.isArray(e)?e:nr(e).lView)[Ne]}function Xn(e){return f(Jn(e).components)}function er(e){var t=nr(e);return new Fn(t.lView[be].data[t.nodeIndex],t.lView)}function tr(e){var t=nr(e);return void 0===t.directives&&(t.directives=Wn(t.nodeIndex,t.lView,!1)),t.directives||[]}function nr(e,t){void 0===t&&(t=!0);var n=Bn(e);if(!n&&t)throw new Error("Invalid ng target");return n}function rr(e){return Bn(e).native}function or(e){if(!(e instanceof Node))throw new Error("Expecting instance of DOM Node");return nr(e)}function ir(e){return"boolean"==typeof e.useCapture}function ar(e){var t=or(e).lView,n=t[Pe],r=t[be].cleanup,o=[];if(r&&n)for(var i=0;i<r.length;){var a=r[i++],u=r[i++];if("string"==typeof a){var s=a,l=Xe(t[u]),c=n[r[i++]],f=r[i++];e==l&&o.push({element:e,name:s,callback:c,useCapture:"boolean"==typeof f?f:!(f>=0)&&null})}}return o.sort(ur),o}function ur(e,t){return e.name==t.name?0:e.name<t.name?-1:1}var sr=/([A-Z])/g;function lr(e){try{return null!=e?e.toString().slice(0,30):e}catch(e){return"[ERROR] Exception while trying to serialize the value"}}
192
200
  /**
193
201
  * @license
194
202
  * Copyright Google Inc. All Rights Reserved.
195
203
  *
196
204
  * Use of this source code is governed by an MIT-style license that can be
197
205
  * found in the LICENSE file at https://angular.io/license
198
- */function cr(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t]}
206
+ */function cr(e,t){var n=pr(e),r=pr(t);return n&&r?function o(e,t,n){for(var r=e[W()](),o=t[W()]();;){var i=r.next(),a=o.next();if(i.done&&a.done)return!0;if(i.done||a.done)return!1;if(!n(i.value,a.value))return!1}}(e,t,cr):!(n||!e||"object"!=typeof e&&"function"!=typeof e||r||!t||"object"!=typeof t&&"function"!=typeof t)||Y(e,t)}var fr=function(){function e(e){this.wrapped=e}return e.wrap=function(t){return new e(t)},e.unwrap=function(t){return e.isWrapped(t)?t.wrapped:t},e.isWrapped=function(t){return t instanceof e},e}(),dr=function(){function e(e,t,n){this.previousValue=e,this.currentValue=t,this.firstChange=n}return e.prototype.isFirstChange=function(){return this.firstChange},e}();function pr(e){return!!hr(e)&&(Array.isArray(e)||!(e instanceof Map)&&W()in e)}function hr(e){return null!==e&&("function"==typeof e||"object"==typeof e)}function vr(e){throw new Error("Multiple components match node with tagname "+e.tagName)}
199
207
  /**
200
208
  * @license
201
209
  * Copyright Google Inc. All Rights Reserved.
202
210
  *
203
211
  * Use of this source code is governed by an MIT-style license that can be
204
212
  * found in the LICENSE file at https://angular.io/license
205
- */var fr=d({__forward_ref__:d});function dr(e){return e.__forward_ref__=dr,e.toString=function(){return te(this())},e}function pr(e){var t=e;return"function"==typeof t&&t.hasOwnProperty(fr)&&t.__forward_ref__===dr?t():e}
213
+ */
214
+ var gr={};
206
215
  /**
207
216
  * @license
208
217
  * Copyright Google Inc. All Rights Reserved.
209
218
  *
210
219
  * Use of this source code is governed by an MIT-style license that can be
211
220
  * found in the LICENSE file at https://angular.io/license
212
- */var hr="__source",vr=new Object,gr=vr,yr=new E("INJECTOR"),mr=function(){function e(){}return e.prototype.get=function(e,t){if(void 0===t&&(t=vr),t===vr)throw new Error("NullInjectorError: No provider for "+te(e)+"!");return t},e}(),_r=function(){function e(){}return e.create=function(e,t){return Array.isArray(e)?new Pr(e,t):new Pr(e.providers,e.parent,e.name||null)},e.THROW_IF_NOT_FOUND=vr,e.NULL=new mr,e.ngInjectableDef=C({providedIn:"any",factory:function(){return Ne(yr)}}),e.__NG_ELEMENT_ID__=function(){return wr()},e}(),wr=cr,br=function(e){return e},Cr=[],xr=br,Ir=function(){return Array.prototype.slice.call(arguments)},kr=d({provide:String,useValue:d}),Er=_r.NULL,Or=/\n/gm,Tr="ɵ",Pr=function(){function t(e,t,n){void 0===t&&(t=Er),void 0===n&&(n=null),this.parent=t,this.source=n;var r=this._records=new Map;r.set(_r,{token:_r,fn:br,deps:Cr,value:this,useNew:!1}),r.set(yr,{token:yr,fn:br,deps:Cr,value:this,useNew:!1}),function e(t,n){if(n)if((n=pr(n))instanceof Array)for(var r=0;r<n.length;r++)e(t,n[r]);else{if("function"==typeof n)throw Rr("Function/Class not supported",n);if(!n||"object"!=typeof n||!n.provide)throw Rr("Unexpected provider",n);var o=pr(n.provide),i=function a(e){var t=function n(e){var t=Cr,n=e.deps;if(n&&n.length){t=[];for(var r=0;r<n.length;r++){var o=6;if((s=pr(n[r]))instanceof Array)for(var i=0,a=s;i<a.length;i++){var u=a[i];u instanceof be||u==be?o|=1:u instanceof xe||u==xe?o&=-3:u instanceof Ce||u==Ce?o&=-5:s=u instanceof we?u.token:pr(u)}t.push({token:s,options:o})}}else if(e.useExisting){var s;t=[{token:s=pr(e.useExisting),options:6}]}else if(!(n||kr in e))throw Rr("'deps' required",e);return t}(e),r=br,o=Cr,i=!1,a=pr(e.provide);if(kr in e)o=e.useValue;else if(e.useFactory)r=e.useFactory;else if(e.useExisting);else if(e.useClass)i=!0,r=pr(e.useClass);else{if("function"!=typeof a)throw Rr("StaticProvider does not have [useValue|useFactory|useExisting|useClass] or [provide] is not newable",e);i=!0,r=a}return{deps:t,fn:r,useNew:i,value:o}}(n);if(!0===n.multi){var u=t.get(o);if(u){if(u.fn!==Ir)throw Nr(o)}else t.set(o,u={token:n.provide,deps:[],useNew:!1,fn:Ir,value:Cr});u.deps.push({token:o=n,options:6})}var s=t.get(o);if(s&&s.fn==Ir)throw Nr(o);t.set(o,i)}}(r,e)}return t.prototype.get=function(t,n,r){void 0===r&&(r=e.InjectFlags.Default);var o=this._records.get(t);try{return function t(n,r,o,i,a,u){try{return function s(n,r,o,i,a,u){var s,l;if(!r||u&e.InjectFlags.SkipSelf)u&e.InjectFlags.Self||(l=i.get(n,a,e.InjectFlags.Default));else{if((l=r.value)==xr)throw Error(Tr+"Circular dependency");if(l===Cr){r.value=xr;var c=r.useNew,d=r.fn,p=r.deps,h=Cr;if(p.length){h=[];for(var v=0;v<p.length;v++){var g=p[v],y=g.options,m=2&y?o.get(g.token):void 0;h.push(t(g.token,m,o,m||4&y?i:Er,1&y?null:_r.THROW_IF_NOT_FOUND,e.InjectFlags.Default))}}r.value=l=c?new((s=d).bind.apply(s,f([void 0],h))):d.apply(void 0,h)}}return l}(n,r,o,i,a,u)}catch(e){throw e instanceof Error||(e=new Error(e)),(e.ngTempTokenPath=e.ngTempTokenPath||[]).unshift(n),r&&r.value==xr&&(r.value=Cr),e}}(t,o,this._records,this.parent,n,r)}catch(e){var i=e.ngTempTokenPath;throw t[hr]&&i.unshift(t[hr]),e.message=Dr("\n"+e.message,i,this.source),e.ngTokenPath=i,e.ngTempTokenPath=null,e}},t.prototype.toString=function(){var e=[];return this._records.forEach(function(t,n){return e.push(te(n))}),"StaticInjector["+e.join(", ")+"]"},t}();function Nr(e){return Rr("Cannot mix multi providers and regular providers",e)}function Dr(e,t,n){void 0===n&&(n=null),e=e&&"\n"===e.charAt(0)&&e.charAt(1)==Tr?e.substr(2):e;var r=te(t);if(t instanceof Array)r=t.map(te).join(" -> ");else if("object"==typeof t){var o=[];for(var i in t)if(t.hasOwnProperty(i)){var a=t[i];o.push(i+":"+("string"==typeof a?JSON.stringify(a):te(a)))}r="{"+o.join(", ")+"}"}return"StaticInjectorError"+(n?"("+n+")":"")+"["+r+"]: "+e.replace(Or,"\n ")}function Rr(e,t){return new Error(Dr(e,t))}
221
+ */function yr(e,t,n){return e[t]=n}function mr(e,t){return e[t]}function _r(e,t,n){if(e[t]===gr)e[t]=n;else{if(!function r(e,t){return!(e!=e&&t!=t)&&e!==t}(e[t],n))return!1;e[t]=n}return!0}function wr(e,t,n,r){var o=_r(e,t,n);return _r(e,t+1,r)||o}function br(e,t,n,r,o){var i=wr(e,t,n,r);return _r(e,t+2,o)||i}function Cr(e,t,n,r,o,i){var a=wr(e,t,n,r);return wr(e,t+2,o,i)||a}
213
222
  /**
214
223
  * @license
215
224
  * Copyright Google Inc. All Rights Reserved.
216
225
  *
217
226
  * Use of this source code is governed by an MIT-style license that can be
218
227
  * found in the LICENSE file at https://angular.io/license
219
- */var jr=function jr(){},Ar=function Ar(){},Sr=/([A-Z])/g;function Vr(e){try{return null!=e?e.toString().slice(0,30):e}catch(e){return"[ERROR] Exception while trying to serialize the value"}}function Mr(e){throw new Error("Multiple components match node with tagname "+e.tagName)}
228
+ */var xr,Ir="ngProjectAs";
220
229
  /**
221
230
  * @license
222
231
  * Copyright Google Inc. All Rights Reserved.
223
232
  *
224
233
  * Use of this source code is governed by an MIT-style license that can be
225
234
  * found in the LICENSE file at https://angular.io/license
226
- */
227
- var Fr,Hr="ngProjectAs";
235
+ */function kr(e){return!!e.listen}!function(e){e[e.Important=1]="Important",e[e.DashCase=2]="DashCase"}(xr||(xr={}));var Er={createRenderer:function(e,t){return document}};
228
236
  /**
229
237
  * @license
230
238
  * Copyright Google Inc. All Rights Reserved.
231
239
  *
232
240
  * Use of this source code is governed by an MIT-style license that can be
233
241
  * found in the LICENSE file at https://angular.io/license
234
- */function Lr(e){return!!e.listen}!function(e){e[e.Important=1]="Important",e[e.DashCase=2]="DashCase"}(Fr||(Fr={}));var Br={createRenderer:function(e,t){return document}};
242
+ */
235
243
  /**
236
244
  * @license
237
245
  * Copyright Google Inc. All Rights Reserved.
238
246
  *
239
247
  * Use of this source code is governed by an MIT-style license that can be
240
248
  * found in the LICENSE file at https://angular.io/license
241
- */
249
+ */function Or(e,t){return null==e.parent?function n(e){var t=e[Oe];return t&&2!==t.type?tt(t,e[xe]):null}(t):tt(Tr(e),t)}function Tr(e){for(var t=e.parent;t&&5===t.type;)t=t.parent;return t}function Pr(e,t){if(-1===e.index){var n=t[Ve];return n>-1?t[xe][n]:null}return t[xe][e.parent.index]}function Nr(e,t){var n=Pr(e,t);return n?n[ze]:null}var Rr=[];function jr(e,t,n,r,o){for(var i=e[be].node,a=-1,u=e,s=i.child;s;){var l=null;if(3===s.type){Dr(t,n,r,tt(s,u),o);var c=u[s.index];ut(c)&&Dr(t,n,r,c[Ue],o)}else if(0===s.type){var f=u[s.index];Dr(t,n,r,f[Ue],o),r&&(f[ze]=r),f[Be].length&&(l=(u=f[Be][0])[be].node,o=f[Ue])}else if(1===s.type){var d=wt(u),p=d[Oe].projection[s.projection];Rr[++a]=s,Rr[++a]=u,p&&(l=(u=d[xe])[be].data[p.index])}else l=s.child;if(null===l)for(null===s.next&&2&s.flags&&(u=Rr[a--],s=Rr[a--]),l=s.next;!l;){if(null===(s=s.parent||u[be].node)||s===i)return null;0===s.type&&(o=(u=u[xe])[s.index][Ue]),l=2===s.type&&u[Ie]?(u=u[Ie])[be].node:s.next}s=l}}function Dr(e,t,n,r,o){0===e?kr(t)?t.insertBefore(n,r,o):n.insertBefore(r,o,!0):1===e?kr(t)?t.removeChild(n,r):n.removeChild(r):2===e&&t.destroyNode(r)}function Ar(e,t){return kr(t)?t.createText($e(e)):t.createTextNode($e(e))}function Sr(e,t,n){var r=Nr(e[be].node,e);r&&jr(e,t?0:1,e[De],r,n)}function Vr(e,t,n,r,o){var i=t[Be];r>0&&(i[r-1][Ie]=e),r<i.length?(e[Ie]=i[r],i.splice(r,0,e)):(i.push(e),e[Ie]=null),o>-1&&(e[Ve]=o,e[xe]=n),e[ke]&&e[ke].insertView(r),e[Ce]|=16}function Mr(e,t,n){var r=e[Be],o=r[t];return t>0&&(r[t-1][Ie]=o[Ie]),r.splice(t,1),n||Sr(o,!1),o[ke]&&o[ke].removeView(),o[Ve]=-1,o[xe]=null,o[Ce]&=-17,o}function Fr(e,t,n){var r=e[Be][n];Mr(e,n,!!t.detached),Lr(r)}function Hr(e){var t=e[be].childIndex;return-1===t?null:e[t]}function Lr(e){var t=e[De];kr(t)&&t.destroyNode&&jr(e,2,t,null),function n(e){if(-1===e[be].childIndex)return Ur(e);for(var t=Hr(e);t;){var n=null;if(t.length>=He?t[be].childIndex>-1&&(n=Hr(t)):t[Be].length&&(n=t[Be][0]),null==n){for(;t&&!t[Ie]&&t!==e;)Ur(t),t=Br(t,e);Ur(t||e),n=t&&t[Ie]}t=n}}(e),e[Ce]|=64}function Br(e,t){var n;return e.length>=He&&(n=e[Oe])&&2===n.type?Pr(n,e):e[xe]===t?null:e[xe]}function Ur(e){if(e.length>=He){var t=e;!function n(e){var t,n=e[be];null!=n&&null!=(t=n.destroyHooks)&&Qt(e,t)}(t),function r(e){var t=e[be]&&e[be].pipeDestroyHooks;t&&Qt(e,t)}(t),function o(e){var t=e[be].cleanup;if(null!=t){for(var n=e[Pe],r=0;r<t.length-1;r+=2)if("string"==typeof t[r]){var o=n[t[r+2]],i=Xe(e[t[r+1]]),a=t[r+3];"boolean"==typeof a?i.removeEventListener(t[r],o,a):a>=0?n[a]():n[-a].unsubscribe(),r+=2}else"number"==typeof t[r]?(0,n[t[r]])():t[r].call(n[t[r+1]]);e[Pe]=null}}(t);var i=t[Oe];i&&3===i.type&&kr(t[De])&&t[De].destroy()}}function zr(e,t){if(Qr(e,t)){if(st(t))return qr(t[De],tt(e,t));var n=t[Oe],r=e.parent;return null!=r&&4===r.type&&(e=Wr(r)),null==e.parent&&2===n.type?Nr(n,t):Or(e,t)}return null}function Qr(e,t){var n=e,r=e.parent;return e.parent&&(4===e.parent.type?r=(n=Wr(e)).parent:5===e.parent.type&&(r=(n=Tr(n)).parent)),null===r&&(r=t[Oe]),r&&2===r.type?function o(e,t){var n=Pr(e,t);return null!=n&&null!=n[ze]}(r,t):function i(e){return null==e.parent||!(3!==e.parent.type||1&e.parent.flags)}(n)}function Zr(e,t,n,r){kr(e)?e.insertBefore(t,n,r):t.insertBefore(n,r,!0)}function qr(e,t){return kr(e)?e.parentNode(t):t.parentNode}function Kr(e,t,n){if(void 0===e&&(e=null),null!==e&&Qr(t,n)){var r=n[De],o=Or(t,n),i=t.parent||n[Oe];if(2===i.type){var a=Pr(i,n),u=a[Be],s=u.indexOf(n);Zr(r,a[ze],e,Gr(s,u,a[Ue]))}else 4===i.type?Zr(r,zr(t,n),e,o):5===i.type?Zr(r,o,e,tt(t.parent,n)):kr(r)?r.appendChild(o,e):o.appendChild(e);return!0}return!1}function Wr(e){for(;null!=e.parent&&4===e.parent.type;)e=e.parent;return e}function Gr(e,t,n){if(e+1<t.length){var r=t[e+1],o=r[Oe];return o.child?tt(o.child,r):n}return n}function Yr(e,t,n){if(null!==t&&Qr(e,n)){var r=Or(e,n),o=n[De];return kr(o)?o.removeChild(r,t):r.removeChild(t),!0}return!1}function $r(e,t,n,r){var o=tt(e,r);Kr(o,t,n),Qn(o,r);var i=zr(t,n),a=r[e.index];if(0===e.type){a[ze]=i;for(var u=a[Be],s=0;s<u.length;s++)Sr(u[s],!0,a[Ue])}else{if(4===e.type)for(var l=e.child;l;)$r(l,t,n,r),l=l.next;ut(a)&&(a[ze]=i,Kr(a[Ue],t,n))}}
242
250
  /**
243
251
  * @license
244
252
  * Copyright Google Inc. All Rights Reserved.
245
253
  *
246
254
  * Use of this source code is governed by an MIT-style license that can be
247
255
  * found in the LICENSE file at https://angular.io/license
248
- */function Ur(e,t){return null==e.parent?function n(e){var t=e[Ze];return t&&2!==t.type?Et(t,e[Be]):null}(t):Et(zr(e),t)}function zr(e){for(var t=e.parent;t&&5===t.type;)t=t.parent;return t}function Qr(e,t){if(-1===e.index){var n=t[et];return n>-1?t[Be][n]:null}return t[Be][e.parent.index]}function Zr(e,t){var n=Qr(e,t);return n?n[wt]:null}var qr=[];function Kr(e,t,n,r,o){for(var i=e[He].node,a=-1,u=e,s=i.child;s;){var l=null;if(3===s.type){Gr(t,n,r,Et(s,u),o);var c=u[s.index];Rt(c)&&Gr(t,n,r,c[_t],o)}else if(0===s.type){var f=u[s.index];Gr(t,n,r,f[_t],o),r&&(f[wt]=r),f[mt].length&&(l=(u=f[mt][0])[He].node,o=f[_t])}else if(1===s.type){var d=Wr(u),p=d[Ze].projection[s.projection];qr[++a]=s,qr[++a]=u,p&&(l=(u=d[Be])[He].data[p.index])}else l=s.child;if(null===l)for(null===s.next&&8192&s.flags&&(u=qr[a--],s=qr[a--]),l=s.next;!l;){if(null===(s=s.parent||u[He].node)||s===i)return null;0===s.type&&(o=(u=u[Be])[s.index][_t]),l=2===s.type&&u[Ue]?(u=u[Ue])[He].node:s.next}s=l}}function Wr(e){for(var t=e[Ze];t&&2===t.type;)t=(e=e[Be])[Ze];return e}function Gr(e,t,n,r,o){0===e?Lr(t)?t.insertBefore(n,r,o):n.insertBefore(r,o,!0):1===e?Lr(t)?t.removeChild(n,r):n.removeChild(r):2===e&&t.destroyNode(r)}function Yr(e,t){return Lr(t)?t.createText(Ct(e)):t.createTextNode(Ct(e))}function $r(e,t,n){var r=Zr(e[He].node,e);r&&Kr(e,t?0:1,e[$e],r,n)}function Jr(e,t,n,r,o){var i=t[mt];r>0&&(i[r-1][Ue]=e),r<i.length?(e[Ue]=i[r],i.splice(r,0,e)):(i.push(e),e[Ue]=null),o>-1&&(e[et]=o,e[Be]=n),e[ze]&&e[ze].insertView(r),e[Le]|=8}function Xr(e,t,n){var r=e[mt],o=r[t];t>0&&(r[t-1][Ue]=o[Ue]),r.splice(t,1),n||$r(o,!1),o[ze]&&o[ze].removeView(),o[et]=-1,o[Be]=null,o[Le]&=-9}function eo(e,t,n){var r=e[mt][n];Xr(e,n,!!t.detached),no(r)}function to(e){var t=e[He].childIndex;return-1===t?null:e[t]}function no(e){var t=e[$e];Lr(t)&&t.destroyNode&&Kr(e,2,t,null),function n(e){if(-1===e[He].childIndex)return oo(e);for(var t=to(e);t;){var n=null;if(t.length>=rt?t[He].childIndex>-1&&(n=to(t)):t[mt].length&&(n=t[mt][0]),null==n){for(;t&&!t[Ue]&&t!==e;)oo(t),t=ro(t,e);oo(t||e),n=t&&t[Ue]}t=n}}(e),e[Le]|=32}function ro(e,t){var n;return e.length>=rt&&(n=e[Ze])&&2===n.type?Qr(n,e):e[Be]===t?null:e[Be]}function oo(e){if(e.length>=rt){var t=e;!function n(e){var t=e[He].cleanup;if(null!=t){for(var n=0;n<t.length-1;n+=2)"string"==typeof t[n]?(It(e[t[n+1]]).removeEventListener(t[n],e[Ke][t[n+2]],t[n+3]),n+=2):"number"==typeof t[n]?(0,e[Ke][t[n]])():t[n].call(e[Ke][t[n+1]]);e[Ke]=null}}(t),function r(e){var t,n=e[He];null!=n&&null!=(t=n.destroyHooks)&&ft(e,t)}(t),function o(e){var t=e[He]&&e[He].pipeDestroyHooks;t&&ft(e,t)}(t),-1===t[He].id&&Lr(t[$e])&&t[$e].destroy()}}function io(e,t){if(ao(e,t)){if(jt(t))return so(t[$e],Et(e,t));var n=t[Ze],r=e.parent;return null!=r&&4===r.type&&(e=co(r)),null==e.parent&&2===n.type?Zr(n,t):Ur(e,t)}return null}function ao(e,t){var n=e,r=e.parent;return e.parent&&(4===e.parent.type?r=(n=co(e)).parent:5===e.parent.type&&(r=(n=zr(n)).parent)),null===r&&(r=t[Ze]),r&&2===r.type?function o(e,t){var n=Qr(e,t);return null!=n&&null!=n[wt]}(r,t):function i(e){return null==e.parent||!(3!==e.parent.type||4096&e.parent.flags)}(n)}function uo(e,t,n,r){Lr(e)?e.insertBefore(t,n,r):t.insertBefore(n,r,!0)}function so(e,t){return Lr(e)?e.parentNode(t):t.parentNode}function lo(e,t,n){if(void 0===e&&(e=null),null!==e&&ao(t,n)){var r=n[$e],o=Ur(t,n),i=t.parent||n[Ze];if(2===i.type){var a=Qr(i,n),u=a[mt],s=u.indexOf(n);uo(r,a[wt],e,fo(s,u,a[_t]))}else 4===i.type?uo(r,io(t,n),e,o):5===i.type?uo(r,o,e,Et(t.parent,n)):Lr(r)?r.appendChild(o,e):o.appendChild(e);return!0}return!1}function co(e){for(;null!=e.parent&&4===e.parent.type;)e=e.parent;return e}function fo(e,t,n){if(e+1<t.length){var r=t[e+1],o=r[Ze];return o.child?Et(o.child,r):n}return n}function po(e,t,n){if(null!==t&&ao(e,n)){var r=Ur(e,n),o=n[$e];return Lr(o)?o.removeChild(r,t):r.removeChild(t),!0}return!1}function ho(e,t,n,r){var o=Et(e,r);lo(o,t,n),rr(o,r);var i=io(t,n),a=r[e.index];if(0===e.type){a[wt]=i;for(var u=a[mt],s=0;s<u.length;s++)$r(u[s],!0,a[_t])}else{if(4===e.type)for(var l=e.child;l;)ho(l,t,n,r),l=l.next;Rt(a)&&(a[wt]=i,lo(a[_t],t,n))}}
256
+ */var Jr="ng-template";function Xr(e,t,n){return t===e.tagName&&(n||3===e.type||4===e.type||0===e.type&&t===Jr)}function eo(e,t,n){for(var r,o,i,a,u,s=4,l=e.attrs,c=l?l.indexOf(3):-1,f=!1,d=0;d<t.length;d++){var p=t[d];if("number"!=typeof p){if(!f)if(4&s){if(s=2|1&s,""!==p&&!Xr(e,p,n)||""===p&&1===t.length){if(to(s))return!1;f=!0}}else{var h=no(8&s?"class":p,l);if(-1===h){if(to(s))return!1;f=!0;continue}var v,g=8&s?p:t[++d];if(""!==g)if(v=c>-1&&h>c?"":l[h+1],8&s&&(i=(r=v).length,u=(a=r.indexOf(o=g))+o.length,-1===a||a>0&&" "!==r[a-1]||u<i&&" "!==r[u])||2&s&&g!==v){if(to(s))return!1;f=!0}}}else{if(!f&&!to(s)&&!to(p))return!1;if(f&&to(p))continue;f=!1,s=p|1&s}}return to(s)||f}function to(e){return 0==(1&e)}function no(e,t){if(null===t)return-1;for(var n=!1,r=0;r<t.length;){var o=t[r];if(o===e)return r;0===o?r+=4:(3===o&&(n=!0),r+=n?1:2)}return-1}function ro(e,t,n){void 0===n&&(n=!1);for(var r=0;r<t.length;r++)if(eo(e,t[r],n))return!0;return!1}function oo(e,t,n){for(var r=function o(e){var t=e.attrs;if(null!=t){var n=t.indexOf(Ir);if(0==(1&n))return t[n+1]}return null}(e),i=0;i<t.length;i++)if(r===n[i]||null===r&&ro(e,t[i],!0))return i+1;return 0}var io=function io(e,t){this.fn=e,this.value=t},ao=function(){function e(){this._players=[]}return e.prototype.flushPlayers=function(){for(var e=0;e<this._players.length;e++){var t=this._players[e];t.parent||0!==t.state||t.play()}this._players.length=0},e.prototype.queuePlayer=function(e){this._players.push(e)},e}(),uo="@";function so(e,t,n,r){return[0,[null,-1,!1,t||null],n||[null],r||[null],[0,0],e||null,null,null,null]}function lo(e,t){for(var n=e,r=t[n],o=t;Array.isArray(r);)o=r,r=r[Ee];if(function i(e){return Array.isArray(e)&&"number"==typeof e[0]&&Array.isArray(e[2])}(o))return o;var a=nt(e-He,t).stylingTemplate;return o!==t&&(n=Ee),o[n]=a?function u(e,t){var n=t.slice();return n[5]=e,n[0]|=32,n}(r,a):so(r)}function co(e){return e[0]===uo}function fo(e,t,n,r,o,i){return i=i||n,o?e[o]=r:e.push(r),!!r&&(r.addEventListener(200,function(){var t=e.indexOf(r);t&&(t<e[0]?e[t]=null:e.splice(t,1)),r.destroy()}),(t.playerHandler||(t.playerHandler=new ao)).queuePlayer(r,i),!0)}function po(e){return e[8]}function ho(e){return e[8]=[5,null,null,null,null]}function vo(e){return!!(8&e.flags)}function go(e){for(var t=so(),n=t[3]=[null],r=t[2]=[null],o=-1,i=0;i<e.length;i++){var a=e[i];if("number"==typeof a)o=a;else if(2===o)r.push(a,e[++i]);else if(1===o)n.push(a,!0);else if(3===o)break}return t}function yo(e,t,n){for(var r=1;r<e.length;){if(e[r]===t){var o=e[r+1];return void(null!=o&&0!=o||(e[r+1]=n))}r+=2}e.push(t,n)}function mo(e,t,n,r){for(var o=1;o<n.length;o+=2){var i=n[o+1];i&&(r?Co(e,n[o+0],!0,t,null):bo(e,n[o+0],i,t,null))}}function _o(e,t,n,r){for(var o=n;o<r;o+=4)if(Uo(e,o)===t)return o;return-1}function wo(e,t,n,r,o){var i=ei(e,o||null),a=function u(e,t,n,r){var o=e[1][4*t+1],i=e[4];return i[o+2+(r?i[o+0]:0)+n]}(e,i,t,r),s=Bo(e,a),l=Lo(e,a),c=Xo(e,a),f=n instanceof io?n.value:n;if($o(l,s,f)&&function d(e,t,n,r){return!e||(t?r<=n:n===r)}(s,f,c,i)){var p=2==(2&l),h=n instanceof io?new Jo(n,e[5],p?1:2):null,v=h?n.value:n,g=Mo(e,a),y=!1,m=h?g:0;if(Ao(e,h,g)){var _=So(e,h,g);m=h?_:0,y=!0}if((y||c!==i)&&Vo(e,a,m,i),c!==i){var w=Uo(e,a),b=ri(e,i);!function C(e,t,n){n?e[t]|=4:e[t]&=-5}(e,a,!(!b||!b(w)))}Do(e,a,v);var x=No(l),I=Bo(e,x);if(!I||$o(l,I,v)){var k=!1,E=!0;!Go(v,p)&&Go(I,p)&&(k=!0,E=!1),xo(e,x,k),xo(e,a,E),oi(e,i,!0),Qo(e,!0)}y&&Zo(e,!0)}}function bo(e,t,n,r,o,i,a){n=o&&n?o(t,n):n,i||a?(i&&i.setValue(t,n),a&&a.setValue(t,n)):n?(n=n.toString(),kr(r)?r.setStyle(e,t,n,xr.DashCase):e.style.setProperty(t,n)):kr(r)?r.removeStyle(e,t,xr.DashCase):e.style.removeProperty(t)}function Co(e,t,n,r,o,i){o||i?(o&&o.setValue(t,n),i&&i.setValue(t,n)):n?kr(r)?r.addClass(e,t):e.classList.add(t):kr(r)?r.removeClass(e,t):e.classList.remove(t)}function xo(e,t,n){var r=t>=9?t+0:t;n?e[r]|=1:e[r]&=-2}function Io(e,t){return 1==(1&e[t>=9?t+0:t])}function ko(e,t){return 2==(2&e[t>=9?t+0:t])}function Eo(e,t){return 4==(4&e[t>=9?t+0:t])}function Oo(e,t,n){return 63&e|t<<6|n<<20}function To(e,t){var n=Po(t);return(2&t?e[3]:e[2])[n]}function Po(e){return e>>6&16383}function No(e){var t=e>>20&16383;return t>=9?t:-1}function Ro(e){return No(e[0])}function jo(e,t,n){e[t+1]=n}function Do(e,t,n){e[t+2]=n}function Ao(e,t,n){var r=e[8];if(t){if(!r||0===n)return!0}else if(!r)return!1;return r[n]!==t}function So(e,t,n){var r=e[8]||ho(e);return n>0?r[n]=t:(r.splice(n=r[0],0,t,null),r[0]+=2),n}function Vo(e,t,n,r){var o=function i(e,t){return t<<16|e}(r,n);e[t+3]=o}function Mo(e,t){return e[t+3]>>16&65535}function Fo(e,t){var n=Mo(e,t);if(n){var r=e[8];if(r)return r[n]}return null}function Ho(e,t,n){e[0===t?t:t+0]=n}function Lo(e,t){return e[0===t?t:t+0]}function Bo(e,t){return e[t+2]}function Uo(e,t){return e[t+1]}function zo(e){return 16&e[0]}function Qo(e,t){xo(e,0,t)}function Zo(e,t){t?e[0]|=8:e[0]&=-9}function qo(e,t,n){for(var r=(n||0)+1;r<e.length;r+=4)if(e[r]==t)return r-1;return-1}function Ko(e,t,n){var r=Bo(e,t),o=Uo(e,t),i=Lo(e,t),a=Mo(e,t),u=i,s=Lo(e,n),l=No(u);l>=0&&Ho(e,l,Oo(c=Lo(e,l),Po(c),n));var c,f=No(s);f>=0&&Ho(e,f,Oo(c=Lo(e,f),Po(c),t)),Do(e,t,Bo(e,n)),jo(e,t,Uo(e,n)),Ho(e,t,Lo(e,n)),Vo(e,t,Mo(e,n),0),Do(e,n,r),jo(e,n,o),Ho(e,n,i),Vo(e,n,a,0)}function Wo(e,t,n,r,o,i,a,u){var s=t<e.length;e.splice(t,0,1|o|(n?2:0),r,i,0),Vo(e,t,u,a),s&&function l(e,t){for(var n=t;n<e.length;n+=4){var r=No(Lo(e,n));if(r>0){var o=Po(Lo(e,r));Ho(e,r,Oo((Io(e,r)?1:0)|(ko(e,r)?2:0)|(Eo(e,r)?4:0),o,n))}}}(e,t+4)}function Go(e,t){return t?!!e:null!==e}function Yo(e,t,n,r){var o,i=r&&r(t)?4:0;return n?(i|=2,o=ni(e[3],t)):o=ni(e[2],t),Oo(i,o=o>0?o+1:0,0)}function $o(e,t,n){return!(2&e)&&t&&n&&4&e?t.toString()!==n.toString():t!==n}var Jo=function(){function e(e,t,n){this._element=t,this._type=n,this._values={},this._dirty=!1,this._factory=e}return e.prototype.setValue=function(e,t){this._values[e]!==t&&(this._values[e]=t,this._dirty=!0)},e.prototype.buildPlayer=function(e,t){if(this._dirty){var n=this._factory.fn(this._element,this._type,this._values,t,e||null);return this._values={},this._dirty=!1,n}},e}();function Xo(e,t){return 65535&e[t+3]}function ei(e,t){var n=ti(e[1],t);return n>0?n/4:0}function ti(e,t){for(var n=0;n<e.length;n+=4)if(e[n]===t)return n;return-1}function ni(e,t){for(var n=1;n<e.length;n+=2)if(e[n]===t)return n;return-1}function ri(e,t){var n=e[1];return n[4*t+3]||n[3]||null}function oi(e,t,n){e[1][4*t+2]=n}function ii(e){var t=e[6];if(null==t){t="";for(var n=e[3],r=1;r<n.length;r+=2)n[r+1]&&(t+=(t.length?" ":"")+n[r]);e[6]=t}return t}
249
257
  /**
250
258
  * @license
251
259
  * Copyright Google Inc. All Rights Reserved.
252
260
  *
253
261
  * Use of this source code is governed by an MIT-style license that can be
254
262
  * found in the LICENSE file at https://angular.io/license
255
- */function vo(e,t){for(var n,r,o,i,a,u=4,s=e.attrs,l=s?s.indexOf(1):-1,c=!1,f=0;f<t.length;f++){var d=t[f];if("number"!=typeof d){if(!c)if(4&u){if(u=2|1&u,""!==d&&d!==e.tagName||""===d&&1===t.length){if(go(u))return!1;c=!0}}else{var p=yo(8&u?"class":d,s);if(-1===p){if(go(u))return!1;c=!0;continue}var h,v=8&u?d:t[++f];if(""!==v)if(h=l>-1&&p>l?"":s[p+1],8&u&&(o=(n=h).length,a=(i=n.indexOf(r=v))+r.length,-1===i||i>0&&" "!==n[i-1]||a<o&&" "!==n[a])||2&u&&v!==h){if(go(u))return!1;c=!0}}}else{if(!c&&!go(u)&&!go(d))return!1;if(c&&go(d))continue;c=!1,u=d|1&u}}return go(u)||c}function go(e){return 0==(1&e)}function yo(e,t){if(null===t)return-1;for(var n=!1,r=0;r<t.length;){var o=t[r];if(o===e)return r;0===o?r+=4:(1===o&&(n=!0),r+=n?1:2)}return-1}function mo(e,t){for(var n=0;n<t.length;n++)if(vo(e,t[n]))return!0;return!1}function _o(e,t,n){for(var r=function o(e){var t=e.attrs;if(null!=t){var n=t.indexOf(Hr);if(0==(1&n))return t[n+1]}return null}(e),i=0;i<t.length;i++)if(r===n[i]||null===r&&mo(e,t[i]))return i+1;return 0}
263
+ */var ai=Promise.resolve(null);function ui(e){var t=e[be];if(t.firstTemplatePass=!1,hn(!1),!un(e)){var n=cn();Ut(e,t,n),function r(e){for(var t=Hr(e);null!==t;t=t[Ie])if(t.length<He&&-1===t[Le])for(var n=t,r=0;r<n[Be].length;r++){var o=n[Be][r];di(o,o[be],o[Ne])}}(e),function o(e){if(null!=e.contentQueries)for(var t=0;t<e.contentQueries.length;t+=2){var n=e.contentQueries[t];e.data[n].contentQueriesRefresh(n-He,e.contentQueries[t+1])}}(t),zt(e,t.contentHooks,t.contentCheckHooks,n),function i(e,t){if(e.expandoInstructions){var n=t[Te]=e.expandoStartIndex;yn(n);for(var r=-1,o=-1,i=0;i<e.expandoInstructions.length;i++){var a=e.expandoInstructions[i];if("number"==typeof a){if(a<=0){o=-a;var u=e.expandoInstructions[++i];r=n+=We+u}else n+=a;yn(n)}else null!==a&&(t[Te]=n,a(2,Xe(t[r]),o)),r++}}}(t,e)}!function a(e){if(null!=e)for(var t=0;t<e.length;t++)(function n(e){return 16==(16&e[Ce])})(o=rt(e[t],Xt()))&&12&o[Ce]&&(function r(e){for(var t=e[be],n=e.length;n<t.blueprint.length;n++)e[n]=t.blueprint[n]}(o),wa(o,o[Ne]));var o}(t.components)}function si(e,t,n,r,o,i,a,u){var s=t.blueprint.slice();return s[Ce]=51|r,s[xe]=s[Fe]=e,s[Ne]=n,s[je]=o||e&&e[je],s[De]=i||e&&e[De],s[Ae]=a||e&&e[Ae]||null,s[Re]=u||e&&e[Re]||null,s}function li(e,t,n,r,o){var i=Xt(),a=i[be],u=e+He;i[u]=n;var s=a.data[u];null==s&&(s=a.data[u]=Mi(i,t,u,r,o,null));var l=tn(),c=on();return l&&(!c||null!=l.child||null===s.parent&&2!==l.type?c||(l.next=s):l.child=s),null==a.firstChild&&(a.firstChild=s),nn(s),an(!0),s}function ci(e,t){return null==t[be].node&&(t[be].node=Mi(t,2,e,null,null,null)),t[Oe]=t[be].node}function fi(e){var t=e[be];t.firstTemplatePass&&(t.expandoStartIndex++,t.blueprint.push(null),t.data.push(null),e.push(null))}function di(e,t,n){var r,o=on(),i=tn();if(an(!0),nn(null),128&e[Ce])ga(ct(e));else try{an(!0),nn(null),r=mn(e,e[Oe]),_i(),t.template(vi(e),n),e[be].firstTemplatePass=!1,hn(!1),ui(e)}finally{wn(r),an(o),nn(i)}}function pi(e){return void 0===e&&(e=1),_n(e)}function hi(e,t,n){var r=e[je],o=mn(e,e[Oe]),i=!cn();try{i&&r.begin&&r.begin(),un(e)&&(n&&(_i(),n(1,t)),ui(e),e[Ce]&=-2),n&&n(2,t),ui(e)}finally{i&&r.end&&r.end(),wn(o)}}function vi(e){return un(e)?1:2}var gi=null;function yi(){gi="http://www.w3.org/2000/svg"}function mi(){gi="http://www.w3.org/1998/MathML/"}function _i(){gi=null}function wi(e,t,n,r){xi(e,t,n,r),Ri()}function bi(e,t,n){var r=Xt(),o=r[be],i=r[De].createComment("");Kr(i,li(e,4,i,"ng-container",t||null),r),ki(o,r,n),Qn(i,r)}function Ci(){var e=tn(),t=Xt(),n=t[be];on()?an(!1):nn(e=e.parent);var r=t[ke];r&&(t[ke]=r.addNode(e)),Ft(n,e)}function xi(e,t,n,r){var o=Xt(),i=o[be],a=Ii(t),u=li(e,3,a,t,n||null);if(n&&(i.firstTemplatePass&&!u.stylingTemplate&&function s(e){for(var t=0;t<e.length;t++){var n=e[t];if(1==n||2==n)return!0}return!1}(n)&&(u.stylingTemplate=go(n)),Ti(a,n)),Kr(a,u,o),ki(i,o,r),0===function l(){return Pt}()&&Qn(a,o),function c(){Pt++}(),i.firstTemplatePass){var f=Ba(u);f&&f.hasOwnProperty("class")&&(u.flags|=8)}u.stylingTemplate&&0==(8&u.flags)&&function d(e,t,n){mo(e,n,t[3],!0),mo(e,n,t[2],!1)}(a,u.stylingTemplate,o[De])}function Ii(e,t){var n=t||Xt()[De];return kr(n)?n.createElement(e,gi):null===gi?n.createElement(e):n.createElementNS(gi,e)}function ki(e,t,n,r){if(void 0===r&&(r=tt),function o(){return Zt}()){var i=tn();pn()&&function u(e,t,n,r,o){var i=o?{"":-1}:null;if(n){Xi(r,e.data.length,n.length);for(var a=0;a<n.length;a++)(u=n[a]).providersResolver&&u.providersResolver(u);for(Wi(e,r,n.length),a=0;a<n.length;a++){var u,s=e.data.length;ea(e,t,u=n[a],u.factory),Ji(e.data.length-1,u,i),Mt(s,u.onInit,u.doCheck,e)}}i&&function l(e,t,n){if(t)for(var r=e.localNames=[],o=0;o<t.length;o+=2){var i=n[t[o+1]];if(null==i)throw new Error("Export of name '"+t[o+1]+"' not found!");r.push(t[o],i)}}(r,o,i)}(e,t,function a(e,t,n){var r=e.directiveRegistry,o=null;if(r)for(var i=0;i<r.length;i++){var a=r[i];ro(n,a.selectors,!1)&&(o||(o=[]),Pn(kn(tn(),t),t,a.type),at(a)?(1&n.flags&&vr(n),n.flags=1,o.unshift(a)):o.push(a))}return o}(e,t,i),i,n||null),function s(e,t,n){var r=n.directiveStart,o=n.directiveEnd;!pn()&&r<o&&kn(n,t);for(var i=r;i<o;i++){var a=e.data[i];at(a)&&ta(t,n,a),Gi(t,Sn(e.data,t,i,n),a,i)}}(e,t,i),function l(e,t,n){for(var r=n.directiveStart,o=n.directiveEnd,i=e.expandoInstructions,a=pn(),u=r;u<o;u++){var s=e.data[u],l=t[u];if(s.hostBindings){var c=i.length;Yt(s),s.hostBindings(1,l,n.index-He),Yt(null),c===i.length&&a&&i.push(s.hostBindings)}else a&&i.push(null)}}(e,t,i),function c(e,t,n){var r=t.localNames;if(r)for(var o=t.index+1,i=0;i<r.length;i+=2){var a=r[i+1],u=-1===a?n(t,e):e[a];e[o++]=u}}(t,i,r)}}function Ei(e,t,n,r,o,i){return e.ngPrivateData||(e.ngPrivateData=Oi(-1,e,t,n,r,o,i))}function Oi(e,t,n,r,o,i,a){var u=He+n,s=u+r,l=function c(e,t){var n=new Array(t).fill(null,0,e).fill(gr,e);return n[Ve]=-1,n[Te]=e,n}(u,s);return l[be]={id:e,blueprint:l,template:t,viewQuery:a,node:null,data:l.slice(),childIndex:-1,bindingStartIndex:u,expandoStartIndex:s,expandoInstructions:null,firstTemplatePass:!0,initHooks:null,checkHooks:null,contentHooks:null,contentCheckHooks:null,viewHooks:null,viewCheckHooks:null,destroyHooks:null,pipeDestroyHooks:null,cleanup:null,contentQueries:null,components:null,directiveRegistry:"function"==typeof o?o():o,pipeRegistry:"function"==typeof i?i():i,firstChild:null}}function Ti(e,t){for(var n=Xt()[De],r=kr(n),o=0;o<t.length;){var i=t[o++];if("number"==typeof i){if(0!==i)break;var a=t[o++],u=t[o++],s=t[o++];r?n.setAttribute(e,u,s,a):e.setAttributeNS(a,u,s)}else s=t[o++],i!==Ir&&(co(i)?r&&n.setProperty(e,i,s):r?n.setAttribute(e,i,s):e.setAttribute(i,s))}}function Pi(e,t){var n=e.createRenderer(null,null);return"string"==typeof t?kr(n)?n.selectRootElement(t):n.querySelector(t):t}function Ni(e,t,n){void 0===n&&(n=!1);var r=Xt(),o=tn(),i=r[be],a=i.firstTemplatePass&&(i.cleanup||(i.cleanup=[]));if(3===o.type){var u=tt(o,r),s=r[De],l=(y=za(r)).length,c=n;if(kr(s)){var f=s.listen(u,e,t);y.push(t,f),c=l+1}else{var d=function p(e){return function t(n){!1===e(n)&&(n.preventDefault(),n.returnValue=!1)}}(t);u.addEventListener(e,d,n),y.push(d)}a&&a.push(e,o.index,l,c)}void 0===o.outputs&&(o.outputs=Hi(o,1));var h,v=o.outputs;if(v&&(h=v[e])){var g=h.length;if(g)for(var y=za(r),m=0;m<g;m+=2){var _=r[h[m]][h[m+1]].subscribe(t),w=y.length;y.push(t,_),a&&a.push(e,o.index,w,-(w+1))}}}function Ri(){var e=tn();on()?an(!1):nn(e=e.parent);var t=Xt(),n=t[ke];if(n&&(t[ke]=n.addNode(e)),Ft(Xt()[be],e),function r(){Pt--}(),vo(e)){var o=lo(e.index,t);Fi(t,e.inputs.class,ii(o))}}function ji(e,t,n,r){if(n!==gr){var o=Xt(),i=o[De],a=et(e,o);if(null==n)kr(i)?i.removeAttribute(a,t):a.removeAttribute(t);else{var u=null==r?$e(n):r(n);kr(i)?i.setAttribute(a,t,u):a.setAttribute(t,u)}}}function Di(e,t,n,r,o){Vi(e,t,n,r,o)}function Ai(e,t,n,r,o){Vi(e,t,n,r,o,Si)}function Si(e,t){return t[e.index][De]}function Vi(e,t,n,r,o,i){if(n!==gr){var a,u,s=Xt(),l=et(e,s),c=nt(e,s);if(!o&&(a=Ba(c))&&(u=a[t]))Fi(s,u,n),it(c)&&function f(e,t){var n=rt(t,e);4&n[Ce]||(n[Ce]|=8)}(s,e+He);else if(3===c.type){var d=i?i(c,s):s[De];n=null!=r?r(n):n,kr(d)?d.setProperty(l,t,n):co(t)||(l.setProperty?l.setProperty(t,n):l[t]=n)}}}function Mi(e,t,n,r,o,i){var a=tn(),u=on()?a:a&&a.parent,s=u&&e&&u!==e[Oe]?u:null;return{type:t,index:n,injectorIndex:s?s.injectorIndex:-1,directiveStart:-1,directiveEnd:-1,flags:0,providerIndexes:0,tagName:r,attrs:o,localNames:null,initialInputs:void 0,inputs:void 0,outputs:void 0,tViews:i,next:null,child:null,parent:s,detached:null,stylingTemplate:null,projection:null}}function Fi(e,t,n){for(var r=0;r<t.length;r+=2)e[t[r]][t[r+1]]=n}function Hi(e,t){var n=Xt()[be],r=null,o=e.directiveStart,i=e.directiveEnd;if(i>o)for(var a=0===t,u=n.data,s=o;s<i;s++){var l=u[s],c=a?l.inputs:l.outputs;for(var f in c)if(c.hasOwnProperty(f)){var d=c[f];(r=r||{}).hasOwnProperty(f)?r[f].push(s,d):r[f]=[s,d]}}return r}function Li(e,t,n,r){var o=tn();o.stylingTemplate||(o.stylingTemplate=so()),function i(e,t,n,r,o,a){if(!(32&e[0])){var u=function s(e,t,n){var r,o=e[1],i=e[4].length,a=ti(o,t);if(-1===a)r=o.length/4,o.push(t,i,!1,n||null);else{if(o[a+1]>=0)return-1;r=a/4,o[a+1]=i,o[a+3]=n||null}return r}(e,t,o);if(-1!==u){var l=e[4],c=l[1],f=l[0],d=4*f,p=9+d,h=p+4*c,v=h+d,g=l.length;l.push(r?r.length:0,n?n.length:0);var y=0,m=[];if(r&&r.length)for(var _=0;_<r.length;_++){var w=r[_];-1==(x=_o(e,w,9,p))&&(x=p+y,y+=4,m.push(w)),l.push(x)}var b=[];if(n&&n.length)for(var C=0;C<n.length;C++){var x,I=n[C];-1==(x=_o(e,I,p,h))?(x=h+y,y+=4,b.push(I)):x+=4*m.length,l.push(x)}var k=2;if(m.length)for(;k<g;){var E=l[k+0],O=l[k+1];if(O)for(var T=k+2+E,P=T;P<T+O;P++)l[P]+=4*m.length;k+=2+(E+O)}for(var N=b.length+m.length,R=9;R<e.length;R+=4){var j=R>=h,D=R>=(j?v:p),A=Lo(e,R),S=Po(A),V=No(A);Ho(e,R,Oo(A,S,V+=j?D?4*m.length:0:4*N+4*(D?m.length:0)))}for(var M=0;M<4*m.length;M++)e.splice(v,0,null),e.splice(p,0,null),p++,h++,v+=2;for(var F=0;F<4*b.length;F++)e.splice(h,0,null),e.push(null),h++,v++;for(var H=e[3],L=e[2],B=0;B<N;B++){var U=B>=m.length,z=U?B-m.length:B,Q=U?b[z]:m[z],Z=void 0,q=void 0;U?(Z=v+4*(c+z),q=p+4*(c+z)):(Z=h+4*(f+z),q=9+4*(f+z));var K=U?H:L,W=ni(K,Q);-1===W?(W=K.length+1,K.push(Q,!U&&null)):W+=1;var G=Yo(e,Q,U,o||null);Ho(e,q,Oo(G,W,Z)),jo(e,q,Q),Do(e,q,null),Vo(e,q,0,u),Ho(e,Z,Oo(G,W,q)),jo(e,Z,Q),Do(e,Z,null),Vo(e,Z,0,u)}l[1]=c+b.length,l[0]=f+m.length,Ho(e,0,Oo(0,0,h)|(a?16:0))}}}(o.stylingTemplate,r||null,e,t,n,vo(o))}function Bi(e,t){var n=tn();n.stylingTemplate||(n.stylingTemplate=go(t)),function r(e,t,n){var r=e[1];if(-1==ti(r,n)){r.push(n,-1,!1,null);for(var o=null,i=null,a=-1,u=0;u<t.length;u++){var s=t[u];"number"==typeof s?a=s:1==a?yo(o=o||e[3],s,!0):2==a&&yo(i=i||e[2],s,t[++u])}}}(n.stylingTemplate,t,e)}function Ui(e,t){var n=Xt(),r=0!=(2&n[Ce]);(function o(e,t,n,r,i,a,u){var s=0,l=ei(e,u||null);if(function c(e){return Io(e,0)}(e)&&function f(e,t){return e[1][4*t+2]}(e,l)){for(var d=8&e[0],p=e[5],h=Ro(e),v=zo(e),g=!1,y=9;y<e.length;y+=4)if(Io(e,y)){var m=Lo(e,y),_=Xo(e,y);if(l!==_){g=!0;continue}var w=Uo(e,y),b=Bo(e,y),C=4&m?ri(e,_):null,x=Fo(e,y),I=!!(2&m),k=!I||!v,E=b;y<h&&!Go(E,I)&&(E=Bo(e,No(m))),I||Go(E,I)||!k||(E=To(e,m)),(!r||E)&&(I?Co(p,w,!!E,t,i,x):bo(p,w,E,t,C,a,x)),xo(e,y,!1)}if(d){var O=Array.isArray(n)?ct(n):n,T=po(e),P=T[0];for(y=1;y<P;y+=2){var N=T[y],R=y+1,j=T[R];if(N){var D=N.buildPlayer(j,r);void 0!==D&&(null!=D&&fo(T,O,p,D,R)&&s++,j&&j.destroy())}else j&&j.destroy()}Zo(e,!1)}oi(e,l,!1),Qo(e,g)}return s})(lo(e+He,n),n[De],n,r,null,null,t)>0&&va(ct(n),2)}function zi(e,t,n,r,o){var i=null;null!==n&&(i=r?$e(n)+r:n),function a(e,t,n,r){wo(e,t,n,!1,r)}(lo(e+He,Xt()),t,i,o)}function Qi(e,t,n,r){var o=n instanceof io?n:!!n;!function i(e,t,n,r){wo(e,t,n,!0,r)}(lo(e+He,Xt()),t,o,r)}function Zi(e,t,n,r){if(void 0!=r)return function o(e,t,n,r){throw new Error("unimplemented. Should not be needed by ViewEngine compatibility")}();var i=Xt(),a=nt(e,i),u=lo(e+He,i);if(vo(a)&&t!==gr){var s=ii(u);Fi(i,a.inputs.class,(s.length?s+" ":"")+t)}else!function l(e,t,n,r){n=n||null;var o=ei(e,r||null),i=e[5],a=t instanceof io?new Jo(t,i,1):null,u=n instanceof io?new Jo(n,i,2):null,s=a?t.value:t,l=u?n.value:n,c=zo(e)||s===gr||s===e[6],f=l===gr||l===e[7];if(!c||!f){e[6]=s,e[7]=l;var d=ae,p=!1,h=!1,v=a?1:0;Ao(e,a,1)&&(So(e,a,1),h=!0);var g=u?3:0;Ao(e,u,3)&&(So(e,u,3),h=!0),c||("string"==typeof s?(d=s.split(/\s+/),p=!0):d=s?Object.keys(s):ae);for(var y=s||ie,m=l?Object.keys(l):ae,_=l||ie,w=m.length,b=!1,C=Ro(e),x=0,I=m.length+d.length;C<e.length&&x<I;){if(!(M=x>=w)&&!f||M&&!c){var k=M?x-w:x,E=M?d[k]:m[k],O=M?!!p||y[E]:_[E],T=M?v:g;if((F=Uo(e,C))===E){var P=Bo(e,C),N=Lo(e,C);if(Vo(e,C,T,o),$o(N,P,O)){Do(e,C,O),h=h||!!T;var R=To(e,N);(null!=P||$o(N,R,O))&&(xo(e,C,!0),b=!0)}}else{var j=qo(e,E,C);if(j>0){var D=Bo(e,j),A=Lo(e,j);Ko(e,C,j),$o(A,D,O)&&(R=To(e,A),Do(e,C,O),(null!=D||$o(A,R,O))&&(xo(e,C,!0),h=h||!!T,b=!0))}else{var S=Yo(e,E,M,ri(e,o));h=h||!!T,Wo(e,C,M,E,S,O,o,T),b=!0}}}C+=4,x++}for(;C<e.length;)(!(M=2==(2&(N=Lo(e,C))))&&!f||M&&!c)&&Go(P=Bo(e,C),M)&&(xo(e,C,!0),Do(e,C,null),Vo(e,C,T=M?v:g,o),b=!0),C+=4;for(var V=ri(e,o);x<I;){var M;if(!(M=x>=w)&&!f||M&&!c){k=M?x-w:x;var F=M?d[k]:m[k],H=(P=M?!!p||y[F]:_[F],N=1|Yo(e,F,M,V),T=M?v:g,e.length);e.push(N,F,P,0),Vo(e,H,T,o),b=!0}x++}b&&(Qo(e,!0),oi(e,o,!0)),h&&Zo(e,!0)}}(u,t,n)}function qi(e,t){var n=Xt(),r=Ar(t,n[De]),o=li(e,3,r,null,null);an(!1),Kr(r,o,n)}function Ki(e,t){if(t!==gr){var n=Xt(),r=et(e,n),o=n[De];kr(o)?o.setValue(r,$e(t)):r.textContent=$e(t)}}function Wi(e,t,n){var r=-(t.index-He),o=e.data.length-(65535&t.providerIndexes);(e.expandoInstructions||(e.expandoInstructions=[])).push(r,o,n)}function Gi(e,t,n,r){var o=tn();Yi(e,o,t,n),o&&o.attrs&&function i(e,t,n,r){var o=r.initialInputs;(void 0===o||e>=o.length)&&(o=function i(e,t,n){var r=n.initialInputs||(n.initialInputs=[]);r[e]=null;for(var o=n.attrs,i=0;i<o.length;){var a=o[i];if(3===a)break;if(0!==a){var u=t[a],s=o[i+1];void 0!==u&&(r[e]||(r[e]=[])).push(u,s),i+=2}else i+=4}return r}(e,n,r));var a=o[e];if(a)for(var u=0;u<a.length;u+=2)t[a[u]]=a[u+1]}(r,t,n.inputs,o),n.contentQueries&&n.contentQueries(r),at(n)&&(rt(o.index,e)[Ne]=t)}function Yi(e,t,n,r){var o=tt(t,e);Qn(n,e),o&&Qn(o,e),null!=r.attributes&&3==t.type&&Ti(o,r.attributes)}function $i(e){var t=Xt()[be];(t.components||(t.components=[])).push(e.index)}function Ji(e,t,n){n&&(t.exportAs&&(n[t.exportAs]=e),t.template&&(n[""]=e))}function Xi(e,t,n){e.flags=1&e.flags,e.directiveStart=t,e.directiveEnd=t+n,e.providerIndexes=t}function ea(e,t,n,r){e.data.push(n);var o=new we(r,at(n),null);e.blueprint.push(o),t.push(o)}function ta(e,t,n){var r=tt(t,e),o=Ei(n.template,n.consts,n.vars,n.directiveDefs,n.pipeDefs,n.viewQuery),i=pa(e,t.index,si(e,o,null,n.onPush?8:4,e[je],e[je].createRenderer(r,n)));i[Oe]=t,i[Ee]=e[t.index],e[t.index]=i,pn()&&$i(t)}function na(e,t,n,r,o){return[o?-1:0,[],n,null,null,e,r,zr(t,n)]}function ra(e,t,n,r,o,i,a,u){var s=Xt(),l=s[be],c=ia(e,o||null,i||null);pn()&&(c.tViews=Oi(-1,t,n,r,l.directiveRegistry,l.pipeRegistry,null)),ki(l,s,a,u);var f=s[ke],d=tn();Qn(tt(d,s),s),f&&(s[ke]=f.addNode(d)),Ft(l,c),an(!1)}function oa(e){var t=ia(e,null,null);pn()&&(t.tViews=[]),an(!1)}function ia(e,t,n){var r=Xt(),o=e+He,i=r[De].createComment(""),a=li(e,0,i,t,n),u=r[o]=na(r[o],a,r,i);Kr(i,a,r),pa(r,e+He,u);var s=r[ke];return s&&(u[ke]=s.container()),a}function aa(e){var t=Xt(),n=t[be];nn(Je(n.data,e)),an(!0),t[e+He][Le]=0,Ut(t,n,cn())}function ua(){var e=tn();on()?an(!1):nn(e=e.parent);for(var t=Xt()[e.index],n=t[Le];n<t[Be].length;)Fr(t,e,n)}function sa(e,t,n){var r=Xt(),o=tn(),i=2===o.type?o.parent:o,a=r[i.index],u=function s(e,t,n,r){for(var o=e[Be],i=n;i<o.length;i++){var a=o[i][be].id;if(a===r)return o[i];if(!(a<r))break;Fr(e,t,i)}return null}(a,i,a[Le],e);return u?(an(!0),mn(u,u[be].node)):(u=si(r,function l(e,t,n,r){var o=Xt()[be],i=r.tViews;return(e>=i.length||null==i[e])&&(i[e]=Oi(e,null,t,n,o.directiveRegistry,o.pipeRegistry,null)),i[e]}(e,t,n,i),null,4),a[ke]&&(u[ke]=a[ke].createView()),ci(e,u),mn(u,u[be].node)),a&&(un(u)&&Vr(u,a,r,a[Le],-1),a[Le]++),un(u)?3:2}function la(){var e=Xt(),t=e[Oe];un(e)&&(ui(e),e[Ce]&=-2),ui(e),wn(e[xe]),nn(t),an(!1)}function ca(e,t){var n=wt(Xt())[Oe];if(!n.projection)for(var r=n.projection=new Array(e?e.length+1:1).fill(null),o=r.slice(),i=n.child;null!==i;){var a=e?oo(i,e,t):0,u=i.next;o[a]?o[a].next=i:(r[a]=i,i.next=null),o[a]=i,i=u}}var fa=[];function da(e,t,n){void 0===t&&(t=0);var r=Xt(),o=li(e,1,null,null,n||null);null===o.projection&&(o.projection=t),an(!1);for(var i=wt(r),a=i[Oe].projection[t],u=i[xe],s=-1;a;){if(1===a.type){var l=wt(u),c=l[Oe].projection[a.projection];if(c){fa[++s]=a,fa[++s]=u,a=c,u=l[xe];continue}}else a.flags|=2,$r(a,o,r,u);null===a.next&&u!==i[xe]&&(u=fa[s--],a=fa[s--]),a=a.next}}function pa(e,t,n){var r=e[be],o=pn();return e[Se]?e[Se][Ie]=n:o&&(r.childIndex=t),e[Se]=n,n}function ha(e){for(;e&&!(128&e[Ce]);)e[Ce]|=8,e=e[xe];e[Ce]|=8,va(e[Ne],1)}function va(e,t){var n,r=0===e.flags;e.flags|=t,r&&e.clean==ai&&(e.clean=new Promise(function(e){return n=e}),e.scheduler(function(){if(1&e.flags&&(e.flags&=-2,ga(e)),2&e.flags){e.flags&=-3;var t=e.playerHandler;t&&t.flushPlayers()}e.clean=ai,n(null)}))}function ga(e){for(var t=0;t<e.components.length;t++){var n=e.components[t];hi(dt(n),n)}}function ya(e){ma(zn(e),e)}function ma(e,t){var n=e[je];n.begin&&n.begin(),un(e)&&wa(e,t),wa(e,t),n.end&&n.end()}function _a(e){ga(e[Ne])}function wa(e,t){var n=e[be],r=mn(e,e[Oe]),o=n.template,i=n.viewQuery;try{_i(),function a(e,t,n){e&&un(t)&&e(1,n)}(i,e,t),o(vi(e),t),ui(e),function u(e,t,n){e&&!un(t)&&e(2,n)}(i,e,t)}finally{wn(r)}}function ba(e){ha(zn(e))}function Ca(e){var t=Xt();return _r(t,t[Te]++,e)?e:gr}function xa(e){if(pn()){var t=Xt(),n=t[be];!function o(e,t,n){var r=e.expandoInstructions,o=r.length;o>=2&&r[o-2]===t.hostBindings?r[o-1]=r[o-1]+n:r.push(t.hostBindings,n)}(n,function r(){return Gt}(),e),function i(e,t,n){for(var r=0;r<n;r++)t.push(gr),e.blueprint.push(gr),e.data.push(null)}(n,t,e)}}function Ia(e){for(var t=!1,n=Xt(),r=n[Te],o=1;o<e.length;o+=2)_r(n,r++,e[o])&&(t=!0);if(n[Te]=r,!t)return gr;var i=e[0];for(o=1;o<e.length;o+=2)i+=$e(e[o])+e[o+1];return i}function ka(e,t,n){var r=Xt(),o=_r(r,r[Te],t);return r[Te]+=1,o?e+$e(t)+n:gr}function Ea(e,t,n,r,o){var i=Xt(),a=wr(i,i[Te],t,r);return i[Te]+=2,a?e+$e(t)+n+$e(r)+o:gr}function Oa(e,t,n,r,o,i,a){var u=Xt(),s=br(u,u[Te],t,r,i);return u[Te]+=3,s?e+$e(t)+n+$e(r)+o+$e(i)+a:gr}function Ta(e,t,n,r,o,i,a,u,s){var l=Xt(),c=Cr(l,l[Te],t,r,i,u);return l[Te]+=4,c?e+$e(t)+n+$e(r)+o+$e(i)+a+$e(u)+s:gr}function Pa(e,t,n,r,o,i,a,u,s,l,c){var f=Xt(),d=f[Te],p=Cr(f,d,t,r,i,u);return p=_r(f,d+4,l)||p,f[Te]+=5,p?e+$e(t)+n+$e(r)+o+$e(i)+a+$e(u)+s+$e(l)+c:gr}function Na(e,t,n,r,o,i,a,u,s,l,c,f,d){var p=Xt(),h=p[Te],v=Cr(p,h,t,r,i,u);return v=wr(p,h+4,l,f)||v,p[Te]+=6,v?e+$e(t)+n+$e(r)+o+$e(i)+a+$e(u)+s+$e(l)+c+$e(f)+d:gr}function Ra(e,t,n,r,o,i,a,u,s,l,c,f,d,p,h){var v=Xt(),g=v[Te],y=Cr(v,g,t,r,i,u);return y=br(v,g+4,l,f,p)||y,v[Te]+=7,y?e+$e(t)+n+$e(r)+o+$e(i)+a+$e(u)+s+$e(l)+c+$e(f)+d+$e(p)+h:gr}function ja(e,t,n,r,o,i,a,u,s,l,c,f,d,p,h,v,g){var y=Xt(),m=y[Te],_=Cr(y,m,t,r,i,u);return _=Cr(y,m+4,l,f,p,v)||_,y[Te]+=8,_?e+$e(t)+n+$e(r)+o+$e(i)+a+$e(u)+s+$e(l)+c+$e(f)+d+$e(p)+h+$e(v)+g:gr}function Da(e,t){var n=Xt(),r=n[be],o=e+He;o>=r.data.length&&(r.data[o]=null),n[o]=t}function Aa(e){return Je(function t(){return sn}(),e)}function Sa(e){return Xt()[Me][e]}function Va(e){return Je(Xt(),e)}function Ma(t,n){return void 0===n&&(n=e.InjectFlags.Default),t=ee(t),Rn(tn(),Xt(),t,n)}function Fa(e){return Nn(tn(),e)}function Ha(e,t){var n=Xt(),r=n[be],o=(n[Me]||(n[Me]=[])).push(e);if(pn()){var i=r.contentQueries||(r.contentQueries=[]);t!==(r.contentQueries.length?r.contentQueries[r.contentQueries.length-2]:-1)&&i.push(t,o-1)}}var La=ai;function Ba(e){return e?(void 0===e.inputs&&(e.inputs=Hi(e,0)),e.inputs):null}function Ua(){return Xt()}function za(e){return e[Pe]||(e[Pe]=[])}function Qa(e){return e[be].cleanup||(e[be].cleanup=[])}
256
264
  /**
257
265
  * @license
258
266
  * Copyright Google Inc. All Rights Reserved.
259
267
  *
260
268
  * Use of this source code is governed by an MIT-style license that can be
261
269
  * found in the LICENSE file at https://angular.io/license
262
- */var wo={},bo=function bo(e,t){this.fn=e,this.value=t},Co=function(){function e(){this._players=[]}return e.prototype.flushPlayers=function(){for(var e=0;e<this._players.length;e++){var t=this._players[e];t.parent||0!==t.state||t.play()}this._players.length=0},e.prototype.queuePlayer=function(e){this._players.push(e)},e}();
270
+ */function Za(e){var t=Bn(e);if(!t)return[];var n=lo(t.nodeIndex,t.lView),r=n?po(n):null;return r?function o(e){for(var t=[],n=e[0],r=2;r<n;r+=2){var o=e[r];o&&t.push(o)}for(r=n;r<e.length;r++)t.push(e[r]);return t}(r):[]}
263
271
  /**
264
272
  * @license
265
273
  * Copyright Google Inc. All Rights Reserved.
@@ -267,115 +275,115 @@ var Fr,Hr="ngProjectAs";
267
275
  * Use of this source code is governed by an MIT-style license that can be
268
276
  * found in the LICENSE file at https://angular.io/license
269
277
  */
270
- function xo(e,t,n){return[null,t||null,n||[null],0,0,e||null,null,null]}function Io(e,t){for(var n=e+rt,r=t[n],o=t;Array.isArray(r);)o=r,r=r[Qe];if(function i(e){return"number"!=typeof e[Le]&&"number"!=typeof e[yt]}(o))return o;var a=Ot(e,t).stylingTemplate;return o!==t&&(n=Qe),o[n]=a?function u(e,t){var n=t.slice();return n[5]=e,n}(r,a):xo(r)}function ko(e,t,n,r,o,i){return i=i||n,o?e[o]=r:e.push(r),!!r&&(r.addEventListener(200,function(){var t=e.indexOf(r);t&&(t<e[0]?e[t]=null:e.splice(t,1)),r.destroy()}),(t.playerHandler||(t.playerHandler=new Co)).queuePlayer(r,i),!0)}function Eo(e){return e[0]}function Oo(e){return e[0]=[5,null,null,null,null]}var To=[],Po={};function No(e,t,n){var r=8+4*t,o=Jo(e,r),i=$o(e,r);if(si(i,o,n instanceof bo?n.value:n)){var a=2==(2&i),u=n instanceof bo?new li(n,e[5],a?1:2):null,s=u?n.value:n,l=Wo(e,r),c=!1;if(Zo(e,u,l)){var f=qo(e,u,l);Ko(e,r,u?f:0),c=!0}Qo(e,r,s);var d=Lo(i),p=Jo(e,d);if(!p||si(i,p,s)){var h=!1,v=!0;!ai(s,a)&&ai(p,a)&&(h=!0,v=!1),jo(e,d,h),jo(e,r,v),ti(e,!0)}c&&ni(e,!0)}}function Do(e,t,n,r,o,i,a){n=o&&n?o(t,n):n,i||a?(i&&i.setValue(t,n),a&&a.setValue(t,n)):n?Lr(r)?r.setStyle(e,t,n,Fr.DashCase):e.style.setProperty(t,n):Lr(r)?r.removeStyle(e,t,Fr.DashCase):e.style.removeProperty(t)}function Ro(e,t,n,r,o,i){o||i?(o&&o.setValue(t,n),i&&i.setValue(t,n)):n?Lr(r)?r.addClass(e,t):e.classList.add(t):Lr(r)?r.removeClass(e,t):e.classList.remove(t)}function jo(e,t,n){var r=t>=8?t+0:t;n?e[r]|=1:e[r]&=-2}function Ao(e,t){return 1==(1&e[t>=8?t+0:t])}function So(e,t){return 2==(2&e[t>=8?t+0:t])}function Vo(e,t){return 4==(4&e[t>=8?t+0:t])}function Mo(e,t,n){return 31&e|t<<5|n<<19}function Fo(e,t){var n=Ho(t);return e[2][n]}function Ho(e){return e>>5&16383}function Lo(e){var t=e>>19&16383;return t>=8?t:-1}function Bo(e){return Lo(e[3])}function Uo(e){return e[1]}function zo(e,t,n){e[t+1]=n}function Qo(e,t,n){e[t+2]=n}function Zo(e,t,n){var r=e[0];if(t){if(!r||0===n)return!0}else if(!r)return!1;return r[n]!==t}function qo(e,t,n){var r=e[0]||Oo(e);return n>0?r[n]=t:(r.splice(n=r[0],0,t,null),r[0]+=2),n}function Ko(e,t,n){e[t+3]=n}function Wo(e,t){return e[t+3]||0}function Go(e,t){var n=Wo(e,t);if(n){var r=e[0];if(r)return r[n]}return null}function Yo(e,t,n){e[3===t?t:t+0]=n}function $o(e,t){return e[3===t?t:t+0]}function Jo(e,t){return e[t+2]}function Xo(e,t){return e[t+1]}function ei(e){return 16&e[3]}function ti(e,t){jo(e,3,t)}function ni(e,t){t?e[3]|=8:e[3]&=-9}function ri(e,t,n){for(var r=(n||0)+1;r<e.length;r+=4)if(e[r]==t)return r-1;return-1}function oi(e,t,n){var r=Jo(e,t),o=Xo(e,t),i=$o(e,t),a=Wo(e,t),u=i,s=$o(e,n),l=Lo(u);l>=0&&Yo(e,l,Mo(c=$o(e,l),Ho(c),n));var c,f=Lo(s);f>=0&&Yo(e,f,Mo(c=$o(e,f),Ho(c),t)),Qo(e,t,Jo(e,n)),zo(e,t,Xo(e,n)),Yo(e,t,$o(e,n)),Ko(e,t,Wo(e,n)),Qo(e,n,r),zo(e,n,o),Yo(e,n,i),Ko(e,n,a)}function ii(e,t,n,r,o,i,a){var u=t<e.length;e.splice(t,0,1|o|(n?2:0),r,i,a),u&&function s(e,t){for(var n=t;n<e.length;n+=4){var r=Lo($o(e,n));if(r>0){var o=Ho($o(e,r));Yo(e,r,Mo((Ao(e,r)?1:0)|(So(e,r)?2:0)|(Vo(e,r)?4:0),o,n))}}}(e,t+4)}function ai(e,t){return t?!!e:null!==e}function ui(e,t,n){return t?2:n&&n(e)?4:0}function si(e,t,n){return!(2&e)&&t&&n&&4&e?t.toString()!==n.toString():t!==n}var li=function(){function e(e,t,n){this._element=t,this._type=n,this._values={},this._dirty=!1,this._factory=e}return e.prototype.setValue=function(e,t){this._values[e]!==t&&(this._values[e]=t,this._dirty=!0)},e.prototype.buildPlayer=function(e,t){if(this._dirty){var n=this._factory.fn(this._element,this._type,this._values,t,e||null);return this._values={},this._dirty=!1,n}},e}(),ci=Promise.resolve(null);
271
278
  /**
272
279
  * @license
273
280
  * Copyright Google Inc. All Rights Reserved.
274
281
  *
275
282
  * Use of this source code is governed by an MIT-style license that can be
276
283
  * found in the LICENSE file at https://angular.io/license
277
- */function fi(e,t){var n=hn();if(n.firstTemplatePass=!1,On(!1),1!==t){var r=yn(),o=xn();o||lt(e,n,r),function i(e){for(var t=to(e);null!==t;t=t[Ue])if(t.length<rt&&-1===t[yt])for(var n=t,r=0;r<n[mt].length;r++){var o=n[mt][r];gi(o,o[He],o[We],2)}}(e),function a(e){if(null!=e.contentQueries)for(var t=0;t<e.contentQueries.length;t+=2){var n=e.contentQueries[t];e.data[n].contentQueriesRefresh(n-rt,e.contentQueries[t+1])}}(n),o||ct(e,n.contentHooks,n.contentCheckHooks,r),function u(e,t){if(e.expandoInstructions){var n=t[qe]=e.expandoStartIndex;Nn(n);for(var r=-1,o=-1,i=0;i<e.expandoInstructions.length;i++){var a=e.expandoInstructions[i];if("number"==typeof a){if(a<=0){o=-a;var u=e.expandoInstructions[++i];r=n+=Ve+u}else n+=a;Nn(n)}else t[qe]=n,a(2,It(t[r]),o),r++}}}(n,e)}!function s(e,t){if(null!=e)for(var n=0;n<e.length;n++)ha(e[n],t)}(n.components,t)}function di(e,t,n,r,o,i,a,u){var s=t.blueprint.slice();return s[Le]=25|r,s[Be]=s[nt]=e,s[We]=n,s[Ye]=o||e&&e[Ye],s[$e]=i||e&&e[$e],s[Je]=a||e&&e[Je]||null,s[Ge]=u||e&&e[Ge]||null,s}function pi(e,t,n,r,o){var i=mn(),a=hn(),u=e+rt;i[u]=n;var s=a.data[u];if(null==s){var l=ln(),c=dn();s=a.data[u]=Li(i,t,u,r,o,null),l&&(!c||null!=l.child||null===s.parent&&2!==l.type?c||(l.next=s):l.child=s)}return null==a.firstChild&&3===t&&(a.firstChild=s),cn(s),pn(!0),s}function hi(e,t){null==t[He].node&&(t[He].node=Li(t,2,e,null,null,null)),pn(!0);var n=t[He].node;return cn(n),t[Ze]=n}function vi(e){var t=e[He];t.firstTemplatePass&&(t.expandoStartIndex++,t.blueprint.push(null),t.data.push(null),e.push(null))}function gi(e,t,n,r){var o,i=dn(),a=ln();if(pn(!0),cn(null),64&e[Le])Ca(St(e));else try{pn(!0),cn(null),o=Dn(e,e[Ze]),xi(),t.template(r,n),2&r?fi(e,null):(e[He].firstTemplatePass=!1,On(!1))}finally{jn(o,1==(1&r)),pn(i),cn(a)}}function yi(e){return void 0===e&&(e=1),Rn(e)}function mi(e,t,n,r){var o=e[Ye],i=Dn(e,e[Ze]);try{o.begin&&o.begin(),r&&(xi(),r(n||_i(e),t)),fi(e,n)}finally{o.end&&o.end(),jn(i)}}function _i(e){return 1&e[Le]?3:2}var wi=null;function bi(){wi="http://www.w3.org/2000/svg/"}function Ci(){wi="http://www.w3.org/1998/MathML/"}function xi(){wi=null}function Ii(e,t,n,r){Oi(e,t,n,r),Mi()}function ki(e,t,n){var r=mn(),o=hn(),i=en().createComment("");lo(i,pi(e,4,i,null,t||null),r),Pi(o,r,n)}function Ei(){var e=ln(),t=hn();dn()?pn(!1):cn(e=e.parent);var n=vn();n&&gn(n.addNode(e)),it(e.flags,t)}function Oi(e,t,n,r){var o=mn(),i=hn(),a=Ti(t),u=pi(e,3,a,t,n||null);n&&Ri(a,n),lo(a,u,o),Pi(i,o,r),0===function s(){return Qt}()&&rr(a,o),function l(){Qt++}()}function Ti(e,t){var n=t||en();return Lr(n)?n.createElement(e,wi):null===wi?n.createElement(e):n.createElementNS(wi,e)}function Pi(e,t,n,r){if(void 0===r&&(r=Et),function o(){return Zt}()){var i=ln();En()&&function u(e,t,n,r,o){var i=o?{"":-1}:null,a=0;if(n){ra(r,e.data.length,n.length);for(var u=0;u<n.length;u++)(s=n[u]).providersResolver&&s.providersResolver(s);for($i(e,r,n.length),u=0;u<n.length;u++){var s,l=e.data.length;oa(e,t,s=n[u],s.factory),a+=s.hostVars,na(e.data.length-1,s,i),ot(l,s.onInit,s.doCheck,e)}}i&&function c(e,t,n){if(t)for(var r=e.localNames=[],o=0;o<t.length;o+=2){var i=n[t[o+1]];if(null==i)throw new Error("Export of name '"+t[o+1]+"' not found!");r.push(t[o],i)}}(r,o,i),Ji(e,t,a)}(e,t,function a(e,t,n){var r=e.directiveRegistry,o=null;if(r)for(var i=0;i<r.length;i++){var a=r[i];mo(n,a.selectors)&&(o||(o=[]),Un(Fn(ln(),t),t,a.type),Dt(a)?(4096&n.flags&&Mr(n),n.flags=4096,o.unshift(a)):o.push(a))}return o}(e,t,i),i,n||null),function s(e,t,n){var r=n.flags>>16,o=r+(4095&n.flags);!En()&&r<o&&Fn(n,t);for(var i=r;i<o;i++){var a=e.data[i];Dt(a)&&ia(t,n,a),Xi(t,Wn(e.data,t,i,n),a,i)}}(e,t,i),function l(e,t,n){var r=t.localNames;if(r)for(var o=t.index+1,i=0;i<r.length;i+=2){var a=r[i+1],u=-1===a?n(t,e):e[a];e[o++]=u}}(t,i,r)}}function Ni(e,t,n,r,o,i){return e.ngPrivateData||(e.ngPrivateData=Di(-1,e,t,n,r,o,i))}function Di(e,t,n,r,o,i,a){var u=rt+n,s=u+r,l=function c(e,t){var n=new Array(t).fill(null,0,e).fill(wo,e);return n[et]=-1,n[qe]=e,n}(u,s);return l[He]={id:e,blueprint:l,template:t,viewQuery:a,node:null,data:l.slice(),childIndex:-1,bindingStartIndex:u,expandoStartIndex:s,expandoInstructions:null,firstTemplatePass:!0,initHooks:null,checkHooks:null,contentHooks:null,contentCheckHooks:null,viewHooks:null,viewCheckHooks:null,destroyHooks:null,pipeDestroyHooks:null,cleanup:null,contentQueries:null,components:null,directiveRegistry:"function"==typeof o?o():o,pipeRegistry:"function"==typeof i?i():i,firstChild:null}}function Ri(e,t){for(var n=en(),r=Lr(n),o=0;o<t.length;){var i=t[o];if(1===i)break;if(i===Hr)o+=2;else if(0===i){var a=t[o+1],u=t[o+2],s=t[o+3];r?n.setAttribute(e,u,s,a):e.setAttributeNS(a,u,s),o+=4}else s=t[o+1],r?n.setAttribute(e,i,s):e.setAttribute(i,s),o+=2}}function ji(e,t){var n=e.createRenderer(null,null);return"string"==typeof t?Lr(n)?n.selectRootElement(t):n.querySelector(t):t}function Ai(e,t,n){void 0===n&&(n=!1);var r=mn(),o=ln();if(3===o.type){var i=Et(o,r),a=en();if(Lr(a))Vi(r,a.listen(i,e,t));else{var u=function s(e){return function t(n){!1===e(n)&&(n.preventDefault(),n.returnValue=!1)}}(t);i.addEventListener(e,u,n);var l=wn(r);l.push(u),En()&&bn(r).push(e,o.index,l.length-1,n)}}void 0===o.outputs&&(o.outputs=Ui(o.flags,1));var c,f=o.outputs;f&&(c=f[e])&&function d(e,t,n){for(var r=0;r<t.length;r+=2){var o=e[t[r]][t[r+1]].subscribe(n);Si(e,o,o.unsubscribe)}}(r,c,t)}function Si(e,t,n){e||(e=mn()),wn(e).push(t),e[He].firstTemplatePass&&bn(e).push(n,e[Ke].length-1)}function Vi(e,t){wn(e).push(t),e[He].firstTemplatePass&&bn(e).push(e[Ke].length-1,null)}function Mi(){var e=ln();dn()?pn(!1):cn(e=e.parent);var t=vn();t&&gn(t.addNode(e)),it(e.flags,hn()),function n(){Qt--}()}function Fi(e,t,n,r){if(n!==wo){var o=mn(),i=en(),a=kt(e,o);if(null==n)Lr(i)?i.removeAttribute(a,t):a.removeAttribute(t);else{var u=null==r?Ct(n):r(n);Lr(i)?i.setAttribute(a,t,u):a.setAttribute(t,u)}}}function Hi(e,t,n,r){if(n!==wo){var o,i=mn(),a=kt(e,i),u=Ot(e,i),s=$a(u);if(s&&(o=s[t]))Bi(i,o,n),Nt(u)&&function l(e,t){var n=Tt(t,e);2&n[Le]||(n[Le]|=4)}(i,e+rt);else if(3===u.type){var c=en();n=null!=r?r(n):n,Lr(c)?c.setProperty(a,t,n):a.setProperty?a.setProperty(t,n):a[t]=n}}}function Li(e,t,n,r,o,i){var a=ln(),u=dn()?a:a&&a.parent,s=u&&e&&u!==e[Ze]?u:null;return{type:t,index:n,injectorIndex:s?s.injectorIndex:-1,flags:0,providerIndexes:0,tagName:r,attrs:o,localNames:null,initialInputs:void 0,inputs:void 0,outputs:void 0,tViews:i,next:null,child:null,parent:s,detached:null,stylingTemplate:null,projection:null}}function Bi(e,t,n){for(var r=0;r<t.length;r+=2)e[t[r]][t[r+1]]=n}function Ui(e,t){var n=hn(),r=4095&e,o=null;if(r>0)for(var i=e>>16,a=i+r,u=0===t,s=n.data,l=i;l<a;l++){var c=s[l],f=u?c.inputs:c.outputs;for(var d in f)if(f.hasOwnProperty(d)){var p=f[d];(o=o||{}).hasOwnProperty(d)?o[d].push(l,p):o[d]=[l,p]}}return o}function zi(e,t,n,r){if(void 0!=r)return function o(e,t,n,r){var o=kt(e,mn()),i=o.hostStylingHack.get(r).classDeclarations[t],a=en();if(Lr(a))n?a.addClass(o,i):a.removeClass(o,i);else{var u=o.classList;n?u.add(i):u.remove(i)}}(e,t,n,r);var i=n instanceof bo?n:!!n;!function a(e,t,n){No(e,t+e[4],n)}(Io(e,mn()),t,i)}function Qi(e,t,n,r){if(void 0==r){var o=ln(),i=$a(o);if(!o.stylingTemplate){var a=!(!i||!i.hasOwnProperty("class"));a&&(o.flags|=32768),o.stylingTemplate=function u(e,t,n,r){var o=[null],i=xo(null,n,o),a={},u={},s=0;if(t)for(var l=!1,c=0;c<t.length;c++)if(1===(h=t[c]))l=!0;else{var f=h;if(l){var d=t[++c];o.push(d),a[f]=o.length-1}else s++,a[f]=0}i[4]=s;var p=r?[]:null;if(e)for(l=!1,c=0;c<e.length;c++){var h;if(1===(h=e[c]))l=!0;else{var v=h;l?(d=e[++c],o.push(d),u[v]=o.length-1,p&&p.push(v)):u[v]=0}}var g=Object.keys(a),y=Object.keys(u),m=g.length,_=g.length+y.length,w=4*_*2+8;for(c=8;c<w;c++)i.push(null);var b=4*_+8;for(c=0;c<_;c++){var C=c>=m,x=(f=C?y[c-m]:g[c],C?u[f]:a[f]),I=o[x],k=4*c+b,E=4*c+8,O=ui(f,C,n||null);Yo(i,E,Mo(O,x,k)),zo(i,E,f),Qo(i,E,null),Ko(i,E,0),Yo(i,k,Mo(O|(null!==I?1:0),x,E)),zo(i,k,f),Qo(i,k,null),Ko(i,k,0)}return Yo(i,3,Mo(0,0,b)|(r?16:0)),ti(i,o.length>1),p&&(i[6]=p.join(" ")),i}(e,t,n,a)}if(t&&t.length||e&&e.length){var s=o.index-rt;if(Ja(o)){var l=Io(s,mn())[6];Bi(mn(),o.inputs.class,l)}Zi(s)}}else yn()&&function c(e,t,n,r){var o=Et(ln(),mn());(o.hostStylingHack||(o.hostStylingHack=new Map)).set(r,{classDeclarations:Wi(e),styleDeclarations:Wi(t),styleSanitizer:n})}(e||null,t||null,n||null,r)}function Zi(e,t){if(void 0==t){var n=mn(),r=0!=(1&n[Le]);(function o(e,t,n,r,i,a){var u=0;if(function s(e){return Ao(e,3)}(e)){for(var l=8&e[3],c=e[5],f=Bo(e),d=Uo(e),p=ei(e),h=8;h<e.length;h+=4)if(Ao(e,h)){var v=Xo(e,h),g=Jo(e,h),y=$o(e,h),m=Go(e,h),_=!!(2&y),w=!_||!p,b=g;h<f&&!ai(b,_)&&(b=Jo(e,Lo(y))),!ai(b,_)&&w&&(b=Fo(e,y)),(!r||b)&&(_?Ro(c,v,!!b,t,i,m):Do(c,v,b,t,4&y?d:null,a,m)),jo(e,h,!1)}if(l){var C=Array.isArray(n)?St(n):n,x=Eo(e),I=x[0];for(h=1;h<I;h+=2){var k=x[h],E=h+1,O=x[E];if(k){var T=k.buildPlayer(O,r);void 0!==T&&(null!=T&&ko(x,C,c,T,E)&&u++,O&&O.destroy())}else O&&O.destroy()}ni(e,!1)}ti(e,!1)}return u})(Io(e,n),en(),n,r)>0&&ba(St(n),2)}}function qi(e,t,n,r,o){if(void 0!=o)return function i(e,t,n,r,o){throw new Error("unimplemented. Should not be needed by ViewEngine compatibility")}();var a=null;n&&(a=r?Ct(n)+r:n),No(Io(e,mn()),t,a)}function Ki(e,t,n,r){if(void 0!=r)return function o(e,t,n,r){throw new Error("unimplemented. Should not be needed by ViewEngine compatibility")}();var i=mn(),a=Ot(e,i),u=Io(e,i);if(Ja(a)&&t!==wo){var s=u[6],l=(s.length?s+" ":"")+t;Bi(mn(),a.inputs.class,l)}!function c(e,t,n){n=n||null;var r=e[5],o=t instanceof bo?new li(t,r,1):null,i=n instanceof bo?new li(n,r,2):null,a=o?t.value:t,u=i?n.value:n,s=ei(e)||a===wo||a===e[6],l=u===wo||u===e[7];if(!s||!l){e[6]=a,e[7]=u;var c=To,f=!1,d=!1,p=o?1:0;Zo(e,o,1)&&(qo(e,o,1),d=!0);var h=i?3:0;Zo(e,i,3)&&(qo(e,i,3),d=!0),s||("string"==typeof a?(c=a.split(/\s+/),f=!0):c=a?Object.keys(a):To);for(var v=a||Po,g=u?Object.keys(u):To,y=u||Po,m=g.length,_=!1,w=Bo(e),b=0,C=g.length+c.length;w<e.length&&b<C;){var x=b>=m;if(!x&&!l||x&&!s){var I=x?b-m:b,k=x?c[I]:g[I],E=x?!!f||v[k]:y[k],O=x?p:h;if((F=Xo(e,w))===k){var T=Jo(e,w),P=$o(e,w);Ko(e,w,O),si(P,T,E)&&(Qo(e,w,E),d=d||!!O,si(P,j=Fo(e,P),E)&&(jo(e,w,!0),_=!0))}else{var N=ri(e,k,w);if(N>0){var D=Jo(e,N),R=$o(e,N);if(oi(e,w,N),si(R,D,E)){var j=Fo(e,R);Qo(e,w,E),si(R,j,E)&&(jo(e,w,!0),d=d||!!O,_=!0)}}else{var A=ui(k,x,Uo(e));d=d||!!O,ii(e,w,x,k,A,E,O),_=!0}}}w+=4,b++}for(;w<e.length;){var S=2==(2&(P=$o(e,w)));(!S&&!l||S&&!s)&&ai(T=Jo(e,w),S)&&(jo(e,w,!0),Qo(e,w,null),Ko(e,w,O=S?p:h),_=!0),w+=4}for(var V=Uo(e);b<C;){var M=b>=m;if(!M&&!l||M&&!s){I=M?b-m:b;var F=M?c[I]:g[I];T=M?!!f||v[F]:y[F],P=1|ui(F,M,V),e.push(P,F,T,O=M?p:h),_=!0}b++}_&&ti(e,!0),d&&ni(e,!0)}}(u,t,n)}function Wi(e){return e||[]}function Gi(e,t){var n=mn(),r=Yr(t,en()),o=pi(e,3,r,null,null);pn(!1),lo(r,o,n)}function Yi(e,t){if(t!==wo){var n=kt(e,mn()),r=en();Lr(r)?r.setValue(n,Ct(t)):n.textContent=Ct(t)}}function $i(e,t,n){var r=-(t.index-rt),o=e.data.length-(65535&t.providerIndexes);(e.expandoInstructions||(e.expandoInstructions=[])).push(r,o,n)}function Ji(e,t,n){for(var r=0;r<n;r++)t.push(wo),e.blueprint.push(wo),e.data.push(null)}function Xi(e,t,n,r){var o=ln();ea(e,o,t,n),o&&o.attrs&&function i(e,t,n,r){var o=r.initialInputs;(void 0===o||e>=o.length)&&(o=function i(e,t,n){var r=n.initialInputs||(n.initialInputs=[]);r[e]=null;for(var o=n.attrs,i=0;i<o.length;){var a=o[i];if(1===a)break;if(0!==a){var u=t[a],s=o[i+1];void 0!==u&&(r[e]||(r[e]=[])).push(u,s),i+=2}else i+=4}return r}(e,n,r));var a=o[e];if(a)for(var u=0;u<a.length;u+=2)t[a[u]]=a[u+1]}(r,t,n.inputs,o),n.contentQueries&&n.contentQueries(r),Dt(n)&&(Tt(o.index,e)[We]=t)}function ea(e,t,n,r){var o=Et(t,e);r.hostBindings&&r.hostBindings(1,n,t.index),rr(n,e),o&&rr(o,e),null!=r.attributes&&3==t.type&&Ri(o,r.attributes)}function ta(e){var t=hn();(t.components||(t.components=[])).push(e.index)}function na(e,t,n){n&&(t.exportAs&&(n[t.exportAs]=e),t.template&&(n[""]=e))}function ra(e,t,n){e.flags=t<<16|4096&e.flags|n,e.providerIndexes=t}function oa(e,t,n,r){e.data.push(n);var o=new je(r,Dt(n),null);e.blueprint.push(o),t.push(o),function i(e,t){e.expandoInstructions.push(t.hostBindings||cr),t.hostVars&&e.expandoInstructions.push(t.hostVars)}(e,n)}function ia(e,t,n){var r=Et(t,e),o=Ni(n.template,n.consts,n.vars,n.directiveDefs,n.pipeDefs,n.viewQuery),i=tn(),a=_a(e,t.index,di(mn(),o,null,n.onPush?4:2,i,tn().createRenderer(r,n)));a[Ze]=t,a[Qe]=e[t.index],e[t.index]=a,En()&&ta(t)}function aa(e,t,n,r,o){return[o?-1:0,[],n,null,null,e,r,io(t,n)]}function ua(e,t,n,r,o,i,a,u){var s=mn(),l=hn(),c=la(e,o||null,i||null);En()&&(c.tViews=Di(-1,t,n,r,l.directiveRegistry,l.pipeRegistry,null)),Pi(l,s,a,u);var f=vn(),d=ln();f&&gn(f.addNode(d)),it(c.flags,l),pn(!1)}function sa(e){var t=la(e,null,null);En()&&(t.tViews=[]),pn(!1)}function la(e,t,n){var r=mn(),o=e+rt,i=en().createComment(""),a=pi(e,0,i,t,n),u=r[o]=aa(r[o],a,r,i);lo(i,a,r),_a(r,e+rt,u);var s=vn();return s&&(u[ze]=s.container()),a}function ca(e){var t=mn(),n=hn();cn(xt(e,n.data)),pn(!0),t[e+rt][yt]=0,xn()||lt(t,n,yn())}function fa(){var e=ln();dn()?pn(!1):cn(e=e.parent);for(var t=mn()[e.index],n=t[yt];n<t[mt].length;)eo(t,e,n)}function da(e,t,n){var r=mn(),o=ln(),i=2===o.type?o.parent:o,a=r[i.index],u=function s(e,t,n,r){for(var o=e[mt],i=n;i<o.length;i++){var a=o[i][He].id;if(a===r)return o[i];if(!(a<r))break;eo(e,t,i)}return null}(a,i,a[yt],e);return u?(pn(!0),Dn(u,u[He].node)):(u=di(mn(),function l(e,t,n,r){var o=hn(),i=r.tViews;return(e>=i.length||null==i[e])&&(i[e]=Di(e,null,t,n,o.directiveRegistry,o.pipeRegistry,null)),i[e]}(e,t,n,i),null,2),a[ze]&&(u[ze]=a[ze].createView()),hi(e,u),Dn(u,u[He].node)),a&&(yn()&&Jr(u,a,r,a[yt],-1),a[yt]++),_i(u)}function pa(){var e=mn(),t=e[Ze];fi(e,null),jn(e[Be]),cn(t),pn(!1)}function ha(e,t){var n=Tt(e,mn());va(n)&&6&n[Le]&&(function r(e){for(var t=e[He],n=e.length;n<t.blueprint.length;n++)e[n]=t.blueprint[n]}(n),ka(n,n[We],t))}function va(e){return 8==(8&e[Le])}function ga(e,t){var n=Wr(mn())[Ze];if(!n.projection)for(var r=n.projection=new Array(e?e.length+1:1).fill(null),o=r.slice(),i=n.child;null!==i;){var a=e?_o(i,e,t):0,u=i.next;o[a]?o[a].next=i:(r[a]=i,i.next=null),o[a]=i,i=u}}var ya=[];function ma(e,t,n){void 0===t&&(t=0);var r=mn(),o=pi(e,1,null,null,n||null);null===o.projection&&(o.projection=t),pn(!1);for(var i=Wr(r),a=i[Ze].projection[t],u=i[Be],s=-1;a;){if(1===a.type){var l=Wr(u),c=l[Ze].projection[a.projection];if(c){ya[++s]=a,ya[++s]=u,a=c,u=l[Be];continue}}else a.flags|=8192,ho(a,o,r,u);null===a.next&&u!==i[Be]&&(u=ya[s--],a=ya[s--]),a=a.next}}function _a(e,t,n){var r=hn(),o=En();return e[Xe]?e[Xe][Ue]=n:o&&(r.childIndex=t),e[Xe]=n,n}function wa(e){for(var t=e;t&&!(64&t[Le]);)t[Le]|=4,t=t[Be];t[Le]|=4,ba(t[We],1)}function ba(e,t){var n,r=0===e.flags;e.flags|=t,r&&e.clean==ci&&(e.clean=new Promise(function(e){return n=e}),e.scheduler(function(){if(1&e.flags&&(e.flags&=-2,Ca(e)),2&e.flags){e.flags&=-3;var t=e.playerHandler;t&&t.flushPlayers()}e.clean=ci,n(null)}))}function Ca(e){for(var t=0;t<e.components.length;t++){var n=e.components[t];mi(Mt(n),n,2)}}function xa(e){ka(nr(e),e,null)}function Ia(e){Ca(e[We])}function ka(e,t,n){var r=e[He],o=Dn(e,e[Ze]),i=r.template,a=r.viewQuery;try{xi(),function u(e,t,n,r){e&&(1===t||null===t&&1&n)&&e(1,r)}(a,n,e[Le],t),i(n||_i(e),t),fi(e,n),function s(e,t,n){e&&2&t&&e(2,n)}(a,e[Le],t)}finally{jn(o,1===n)}}function Ea(e){wa(nr(e))}function Oa(e){return Ua(mn()[qe]++,e)?e:wo}function Ta(e){for(var t=!1,n=1;n<e.length;n+=2)Ua(mn()[qe]++,e[n])&&(t=!0);if(!t)return wo;var r=e[0];for(n=1;n<e.length;n+=2)r+=Ct(e[n])+e[n+1];return r}function Pa(e,t,n){return Ua(mn()[qe]++,t)?e+Ct(t)+n:wo}function Na(e,t,n,r,o){var i=mn(),a=Qa(i[qe],t,r);return i[qe]+=2,a?e+Ct(t)+n+Ct(r)+o:wo}function Da(e,t,n,r,o,i,a){var u=mn(),s=Za(u[qe],t,r,i);return u[qe]+=3,s?e+Ct(t)+n+Ct(r)+o+Ct(i)+a:wo}function Ra(e,t,n,r,o,i,a,u,s){var l=mn(),c=qa(l[qe],t,r,i,u);return l[qe]+=4,c?e+Ct(t)+n+Ct(r)+o+Ct(i)+a+Ct(u)+s:wo}function ja(e,t,n,r,o,i,a,u,s,l,c){var f=mn(),d=qa(f[qe],t,r,i,u);return d=Ua(f[qe]+4,l)||d,f[qe]+=5,d?e+Ct(t)+n+Ct(r)+o+Ct(i)+a+Ct(u)+s+Ct(l)+c:wo}function Aa(e,t,n,r,o,i,a,u,s,l,c,f,d){var p=mn(),h=qa(p[qe],t,r,i,u);return h=Qa(p[qe]+4,l,f)||h,p[qe]+=6,h?e+Ct(t)+n+Ct(r)+o+Ct(i)+a+Ct(u)+s+Ct(l)+c+Ct(f)+d:wo}function Sa(e,t,n,r,o,i,a,u,s,l,c,f,d,p,h){var v=mn(),g=qa(v[qe],t,r,i,u);return g=Za(v[qe]+4,l,f,p)||g,v[qe]+=7,g?e+Ct(t)+n+Ct(r)+o+Ct(i)+a+Ct(u)+s+Ct(l)+c+Ct(f)+d+Ct(p)+h:wo}function Va(e,t,n,r,o,i,a,u,s,l,c,f,d,p,h,v,g){var y=mn(),m=qa(y[qe],t,r,i,u);return m=qa(y[qe]+4,l,f,p,v)||m,y[qe]+=8,m?e+Ct(t)+n+Ct(r)+o+Ct(i)+a+Ct(u)+s+Ct(l)+c+Ct(f)+d+Ct(p)+h+Ct(v)+g:wo}function Ma(e,t){var n=hn(),r=e+rt;r>=n.data.length&&(n.data[r]=null),mn()[r]=t}function Fa(e){return xt(e,function t(){return _n}())}function Ha(e){return mn()[tt][e]}function La(e){return xt(e,mn())}function Ba(e){return mn()[e]}function Ua(e,t){var n=mn(),r=xn();if(n[e]===wo)n[e]=t;else{if(!
284
+ */var qa="ng",Ka=!1;function Wa(e,t){if(Z){var n=Z[qa];n||(n=Z[qa]={}),n[e]=t}}
278
285
  /**
279
286
  * @license
280
287
  * Copyright Google Inc. All Rights Reserved.
281
288
  *
282
289
  * Use of this source code is governed by an MIT-style license that can be
283
290
  * found in the LICENSE file at https://angular.io/license
284
- */
285
- function o(e,t,n){return!(e!=e&&t!=t)&&e!==t}(n[e],t))return!1;!function i(e,t,n,r){if(t){var o="ExpressionChangedAfterItHasBeenCheckedError: Expression has changed after it was checked. Previous value: '"+n+"'. Current value: '"+r+"'.";throw e&&(o+=" It seems like the view has been created after its parent and its children have been dirty checked. Has it been created in a change detection hook ?"),new Error(o)}}(yn(),r,n[e],t),n[e]=t}return!0}function za(e,t){return mn()[e]=t}function Qa(e,t,n){var r=Ua(e,t);return Ua(e+1,n)||r}function Za(e,t,n,r){var o=Qa(e,t,n);return Ua(e+2,r)||o}function qa(e,t,n,r,o){var i=Qa(e,t,n);return Qa(e+2,r,o)||i}function Ka(t,n){return void 0===n&&(n=e.InjectFlags.Default),t=pr(t),Qn(ln(),mn(),t,n)}function Wa(e){return zn(ln(),e)}function Ga(e,t){var n=mn(),r=hn(),o=(n[tt]||(n[tt]=[])).push(e);if(En()){var i=r.contentQueries||(r.contentQueries=[]);t!==(r.contentQueries.length?r.contentQueries[r.contentQueries.length-2]:-1)&&i.push(t,o-1)}}var Ya=ci;function $a(e){return e?(void 0===e.inputs&&(e.inputs=Ui(e.flags,0)),e.inputs):null}function Ja(e){return 32768&e.flags}
291
+ */function Ga(e,t,n,r,o,i){!function a(){Kt=!1,qt=null,Pt=0,Zt=!0}();var u=n[be],s=si(n,Ei(t.template,t.consts,t.vars,t.directiveDefs,t.pipeDefs,t.viewQuery),null,t.onPush?8:4,r,o,i),l=li(0,3,e,null,null);return u.firstTemplatePass&&(Pn(kn(l,n),n,t.type),l.flags=1,Xi(l,n.length,1),$i(l)),s[Ee]=n[He],s[Oe]=l,n[He]=s}function Ya(e,t,n,r,o){var i=n[be],a=function u(e,t,n){var r=tn();e.firstTemplatePass&&(n.providersResolver&&n.providersResolver(n),Wi(e,r,1),ea(e,t,n,n.factory));var o=Sn(e.data,t,t.length-1,r);return Yi(t,r,o,n),o}(i,n,t);if(r.components.push(a),e[Ne]=a,o&&o.forEach(function(e){return e(a,t)}),i.firstTemplatePass&&t.hostBindings){var s=tn();Yt(t),t.hostBindings(1,a,s.index-He),Yt(null)}return a}function $a(e,t){return{components:[],scheduler:e||mt,clean:La,playerHandler:t||null,flags:0}}function Ja(e,t){var n=dt(e)[be],r=n.data.length-1;Mt(r,t.onInit,t.doCheck,n),Ft(n,{directiveStart:r,directiveEnd:r+1})}
286
292
  /**
287
293
  * @license
288
294
  * Copyright Google Inc. All Rights Reserved.
289
295
  *
290
296
  * Use of this source code is governed by an MIT-style license that can be
291
297
  * found in the LICENSE file at https://angular.io/license
292
- */var Xa,eu,tu,nu=function(){function e(e,t,n){this._context=t,this._componentIndex=n,this._appRef=null,this._viewContainerRef=null,this._tViewNode=null,this._view=e}return Object.defineProperty(e.prototype,"rootNodes",{get:function(){return null==this._view[Qe]?function e(t,n,r){for(var o=n.child;o;)r.push(Et(o,t)),4===o.type&&e(t,o,r),o=o.next;return r}
298
+ */
299
+ function Xa(e){return"function"==typeof e.template}function eu(e){for(var t=function n(e){return Object.getPrototypeOf(e.prototype).constructor}(e.type),r=function(){var n,r,o=void 0;if(Xa(e))o=t.ngComponentDef||t.ngDirectiveDef;else{if(t.ngComponentDef)throw new Error("Directives cannot inherit Components");o=t.ngDirectiveDef}var i=t.ngBaseDef;if(i||o){var a=e;a.inputs=tu(e.inputs),a.declaredInputs=tu(e.declaredInputs),a.outputs=tu(e.outputs)}if(i&&(p(e.inputs,i.inputs),p(e.declaredInputs,i.declaredInputs),p(e.outputs,i.outputs)),o){var u=e.hostBindings,s=o.hostBindings;if(s&&(e.hostBindings=u?function(e,t,n){s(e,t,n),u(e,t,n)}:s),Xa(e)&&Xa(o)){var c=e.viewQuery,f=o.viewQuery;f&&(e.viewQuery=c?function(e,t){f(e,t),c(e,t)}:f)}var d=e.contentQueries,h=o.contentQueries;h&&(e.contentQueries=d?function(e){h(e),d(e)}:h);var v=e.contentQueriesRefresh,g=o.contentQueriesRefresh;g&&(e.contentQueriesRefresh=v?function(e,t){g(e,t),v(e,t)}:g),p(e.inputs,o.inputs),p(e.declaredInputs,o.declaredInputs),p(e.outputs,o.outputs),e.afterContentChecked=e.afterContentChecked||o.afterContentChecked,e.afterContentInit=e.afterContentInit||o.afterContentInit,e.afterViewChecked=e.afterViewChecked||o.afterViewChecked,e.afterViewInit=e.afterViewInit||o.afterViewInit,e.doCheck=e.doCheck||o.doCheck,e.onDestroy=e.onDestroy||o.onDestroy,e.onInit=e.onInit||o.onInit;var y=o.features;if(y)try{for(var m=l(y),_=m.next();!_.done;_=m.next()){var w=_.value;w&&w.ngInherit&&w(e)}}catch(e){n={error:e}}finally{try{_&&!_.done&&(r=m.return)&&r.call(m)}finally{if(n)throw n.error}}return"break"}var b=t.prototype;b&&(e.afterContentChecked=e.afterContentChecked||b.afterContentChecked,e.afterContentInit=e.afterContentInit||b.afterContentInit,e.afterViewChecked=e.afterViewChecked||b.afterViewChecked,e.afterViewInit=e.afterViewInit||b.afterViewInit,e.doCheck=e.doCheck||b.doCheck,e.onDestroy=e.onDestroy||b.onDestroy,e.onInit=e.onInit||b.onInit),t=Object.getPrototypeOf(t)};t&&"break"!==r(););}function tu(e){return e===ie?{}:e===ae?[]:e}
293
300
  /**
294
301
  * @license
295
302
  * Copyright Google Inc. All Rights Reserved.
296
303
  *
297
304
  * Use of this source code is governed by an MIT-style license that can be
298
305
  * found in the LICENSE file at https://angular.io/license
299
- */(this._view,this._view[Ze],[]):[]},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"context",{get:function(){return this._context?this._context:this._lookUpContext()},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"destroyed",{get:function(){return 32==(32&this._view[Le])},enumerable:!0,configurable:!0}),e.prototype.destroy=function(){this._appRef?this._appRef.detachView(this):this._viewContainerRef&&va(this._view)&&(this._viewContainerRef.detach(this._viewContainerRef.indexOf(this)),this._viewContainerRef=null),no(this._view)},e.prototype.onDestroy=function(e){Vi(this._view,e)},e.prototype.markForCheck=function(){wa(this._view)},e.prototype.detach=function(){this._view[Le]&=-9},e.prototype.reattach=function(){this._view[Le]|=8},e.prototype.detectChanges=function(){var e=this._view[Ye];e.begin&&e.begin(),xa(this.context),e.end&&e.end()},e.prototype.checkNoChanges=function(){!function e(t){In(!0);try{xa(t)}finally{In(!1)}}(this.context)},e.prototype.attachToViewContainerRef=function(e){this._viewContainerRef=e},e.prototype.detachFromAppRef=function(){this._appRef=null},e.prototype.attachToAppRef=function(e){this._appRef=e},e.prototype._lookUpContext=function(){return this._context=this._view[Be][this._componentIndex]},e}(),ru=function(e){function t(t){var n=e.call(this,t,null,-1)||this;return n._view=t,n}return o(t,e),t.prototype.detectChanges=function(){Ia(this._view)},t.prototype.checkNoChanges=function(){!function e(t){In(!0);try{Ia(t)}finally{In(!1)}}(this._view)},Object.defineProperty(t.prototype,"context",{get:function(){return null},enumerable:!0,configurable:!0}),t}(nu);function ou(e,t,n){return Xa||(Xa=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return o(t,e),t}(e)),new Xa(Et(t,n))}function iu(e,t,n,r){if(eu||(eu=function(e){function t(t,n,r,o,i,a){var u=e.call(this)||this;return u._declarationParentView=t,u.elementRef=n,u._tView=r,u._renderer=o,u._queries=i,u._injectorIndex=a,u}return o(t,e),t.prototype.createEmbeddedView=function(e,t,n,r,o){var i=function a(e,t,n,r,o,i){var a=dn(),u=ln();pn(!0),cn(null);var s=di(n,e,t,2);return s[nt]=n,o&&(s[ze]=o.createView()),hi(-1,s),e.firstTemplatePass&&(e.node.injectorIndex=i),pn(a),cn(u),s}(this._tView,e,this._declarationParentView,0,this._queries,this._injectorIndex);t&&Jr(i,t,r,o,n.index),gi(i,this._tView,e,1);var u=new nu(i,e,-1);return u._tViewNode=i[Ze],u},t}(e)),0===n.type){var i=r[n.index];return new eu(r,ou(t,n,r),n.tViews,en(),i[ze],n.injectorIndex)}return null}var au=function(){function t(e,t){this._tNode=e,this._hostView=t}return t.prototype.get=function(t,n){return Qn(this._tNode,this._hostView,t,e.InjectFlags.Default,n)},t}();function uu(e,t,n){if(Nt(e)){var r=e.flags>>16,o=Tt(e.index,t);return new nu(o,n,r)}if(3===e.type){var i=Wr(t);return new nu(i,i[We],-1)}return null}function su(e){if(!(e instanceof Node))throw new Error("Expecting instance of DOM Node");var t=hu(e);return void 0===t.component&&(t.component=function n(e,t){var n=t[He].data[e],r=sr(n);return 4096&n.flags?t[r]:null}(t.nodeIndex,t.lViewData)),t.component}function lu(e){for(var t=hu(e).lViewData;t[Be]&&null===t[Qe];)t=t[Be];return 64&t[Le]?null:t[We]}function cu(e){return function t(e){var t;for(t=Array.isArray(e)?e:Mt(e);t&&!(64&t[Le]);)t=t[Be];return t}(Array.isArray(e)?e:hu(e).lViewData)[We]}function fu(e){return f(cu(e).components)}function du(e){var t=hu(e);return new au(t.lViewData[He].data[t.nodeIndex],t.lViewData)}function pu(e){var t=hu(e);return void 0===t.directives&&(t.directives=ur(t.nodeIndex,t.lViewData,!1)),t.directives||[]}function hu(e,t){void 0===t&&(t=!0);var n=er(e);if(!n&&t)throw new Error("Invalid ng target");return n}function vu(e){return er(e).native}
306
+ */var nu="__ngOnChanges_";function ru(e){var t=e.declaredInputs,n=e.inputs,r=e.type.prototype,o=function(e){if(t.hasOwnProperty(e)){for(var o=n[e],i=t[e],a=nu+o,u=void 0,s=r;!u&&s&&Object.getPrototypeOf(s)!==Object.getPrototypeOf(Object.prototype);)u=Object.getOwnPropertyDescriptor(s,o),s=Object.getPrototypeOf(s);var l=u&&u.set;Object.defineProperty(r,o,{get:u&&u.get||(l?void 0:function(){return this[a]}),set:function(e){var t=this[nu];t||(t={},Object.defineProperty(this,nu,{value:t,writable:!0}));var n=!this.hasOwnProperty(a),r=t[i];r?r.currentValue=e:t[i]=new dr(this[a],e,n),n?Object.defineProperty(this,a,{value:e,writable:!0}):this[a]=e,l&&l.call(this,e)},configurable:!1})}};for(var i in t)o(i);null!=e.onInit&&(e.onInit=ou(e.onInit)),e.doCheck=ou(e.doCheck)}function ou(e){return function(){var t=this[nu];null!=t&&(this.ngOnChanges(t),this[nu]=null),e&&e.apply(this)}}
300
307
  /**
301
308
  * @license
302
309
  * Copyright Google Inc. All Rights Reserved.
303
310
  *
304
311
  * Use of this source code is governed by an MIT-style license that can be
305
312
  * found in the LICENSE file at https://angular.io/license
306
- */function gu(e){var t=er(e);if(!t)return[];var n=Io(t.nodeIndex-rt,t.lViewData),r=n?Eo(n):null;return r?function o(e){for(var t=[],n=e[0],r=2;r<n;r+=2){var o=e[r];o&&t.push(o)}for(r=n;r<e.length;r++)t.push(e[r]);return t}(r):[]}
313
+ */function iu(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t]}
307
314
  /**
308
315
  * @license
309
316
  * Copyright Google Inc. All Rights Reserved.
310
317
  *
311
318
  * Use of this source code is governed by an MIT-style license that can be
312
319
  * found in the LICENSE file at https://angular.io/license
313
- */
320
+ */ru.ngInherit=!0;var au="__source",uu=new Object,su=uu,lu=new E("INJECTOR"),cu=function(){function e(){}return e.prototype.get=function(e,t){if(void 0===t&&(t=uu),t===uu)throw new Error("NullInjectorError: No provider for "+$(e)+"!");return t},e}(),fu=function(){function e(){}return e.create=function(e,t){return Array.isArray(e)?new bu(e,t):new bu(e.providers,e.parent,e.name||null)},e.THROW_IF_NOT_FOUND=uu,e.NULL=new cu,e.ngInjectableDef=C({providedIn:"any",factory:function(){return At(lu)}}),e.__NG_ELEMENT_ID__=function(){return du()},e}(),du=iu,pu=function(e){return e},hu=[],vu=pu,gu=function(){return Array.prototype.slice.call(arguments)},yu=d({provide:String,useValue:d}),mu=fu.NULL,_u=/\n/gm,wu="ɵ",bu=function(){function t(e,t,n){void 0===t&&(t=mu),void 0===n&&(n=null),this.parent=t,this.source=n;var r=this._records=new Map;r.set(fu,{token:fu,fn:pu,deps:hu,value:this,useNew:!1}),r.set(lu,{token:lu,fn:pu,deps:hu,value:this,useNew:!1}),function e(t,n){if(n)if((n=ee(n))instanceof Array)for(var r=0;r<n.length;r++)e(t,n[r]);else{if("function"==typeof n)throw Iu("Function/Class not supported",n);if(!n||"object"!=typeof n||!n.provide)throw Iu("Unexpected provider",n);var o=ee(n.provide),i=function a(e){var t=function n(e){var t=hu,n=e.deps;if(n&&n.length){t=[];for(var r=0;r<n.length;r++){var o=6;if((s=ee(n[r]))instanceof Array)for(var i=0,a=s;i<a.length;i++){var u=a[i];u instanceof It||u==It?o|=1:u instanceof Et||u==Et?o&=-3:u instanceof kt||u==kt?o&=-5:s=u instanceof xt?u.token:ee(u)}t.push({token:s,options:o})}}else if(e.useExisting){var s;t=[{token:s=ee(e.useExisting),options:6}]}else if(!(n||yu in e))throw Iu("'deps' required",e);return t}(e),r=pu,o=hu,i=!1,a=ee(e.provide);if(yu in e)o=e.useValue;else if(e.useFactory)r=e.useFactory;else if(e.useExisting);else if(e.useClass)i=!0,r=ee(e.useClass);else{if("function"!=typeof a)throw Iu("StaticProvider does not have [useValue|useFactory|useExisting|useClass] or [provide] is not newable",e);i=!0,r=a}return{deps:t,fn:r,useNew:i,value:o}}(n);if(!0===n.multi){var u=t.get(o);if(u){if(u.fn!==gu)throw Cu(o)}else t.set(o,u={token:n.provide,deps:[],useNew:!1,fn:gu,value:hu});u.deps.push({token:o=n,options:6})}var s=t.get(o);if(s&&s.fn==gu)throw Cu(o);t.set(o,i)}}(r,e)}return t.prototype.get=function(t,n,r){void 0===r&&(r=e.InjectFlags.Default);var o=this._records.get(t);try{return function t(n,r,o,i,a,u){try{return function s(n,r,o,i,a,u){var s,l;if(!r||u&e.InjectFlags.SkipSelf)u&e.InjectFlags.Self||(l=i.get(n,a,e.InjectFlags.Default));else{if((l=r.value)==vu)throw Error(wu+"Circular dependency");if(l===hu){r.value=vu;var c=r.useNew,d=r.fn,p=r.deps,h=hu;if(p.length){h=[];for(var v=0;v<p.length;v++){var g=p[v],y=g.options,m=2&y?o.get(g.token):void 0;h.push(t(g.token,m,o,m||4&y?i:mu,1&y?null:fu.THROW_IF_NOT_FOUND,e.InjectFlags.Default))}}r.value=l=c?new((s=d).bind.apply(s,f([void 0],h))):d.apply(void 0,h)}}return l}(n,r,o,i,a,u)}catch(e){throw e instanceof Error||(e=new Error(e)),(e.ngTempTokenPath=e.ngTempTokenPath||[]).unshift(n),r&&r.value==vu&&(r.value=hu),e}}(t,o,this._records,this.parent,n,r)}catch(e){var i=e.ngTempTokenPath;throw t[au]&&i.unshift(t[au]),e.message=xu("\n"+e.message,i,this.source),e.ngTokenPath=i,e.ngTempTokenPath=null,e}},t.prototype.toString=function(){var e=[];return this._records.forEach(function(t,n){return e.push($(n))}),"StaticInjector["+e.join(", ")+"]"},t}();function Cu(e){return Iu("Cannot mix multi providers and regular providers",e)}function xu(e,t,n){void 0===n&&(n=null),e=e&&"\n"===e.charAt(0)&&e.charAt(1)==wu?e.substr(2):e;var r=$(t);if(t instanceof Array)r=t.map($).join(" -> ");else if("object"==typeof t){var o=[];for(var i in t)if(t.hasOwnProperty(i)){var a=t[i];o.push(i+":"+("string"==typeof a?JSON.stringify(a):$(a)))}r="{"+o.join(", ")+"}"}return"StaticInjectorError"+(n?"("+n+")":"")+"["+r+"]: "+e.replace(_u,"\n ")}function Iu(e,t){return new Error(xu(e,t))}
314
321
  /**
315
322
  * @license
316
323
  * Copyright Google Inc. All Rights Reserved.
317
324
  *
318
325
  * Use of this source code is governed by an MIT-style license that can be
319
326
  * found in the LICENSE file at https://angular.io/license
320
- */var yu="ng",mu=!1;function _u(e,t){if(G){var n=G[yu];n||(n=G[yu]={}),n[e]=t}}
327
+ */var ku=new E("The presence of this token marks an injector as being the root injector."),Eu={},Ou={},Tu=[],Pu=void 0;
321
328
  /**
322
329
  * @license
323
330
  * Copyright Google Inc. All Rights Reserved.
324
331
  *
325
332
  * Use of this source code is governed by an MIT-style license that can be
326
333
  * found in the LICENSE file at https://angular.io/license
327
- */function wu(e,t,n,r,o,i){!function a(){Kt=!1,qt=null,Qt=0,Zt=!0}();var u=n[He],s=di(n,Ni(t.template,t.consts,t.vars,t.directiveDefs,t.pipeDefs,t.viewQuery),null,t.onPush?4:2,r,o,i),l=pi(0,3,e,null,null);return u.firstTemplatePass&&(Un(Fn(l,n),n,t.type),l.flags=4096,ra(l,n.length,1),ta(l)),s[Qe]=n[rt],s[Ze]=l,n[rt]=s}function bu(e,t,n,r,o){var i=n[He],a=function u(e,t,n){var r=ln();e.firstTemplatePass&&(n.providersResolver&&n.providersResolver(n),$i(e,r,1),oa(e,t,n,n.factory));var o=Wn(e.data,t,t.length-1,r);return ea(t,r,o,n),o}(i,n,t);return r.components.push(a),e[We]=a,o&&o.forEach(function(e){return e(a,t)}),i.firstTemplatePass&&Ji(i,n,t.hostVars),a}function Cu(e,t){return{components:[],scheduler:e||Jt,clean:Ya,playerHandler:t||null,flags:0}}function xu(e,t){var n=Mt(e)[He],r=n.data.length-1;ot(r,t.onInit,t.doCheck,n),it(r<<16|1,n)}
334
+ */function Nu(){return void 0===Pu&&(Pu=new cu),Pu}function Ru(e,t,n){return void 0===t&&(t=null),void 0===n&&(n=null),t=t||Nu(),new ju(e,n,t)}var ju=function(){function t(e,t,n){var r=this;this.parent=n,this.records=new Map,this.injectorDefTypes=new Set,this.onDestroy=new Set,this.destroyed=!1;var o=[];Vu([e],function(e){return r.processInjectorType(e,[],o)}),t&&Vu(t,function(n){return r.processProvider(n,e,t)}),this.records.set(lu,Su(void 0,this)),this.isRootInjector=this.records.has(ku),this.injectorDefTypes.forEach(function(e){return r.get(e)})}return t.prototype.destroy=function(){this.assertNotDestroyed(),this.destroyed=!0;try{this.onDestroy.forEach(function(e){return e.ngOnDestroy()})}finally{this.records.clear(),this.onDestroy.clear(),this.injectorDefTypes.clear()}},t.prototype.get=function(t,n,r){void 0===n&&(n=su),void 0===r&&(r=e.InjectFlags.Default),this.assertNotDestroyed();var o=Rt(this);try{if(!(r&e.InjectFlags.SkipSelf)){var i=this.records.get(t);if(void 0===i){var a=function u(e){return"function"==typeof e||"object"==typeof e&&e instanceof E}
328
335
  /**
329
336
  * @license
330
337
  * Copyright Google Inc. All Rights Reserved.
331
338
  *
332
339
  * Use of this source code is governed by an MIT-style license that can be
333
340
  * found in the LICENSE file at https://angular.io/license
334
- */
335
- function Iu(e){return"function"==typeof e.template}function ku(e){for(var t=function n(e){return Object.getPrototypeOf(e.prototype).constructor}(e.type),r=function(){var n,r,o=void 0;if(Iu(e))o=t.ngComponentDef||t.ngDirectiveDef;else{if(t.ngComponentDef)throw new Error("Directives cannot inherit Components");o=t.ngDirectiveDef}var i=t.ngBaseDef;if(i||o){var a=e;a.inputs=Eu(e.inputs),a.declaredInputs=Eu(e.declaredInputs),a.outputs=Eu(e.outputs)}if(i&&(p(e.inputs,i.inputs),p(e.declaredInputs,i.declaredInputs),p(e.outputs,i.outputs)),o){var u=e.hostBindings,s=o.hostBindings;if(s&&(u?(e.hostBindings=function(e,t,n){s(e,t,n),u(e,t,n)},e.hostVars+=o.hostVars):e.hostBindings=s),Iu(e)&&Iu(o)){var c=e.viewQuery,f=o.viewQuery;f&&(e.viewQuery=c?function(e,t){f(e,t),c(e,t)}:f)}var d=e.contentQueries,h=o.contentQueries;h&&(e.contentQueries=d?function(e){h(e),d(e)}:h);var v=e.contentQueriesRefresh,g=o.contentQueriesRefresh;g&&(e.contentQueriesRefresh=v?function(e,t){g(e,t),v(e,t)}:g),p(e.inputs,o.inputs),p(e.declaredInputs,o.declaredInputs),p(e.outputs,o.outputs),e.afterContentChecked=e.afterContentChecked||o.afterContentChecked,e.afterContentInit=e.afterContentInit||o.afterContentInit,e.afterViewChecked=e.afterViewChecked||o.afterViewChecked,e.afterViewInit=e.afterViewInit||o.afterViewInit,e.doCheck=e.doCheck||o.doCheck,e.onDestroy=e.onDestroy||o.onDestroy,e.onInit=e.onInit||o.onInit;var y=o.features;if(y)try{for(var m=l(y),_=m.next();!_.done;_=m.next()){var w=_.value;w&&w.ngInherit&&w(e)}}catch(e){n={error:e}}finally{try{_&&!_.done&&(r=m.return)&&r.call(m)}finally{if(n)throw n.error}}return"break"}var b=t.prototype;b&&(e.afterContentChecked=e.afterContentChecked||b.afterContentChecked,e.afterContentInit=e.afterContentInit||b.afterContentInit,e.afterViewChecked=e.afterViewChecked||b.afterViewChecked,e.afterViewInit=e.afterViewInit||b.afterViewInit,e.doCheck=e.doCheck||b.doCheck,e.onDestroy=e.onDestroy||b.onDestroy,e.onInit=e.onInit||b.onInit),t=Object.getPrototypeOf(t)};t&&"break"!==r(););}function Eu(e){return e===ne?{}:e===re?[]:e}
341
+ */(t)&&I(t);a&&this.injectableDefInScope(a)&&(i=Su(Du(t),Eu),this.records.set(t,i))}if(void 0!==i)return this.hydrate(t,i)}return(r&e.InjectFlags.Self?Nu():this.parent).get(t,n)}finally{Rt(o)}},t.prototype.assertNotDestroyed=function(){if(this.destroyed)throw new Error("Injector has already been destroyed.")},t.prototype.processInjectorType=function(e,t,n){var r=this;if(e=ee(e)){var o=k(e),i=null==o&&e.ngModule||void 0,a=void 0===i?e:i,u=-1!==n.indexOf(a),s=void 0!==i&&e.providers||Tu;if(void 0!==i&&(o=k(i)),null!=o){if(this.injectorDefTypes.add(a),this.records.set(a,Su(o.factory,Eu)),null!=o.imports&&!u){n.push(a);try{Vu(o.imports,function(e){return r.processInjectorType(e,t,n)})}finally{}}var l=o.providers;if(null!=l&&!u){var c=e;Vu(l,function(e){return r.processProvider(e,c,l)})}var f=e.ngModule;Vu(s,function(e){return r.processProvider(e,f,s)})}}},t.prototype.processProvider=function(e,t,n){var r=Fu(e=ee(e))?e:ee(e&&e.provide),o=function i(e,t,n){var r=Au(e,t,n);return Mu(e)?Su(void 0,e.useValue):Su(r,Eu)}(e,t,n);if(Fu(e)||!0!==e.multi){var a=this.records.get(r);if(a&&void 0!==a.multi)throw new Error("Mixed multi-provider for "+$(r))}else{var u=this.records.get(r);if(u){if(void 0===u.multi)throw new Error("Mixed multi-provider for "+r+".")}else(u=Su(void 0,Eu,!0)).factory=function(){return Vt(u.multi)},this.records.set(r,u);r=e,u.multi.push(e)}this.records.set(r,o)},t.prototype.hydrate=function(e,t){if(t.value===Ou)throw new Error("Cannot instantiate cyclic dependency! "+$(e));return t.value===Eu&&(t.value=Ou,t.value=t.factory()),"object"==typeof t.value&&t.value&&function n(e){return"object"==typeof e&&null!=e&&e.ngOnDestroy&&"function"==typeof e.ngOnDestroy}(t.value)&&this.onDestroy.add(t.value),t.value},t.prototype.injectableDefInScope=function(e){return!!e.providedIn&&("string"==typeof e.providedIn?"any"===e.providedIn||"root"===e.providedIn&&this.isRootInjector:this.injectorDefTypes.has(e.providedIn))},t}();function Du(e){var t=I(e);if(null===t){var n=k(e);if(null!==n)return n.factory;if(e instanceof E)throw new Error("Token "+$(e)+" is missing an ngInjectableDef definition.");if(e instanceof Function){var r=e.length;if(r>0){var o=new Array(r).fill("?");throw new Error("Can't resolve all parameters for "+$(e)+": ("+o.join(", ")+").")}return function(){return new e}}throw new Error("unreachable")}return t.factory}function Au(e,t,n){var r=void 0;if(Fu(e))return Du(ee(e));if(Mu(e))r=function(){return ee(e.useValue)};else if(function o(e){return!(!e||!e.useExisting)}(e))r=function(){return At(ee(e.useExisting))};else if(function i(e){return!(!e||!e.useFactory)}(e))r=function(){return e.useFactory.apply(e,f(Vt(e.deps||[])))};else{var a=ee(e&&(e.useClass||e.provide));if(!a){var u="";throw t&&n&&(u=" - only instances of Provider and Type are allowed, got: ["+n.map(function(t){return t==e?"?"+e+"?":"..."}).join(", ")+"]"),new Error("Invalid provider for the NgModule '"+$(t)+"'"+u)}if(!function s(e){return!!e.deps}(e))return Du(a);r=function(){return new(a.bind.apply(a,f([void 0],Vt(e.deps))))}}return r}function Su(e,t,n){return void 0===n&&(n=!1),{factory:e,value:t,multi:n?[]:void 0}}function Vu(e,t){e.forEach(function(e){return Array.isArray(e)?Vu(e,t):t(e)})}function Mu(e){return e&&"object"==typeof e&&yu in e}function Fu(e){return"function"==typeof e}function Hu(e,t,n,r,o){if(e=ee(e),Array.isArray(e))for(var i=0;i<e.length;i++)Hu(e[i],t,n,r,o);else{var a=Xt(),u=Fu(e)?e:ee(e.provide),s=Au(e),l=tn(),c=65535&l.providerIndexes,f=l.directiveStart,d=l.providerIndexes>>16;if(Fu(e)||!e.multi){var p=new we(s,o,Ma),h=Bu(u,t,o?c:c+d,f);-1==h?(Pn(kn(l,a),a,u),t.push(u),l.directiveStart++,l.directiveEnd++,o&&(l.providerIndexes+=65536),n.push(p),a.push(p)):(n[h]=p,a[h]=p)}else{var v=Bu(u,t,c+d,f),g=Bu(u,t,c,c+d),y=g>=0&&n[g];o&&!y||!o&&!(v>=0&&n[v])?(Pn(kn(l,a),a,u),p=function m(e,t,n,r,o){var i=new we(e,n,Ma);return i.multi=[],i.index=t,i.componentProviders=0,Lu(i,o,r&&!n),i}(o?zu:Uu,n.length,o,r,s),!o&&y&&(n[g].providerFactory=p),t.push(u),l.directiveStart++,l.directiveEnd++,o&&(l.providerIndexes+=65536),n.push(p),a.push(p)):Lu(n[o?g:v],s,!o&&r),!o&&r&&y&&n[g].componentProviders++}}}function Lu(e,t,n){e.multi.push(t),n&&e.componentProviders++}function Bu(e,t,n,r){for(var o=n;o<r;o++)if(t[o]===e)return o;return-1}function Uu(e,t,n,r){return Qu(this.multi,[])}function zu(e,t,n,r){var o,i=this.multi;if(this.providerFactory){var a=this.providerFactory.componentProviders,u=Sn(t,n,this.providerFactory.index,r);Qu(i,o=u.slice(0,a));for(var s=a;s<u.length;s++)o.push(u[s])}else Qu(i,o=[]);return o}function Qu(e,t){for(var n=0;n<e.length;n++)t.push((0,e[n])());return t}function Zu(e,t){return void 0===t&&(t=[]),function(n){n.providersResolver=function(n){return function r(e,t,n){var r=Xt()[be];if(r.firstTemplatePass){var o=at(e);Hu(n,r.data,r.blueprint,o,!0),Hu(t,r.data,r.blueprint,o,!1)}}(n,e,t)}}}
336
342
  /**
337
343
  * @license
338
344
  * Copyright Google Inc. All Rights Reserved.
339
345
  *
340
346
  * Use of this source code is governed by an MIT-style license that can be
341
347
  * found in the LICENSE file at https://angular.io/license
342
- */var Ou="__ngOnChanges_";function Tu(e){var t=e.declaredInputs,n=e.type.prototype,r=function(e){if(t.hasOwnProperty(e)){for(var r=t[e],o=Ou+r,i=void 0,a=n;!i&&a&&Object.getPrototypeOf(a)!==Object.getPrototypeOf(Object.prototype);)i=Object.getOwnPropertyDescriptor(a,r),a=Object.getPrototypeOf(a);var u=i&&i.set;Object.defineProperty(n,r,{get:i&&i.get||(u?void 0:function(){return this[o]}),set:function(t){var n=this[Ou];n||(n={},Object.defineProperty(this,Ou,{value:n,writable:!0}));var r=!this.hasOwnProperty(o),i=n[e];i?i.currentValue=t:n[e]=new ht(this[o],t,r),r?Object.defineProperty(this,o,{value:t,writable:!0}):this[o]=t,u&&u.call(this,t)},configurable:!1})}};for(var o in t)r(o);null!=e.onInit&&(e.onInit=Pu(e.onInit)),e.doCheck=Pu(e.doCheck)}function Pu(e){return function(){var t=this[Ou];null!=t&&(this.ngOnChanges(t),this[Ou]=null),e&&e.apply(this)}}
348
+ */var qu=function qu(){},Ku=function Ku(){};
343
349
  /**
344
350
  * @license
345
351
  * Copyright Google Inc. All Rights Reserved.
346
352
  *
347
353
  * Use of this source code is governed by an MIT-style license that can be
348
354
  * found in the LICENSE file at https://angular.io/license
349
- */Tu.ngInherit=!0;var Nu=new E("The presence of this token marks an injector as being the root injector."),Du={},Ru={},ju=[],Au=void 0;
355
+ */
356
+ function Wu(e){var t=Error("No component factory found for "+$(e)+". Did you add it to @NgModule.entryComponents?");return t[Ju]=e,t}var Gu,Yu,$u,Ju="ngComponent",Xu=function(){function e(){}return e.prototype.resolveComponentFactory=function(e){throw Wu(e)},e}(),es=function(){function e(){}return e.NULL=new Xu,e}(),ts=function(){function e(e,t,n){this._parent=t,this._ngModule=n,this._factories=new Map;for(var r=0;r<e.length;r++){var o=e[r];this._factories.set(o.componentType,o)}}return e.prototype.resolveComponentFactory=function(e){var t=this._factories.get(e);if(!t&&this._parent&&(t=this._parent.resolveComponentFactory(e)),!t)throw Wu(e);return new ns(t,this._ngModule)},e}(),ns=function(e){function t(t,n){var r=e.call(this)||this;return r.factory=t,r.ngModule=n,r.selector=t.selector,r.componentType=t.componentType,r.ngContentSelectors=t.ngContentSelectors,r.inputs=t.inputs,r.outputs=t.outputs,r}return o(t,e),t.prototype.create=function(e,t,n,r){return this.factory.create(e,t,n,r||this.ngModule)},t}(Ku),rs=function rs(){},os=function os(){},is=function(){function e(e,t,n){this._context=t,this._componentIndex=n,this._appRef=null,this._viewContainerRef=null,this._tViewNode=null,this._lView=e}return Object.defineProperty(e.prototype,"rootNodes",{get:function(){return null==this._lView[Ee]?function e(t,n,r){for(var o=n.child;o;)r.push(tt(o,t)),4===o.type&&e(t,o,r),o=o.next;return r}
350
357
  /**
351
358
  * @license
352
359
  * Copyright Google Inc. All Rights Reserved.
353
360
  *
354
361
  * Use of this source code is governed by an MIT-style license that can be
355
362
  * found in the LICENSE file at https://angular.io/license
356
- */function Su(){return void 0===Au&&(Au=new mr),Au}function Vu(e,t,n){return void 0===t&&(t=null),void 0===n&&(n=null),t=t||Su(),new Mu(e,n,t)}var Mu=function(){function t(e,t,n){var r=this;this.parent=n,this.records=new Map,this.injectorDefTypes=new Set,this.onDestroy=new Set,this.destroyed=!1;var o=[];Bu([e],function(e){return r.processInjectorType(e,[],o)}),t&&Bu(t,function(e){return r.processProvider(e)}),this.records.set(yr,Lu(void 0,this)),this.isRootInjector=this.records.has(Nu),this.injectorDefTypes.forEach(function(e){return r.get(e)})}return t.prototype.destroy=function(){this.assertNotDestroyed(),this.destroyed=!0;try{this.onDestroy.forEach(function(e){return e.ngOnDestroy()})}finally{this.records.clear(),this.onDestroy.clear(),this.injectorDefTypes.clear()}},t.prototype.get=function(t,n,r){void 0===n&&(n=gr),void 0===r&&(r=e.InjectFlags.Default),this.assertNotDestroyed();var o=Oe(this);try{if(!(r&e.InjectFlags.SkipSelf)){var i=this.records.get(t);if(void 0===i){var a=function u(e){return"function"==typeof e||"object"==typeof e&&e instanceof E}
363
+ */(this._lView,this._lView[Oe],[]):[]},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"context",{get:function(){return this._context?this._context:this._lookUpContext()},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"destroyed",{get:function(){return 64==(64&this._lView[Ce])},enumerable:!0,configurable:!0}),e.prototype.destroy=function(){if(this._appRef)this._appRef.detachView(this);else if(this._viewContainerRef){var e=this._viewContainerRef.indexOf(this);e>-1&&this._viewContainerRef.detach(e),this._viewContainerRef=null}Lr(this._lView)},e.prototype.onDestroy=function(e){!function t(e,n){za(e).push(n),e[be].firstTemplatePass&&Qa(e).push(e[Pe].length-1,null)}(this._lView,e)},e.prototype.markForCheck=function(){ha(this._lView)},e.prototype.detach=function(){this._lView[Ce]&=-17},e.prototype.reattach=function(){this._lView[Ce]|=16},e.prototype.detectChanges=function(){ma(this._lView,this.context)},e.prototype.checkNoChanges=function(){!function e(t){fn(!0);try{ya(t)}finally{fn(!1)}}(this.context)},e.prototype.attachToViewContainerRef=function(e){if(this._appRef)throw new Error("This view is already attached directly to the ApplicationRef!");this._viewContainerRef=e},e.prototype.detachFromAppRef=function(){this._appRef=null},e.prototype.attachToAppRef=function(e){if(this._viewContainerRef)throw new Error("This view is already attached to a ViewContainer!");this._appRef=e},e.prototype._lookUpContext=function(){return this._context=this._lView[xe][this._componentIndex]},e}(),as=function(e){function t(t){var n=e.call(this,t,null,-1)||this;return n._view=t,n}return o(t,e),t.prototype.detectChanges=function(){_a(this._view)},t.prototype.checkNoChanges=function(){!function e(t){fn(!0);try{_a(t)}finally{fn(!1)}}(this._view)},Object.defineProperty(t.prototype,"context",{get:function(){return null},enumerable:!0,configurable:!0}),t}(is);function us(e,t,n){return Gu||(Gu=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return o(t,e),t}(e)),new Gu(tt(t,n))}function ss(e,t,n,r){if(Yu||(Yu=function(e){function t(t,n,r,o,i,a){var u=e.call(this)||this;return u._declarationParentView=t,u.elementRef=n,u._tView=r,u._renderer=o,u._queries=i,u._injectorIndex=a,u}return o(t,e),t.prototype.createEmbeddedView=function(e,t,n,r,o){var i=function a(e,t,n,r,o,i){var a=on(),u=tn();an(!0),nn(null);var s=si(n,e,t,4);return s[Fe]=n,o&&(s[ke]=o.createView()),ci(-1,s),e.firstTemplatePass&&(e.node.injectorIndex=i),an(a),nn(u),s}(this._tView,e,this._declarationParentView,0,this._queries,this._injectorIndex);t&&Vr(i,t,r,o,n.index),di(i,this._tView,e);var u=new is(i,e,-1);return u._tViewNode=i[Oe],u},t}(e)),0===n.type){var i=r[n.index];return new Yu(r,us(t,n,r),n.tViews,Xt()[De],i[ke],n.injectorIndex)}return null}function ls(e,t,n){if(it(e)){var r=e.directiveStart,o=rt(e.index,t);return new is(o,n,r)}if(3===e.type){var i=wt(t);return new is(i,i[Ne],-1)}return null}
357
364
  /**
358
365
  * @license
359
366
  * Copyright Google Inc. All Rights Reserved.
360
367
  *
361
368
  * Use of this source code is governed by an MIT-style license that can be
362
369
  * found in the LICENSE file at https://angular.io/license
363
- */(t)&&I(t);a&&this.injectableDefInScope(a)&&(i=Lu(Fu(t),Du),this.records.set(t,i))}if(void 0!==i)return this.hydrate(t,i)}return(r&e.InjectFlags.Self?Su():this.parent).get(t,n)}finally{Oe(o)}},t.prototype.assertNotDestroyed=function(){if(this.destroyed)throw new Error("Injector has already been destroyed.")},t.prototype.processInjectorType=function(e,t,n){var r=this;if(e=pr(e)){var o=k(e),i=null==o&&e.ngModule||void 0,a=void 0===i?e:i,u=-1!==n.indexOf(a),s=void 0!==i&&e.providers||ju;if(void 0!==i&&(o=k(i)),null!=o){if(this.injectorDefTypes.add(a),this.records.set(a,Lu(o.factory)),null!=o.imports&&!u){n.push(a);try{Bu(o.imports,function(e){return r.processInjectorType(e,t,n)})}finally{}}null==o.providers||u||Bu(o.providers,function(e){return r.processProvider(e)}),Bu(s,function(e){return r.processProvider(e)})}}},t.prototype.processProvider=function(e){var t=zu(e=pr(e))?e:pr(e.provide),n=function r(e){var t=Hu(e);return Uu(e)?Lu(void 0,e.useValue):Lu(t,Du)}(e);if(zu(e)||!0!==e.multi){var o=this.records.get(t);if(o&&void 0!==o.multi)throw new Error("Mixed multi-provider for "+te(t))}else{var i=this.records.get(t);if(i){if(void 0===i.multi)throw new Error("Mixed multi-provider for "+t+".")}else(i=Lu(void 0,Du,!0)).factory=function(){return Re(i.multi)},this.records.set(t,i);t=e,i.multi.push(e)}this.records.set(t,n)},t.prototype.hydrate=function(e,t){if(t.value===Ru)throw new Error("Circular dep for "+te(e));return t.value===Du&&(t.value=Ru,t.value=t.factory()),"object"==typeof t.value&&t.value&&function n(e){return"object"==typeof e&&null!=e&&e.ngOnDestroy&&"function"==typeof e.ngOnDestroy}(t.value)&&this.onDestroy.add(t.value),t.value},t.prototype.injectableDefInScope=function(e){return!!e.providedIn&&("string"==typeof e.providedIn?"any"===e.providedIn||"root"===e.providedIn&&this.isRootInjector:this.injectorDefTypes.has(e.providedIn))},t}();function Fu(e){var t=I(e);if(null===t){if(e instanceof E)throw new Error("Token "+te(e)+" is missing an ngInjectableDef definition.");return function(){return new e}}return t.factory}function Hu(e){var t=void 0;if(zu(e))return Fu(pr(e));if(Uu(e))t=function(){return pr(e.useValue)};else if(function n(e){return!!e.useExisting}(e))t=function(){return Ne(pr(e.useExisting))};else if(function r(e){return!!e.useFactory}(e))t=function(){return e.useFactory.apply(e,f(Re(e.deps||[])))};else{var o=pr(e.useClass||e.provide);if(!function i(e){return!!e.deps}(e))return Fu(o);t=function(){return new(o.bind.apply(o,f([void 0],Re(e.deps))))}}return t}function Lu(e,t,n){return void 0===t&&(t=Du),void 0===n&&(n=!1),{factory:e,value:t,multi:n?[]:void 0}}function Bu(e,t){e.forEach(function(e){return Array.isArray(e)?Bu(e,t):t(e)})}function Uu(e){return kr in e}function zu(e){return"function"==typeof e}function Qu(e,t,n,r,o){if(e=pr(e),Array.isArray(e))for(var i=0;i<e.length;i++)Qu(e[i],t,n,r,o);else{var a=mn(),u=zu(e)?e:pr(e.provide),s=Hu(e),l=ln(),c=65535&l.providerIndexes,f=l.flags>>16,d=l.providerIndexes>>16;if(zu(e)||!e.multi){var p=new je(s,o,Ka),h=qu(u,t,o?c:c+d,f);-1==h?(Un(Fn(l,a),a,u),t.push(u),l.flags+=65536,o&&(l.providerIndexes+=65536),n.push(p),a.push(p)):(n[h]=p,a[h]=p)}else{var v=qu(u,t,c+d,f),g=qu(u,t,c,c+d),y=g>=0&&n[g];o&&!y||!o&&!(v>=0&&n[v])?(Un(Fn(l,a),a,u),p=function m(e,t,n,r,o){var i=new je(e,n,Ka);return i.multi=[],i.index=t,i.componentProviders=0,Zu(i,o,r&&!n),i}(o?Wu:Ku,n.length,o,r,s),!o&&y&&(n[g].providerFactory=p),t.push(u),l.flags+=65536,o&&(l.providerIndexes+=65536),n.push(p),a.push(p)):Zu(n[o?g:v],s,!o&&r),!o&&r&&y&&n[g].componentProviders++}}}function Zu(e,t,n){e.multi.push(t),n&&e.componentProviders++}function qu(e,t,n,r){for(var o=n;o<r;o++)if(t[o]===e)return o;return-1}function Ku(e,t,n,r){return Gu(this.multi,[])}function Wu(e,t,n,r){var o,i=this.multi;if(this.providerFactory){var a=this.providerFactory.componentProviders,u=Wn(t,n,this.providerFactory.index,r);Gu(i,o=u.slice(0,a));for(var s=a;s<u.length;s++)o.push(u[s])}else Gu(i,o=[]);return o}function Gu(e,t){for(var n=0;n<e.length;n++)t.push((0,e[n])());return t}function Yu(e,t){return void 0===t&&(t=[]),function(n){n.providersResolver=function(n){return function r(e,t,n){var r=mn()[He];if(r.firstTemplatePass){var o=Dt(e);Qu(n,r.data,r.blueprint,o,!0),Qu(t,r.data,r.blueprint,o,!1)}}(n,e,t)}}}
370
+ */
371
+ var cs,fs=function(){function e(e){this.nativeElement=e}return e.__NG_ELEMENT_ID__=function(){return ds(e)},e}(),ds=iu,ps=function ps(e,t,n,r,o,i){this.id=e,this.templateUrl=t,this.slotCount=n,this.encapsulation=r,this.styles=o,this.animations=i},hs=function hs(){},vs=function vs(){},gs=(new E("Renderer2Interceptor"),function gs(){}),ys=function ys(){};(cs=e.RendererStyleFlags2||(e.RendererStyleFlags2={}))[cs.Important=1]="Important",cs[cs.DashCase=2]="DashCase";var ms,_s=function(){function e(){}return e.__NG_ELEMENT_ID__=function(){return ws()},e}(),ws=iu;(
364
372
  /**
365
373
  * @license
366
374
  * Copyright Google Inc. All Rights Reserved.
367
375
  *
368
376
  * Use of this source code is governed by an MIT-style license that can be
369
377
  * found in the LICENSE file at https://angular.io/license
370
- */var $u=function $u(){},Ju=function Ju(){};
378
+ */
379
+ ms=e.SecurityContext||(e.SecurityContext={}))[ms.NONE=0]="NONE",ms[ms.HTML=1]="HTML",ms[ms.STYLE=2]="STYLE",ms[ms.SCRIPT=3]="SCRIPT",ms[ms.URL=4]="URL",ms[ms.RESOURCE_URL=5]="RESOURCE_URL";var bs,Cs=function Cs(){},xs=new(bs=function bs(e){this.full=e,this.major=e.split(".")[0],this.minor=e.split(".")[1],this.patch=e.split(".").slice(2).join(".")})("7.2.0"),Is=function(e){function t(t){var n=e.call(this)||this;return n.ngModule=t,n}return o(t,e),t.prototype.resolveComponentFactory=function(e){var t=ge(e);return new Ps(t,this.ngModule)},t}(es);
371
380
  /**
372
381
  * @license
373
382
  * Copyright Google Inc. All Rights Reserved.
374
383
  *
375
384
  * Use of this source code is governed by an MIT-style license that can be
376
385
  * found in the LICENSE file at https://angular.io/license
377
- */
378
- function Xu(e){var t=Error("No component factory found for "+te(e)+". Did you add it to @NgModule.entryComponents?");return t[ts]=e,t}var es,ts="ngComponent",ns=function(){function e(){}return e.prototype.resolveComponentFactory=function(e){throw Xu(e)},e}(),rs=function(){function e(){}return e.NULL=new ns,e}(),os=function(){function e(e,t,n){this._parent=t,this._ngModule=n,this._factories=new Map;for(var r=0;r<e.length;r++){var o=e[r];this._factories.set(o.componentType,o)}}return e.prototype.resolveComponentFactory=function(e){var t=this._factories.get(e);if(!t&&this._parent&&(t=this._parent.resolveComponentFactory(e)),!t)throw Xu(e);return new is(t,this._ngModule)},e}(),is=function(e){function t(t,n){var r=e.call(this)||this;return r.factory=t,r.ngModule=n,r.selector=t.selector,r.componentType=t.componentType,r.ngContentSelectors=t.ngContentSelectors,r.inputs=t.inputs,r.outputs=t.outputs,r}return o(t,e),t.prototype.create=function(e,t,n,r){return this.factory.create(e,t,n,r||this.ngModule)},t}(Ju),as=function(){function e(e){this.nativeElement=e}return e.__NG_ELEMENT_ID__=function(){return us(e)},e}(),us=cr,ss=function ss(e,t,n,r,o,i){this.id=e,this.templateUrl=t,this.slotCount=n,this.encapsulation=r,this.styles=o,this.animations=i},ls=function ls(){},cs=function cs(){},fs=(new E("Renderer2Interceptor"),function fs(){}),ds=function ds(){};(es=e.RendererStyleFlags2||(e.RendererStyleFlags2={}))[es.Important=1]="Important",es[es.DashCase=2]="DashCase";var ps,hs=function(){function e(){}return e.__NG_ELEMENT_ID__=function(){return vs()},e}(),vs=cr;(
386
+ */function ks(e){var t=[];for(var n in e)e.hasOwnProperty(n)&&t.push({propName:e[n],templateName:n});return t}var Es=new E("ROOT_CONTEXT_TOKEN",{providedIn:"root",factory:function(){return $a(At(Os))}}),Os=new E("SCHEDULER_TOKEN",{providedIn:"root",factory:function(){return mt}}),Ts={},Ps=function(e){function t(t,n){var r=e.call(this)||this;return r.componentDef=t,r.ngModule=n,r.componentType=t.type,r.selector=t.selectors[0][0],r.ngContentSelectors=[],r}return o(t,e),Object.defineProperty(t.prototype,"inputs",{get:function(){return ks(this.componentDef.inputs)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"outputs",{get:function(){return ks(this.componentDef.outputs)},enumerable:!0,configurable:!0}),t.prototype.create=function(e,t,n,r){var o=void 0===n,i=(r=r||this.ngModule)?function a(e,t){return{get:function(n,r){var o=e.get(n,Ts);return o!==Ts||r===Ts?o:t.get(n,r)}}}(e,r.injector):e,u=i.get(ys,Er),s=i.get(Cs,null),l=o?Ii(this.selector,u.createRenderer(null,this.componentDef)):Pi(u,n),c=this.componentDef.onPush?136:132,f=o?$a():i.get(Es),d=u.createRenderer(l,this.componentDef);n&&l&&(kr(d)?d.setAttribute(l,"ng-version",xs.full):l.setAttribute("ng-version",xs.full));var p,h,v=si(null,Oi(-1,null,1,0,null,null,null),f,c,u,d,s,i),g=mn(v,null);try{u.begin&&u.begin();var y=Ga(l,this.componentDef,v,u,d);if(h=nt(0,v),t)for(var m=0,_=v[be],w=h.projection=[],b=0;b<t.length;b++){for(var C=t[b],x=null,I=null,k=0;k<C.length;k++){_.firstTemplatePass&&(_.expandoStartIndex++,_.blueprint.splice(++m+He,0,null),_.data.splice(m+He,0,null),v.splice(m+He,0,null));var E=li(m,3,C[k],null,null);I?I.next=E:x=E,I=E}w.push(x)}p=Ya(y,this.componentDef,v,f,[Ja]),pa(v,He,y),ui(v)}finally{wn(g),u.end&&u.end()}var O=new Ns(this.componentType,p,us(fs,h,v),v,h);return o&&(O.hostView._tViewNode.child=h),O},t}(Ku),Ns=(new Is,function(e){function t(t,n,r,o,i){var a=e.call(this)||this;return a.location=r,a._rootLView=o,a._tNode=i,a.destroyCbs=[],a.instance=n,a.hostView=a.changeDetectorRef=new as(o),a.hostView._tViewNode=ci(-1,o),a.componentType=t,a}return o(t,e),Object.defineProperty(t.prototype,"injector",{get:function(){return new Fn(this._tNode,this._rootLView)},enumerable:!0,configurable:!0}),t.prototype.destroy=function(){this.destroyCbs.forEach(function(e){return e()}),this.destroyCbs=null,this.hostView.destroy()},t.prototype.onDestroy=function(e){this.destroyCbs.push(e)},t}(qu)),Rs=!0,js=!1;function Ds(){return js=!0,Rs}
379
387
  /**
380
388
  * @license
381
389
  * Copyright Google Inc. All Rights Reserved.
@@ -383,184 +391,183 @@ function Xu(e){var t=Error("No component factory found for "+te(e)+". Did you ad
383
391
  * Use of this source code is governed by an MIT-style license that can be
384
392
  * found in the LICENSE file at https://angular.io/license
385
393
  */
386
- ps=e.SecurityContext||(e.SecurityContext={}))[ps.NONE=0]="NONE",ps[ps.HTML=1]="HTML",ps[ps.STYLE=2]="STYLE",ps[ps.SCRIPT=3]="SCRIPT",ps[ps.URL=4]="URL",ps[ps.RESOURCE_URL=5]="RESOURCE_URL";var gs,ys=function ys(){},ms=new(gs=function gs(e){this.full=e,this.major=e.split(".")[0],this.minor=e.split(".")[1],this.patch=e.split(".").slice(2).join(".")})("7.2.0-beta.0"),_s=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return o(t,e),t.prototype.resolveComponentFactory=function(e){var t=he(e);return new Is(t)},t}(rs);
394
+ var As=function(){function e(e){if(this.defaultDoc=e,this.inertDocument=this.defaultDoc.implementation.createHTMLDocument("sanitization-inert"),this.inertBodyElement=this.inertDocument.body,null==this.inertBodyElement){var t=this.inertDocument.createElement("html");this.inertDocument.appendChild(t),this.inertBodyElement=this.inertDocument.createElement("body"),t.appendChild(this.inertBodyElement)}this.inertBodyElement.innerHTML='<svg><g onload="this.parentNode.remove()"></g></svg>',!this.inertBodyElement.querySelector||this.inertBodyElement.querySelector("svg")?(this.inertBodyElement.innerHTML='<svg><p><style><img src="</style><img src=x onerror=alert(1)//">',this.getInertBodyElement=this.inertBodyElement.querySelector&&this.inertBodyElement.querySelector("svg img")&&function n(){try{return!!window.DOMParser}catch(e){return!1}}
387
395
  /**
388
396
  * @license
389
397
  * Copyright Google Inc. All Rights Reserved.
390
398
  *
391
399
  * Use of this source code is governed by an MIT-style license that can be
392
400
  * found in the LICENSE file at https://angular.io/license
393
- */function ws(e){var t=[];for(var n in e)e.hasOwnProperty(n)&&t.push({propName:e[n],templateName:n});return t}var bs=new E("ROOT_CONTEXT_TOKEN",{providedIn:"root",factory:function(){return Cu(Ne(Cs))}}),Cs=new E("SCHEDULER_TOKEN",{providedIn:"root",factory:function(){return Jt}}),xs={},Is=function(e){function t(t){var n=e.call(this)||this;return n.componentDef=t,n.componentType=t.type,n.selector=t.selectors[0][0],n.ngContentSelectors=[],n}return o(t,e),Object.defineProperty(t.prototype,"inputs",{get:function(){return ws(this.componentDef.inputs)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"outputs",{get:function(){return ws(this.componentDef.outputs)},enumerable:!0,configurable:!0}),t.prototype.create=function(e,t,n,r){var o,i=void 0===n,a=null;r?(o=r.injector.get(ds),a=r.injector.get(ys,null)):o=Br;var u=i?Ti(this.selector,o.createRenderer(null,this.componentDef)):ji(o,n),s=this.componentDef.onPush?68:66,l=r&&!i?r.injector.get(bs):Cu(),c=o.createRenderer(u,this.componentDef),f=r?function d(e,t){return{get:function(n,r){var o=e.get(n,xs);return o!==xs?o:t.get(n,r)}}}(e,r.injector):e;n&&u&&(Lr(c)?c.setAttribute(u,"ng-version",ms.full):u.setAttribute("ng-version",ms.full));var p,h,v=di(null,Di(-1,null,1,0,null,null,null),l,s,o,c,a,f),g=Dn(v,null);try{o.begin&&o.begin();var y=wu(u,this.componentDef,v,o,c);if(h=Ot(0,v),t)for(var m=0,_=v[He],w=h.projection=[],b=0;b<t.length;b++){for(var C=t[b],x=null,I=null,k=0;k<C.length;k++){_.firstTemplatePass&&(_.expandoStartIndex++,_.blueprint.splice(++m+rt,0,null),_.data.splice(m+rt,0,null),v.splice(m+rt,0,null));var E=pi(m,3,C[k],null,null);I?I.next=E:x=E,I=E}w.push(x)}p=bu(y,this.componentDef,v,l,[xu]),fi(v,1)}finally{jn(g,!0),o.end&&o.end()}var O=new ks(this.componentType,p,ou(as,h,v),v,h);return i&&(O.hostView._tViewNode.child=h),O},t}(Ju),ks=(new _s,function(e){function t(t,n,r,o,i){var a=e.call(this)||this;return a.location=r,a._rootView=o,a._tNode=i,a.destroyCbs=[],a.instance=n,a.hostView=a.changeDetectorRef=new ru(o),a.hostView._tViewNode=hi(-1,o),a.componentType=t,a}return o(t,e),Object.defineProperty(t.prototype,"injector",{get:function(){return new $n(this._tNode,this._rootView)},enumerable:!0,configurable:!0}),t.prototype.destroy=function(){this.destroyCbs.forEach(function(e){return e()}),this.destroyCbs=null,this.hostView.destroy()},t.prototype.onDestroy=function(e){this.destroyCbs.push(e)},t}($u)),Es=!0,Os=!1;function Ts(){return Os=!0,Es}
401
+ */()?this.getInertBodyElement_DOMParser:this.getInertBodyElement_InertDocument):this.getInertBodyElement=this.getInertBodyElement_XHR}return e.prototype.getInertBodyElement_XHR=function(e){e="<body><remove></remove>"+e+"</body>";try{e=encodeURI(e)}catch(e){return null}var t=new XMLHttpRequest;t.responseType="document",t.open("GET","data:text/html;charset=utf-8,"+e,!1),t.send(void 0);var n=t.response.body;return n.removeChild(n.firstChild),n},e.prototype.getInertBodyElement_DOMParser=function(e){e="<body><remove></remove>"+e+"</body>";try{var t=(new window.DOMParser).parseFromString(e,"text/html").body;return t.removeChild(t.firstChild),t}catch(e){return null}},e.prototype.getInertBodyElement_InertDocument=function(e){var t=this.inertDocument.createElement("template");return"content"in t?(t.innerHTML=e,t):(this.inertBodyElement.innerHTML=e,this.defaultDoc.documentMode&&this.stripCustomNsAttrs(this.inertBodyElement),this.inertBodyElement)},e.prototype.stripCustomNsAttrs=function(e){for(var t=e.attributes,n=t.length-1;0<n;n--){var r=t.item(n).name;"xmlns:ns1"!==r&&0!==r.indexOf("ns1:")||e.removeAttribute(r)}for(var o=e.firstChild;o;)o.nodeType===Node.ELEMENT_NODE&&this.stripCustomNsAttrs(o),o=o.nextSibling},e}(),Ss=/^(?:(?:https?|mailto|ftp|tel|file):|[^&:/?#]*(?:[/?#]|$))/gi,Vs=/^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[a-z0-9+\/]+=*$/i;function Ms(e){return(e=String(e)).match(Ss)||e.match(Vs)?e:(Ds()&&console.warn("WARNING: sanitizing unsafe URL value "+e+" (see http://g.co/ng/security#xss)"),"unsafe:"+e)}function Fs(e){return(e=String(e)).split(",").map(function(e){return Ms(e.trim())}).join(", ")}
394
402
  /**
395
403
  * @license
396
404
  * Copyright Google Inc. All Rights Reserved.
397
405
  *
398
406
  * Use of this source code is governed by an MIT-style license that can be
399
407
  * found in the LICENSE file at https://angular.io/license
400
- */
401
- var Ps=function(){function e(e){if(this.defaultDoc=e,this.inertDocument=this.defaultDoc.implementation.createHTMLDocument("sanitization-inert"),this.inertBodyElement=this.inertDocument.body,null==this.inertBodyElement){var t=this.inertDocument.createElement("html");this.inertDocument.appendChild(t),this.inertBodyElement=this.inertDocument.createElement("body"),t.appendChild(this.inertBodyElement)}this.inertBodyElement.innerHTML='<svg><g onload="this.parentNode.remove()"></g></svg>',!this.inertBodyElement.querySelector||this.inertBodyElement.querySelector("svg")?(this.inertBodyElement.innerHTML='<svg><p><style><img src="</style><img src=x onerror=alert(1)//">',this.getInertBodyElement=this.inertBodyElement.querySelector&&this.inertBodyElement.querySelector("svg img")&&function n(){try{return!!window.DOMParser}catch(e){return!1}}
408
+ */function Hs(e){var t,n,r={};try{for(var o=l(e.split(",")),i=o.next();!i.done;i=o.next())r[i.value]=!0}catch(e){t={error:e}}finally{try{i&&!i.done&&(n=o.return)&&n.call(o)}finally{if(t)throw t.error}}return r}function Ls(){for(var e,t,n=[],r=0;r<arguments.length;r++)n[r]=arguments[r];var o={};try{for(var i=l(n),a=i.next();!a.done;a=i.next()){var u=a.value;for(var s in u)u.hasOwnProperty(s)&&(o[s]=!0)}}catch(t){e={error:t}}finally{try{a&&!a.done&&(t=i.return)&&t.call(i)}finally{if(e)throw e.error}}return o}var Bs,Us=Hs("area,br,col,hr,img,wbr"),zs=Hs("colgroup,dd,dt,li,p,tbody,td,tfoot,th,thead,tr"),Qs=Hs("rp,rt"),Zs=Ls(Qs,zs),qs=Ls(zs,Hs("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")),Ks=Ls(Qs,Hs("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")),Ws=Ls(Us,qs,Ks,Zs),Gs=Hs("background,cite,href,itemtype,longdesc,poster,src,xlink:href"),Ys=Hs("srcset"),$s=Hs("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,start,summary,tabindex,target,title,translate,type,usemap,valign,value,vspace,width"),Js=Ls(Gs,Ys,$s),Xs=function(){function e(){this.sanitizedSomething=!1,this.buf=[]}return e.prototype.sanitizeChildren=function(e){for(var t=e.firstChild,n=!0;t;)if(t.nodeType===Node.ELEMENT_NODE?n=this.startElement(t):t.nodeType===Node.TEXT_NODE?this.chars(t.nodeValue):this.sanitizedSomething=!0,n&&t.firstChild)t=t.firstChild;else for(;t;){t.nodeType===Node.ELEMENT_NODE&&this.endElement(t);var r=this.checkClobberedElement(t,t.nextSibling);if(r){t=r;break}t=this.checkClobberedElement(t,t.parentNode)}return this.buf.join("")},e.prototype.startElement=function(e){var t=e.nodeName.toLowerCase();if(!Ws.hasOwnProperty(t))return this.sanitizedSomething=!0,!1;this.buf.push("<"),this.buf.push(t);for(var n=e.attributes,r=0;r<n.length;r++){var o=n.item(r),i=o.name,a=i.toLowerCase();if(Js.hasOwnProperty(a)){var u=o.value;Gs[a]&&(u=Ms(u)),Ys[a]&&(u=Fs(u)),this.buf.push(" ",i,'="',nl(u),'"')}else this.sanitizedSomething=!0}return this.buf.push(">"),!0},e.prototype.endElement=function(e){var t=e.nodeName.toLowerCase();Ws.hasOwnProperty(t)&&!Us.hasOwnProperty(t)&&(this.buf.push("</"),this.buf.push(t),this.buf.push(">"))},e.prototype.chars=function(e){this.buf.push(nl(e))},e.prototype.checkClobberedElement=function(e,t){if(t&&(e.compareDocumentPosition(t)&Node.DOCUMENT_POSITION_CONTAINED_BY)===Node.DOCUMENT_POSITION_CONTAINED_BY)throw new Error("Failed to sanitize html because the element is clobbered: "+e.outerHTML);return t},e}(),el=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,tl=/([^\#-~ |!])/g;function nl(e){return e.replace(/&/g,"&amp;").replace(el,function(e){return"&#"+(1024*(e.charCodeAt(0)-55296)+(e.charCodeAt(1)-56320)+65536)+";"}).replace(tl,function(e){return"&#"+e.charCodeAt(0)+";"}).replace(/</g,"&lt;").replace(/>/g,"&gt;")}function rl(e,t){var n=null;try{Bs=Bs||new As(e);var r=t?String(t):"";n=Bs.getInertBodyElement(r);var o=5,i=r;do{if(0===o)throw new Error("Failed to sanitize html because the input is unstable");o--,r=i,i=n.innerHTML,n=Bs.getInertBodyElement(r)}while(r!==i);var a=new Xs,u=a.sanitizeChildren(ol(n)||n);return Ds()&&a.sanitizedSomething&&console.warn("WARNING: sanitizing HTML stripped some content (see http://g.co/ng/security#xss)."),u}finally{if(n)for(var s=ol(n)||n;s.firstChild;)s.removeChild(s.firstChild)}}function ol(e){return"content"in e&&function t(e){return e.nodeType===Node.ELEMENT_NODE&&"TEMPLATE"===e.nodeName}
402
409
  /**
403
410
  * @license
404
411
  * Copyright Google Inc. All Rights Reserved.
405
412
  *
406
413
  * Use of this source code is governed by an MIT-style license that can be
407
414
  * found in the LICENSE file at https://angular.io/license
408
- */()?this.getInertBodyElement_DOMParser:this.getInertBodyElement_InertDocument):this.getInertBodyElement=this.getInertBodyElement_XHR}return e.prototype.getInertBodyElement_XHR=function(e){e="<body><remove></remove>"+e+"</body>";try{e=encodeURI(e)}catch(e){return null}var t=new XMLHttpRequest;t.responseType="document",t.open("GET","data:text/html;charset=utf-8,"+e,!1),t.send(void 0);var n=t.response.body;return n.removeChild(n.firstChild),n},e.prototype.getInertBodyElement_DOMParser=function(e){e="<body><remove></remove>"+e+"</body>";try{var t=(new window.DOMParser).parseFromString(e,"text/html").body;return t.removeChild(t.firstChild),t}catch(e){return null}},e.prototype.getInertBodyElement_InertDocument=function(e){var t=this.inertDocument.createElement("template");return"content"in t?(t.innerHTML=e,t):(this.inertBodyElement.innerHTML=e,this.defaultDoc.documentMode&&this.stripCustomNsAttrs(this.inertBodyElement),this.inertBodyElement)},e.prototype.stripCustomNsAttrs=function(e){for(var t=e.attributes,n=t.length-1;0<n;n--){var r=t.item(n).name;"xmlns:ns1"!==r&&0!==r.indexOf("ns1:")||e.removeAttribute(r)}for(var o=e.firstChild;o;)o.nodeType===Node.ELEMENT_NODE&&this.stripCustomNsAttrs(o),o=o.nextSibling},e}(),Ns=/^(?:(?:https?|mailto|ftp|tel|file):|[^&:/?#]*(?:[/?#]|$))/gi,Ds=/^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[a-z0-9+\/]+=*$/i;function Rs(e){return(e=String(e)).match(Ns)||e.match(Ds)?e:(Ts()&&console.warn("WARNING: sanitizing unsafe URL value "+e+" (see http://g.co/ng/security#xss)"),"unsafe:"+e)}function js(e){return(e=String(e)).split(",").map(function(e){return Rs(e.trim())}).join(", ")}
415
+ */(e)?e.content:null}var il={marker:"element"},al={marker:"comment"},ul="�",sl=/^\s*(�\d+:?\d*�)\s*,\s*(select|plural)\s*,/,ll=/�\/?\*(\d+:\d+)�/gi,cl=/�(\/?[#*]\d+):?\d*�/gi,fl=/�(\d+):?\d*�/gi,dl=/({\s*�\d+:?\d*�\s*,\s*\S{6}\s*,[\s\S]*})/gi,pl=/\[(�.+?�?)\]/g,hl=/({\s*)(VAR_(PLURAL|SELECT)(_\d+)?)(\s*,)/g,vl=/�I18N_EXP_(ICU(_\d+)?)�/g;function gl(e){if(!e)return[];var t,n=0,r=[],o=[],i=/[{}]/g;for(i.lastIndex=0;t=i.exec(e);){var a=t.index;if("}"==t[0]){if(r.pop(),0==r.length){var u=e.substring(n,a);sl.test(u)?o.push(yl(u)):u&&o.push(u),n=a+1}}else{if(0==r.length){var s=e.substring(n,a);o.push(s),n=a+1}r.push("{")}}var l=e.substring(n);return""!=l&&o.push(l),o}function yl(e){for(var t=[],n=[],r=1,o=0,i=gl(e=e.replace(sl,function(e,t,n){return r="select"===n?0:1,o=parseInt(t.substr(1),10),""})),a=0;a<i.length;){var u=i[a++].trim();1===r&&(u=u.replace(/\s*(?:=)?(\w+)\s*/,"$1")),u.length&&t.push(u);var s=gl(i[a++]);s.length&&n.push(s)}return function l(e,t,n){e<=t&&function r(e){throw new Error("ASSERTION ERROR: "+e)}(n)}(t.indexOf("other"),-1,'Missing key "other" in ICU statement.'),{type:r,mainBinding:o,cases:t,values:n}}function ml(e){for(var t,n,r="",o=0,i=!1;null!==(t=ll.exec(e));)i?t[0]===ul+"/*"+n+ul&&(o=t.index,i=!1):(r+=e.substring(o,t.index+t[0].length),n=t[1],i=!0);return r+e.substr(o)}function _l(e,t,n,r){void 0===r&&(r=null);for(var o=[null,null],i=e.split(fl),a=0,u=0;u<i.length;u++){var s=i[u];if(1&u){var l=parseInt(s,10);o.push(-1-l),a|=xl(l)}else""!==s&&o.push(s)}return o.push(t<<2|(n?1:0)),n&&o.push(n,r),o[0]=a,o[1]=o.length-2,o}function wl(e,t){var n;void 0===t&&(t=0),t|=xl(e.mainBinding);for(var r=0;r<e.values.length;r++)for(var o=e.values[r],i=0;i<o.length;i++){var a=o[i];if("string"==typeof a)for(;n=fl.exec(a);)t|=xl(parseInt(n[1],10));else t=wl(a,t)}return t}var bl=[],Cl=-1;function xl(e){return 1<<Math.min(e,31)}var Il=[];function kl(e,t,n){var r=Xt()[be];bl[++Cl]=e,r.firstTemplatePass&&null===r.data[e+He]&&function o(e,t,n,r){var o=Xt(),i=e.blueprint.length-He,a=tn(),u=on()?tn():a&&a.parent,s=u&&u!==o[Oe]?u.index-He:t,l=0;Il[l]=s;var c=[];t>0&&a!==u&&c.push(a.index<<3|0);for(var f=[],d=[],p=function h(e,t){if("number"!=typeof t)return ml(e);var n=e.indexOf(":"+t+ul)+2+t.toString().length,r=e.search(new RegExp(ul+"\\/\\*\\d+:"+t+ul));return ml(e.substring(n,r))}(n,r).split(cl),v=0;v<p.length;v++){var g=p[v];if(1&v)if("/"===g.charAt(0)){if("#"===g.charAt(1)){var y=parseInt(g.substr(2),10);s=Il[--l],c.push(y<<3|5)}}else y=parseInt(g.substr(1),10),c.push(y<<3|0,s<<17|1),"#"===g.charAt(0)&&(Il[++l]=s=y);else for(var m=g.split(dl),_=0;_<m.length;_++)if(g=m[_],1&_){fi(o);var w=e.blueprint.length-1-He;c.push(al,"",s<<17|1);var b=yl(g.substr(1,g.length-2)),C=wl(b);Hl(d,b,w,w);var x=d.length-1;f.push(xl(b.mainBinding),3,-1-b.mainBinding,w<<2|2,x,C,2,w<<2|3,x)}else if(""!==g){var I=g.match(fl);fi(o),c.push(I?"":g,s<<17|1),I&&_t(_l(g,e.blueprint.length-1-He),f)}}e.data[t+He]={vars:e.blueprint.length-He-i,expandoStartIndex:i,create:c,update:f,icus:d.length?d:null}}(r,e,t,n)}function El(e,t,n){var r=Xt();n||(n=t),n===t&&e!==t.child?(e.next=t.child,t.child=e):n!==t&&e!==n.next?(e.next=n.next,n.next=e):e.next=null,t!==r[Oe]&&(e.parent=t),Kr(tt(e,r),e,r);var o=r[e.index];return 0!==e.type&&ut(o)&&Kr(o[Ue],e,r),e}function Ol(e,t){var n={},r=e.replace(pl,function(e,t){if(n[t]||(n[t]=t.split("|")),!n[t].length)throw new Error("i18n postprocess: unmatched placeholder - "+t);return n[t].shift()});if(Object.keys(n).some(function(e){return!!n[e].length}))throw new Error("i18n postprocess: unmatched values - "+JSON.stringify(n));return Object.keys(t).length?r=(r=r.replace(hl,function(e,n,r,o,i,a){return t.hasOwnProperty(r)?""+n+t[r]+a:e})).replace(vl,function(e,n){if(t.hasOwnProperty(n)){var r=t[n];if(!r.length)throw new Error("i18n postprocess: unmatched ICU - "+e+" with key: "+n);return r.shift()}return e}):r}function Tl(){!function e(t){for(var n=Xt(),r=bl[Cl--],o=t.data[r+He],i=tn(),a=Pl(r,o.create,o.expandoStartIndex,n),u=r+1;u<=i.index-He;u++)-1===a.indexOf(u)&&Nl(u,n)}(Xt()[be])}function Pl(e,t,n,r){for(var o=Xt()[De],i=null,a=null,u=[],s=0;s<t.length;s++){var l=t[s];if("string"==typeof l)a=i,i=li(n++,3,Ar(l,o),null,null),an(!1);else if("number"==typeof l)switch(7&l){case 1:var c=l>>>17,f=void 0;a=El(i,f=c===e?r[Oe]:nt(c,r),a),f.next=null;break;case 0:var d=l>>>3;u.push(d),a=i,(i=nt(d,r))&&(nn(i),3===i.type&&an(!0));break;case 5:a=i=nt(l>>>3,r),nn(i),an(!1);break;case 4:ji(l>>>3,t[++s],t[++s]);break;default:throw new Error('Unable to determine the type of mutate operation for "'+l+'"')}else switch(l){case al:var p=t[++s],h=o.createComment(p);a=i,i=li(n++,5,h,null,null),Qn(h,r),i.activeCaseIndex=null,an(!1);break;case il:var v=t[++s];a=i,i=li(n++,3,o.createElement(v),v,null);break;default:throw new Error('Unable to determine the type of mutate operation for "'+l+'"')}}return an(!1),u}function Nl(e,t){var n=nt(e,t);Yr(n,et(e,t)||null,t),n.detached=!0;var r=Va(e);if(ut(r)){var o=r;0!==n.type&&Yr(n,o[Ue]||null,t),o[ze]=null}}function Rl(e,t,n){kl(e,t,n),Tl()}function jl(e,t){var n=Xt()[be];n.firstTemplatePass&&null===n.data[e+He]&&function r(e,t,n){for(var r=tn().index-He,o=[],i=0;i<n.length;i+=2)for(var a=n[i],u=n[i+1].split(dl),s=0;s<u.length;s++){var l=u[s];1&s||""!==l&&(l.match(fl)?_t(_l(l,r,a),o):ji(r,a,l))}e.data[t+He]=o}(n,e,t)}var Dl,Al=0,Sl=0;function Vl(e){e!==gr&&(Al|=1<<Sl),Sl++}function Ml(e){if(Sl){var t=Xt(),n=t[be].data[e+He],r=void 0,o=null;Array.isArray(n)?r=n:(r=n.update,o=n.icus),function e(t,n,r,o,i,a){void 0===a&&(a=!1);for(var u=!1,s=0;s<t.length;s++){var l=t[s],c=t[++s];if(a||l&o)for(var f="",d=s+1;d<=s+c;d++){var p=t[d];if("string"==typeof p)f+=p;else if("number"==typeof p)if(p<0)f+=$e(i[r-p]);else{var h=p>>>2;switch(3&p){case 1:ji(h,t[++d],f,t[++d]);break;case 0:Ki(h,f);break;case 2:var v=t[++d],g=n[v],y=nt(h,i);if(null!==y.activeCaseIndex)for(var m=g.remove[y.activeCaseIndex],_=0;_<m.length;_++){var w=m[_];switch(7&w){case 3:Nl(w>>>3,i);break;case 6:var b=nt(m[_+1]>>>3,i).activeCaseIndex;null!==b&&_t(n[w>>>3].remove[b],m)}}var C=Fl(g,f);y.activeCaseIndex=-1!==C?C:null,Pl(-1,g.create[C],g.expandoStartIndex,i),u=!0;break;case 3:g=n[v=t[++d]],y=nt(h,i),e(g.update[y.activeCaseIndex],n,r,o,i,u)}}}s+=c}}(r,o,t[Te]-Sl-1,Al,t),Al=0,Sl=0}}function Fl(e,t){var n=e.cases.indexOf(t);if(-1===n)switch(e.type){case 1:var r=function o(e,t){switch(function n(e,t){"string"==typeof t&&(t=parseInt(t,10));var n=t,r=n.toString().replace(/^[^.]*\.?/,""),o=Math.floor(Math.abs(n)),i=r.length,a=parseInt(r,10),u=parseInt(n.toString().replace(/^[^.]*\.?|0+$/g,""),10)||0;switch(e.split("-")[0].toLowerCase()){case"af":case"asa":case"az":case"bem":case"bez":case"bg":case"brx":case"ce":case"cgg":case"chr":case"ckb":case"ee":case"el":case"eo":case"es":case"eu":case"fo":case"fur":case"gsw":case"ha":case"haw":case"hu":case"jgo":case"jmc":case"ka":case"kk":case"kkj":case"kl":case"ks":case"ksb":case"ky":case"lb":case"lg":case"mas":case"mgo":case"ml":case"mn":case"nb":case"nd":case"ne":case"nn":case"nnh":case"nyn":case"om":case"or":case"os":case"ps":case"rm":case"rof":case"rwk":case"saq":case"seh":case"sn":case"so":case"sq":case"ta":case"te":case"teo":case"tk":case"tr":case"ug":case"uz":case"vo":case"vun":case"wae":case"xog":return 1===n?Dl.One:Dl.Other;case"ak":case"ln":case"mg":case"pa":case"ti":return n===Math.floor(n)&&n>=0&&n<=1?Dl.One:Dl.Other;case"am":case"as":case"bn":case"fa":case"gu":case"hi":case"kn":case"mr":case"zu":return 0===o||1===n?Dl.One:Dl.Other;case"ar":return 0===n?Dl.Zero:1===n?Dl.One:2===n?Dl.Two:n%100===Math.floor(n%100)&&n%100>=3&&n%100<=10?Dl.Few:n%100===Math.floor(n%100)&&n%100>=11&&n%100<=99?Dl.Many:Dl.Other;case"ast":case"ca":case"de":case"en":case"et":case"fi":case"fy":case"gl":case"it":case"nl":case"sv":case"sw":case"ur":case"yi":return 1===o&&0===i?Dl.One:Dl.Other;case"be":return n%10==1&&n%100!=11?Dl.One:n%10===Math.floor(n%10)&&n%10>=2&&n%10<=4&&!(n%100>=12&&n%100<=14)?Dl.Few:n%10==0||n%10===Math.floor(n%10)&&n%10>=5&&n%10<=9||n%100===Math.floor(n%100)&&n%100>=11&&n%100<=14?Dl.Many:Dl.Other;case"br":return n%10==1&&n%100!=11&&n%100!=71&&n%100!=91?Dl.One:n%10==2&&n%100!=12&&n%100!=72&&n%100!=92?Dl.Two:n%10===Math.floor(n%10)&&(n%10>=3&&n%10<=4||n%10==9)&&!(n%100>=10&&n%100<=19||n%100>=70&&n%100<=79||n%100>=90&&n%100<=99)?Dl.Few:0!==n&&n%1e6==0?Dl.Many:Dl.Other;case"bs":case"hr":case"sr":return 0===i&&o%10==1&&o%100!=11||a%10==1&&a%100!=11?Dl.One:0===i&&o%10===Math.floor(o%10)&&o%10>=2&&o%10<=4&&!(o%100>=12&&o%100<=14)||a%10===Math.floor(a%10)&&a%10>=2&&a%10<=4&&!(a%100>=12&&a%100<=14)?Dl.Few:Dl.Other;case"cs":case"sk":return 1===o&&0===i?Dl.One:o===Math.floor(o)&&o>=2&&o<=4&&0===i?Dl.Few:0!==i?Dl.Many:Dl.Other;case"cy":return 0===n?Dl.Zero:1===n?Dl.One:2===n?Dl.Two:3===n?Dl.Few:6===n?Dl.Many:Dl.Other;case"da":return 1===n||0!==u&&(0===o||1===o)?Dl.One:Dl.Other;case"dsb":case"hsb":return 0===i&&o%100==1||a%100==1?Dl.One:0===i&&o%100==2||a%100==2?Dl.Two:0===i&&o%100===Math.floor(o%100)&&o%100>=3&&o%100<=4||a%100===Math.floor(a%100)&&a%100>=3&&a%100<=4?Dl.Few:Dl.Other;case"ff":case"fr":case"hy":case"kab":return 0===o||1===o?Dl.One:Dl.Other;case"fil":return 0===i&&(1===o||2===o||3===o)||0===i&&o%10!=4&&o%10!=6&&o%10!=9||0!==i&&a%10!=4&&a%10!=6&&a%10!=9?Dl.One:Dl.Other;case"ga":return 1===n?Dl.One:2===n?Dl.Two:n===Math.floor(n)&&n>=3&&n<=6?Dl.Few:n===Math.floor(n)&&n>=7&&n<=10?Dl.Many:Dl.Other;case"gd":return 1===n||11===n?Dl.One:2===n||12===n?Dl.Two:n===Math.floor(n)&&(n>=3&&n<=10||n>=13&&n<=19)?Dl.Few:Dl.Other;case"gv":return 0===i&&o%10==1?Dl.One:0===i&&o%10==2?Dl.Two:0!==i||o%100!=0&&o%100!=20&&o%100!=40&&o%100!=60&&o%100!=80?0!==i?Dl.Many:Dl.Other:Dl.Few;case"he":return 1===o&&0===i?Dl.One:2===o&&0===i?Dl.Two:0!==i||n>=0&&n<=10||n%10!=0?Dl.Other:Dl.Many;case"is":return 0===u&&o%10==1&&o%100!=11||0!==u?Dl.One:Dl.Other;case"ksh":return 0===n?Dl.Zero:1===n?Dl.One:Dl.Other;case"kw":case"naq":case"se":case"smn":return 1===n?Dl.One:2===n?Dl.Two:Dl.Other;case"lag":return 0===n?Dl.Zero:0!==o&&1!==o||0===n?Dl.Other:Dl.One;case"lt":return n%10!=1||n%100>=11&&n%100<=19?n%10===Math.floor(n%10)&&n%10>=2&&n%10<=9&&!(n%100>=11&&n%100<=19)?Dl.Few:0!==a?Dl.Many:Dl.Other:Dl.One;case"lv":case"prg":return n%10==0||n%100===Math.floor(n%100)&&n%100>=11&&n%100<=19||2===i&&a%100===Math.floor(a%100)&&a%100>=11&&a%100<=19?Dl.Zero:n%10==1&&n%100!=11||2===i&&a%10==1&&a%100!=11||2!==i&&a%10==1?Dl.One:Dl.Other;case"mk":return 0===i&&o%10==1||a%10==1?Dl.One:Dl.Other;case"mt":return 1===n?Dl.One:0===n||n%100===Math.floor(n%100)&&n%100>=2&&n%100<=10?Dl.Few:n%100===Math.floor(n%100)&&n%100>=11&&n%100<=19?Dl.Many:Dl.Other;case"pl":return 1===o&&0===i?Dl.One:0===i&&o%10===Math.floor(o%10)&&o%10>=2&&o%10<=4&&!(o%100>=12&&o%100<=14)?Dl.Few:0===i&&1!==o&&o%10===Math.floor(o%10)&&o%10>=0&&o%10<=1||0===i&&o%10===Math.floor(o%10)&&o%10>=5&&o%10<=9||0===i&&o%100===Math.floor(o%100)&&o%100>=12&&o%100<=14?Dl.Many:Dl.Other;case"pt":return n===Math.floor(n)&&n>=0&&n<=2&&2!==n?Dl.One:Dl.Other;case"ro":return 1===o&&0===i?Dl.One:0!==i||0===n||1!==n&&n%100===Math.floor(n%100)&&n%100>=1&&n%100<=19?Dl.Few:Dl.Other;case"ru":case"uk":return 0===i&&o%10==1&&o%100!=11?Dl.One:0===i&&o%10===Math.floor(o%10)&&o%10>=2&&o%10<=4&&!(o%100>=12&&o%100<=14)?Dl.Few:0===i&&o%10==0||0===i&&o%10===Math.floor(o%10)&&o%10>=5&&o%10<=9||0===i&&o%100===Math.floor(o%100)&&o%100>=11&&o%100<=14?Dl.Many:Dl.Other;case"shi":return 0===o||1===n?Dl.One:n===Math.floor(n)&&n>=2&&n<=10?Dl.Few:Dl.Other;case"si":return 0===n||1===n||0===o&&1===a?Dl.One:Dl.Other;case"sl":return 0===i&&o%100==1?Dl.One:0===i&&o%100==2?Dl.Two:0===i&&o%100===Math.floor(o%100)&&o%100>=3&&o%100<=4||0!==i?Dl.Few:Dl.Other;case"tzm":return n===Math.floor(n)&&n>=0&&n<=1||n===Math.floor(n)&&n>=11&&n<=99?Dl.One:Dl.Other;default:return Dl.Other}}(t,e)){case Dl.Zero:return"zero";case Dl.One:return"one";case Dl.Two:return"two";case Dl.Few:return"few";case Dl.Many:return"many";default:return"other"}}(t,"en-US");-1===(n=e.cases.indexOf(r))&&"other"!==r&&(n=e.cases.indexOf("other"));break;case 0:n=e.cases.indexOf("other")}return n}function Hl(e,t,n,r){for(var o=[],i=[],a=[],u=[],s=[],l=0;l<t.values.length;l++){for(var c=t.values[l],d=[],p=0;p<c.length;p++){var h=c[p];if("string"!=typeof h){var v=d.push(h)-1;c[p]="\x3c!--�"+v+"�--\x3e"}}var g=Ll(c.join(""),n,d,e,r);o.push(g.create),i.push(g.remove),a.push(g.update),u.push(g.vars),s.push(g.childIcus)}e.push({type:t.type,vars:u,expandoStartIndex:r+1,childIcus:s,cases:t.cases,create:o,remove:i,update:a});var y=Xt(),m=Math.max.apply(Math,f(u));for(l=0;l<m;l++)fi(y)}function Ll(e,t,n,r,o){var i=new As(document).getInertBodyElement(e);if(!i)throw new Error("Unable to generate inert body element");var a={vars:0,childIcus:[],create:[],remove:[],update:[]};return function e(t,n,r,o,i,a){if(t){for(var u=[];t;){var s=t.nextSibling,l=a+ ++n.vars;switch(t.nodeType){case Node.ELEMENT_NODE:var c=t,d=c.tagName.toLowerCase();if(Ws.hasOwnProperty(d)){n.create.push(il,d,r<<17|1);for(var p=c.attributes,h=0;h<p.length;h++){var v=p.item(h),g=v.name.toLowerCase();v.value.match(fl)?Js.hasOwnProperty(g)&&_t(Gs[g]?_l(v.value,l,v.name,Ms):Ys[g]?_l(v.value,l,v.name,Fs):_l(v.value,l,v.name),n.update):n.create.push(l<<3|4,v.name,v.value)}e(t.firstChild,n,l,o,i,a),n.remove.push(l<<3|3)}else n.vars--;break;case Node.TEXT_NODE:var y=t.textContent||"",m=y.match(fl);n.create.push(m?"":y,r<<17|1),n.remove.push(l<<3|3),m&&_t(_l(y,l),n.update);break;case Node.COMMENT_NODE:var _=Bl.exec(t.textContent||"");if(_){var w=parseInt(_[1],10);n.create.push(al,"",r<<17|1),u.push([b=o[w],l])}else n.vars--;break;default:n.vars--}t=s}for(h=0;h<u.length;h++){var b,C=u[h][1];Hl(i,b=u[h][0],C,a+n.vars);var x=i.length-1;n.vars+=Math.max.apply(Math,f(i[x].vars)),n.childIcus.push(x);var I=wl(b);n.update.push(xl(b.mainBinding),3,-1-b.mainBinding,C<<2|2,x,I,2,C<<2|3,x),n.remove.push(x<<3|6,C<<3|3)}}}
409
416
  /**
410
417
  * @license
411
418
  * Copyright Google Inc. All Rights Reserved.
412
419
  *
413
420
  * Use of this source code is governed by an MIT-style license that can be
414
421
  * found in the LICENSE file at https://angular.io/license
415
- */function As(e){var t,n,r={};try{for(var o=l(e.split(",")),i=o.next();!i.done;i=o.next())r[i.value]=!0}catch(e){t={error:e}}finally{try{i&&!i.done&&(n=o.return)&&n.call(o)}finally{if(t)throw t.error}}return r}function Ss(){for(var e,t,n=[],r=0;r<arguments.length;r++)n[r]=arguments[r];var o={};try{for(var i=l(n),a=i.next();!a.done;a=i.next()){var u=a.value;for(var s in u)u.hasOwnProperty(s)&&(o[s]=!0)}}catch(t){e={error:t}}finally{try{a&&!a.done&&(t=i.return)&&t.call(i)}finally{if(e)throw e.error}}return o}var Vs,Ms=As("area,br,col,hr,img,wbr"),Fs=As("colgroup,dd,dt,li,p,tbody,td,tfoot,th,thead,tr"),Hs=As("rp,rt"),Ls=Ss(Hs,Fs),Bs=Ss(Fs,As("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")),Us=Ss(Hs,As("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")),zs=Ss(Ms,Bs,Us,Ls),Qs=As("background,cite,href,itemtype,longdesc,poster,src,xlink:href"),Zs=As("srcset"),qs=As("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,start,summary,tabindex,target,title,translate,type,usemap,valign,value,vspace,width"),Ks=Ss(Qs,Zs,qs),Ws=function(){function e(){this.sanitizedSomething=!1,this.buf=[]}return e.prototype.sanitizeChildren=function(e){for(var t=e.firstChild,n=!0;t;)if(t.nodeType===Node.ELEMENT_NODE?n=this.startElement(t):t.nodeType===Node.TEXT_NODE?this.chars(t.nodeValue):this.sanitizedSomething=!0,n&&t.firstChild)t=t.firstChild;else for(;t;){t.nodeType===Node.ELEMENT_NODE&&this.endElement(t);var r=this.checkClobberedElement(t,t.nextSibling);if(r){t=r;break}t=this.checkClobberedElement(t,t.parentNode)}return this.buf.join("")},e.prototype.startElement=function(e){var t=e.nodeName.toLowerCase();if(!zs.hasOwnProperty(t))return this.sanitizedSomething=!0,!1;this.buf.push("<"),this.buf.push(t);for(var n=e.attributes,r=0;r<n.length;r++){var o=n.item(r),i=o.name,a=i.toLowerCase();if(Ks.hasOwnProperty(a)){var u=o.value;Qs[a]&&(u=Rs(u)),Zs[a]&&(u=js(u)),this.buf.push(" ",i,'="',$s(u),'"')}else this.sanitizedSomething=!0}return this.buf.push(">"),!0},e.prototype.endElement=function(e){var t=e.nodeName.toLowerCase();zs.hasOwnProperty(t)&&!Ms.hasOwnProperty(t)&&(this.buf.push("</"),this.buf.push(t),this.buf.push(">"))},e.prototype.chars=function(e){this.buf.push($s(e))},e.prototype.checkClobberedElement=function(e,t){if(t&&(e.compareDocumentPosition(t)&Node.DOCUMENT_POSITION_CONTAINED_BY)===Node.DOCUMENT_POSITION_CONTAINED_BY)throw new Error("Failed to sanitize html because the element is clobbered: "+e.outerHTML);return t},e}(),Gs=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,Ys=/([^\#-~ |!])/g;function $s(e){return e.replace(/&/g,"&amp;").replace(Gs,function(e){return"&#"+(1024*(e.charCodeAt(0)-55296)+(e.charCodeAt(1)-56320)+65536)+";"}).replace(Ys,function(e){return"&#"+e.charCodeAt(0)+";"}).replace(/</g,"&lt;").replace(/>/g,"&gt;")}function Js(e,t){var n=null;try{Vs=Vs||new Ps(e);var r=t?String(t):"";n=Vs.getInertBodyElement(r);var o=5,i=r;do{if(0===o)throw new Error("Failed to sanitize html because the input is unstable");o--,r=i,i=n.innerHTML,n=Vs.getInertBodyElement(r)}while(r!==i);var a=new Ws,u=a.sanitizeChildren(Xs(n)||n);return Ts()&&a.sanitizedSomething&&console.warn("WARNING: sanitizing HTML stripped some content (see http://g.co/ng/security#xss)."),u}finally{if(n)for(var s=Xs(n)||n;s.firstChild;)s.removeChild(s.firstChild)}}function Xs(e){return"content"in e&&function t(e){return e.nodeType===Node.ELEMENT_NODE&&"TEMPLATE"===e.nodeName}
422
+ */((ol(i)||i).firstChild,a,t,n,r,o),a}!function(e){e[e.Zero=0]="Zero",e[e.One=1]="One",e[e.Two=2]="Two",e[e.Few=3]="Few",e[e.Many=4]="Many",e[e.Other=5]="Other"}(Dl||(Dl={}));var Bl=/�(\d+)�/,Ul={provide:es,useClass:Is,deps:[rs]},zl=function(t){function n(e,n){var r=t.call(this)||this;r._parent=n,r._bootstrapComponents=[],r.injector=r,r.destroyCbs=[];var o=_e(e);return r._bootstrapComponents=o.bootstrap,r._r3Injector=Ru(e,n,[{provide:rs,useValue:r},Ul]),r.instance=r.get(e),r}return o(n,t),n.prototype.get=function(t,n,r){return void 0===n&&(n=fu.THROW_IF_NOT_FOUND),void 0===r&&(r=e.InjectFlags.Default),t===fu||t===rs||t===lu?this:this._r3Injector.get(t,n,r)},Object.defineProperty(n.prototype,"componentFactoryResolver",{get:function(){return this.get(es)},enumerable:!0,configurable:!0}),n.prototype.destroy=function(){this.destroyCbs.forEach(function(e){return e()}),this.destroyCbs=null},n.prototype.onDestroy=function(e){this.destroyCbs.push(e)},n}(rs),Ql=function(e){function t(t){var n=e.call(this)||this;return n.moduleType=t,n}return o(t,e),t.prototype.create=function(e){return new zl(this.moduleType,e)},t}(os);
416
423
  /**
417
424
  * @license
418
425
  * Copyright Google Inc. All Rights Reserved.
419
426
  *
420
427
  * Use of this source code is governed by an MIT-style license that can be
421
428
  * found in the LICENSE file at https://angular.io/license
422
- */(e)?e.content:null}var el={marker:"element"},tl={marker:"comment"},nl="�",rl=/^\s*(�\d+�)\s*,\s*(select|plural)\s*,/,ol=/�\/?\*(\d+:\d+)�/gi,il=/�(\/?[#*]\d+):?\d*�/gi,al=/�(\d+):?\d*�/gi,ul=/({\s*�\d+�\s*,\s*\S{6}\s*,[\s\S]*})/gi,sl=/\[(�.+?�?)\]/g,ll=/({\s*)(VAR_(PLURAL|SELECT)(_\d+)?)(\s*,)/g,cl=/�I18N_EXP_(ICU(_\d+)?)�/g;function fl(e){if(!e)return[];var t,n=0,r=[],o=[],i=/[{}]/g;for(i.lastIndex=0;t=i.exec(e);){var a=t.index;if("}"==t[0]){if(r.pop(),0==r.length){var u=e.substring(n,a);rl.test(u)?o.push(dl(u)):u&&o.push(u),n=a+1}}else{if(0==r.length){var s=e.substring(n,a);o.push(s),n=a+1}r.push("{")}}var l=e.substring(n);return""!=l&&o.push(l),o}function dl(e){for(var t=[],n=[],r=1,o=0,i=fl(e=e.replace(rl,function(e,t,n){return r="select"===n?0:1,o=parseInt(t.substr(1),10),""})),a=0;a<i.length;){var u=i[a++].trim();1===r&&(u=u.replace(/\s*(?:=)?(\w+)\s*/,"$1")),u.length&&t.push(u);var s=fl(i[a++]);s.length&&n.push(s)}return function l(e,t,n){e<=t&&function r(e){throw new Error("ASSERTION ERROR: "+e)}(n)}(t.indexOf("other"),-1,'Missing key "other" in ICU statement.'),{type:r,mainBinding:o,cases:t,values:n}}function pl(e){for(var t,n,r="",o=0,i=!1;null!==(t=ol.exec(e));)i?t[0]===nl+"/*"+n+nl&&(o=t.index,i=!1):(r+=e.substring(o,t.index+t[0].length),n=t[1],i=!0);return r+e.substr(o)}function hl(e,t,n,r){void 0===r&&(r=null);for(var o=[null,null],i=e.split(al),a=0,u=0;u<i.length;u++){var s=i[u];if(1&u){var l=parseInt(s,10);o.push(-1-l),a|=ml(l)}else""!==s&&o.push(s)}return o.push(t<<2|(n?1:0)),n&&o.push(n,r),o[0]=a,o[1]=o.length-2,o}function vl(e,t){var n;void 0===t&&(t=0),t|=ml(e.mainBinding);for(var r=0;r<e.values.length;r++)for(var o=e.values[r],i=0;i<o.length;i++){var a=o[i];if("string"==typeof a)for(;n=al.exec(a);)t|=ml(parseInt(n[1],10));else t=vl(a,t)}return t}var gl=[],yl=-1;function ml(e){return 1<<Math.min(e,31)}var _l=[];function wl(e,t,n){var r=hn();r.firstTemplatePass&&null===r.data[e+rt]&&function o(e,t,n,r){gl[++yl]=t;var o=un(),i=e.blueprint.length-rt,a=ln(),u=dn()?ln():a&&a.parent,s=u&&u!==o[Ze]?u.index-rt:t,l=0;_l[l]=s;var c=[];t>0&&a!==u&&c.push(a.index<<3|0);for(var f=[],d=[],p=function h(e,t){if("number"!=typeof t)return pl(e);var n=e.indexOf(":"+t+nl)+2+t.toString().length,r=e.search(new RegExp(nl+"\\/\\*\\d+:"+t+nl));return pl(e.substring(n,r))}(n,r).split(il),v=0;v<p.length;v++){var g=p[v];if(1&v)if("/"===g.charAt(0)){if("#"===g.charAt(1)){var y=parseInt(g.substr(2),10);s=_l[--l],c.push(y<<3|5)}}else y=parseInt(g.substr(1),10),c.push(y<<3|0,s<<17|1),"#"===g.charAt(0)&&(_l[++l]=s=y);else for(var m=g.split(ul),_=0;_<m.length;_++)if(g=m[_],1&_){vi(o);var w=e.blueprint.length-1-rt;c.push(tl,"",s<<17|1);var b=dl(g.substr(1,g.length-2)),C=vl(b);Al(d,b,w,w);var x=d.length-1;f.push(ml(b.mainBinding),3,-1-b.mainBinding,w<<2|2,x,C,2,w<<2|3,x)}else if(""!==g){var I=g.match(al);vi(o),c.push(I?"":g,s<<17|1),I&&Xt(hl(g,e.blueprint.length-1-rt),f)}}e.data[t+rt]={vars:e.blueprint.length-rt-i,expandoStartIndex:i,create:c,update:f,icus:d.length?d:null}}(r,e,t,n)}function bl(e,t,n){var r=un();n||(n=t),n===t&&e!==t.child?(e.next=t.child,t.child=e):n!==t&&e!==n.next?(e.next=n.next,n.next=e):e.next=null,t!==r[Ze]&&(e.parent=t),lo(Et(e,r),e,r);var o=r[e.index];return 0!==e.type&&Rt(o)&&lo(o[_t],e,r),e}function Cl(e,t){var n={},r=e.replace(sl,function(e,t){if(n[t]||(n[t]=t.split("|")),!n[t].length)throw new Error("i18n postprocess: unmatched placeholder - "+t);return n[t].shift()});if(Object.keys(n).some(function(e){return!!n[e].length}))throw new Error("i18n postprocess: unmatched values - "+JSON.stringify(n));return Object.keys(t).length?r=(r=r.replace(ll,function(e,n,r,o,i,a){return t.hasOwnProperty(r)?""+n+t[r]+a:e})).replace(cl,function(e,n){if(t.hasOwnProperty(n)){var r=t[n];if(!r.length)throw new Error("i18n postprocess: unmatched ICU - "+e+" with key: "+n);return r.shift()}return e}):r}function xl(){var e=hn();e.firstTemplatePass&&function t(e){for(var t=un(),n=gl[yl--],r=e.data[n+rt],o=ln(),i=Il(n,r.create,r.expandoStartIndex,t),a=n+1;a<=o.index-rt;a++)-1===i.indexOf(a)&&kl(a,t)}(e)}function Il(e,t,n,r){for(var o=en(),i=null,a=null,u=[],s=0;s<t.length;s++){var l=t[s];if("string"==typeof l)a=i,i=pi(n++,3,Yr(l,o),null,null),pn(!1);else if("number"==typeof l)switch(7&l){case 1:var c=l>>>17,f=void 0;a=bl(i,f=c===e?r[Ze]:Ot(c,r),a),f.next=null;break;case 0:var d=l>>>3;u.push(d),a=i,(i=Ot(d,r))&&(cn(i),3===i.type&&pn(!0));break;case 5:a=i=Ot(l>>>3,r),cn(i),pn(!1);break;case 4:Fi(l>>>3,t[++s],t[++s]);break;default:throw new Error('Unable to determine the type of mutate operation for "'+l+'"')}else switch(l){case tl:var p=t[++s];a=i,(i=pi(n++,5,o.createComment(p),null,null)).activeCaseIndex=null,pn(!1);break;case el:var h=t[++s];a=i,i=pi(n++,3,o.createElement(h),h,null);break;default:throw new Error('Unable to determine the type of mutate operation for "'+l+'"')}}return pn(!1),u}function kl(e,t){var n=Ot(e,t);po(n,kt(e,t)||null,t),n.detached=!0;var r=La(e);if(Rt(r)){var o=r;0!==n.type&&po(n,o[_t]||null,t),o[wt]=null}}function El(e,t,n){wl(e,t,n),xl()}function Ol(e,t){var n=hn();n.firstTemplatePass&&null===n.data[e+rt]&&function r(e,t,n){for(var r=ln().index-rt,o=[],i=0;i<n.length;i+=2)for(var a=n[i],u=n[i+1].split(ul),s=0;s<u.length;s++){var l=u[s];1&s||""!==l&&(l.match(al)?Xt(hl(l,r,a),o):Fi(r,a,l))}e.data[t+rt]=o}(n,e,t)}var Tl,Pl=0,Nl=0;function Dl(e){e!==wo&&(Pl|=1<<Nl),Nl++}function Rl(e){if(Nl){var t=hn(),n=un(),r=t.data[e+rt],o=void 0,i=null;Array.isArray(r)?o=r:(o=r.update,i=r.icus),function e(t,n,r,o,i,a){void 0===a&&(a=!1);for(var u=!1,s=0;s<t.length;s++){var l=t[s],c=t[++s];if(a||l&o)for(var f="",d=s+1;d<=s+c;d++){var p=t[d];if("string"==typeof p)f+=p;else if("number"==typeof p)if(p<0)f+=Ct(i[r-p]);else{var h=p>>>2;switch(3&p){case 1:Fi(h,t[++d],f,t[++d]);break;case 0:Yi(h,f);break;case 2:var v=t[++d],g=n[v],y=Ot(h,i);if(null!==y.activeCaseIndex)for(var m=g.remove[y.activeCaseIndex],_=0;_<m.length;_++){var w=m[_];switch(7&w){case 3:kl(w>>>3,i);break;case 6:var b=Ot(m[_+1]>>>3,i).activeCaseIndex;null!==b&&Xt(n[w>>>3].remove[b],m)}}var C=jl(g,f);y.activeCaseIndex=-1!==C?C:null,Il(-1,g.create[C],g.expandoStartIndex,i),u=!0;break;case 3:g=n[v=t[++d]],y=Ot(h,i),e(g.update[y.activeCaseIndex],n,r,o,i,u)}}}s+=c}}(o,i,n[qe]-Nl-1,Pl,n),Pl=0,Nl=0}}function jl(e,t){var n=e.cases.indexOf(t);if(-1===n)switch(e.type){case 1:var r=function o(e,t){switch(function n(e,t){"string"==typeof t&&(t=parseInt(t,10));var n=t,r=n.toString().replace(/^[^.]*\.?/,""),o=Math.floor(Math.abs(n)),i=r.length,a=parseInt(r,10),u=parseInt(n.toString().replace(/^[^.]*\.?|0+$/g,""),10)||0;switch(e.split("-")[0].toLowerCase()){case"af":case"asa":case"az":case"bem":case"bez":case"bg":case"brx":case"ce":case"cgg":case"chr":case"ckb":case"ee":case"el":case"eo":case"es":case"eu":case"fo":case"fur":case"gsw":case"ha":case"haw":case"hu":case"jgo":case"jmc":case"ka":case"kk":case"kkj":case"kl":case"ks":case"ksb":case"ky":case"lb":case"lg":case"mas":case"mgo":case"ml":case"mn":case"nb":case"nd":case"ne":case"nn":case"nnh":case"nyn":case"om":case"or":case"os":case"ps":case"rm":case"rof":case"rwk":case"saq":case"seh":case"sn":case"so":case"sq":case"ta":case"te":case"teo":case"tk":case"tr":case"ug":case"uz":case"vo":case"vun":case"wae":case"xog":return 1===n?Tl.One:Tl.Other;case"ak":case"ln":case"mg":case"pa":case"ti":return n===Math.floor(n)&&n>=0&&n<=1?Tl.One:Tl.Other;case"am":case"as":case"bn":case"fa":case"gu":case"hi":case"kn":case"mr":case"zu":return 0===o||1===n?Tl.One:Tl.Other;case"ar":return 0===n?Tl.Zero:1===n?Tl.One:2===n?Tl.Two:n%100===Math.floor(n%100)&&n%100>=3&&n%100<=10?Tl.Few:n%100===Math.floor(n%100)&&n%100>=11&&n%100<=99?Tl.Many:Tl.Other;case"ast":case"ca":case"de":case"en":case"et":case"fi":case"fy":case"gl":case"it":case"nl":case"sv":case"sw":case"ur":case"yi":return 1===o&&0===i?Tl.One:Tl.Other;case"be":return n%10==1&&n%100!=11?Tl.One:n%10===Math.floor(n%10)&&n%10>=2&&n%10<=4&&!(n%100>=12&&n%100<=14)?Tl.Few:n%10==0||n%10===Math.floor(n%10)&&n%10>=5&&n%10<=9||n%100===Math.floor(n%100)&&n%100>=11&&n%100<=14?Tl.Many:Tl.Other;case"br":return n%10==1&&n%100!=11&&n%100!=71&&n%100!=91?Tl.One:n%10==2&&n%100!=12&&n%100!=72&&n%100!=92?Tl.Two:n%10===Math.floor(n%10)&&(n%10>=3&&n%10<=4||n%10==9)&&!(n%100>=10&&n%100<=19||n%100>=70&&n%100<=79||n%100>=90&&n%100<=99)?Tl.Few:0!==n&&n%1e6==0?Tl.Many:Tl.Other;case"bs":case"hr":case"sr":return 0===i&&o%10==1&&o%100!=11||a%10==1&&a%100!=11?Tl.One:0===i&&o%10===Math.floor(o%10)&&o%10>=2&&o%10<=4&&!(o%100>=12&&o%100<=14)||a%10===Math.floor(a%10)&&a%10>=2&&a%10<=4&&!(a%100>=12&&a%100<=14)?Tl.Few:Tl.Other;case"cs":case"sk":return 1===o&&0===i?Tl.One:o===Math.floor(o)&&o>=2&&o<=4&&0===i?Tl.Few:0!==i?Tl.Many:Tl.Other;case"cy":return 0===n?Tl.Zero:1===n?Tl.One:2===n?Tl.Two:3===n?Tl.Few:6===n?Tl.Many:Tl.Other;case"da":return 1===n||0!==u&&(0===o||1===o)?Tl.One:Tl.Other;case"dsb":case"hsb":return 0===i&&o%100==1||a%100==1?Tl.One:0===i&&o%100==2||a%100==2?Tl.Two:0===i&&o%100===Math.floor(o%100)&&o%100>=3&&o%100<=4||a%100===Math.floor(a%100)&&a%100>=3&&a%100<=4?Tl.Few:Tl.Other;case"ff":case"fr":case"hy":case"kab":return 0===o||1===o?Tl.One:Tl.Other;case"fil":return 0===i&&(1===o||2===o||3===o)||0===i&&o%10!=4&&o%10!=6&&o%10!=9||0!==i&&a%10!=4&&a%10!=6&&a%10!=9?Tl.One:Tl.Other;case"ga":return 1===n?Tl.One:2===n?Tl.Two:n===Math.floor(n)&&n>=3&&n<=6?Tl.Few:n===Math.floor(n)&&n>=7&&n<=10?Tl.Many:Tl.Other;case"gd":return 1===n||11===n?Tl.One:2===n||12===n?Tl.Two:n===Math.floor(n)&&(n>=3&&n<=10||n>=13&&n<=19)?Tl.Few:Tl.Other;case"gv":return 0===i&&o%10==1?Tl.One:0===i&&o%10==2?Tl.Two:0!==i||o%100!=0&&o%100!=20&&o%100!=40&&o%100!=60&&o%100!=80?0!==i?Tl.Many:Tl.Other:Tl.Few;case"he":return 1===o&&0===i?Tl.One:2===o&&0===i?Tl.Two:0!==i||n>=0&&n<=10||n%10!=0?Tl.Other:Tl.Many;case"is":return 0===u&&o%10==1&&o%100!=11||0!==u?Tl.One:Tl.Other;case"ksh":return 0===n?Tl.Zero:1===n?Tl.One:Tl.Other;case"kw":case"naq":case"se":case"smn":return 1===n?Tl.One:2===n?Tl.Two:Tl.Other;case"lag":return 0===n?Tl.Zero:0!==o&&1!==o||0===n?Tl.Other:Tl.One;case"lt":return n%10!=1||n%100>=11&&n%100<=19?n%10===Math.floor(n%10)&&n%10>=2&&n%10<=9&&!(n%100>=11&&n%100<=19)?Tl.Few:0!==a?Tl.Many:Tl.Other:Tl.One;case"lv":case"prg":return n%10==0||n%100===Math.floor(n%100)&&n%100>=11&&n%100<=19||2===i&&a%100===Math.floor(a%100)&&a%100>=11&&a%100<=19?Tl.Zero:n%10==1&&n%100!=11||2===i&&a%10==1&&a%100!=11||2!==i&&a%10==1?Tl.One:Tl.Other;case"mk":return 0===i&&o%10==1||a%10==1?Tl.One:Tl.Other;case"mt":return 1===n?Tl.One:0===n||n%100===Math.floor(n%100)&&n%100>=2&&n%100<=10?Tl.Few:n%100===Math.floor(n%100)&&n%100>=11&&n%100<=19?Tl.Many:Tl.Other;case"pl":return 1===o&&0===i?Tl.One:0===i&&o%10===Math.floor(o%10)&&o%10>=2&&o%10<=4&&!(o%100>=12&&o%100<=14)?Tl.Few:0===i&&1!==o&&o%10===Math.floor(o%10)&&o%10>=0&&o%10<=1||0===i&&o%10===Math.floor(o%10)&&o%10>=5&&o%10<=9||0===i&&o%100===Math.floor(o%100)&&o%100>=12&&o%100<=14?Tl.Many:Tl.Other;case"pt":return n===Math.floor(n)&&n>=0&&n<=2&&2!==n?Tl.One:Tl.Other;case"ro":return 1===o&&0===i?Tl.One:0!==i||0===n||1!==n&&n%100===Math.floor(n%100)&&n%100>=1&&n%100<=19?Tl.Few:Tl.Other;case"ru":case"uk":return 0===i&&o%10==1&&o%100!=11?Tl.One:0===i&&o%10===Math.floor(o%10)&&o%10>=2&&o%10<=4&&!(o%100>=12&&o%100<=14)?Tl.Few:0===i&&o%10==0||0===i&&o%10===Math.floor(o%10)&&o%10>=5&&o%10<=9||0===i&&o%100===Math.floor(o%100)&&o%100>=11&&o%100<=14?Tl.Many:Tl.Other;case"shi":return 0===o||1===n?Tl.One:n===Math.floor(n)&&n>=2&&n<=10?Tl.Few:Tl.Other;case"si":return 0===n||1===n||0===o&&1===a?Tl.One:Tl.Other;case"sl":return 0===i&&o%100==1?Tl.One:0===i&&o%100==2?Tl.Two:0===i&&o%100===Math.floor(o%100)&&o%100>=3&&o%100<=4||0!==i?Tl.Few:Tl.Other;case"tzm":return n===Math.floor(n)&&n>=0&&n<=1||n===Math.floor(n)&&n>=11&&n<=99?Tl.One:Tl.Other;default:return Tl.Other}}(t,e)){case Tl.Zero:return"zero";case Tl.One:return"one";case Tl.Two:return"two";case Tl.Few:return"few";case Tl.Many:return"many";default:return"other"}}(t,"en-US");-1===(n=e.cases.indexOf(r))&&"other"!==r&&(n=e.cases.indexOf("other"));break;case 0:n=e.cases.indexOf("other")}return n}function Al(e,t,n,r){for(var o=[],i=[],a=[],u=[],s=[],l=0;l<t.values.length;l++){for(var c=t.values[l],d=[],p=0;p<c.length;p++){var h=c[p];if("string"!=typeof h){var v=d.push(h)-1;c[p]="\x3c!--�"+v+"�--\x3e"}}var g=Sl(c.join(""),n,d,e,r);o.push(g.create),i.push(g.remove),a.push(g.update),u.push(g.vars),s.push(g.childIcus)}e.push({type:t.type,vars:u,expandoStartIndex:r+1,childIcus:s,cases:t.cases,create:o,remove:i,update:a});var y=un(),m=Math.max.apply(Math,f(u));for(l=0;l<m;l++)vi(y)}function Sl(e,t,n,r,o){var i=new Ps(document).getInertBodyElement(e);if(!i)throw new Error("Unable to generate inert body element");var a={vars:0,childIcus:[],create:[],remove:[],update:[]};return function e(t,n,r,o,i,a){if(t){for(var u=[];t;){var s=t.nextSibling,l=a+ ++n.vars;switch(t.nodeType){case Node.ELEMENT_NODE:var c=t,d=c.tagName.toLowerCase();if(zs.hasOwnProperty(d)){n.create.push(el,d,r<<17|1);for(var p=c.attributes,h=0;h<p.length;h++){var v=p.item(h),g=v.name.toLowerCase();v.value.match(al)?Ks.hasOwnProperty(g)&&Xt(Qs[g]?hl(v.value,l,v.name,Rs):Zs[g]?hl(v.value,l,v.name,js):hl(v.value,l,v.name),n.update):n.create.push(l<<3|4,v.name,v.value)}e(t.firstChild,n,l,o,i,a),n.remove.push(l<<3|3)}else n.vars--;break;case Node.TEXT_NODE:var y=t.textContent||"",m=y.match(al);n.create.push(m?"":y,r<<17|1),n.remove.push(l<<3|3),m&&Xt(hl(y,l),n.update);break;case Node.COMMENT_NODE:var _=Vl.exec(t.textContent||"");if(_){var w=parseInt(_[1],10);n.create.push(tl,"",r<<17|1),u.push([b=o[w],l])}else n.vars--;break;default:n.vars--}t=s}for(h=0;h<u.length;h++){var b,C=u[h][1];Al(i,b=u[h][0],C,a+n.vars);var x=i.length-1;n.vars+=Math.max.apply(Math,f(i[x].vars)),n.childIcus.push(x);var I=vl(b);n.update.push(ml(b.mainBinding),3,-1-b.mainBinding,C<<2|2,x,I,2,C<<2|3,x),n.remove.push(x<<3|6,C<<3|3)}}}
429
+ */
430
+ function Zl(e,t,n){var r=gn()+e,o=Xt();return un()?yr(o,r,n?t.call(n):t()):mr(o,r)}function ql(e,t,n,r){var o=Xt(),i=gn()+e;return _r(o,i,n)?yr(o,i+1,r?t.call(r,n):t(n)):mr(o,i+1)}function Kl(e,t,n,r,o){var i=gn()+e,a=Xt();return wr(a,i,n,r)?yr(a,i+2,o?t.call(o,n,r):t(n,r)):mr(a,i+2)}function Wl(e,t,n,r,o,i){var a=gn()+e,u=Xt();return br(u,a,n,r,o)?yr(u,a+3,i?t.call(i,n,r,o):t(n,r,o)):mr(u,a+3)}function Gl(e,t,n,r,o,i,a){var u=gn()+e,s=Xt();return Cr(s,u,n,r,o,i)?yr(s,u+4,a?t.call(a,n,r,o,i):t(n,r,o,i)):mr(s,u+4)}function Yl(e,t,n,r,o,i,a,u){var s=gn()+e,l=Xt(),c=Cr(l,s,n,r,o,i);return _r(l,s+4,a)||c?yr(l,s+5,u?t.call(u,n,r,o,i,a):t(n,r,o,i,a)):mr(l,s+5)}function $l(e,t,n,r,o,i,a,u,s){var l=gn()+e,c=Xt(),f=Cr(c,l,n,r,o,i);return wr(c,l+4,a,u)||f?yr(c,l+6,s?t.call(s,n,r,o,i,a,u):t(n,r,o,i,a,u)):mr(c,l+6)}function Jl(e,t,n,r,o,i,a,u,s,l){var c=gn()+e,f=Xt(),d=Cr(f,c,n,r,o,i);return br(f,c+4,a,u,s)||d?yr(f,c+7,l?t.call(l,n,r,o,i,a,u,s):t(n,r,o,i,a,u,s)):mr(f,c+7)}function Xl(e,t,n,r,o,i,a,u,s,l,c){var f=gn()+e,d=Xt(),p=Cr(d,f,n,r,o,i);return Cr(d,f+4,a,u,s,l)||p?yr(d,f+8,c?t.call(c,n,r,o,i,a,u,s,l):t(n,r,o,i,a,u,s,l)):mr(d,f+8)}function ec(e,t,n,r){for(var o=gn()+e,i=!1,a=Xt(),u=0;u<n.length;u++)_r(a,o++,n[u])&&(i=!0);return i?yr(a,o,t.apply(r,n)):mr(a,o)}
423
431
  /**
424
432
  * @license
425
433
  * Copyright Google Inc. All Rights Reserved.
426
434
  *
427
435
  * Use of this source code is governed by an MIT-style license that can be
428
436
  * found in the LICENSE file at https://angular.io/license
429
- */((Xs(i)||i).firstChild,a,t,n,r,o),a}!function(e){e[e.Zero=0]="Zero",e[e.One=1]="One",e[e.Two=2]="Two",e[e.Few=3]="Few",e[e.Many=4]="Many",e[e.Other=5]="Other"}(Tl||(Tl={}));var Vl=/�(\d+)�/,Ml={provide:rs,useFactory:function(){return new _s},deps:[]},Fl=function(e){function t(t,n){var r=e.call(this)||this;r._bootstrapComponents=[],r.destroyCbs=[];var o=ye(t);return r._bootstrapComponents=o.bootstrap,r.injector=Vu(t,n,[Ml,{provide:jr,useValue:r}]),r.instance=r.injector.get(t),r.componentFactoryResolver=new _s,r}return o(t,e),t.prototype.destroy=function(){this.destroyCbs.forEach(function(e){return e()}),this.destroyCbs=null},t.prototype.onDestroy=function(e){this.destroyCbs.push(e)},t}(jr),Hl=function(e){function t(t){var n=e.call(this)||this;return n.moduleType=t,n}return o(t,e),t.prototype.create=function(e){return new Fl(this.moduleType,e)},t}(Ar);
437
+ */function tc(e,t){var n,r=Xt()[be],o=e+He;r.firstTemplatePass?(n=function i(e,t){if(t)for(var n=t.length-1;n>=0;n--){var r=t[n];if(e===r.name)return r}throw new Error("The pipe '"+e+"' could not be found!")}(t,r.pipeRegistry),r.data[o]=n,n.onDestroy&&(r.pipeDestroyHooks||(r.pipeDestroyHooks=[])).push(o,n.onDestroy)):n=r.data[o];var a=n.factory(null);return Da(e,a),a}function nc(e,t,n){var r=Va(e);return sc(uc(e)?ql(t,r.transform,n,r):r.transform(n))}function rc(e,t,n,r){var o=Va(e);return sc(uc(e)?Kl(t,o.transform,n,r,o):o.transform(n,r))}function oc(e,t,n,r,o){var i=Va(e);return sc(uc(e)?Wl(t,i.transform,n,r,o,i):i.transform(n,r,o))}function ic(e,t,n,r,o,i){var a=Va(e);return sc(uc(e)?Gl(t,a.transform,n,r,o,i,a):a.transform(n,r,o,i))}function ac(e,t,n){var r=Va(e);return sc(uc(e)?ec(t,r.transform,n,r):r.transform.apply(r,n))}function uc(e){return Xt()[be].data[e+He].pure}function sc(e){return fr.isWrapped(e)&&(e=fr.unwrap(e),Xt()[gn()]=gr),e}
430
438
  /**
431
439
  * @license
432
440
  * Copyright Google Inc. All Rights Reserved.
433
441
  *
434
442
  * Use of this source code is governed by an MIT-style license that can be
435
443
  * found in the LICENSE file at https://angular.io/license
436
- */
437
- function Ll(e,t,n){var r=Pn()+e;return yn()?za(r,n?t.call(n):t()):Ba(r)}function Bl(e,t,n,r){var o=Pn()+e;return Ua(o,n)?za(o+1,r?t.call(r,n):t(n)):Ba(o+1)}function Ul(e,t,n,r,o){var i=Pn()+e;return Qa(i,n,r)?za(i+2,o?t.call(o,n,r):t(n,r)):Ba(i+2)}function zl(e,t,n,r,o,i){var a=Pn()+e;return Za(a,n,r,o)?za(a+3,i?t.call(i,n,r,o):t(n,r,o)):Ba(a+3)}function Ql(e,t,n,r,o,i,a){var u=Pn()+e;return qa(u,n,r,o,i)?za(u+4,a?t.call(a,n,r,o,i):t(n,r,o,i)):Ba(u+4)}function Zl(e,t,n,r,o,i,a,u){var s=Pn()+e,l=qa(s,n,r,o,i);return Ua(s+4,a)||l?za(s+5,u?t.call(u,n,r,o,i,a):t(n,r,o,i,a)):Ba(s+5)}function ql(e,t,n,r,o,i,a,u,s){var l=Pn()+e,c=qa(l,n,r,o,i);return Qa(l+4,a,u)||c?za(l+6,s?t.call(s,n,r,o,i,a,u):t(n,r,o,i,a,u)):Ba(l+6)}function Kl(e,t,n,r,o,i,a,u,s,l){var c=Pn()+e,f=qa(c,n,r,o,i);return Za(c+4,a,u,s)||f?za(c+7,l?t.call(l,n,r,o,i,a,u,s):t(n,r,o,i,a,u,s)):Ba(c+7)}function Wl(e,t,n,r,o,i,a,u,s,l,c){var f=Pn()+e,d=qa(f,n,r,o,i);return qa(f+4,a,u,s,l)||d?za(f+8,c?t.call(c,n,r,o,i,a,u,s,l):t(n,r,o,i,a,u,s,l)):Ba(f+8)}function Gl(e,t,n,r){for(var o=Pn()+e,i=!1,a=0;a<n.length;a++)Ua(o++,n[a])&&(i=!0);return i?za(o,t.apply(r,n)):Ba(o)}
444
+ */var lc=function(e){function n(t){void 0===t&&(t=!1);var n=e.call(this)||this;return n.__isAsync=t,n}return o(n,e),n.prototype.emit=function(t){e.prototype.next.call(this,t)},n.prototype.subscribe=function(n,r,o){var i,a=function(e){return null},u=function(){return null};n&&"object"==typeof n?(i=this.__isAsync?function(e){setTimeout(function(){return n.next(e)})}:function(e){n.next(e)},n.error&&(a=this.__isAsync?function(e){setTimeout(function(){return n.error(e)})}:function(e){n.error(e)}),n.complete&&(u=this.__isAsync?function(){setTimeout(function(){return n.complete()})}:function(){n.complete()})):(i=this.__isAsync?function(e){setTimeout(function(){return n(e)})}:function(e){n(e)},r&&(a=this.__isAsync?function(e){setTimeout(function(){return r(e)})}:function(e){r(e)}),o&&(u=this.__isAsync?function(){setTimeout(function(){return o()})}:function(){o()}));var s=e.prototype.subscribe.call(this,i,a,u);return n instanceof t.Subscription&&n.add(s),s},n}(t.Subject),cc=function(){function e(){}return e.__NG_ELEMENT_ID__=function(){return fc(e,fs)},e}(),fc=iu,dc=function(){function e(e,t,n){this.parent=e,this.shallow=t,this.deep=n}return e.prototype.track=function(e,t,n,r){n?this.deep=xc(this.deep,e,t,null!=r?r:null):this.shallow=xc(this.shallow,e,t,null!=r?r:null)},e.prototype.clone=function(){return new e(this,null,this.deep)},e.prototype.container=function(){var t=pc(this.shallow),n=pc(this.deep);return t||n?new e(this,t,n):null},e.prototype.createView=function(){var t=hc(this.shallow),n=hc(this.deep);return t||n?new e(this,t,n):null},e.prototype.insertView=function(e){vc(e,this.shallow),vc(e,this.deep)},e.prototype.addNode=function(e){return bc(this.deep,e),ot(e)?(bc(this.shallow,e),e.parent&&ot(e.parent)&&bc(this.parent.shallow,e),this.parent):(function t(e){return null===e.parent||ot(e.parent)}(e)&&bc(this.shallow,e),this)},e.prototype.removeView=function(){gc(this.shallow),gc(this.deep)},e}();
438
445
  /**
439
446
  * @license
440
447
  * Copyright Google Inc. All Rights Reserved.
441
448
  *
442
449
  * Use of this source code is governed by an MIT-style license that can be
443
450
  * found in the LICENSE file at https://angular.io/license
444
- */function Yl(e,t){var n,r=hn(),o=e+rt;r.firstTemplatePass?(n=function i(e,t){if(t)for(var n=0;n<t.length;n++){var r=t[n];if(e===r.name)return r}throw new Error("Pipe with name '"+e+"' not found!")}(t,r.pipeRegistry),r.data[o]=n,n.onDestroy&&(r.pipeDestroyHooks||(r.pipeDestroyHooks=[])).push(o,n.onDestroy)):n=r.data[o];var a=n.factory(null);return Ma(e,a),a}function $l(e,t,n){var r=La(e);return nc(e)?Bl(t,r.transform,n,r):r.transform(n)}function Jl(e,t,n,r){var o=La(e);return nc(e)?Ul(t,o.transform,n,r,o):o.transform(n,r)}function Xl(e,t,n,r,o){var i=La(e);return nc(e)?zl(t,i.transform,n,r,o,i):i.transform(n,r,o)}function ec(e,t,n,r,o,i){var a=La(e);return nc(e)?Ql(t,a.transform,n,r,o,i,a):a.transform(n,r,o,i)}function tc(e,t,n){var r=La(e);return nc(e)?Gl(t,r.transform,n,r):r.transform.apply(r,n)}function nc(e){return hn().data[e+rt].pure}
451
+ */function pc(e){for(var t=null;e;){var n=[];e.values.push(n),t={next:t,list:e.list,predicate:e.predicate,values:n,containerValues:null},e=e.next}return t}function hc(e){for(var t=null;e;)t={next:t,list:e.list,predicate:e.predicate,values:[],containerValues:e.values},e=e.next;return t}function vc(e,t){for(;t;)t.containerValues.splice(e,0,t.values),t=t.next}function gc(e){for(;e;){var t=e.containerValues,n=t.indexOf(e.values);t.splice(n,1)[0].length&&e.list.setDirty(),e=e.next}}function yc(e,t){var n=e.localNames;if(n)for(var r=0;r<n.length;r+=2)if(n[r]===t)return n[r+1];return null}function mc(e,t,n){var r=e[b];if("function"==typeof r)return r();var o=An(t,n,e,!1,!1);return null!==o?Sn(n[be].data,n,o,t):null}function _c(e,t,n,r){var o=e[b]();return r?o?mc(r,t,n):null:o}function wc(e,t,n,r){return n?mc(n,e,t):r>-1?Sn(t[be].data,t,r,e):function o(e,t){return 3===e.type||4===e.type?us(fs,e,t):0===e.type?ss(cc,fs,e,t):null}(e,t)}function bc(e,t){for(var n=Xt();e;){var r=e.predicate,o=r.type;if(o){var i=null;o===cc?i=_c(o,t,n,r.read):null!==(s=An(t,n,o,!1,!1))&&(i=wc(t,n,r.read,s)),null!==i&&Cc(e,i)}else for(var a=r.selector,u=0;u<a.length;u++){var s;null!==(s=yc(t,a[u]))&&null!==(i=wc(t,n,r.read,s))&&Cc(e,i)}e=e.next}}function Cc(e,t){e.values.push(t),e.list.setDirty()}function xc(e,t,n,r){return{next:e,list:t,predicate:function o(e,t){var n=Array.isArray(e);return{type:n?null:e,selector:n?e:null,read:t}}(n,r),values:t._valuesTree,containerValues:null}}var Ic=function(){function e(){this.dirty=!0,this.changes=new lc,this._values=[],this._valuesTree=[]}return Object.defineProperty(e.prototype,"length",{get:function(){return this._values.length},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"first",{get:function(){var e=this._values;return e.length?e[0]:null},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"last",{get:function(){var e=this._values;return e.length?e[e.length-1]:null},enumerable:!0,configurable:!0}),e.prototype.map=function(e){return this._values.map(e)},e.prototype.filter=function(e){return this._values.filter(e)},e.prototype.find=function(e){return this._values.find(e)},e.prototype.reduce=function(e,t){return this._values.reduce(e,t)},e.prototype.forEach=function(e){this._values.forEach(e)},e.prototype.some=function(e){return this._values.some(e)},e.prototype.toArray=function(){return this._values.slice(0)},e.prototype[W()]=function(){return this._values[W()]()},e.prototype.toString=function(){return this._values.toString()},e.prototype.reset=function(e){this._values=function t(e){for(var t=[],n=0;n<e.length;){var r=e[n];Array.isArray(r)?r.length>0?(e=r.concat(e.slice(n+1)),n=0):n++:(t.push(r),n++)}return t}(e),this.dirty=!1},e.prototype.notifyOnChanges=function(){this.changes.emit(this)},e.prototype.setDirty=function(){this.dirty=!0},e.prototype.destroy=function(){this.changes.complete(),this.changes.unsubscribe()},e}();function kc(e,t,n,r){var o=new Ic;return function i(e){var t=Xt(),n=t[ke];return qt&&qt!==t[Oe]&&!ot(qt)&&(n&&(n=t[ke]=n.clone()),qt.flags|=4),n||(t[ke]=new e(null,null,null))}(dc).track(o,t,n,r),function a(e,t,n){var r=za(e);r.push(t),e[be].firstTemplatePass&&Qa(e).push(n,r.length-1)}(Xt(),o,o.destroy),null!=e&&Da(e,o),o}function Ec(e){return!!e.dirty&&(e.reset(e._valuesTree),e.notifyOnChanges(),!0)}
445
452
  /**
446
453
  * @license
447
454
  * Copyright Google Inc. All Rights Reserved.
448
455
  *
449
456
  * Use of this source code is governed by an MIT-style license that can be
450
457
  * found in the LICENSE file at https://angular.io/license
451
- */var rc=function(e){function n(t){void 0===t&&(t=!1);var n=e.call(this)||this;return n.__isAsync=t,n}return o(n,e),n.prototype.emit=function(t){e.prototype.next.call(this,t)},n.prototype.subscribe=function(n,r,o){var i,a=function(e){return null},u=function(){return null};n&&"object"==typeof n?(i=this.__isAsync?function(e){setTimeout(function(){return n.next(e)})}:function(e){n.next(e)},n.error&&(a=this.__isAsync?function(e){setTimeout(function(){return n.error(e)})}:function(e){n.error(e)}),n.complete&&(u=this.__isAsync?function(){setTimeout(function(){return n.complete()})}:function(){n.complete()})):(i=this.__isAsync?function(e){setTimeout(function(){return n(e)})}:function(e){n(e)},r&&(a=this.__isAsync?function(e){setTimeout(function(){return r(e)})}:function(e){r(e)}),o&&(u=this.__isAsync?function(){setTimeout(function(){return o()})}:function(){o()}));var s=e.prototype.subscribe.call(this,i,a,u);return n instanceof t.Subscription&&n.add(s),s},n}(t.Subject),oc=function(){function e(){}return e.__NG_ELEMENT_ID__=function(){return ic(e,as)},e}(),ic=cr,ac=function(){function e(e,t,n){this.parent=e,this.shallow=t,this.deep=n}return e.prototype.track=function(e,t,n,r){n?this.deep=yc(this.deep,e,t,null!=r?r:null):this.shallow=yc(this.shallow,e,t,null!=r?r:null)},e.prototype.clone=function(){return new e(this,null,this.deep)},e.prototype.container=function(){var t=uc(this.shallow),n=uc(this.deep);return t||n?new e(this,t,n):null},e.prototype.createView=function(){var t=sc(this.shallow),n=sc(this.deep);return t||n?new e(this,t,n):null},e.prototype.insertView=function(e){lc(e,this.shallow),lc(e,this.deep)},e.prototype.addNode=function(e){return vc(this.deep,e),Pt(e)?(vc(this.shallow,e),e.parent&&Pt(e.parent)&&vc(this.parent.shallow,e),this.parent):(function t(e){return null===e.parent||Pt(e.parent)}(e)&&vc(this.shallow,e),this)},e.prototype.removeView=function(){cc(this.shallow),cc(this.deep)},e}();
458
+ */function Oc(e,t){return ss(cc,fs,e,t)}
452
459
  /**
453
460
  * @license
454
461
  * Copyright Google Inc. All Rights Reserved.
455
462
  *
456
463
  * Use of this source code is governed by an MIT-style license that can be
457
464
  * found in the LICENSE file at https://angular.io/license
458
- */function uc(e){for(var t=null;e;){var n=[];e.values.push(n),t={next:t,list:e.list,predicate:e.predicate,values:n,containerValues:null},e=e.next}return t}function sc(e){for(var t=null;e;)t={next:t,list:e.list,predicate:e.predicate,values:[],containerValues:e.values},e=e.next;return t}function lc(e,t){for(;t;)t.containerValues.splice(e,0,t.values),t=t.next}function cc(e){for(;e;){var t=e.containerValues,n=t.indexOf(e.values);t.splice(n,1)[0].length&&e.list.setDirty(),e=e.next}}function fc(e,t){var n=e.localNames;if(n)for(var r=0;r<n.length;r+=2)if(n[r]===t)return n[r+1];return null}function dc(e,t,n){var r=e[b];if("function"==typeof r)return r();var o=Kn(t,n,e,!1);return null!==o?Wn(n[He].data,n,o,t):null}function pc(e,t,n,r){var o=e[b]();return r?o?dc(r,t,n):null:o}function hc(e,t,n,r){return n?dc(n,e,t):r>-1?Wn(t[He].data,t,r,e):function o(e,t){return 3===e.type||4===e.type?ou(as,e,t):0===e.type?iu(oc,as,e,t):null}(e,t)}function vc(e,t){for(var n=mn();e;){var r=e.predicate,o=r.type;if(o){var i=null;o===oc?i=pc(o,t,n,r.read):null!==(s=Kn(t,n,o,!1))&&(i=hc(t,n,r.read,s)),null!==i&&gc(e,i)}else for(var a=r.selector,u=0;u<a.length;u++){var s;null!==(s=fc(t,a[u]))&&null!==(i=hc(t,n,r.read,s))&&gc(e,i)}e=e.next}}function gc(e,t){e.values.push(t),e.list.setDirty()}function yc(e,t,n,r){return{next:e,list:t,predicate:function o(e,t){var n=Array.isArray(e);return{type:n?null:e,selector:n?e:null,read:t}}(n,r),values:t._valuesTree,containerValues:null}}var mc=function(){function e(){this.dirty=!0,this.changes=new rc,this._values=[],this._valuesTree=[]}return Object.defineProperty(e.prototype,"length",{get:function(){return this._values.length},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"first",{get:function(){var e=this._values;return e.length?e[0]:null},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"last",{get:function(){var e=this._values;return e.length?e[e.length-1]:null},enumerable:!0,configurable:!0}),e.prototype.map=function(e){return this._values.map(e)},e.prototype.filter=function(e){return this._values.filter(e)},e.prototype.find=function(e){return this._values.find(e)},e.prototype.reduce=function(e,t){return this._values.reduce(e,t)},e.prototype.forEach=function(e){this._values.forEach(e)},e.prototype.some=function(e){return this._values.some(e)},e.prototype.toArray=function(){return this._values.slice(0)},e.prototype[J()]=function(){return this._values[J()]()},e.prototype.toString=function(){return this._values.toString()},e.prototype.reset=function(e){this._values=function t(e){for(var t=[],n=0;n<e.length;){var r=e[n];Array.isArray(r)?r.length>0?(e=r.concat(e.slice(n+1)),n=0):n++:(t.push(r),n++)}return t}(e),this.dirty=!1},e.prototype.notifyOnChanges=function(){this.changes.emit(this)},e.prototype.setDirty=function(){this.dirty=!0},e.prototype.destroy=function(){this.changes.complete(),this.changes.unsubscribe()},e}();function _c(e,t,n,r){var o=new mc;return function i(e){return qt&&qt!==$t[Ze]&&!Pt(qt)&&(Gt&&(Gt=Gt.clone()),qt.flags|=16384),Gt||(Gt=new e(null,null,null))}(ac).track(o,t,n,r),Si(null,o,o.destroy),null!=e&&Ma(e,o),o}function wc(e){return!!e.dirty&&(e.reset(e._valuesTree),e.notifyOnChanges(),!0)}
465
+ */
459
466
  /**
460
467
  * @license
461
468
  * Copyright Google Inc. All Rights Reserved.
462
469
  *
463
470
  * Use of this source code is governed by an MIT-style license that can be
464
471
  * found in the LICENSE file at https://angular.io/license
465
- */function bc(e,t){return iu(oc,as,e,t)}
472
+ */var Tc="__SANITIZER_TRUSTED_BRAND__";function Pc(e,t){return e instanceof String&&e[Tc]===t}function Nc(e,t){var n=new String(e);return n[Tc]=t,n}
466
473
  /**
467
474
  * @license
468
475
  * Copyright Google Inc. All Rights Reserved.
469
476
  *
470
477
  * Use of this source code is governed by an MIT-style license that can be
471
478
  * found in the LICENSE file at https://angular.io/license
472
- */
479
+ */var Rc=new RegExp("^([-,.\"'%_!# a-zA-Z0-9]+|(?:(?:matrix|translate|scale|rotate|skew|perspective)(?:X|Y|3d)?|(?:rgb|hsl)a?|(?:repeating-)?(?:linear|radial)-gradient|(?:calc|attr))\\([-0-9.%, #a-zA-Z]+\\))$","g"),jc=/^url\(([^)]+)\)$/;function Dc(e){if(!(e=String(e).trim()))return"";var t=e.match(jc);return t&&Ms(t[1])===t[1]||e.match(Rc)&&function n(e){for(var t=!0,n=!0,r=0;r<e.length;r++){var o=e.charAt(r);"'"===o&&n?t=!t:'"'===o&&t&&(n=!n)}return t&&n}(e)?e:(Ds()&&console.warn("WARNING: sanitizing unsafe style value "+e+" (see http://g.co/ng/security#xss)."),"unsafe")}
473
480
  /**
474
481
  * @license
475
482
  * Copyright Google Inc. All Rights Reserved.
476
483
  *
477
484
  * Use of this source code is governed by an MIT-style license that can be
478
485
  * found in the LICENSE file at https://angular.io/license
479
- */var Cc="__SANITIZER_TRUSTED_BRAND__";function xc(e,t){return e instanceof String&&e[Cc]===t}function Ic(e,t){var n=new String(e);return n[Cc]=t,n}
486
+ */function Ac(t){var n=Fc();return n?n.sanitize(e.SecurityContext.HTML,t)||"":Pc(t,"Html")?t.toString():rl(document,$e(t))}function Sc(t){var n=Fc();return n?n.sanitize(e.SecurityContext.STYLE,t)||"":Pc(t,"Style")?t.toString():Dc($e(t))}function Vc(t){var n=Fc();return n?n.sanitize(e.SecurityContext.URL,t)||"":Pc(t,"Url")?t.toString():Ms($e(t))}function Mc(t){var n=Fc();if(n)return n.sanitize(e.SecurityContext.RESOURCE_URL,t)||"";if(Pc(t,"ResourceUrl"))return t.toString();throw new Error("unsafe value used in a resource URL context (see http://g.co/ng/security#xss)")}function Fc(){var e=Xt();return e&&e[Ae]}
480
487
  /**
481
488
  * @license
482
489
  * Copyright Google Inc. All Rights Reserved.
483
490
  *
484
491
  * Use of this source code is governed by an MIT-style license that can be
485
492
  * found in the LICENSE file at https://angular.io/license
486
- */var kc=new RegExp("^([-,.\"'%_!# a-zA-Z0-9]+|(?:(?:matrix|translate|scale|rotate|skew|perspective)(?:X|Y|3d)?|(?:rgb|hsl)a?|(?:repeating-)?(?:linear|radial)-gradient|(?:calc|attr))\\([-0-9.%, #a-zA-Z]+\\))$","g"),Ec=/^url\(([^)]+)\)$/;function Oc(e){if(!(e=String(e).trim()))return"";var t=e.match(Ec);return t&&Rs(t[1])===t[1]||e.match(kc)&&function n(e){for(var t=!0,n=!0,r=0;r<e.length;r++){var o=e.charAt(r);"'"===o&&n?t=!t:'"'===o&&t&&(n=!n)}return t&&n}(e)?e:(Ts()&&console.warn("WARNING: sanitizing unsafe style value "+e+" (see http://g.co/ng/security#xss)."),"unsafe")}
493
+ */var Hc={"ɵdefineBase":pe,"ɵdefineComponent":se,"ɵdefineDirective":he,defineInjectable:C,defineInjector:x,"ɵdefineNgModule":fe,"ɵdefinePipe":ve,"ɵdirectiveInject":Ma,"ɵgetFactoryOf":Hn,"ɵgetInheritedFactory":Ln,inject:At,"ɵinjectAttribute":Fa,"ɵtemplateRefExtractor":Oc,"ɵNgOnChangesFeature":ru,"ɵProvidersFeature":Zu,"ɵInheritDefinitionFeature":eu,"ɵelementAttribute":ji,"ɵbind":Ca,"ɵcontainer":oa,"ɵnextContext":pi,"ɵcontainerRefreshStart":aa,"ɵcontainerRefreshEnd":ua,"ɵloadQueryList":Sa,"ɵnamespaceHTML":_i,"ɵnamespaceMathML":mi,"ɵnamespaceSVG":yi,"ɵenableBindings":$t,"ɵdisableBindings":Jt,"ɵallocHostVars":xa,"ɵelementStart":xi,"ɵelementEnd":Ri,"ɵelement":wi,"ɵelementContainerStart":bi,"ɵelementContainerEnd":Ci,"ɵpureFunction0":Zl,"ɵpureFunction1":ql,"ɵpureFunction2":Kl,"ɵpureFunction3":Wl,"ɵpureFunction4":Gl,"ɵpureFunction5":Yl,"ɵpureFunction6":$l,"ɵpureFunction7":Jl,"ɵpureFunction8":Xl,"ɵpureFunctionV":ec,"ɵgetCurrentView":Ua,"ɵrestoreView":en,"ɵinterpolation1":ka,"ɵinterpolation2":Ea,"ɵinterpolation3":Oa,"ɵinterpolation4":Ta,"ɵinterpolation5":Pa,"ɵinterpolation6":Na,"ɵinterpolation7":Ra,"ɵinterpolation8":ja,"ɵinterpolationV":Ia,"ɵelementClassProp":Qi,"ɵlistener":Ni,"ɵload":Va,"ɵprojection":da,"ɵelementProperty":Di,"ɵcomponentHostSyntheticProperty":Ai,"ɵpipeBind1":nc,"ɵpipeBind2":rc,"ɵpipeBind3":oc,"ɵpipeBind4":ic,"ɵpipeBindV":ac,"ɵprojectionDef":ca,"ɵpipe":tc,"ɵquery":kc,"ɵqueryRefresh":Ec,"ɵregisterContentQuery":Ha,"ɵreference":Aa,"ɵelementStyling":Li,"ɵelementHostAttrs":Bi,"ɵelementStylingMap":Zi,"ɵelementStyleProp":zi,"ɵelementStylingApply":Ui,"ɵtemplate":ra,"ɵtext":qi,"ɵtextBinding":Ki,"ɵembeddedViewStart":sa,"ɵembeddedViewEnd":la,"ɵi18n":Rl,"ɵi18nAttributes":jl,"ɵi18nExp":Vl,"ɵi18nStart":kl,"ɵi18nEnd":Tl,"ɵi18nApply":Ml,"ɵi18nPostprocess":Ol,"ɵsanitizeHtml":Ac,"ɵsanitizeStyle":Sc,"ɵdefaultStyleSanitizer":function(e,t){return void 0===t?"background-image"===e||"background"===e||"border-image"===e||"filter"===e||"filter"===e||"list-style"===e||"list-style-image"===e:Sc(t)},"ɵsanitizeResourceUrl":Mc,"ɵsanitizeScript":function Lc(t){var n=Fc();if(n)return n.sanitize(e.SecurityContext.SCRIPT,t)||"";if(Pc(t,"Script"))return t.toString();throw new Error("unsafe value used in a script context")},"ɵsanitizeUrl":Vc},Bc=function Bc(){},Uc=new Map;
487
494
  /**
488
495
  * @license
489
496
  * Copyright Google Inc. All Rights Reserved.
490
497
  *
491
498
  * Use of this source code is governed by an MIT-style license that can be
492
499
  * found in the LICENSE file at https://angular.io/license
493
- */function Tc(t){var n=nn();return n?n.sanitize(e.SecurityContext.HTML,t)||"":xc(t,"Html")?t.toString():Js(document,Ct(t))}function Pc(t){var n=nn();return n?n.sanitize(e.SecurityContext.STYLE,t)||"":xc(t,"Style")?t.toString():Oc(Ct(t))}function Nc(t){var n=nn();return n?n.sanitize(e.SecurityContext.URL,t)||"":xc(t,"Url")?t.toString():Rs(Ct(t))}function Dc(t){var n=nn();if(n)return n.sanitize(e.SecurityContext.RESOURCE_URL,t)||"";if(xc(t,"ResourceUrl"))return t.toString();throw new Error("unsafe value used in a resource URL context (see http://g.co/ng/security#xss)")}var Rc={"ɵdefineBase":ce,"ɵdefineComponent":ie,"ɵdefineDirective":de,defineInjectable:C,defineInjector:x,"ɵdefineNgModule":se,"ɵdefinePipe":pe,"ɵdirectiveInject":Ka,"ɵgetFactoryOf":Jn,"ɵgetInheritedFactory":Xn,inject:Ne,"ɵinjectAttribute":Wa,"ɵtemplateRefExtractor":bc,"ɵNgOnChangesFeature":Tu,"ɵProvidersFeature":Yu,"ɵInheritDefinitionFeature":ku,"ɵelementAttribute":Fi,"ɵbind":Oa,"ɵcontainer":sa,"ɵnextContext":yi,"ɵcontainerRefreshStart":ca,"ɵcontainerRefreshEnd":fa,"ɵloadQueryList":Ha,"ɵnamespaceHTML":xi,"ɵnamespaceMathML":Ci,"ɵnamespaceSVG":bi,"ɵenableBindings":rn,"ɵdisableBindings":on,"ɵelementStart":Oi,"ɵelementEnd":Mi,"ɵelement":Ii,"ɵelementContainerStart":ki,"ɵelementContainerEnd":Ei,"ɵpureFunction0":Ll,"ɵpureFunction1":Bl,"ɵpureFunction2":Ul,"ɵpureFunction3":zl,"ɵpureFunction4":Ql,"ɵpureFunction5":Zl,"ɵpureFunction6":ql,"ɵpureFunction7":Kl,"ɵpureFunction8":Wl,"ɵpureFunctionV":Gl,"ɵgetCurrentView":an,"ɵrestoreView":sn,"ɵinterpolation1":Pa,"ɵinterpolation2":Na,"ɵinterpolation3":Da,"ɵinterpolation4":Ra,"ɵinterpolation5":ja,"ɵinterpolation6":Aa,"ɵinterpolation7":Sa,"ɵinterpolation8":Va,"ɵinterpolationV":Ta,"ɵelementClassProp":zi,"ɵlistener":Ai,"ɵload":La,"ɵprojection":ma,"ɵelementProperty":Hi,"ɵpipeBind1":$l,"ɵpipeBind2":Jl,"ɵpipeBind3":Xl,"ɵpipeBind4":ec,"ɵpipeBindV":tc,"ɵprojectionDef":ga,"ɵpipe":Yl,"ɵquery":_c,"ɵqueryRefresh":wc,"ɵregisterContentQuery":Ga,"ɵreference":Fa,"ɵelementStyling":Qi,"ɵelementStylingMap":Ki,"ɵelementStyleProp":qi,"ɵelementStylingApply":Zi,"ɵtemplate":ua,"ɵtext":Gi,"ɵtextBinding":Yi,"ɵembeddedViewStart":da,"ɵembeddedViewEnd":pa,"ɵi18n":El,"ɵi18nAttributes":Ol,"ɵi18nExp":Dl,"ɵi18nStart":wl,"ɵi18nEnd":xl,"ɵi18nApply":Rl,"ɵi18nPostprocess":Cl,"ɵsanitizeHtml":Tc,"ɵsanitizeStyle":Pc,"ɵdefaultStyleSanitizer":function(e,t){return void 0===t?"background-image"===e||"background"===e||"border-image"===e||"filter"===e||"filter"===e||"list-style"===e||"list-style-image"===e:Pc(t)},"ɵsanitizeResourceUrl":Dc,"ɵsanitizeScript":function jc(t){var n=nn();if(n)return n.sanitize(e.SecurityContext.SCRIPT,t)||"";if(xc(t,"Script"))return t.toString();throw new Error("unsafe value used in a script context")},"ɵsanitizeUrl":Nc},Ac=Function;
500
+ */function zc(e,t){if(t)throw new Error("Duplicate module registered for "+e+" - "+$(t)+" vs "+$(t.name))}function Qc(e){var t=Uc.get(e);if(!t)throw qc(e);return t}var Zc=Qc;function qc(e){return new Error("No module with ID "+e+" loaded")}
494
501
  /**
495
502
  * @license
496
503
  * Copyright Google Inc. All Rights Reserved.
497
504
  *
498
505
  * Use of this source code is governed by an MIT-style license that can be
499
506
  * found in the LICENSE file at https://angular.io/license
500
- */function Sc(e){return"function"==typeof e}
507
+ */var Kc=Function;function Wc(e){return"function"==typeof e}
501
508
  /**
502
509
  * @license
503
510
  * Copyright Google Inc. All Rights Reserved.
504
511
  *
505
512
  * Use of this source code is governed by an MIT-style license that can be
506
513
  * found in the LICENSE file at https://angular.io/license
507
- */var Vc=/^function\s+\S+\(\)\s*{[\s\S]+\.apply\(this,\s*arguments\)/,Mc=/^class\s+[A-Za-z\d$_]*\s*extends\s+[^{]+{/,Fc=/^class\s+[A-Za-z\d$_]*\s*extends\s+[^{]+{[\s\S]*constructor\s*\(/,Hc=function(){function e(e){this._reflect=e||G.Reflect}return e.prototype.isReflectionEnabled=function(){return!0},e.prototype.factory=function(e){return function(){for(var t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];return new(e.bind.apply(e,f([void 0],t)))}},e.prototype._zipTypesAndAnnotations=function(e,t){var n;n=void 0===e?new Array(t.length):new Array(e.length);for(var r=0;r<n.length;r++)n[r]=void 0===e?[]:e[r]!=Object?[e[r]]:[],t&&null!=t[r]&&(n[r]=n[r].concat(t[r]));return n},e.prototype._ownParameters=function(e,t){var n=e.toString();if(Vc.exec(n)||Mc.exec(n)&&!Fc.exec(n))return null;if(e.parameters&&e.parameters!==t.parameters)return e.parameters;var r=e.ctorParameters;if(r&&r!==t.ctorParameters){var o="function"==typeof r?r():r,i=o.map(function(e){return e&&e.type}),a=o.map(function(e){return e&&Lc(e.decorators)});return this._zipTypesAndAnnotations(i,a)}var u=e.hasOwnProperty(T)&&e[T],s=this._reflect&&this._reflect.getOwnMetadata&&this._reflect.getOwnMetadata("design:paramtypes",e);return s||u?this._zipTypesAndAnnotations(s,u):new Array(e.length).fill(void 0)},e.prototype.parameters=function(e){if(!Sc(e))return[];var t=Bc(e),n=this._ownParameters(e,t);return n||t===Object||(n=this.parameters(t)),n||[]},e.prototype._ownAnnotations=function(e,t){if(e.annotations&&e.annotations!==t.annotations){var n=e.annotations;return"function"==typeof n&&n.annotations&&(n=n.annotations),n}return e.decorators&&e.decorators!==t.decorators?Lc(e.decorators):e.hasOwnProperty(O)?e[O]:null},e.prototype.annotations=function(e){if(!Sc(e))return[];var t=Bc(e),n=this._ownAnnotations(e,t)||[];return(t!==Object?this.annotations(t):[]).concat(n)},e.prototype._ownPropMetadata=function(e,t){if(e.propMetadata&&e.propMetadata!==t.propMetadata){var n=e.propMetadata;return"function"==typeof n&&n.propMetadata&&(n=n.propMetadata),n}if(e.propDecorators&&e.propDecorators!==t.propDecorators){var r=e.propDecorators,o={};return Object.keys(r).forEach(function(e){o[e]=Lc(r[e])}),o}return e.hasOwnProperty(P)?e[P]:null},e.prototype.propMetadata=function(e){if(!Sc(e))return{};var t=Bc(e),n={};if(t!==Object){var r=this.propMetadata(t);Object.keys(r).forEach(function(e){n[e]=r[e]})}var o=this._ownPropMetadata(e,t);return o&&Object.keys(o).forEach(function(e){var t=[];n.hasOwnProperty(e)&&t.push.apply(t,f(n[e])),t.push.apply(t,f(o[e])),n[e]=t}),n},e.prototype.hasLifecycleHook=function(e,t){return e instanceof Ac&&t in e.prototype},e.prototype.guards=function(e){return{}},e.prototype.getter=function(e){return new Function("o","return o."+e+";")},e.prototype.setter=function(e){return new Function("o","v","return o."+e+" = v;")},e.prototype.method=function(e){return new Function("o","args","if (!o."+e+") throw new Error('\""+e+"\" is undefined');\n return o."+e+".apply(o, args);")},e.prototype.importUri=function(e){return"object"==typeof e&&e.filePath?e.filePath:"./"+te(e)},e.prototype.resourceUri=function(e){return"./"+te(e)},e.prototype.resolveIdentifier=function(e,t,n,r){return r},e.prototype.resolveEnum=function(e,t){return e[t]},e}();function Lc(e){return e?e.map(function(e){var t=e.type.annotationCls;return new(t.bind.apply(t,f([void 0],e.args?e.args:[])))}):[]}function Bc(e){var t=e.prototype?Object.getPrototypeOf(e.prototype):null;return(t?t.constructor:null)||Object}
514
+ */var Gc=/^function\s+\S+\(\)\s*{[\s\S]+\.apply\(this,\s*arguments\)/,Yc=/^class\s+[A-Za-z\d$_]*\s*extends\s+[^{]+{/,$c=/^class\s+[A-Za-z\d$_]*\s*extends\s+[^{]+{[\s\S]*constructor\s*\(/,Jc=function(){function e(e){this._reflect=e||Z.Reflect}return e.prototype.isReflectionEnabled=function(){return!0},e.prototype.factory=function(e){return function(){for(var t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];return new(e.bind.apply(e,f([void 0],t)))}},e.prototype._zipTypesAndAnnotations=function(e,t){var n;n=void 0===e?new Array(t.length):new Array(e.length);for(var r=0;r<n.length;r++)n[r]=void 0===e?[]:e[r]!=Object?[e[r]]:[],t&&null!=t[r]&&(n[r]=n[r].concat(t[r]));return n},e.prototype._ownParameters=function(e,t){var n=e.toString();if(Gc.exec(n)||Yc.exec(n)&&!$c.exec(n))return null;if(e.parameters&&e.parameters!==t.parameters)return e.parameters;var r=e.ctorParameters;if(r&&r!==t.ctorParameters){var o="function"==typeof r?r():r,i=o.map(function(e){return e&&e.type}),a=o.map(function(e){return e&&Xc(e.decorators)});return this._zipTypesAndAnnotations(i,a)}var u=e.hasOwnProperty(T)&&e[T],s=this._reflect&&this._reflect.getOwnMetadata&&this._reflect.getOwnMetadata("design:paramtypes",e);return s||u?this._zipTypesAndAnnotations(s,u):new Array(e.length).fill(void 0)},e.prototype.parameters=function(e){if(!Wc(e))return[];var t=ef(e),n=this._ownParameters(e,t);return n||t===Object||(n=this.parameters(t)),n||[]},e.prototype._ownAnnotations=function(e,t){if(e.annotations&&e.annotations!==t.annotations){var n=e.annotations;return"function"==typeof n&&n.annotations&&(n=n.annotations),n}return e.decorators&&e.decorators!==t.decorators?Xc(e.decorators):e.hasOwnProperty(O)?e[O]:null},e.prototype.annotations=function(e){if(!Wc(e))return[];var t=ef(e),n=this._ownAnnotations(e,t)||[];return(t!==Object?this.annotations(t):[]).concat(n)},e.prototype._ownPropMetadata=function(e,t){if(e.propMetadata&&e.propMetadata!==t.propMetadata){var n=e.propMetadata;return"function"==typeof n&&n.propMetadata&&(n=n.propMetadata),n}if(e.propDecorators&&e.propDecorators!==t.propDecorators){var r=e.propDecorators,o={};return Object.keys(r).forEach(function(e){o[e]=Xc(r[e])}),o}return e.hasOwnProperty(P)?e[P]:null},e.prototype.propMetadata=function(e){if(!Wc(e))return{};var t=ef(e),n={};if(t!==Object){var r=this.propMetadata(t);Object.keys(r).forEach(function(e){n[e]=r[e]})}var o=this._ownPropMetadata(e,t);return o&&Object.keys(o).forEach(function(e){var t=[];n.hasOwnProperty(e)&&t.push.apply(t,f(n[e])),t.push.apply(t,f(o[e])),n[e]=t}),n},e.prototype.hasLifecycleHook=function(e,t){return e instanceof Kc&&t in e.prototype},e.prototype.guards=function(e){return{}},e.prototype.getter=function(e){return new Function("o","return o."+e+";")},e.prototype.setter=function(e){return new Function("o","v","return o."+e+" = v;")},e.prototype.method=function(e){return new Function("o","args","if (!o."+e+") throw new Error('\""+e+"\" is undefined');\n return o."+e+".apply(o, args);")},e.prototype.importUri=function(e){return"object"==typeof e&&e.filePath?e.filePath:"./"+$(e)},e.prototype.resourceUri=function(e){return"./"+$(e)},e.prototype.resolveIdentifier=function(e,t,n,r){return r},e.prototype.resolveEnum=function(e,t){return e[t]},e}();function Xc(e){return e?e.map(function(e){var t=e.type.annotationCls;return new(t.bind.apply(t,f([void 0],e.args?e.args:[])))}):[]}function ef(e){var t=e.prototype?Object.getPrototypeOf(e.prototype):null;return(t?t.constructor:null)||Object}
508
515
  /**
509
516
  * @license
510
517
  * Copyright Google Inc. All Rights Reserved.
511
518
  *
512
519
  * Use of this source code is governed by an MIT-style license that can be
513
520
  * found in the LICENSE file at https://angular.io/license
514
- */var Uc=null;function zc(){return Uc=Uc||new Hc}function Qc(e){return Zc(zc().parameters(e))}function Zc(e){var t=me();return e.map(function(e){return function n(e,t){var n={token:null,host:!1,optional:!1,resolved:e.R3ResolvedDependencyType.Token,self:!1,skipSelf:!1};function r(t){n.resolved=e.R3ResolvedDependencyType.Token,n.token=t}if(Array.isArray(t)){if(0===t.length)throw new Error("Dependency array must have arguments.");for(var o=0;o<t.length;o++){var i=t[o];if(void 0!==i)if(i instanceof be||"Optional"===i.__proto__.ngMetadataName)n.optional=!0;else if(i instanceof xe||"SkipSelf"===i.__proto__.ngMetadataName)n.skipSelf=!0;else if(i instanceof Ce||"Self"===i.__proto__.ngMetadataName)n.self=!0;else if(i instanceof Ie||"Host"===i.__proto__.ngMetadataName)n.host=!0;else if(i instanceof we)n.token=i.token;else if(i instanceof F){if(void 0===i.attributeName)throw new Error("Attribute name must be defined.");n.token=i.attributeName,n.resolved=e.R3ResolvedDependencyType.Attribute}else r(i)}}else r(t);return n}
521
+ */var tf=null;function nf(){return tf=tf||new Jc}function rf(e){return of(nf().parameters(e))}function of(e){var t=bt();return e.map(function(e){return function n(e,t){var n={token:null,host:!1,optional:!1,resolved:e.R3ResolvedDependencyType.Token,self:!1,skipSelf:!1};function r(t){n.resolved=e.R3ResolvedDependencyType.Token,n.token=t}if(Array.isArray(t)){if(0===t.length)throw new Error("Dependency array must have arguments.");for(var o=0;o<t.length;o++){var i=t[o];if(void 0!==i)if(i instanceof It||"Optional"===i.__proto__.ngMetadataName)n.optional=!0;else if(i instanceof Et||"SkipSelf"===i.__proto__.ngMetadataName)n.skipSelf=!0;else if(i instanceof kt||"Self"===i.__proto__.ngMetadataName)n.self=!0;else if(i instanceof Ot||"Host"===i.__proto__.ngMetadataName)n.host=!0;else if(i instanceof xt)n.token=i.token;else if(i instanceof F){if(void 0===i.attributeName)throw new Error("Attribute name must be defined.");n.token=i.attributeName,n.resolved=e.R3ResolvedDependencyType.Attribute}else r(i)}}else r(t);return n}
515
522
  /**
516
523
  * @license
517
524
  * Copyright Google Inc. All Rights Reserved.
518
525
  *
519
526
  * Use of this source code is governed by an MIT-style license that can be
520
527
  * found in the LICENSE file at https://angular.io/license
521
- */(t,e)})}var qc=[];function Kc(e,t){void 0===t&&(t={}),Wc(e,t),function n(e,t){var n=$c(t.declarations||qc),r=Yc(e);n.forEach(function(t){t.hasOwnProperty(h)?Gc(he(t),r):t.hasOwnProperty(v)||t.hasOwnProperty(m)||(t.ngSelectorScope=e)})}(e,t)}function Wc(e,t){var n=$c(t.declarations||qc),r=null;Object.defineProperty(e,_,{configurable:!0,get:function(){return null===r&&(r=me().compileNgModule(Rc,"ng://"+e.name+"/ngModuleDef.js",{type:e,bootstrap:$c(t.bootstrap||qc),declarations:n,imports:$c(t.imports||qc).map(Jc),exports:$c(t.exports||qc).map(Jc),emitInline:!0})),r}});var o=null;Object.defineProperty(e,y,{get:function(){if(null===o){var n={name:e.name,type:e,deps:Qc(e),providers:t.providers||qc,imports:[t.imports||qc,t.exports||qc]};o=me().compileInjector(Rc,"ng://"+e.name+"/ngInjectorDef.js",n)}return o},configurable:!1})}function Gc(e,t){e.directiveDefs=function(){return Array.from(t.compilation.directives).map(function(e){return ve(e)||he(e)}).filter(function(e){return!!e})},e.pipeDefs=function(){return Array.from(t.compilation.pipes).map(function(e){return ge(e)})}}function Yc(e){if(!Xc(e))throw new Error(e.name+" does not have an ngModuleDef");var t=ye(e);if(null!==t.transitiveCompileScopes)return t.transitiveCompileScopes;var n={compilation:{directives:new Set,pipes:new Set},exported:{directives:new Set,pipes:new Set}};return t.declarations.forEach(function(e){ge(e)?n.compilation.pipes.add(e):n.compilation.directives.add(e)}),t.imports.forEach(function(e){var t=e;if(!Xc(t))throw new Error("Importing "+t.name+" which does not have an ngModuleDef");var r=Yc(t);r.exported.directives.forEach(function(e){return n.compilation.directives.add(e)}),r.exported.pipes.forEach(function(e){return n.compilation.pipes.add(e)})}),t.exports.forEach(function(e){var t=e;if(Xc(t)){var r=Yc(t);r.exported.directives.forEach(function(e){n.compilation.directives.add(e),n.exported.directives.add(e)}),r.exported.pipes.forEach(function(e){n.compilation.pipes.add(e),n.exported.pipes.add(e)})}else ye(t)?n.exported.pipes.add(t):n.exported.directives.add(t)}),t.transitiveCompileScopes=n,n}function $c(e){var t=[];return e.forEach(function(e){Array.isArray(e)?t.push.apply(t,f($c(e))):t.push(e)}),t}function Jc(e){return function t(e){return void 0!==e.ngModule}(e)?e.ngModule:e}function Xc(e){return!!ye(e)}
528
+ */(t,e)})}var af=[],uf=[],sf=!1;function lf(e){return Array.isArray(e)?e.every(lf):!!ee(e)}function cf(e,t){void 0===t&&(t={}),ff(e,t),function n(e,t){uf.push({moduleType:e,ngModule:t})}(e,t)}function ff(e,t){var n=vf(t.declarations||af),r=null;Object.defineProperty(e,_,{configurable:!0,get:function(){return null===r&&(r=bt().compileNgModule(Hc,"ng://"+e.name+"/ngModuleDef.js",{type:e,bootstrap:vf(t.bootstrap||af,ee),declarations:n.map(ee),imports:vf(t.imports||af,ee).map(gf),exports:vf(t.exports||af,ee).map(gf),emitInline:!0})),r}}),t.id&&function o(e,t){zc(e,Uc.get(e)),Uc.set(e,t)}(t.id,e);var i=null;Object.defineProperty(e,y,{get:function(){if(null===i){var n={name:e.name,type:e,deps:rf(e),providers:t.providers||af,imports:[(t.imports||af).map(ee),(t.exports||af).map(ee)]};i=bt().compileInjector(Hc,"ng://"+e.name+"/ngInjectorDef.js",n)}return i},configurable:!1})}function df(e,t){var n=vf(t.declarations||af),r=hf(e);n.forEach(function(t){t.hasOwnProperty(h)?pf(ge(t),r):t.hasOwnProperty(v)||t.hasOwnProperty(m)||(t.ngSelectorScope=e)})}function pf(e,t){e.directiveDefs=function(){return Array.from(t.compilation.directives).map(function(e){return ye(e)||ge(e)}).filter(function(e){return!!e})},e.pipeDefs=function(){return Array.from(t.compilation.pipes).map(function(e){return me(e)})}}function hf(e){if(!yf(e))throw new Error(e.name+" does not have an ngModuleDef");var t=_e(e);if(null!==t.transitiveCompileScopes)return t.transitiveCompileScopes;var n={compilation:{directives:new Set,pipes:new Set},exported:{directives:new Set,pipes:new Set}};return t.declarations.forEach(function(e){me(e)?n.compilation.pipes.add(e):n.compilation.directives.add(e)}),t.imports.forEach(function(e){var t=e;if(!yf(t))throw new Error("Importing "+t.name+" which does not have an ngModuleDef");var r=hf(t);r.exported.directives.forEach(function(e){return n.compilation.directives.add(e)}),r.exported.pipes.forEach(function(e){return n.compilation.pipes.add(e)})}),t.exports.forEach(function(e){var t=e;if(yf(t)){var r=hf(t);r.exported.directives.forEach(function(e){n.compilation.directives.add(e),n.exported.directives.add(e)}),r.exported.pipes.forEach(function(e){n.compilation.pipes.add(e),n.exported.pipes.add(e)})}else me(t)?n.exported.pipes.add(t):n.exported.directives.add(t)}),t.transitiveCompileScopes=n,n}function vf(e,t){var n=[];return e.forEach(function(e){Array.isArray(e)?n.push.apply(n,f(vf(e,t))):n.push(t?t(e):e)}),n}function gf(e){return function t(e){return void 0!==e.ngModule}(e)?e.ngModule:e}function yf(e){return!!_e(e)}
522
529
  /**
523
530
  * @license
524
531
  * Copyright Google Inc. All Rights Reserved.
525
532
  *
526
533
  * Use of this source code is governed by an MIT-style license that can be
527
534
  * found in the LICENSE file at https://angular.io/license
528
- */function ef(t,n){var r=null;!function o(e){Z(e)&&Q.add(e)}(n),Object.defineProperty(t,h,{get:function(){var o=me();if(null===r){if(Z(n)){var a=["Component '"+te(t)+"' is not resolved:"];throw n.templateUrl&&a.push(" - templateUrl: "+te(n.templateUrl)),n.styleUrls&&n.styleUrls.length&&a.push(" - styleUrls: "+JSON.stringify(n.styleUrls)),a.push("Did you run and wait for 'resolveComponentResources()'?"),new Error(a.join("\n"))}var u=i({},nf(t,n),{template:n.template||"",preserveWhitespaces:n.preserveWhitespaces||!1,styles:n.styles||re,animations:n.animations,viewQueries:of(zc().propMetadata(t),uf),directives:new Map,pipes:new Map,encapsulation:n.encapsulation||e.ViewEncapsulation.Emulated,viewProviders:n.viewProviders||null});if(r=o.compileComponent(Rc,"ng://"+te(t)+"/template.html",u),function s(e){return void 0!==e.ngSelectorScope}(t)){var l=Yc(t.ngSelectorScope);Gc(r,l)}}return r},configurable:!1})}function tf(e,t){var n=null;Object.defineProperty(e,v,{get:function(){if(null===n){var r=nf(e,t);n=me().compileDirective(Rc,"ng://"+(e&&e.name)+"/ngDirectiveDef.js",r)}return n},configurable:!1})}function nf(e,t){var n=zc().propMetadata(e);return{name:e.name,type:e,typeArgumentCount:0,selector:t.selector,deps:Qc(e),host:t.host||rf,propMetadata:n,inputs:t.inputs||re,outputs:t.outputs||re,queries:of(n,af),lifecycle:{usesOnChanges:void 0!==e.prototype.ngOnChanges},typeSourceSpan:null,usesInheritance:!function r(e){return Object.getPrototypeOf(e.prototype)===Object.prototype}(e),exportAs:t.exportAs||null,providers:t.providers||null}}var rf={};function of(e,t){var n=[],r=function(r){e.hasOwnProperty(r)&&e[r].forEach(function(e){t(e)&&n.push(function o(e,t){return{propertyName:e,predicate:function n(e){return"string"==typeof e?function t(e){return e.split(",").map(function(e){return e.trim()})}
535
+ */function mf(t,n){var r=null;!function o(e){re(e)&&ne.add(e)}(n),Object.defineProperty(t,h,{get:function(){var o=bt();if(null===r){if(re(n)){var a=["Component '"+$e(t)+"' is not resolved:"];throw n.templateUrl&&a.push(" - templateUrl: "+$e(n.templateUrl)),n.styleUrls&&n.styleUrls.length&&a.push(" - styleUrls: "+JSON.stringify(n.styleUrls)),a.push("Did you run and wait for 'resolveComponentResources()'?"),new Error(a.join("\n"))}var u=i({},wf(t,n),{template:n.template||"",preserveWhitespaces:n.preserveWhitespaces||!1,styles:n.styles||ae,animations:n.animations,viewQueries:bf(t,nf().propMetadata(t),xf),directives:[],changeDetection:n.changeDetection,pipes:new Map,encapsulation:n.encapsulation||e.ViewEncapsulation.Emulated,interpolation:n.interpolation,viewProviders:n.viewProviders||null});if(r=o.compileComponent(Hc,"ng://"+$e(t)+"/template.html",u),function s(){if(!sf){sf=!0;try{for(var e=uf.length-1;e>=0;e--){var t=uf[e],n=t.moduleType,r=t.ngModule;r.declarations&&r.declarations.every(lf)&&(uf.splice(e,1),df(n,r))}}finally{sf=!1}}}(),function l(e){return void 0!==e.ngSelectorScope}(t)){var c=hf(t.ngSelectorScope);pf(r,c)}}return r},configurable:!1})}function _f(e,t){var n=null;Object.defineProperty(e,v,{get:function(){if(null===n){var r=wf(e,t);n=bt().compileDirective(Hc,"ng://"+(e&&e.name)+"/ngDirectiveDef.js",r)}return n},configurable:!1})}function wf(e,t){var n=nf().propMetadata(e);return{name:e.name,type:e,typeArgumentCount:0,selector:t.selector,deps:rf(e),host:t.host||ie,propMetadata:n,inputs:t.inputs||ae,outputs:t.outputs||ae,queries:bf(e,n,Cf),lifecycle:{usesOnChanges:void 0!==e.prototype.ngOnChanges},typeSourceSpan:null,usesInheritance:!function r(e){return Object.getPrototypeOf(e.prototype)===Object.prototype}(e),exportAs:t.exportAs||null,providers:t.providers||null}}function bf(e,t,n){var r=[],o=function(o){t.hasOwnProperty(o)&&t[o].forEach(function(t){if(n(t)){if(!t.selector)throw new Error("Can't construct a query for the property \""+o+'" of "'+$e(e)+"\" since the query selector wasn't defined.");r.push(function i(e,t){return{propertyName:e,predicate:function n(e){return"string"==typeof e?function t(e){return e.split(",").map(function(e){return e.trim()})}
529
536
  /**
530
537
  * @license
531
538
  * Copyright Google Inc. All Rights Reserved.
532
539
  *
533
540
  * Use of this source code is governed by an MIT-style license that can be
534
541
  * found in the LICENSE file at https://angular.io/license
535
- */(e):e}(t.selector),descendants:t.descendants,first:t.first,read:t.read?t.read:null}}(r,e))})};for(var o in e)r(o);return n}function af(e){var t=e.ngMetadataName;return"ContentChild"===t||"ContentChildren"===t}function uf(e){var t=e.ngMetadataName;return"ViewChild"===t||"ViewChildren"===t}function sf(e,t){var n=null;Object.defineProperty(e,m,{get:function(){return null===n&&(n=me().compilePipe(Rc,"ng://"+Ct(e)+"/ngPipeDef.js",{type:e,name:e.name,deps:Qc(e),pipeName:t.name,pure:void 0===t.pure||t.pure})),n},configurable:!1})}
542
+ */(e):ee(e)}(t.selector),descendants:t.descendants,first:t.first,read:t.read?t.read:null}}(o,t))}})};for(var i in t)o(i);return r}function Cf(e){var t=e.ngMetadataName;return"ContentChild"===t||"ContentChildren"===t}function xf(e){var t=e.ngMetadataName;return"ViewChild"===t||"ViewChildren"===t}function If(e,t){var n=null;Object.defineProperty(e,m,{get:function(){return null===n&&(n=bt().compilePipe(Hc,"ng://"+$e(e)+"/ngPipeDef.js",{type:e,name:e.name,deps:rf(e),pipeName:t.name,pure:void 0===t.pure||t.pure})),n},configurable:!1})}
536
543
  /**
537
544
  * @license
538
545
  * Copyright Google Inc. All Rights Reserved.
539
546
  *
540
547
  * Use of this source code is governed by an MIT-style license that can be
541
548
  * found in the LICENSE file at https://angular.io/license
542
- */var lf=N("Directive",function(e){return void 0===e&&(e={}),e},void 0,void 0,function(e,t){return bf(e,t)}),cf=N("Component",function(t){return void 0===t&&(t={}),i({changeDetection:e.ChangeDetectionStrategy.Default},t)},lf,void 0,function(e,t){return wf(e,t)}),ff=N("Pipe",function(e){return i({pure:!0},e)},void 0,void 0,function(e,t){return Cf(e,t)}),df=function(e){return function(t,n){for(var r=[],o=2;o<arguments.length;o++)r[o-2]=arguments[o];var i=t.constructor;i.hasOwnProperty(w)||function(e){var t=e.constructor,n=t.ngBaseDef,r=t.ngBaseDef={inputs:{},outputs:{},declaredInputs:{}};n&&(p(r.inputs,n.inputs),p(r.outputs,n.outputs),p(r.declaredInputs,n.declaredInputs))}(t),e(i.ngBaseDef)[n]=r[0]}},pf=j("Input",function(e){return{bindingPropertyName:e}},void 0,df(function(e){return e.inputs||{}})),hf=j("Output",function(e){return{bindingPropertyName:e}},void 0,df(function(e){return e.outputs||{}})),vf=j("HostBinding",function(e){return{hostPropertyName:e}}),gf=j("HostListener",function(e,t){return{eventName:e,args:t}}),yf=ef,mf=tf,_f=sf,wf=cr,bf=cr,Cf=cr,xf=d({provide:String,useValue:d}),If=[];function kf(e,t){if(!t){var n=(s=new Hc).parameters(e);return function(){return new(e.bind.apply(e,f([void 0],Re(n))))}}if(xf in t){var r=t;return function(){return r.useValue}}if(t.useExisting){var o=t;return function(){return Ne(o.useExisting)}}if(t.useFactory){var i=t;return function(){return i.useFactory.apply(i,f(Re(i.deps||If)))}}if(t.useClass){var a=t,u=t.deps;if(!u){var s=new Hc;u=s.parameters(e)}return function(){var e;return new((e=a.useClass).bind.apply(e,f([void 0],Re(u))))}}var l=t.deps;return l||(s=new Hc,l=s.parameters(e)),function(){return new(e.bind.apply(e,f([void 0],Re(l))))}}
549
+ */new Map,new Map;var kf=N("Directive",function(e){return void 0===e&&(e={}),e},void 0,void 0,function(e,t){return Mf(e,t)}),Ef=N("Component",function(t){return void 0===t&&(t={}),i({changeDetection:e.ChangeDetectionStrategy.Default},t)},kf,void 0,function(e,t){return Vf(e,t)}),Of=N("Pipe",function(e){return i({pure:!0},e)},void 0,void 0,function(e,t){return Ff(e,t)}),Tf=function(e){return function(t,n){for(var r=[],o=2;o<arguments.length;o++)r[o-2]=arguments[o];var i=t.constructor;i.hasOwnProperty(w)||function(e){var t=e.constructor,n=t.ngBaseDef,r=t.ngBaseDef={inputs:{},outputs:{},declaredInputs:{}};n&&(p(r.inputs,n.inputs),p(r.outputs,n.outputs),p(r.declaredInputs,n.declaredInputs))}(t),e(i.ngBaseDef)[n]=r[0]}},Pf=D("Input",function(e){return{bindingPropertyName:e}},void 0,Tf(function(e){return e.inputs||{}})),Nf=D("Output",function(e){return{bindingPropertyName:e}},void 0,Tf(function(e){return e.outputs||{}})),Rf=D("HostBinding",function(e){return{hostPropertyName:e}}),jf=D("HostListener",function(e,t){return{eventName:e,args:t}}),Df=mf,Af=_f,Sf=If,Vf=iu,Mf=iu,Ff=iu,Hf=d({provide:String,useValue:d}),Lf=[];function Bf(e,t){if(!t){var n=(s=new Jc).parameters(e);return function(){return new(e.bind.apply(e,f([void 0],Vt(n))))}}if(Hf in t){var r=t;return function(){return r.useValue}}if(t.useExisting){var o=t;return function(){return At(o.useExisting)}}if(t.useFactory){var i=t;return function(){return i.useFactory.apply(i,f(Vt(i.deps||Lf)))}}if(t.useClass){var a=t,u=t.deps;if(!u){var s=new Jc;u=s.parameters(e)}return function(){var e;return new((e=a.useClass).bind.apply(e,f([void 0],Vt(u))))}}var l=t.deps;return l||(s=new Jc,l=s.parameters(e)),function(){return new(e.bind.apply(e,f([void 0],Vt(l))))}}
543
550
  /**
544
551
  * @license
545
552
  * Copyright Google Inc. All Rights Reserved.
546
553
  *
547
554
  * Use of this source code is governed by an MIT-style license that can be
548
555
  * found in the LICENSE file at https://angular.io/license
549
- */var Ef=N("NgModule",function(e){return e},void 0,void 0,function(e,t){return Tf(e,t)}),Of=Kc,Tf=function Pf(e,t){var n=t&&t.imports||[];t&&t.exports&&(n=f(n,[t.exports])),e.ngInjectorDef=x({factory:kf(e,{useClass:e}),providers:t&&t.providers,imports:n})},Nf=d({provide:String,useValue:d});function Df(e){return void 0!==e.useClass}function Rf(e){return Nf in e}function jf(e){return void 0!==e.useFactory}function Af(e){return void 0!==e.useExisting}
556
+ */var Uf=N("NgModule",function(e){return e},void 0,void 0,function(e,t){return Qf(e,t)}),zf=cf,Qf=function Zf(e,t){var n=t&&t.imports||[];t&&t.exports&&(n=f(n,[t.exports])),e.ngInjectorDef=x({factory:Bf(e,{useClass:e}),providers:t&&t.providers,imports:n})},qf=d({provide:String,useValue:d});function Kf(e){return void 0!==e.useClass}function Wf(e){return qf in e}function Gf(e){return void 0!==e.useFactory}function Yf(e){return void 0!==e.useExisting}
550
557
  /**
551
558
  * @license
552
559
  * Copyright Google Inc. All Rights Reserved.
553
560
  *
554
561
  * Use of this source code is governed by an MIT-style license that can be
555
562
  * found in the LICENSE file at https://angular.io/license
556
- */var Sf=N("Injectable",void 0,void 0,void 0,function(e,t){return Vf(e,t)}),Vf=function Mf(e,t){t&&void 0!==t.providedIn&&!I(e)&&(e.ngInjectableDef=C({providedIn:t.providedIn,factory:kf(e,t)}))},Ff="ngDebugContext",Hf="ngOriginalError",Lf="ngErrorLogger";function Bf(e){return e[Ff]}function Uf(e){return e[Hf]}function zf(e){for(var t=[],n=1;n<arguments.length;n++)t[n-1]=arguments[n];e.error.apply(e,f(t))}
563
+ */var $f=N("Injectable",void 0,void 0,void 0,function(e,t){return Jf(e,t)}),Jf=function Xf(e,t){t&&void 0!==t.providedIn&&!I(e)&&(e.ngInjectableDef=C({providedIn:t.providedIn,factory:Bf(e,t)}))},ed="ngDebugContext",td="ngOriginalError",nd="ngErrorLogger";function rd(e){return e[ed]}function od(e){return e[td]}function id(e){for(var t=[],n=1;n<arguments.length;n++)t[n-1]=arguments[n];e.error.apply(e,f(t))}
557
564
  /**
558
565
  * @license
559
566
  * Copyright Google Inc. All Rights Reserved.
560
567
  *
561
568
  * Use of this source code is governed by an MIT-style license that can be
562
569
  * found in the LICENSE file at https://angular.io/license
563
- */var Qf=function(){function e(){this._console=console}return e.prototype.handleError=function(e){var t=this._findOriginalError(e),n=this._findContext(e),r=function o(e){return e[Lf]||zf}(e);r(this._console,"ERROR",e),t&&r(this._console,"ORIGINAL ERROR",t),n&&r(this._console,"ERROR CONTEXT",n)},e.prototype._findContext=function(e){return e?Bf(e)?Bf(e):this._findContext(Uf(e)):null},e.prototype._findOriginalError=function(e){for(var t=Uf(e);t&&Uf(t);)t=Uf(t);return t},e}();function Zf(e){return e.length>1?" ("+
570
+ */var ad=function(){function e(){this._console=console}return e.prototype.handleError=function(e){var t=this._findOriginalError(e),n=this._findContext(e),r=function o(e){return e[nd]||id}(e);r(this._console,"ERROR",e),t&&r(this._console,"ORIGINAL ERROR",t),n&&r(this._console,"ERROR CONTEXT",n)},e.prototype._findContext=function(e){return e?rd(e)?rd(e):this._findContext(od(e)):null},e.prototype._findOriginalError=function(e){for(var t=od(e);t&&od(t);)t=od(t);return t},e}();function ud(e){return e.length>1?" ("+
564
571
  /**
565
572
  * @license
566
573
  * Copyright Google Inc. All Rights Reserved.
@@ -568,7 +575,7 @@ function Ll(e,t,n){var r=Pn()+e;return yn()?za(r,n?t.call(n):t()):Ba(r)}function
568
575
  * Use of this source code is governed by an MIT-style license that can be
569
576
  * found in the LICENSE file at https://angular.io/license
570
577
  */
571
- function t(e){for(var t=[],n=0;n<e.length;++n){if(t.indexOf(e[n])>-1)return t.push(e[n]),t;t.push(e[n])}return t}(e.slice().reverse()).map(function(e){return te(e.token)}).join(" -> ")+")":""}function qf(e,t,n,r){var o=[t],i=n(o),a=r?function u(e,t){var n=e+" caused by: "+(t instanceof Error?t.message:t),r=Error(n);return r[Hf]=t,r}(i,r):Error(i);return a.addKey=Kf,a.keys=o,a.injectors=[e],a.constructResolvingMessage=n,a[Hf]=r,a}function Kf(e,t){this.injectors.push(e),this.keys.push(t),this.message=this.constructResolvingMessage(this.keys)}function Wf(e,t){for(var n=[],r=0,o=t.length;r<o;r++){var i=t[r];n.push(i&&0!=i.length?i.map(te).join(" "):"?")}return Error("Cannot resolve all parameters for '"+te(e)+"'("+n.join(", ")+"). Make sure that all the parameters are decorated with Inject or have valid type annotations and that '"+te(e)+"' is decorated with Injectable.")}
578
+ function t(e){for(var t=[],n=0;n<e.length;++n){if(t.indexOf(e[n])>-1)return t.push(e[n]),t;t.push(e[n])}return t}(e.slice().reverse()).map(function(e){return $(e.token)}).join(" -> ")+")":""}function sd(e,t,n,r){var o=[t],i=n(o),a=r?function u(e,t){var n=e+" caused by: "+(t instanceof Error?t.message:t),r=Error(n);return r[td]=t,r}(i,r):Error(i);return a.addKey=ld,a.keys=o,a.injectors=[e],a.constructResolvingMessage=n,a[td]=r,a}function ld(e,t){this.injectors.push(e),this.keys.push(t),this.message=this.constructResolvingMessage(this.keys)}function cd(e,t){for(var n=[],r=0,o=t.length;r<o;r++){var i=t[r];n.push(i&&0!=i.length?i.map($).join(" "):"?")}return Error("Cannot resolve all parameters for '"+$(e)+"'("+n.join(", ")+"). Make sure that all the parameters are decorated with Inject or have valid type annotations and that '"+$(e)+"' is decorated with Injectable.")}
572
579
  /**
573
580
  * @license
574
581
  * Copyright Google Inc. All Rights Reserved.
@@ -576,14 +583,14 @@ function t(e){for(var t=[],n=0;n<e.length;++n){if(t.indexOf(e[n])>-1)return t.pu
576
583
  * Use of this source code is governed by an MIT-style license that can be
577
584
  * found in the LICENSE file at https://angular.io/license
578
585
  */
579
- var Gf=function(){function e(e,t){if(this.token=e,this.id=t,!e)throw new Error("Token must be defined!");this.displayName=te(this.token)}return e.get=function(e){return Yf.get(pr(e))},Object.defineProperty(e,"numberOfKeys",{get:function(){return Yf.numberOfKeys},enumerable:!0,configurable:!0}),e}(),Yf=new(function(){function e(){this._allKeys=new Map}return e.prototype.get=function(e){if(e instanceof Gf)return e;if(this._allKeys.has(e))return this._allKeys.get(e);var t=new Gf(e,Gf.numberOfKeys);return this._allKeys.set(e,t),t},Object.defineProperty(e.prototype,"numberOfKeys",{get:function(){return this._allKeys.size},enumerable:!0,configurable:!0}),e}()),$f=new(function(){function e(e){this.reflectionCapabilities=e}return e.prototype.updateCapabilities=function(e){this.reflectionCapabilities=e},e.prototype.factory=function(e){return this.reflectionCapabilities.factory(e)},e.prototype.parameters=function(e){return this.reflectionCapabilities.parameters(e)},e.prototype.annotations=function(e){return this.reflectionCapabilities.annotations(e)},e.prototype.propMetadata=function(e){return this.reflectionCapabilities.propMetadata(e)},e.prototype.hasLifecycleHook=function(e,t){return this.reflectionCapabilities.hasLifecycleHook(e,t)},e.prototype.getter=function(e){return this.reflectionCapabilities.getter(e)},e.prototype.setter=function(e){return this.reflectionCapabilities.setter(e)},e.prototype.method=function(e){return this.reflectionCapabilities.method(e)},e.prototype.importUri=function(e){return this.reflectionCapabilities.importUri(e)},e.prototype.resourceUri=function(e){return this.reflectionCapabilities.resourceUri(e)},e.prototype.resolveIdentifier=function(e,t,n,r){return this.reflectionCapabilities.resolveIdentifier(e,t,n,r)},e.prototype.resolveEnum=function(e,t){return this.reflectionCapabilities.resolveEnum(e,t)},e}())(new Hc),Jf=function(){function e(e,t,n){this.key=e,this.optional=t,this.visibility=n}return e.fromKey=function(t){return new e(t,!1,null)},e}(),Xf=[],ed=function ed(e,t,n){this.key=e,this.resolvedFactories=t,this.multiProvider=n,this.resolvedFactory=this.resolvedFactories[0]},td=function td(e,t){this.factory=e,this.dependencies=t};function nd(e){return new ed(Gf.get(e.provide),[function t(e){var t,n;if(e.useClass){var r=pr(e.useClass);t=$f.factory(r),n=od(r)}else e.useExisting?(t=function(e){return e},n=[Jf.fromKey(Gf.get(e.useExisting))]):e.useFactory?(t=e.useFactory,n=function o(e,t){if(t){var n=t.map(function(e){return[e]});return t.map(function(t){return id(e,t,n)})}return od(e)}(e.useFactory,e.deps)):(t=function(){return e.useValue},n=Xf);return new td(t,n)}(e)],e.multi||!1)}function rd(e){var t=function n(e,t){for(var n=0;n<e.length;n++){var r=e[n],o=t.get(r.key.id);if(o){if(r.multiProvider!==o.multiProvider)throw Error("Cannot mix multi providers and regular providers, got: "+o+" "+r);if(r.multiProvider)for(var i=0;i<r.resolvedFactories.length;i++)o.resolvedFactories.push(r.resolvedFactories[i]);else t.set(r.key.id,r)}else{var a;a=r.multiProvider?new ed(r.key,r.resolvedFactories.slice(),r.multiProvider):r,t.set(r.key.id,a)}}return t}(function e(t,n){return t.forEach(function(t){if(t instanceof Ac)n.push({provide:t,useClass:t});else if(t&&"object"==typeof t&&void 0!==t.provide)n.push(t);else{if(!(t instanceof Array))throw function r(e){return Error("Invalid provider - only instances of Provider and Type are allowed, got: "+e)}(t);e(t,n)}}),n}(e,[]).map(nd),new Map);return Array.from(t.values())}function od(e){var t=$f.parameters(e);if(!t)return[];if(t.some(function(e){return null==e}))throw Wf(e,t);return t.map(function(n){return id(e,n,t)})}function id(e,t,n){var r=null,o=!1;if(!Array.isArray(t))return ad(t instanceof we?t.token:t,o,null);for(var i=null,a=0;a<t.length;++a){var u=t[a];u instanceof Ac?r=u:u instanceof we?r=u.token:u instanceof be?o=!0:u instanceof Ce||u instanceof xe?i=u:u instanceof E&&(r=u)}if(null!=(r=pr(r)))return ad(r,o,i);throw Wf(e,n)}function ad(e,t,n){return new Jf(Gf.get(e),t,n)}
586
+ var fd=function(){function e(e,t){if(this.token=e,this.id=t,!e)throw new Error("Token must be defined!");this.displayName=$(this.token)}return e.get=function(e){return dd.get(ee(e))},Object.defineProperty(e,"numberOfKeys",{get:function(){return dd.numberOfKeys},enumerable:!0,configurable:!0}),e}(),dd=new(function(){function e(){this._allKeys=new Map}return e.prototype.get=function(e){if(e instanceof fd)return e;if(this._allKeys.has(e))return this._allKeys.get(e);var t=new fd(e,fd.numberOfKeys);return this._allKeys.set(e,t),t},Object.defineProperty(e.prototype,"numberOfKeys",{get:function(){return this._allKeys.size},enumerable:!0,configurable:!0}),e}()),pd=new(function(){function e(e){this.reflectionCapabilities=e}return e.prototype.updateCapabilities=function(e){this.reflectionCapabilities=e},e.prototype.factory=function(e){return this.reflectionCapabilities.factory(e)},e.prototype.parameters=function(e){return this.reflectionCapabilities.parameters(e)},e.prototype.annotations=function(e){return this.reflectionCapabilities.annotations(e)},e.prototype.propMetadata=function(e){return this.reflectionCapabilities.propMetadata(e)},e.prototype.hasLifecycleHook=function(e,t){return this.reflectionCapabilities.hasLifecycleHook(e,t)},e.prototype.getter=function(e){return this.reflectionCapabilities.getter(e)},e.prototype.setter=function(e){return this.reflectionCapabilities.setter(e)},e.prototype.method=function(e){return this.reflectionCapabilities.method(e)},e.prototype.importUri=function(e){return this.reflectionCapabilities.importUri(e)},e.prototype.resourceUri=function(e){return this.reflectionCapabilities.resourceUri(e)},e.prototype.resolveIdentifier=function(e,t,n,r){return this.reflectionCapabilities.resolveIdentifier(e,t,n,r)},e.prototype.resolveEnum=function(e,t){return this.reflectionCapabilities.resolveEnum(e,t)},e}())(new Jc),hd=function(){function e(e,t,n){this.key=e,this.optional=t,this.visibility=n}return e.fromKey=function(t){return new e(t,!1,null)},e}(),vd=[],gd=function gd(e,t,n){this.key=e,this.resolvedFactories=t,this.multiProvider=n,this.resolvedFactory=this.resolvedFactories[0]},yd=function yd(e,t){this.factory=e,this.dependencies=t};function md(e){return new gd(fd.get(e.provide),[function t(e){var t,n;if(e.useClass){var r=ee(e.useClass);t=pd.factory(r),n=wd(r)}else e.useExisting?(t=function(e){return e},n=[hd.fromKey(fd.get(e.useExisting))]):e.useFactory?(t=e.useFactory,n=function o(e,t){if(t){var n=t.map(function(e){return[e]});return t.map(function(t){return bd(e,t,n)})}return wd(e)}(e.useFactory,e.deps)):(t=function(){return e.useValue},n=vd);return new yd(t,n)}(e)],e.multi||!1)}function _d(e){var t=function n(e,t){for(var n=0;n<e.length;n++){var r=e[n],o=t.get(r.key.id);if(o){if(r.multiProvider!==o.multiProvider)throw Error("Cannot mix multi providers and regular providers, got: "+o+" "+r);if(r.multiProvider)for(var i=0;i<r.resolvedFactories.length;i++)o.resolvedFactories.push(r.resolvedFactories[i]);else t.set(r.key.id,r)}else{var a;a=r.multiProvider?new gd(r.key,r.resolvedFactories.slice(),r.multiProvider):r,t.set(r.key.id,a)}}return t}(function e(t,n){return t.forEach(function(t){if(t instanceof Kc)n.push({provide:t,useClass:t});else if(t&&"object"==typeof t&&void 0!==t.provide)n.push(t);else{if(!(t instanceof Array))throw function r(e){return Error("Invalid provider - only instances of Provider and Type are allowed, got: "+e)}(t);e(t,n)}}),n}(e,[]).map(md),new Map);return Array.from(t.values())}function wd(e){var t=pd.parameters(e);if(!t)return[];if(t.some(function(e){return null==e}))throw cd(e,t);return t.map(function(n){return bd(e,n,t)})}function bd(e,t,n){var r=null,o=!1;if(!Array.isArray(t))return Cd(t instanceof xt?t.token:t,o,null);for(var i=null,a=0;a<t.length;++a){var u=t[a];u instanceof Kc?r=u:u instanceof xt?r=u.token:u instanceof It?o=!0:u instanceof kt||u instanceof Et?i=u:u instanceof E&&(r=u)}if(null!=(r=ee(r)))return Cd(r,o,i);throw cd(e,n)}function Cd(e,t,n){return new hd(fd.get(e),t,n)}
580
587
  /**
581
588
  * @license
582
589
  * Copyright Google Inc. All Rights Reserved.
583
590
  *
584
591
  * Use of this source code is governed by an MIT-style license that can be
585
592
  * found in the LICENSE file at https://angular.io/license
586
- */var ud=new Object,sd=function(){function e(){}return e.resolve=function(e){return rd(e)},e.resolveAndCreate=function(t,n){var r=e.resolve(t);return e.fromResolvedProviders(r,n)},e.fromResolvedProviders=function(e,t){return new ld(e,t)},e}(),ld=function(){function e(e,t){this._constructionCounter=0,this._providers=e,this.parent=t||null;var n=e.length;this.keyIds=new Array(n),this.objs=new Array(n);for(var r=0;r<n;r++)this.keyIds[r]=e[r].key.id,this.objs[r]=ud}return e.prototype.get=function(e,t){return void 0===t&&(t=gr),this._getByKey(Gf.get(e),null,t)},e.prototype.resolveAndCreateChild=function(e){var t=sd.resolve(e);return this.createChildFromResolved(t)},e.prototype.createChildFromResolved=function(t){var n=new e(t);return n.parent=this,n},e.prototype.resolveAndInstantiate=function(e){return this.instantiateResolved(sd.resolve([e])[0])},e.prototype.instantiateResolved=function(e){return this._instantiateProvider(e)},e.prototype.getProviderAtIndex=function(e){if(e<0||e>=this._providers.length)throw function t(e){return Error("Index "+e+" is out-of-bounds.")}(e);return this._providers[e]},e.prototype._new=function(e){if(this._constructionCounter++>this._getMaxNumberOfObjects())throw function t(e,n){return qf(e,n,function(e){return"Cannot instantiate cyclic dependency!"+Zf(e)})}(this,e.key);return this._instantiateProvider(e)},e.prototype._getMaxNumberOfObjects=function(){return this.objs.length},e.prototype._instantiateProvider=function(e){if(e.multiProvider){for(var t=new Array(e.resolvedFactories.length),n=0;n<e.resolvedFactories.length;++n)t[n]=this._instantiate(e,e.resolvedFactories[n]);return t}return this._instantiate(e,e.resolvedFactories[0])},e.prototype._instantiate=function(e,t){var n,r,o=this,i=t.factory;try{n=t.dependencies.map(function(e){return o._getByReflectiveDependency(e)})}catch(t){throw t.addKey&&t.addKey(this,e.key),t}try{r=i.apply(void 0,f(n))}catch(t){throw function a(e,t,n,r){return qf(e,r,function(e){var n=te(e[0].token);return t.message+": Error during instantiation of "+n+"!"+Zf(e)+"."},t)}(this,t,0,e.key)}return r},e.prototype._getByReflectiveDependency=function(e){return this._getByKey(e.key,e.visibility,e.optional?null:gr)},e.prototype._getByKey=function(t,n,r){return t===e.INJECTOR_KEY?this:n instanceof Ce?this._getByKeySelf(t,r):this._getByKeyDefault(t,r,n)},e.prototype._getObjByKeyId=function(e){for(var t=0;t<this.keyIds.length;t++)if(this.keyIds[t]===e)return this.objs[t]===ud&&(this.objs[t]=this._new(this._providers[t])),this.objs[t];return ud},e.prototype._throwOrNull=function(e,t){if(t!==gr)return t;throw function n(e,t){return qf(e,t,function(e){return"No provider for "+te(e[0].token)+"!"+Zf(e)})}(this,e)},e.prototype._getByKeySelf=function(e,t){var n=this._getObjByKeyId(e.id);return n!==ud?n:this._throwOrNull(e,t)},e.prototype._getByKeyDefault=function(t,n,r){var o;for(o=r instanceof xe?this.parent:this;o instanceof e;){var i=o,a=i._getObjByKeyId(t.id);if(a!==ud)return a;o=i.parent}return null!==o?o.get(t.token,n):this._throwOrNull(t,n)},Object.defineProperty(e.prototype,"displayName",{get:function(){return"ReflectiveInjector(providers: ["+function e(t,n){for(var r=new Array(t._providers.length),o=0;o<t._providers.length;++o)r[o]=n(t.getProviderAtIndex(o));return r}
593
+ */var xd=new Object,Id=function(){function e(){}return e.resolve=function(e){return _d(e)},e.resolveAndCreate=function(t,n){var r=e.resolve(t);return e.fromResolvedProviders(r,n)},e.fromResolvedProviders=function(e,t){return new kd(e,t)},e}(),kd=function(){function e(e,t){this._constructionCounter=0,this._providers=e,this.parent=t||null;var n=e.length;this.keyIds=new Array(n),this.objs=new Array(n);for(var r=0;r<n;r++)this.keyIds[r]=e[r].key.id,this.objs[r]=xd}return e.prototype.get=function(e,t){return void 0===t&&(t=su),this._getByKey(fd.get(e),null,t)},e.prototype.resolveAndCreateChild=function(e){var t=Id.resolve(e);return this.createChildFromResolved(t)},e.prototype.createChildFromResolved=function(t){var n=new e(t);return n.parent=this,n},e.prototype.resolveAndInstantiate=function(e){return this.instantiateResolved(Id.resolve([e])[0])},e.prototype.instantiateResolved=function(e){return this._instantiateProvider(e)},e.prototype.getProviderAtIndex=function(e){if(e<0||e>=this._providers.length)throw function t(e){return Error("Index "+e+" is out-of-bounds.")}(e);return this._providers[e]},e.prototype._new=function(e){if(this._constructionCounter++>this._getMaxNumberOfObjects())throw function t(e,n){return sd(e,n,function(e){return"Cannot instantiate cyclic dependency!"+ud(e)})}(this,e.key);return this._instantiateProvider(e)},e.prototype._getMaxNumberOfObjects=function(){return this.objs.length},e.prototype._instantiateProvider=function(e){if(e.multiProvider){for(var t=new Array(e.resolvedFactories.length),n=0;n<e.resolvedFactories.length;++n)t[n]=this._instantiate(e,e.resolvedFactories[n]);return t}return this._instantiate(e,e.resolvedFactories[0])},e.prototype._instantiate=function(e,t){var n,r,o=this,i=t.factory;try{n=t.dependencies.map(function(e){return o._getByReflectiveDependency(e)})}catch(t){throw t.addKey&&t.addKey(this,e.key),t}try{r=i.apply(void 0,f(n))}catch(t){throw function a(e,t,n,r){return sd(e,r,function(e){var n=$(e[0].token);return t.message+": Error during instantiation of "+n+"!"+ud(e)+"."},t)}(this,t,0,e.key)}return r},e.prototype._getByReflectiveDependency=function(e){return this._getByKey(e.key,e.visibility,e.optional?null:su)},e.prototype._getByKey=function(t,n,r){return t===e.INJECTOR_KEY?this:n instanceof kt?this._getByKeySelf(t,r):this._getByKeyDefault(t,r,n)},e.prototype._getObjByKeyId=function(e){for(var t=0;t<this.keyIds.length;t++)if(this.keyIds[t]===e)return this.objs[t]===xd&&(this.objs[t]=this._new(this._providers[t])),this.objs[t];return xd},e.prototype._throwOrNull=function(e,t){if(t!==su)return t;throw function n(e,t){return sd(e,t,function(e){return"No provider for "+$(e[0].token)+"!"+ud(e)})}(this,e)},e.prototype._getByKeySelf=function(e,t){var n=this._getObjByKeyId(e.id);return n!==xd?n:this._throwOrNull(e,t)},e.prototype._getByKeyDefault=function(t,n,r){var o;for(o=r instanceof Et?this.parent:this;o instanceof e;){var i=o,a=i._getObjByKeyId(t.id);if(a!==xd)return a;o=i.parent}return null!==o?o.get(t.token,n):this._throwOrNull(t,n)},Object.defineProperty(e.prototype,"displayName",{get:function(){return"ReflectiveInjector(providers: ["+function e(t,n){for(var r=new Array(t._providers.length),o=0;o<t._providers.length;++o)r[o]=n(t.getProviderAtIndex(o));return r}
587
594
  /**
588
595
  * @license
589
596
  * Copyright Google Inc. All Rights Reserved.
@@ -597,28 +604,28 @@ var Gf=function(){function e(e,t){if(this.token=e,this.id=t,!e)throw new Error("
597
604
  *
598
605
  * Use of this source code is governed by an MIT-style license that can be
599
606
  * found in the LICENSE file at https://angular.io/license
600
- */(this,function(e){return' "'+e.key.displayName+'" '}).join(", ")+"])"},enumerable:!0,configurable:!0}),e.prototype.toString=function(){return this.displayName},e.INJECTOR_KEY=Gf.get(_r),e}();function cd(e){return!!e&&"function"==typeof e.then}function fd(e){return!!e&&"function"==typeof e.subscribe}
607
+ */(this,function(e){return' "'+e.key.displayName+'" '}).join(", ")+"])"},enumerable:!0,configurable:!0}),e.prototype.toString=function(){return this.displayName},e.INJECTOR_KEY=fd.get(fu),e}();function Ed(e){return!!e&&"function"==typeof e.then}function Od(e){return!!e&&"function"==typeof e.subscribe}
601
608
  /**
602
609
  * @license
603
610
  * Copyright Google Inc. All Rights Reserved.
604
611
  *
605
612
  * Use of this source code is governed by an MIT-style license that can be
606
613
  * found in the LICENSE file at https://angular.io/license
607
- */var dd=new E("Application Initializer"),pd=function(){function e(e){var t=this;this.appInits=e,this.initialized=!1,this.done=!1,this.donePromise=new Promise(function(e,n){t.resolve=e,t.reject=n})}return e.prototype.runInitializers=function(){var e=this;if(!this.initialized){var t=[],n=function(){e.done=!0,e.resolve()};if(this.appInits)for(var r=0;r<this.appInits.length;r++){var o=this.appInits[r]();cd(o)&&t.push(o)}Promise.all(t).then(function(){n()}).catch(function(t){e.reject(t)}),0===t.length&&n(),this.initialized=!0}},a([Sf(),u(0,we(dd)),u(0,be()),s("design:paramtypes",[Array])],e)}(),hd=new E("AppId");function vd(){return""+yd()+yd()+yd()}var gd={provide:hd,useFactory:vd,deps:[]};function yd(){return String.fromCharCode(97+Math.floor(25*Math.random()))}var md=new E("Platform Initializer"),_d=new E("Platform ID"),wd=new E("appBootstrapListener"),bd=new E("Application Packages Root URL"),Cd=function(){function e(){}return e.prototype.log=function(e){console.log(e)},e.prototype.warn=function(e){console.warn(e)},a([Sf()],e)}(),xd=function xd(e,t){this.ngModuleFactory=e,this.componentFactories=t};function Id(){throw new Error("Runtime compiler is not loaded")}var kd,Ed,Od=Id,Td=Id,Pd=Id,Nd=Id,Dd=function(){function e(){this.compileModuleSync=Od,this.compileModuleAsync=Td,this.compileModuleAndAllComponentsSync=Pd,this.compileModuleAndAllComponentsAsync=Nd}return e.prototype.clearCache=function(){},e.prototype.clearCacheFor=function(e){},e.prototype.getModuleId=function(e){},a([Sf()],e)}(),Rd=new E("compilerOptions"),jd=function jd(){};function Ad(){var e=G.wtf;return!(!e||!(kd=e.trace)||(Ed=kd.events,0))}function Sd(e,t){return void 0===t&&(t=null),Ed.createScope(e,t)}function Vd(e,t){return kd.leaveScope(e,t),t}function Md(e,t){return kd.beginTimeRange(e,t)}function Fd(e){kd.endTimeRange(e)}
614
+ */var Td=new E("Application Initializer"),Pd=function(){function e(e){var t=this;this.appInits=e,this.initialized=!1,this.done=!1,this.donePromise=new Promise(function(e,n){t.resolve=e,t.reject=n})}return e.prototype.runInitializers=function(){var e=this;if(!this.initialized){var t=[],n=function(){e.done=!0,e.resolve()};if(this.appInits)for(var r=0;r<this.appInits.length;r++){var o=this.appInits[r]();Ed(o)&&t.push(o)}Promise.all(t).then(function(){n()}).catch(function(t){e.reject(t)}),0===t.length&&n(),this.initialized=!0}},a([$f(),u(0,xt(Td)),u(0,It()),s("design:paramtypes",[Array])],e)}(),Nd=new E("AppId");function Rd(){return""+Dd()+Dd()+Dd()}var jd={provide:Nd,useFactory:Rd,deps:[]};function Dd(){return String.fromCharCode(97+Math.floor(25*Math.random()))}var Ad=new E("Platform Initializer"),Sd=new E("Platform ID"),Vd=new E("appBootstrapListener"),Md=new E("Application Packages Root URL"),Fd=function(){function e(){}return e.prototype.log=function(e){console.log(e)},e.prototype.warn=function(e){console.warn(e)},a([$f()],e)}(),Hd=function Hd(e,t){this.ngModuleFactory=e,this.componentFactories=t};function Ld(){throw new Error("Runtime compiler is not loaded")}var Bd,Ud,zd=function(e){return new Ql(e)},Qd=Ld,Zd=Ld,qd=function(e){return new Hd(zd(e),[])},Kd=Ld,Wd=Ld,Gd=function(){function e(){this.compileModuleSync=Qd,this.compileModuleAsync=Zd,this.compileModuleAndAllComponentsSync=Kd,this.compileModuleAndAllComponentsAsync=Wd}return e.prototype.clearCache=function(){},e.prototype.clearCacheFor=function(e){},e.prototype.getModuleId=function(e){},a([$f()],e)}(),Yd=new E("compilerOptions"),$d=function $d(){};function Jd(){var e=Z.wtf;return!(!e||!(Bd=e.trace)||(Ud=Bd.events,0))}function Xd(e,t){return void 0===t&&(t=null),Ud.createScope(e,t)}function ep(e,t){return Bd.leaveScope(e,t),t}function tp(e,t){return Bd.beginTimeRange(e,t)}function np(e){Bd.endTimeRange(e)}
608
615
  /**
609
616
  * @license
610
617
  * Copyright Google Inc. All Rights Reserved.
611
618
  *
612
619
  * Use of this source code is governed by an MIT-style license that can be
613
620
  * found in the LICENSE file at https://angular.io/license
614
- */var Hd=Ad();function Ld(e,t){return null}var Bd=Hd?Sd:function(e,t){return Ld},Ud=Hd?Vd:function(e,t){return t},zd=Hd?Md:function(e,t){return null},Qd=Hd?Fd:function(e){return null},Zd=function(){function e(e){var t=e.enableLongStackTrace,n=void 0!==t&&t;if(this.hasPendingMicrotasks=!1,this.hasPendingMacrotasks=!1,this.isStable=!0,this.onUnstable=new rc(!1),this.onMicrotaskEmpty=new rc(!1),this.onStable=new rc(!1),this.onError=new rc(!1),"undefined"==typeof Zone)throw new Error("In this configuration Angular requires Zone.js");Zone.assertZonePatched(),this._nesting=0,this._outer=this._inner=Zone.current,Zone.wtfZoneSpec&&(this._inner=this._inner.fork(Zone.wtfZoneSpec)),Zone.TaskTrackingZoneSpec&&(this._inner=this._inner.fork(new Zone.TaskTrackingZoneSpec)),n&&Zone.longStackTraceZoneSpec&&(this._inner=this._inner.fork(Zone.longStackTraceZoneSpec)),function r(e){e._inner=e._inner.fork({name:"angular",properties:{isAngularZone:!0},onInvokeTask:function(t,n,r,o,i,a){try{return Gd(e),t.invokeTask(r,o,i,a)}finally{Yd(e)}},onInvoke:function(t,n,r,o,i,a,u){try{return Gd(e),t.invoke(r,o,i,a,u)}finally{Yd(e)}},onHasTask:function(t,n,r,o){t.hasTask(r,o),n===r&&("microTask"==o.change?(e.hasPendingMicrotasks=o.microTask,Wd(e)):"macroTask"==o.change&&(e.hasPendingMacrotasks=o.macroTask))},onHandleError:function(t,n,r,o){return t.handleError(r,o),e.runOutsideAngular(function(){return e.onError.emit(o)}),!1}})}(this)}return e.isInAngularZone=function(){return!0===Zone.current.get("isAngularZone")},e.assertInAngularZone=function(){if(!e.isInAngularZone())throw new Error("Expected to be in Angular Zone, but it is not!")},e.assertNotInAngularZone=function(){if(e.isInAngularZone())throw new Error("Expected to not be in Angular Zone, but it is!")},e.prototype.run=function(e,t,n){return this._inner.run(e,t,n)},e.prototype.runTask=function(e,t,n,r){var o=this._inner,i=o.scheduleEventTask("NgZoneEvent: "+r,e,Kd,qd,qd);try{return o.runTask(i,t,n)}finally{o.cancelTask(i)}},e.prototype.runGuarded=function(e,t,n){return this._inner.runGuarded(e,t,n)},e.prototype.runOutsideAngular=function(e){return this._outer.run(e)},e}();function qd(){}var Kd={};function Wd(e){if(0==e._nesting&&!e.hasPendingMicrotasks&&!e.isStable)try{e._nesting++,e.onMicrotaskEmpty.emit(null)}finally{if(e._nesting--,!e.hasPendingMicrotasks)try{e.runOutsideAngular(function(){return e.onStable.emit(null)})}finally{e.isStable=!0}}}function Gd(e){e._nesting++,e.isStable&&(e.isStable=!1,e.onUnstable.emit(null))}function Yd(e){e._nesting--,Wd(e)}var $d,Jd=function(){function e(){this.hasPendingMicrotasks=!1,this.hasPendingMacrotasks=!1,this.isStable=!0,this.onUnstable=new rc,this.onMicrotaskEmpty=new rc,this.onStable=new rc,this.onError=new rc}return e.prototype.run=function(e){return e()},e.prototype.runGuarded=function(e){return e()},e.prototype.runOutsideAngular=function(e){return e()},e.prototype.runTask=function(e){return e()},e}(),Xd=function(){function e(e){var t=this;this._ngZone=e,this._pendingCount=0,this._isZoneStable=!0,this._didWork=!1,this._callbacks=[],this.taskTrackingZone=null,this._watchAngularEvents(),e.run(function(){t.taskTrackingZone="undefined"==typeof Zone?null:Zone.current.get("TaskTrackingZone")})}return e.prototype._watchAngularEvents=function(){var e=this;this._ngZone.onUnstable.subscribe({next:function(){e._didWork=!0,e._isZoneStable=!1}}),this._ngZone.runOutsideAngular(function(){e._ngZone.onStable.subscribe({next:function(){Zd.assertNotInAngularZone(),X(function(){e._isZoneStable=!0,e._runCallbacksIfReady()})}})})},e.prototype.increasePendingRequestCount=function(){return this._pendingCount+=1,this._didWork=!0,this._pendingCount},e.prototype.decreasePendingRequestCount=function(){if(this._pendingCount-=1,this._pendingCount<0)throw new Error("pending async requests below zero");return this._runCallbacksIfReady(),this._pendingCount},e.prototype.isStable=function(){return this._isZoneStable&&0===this._pendingCount&&!this._ngZone.hasPendingMacrotasks},e.prototype._runCallbacksIfReady=function(){var e=this;if(this.isStable())X(function(){for(;0!==e._callbacks.length;){var t=e._callbacks.pop();clearTimeout(t.timeoutId),t.doneCb(e._didWork)}e._didWork=!1});else{var t=this.getPendingTasks();this._callbacks=this._callbacks.filter(function(e){return!e.updateCb||!e.updateCb(t)||(clearTimeout(e.timeoutId),!1)}),this._didWork=!0}},e.prototype.getPendingTasks=function(){return this.taskTrackingZone?this.taskTrackingZone.macroTasks.map(function(e){return{source:e.source,creationLocation:e.creationLocation,data:e.data}}):[]},e.prototype.addCallback=function(e,t,n){var r=this,o=-1;t&&t>0&&(o=setTimeout(function(){r._callbacks=r._callbacks.filter(function(e){return e.timeoutId!==o}),e(r._didWork,r.getPendingTasks())},t)),this._callbacks.push({doneCb:e,timeoutId:o,updateCb:n})},e.prototype.whenStable=function(e,t,n){if(n&&!this.taskTrackingZone)throw new Error('Task tracking zone is required when passing an update callback to whenStable(). Is "zone.js/dist/task-tracking.js" loaded?');this.addCallback(e,t,n),this._runCallbacksIfReady()},e.prototype.getPendingRequestCount=function(){return this._pendingCount},e.prototype.findProviders=function(e,t,n){return[]},a([Sf(),s("design:paramtypes",[Zd])],e)}(),ep=function(){function e(){this._applications=new Map,tp.addToWindow(this)}return e.prototype.registerApplication=function(e,t){this._applications.set(e,t)},e.prototype.unregisterApplication=function(e){this._applications.delete(e)},e.prototype.unregisterAllApplications=function(){this._applications.clear()},e.prototype.getTestability=function(e){return this._applications.get(e)||null},e.prototype.getAllTestabilities=function(){return Array.from(this._applications.values())},e.prototype.getAllRootElements=function(){return Array.from(this._applications.keys())},e.prototype.findTestabilityInTree=function(e,t){return void 0===t&&(t=!0),tp.findTestabilityInTree(this,e,t)},a([Sf(),s("design:paramtypes",[])],e)}(),tp=new(function(){function e(){}return e.prototype.addToWindow=function(e){},e.prototype.findTestabilityInTree=function(e,t,n){return null},e}()),np=new E("AllowMultipleToken"),rp=function rp(e,t){this.name=e,this.token=t};
621
+ */var rp=Jd();function op(e,t){return null}var ip=rp?Xd:function(e,t){return op},ap=rp?ep:function(e,t){return t},up=rp?tp:function(e,t){return null},sp=rp?np:function(e){return null},lp=function(){function e(e){var t=e.enableLongStackTrace,n=void 0!==t&&t;if(this.hasPendingMicrotasks=!1,this.hasPendingMacrotasks=!1,this.isStable=!0,this.onUnstable=new lc(!1),this.onMicrotaskEmpty=new lc(!1),this.onStable=new lc(!1),this.onError=new lc(!1),"undefined"==typeof Zone)throw new Error("In this configuration Angular requires Zone.js");Zone.assertZonePatched(),this._nesting=0,this._outer=this._inner=Zone.current,Zone.wtfZoneSpec&&(this._inner=this._inner.fork(Zone.wtfZoneSpec)),Zone.TaskTrackingZoneSpec&&(this._inner=this._inner.fork(new Zone.TaskTrackingZoneSpec)),n&&Zone.longStackTraceZoneSpec&&(this._inner=this._inner.fork(Zone.longStackTraceZoneSpec)),function r(e){e._inner=e._inner.fork({name:"angular",properties:{isAngularZone:!0},onInvokeTask:function(t,n,r,o,i,a){try{return pp(e),t.invokeTask(r,o,i,a)}finally{hp(e)}},onInvoke:function(t,n,r,o,i,a,u){try{return pp(e),t.invoke(r,o,i,a,u)}finally{hp(e)}},onHasTask:function(t,n,r,o){t.hasTask(r,o),n===r&&("microTask"==o.change?(e.hasPendingMicrotasks=o.microTask,dp(e)):"macroTask"==o.change&&(e.hasPendingMacrotasks=o.macroTask))},onHandleError:function(t,n,r,o){return t.handleError(r,o),e.runOutsideAngular(function(){return e.onError.emit(o)}),!1}})}(this)}return e.isInAngularZone=function(){return!0===Zone.current.get("isAngularZone")},e.assertInAngularZone=function(){if(!e.isInAngularZone())throw new Error("Expected to be in Angular Zone, but it is not!")},e.assertNotInAngularZone=function(){if(e.isInAngularZone())throw new Error("Expected to not be in Angular Zone, but it is!")},e.prototype.run=function(e,t,n){return this._inner.run(e,t,n)},e.prototype.runTask=function(e,t,n,r){var o=this._inner,i=o.scheduleEventTask("NgZoneEvent: "+r,e,fp,cp,cp);try{return o.runTask(i,t,n)}finally{o.cancelTask(i)}},e.prototype.runGuarded=function(e,t,n){return this._inner.runGuarded(e,t,n)},e.prototype.runOutsideAngular=function(e){return this._outer.run(e)},e}();function cp(){}var fp={};function dp(e){if(0==e._nesting&&!e.hasPendingMicrotasks&&!e.isStable)try{e._nesting++,e.onMicrotaskEmpty.emit(null)}finally{if(e._nesting--,!e.hasPendingMicrotasks)try{e.runOutsideAngular(function(){return e.onStable.emit(null)})}finally{e.isStable=!0}}}function pp(e){e._nesting++,e.isStable&&(e.isStable=!1,e.onUnstable.emit(null))}function hp(e){e._nesting--,dp(e)}var vp,gp=function(){function e(){this.hasPendingMicrotasks=!1,this.hasPendingMacrotasks=!1,this.isStable=!0,this.onUnstable=new lc,this.onMicrotaskEmpty=new lc,this.onStable=new lc,this.onError=new lc}return e.prototype.run=function(e){return e()},e.prototype.runGuarded=function(e){return e()},e.prototype.runOutsideAngular=function(e){return e()},e.prototype.runTask=function(e){return e()},e}(),yp=function(){function e(e){var t=this;this._ngZone=e,this._pendingCount=0,this._isZoneStable=!0,this._didWork=!1,this._callbacks=[],this.taskTrackingZone=null,this._watchAngularEvents(),e.run(function(){t.taskTrackingZone="undefined"==typeof Zone?null:Zone.current.get("TaskTrackingZone")})}return e.prototype._watchAngularEvents=function(){var e=this;this._ngZone.onUnstable.subscribe({next:function(){e._didWork=!0,e._isZoneStable=!1}}),this._ngZone.runOutsideAngular(function(){e._ngZone.onStable.subscribe({next:function(){lp.assertNotInAngularZone(),G(function(){e._isZoneStable=!0,e._runCallbacksIfReady()})}})})},e.prototype.increasePendingRequestCount=function(){return this._pendingCount+=1,this._didWork=!0,this._pendingCount},e.prototype.decreasePendingRequestCount=function(){if(this._pendingCount-=1,this._pendingCount<0)throw new Error("pending async requests below zero");return this._runCallbacksIfReady(),this._pendingCount},e.prototype.isStable=function(){return this._isZoneStable&&0===this._pendingCount&&!this._ngZone.hasPendingMacrotasks},e.prototype._runCallbacksIfReady=function(){var e=this;if(this.isStable())G(function(){for(;0!==e._callbacks.length;){var t=e._callbacks.pop();clearTimeout(t.timeoutId),t.doneCb(e._didWork)}e._didWork=!1});else{var t=this.getPendingTasks();this._callbacks=this._callbacks.filter(function(e){return!e.updateCb||!e.updateCb(t)||(clearTimeout(e.timeoutId),!1)}),this._didWork=!0}},e.prototype.getPendingTasks=function(){return this.taskTrackingZone?this.taskTrackingZone.macroTasks.map(function(e){return{source:e.source,creationLocation:e.creationLocation,data:e.data}}):[]},e.prototype.addCallback=function(e,t,n){var r=this,o=-1;t&&t>0&&(o=setTimeout(function(){r._callbacks=r._callbacks.filter(function(e){return e.timeoutId!==o}),e(r._didWork,r.getPendingTasks())},t)),this._callbacks.push({doneCb:e,timeoutId:o,updateCb:n})},e.prototype.whenStable=function(e,t,n){if(n&&!this.taskTrackingZone)throw new Error('Task tracking zone is required when passing an update callback to whenStable(). Is "zone.js/dist/task-tracking.js" loaded?');this.addCallback(e,t,n),this._runCallbacksIfReady()},e.prototype.getPendingRequestCount=function(){return this._pendingCount},e.prototype.findProviders=function(e,t,n){return[]},a([$f(),s("design:paramtypes",[lp])],e)}(),mp=function(){function e(){this._applications=new Map,_p.addToWindow(this)}return e.prototype.registerApplication=function(e,t){this._applications.set(e,t)},e.prototype.unregisterApplication=function(e){this._applications.delete(e)},e.prototype.unregisterAllApplications=function(){this._applications.clear()},e.prototype.getTestability=function(e){return this._applications.get(e)||null},e.prototype.getAllTestabilities=function(){return Array.from(this._applications.values())},e.prototype.getAllRootElements=function(){return Array.from(this._applications.keys())},e.prototype.findTestabilityInTree=function(e,t){return void 0===t&&(t=!0),_p.findTestabilityInTree(this,e,t)},a([$f(),s("design:paramtypes",[])],e)}(),_p=new(function(){function e(){}return e.prototype.addToWindow=function(e){},e.prototype.findTestabilityInTree=function(e,t,n){return null},e}()),wp=new E("AllowMultipleToken"),bp=function bp(e,t){this.name=e,this.token=t};
615
622
  /**
616
623
  * @license
617
624
  * Copyright Google Inc. All Rights Reserved.
618
625
  *
619
626
  * Use of this source code is governed by an MIT-style license that can be
620
627
  * found in the LICENSE file at https://angular.io/license
621
- */function op(e){if($d&&!$d.destroyed&&!$d.injector.get(np,!1))throw new Error("There can be only one platform. Destroy the previous one to create a new one.");$d=e.get(sp);var t=e.get(md,null);return t&&t.forEach(function(e){return e()}),$d}function ip(e,t,n){void 0===n&&(n=[]);var r="Platform: "+t,o=new E(r);return function(t){void 0===t&&(t=[]);var i=up();if(!i||i.injector.get(np,!1))if(e)e(n.concat(t).concat({provide:o,useValue:!0}));else{var a=n.concat(t).concat({provide:o,useValue:!0});op(_r.create({providers:a,name:r}))}return ap(o)}}function ap(e){var t=up();if(!t)throw new Error("No platform exists!");if(!t.injector.get(e,null))throw new Error("A platform with a different configuration has been created. Please destroy it first.");return t}function up(){return $d&&!$d.destroyed?$d:null}var sp=function(){function e(e){this._injector=e,this._modules=[],this._destroyListeners=[],this._destroyed=!1}return e.prototype.bootstrapModuleFactory=function(e,t){var n=this,r=function o(e){return"noop"===e?new Jd:("zone.js"===e?void 0:e)||new Zd({enableLongStackTrace:Ts()})}(t?t.ngZone:void 0),i=[{provide:Zd,useValue:r}];return r.run(function(){var t=_r.create({providers:i,parent:n.injector,name:e.moduleType.name}),o=e.create(t),a=o.injector.get(Qf,null);if(!a)throw new Error("No ErrorHandler. Is platform module (BrowserModule) included?");return o.onDestroy(function(){return fp(n._modules,o)}),r.runOutsideAngular(function(){return r.onError.subscribe({next:function(e){a.handleError(e)}})}),function u(e,t,n){try{var r=n();return cd(r)?r.catch(function(n){throw t.runOutsideAngular(function(){return e.handleError(n)}),n}):r}catch(n){throw t.runOutsideAngular(function(){return e.handleError(n)}),n}}(a,r,function(){var e=o.injector.get(pd);return e.runInitializers(),e.donePromise.then(function(){return n._moduleDoBootstrap(o),o})})})},e.prototype.bootstrapModule=function(e,t){var n=this;void 0===t&&(t=[]);var r=lp({},t);return function o(e,t,n){return e.get(jd).createCompiler([t]).compileModuleAsync(n)}(this.injector,r,e).then(function(e){return n.bootstrapModuleFactory(e,r)})},e.prototype._moduleDoBootstrap=function(e){var t=e.injector.get(cp);if(e._bootstrapComponents.length>0)e._bootstrapComponents.forEach(function(e){return t.bootstrap(e)});else{if(!e.instance.ngDoBootstrap)throw new Error("The module "+te(e.instance.constructor)+' was bootstrapped, but it does not declare "@NgModule.bootstrap" components nor a "ngDoBootstrap" method. Please define one of these.');e.instance.ngDoBootstrap(t)}this._modules.push(e)},e.prototype.onDestroy=function(e){this._destroyListeners.push(e)},Object.defineProperty(e.prototype,"injector",{get:function(){return this._injector},enumerable:!0,configurable:!0}),e.prototype.destroy=function(){if(this._destroyed)throw new Error("The platform has already been destroyed!");this._modules.slice().forEach(function(e){return e.destroy()}),this._destroyListeners.forEach(function(e){return e()}),this._destroyed=!0},Object.defineProperty(e.prototype,"destroyed",{get:function(){return this._destroyed},enumerable:!0,configurable:!0}),a([Sf(),s("design:paramtypes",[_r])],e)}();function lp(e,t){return Array.isArray(t)?t.reduce(lp,e):i({},e,t)}var cp=function(){function e(e,r,o,i,a,u){var s=this;this._zone=e,this._console=r,this._injector=o,this._exceptionHandler=i,this._componentFactoryResolver=a,this._initStatus=u,this._bootstrapListeners=[],this._views=[],this._runningTick=!1,this._enforceNoNewChanges=!1,this._stable=!0,this.componentTypes=[],this.components=[],this._enforceNoNewChanges=Ts(),this._zone.onMicrotaskEmpty.subscribe({next:function(){s._zone.run(function(){s.tick()})}});var l=new t.Observable(function(e){s._stable=s._zone.isStable&&!s._zone.hasPendingMacrotasks&&!s._zone.hasPendingMicrotasks,s._zone.runOutsideAngular(function(){e.next(s._stable),e.complete()})}),c=new t.Observable(function(e){var t;s._zone.runOutsideAngular(function(){t=s._zone.onStable.subscribe(function(){Zd.assertNotInAngularZone(),X(function(){s._stable||s._zone.hasPendingMacrotasks||s._zone.hasPendingMicrotasks||(s._stable=!0,e.next(!0))})})});var n=s._zone.onUnstable.subscribe(function(){Zd.assertInAngularZone(),s._stable&&(s._stable=!1,s._zone.runOutsideAngular(function(){e.next(!1)}))});return function(){t.unsubscribe(),n.unsubscribe()}});this.isStable=t.merge(l,c.pipe(n.share()))}var r;return r=e,e.prototype.bootstrap=function(e,t){var n,r=this;if(!this._initStatus.done)throw new Error("Cannot bootstrap as there are still asynchronous initializers running. Bootstrap components in the `ngDoBootstrap` method of the root module.");n=e instanceof Ju?e:this._componentFactoryResolver.resolveComponentFactory(e),this.componentTypes.push(n.componentType);var o=n instanceof is?null:this._injector.get(jr),i=n.create(_r.NULL,[],t||n.selector,o);i.onDestroy(function(){r._unloadComponent(i)});var a=i.injector.get(Xd,null);return a&&i.injector.get(ep).registerApplication(i.location.nativeElement,a),this._loadComponent(i),Ts()&&this._console.log("Angular is running in the development mode. Call enableProdMode() to enable the production mode."),i},e.prototype.tick=function(){var e=this;if(this._runningTick)throw new Error("ApplicationRef.tick is called recursively");var t=r._tickScope();try{this._runningTick=!0,this._views.forEach(function(e){return e.detectChanges()}),this._enforceNoNewChanges&&this._views.forEach(function(e){return e.checkNoChanges()})}catch(t){this._zone.runOutsideAngular(function(){return e._exceptionHandler.handleError(t)})}finally{this._runningTick=!1,Ud(t)}},e.prototype.attachView=function(e){var t=e;this._views.push(t),t.attachToAppRef(this)},e.prototype.detachView=function(e){var t=e;fp(this._views,t),t.detachFromAppRef()},e.prototype._loadComponent=function(e){this.attachView(e.hostView),this.tick(),this.components.push(e),this._injector.get(wd,[]).concat(this._bootstrapListeners).forEach(function(t){return t(e)})},e.prototype._unloadComponent=function(e){this.detachView(e.hostView),fp(this.components,e)},e.prototype.ngOnDestroy=function(){this._views.slice().forEach(function(e){return e.destroy()})},Object.defineProperty(e.prototype,"viewCount",{get:function(){return this._views.length},enumerable:!0,configurable:!0}),e._tickScope=Bd("ApplicationRef#tick()"),r=a([Sf(),s("design:paramtypes",[Zd,Cd,_r,Qf,rs,pd])],e)}();function fp(e,t){var n=e.indexOf(t);n>-1&&e.splice(n,1)}
628
+ */function Cp(e){if(vp&&!vp.destroyed&&!vp.injector.get(wp,!1))throw new Error("There can be only one platform. Destroy the previous one to create a new one.");vp=e.get(Ep);var t=e.get(Ad,null);return t&&t.forEach(function(e){return e()}),vp}function xp(e,t,n){void 0===n&&(n=[]);var r="Platform: "+t,o=new E(r);return function(t){void 0===t&&(t=[]);var i=kp();if(!i||i.injector.get(wp,!1))if(e)e(n.concat(t).concat({provide:o,useValue:!0}));else{var a=n.concat(t).concat({provide:o,useValue:!0});Cp(fu.create({providers:a,name:r}))}return Ip(o)}}function Ip(e){var t=kp();if(!t)throw new Error("No platform exists!");if(!t.injector.get(e,null))throw new Error("A platform with a different configuration has been created. Please destroy it first.");return t}function kp(){return vp&&!vp.destroyed?vp:null}var Ep=function(){function e(e){this._injector=e,this._modules=[],this._destroyListeners=[],this._destroyed=!1}return e.prototype.bootstrapModuleFactory=function(e,t){var n=this,r=function o(e){return"noop"===e?new gp:("zone.js"===e?void 0:e)||new lp({enableLongStackTrace:Ds()})}(t?t.ngZone:void 0),i=[{provide:lp,useValue:r}];return r.run(function(){var t=fu.create({providers:i,parent:n.injector,name:e.moduleType.name}),o=e.create(t),a=o.injector.get(ad,null);if(!a)throw new Error("No ErrorHandler. Is platform module (BrowserModule) included?");return o.onDestroy(function(){return Pp(n._modules,o)}),r.runOutsideAngular(function(){return r.onError.subscribe({next:function(e){a.handleError(e)}})}),function u(e,t,n){try{var r=n();return Ed(r)?r.catch(function(n){throw t.runOutsideAngular(function(){return e.handleError(n)}),n}):r}catch(n){throw t.runOutsideAngular(function(){return e.handleError(n)}),n}}(a,r,function(){var e=o.injector.get(Pd);return e.runInitializers(),e.donePromise.then(function(){return n._moduleDoBootstrap(o),o})})})},e.prototype.bootstrapModule=function(e,t){var n=this;void 0===t&&(t=[]);var r=Op({},t);return function o(e,t,n){return e.get($d).createCompiler([t]).compileModuleAsync(n)}(this.injector,r,e).then(function(e){return n.bootstrapModuleFactory(e,r)})},e.prototype._moduleDoBootstrap=function(e){var t=e.injector.get(Tp);if(e._bootstrapComponents.length>0)e._bootstrapComponents.forEach(function(e){return t.bootstrap(e)});else{if(!e.instance.ngDoBootstrap)throw new Error("The module "+$(e.instance.constructor)+' was bootstrapped, but it does not declare "@NgModule.bootstrap" components nor a "ngDoBootstrap" method. Please define one of these.');e.instance.ngDoBootstrap(t)}this._modules.push(e)},e.prototype.onDestroy=function(e){this._destroyListeners.push(e)},Object.defineProperty(e.prototype,"injector",{get:function(){return this._injector},enumerable:!0,configurable:!0}),e.prototype.destroy=function(){if(this._destroyed)throw new Error("The platform has already been destroyed!");this._modules.slice().forEach(function(e){return e.destroy()}),this._destroyListeners.forEach(function(e){return e()}),this._destroyed=!0},Object.defineProperty(e.prototype,"destroyed",{get:function(){return this._destroyed},enumerable:!0,configurable:!0}),a([$f(),s("design:paramtypes",[fu])],e)}();function Op(e,t){return Array.isArray(t)?t.reduce(Op,e):i({},e,t)}var Tp=function(){function e(e,r,o,i,a,u){var s=this;this._zone=e,this._console=r,this._injector=o,this._exceptionHandler=i,this._componentFactoryResolver=a,this._initStatus=u,this._bootstrapListeners=[],this._views=[],this._runningTick=!1,this._enforceNoNewChanges=!1,this._stable=!0,this.componentTypes=[],this.components=[],this._enforceNoNewChanges=Ds(),this._zone.onMicrotaskEmpty.subscribe({next:function(){s._zone.run(function(){s.tick()})}});var l=new t.Observable(function(e){s._stable=s._zone.isStable&&!s._zone.hasPendingMacrotasks&&!s._zone.hasPendingMicrotasks,s._zone.runOutsideAngular(function(){e.next(s._stable),e.complete()})}),c=new t.Observable(function(e){var t;s._zone.runOutsideAngular(function(){t=s._zone.onStable.subscribe(function(){lp.assertNotInAngularZone(),G(function(){s._stable||s._zone.hasPendingMacrotasks||s._zone.hasPendingMicrotasks||(s._stable=!0,e.next(!0))})})});var n=s._zone.onUnstable.subscribe(function(){lp.assertInAngularZone(),s._stable&&(s._stable=!1,s._zone.runOutsideAngular(function(){e.next(!1)}))});return function(){t.unsubscribe(),n.unsubscribe()}});this.isStable=t.merge(l,c.pipe(n.share()))}var r;return r=e,e.prototype.bootstrap=function(e,t){var n,r=this;if(!this._initStatus.done)throw new Error("Cannot bootstrap as there are still asynchronous initializers running. Bootstrap components in the `ngDoBootstrap` method of the root module.");n=e instanceof Ku?e:this._componentFactoryResolver.resolveComponentFactory(e),this.componentTypes.push(n.componentType);var o=n instanceof ns?null:this._injector.get(rs),i=n.create(fu.NULL,[],t||n.selector,o);i.onDestroy(function(){r._unloadComponent(i)});var a=i.injector.get(yp,null);return a&&i.injector.get(mp).registerApplication(i.location.nativeElement,a),this._loadComponent(i),Ds()&&this._console.log("Angular is running in the development mode. Call enableProdMode() to enable the production mode."),i},e.prototype.tick=function(){var e=this;if(this._runningTick)throw new Error("ApplicationRef.tick is called recursively");var t=r._tickScope();try{this._runningTick=!0,this._views.forEach(function(e){return e.detectChanges()}),this._enforceNoNewChanges&&this._views.forEach(function(e){return e.checkNoChanges()})}catch(t){this._zone.runOutsideAngular(function(){return e._exceptionHandler.handleError(t)})}finally{this._runningTick=!1,ap(t)}},e.prototype.attachView=function(e){var t=e;this._views.push(t),t.attachToAppRef(this)},e.prototype.detachView=function(e){var t=e;Pp(this._views,t),t.detachFromAppRef()},e.prototype._loadComponent=function(e){this.attachView(e.hostView),this.tick(),this.components.push(e),this._injector.get(Vd,[]).concat(this._bootstrapListeners).forEach(function(t){return t(e)})},e.prototype._unloadComponent=function(e){this.detachView(e.hostView),Pp(this.components,e)},e.prototype.ngOnDestroy=function(){this._views.slice().forEach(function(e){return e.destroy()})},Object.defineProperty(e.prototype,"viewCount",{get:function(){return this._views.length},enumerable:!0,configurable:!0}),e._tickScope=ip("ApplicationRef#tick()"),r=a([$f(),s("design:paramtypes",[lp,Fd,fu,ad,es,Pd])],e)}();function Pp(e,t){var n=e.indexOf(t);n>-1&&e.splice(n,1)}
622
629
  /**
623
630
  * @license
624
631
  * Copyright Google Inc. All Rights Reserved.
@@ -639,35 +646,35 @@ var Gf=function(){function e(e,t){if(this.token=e,this.id=t,!e)throw new Error("
639
646
  *
640
647
  * Use of this source code is governed by an MIT-style license that can be
641
648
  * found in the LICENSE file at https://angular.io/license
642
- */var dp=function dp(){},pp=new Map,hp=function(){function e(){this.dirty=!0,this._results=[],this.changes=new rc,this.length=0}return e.prototype.map=function(e){return this._results.map(e)},e.prototype.filter=function(e){return this._results.filter(e)},e.prototype.find=function(e){return this._results.find(e)},e.prototype.reduce=function(e,t){return this._results.reduce(e,t)},e.prototype.forEach=function(e){this._results.forEach(e)},e.prototype.some=function(e){return this._results.some(e)},e.prototype.toArray=function(){return this._results.slice()},e.prototype[J()]=function(){return this._results[J()]()},e.prototype.toString=function(){return this._results.toString()},e.prototype.reset=function(e){this._results=function e(t){return t.reduce(function(t,n){var r=Array.isArray(n)?e(n):n;return t.concat(r)},[])}
649
+ */var Np=function(){function e(){this.dirty=!0,this._results=[],this.changes=new lc,this.length=0}return e.prototype.map=function(e){return this._results.map(e)},e.prototype.filter=function(e){return this._results.filter(e)},e.prototype.find=function(e){return this._results.find(e)},e.prototype.reduce=function(e,t){return this._results.reduce(e,t)},e.prototype.forEach=function(e){this._results.forEach(e)},e.prototype.some=function(e){return this._results.some(e)},e.prototype.toArray=function(){return this._results.slice()},e.prototype[W()]=function(){return this._results[W()]()},e.prototype.toString=function(){return this._results.toString()},e.prototype.reset=function(e){this._results=function e(t){return t.reduce(function(t,n){var r=Array.isArray(n)?e(n):n;return t.concat(r)},[])}
643
650
  /**
644
651
  * @license
645
652
  * Copyright Google Inc. All Rights Reserved.
646
653
  *
647
654
  * Use of this source code is governed by an MIT-style license that can be
648
655
  * found in the LICENSE file at https://angular.io/license
649
- */(e),this.dirty=!1,this.length=this._results.length,this.last=this._results[this.length-1],this.first=this._results[0]},e.prototype.notifyOnChanges=function(){this.changes.emit(this)},e.prototype.setDirty=function(){this.dirty=!0},e.prototype.destroy=function(){this.changes.complete(),this.changes.unsubscribe()},e}(),vp=function vp(){},gp={factoryPathPrefix:"",factoryPathSuffix:".ngfactory"},yp=function(){function e(e,t){this._compiler=e,this._config=t||gp}return e.prototype.load=function(e){return this._compiler instanceof Dd?this.loadFactory(e):this.loadAndCompile(e)},e.prototype.loadAndCompile=function(e){var t=this,n=c(e.split("#"),2),r=n[0],o=n[1];return void 0===o&&(o="default"),System.import(r).then(function(e){return e[o]}).then(function(e){return mp(e,r,o)}).then(function(e){return t._compiler.compileModuleAsync(e)})},e.prototype.loadFactory=function(e){var t=c(e.split("#"),2),n=t[0],r=t[1],o="NgFactory";return void 0===r&&(r="default",o=""),System.import(this._config.factoryPathPrefix+n+this._config.factoryPathSuffix).then(function(e){return e[r+o]}).then(function(e){return mp(e,n,r)})},a([Sf(),u(1,be()),s("design:paramtypes",[Dd,vp])],e)}();function mp(e,t,n){if(!e)throw new Error("Cannot find '"+n+"' in '"+t+"'");return e}
656
+ */(e),this.dirty=!1,this.length=this._results.length,this.last=this._results[this.length-1],this.first=this._results[0]},e.prototype.notifyOnChanges=function(){this.changes.emit(this)},e.prototype.setDirty=function(){this.dirty=!0},e.prototype.destroy=function(){this.changes.complete(),this.changes.unsubscribe()},e}(),Rp=function Rp(){},jp={factoryPathPrefix:"",factoryPathSuffix:".ngfactory"},Dp=function(){function e(e,t){this._compiler=e,this._config=t||jp}return e.prototype.load=function(e){return this._compiler instanceof Gd?this.loadFactory(e):this.loadAndCompile(e)},e.prototype.loadAndCompile=function(e){var t=this,n=c(e.split("#"),2),r=n[0],o=n[1];return void 0===o&&(o="default"),System.import(r).then(function(e){return e[o]}).then(function(e){return Ap(e,r,o)}).then(function(e){return t._compiler.compileModuleAsync(e)})},e.prototype.loadFactory=function(e){var t=c(e.split("#"),2),n=t[0],r=t[1],o="NgFactory";return void 0===r&&(r="default",o=""),System.import(this._config.factoryPathPrefix+n+this._config.factoryPathSuffix).then(function(e){return e[r+o]}).then(function(e){return Ap(e,n,r)})},a([$f(),u(1,It()),s("design:paramtypes",[Gd,Rp])],e)}();function Ap(e,t,n){if(!e)throw new Error("Cannot find '"+n+"' in '"+t+"'");return e}
650
657
  /**
651
658
  * @license
652
659
  * Copyright Google Inc. All Rights Reserved.
653
660
  *
654
661
  * Use of this source code is governed by an MIT-style license that can be
655
662
  * found in the LICENSE file at https://angular.io/license
656
- */var _p=function(){function e(){}return e.__NG_ELEMENT_ID__=function(){return wp(e,as)},e}(),wp=cr,bp=function(){function e(){}return e.__NG_ELEMENT_ID__=function(){return Cp()},e}(),Cp=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t]},xp=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return o(t,e),t}(bp),Ip=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return o(t,e),t}(xp),kp=function kp(e,t){this.name=e,this.callback=t},Ep=function(){function e(e,t,n){this.listeners=[],this.parent=null,this._debugContext=n,this.nativeNode=e,t&&t instanceof Op&&t.addChild(this)}return Object.defineProperty(e.prototype,"injector",{get:function(){return this._debugContext.injector},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"componentInstance",{get:function(){return this._debugContext.component},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"context",{get:function(){return this._debugContext.context},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"references",{get:function(){return this._debugContext.references},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"providerTokens",{get:function(){return this._debugContext.providerTokens},enumerable:!0,configurable:!0}),e}(),Op=function(e){function t(t,n,r){var o=e.call(this,t,n,r)||this;return o.properties={},o.attributes={},o.classes={},o.styles={},o.childNodes=[],o.nativeElement=t,o}return o(t,e),t.prototype.addChild=function(e){e&&(this.childNodes.push(e),e.parent=this)},t.prototype.removeChild=function(e){var t=this.childNodes.indexOf(e);-1!==t&&(e.parent=null,this.childNodes.splice(t,1))},t.prototype.insertChildrenAfter=function(e,t){var n,r=this,o=this.childNodes.indexOf(e);-1!==o&&((n=this.childNodes).splice.apply(n,f([o+1,0],t)),t.forEach(function(t){t.parent&&t.parent.removeChild(t),e.parent=r}))},t.prototype.insertBefore=function(e,t){var n=this.childNodes.indexOf(e);-1===n?this.addChild(t):(t.parent&&t.parent.removeChild(t),t.parent=this,this.childNodes.splice(n,0,t))},t.prototype.query=function(e){return this.queryAll(e)[0]||null},t.prototype.queryAll=function(e){var t=[];return Tp(this,e,t),t},t.prototype.queryAllNodes=function(e){var t=[];return Pp(this,e,t),t},Object.defineProperty(t.prototype,"children",{get:function(){return this.childNodes.filter(function(e){return e instanceof t})},enumerable:!0,configurable:!0}),t.prototype.triggerEventHandler=function(e,t){this.listeners.forEach(function(n){n.name==e&&n.callback(t)})},t}(Ep);function Tp(e,t,n){e.childNodes.forEach(function(e){e instanceof Op&&(t(e)&&n.push(e),Tp(e,t,n))})}function Pp(e,t,n){e instanceof Op&&e.childNodes.forEach(function(e){t(e)&&n.push(e),e instanceof Op&&Pp(e,t,n)})}function Np(){throw new Error("Missing proper ivy implementation.")}var Dp=function(){function e(e){this.nativeNode=e}return Object.defineProperty(e.prototype,"parent",{get:function(){var e=this.nativeNode.parentNode;return e?new Rp(e):null},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"injector",{get:function(){return du(this.nativeNode)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"componentInstance",{get:function(){var e=this.nativeNode;return e&&su(e)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"context",{get:function(){throw Np()},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"listeners",{get:function(){return[]},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"references",{get:function(){return function e(t){var n=hu(t);return void 0===n.localRefs&&(n.localRefs=function r(e,t){var n=e[He].data[t];if(n&&n.localNames){for(var r={},o=0;o<n.localNames.length;o+=2){var i=n.localNames[o+1];r[n.localNames[o]]=-1===i?Et(n,e):e[i]}return r}return null}(n.lViewData,n.nodeIndex)),n.localRefs||{}}(this.nativeNode)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"providerTokens",{get:function(){var e=hu(this.nativeNode,!1);if(!e)return[];for(var t,n=e.lViewData[He],r=[],o=n.data[e.nodeIndex].flags,i=o>>16,a=i+(4095&o),u=i;u<a;u++){var s=n.data[u];void 0!==(t=s).type&&void 0!==t.template&&void 0!==t.declaredInputs&&(s=s.type),r.push(s)}return r},enumerable:!0,configurable:!0}),e}(),Rp=function(e){function t(t){return e.call(this,t)||this}return o(t,e),Object.defineProperty(t.prototype,"nativeElement",{get:function(){return this.nativeNode.nodeType==Node.ELEMENT_NODE?this.nativeNode:null},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"name",{get:function(){return this.nativeElement.nodeName},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"properties",{get:function(){return hu(this.nativeNode),{}},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"attributes",{get:function(){throw Np()},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"classes",{get:function(){throw Np()},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"styles",{get:function(){throw Np()},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"childNodes",{get:function(){for(var e=this.nativeNode.childNodes,t=[],n=0;n<e.length;n++)t.push(Sp(e[n]));return t},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"children",{get:function(){var e=this.nativeElement;if(!e)return[];for(var t=e.children,n=[],r=0;r<t.length;r++)n.push(Sp(t[r]));return n},enumerable:!0,configurable:!0}),t.prototype.query=function(e){return this.queryAll(e)[0]||null},t.prototype.queryAll=function(e){var t=[];return jp(this,e,t,!0),t},t.prototype.queryAllNodes=function(e){var t=[];return jp(this,e,t,!1),t},t.prototype.triggerEventHandler=function(e,t){var n=document.createEvent("MouseEvent");n.initEvent(e,!0,!0),this.nativeElement.dispatchEvent(n)},t}(Dp);function jp(e,t,n,r){e instanceof Rp&&e.childNodes.forEach(function(e){t(e)&&n.push(e),e instanceof Rp&&(r&&!e.nativeElement||jp(e,t,n,r))})}var Ap=new Map;function Sp(e){return e instanceof Node?e.nodeType==Node.ELEMENT_NODE?new Rp(e):new Dp(e):null}var Vp=function Mp(e){return Ap.get(e)||null};function Fp(e){Ap.set(e.nativeNode,e)}var Hp=Ep,Lp=Op,Bp=function(){function e(){}return e.prototype.supports=function(e){return vt(e)},e.prototype.create=function(e){return new zp(e)},e}(),Up=function(e,t){return t},zp=function(){function e(e){this.length=0,this._linkedRecords=null,this._unlinkedRecords=null,this._previousItHead=null,this._itHead=null,this._itTail=null,this._additionsHead=null,this._additionsTail=null,this._movesHead=null,this._movesTail=null,this._removalsHead=null,this._removalsTail=null,this._identityChangesHead=null,this._identityChangesTail=null,this._trackByFn=e||Up}return e.prototype.forEachItem=function(e){var t;for(t=this._itHead;null!==t;t=t._next)e(t)},e.prototype.forEachOperation=function(e){for(var t=this._itHead,n=this._removalsHead,r=0,o=null;t||n;){var i=!n||t&&t.currentIndex<Kp(n,r,o)?t:n,a=Kp(i,r,o),u=i.currentIndex;if(i===n)r--,n=n._nextRemoved;else if(t=t._next,null==i.previousIndex)r++;else{o||(o=[]);var s=a-r,l=u-r;if(s!=l){for(var c=0;c<s;c++){var f=c<o.length?o[c]:o[c]=0,d=f+c;l<=d&&d<s&&(o[c]=f+1)}o[i.previousIndex]=l-s}}a!==u&&e(i,a,u)}},e.prototype.forEachPreviousItem=function(e){var t;for(t=this._previousItHead;null!==t;t=t._nextPrevious)e(t)},e.prototype.forEachAddedItem=function(e){var t;for(t=this._additionsHead;null!==t;t=t._nextAdded)e(t)},e.prototype.forEachMovedItem=function(e){var t;for(t=this._movesHead;null!==t;t=t._nextMoved)e(t)},e.prototype.forEachRemovedItem=function(e){var t;for(t=this._removalsHead;null!==t;t=t._nextRemoved)e(t)},e.prototype.forEachIdentityChange=function(e){var t;for(t=this._identityChangesHead;null!==t;t=t._nextIdentityChange)e(t)},e.prototype.diff=function(e){if(null==e&&(e=[]),!vt(e))throw new Error("Error trying to diff '"+te(e)+"'. Only arrays and iterables are allowed");return this.check(e)?this:null},e.prototype.onDestroy=function(){},e.prototype.check=function(e){var t=this;this._reset();var n,r,o,i=this._itHead,a=!1;if(Array.isArray(e)){this.length=e.length;for(var u=0;u<this.length;u++)o=this._trackByFn(u,r=e[u]),null!==i&&ee(i.trackById,o)?(a&&(i=this._verifyReinsertion(i,r,o,u)),ee(i.item,r)||this._addIdentityChange(i,r)):(i=this._mismatch(i,r,o,u),a=!0),i=i._next}else n=0,function s(e,t){if(Array.isArray(e))for(var n=0;n<e.length;n++)t(e[n]);else for(var r=e[J()](),o=void 0;!(o=r.next()).done;)t(o.value)}(e,function(e){o=t._trackByFn(n,e),null!==i&&ee(i.trackById,o)?(a&&(i=t._verifyReinsertion(i,e,o,n)),ee(i.item,e)||t._addIdentityChange(i,e)):(i=t._mismatch(i,e,o,n),a=!0),i=i._next,n++}),this.length=n;return this._truncate(i),this.collection=e,this.isDirty},Object.defineProperty(e.prototype,"isDirty",{get:function(){return null!==this._additionsHead||null!==this._movesHead||null!==this._removalsHead||null!==this._identityChangesHead},enumerable:!0,configurable:!0}),e.prototype._reset=function(){if(this.isDirty){var e=void 0,t=void 0;for(e=this._previousItHead=this._itHead;null!==e;e=e._next)e._nextPrevious=e._next;for(e=this._additionsHead;null!==e;e=e._nextAdded)e.previousIndex=e.currentIndex;for(this._additionsHead=this._additionsTail=null,e=this._movesHead;null!==e;e=t)e.previousIndex=e.currentIndex,t=e._nextMoved;this._movesHead=this._movesTail=null,this._removalsHead=this._removalsTail=null,this._identityChangesHead=this._identityChangesTail=null}},e.prototype._mismatch=function(e,t,n,r){var o;return null===e?o=this._itTail:(o=e._prev,this._remove(e)),null!==(e=null===this._linkedRecords?null:this._linkedRecords.get(n,r))?(ee(e.item,t)||this._addIdentityChange(e,t),this._moveAfter(e,o,r)):null!==(e=null===this._unlinkedRecords?null:this._unlinkedRecords.get(n,null))?(ee(e.item,t)||this._addIdentityChange(e,t),this._reinsertAfter(e,o,r)):e=this._addAfter(new Qp(t,n),o,r),e},e.prototype._verifyReinsertion=function(e,t,n,r){var o=null===this._unlinkedRecords?null:this._unlinkedRecords.get(n,null);return null!==o?e=this._reinsertAfter(o,e._prev,r):e.currentIndex!=r&&(e.currentIndex=r,this._addToMoves(e,r)),e},e.prototype._truncate=function(e){for(;null!==e;){var t=e._next;this._addToRemovals(this._unlink(e)),e=t}null!==this._unlinkedRecords&&this._unlinkedRecords.clear(),null!==this._additionsTail&&(this._additionsTail._nextAdded=null),null!==this._movesTail&&(this._movesTail._nextMoved=null),null!==this._itTail&&(this._itTail._next=null),null!==this._removalsTail&&(this._removalsTail._nextRemoved=null),null!==this._identityChangesTail&&(this._identityChangesTail._nextIdentityChange=null)},e.prototype._reinsertAfter=function(e,t,n){null!==this._unlinkedRecords&&this._unlinkedRecords.remove(e);var r=e._prevRemoved,o=e._nextRemoved;return null===r?this._removalsHead=o:r._nextRemoved=o,null===o?this._removalsTail=r:o._prevRemoved=r,this._insertAfter(e,t,n),this._addToMoves(e,n),e},e.prototype._moveAfter=function(e,t,n){return this._unlink(e),this._insertAfter(e,t,n),this._addToMoves(e,n),e},e.prototype._addAfter=function(e,t,n){return this._insertAfter(e,t,n),this._additionsTail=null===this._additionsTail?this._additionsHead=e:this._additionsTail._nextAdded=e,e},e.prototype._insertAfter=function(e,t,n){var r=null===t?this._itHead:t._next;return e._next=r,e._prev=t,null===r?this._itTail=e:r._prev=e,null===t?this._itHead=e:t._next=e,null===this._linkedRecords&&(this._linkedRecords=new qp),this._linkedRecords.put(e),e.currentIndex=n,e},e.prototype._remove=function(e){return this._addToRemovals(this._unlink(e))},e.prototype._unlink=function(e){null!==this._linkedRecords&&this._linkedRecords.remove(e);var t=e._prev,n=e._next;return null===t?this._itHead=n:t._next=n,null===n?this._itTail=t:n._prev=t,e},e.prototype._addToMoves=function(e,t){return e.previousIndex===t?e:(this._movesTail=null===this._movesTail?this._movesHead=e:this._movesTail._nextMoved=e,e)},e.prototype._addToRemovals=function(e){return null===this._unlinkedRecords&&(this._unlinkedRecords=new qp),this._unlinkedRecords.put(e),e.currentIndex=null,e._nextRemoved=null,null===this._removalsTail?(this._removalsTail=this._removalsHead=e,e._prevRemoved=null):(e._prevRemoved=this._removalsTail,this._removalsTail=this._removalsTail._nextRemoved=e),e},e.prototype._addIdentityChange=function(e,t){return e.item=t,this._identityChangesTail=null===this._identityChangesTail?this._identityChangesHead=e:this._identityChangesTail._nextIdentityChange=e,e},e}(),Qp=function Qp(e,t){this.item=e,this.trackById=t,this.currentIndex=null,this.previousIndex=null,this._nextPrevious=null,this._prev=null,this._next=null,this._prevDup=null,this._nextDup=null,this._prevRemoved=null,this._nextRemoved=null,this._nextAdded=null,this._nextMoved=null,this._nextIdentityChange=null},Zp=function(){function e(){this._head=null,this._tail=null}return e.prototype.add=function(e){null===this._head?(this._head=this._tail=e,e._nextDup=null,e._prevDup=null):(this._tail._nextDup=e,e._prevDup=this._tail,e._nextDup=null,this._tail=e)},e.prototype.get=function(e,t){var n;for(n=this._head;null!==n;n=n._nextDup)if((null===t||t<=n.currentIndex)&&ee(n.trackById,e))return n;return null},e.prototype.remove=function(e){var t=e._prevDup,n=e._nextDup;return null===t?this._head=n:t._nextDup=n,null===n?this._tail=t:n._prevDup=t,null===this._head},e}(),qp=function(){function e(){this.map=new Map}return e.prototype.put=function(e){var t=e.trackById,n=this.map.get(t);n||(n=new Zp,this.map.set(t,n)),n.add(e)},e.prototype.get=function(e,t){var n=this.map.get(e);return n?n.get(e,t):null},e.prototype.remove=function(e){var t=e.trackById;return this.map.get(t).remove(e)&&this.map.delete(t),e},Object.defineProperty(e.prototype,"isEmpty",{get:function(){return 0===this.map.size},enumerable:!0,configurable:!0}),e.prototype.clear=function(){this.map.clear()},e}();function Kp(e,t,n){var r=e.previousIndex;if(null===r)return r;var o=0;return n&&r<n.length&&(o=n[r]),r+t+o}
663
+ */var Sp=function(){function e(){}return e.__NG_ELEMENT_ID__=function(){return Vp(e,fs)},e}(),Vp=iu,Mp=function(){function e(){}return e.__NG_ELEMENT_ID__=function(){return Fp()},e}(),Fp=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t]},Hp=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return o(t,e),t}(Mp),Lp=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return o(t,e),t}(Hp),Bp=function Bp(e,t){this.name=e,this.callback=t},Up=function(){function e(e,t,n){this.listeners=[],this.parent=null,this._debugContext=n,this.nativeNode=e,t&&t instanceof zp&&t.addChild(this)}return Object.defineProperty(e.prototype,"injector",{get:function(){return this._debugContext.injector},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"componentInstance",{get:function(){return this._debugContext.component},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"context",{get:function(){return this._debugContext.context},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"references",{get:function(){return this._debugContext.references},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"providerTokens",{get:function(){return this._debugContext.providerTokens},enumerable:!0,configurable:!0}),e}(),zp=function(e){function t(t,n,r){var o=e.call(this,t,n,r)||this;return o.properties={},o.attributes={},o.classes={},o.styles={},o.childNodes=[],o.nativeElement=t,o}return o(t,e),t.prototype.addChild=function(e){e&&(this.childNodes.push(e),e.parent=this)},t.prototype.removeChild=function(e){var t=this.childNodes.indexOf(e);-1!==t&&(e.parent=null,this.childNodes.splice(t,1))},t.prototype.insertChildrenAfter=function(e,t){var n,r=this,o=this.childNodes.indexOf(e);-1!==o&&((n=this.childNodes).splice.apply(n,f([o+1,0],t)),t.forEach(function(t){t.parent&&t.parent.removeChild(t),e.parent=r}))},t.prototype.insertBefore=function(e,t){var n=this.childNodes.indexOf(e);-1===n?this.addChild(t):(t.parent&&t.parent.removeChild(t),t.parent=this,this.childNodes.splice(n,0,t))},t.prototype.query=function(e){return this.queryAll(e)[0]||null},t.prototype.queryAll=function(e){var t=[];return Qp(this,e,t),t},t.prototype.queryAllNodes=function(e){var t=[];return Zp(this,e,t),t},Object.defineProperty(t.prototype,"children",{get:function(){return this.childNodes.filter(function(e){return e instanceof t})},enumerable:!0,configurable:!0}),t.prototype.triggerEventHandler=function(e,t){this.listeners.forEach(function(n){n.name==e&&n.callback(t)})},t}(Up);function Qp(e,t,n){e.childNodes.forEach(function(e){e instanceof zp&&(t(e)&&n.push(e),Qp(e,t,n))})}function Zp(e,t,n){e instanceof zp&&e.childNodes.forEach(function(e){t(e)&&n.push(e),e instanceof zp&&Zp(e,t,n)})}var qp=function(){function e(e){this.nativeNode=e}return Object.defineProperty(e.prototype,"parent",{get:function(){var e=this.nativeNode.parentNode;return e?new Kp(e):null},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"injector",{get:function(){return er(this.nativeNode)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"componentInstance",{get:function(){var e=this.nativeNode;return e&&Gn(e)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"context",{get:function(){return Yn(this.nativeNode)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"listeners",{get:function(){return ar(this.nativeNode).filter(ir)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"references",{get:function(){return function e(t){var n=nr(t);return void 0===n.localRefs&&(n.localRefs=function r(e,t){var n=e[be].data[t];if(n&&n.localNames){for(var r={},o=0;o<n.localNames.length;o+=2){var i=n.localNames[o+1];r[n.localNames[o]]=-1===i?tt(n,e):e[i]}return r}return null}(n.lView,n.nodeIndex)),n.localRefs||{}}(this.nativeNode)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"providerTokens",{get:function(){return function e(t){var n=nr(t,!1);if(!n)return[];for(var r,o=n.lView[be],i=o.data[n.nodeIndex],a=[],u=i.directiveEnd,s=65535&i.providerIndexes;s<u;s++){var l=o.data[s];void 0!==(r=l).type&&void 0!==r.template&&void 0!==r.declaredInputs&&(l=l.type),a.push(l)}return a}(this.nativeNode)},enumerable:!0,configurable:!0}),e}(),Kp=function(e){function t(t){return e.call(this,t)||this}return o(t,e),Object.defineProperty(t.prototype,"nativeElement",{get:function(){return this.nativeNode.nodeType==Node.ELEMENT_NODE?this.nativeNode:null},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"name",{get:function(){return this.nativeElement.nodeName},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"properties",{get:function(){return nr(this.nativeNode),{}},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"attributes",{get:function(){var e={},t=this.nativeElement;if(t)for(var n=t.attributes,r=0;r<n.length;r++){var o=n[r];e[o.name]=o.value}return e},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"classes",{get:function(){var e={},t=this.nativeElement;if(t){var n=or(t),r=n.lView[n.nodeIndex];if(lo(n.nodeIndex,n.lView)){for(var o=9;o<r.length;o+=4)if(ko(r,o)){var i=Uo(r,o),a=Bo(r,o);"boolean"==typeof a&&(e[i]=a)}}else{var u=t.classList;for(o=0;o<u.length;o++)e[u[o]]=!0}}return e},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"styles",{get:function(){var e={},t=this.nativeElement;if(t){var n=or(t),r=n.lView[n.nodeIndex];if(lo(n.nodeIndex,n.lView)){for(var o=9;o<r.length;o+=4)if(!ko(r,o)){var i=Uo(r,o),a=Bo(r,o);null!==a&&(e[i]=a)}}else{var u=t.style;for(o=0;o<u.length;o++){var s=u.item(o);e[s]=u.getPropertyValue(s)}}}return e},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"childNodes",{get:function(){for(var e=this.nativeNode.childNodes,t=[],n=0;n<e.length;n++)t.push(Yp(e[n]));return t},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"children",{get:function(){var e=this.nativeElement;if(!e)return[];for(var t=e.children,n=[],r=0;r<t.length;r++)n.push(Yp(t[r]));return n},enumerable:!0,configurable:!0}),t.prototype.query=function(e){return this.queryAll(e)[0]||null},t.prototype.queryAll=function(e){var t=[];return Wp(this,e,t,!0),t},t.prototype.queryAllNodes=function(e){var t=[];return Wp(this,e,t,!1),t},t.prototype.triggerEventHandler=function(e,t){this.listeners.forEach(function(n){n.name===e&&n.callback(t)})},t}(qp);function Wp(e,t,n,r){e instanceof Kp&&e.childNodes.forEach(function(e){t(e)&&n.push(e),e instanceof Kp&&(r&&!e.nativeElement||Wp(e,t,n,r))})}var Gp=new Map;function Yp(e){return e instanceof Node?e.nodeType==Node.ELEMENT_NODE?new Kp(e):new qp(e):null}var $p=function Jp(e){return Gp.get(e)||null};function Xp(e){Gp.set(e.nativeNode,e)}var eh=Up,th=zp,nh=function(){function e(){}return e.prototype.supports=function(e){return pr(e)},e.prototype.create=function(e){return new oh(e)},e}(),rh=function(e,t){return t},oh=function(){function e(e){this.length=0,this._linkedRecords=null,this._unlinkedRecords=null,this._previousItHead=null,this._itHead=null,this._itTail=null,this._additionsHead=null,this._additionsTail=null,this._movesHead=null,this._movesTail=null,this._removalsHead=null,this._removalsTail=null,this._identityChangesHead=null,this._identityChangesTail=null,this._trackByFn=e||rh}return e.prototype.forEachItem=function(e){var t;for(t=this._itHead;null!==t;t=t._next)e(t)},e.prototype.forEachOperation=function(e){for(var t=this._itHead,n=this._removalsHead,r=0,o=null;t||n;){var i=!n||t&&t.currentIndex<sh(n,r,o)?t:n,a=sh(i,r,o),u=i.currentIndex;if(i===n)r--,n=n._nextRemoved;else if(t=t._next,null==i.previousIndex)r++;else{o||(o=[]);var s=a-r,l=u-r;if(s!=l){for(var c=0;c<s;c++){var f=c<o.length?o[c]:o[c]=0,d=f+c;l<=d&&d<s&&(o[c]=f+1)}o[i.previousIndex]=l-s}}a!==u&&e(i,a,u)}},e.prototype.forEachPreviousItem=function(e){var t;for(t=this._previousItHead;null!==t;t=t._nextPrevious)e(t)},e.prototype.forEachAddedItem=function(e){var t;for(t=this._additionsHead;null!==t;t=t._nextAdded)e(t)},e.prototype.forEachMovedItem=function(e){var t;for(t=this._movesHead;null!==t;t=t._nextMoved)e(t)},e.prototype.forEachRemovedItem=function(e){var t;for(t=this._removalsHead;null!==t;t=t._nextRemoved)e(t)},e.prototype.forEachIdentityChange=function(e){var t;for(t=this._identityChangesHead;null!==t;t=t._nextIdentityChange)e(t)},e.prototype.diff=function(e){if(null==e&&(e=[]),!pr(e))throw new Error("Error trying to diff '"+$(e)+"'. Only arrays and iterables are allowed");return this.check(e)?this:null},e.prototype.onDestroy=function(){},e.prototype.check=function(e){var t=this;this._reset();var n,r,o,i=this._itHead,a=!1;if(Array.isArray(e)){this.length=e.length;for(var u=0;u<this.length;u++)o=this._trackByFn(u,r=e[u]),null!==i&&Y(i.trackById,o)?(a&&(i=this._verifyReinsertion(i,r,o,u)),Y(i.item,r)||this._addIdentityChange(i,r)):(i=this._mismatch(i,r,o,u),a=!0),i=i._next}else n=0,function s(e,t){if(Array.isArray(e))for(var n=0;n<e.length;n++)t(e[n]);else for(var r=e[W()](),o=void 0;!(o=r.next()).done;)t(o.value)}(e,function(e){o=t._trackByFn(n,e),null!==i&&Y(i.trackById,o)?(a&&(i=t._verifyReinsertion(i,e,o,n)),Y(i.item,e)||t._addIdentityChange(i,e)):(i=t._mismatch(i,e,o,n),a=!0),i=i._next,n++}),this.length=n;return this._truncate(i),this.collection=e,this.isDirty},Object.defineProperty(e.prototype,"isDirty",{get:function(){return null!==this._additionsHead||null!==this._movesHead||null!==this._removalsHead||null!==this._identityChangesHead},enumerable:!0,configurable:!0}),e.prototype._reset=function(){if(this.isDirty){var e=void 0,t=void 0;for(e=this._previousItHead=this._itHead;null!==e;e=e._next)e._nextPrevious=e._next;for(e=this._additionsHead;null!==e;e=e._nextAdded)e.previousIndex=e.currentIndex;for(this._additionsHead=this._additionsTail=null,e=this._movesHead;null!==e;e=t)e.previousIndex=e.currentIndex,t=e._nextMoved;this._movesHead=this._movesTail=null,this._removalsHead=this._removalsTail=null,this._identityChangesHead=this._identityChangesTail=null}},e.prototype._mismatch=function(e,t,n,r){var o;return null===e?o=this._itTail:(o=e._prev,this._remove(e)),null!==(e=null===this._linkedRecords?null:this._linkedRecords.get(n,r))?(Y(e.item,t)||this._addIdentityChange(e,t),this._moveAfter(e,o,r)):null!==(e=null===this._unlinkedRecords?null:this._unlinkedRecords.get(n,null))?(Y(e.item,t)||this._addIdentityChange(e,t),this._reinsertAfter(e,o,r)):e=this._addAfter(new ih(t,n),o,r),e},e.prototype._verifyReinsertion=function(e,t,n,r){var o=null===this._unlinkedRecords?null:this._unlinkedRecords.get(n,null);return null!==o?e=this._reinsertAfter(o,e._prev,r):e.currentIndex!=r&&(e.currentIndex=r,this._addToMoves(e,r)),e},e.prototype._truncate=function(e){for(;null!==e;){var t=e._next;this._addToRemovals(this._unlink(e)),e=t}null!==this._unlinkedRecords&&this._unlinkedRecords.clear(),null!==this._additionsTail&&(this._additionsTail._nextAdded=null),null!==this._movesTail&&(this._movesTail._nextMoved=null),null!==this._itTail&&(this._itTail._next=null),null!==this._removalsTail&&(this._removalsTail._nextRemoved=null),null!==this._identityChangesTail&&(this._identityChangesTail._nextIdentityChange=null)},e.prototype._reinsertAfter=function(e,t,n){null!==this._unlinkedRecords&&this._unlinkedRecords.remove(e);var r=e._prevRemoved,o=e._nextRemoved;return null===r?this._removalsHead=o:r._nextRemoved=o,null===o?this._removalsTail=r:o._prevRemoved=r,this._insertAfter(e,t,n),this._addToMoves(e,n),e},e.prototype._moveAfter=function(e,t,n){return this._unlink(e),this._insertAfter(e,t,n),this._addToMoves(e,n),e},e.prototype._addAfter=function(e,t,n){return this._insertAfter(e,t,n),this._additionsTail=null===this._additionsTail?this._additionsHead=e:this._additionsTail._nextAdded=e,e},e.prototype._insertAfter=function(e,t,n){var r=null===t?this._itHead:t._next;return e._next=r,e._prev=t,null===r?this._itTail=e:r._prev=e,null===t?this._itHead=e:t._next=e,null===this._linkedRecords&&(this._linkedRecords=new uh),this._linkedRecords.put(e),e.currentIndex=n,e},e.prototype._remove=function(e){return this._addToRemovals(this._unlink(e))},e.prototype._unlink=function(e){null!==this._linkedRecords&&this._linkedRecords.remove(e);var t=e._prev,n=e._next;return null===t?this._itHead=n:t._next=n,null===n?this._itTail=t:n._prev=t,e},e.prototype._addToMoves=function(e,t){return e.previousIndex===t?e:(this._movesTail=null===this._movesTail?this._movesHead=e:this._movesTail._nextMoved=e,e)},e.prototype._addToRemovals=function(e){return null===this._unlinkedRecords&&(this._unlinkedRecords=new uh),this._unlinkedRecords.put(e),e.currentIndex=null,e._nextRemoved=null,null===this._removalsTail?(this._removalsTail=this._removalsHead=e,e._prevRemoved=null):(e._prevRemoved=this._removalsTail,this._removalsTail=this._removalsTail._nextRemoved=e),e},e.prototype._addIdentityChange=function(e,t){return e.item=t,this._identityChangesTail=null===this._identityChangesTail?this._identityChangesHead=e:this._identityChangesTail._nextIdentityChange=e,e},e}(),ih=function ih(e,t){this.item=e,this.trackById=t,this.currentIndex=null,this.previousIndex=null,this._nextPrevious=null,this._prev=null,this._next=null,this._prevDup=null,this._nextDup=null,this._prevRemoved=null,this._nextRemoved=null,this._nextAdded=null,this._nextMoved=null,this._nextIdentityChange=null},ah=function(){function e(){this._head=null,this._tail=null}return e.prototype.add=function(e){null===this._head?(this._head=this._tail=e,e._nextDup=null,e._prevDup=null):(this._tail._nextDup=e,e._prevDup=this._tail,e._nextDup=null,this._tail=e)},e.prototype.get=function(e,t){var n;for(n=this._head;null!==n;n=n._nextDup)if((null===t||t<=n.currentIndex)&&Y(n.trackById,e))return n;return null},e.prototype.remove=function(e){var t=e._prevDup,n=e._nextDup;return null===t?this._head=n:t._nextDup=n,null===n?this._tail=t:n._prevDup=t,null===this._head},e}(),uh=function(){function e(){this.map=new Map}return e.prototype.put=function(e){var t=e.trackById,n=this.map.get(t);n||(n=new ah,this.map.set(t,n)),n.add(e)},e.prototype.get=function(e,t){var n=this.map.get(e);return n?n.get(e,t):null},e.prototype.remove=function(e){var t=e.trackById;return this.map.get(t).remove(e)&&this.map.delete(t),e},Object.defineProperty(e.prototype,"isEmpty",{get:function(){return 0===this.map.size},enumerable:!0,configurable:!0}),e.prototype.clear=function(){this.map.clear()},e}();function sh(e,t,n){var r=e.previousIndex;if(null===r)return r;var o=0;return n&&r<n.length&&(o=n[r]),r+t+o}
657
664
  /**
658
665
  * @license
659
666
  * Copyright Google Inc. All Rights Reserved.
660
667
  *
661
668
  * Use of this source code is governed by an MIT-style license that can be
662
669
  * found in the LICENSE file at https://angular.io/license
663
- */var Wp,Gp=function(){function e(){}return e.prototype.supports=function(e){return e instanceof Map||gt(e)},e.prototype.create=function(){return new Yp},e}(),Yp=function(){function e(){this._records=new Map,this._mapHead=null,this._appendAfter=null,this._previousMapHead=null,this._changesHead=null,this._changesTail=null,this._additionsHead=null,this._additionsTail=null,this._removalsHead=null,this._removalsTail=null}return Object.defineProperty(e.prototype,"isDirty",{get:function(){return null!==this._additionsHead||null!==this._changesHead||null!==this._removalsHead},enumerable:!0,configurable:!0}),e.prototype.forEachItem=function(e){var t;for(t=this._mapHead;null!==t;t=t._next)e(t)},e.prototype.forEachPreviousItem=function(e){var t;for(t=this._previousMapHead;null!==t;t=t._nextPrevious)e(t)},e.prototype.forEachChangedItem=function(e){var t;for(t=this._changesHead;null!==t;t=t._nextChanged)e(t)},e.prototype.forEachAddedItem=function(e){var t;for(t=this._additionsHead;null!==t;t=t._nextAdded)e(t)},e.prototype.forEachRemovedItem=function(e){var t;for(t=this._removalsHead;null!==t;t=t._nextRemoved)e(t)},e.prototype.diff=function(e){if(e){if(!(e instanceof Map||gt(e)))throw new Error("Error trying to diff '"+te(e)+"'. Only maps and objects are allowed")}else e=new Map;return this.check(e)?this:null},e.prototype.onDestroy=function(){},e.prototype.check=function(e){var t=this;this._reset();var n=this._mapHead;if(this._appendAfter=null,this._forEach(e,function(e,r){if(n&&n.key===r)t._maybeAddToChanges(n,e),t._appendAfter=n,n=n._next;else{var o=t._getOrCreateRecordForKey(r,e);n=t._insertBeforeOrAppend(n,o)}}),n){n._prev&&(n._prev._next=null),this._removalsHead=n;for(var r=n;null!==r;r=r._nextRemoved)r===this._mapHead&&(this._mapHead=null),this._records.delete(r.key),r._nextRemoved=r._next,r.previousValue=r.currentValue,r.currentValue=null,r._prev=null,r._next=null}return this._changesTail&&(this._changesTail._nextChanged=null),this._additionsTail&&(this._additionsTail._nextAdded=null),this.isDirty},e.prototype._insertBeforeOrAppend=function(e,t){if(e){var n=e._prev;return t._next=e,t._prev=n,e._prev=t,n&&(n._next=t),e===this._mapHead&&(this._mapHead=t),this._appendAfter=e,e}return this._appendAfter?(this._appendAfter._next=t,t._prev=this._appendAfter):this._mapHead=t,this._appendAfter=t,null},e.prototype._getOrCreateRecordForKey=function(e,t){if(this._records.has(e)){var n=this._records.get(e);this._maybeAddToChanges(n,t);var r=n._prev,o=n._next;return r&&(r._next=o),o&&(o._prev=r),n._next=null,n._prev=null,n}var i=new $p(e);return this._records.set(e,i),i.currentValue=t,this._addToAdditions(i),i},e.prototype._reset=function(){if(this.isDirty){var e=void 0;for(this._previousMapHead=this._mapHead,e=this._previousMapHead;null!==e;e=e._next)e._nextPrevious=e._next;for(e=this._changesHead;null!==e;e=e._nextChanged)e.previousValue=e.currentValue;for(e=this._additionsHead;null!=e;e=e._nextAdded)e.previousValue=e.currentValue;this._changesHead=this._changesTail=null,this._additionsHead=this._additionsTail=null,this._removalsHead=null}},e.prototype._maybeAddToChanges=function(e,t){ee(t,e.currentValue)||(e.previousValue=e.currentValue,e.currentValue=t,this._addToChanges(e))},e.prototype._addToAdditions=function(e){null===this._additionsHead?this._additionsHead=this._additionsTail=e:(this._additionsTail._nextAdded=e,this._additionsTail=e)},e.prototype._addToChanges=function(e){null===this._changesHead?this._changesHead=this._changesTail=e:(this._changesTail._nextChanged=e,this._changesTail=e)},e.prototype._forEach=function(e,t){e instanceof Map?e.forEach(t):Object.keys(e).forEach(function(n){return t(e[n],n)})},e}(),$p=function $p(e){this.key=e,this.previousValue=null,this.currentValue=null,this._nextPrevious=null,this._next=null,this._prev=null,this._nextAdded=null,this._nextRemoved=null,this._nextChanged=null},Jp=function(){function e(e){this.factories=e}return e.create=function(t,n){if(null!=n){var r=n.factories.slice();t=t.concat(r)}return new e(t)},e.extend=function(t){return{provide:e,useFactory:function(n){if(!n)throw new Error("Cannot extend IterableDiffers without a parent injector");return e.create(t,n)},deps:[[e,new xe,new be]]}},e.prototype.find=function(e){var t=this.factories.find(function(t){return t.supports(e)});if(null!=t)return t;throw new Error("Cannot find a differ supporting object '"+e+"' of type '"+function n(e){return e.name||typeof e}
670
+ */var lh,ch=function(){function e(){}return e.prototype.supports=function(e){return e instanceof Map||hr(e)},e.prototype.create=function(){return new fh},e}(),fh=function(){function e(){this._records=new Map,this._mapHead=null,this._appendAfter=null,this._previousMapHead=null,this._changesHead=null,this._changesTail=null,this._additionsHead=null,this._additionsTail=null,this._removalsHead=null,this._removalsTail=null}return Object.defineProperty(e.prototype,"isDirty",{get:function(){return null!==this._additionsHead||null!==this._changesHead||null!==this._removalsHead},enumerable:!0,configurable:!0}),e.prototype.forEachItem=function(e){var t;for(t=this._mapHead;null!==t;t=t._next)e(t)},e.prototype.forEachPreviousItem=function(e){var t;for(t=this._previousMapHead;null!==t;t=t._nextPrevious)e(t)},e.prototype.forEachChangedItem=function(e){var t;for(t=this._changesHead;null!==t;t=t._nextChanged)e(t)},e.prototype.forEachAddedItem=function(e){var t;for(t=this._additionsHead;null!==t;t=t._nextAdded)e(t)},e.prototype.forEachRemovedItem=function(e){var t;for(t=this._removalsHead;null!==t;t=t._nextRemoved)e(t)},e.prototype.diff=function(e){if(e){if(!(e instanceof Map||hr(e)))throw new Error("Error trying to diff '"+$(e)+"'. Only maps and objects are allowed")}else e=new Map;return this.check(e)?this:null},e.prototype.onDestroy=function(){},e.prototype.check=function(e){var t=this;this._reset();var n=this._mapHead;if(this._appendAfter=null,this._forEach(e,function(e,r){if(n&&n.key===r)t._maybeAddToChanges(n,e),t._appendAfter=n,n=n._next;else{var o=t._getOrCreateRecordForKey(r,e);n=t._insertBeforeOrAppend(n,o)}}),n){n._prev&&(n._prev._next=null),this._removalsHead=n;for(var r=n;null!==r;r=r._nextRemoved)r===this._mapHead&&(this._mapHead=null),this._records.delete(r.key),r._nextRemoved=r._next,r.previousValue=r.currentValue,r.currentValue=null,r._prev=null,r._next=null}return this._changesTail&&(this._changesTail._nextChanged=null),this._additionsTail&&(this._additionsTail._nextAdded=null),this.isDirty},e.prototype._insertBeforeOrAppend=function(e,t){if(e){var n=e._prev;return t._next=e,t._prev=n,e._prev=t,n&&(n._next=t),e===this._mapHead&&(this._mapHead=t),this._appendAfter=e,e}return this._appendAfter?(this._appendAfter._next=t,t._prev=this._appendAfter):this._mapHead=t,this._appendAfter=t,null},e.prototype._getOrCreateRecordForKey=function(e,t){if(this._records.has(e)){var n=this._records.get(e);this._maybeAddToChanges(n,t);var r=n._prev,o=n._next;return r&&(r._next=o),o&&(o._prev=r),n._next=null,n._prev=null,n}var i=new dh(e);return this._records.set(e,i),i.currentValue=t,this._addToAdditions(i),i},e.prototype._reset=function(){if(this.isDirty){var e=void 0;for(this._previousMapHead=this._mapHead,e=this._previousMapHead;null!==e;e=e._next)e._nextPrevious=e._next;for(e=this._changesHead;null!==e;e=e._nextChanged)e.previousValue=e.currentValue;for(e=this._additionsHead;null!=e;e=e._nextAdded)e.previousValue=e.currentValue;this._changesHead=this._changesTail=null,this._additionsHead=this._additionsTail=null,this._removalsHead=null}},e.prototype._maybeAddToChanges=function(e,t){Y(t,e.currentValue)||(e.previousValue=e.currentValue,e.currentValue=t,this._addToChanges(e))},e.prototype._addToAdditions=function(e){null===this._additionsHead?this._additionsHead=this._additionsTail=e:(this._additionsTail._nextAdded=e,this._additionsTail=e)},e.prototype._addToChanges=function(e){null===this._changesHead?this._changesHead=this._changesTail=e:(this._changesTail._nextChanged=e,this._changesTail=e)},e.prototype._forEach=function(e,t){e instanceof Map?e.forEach(t):Object.keys(e).forEach(function(n){return t(e[n],n)})},e}(),dh=function dh(e){this.key=e,this.previousValue=null,this.currentValue=null,this._nextPrevious=null,this._next=null,this._prev=null,this._nextAdded=null,this._nextRemoved=null,this._nextChanged=null},ph=function(){function e(e){this.factories=e}return e.create=function(t,n){if(null!=n){var r=n.factories.slice();t=t.concat(r)}return new e(t)},e.extend=function(t){return{provide:e,useFactory:function(n){if(!n)throw new Error("Cannot extend IterableDiffers without a parent injector");return e.create(t,n)},deps:[[e,new Et,new It]]}},e.prototype.find=function(e){var t=this.factories.find(function(t){return t.supports(e)});if(null!=t)return t;throw new Error("Cannot find a differ supporting object '"+e+"' of type '"+function n(e){return e.name||typeof e}
664
671
  /**
665
672
  * @license
666
673
  * Copyright Google Inc. All Rights Reserved.
667
674
  *
668
675
  * Use of this source code is governed by an MIT-style license that can be
669
676
  * found in the LICENSE file at https://angular.io/license
670
- */(e)+"'")},e.ngInjectableDef=C({providedIn:"root",factory:function(){return new e([new Bp])}}),e}(),Xp=function(){function e(e){this.factories=e}return e.create=function(t,n){if(n){var r=n.factories.slice();t=t.concat(r)}return new e(t)},e.extend=function(t){return{provide:e,useFactory:function(n){if(!n)throw new Error("Cannot extend KeyValueDiffers without a parent injector");return e.create(t,n)},deps:[[e,new xe,new be]]}},e.prototype.find=function(e){var t=this.factories.find(function(t){return t.supports(e)});if(t)return t;throw new Error("Cannot find a differ supporting object '"+e+"'")},e.ngInjectableDef=C({providedIn:"root",factory:function(){return new e([new Gp])}}),e}(),eh=[new Gp],th=new Jp([new Bp]),nh=new Xp(eh),rh=ip(null,"core",[{provide:_d,useValue:"unknown"},{provide:sp,deps:[_r]},{provide:ep,deps:[]},{provide:Cd,deps:[]}]),oh=new E("LocaleId"),ih=new E("Translations"),ah=new E("TranslationsFormat");
677
+ */(e)+"'")},e.ngInjectableDef=C({providedIn:"root",factory:function(){return new e([new nh])}}),e}(),hh=function(){function e(e){this.factories=e}return e.create=function(t,n){if(n){var r=n.factories.slice();t=t.concat(r)}return new e(t)},e.extend=function(t){return{provide:e,useFactory:function(n){if(!n)throw new Error("Cannot extend KeyValueDiffers without a parent injector");return e.create(t,n)},deps:[[e,new Et,new It]]}},e.prototype.find=function(e){var t=this.factories.find(function(t){return t.supports(e)});if(t)return t;throw new Error("Cannot find a differ supporting object '"+e+"'")},e.ngInjectableDef=C({providedIn:"root",factory:function(){return new e([new ch])}}),e}(),vh=[new ch],gh=new ph([new nh]),yh=new hh(vh),mh=xp(null,"core",[{provide:Sd,useValue:"unknown"},{provide:Ep,deps:[fu]},{provide:mp,deps:[]},{provide:Fd,deps:[]}]),_h=new E("LocaleId"),wh=new E("Translations"),bh=new E("TranslationsFormat");
671
678
  /**
672
679
  * @license
673
680
  * Copyright Google Inc. All Rights Reserved.
@@ -675,7 +682,7 @@ var Gf=function(){function e(e,t){if(this.token=e,this.id=t,!e)throw new Error("
675
682
  * Use of this source code is governed by an MIT-style license that can be
676
683
  * found in the LICENSE file at https://angular.io/license
677
684
  */
678
- function uh(){return th}function sh(){return nh}function lh(e){return e||"en-US"}(Wp=e.MissingTranslationStrategy||(e.MissingTranslationStrategy={}))[Wp.Error=0]="Error",Wp[Wp.Warning=1]="Warning",Wp[Wp.Ignore=2]="Ignore";var ch=[{provide:cp,useClass:cp,deps:[Zd,Cd,_r,Qf,rs,pd]},{provide:pd,useClass:pd,deps:[[new be,dd]]},{provide:Dd,useClass:Dd,deps:[]},gd,{provide:Jp,useFactory:uh,deps:[]},{provide:Xp,useFactory:sh,deps:[]},{provide:oh,useFactory:lh,deps:[[new we(oh),new be,new xe]]}],fh=function(){return a([Ef({providers:ch}),s("design:paramtypes",[cp])],function e(t){})}();
685
+ function Ch(){return gh}function xh(){return yh}function Ih(e){return e||"en-US"}(lh=e.MissingTranslationStrategy||(e.MissingTranslationStrategy={}))[lh.Error=0]="Error",lh[lh.Warning=1]="Warning",lh[lh.Ignore=2]="Ignore";var kh=[{provide:Tp,useClass:Tp,deps:[lp,Fd,fu,ad,es,Pd]},{provide:Pd,useClass:Pd,deps:[[new It,Td]]},{provide:Gd,useClass:Gd,deps:[]},jd,{provide:ph,useFactory:Ch,deps:[]},{provide:hh,useFactory:xh,deps:[]},{provide:_h,useFactory:Ih,deps:[[new xt(_h),new It,new Et]]}],Eh=function(){return a([Uf({providers:kh}),s("design:paramtypes",[Tp])],function e(t){})}();
679
686
  /**
680
687
  * @license
681
688
  * Copyright Google Inc. All Rights Reserved.
@@ -683,7 +690,7 @@ function uh(){return th}function sh(){return nh}function lh(e){return e||"en-US"
683
690
  * Use of this source code is governed by an MIT-style license that can be
684
691
  * found in the LICENSE file at https://angular.io/license
685
692
  */
686
- function dh(e,t,n){var r=e.state,o=1792&r;return o===t?(e.state=-1793&r|n,e.initIndex=-1,!0):o===n}function ph(e,t,n){return(1792&e.state)===t&&e.initIndex<=n&&(e.initIndex=n+1,!0)}function hh(e,t){return e.nodes[t]}function vh(e,t){return e.nodes[t]}function gh(e,t){return e.nodes[t]}function yh(e,t){return e.nodes[t]}function mh(e,t){return e.nodes[t]}var _h=function _h(){},wh={setCurrentNode:void 0,createRootView:void 0,createEmbeddedView:void 0,createComponentView:void 0,createNgModuleRef:void 0,overrideProvider:void 0,overrideComponentView:void 0,clearOverrides:void 0,checkAndUpdateView:void 0,checkNoChangesView:void 0,destroyView:void 0,resolveDep:void 0,createDebugContext:void 0,handleEvent:void 0,updateDirectives:void 0,updateRenderer:void 0,dirtyParentQueries:void 0};
693
+ function Oh(e,t,n){var r=e.state,o=1792&r;return o===t?(e.state=-1793&r|n,e.initIndex=-1,!0):o===n}function Th(e,t,n){return(1792&e.state)===t&&e.initIndex<=n&&(e.initIndex=n+1,!0)}function Ph(e,t){return e.nodes[t]}function Nh(e,t){return e.nodes[t]}function Rh(e,t){return e.nodes[t]}function jh(e,t){return e.nodes[t]}function Dh(e,t){return e.nodes[t]}var Ah=function Ah(){},Sh={setCurrentNode:void 0,createRootView:void 0,createEmbeddedView:void 0,createComponentView:void 0,createNgModuleRef:void 0,overrideProvider:void 0,overrideComponentView:void 0,clearOverrides:void 0,checkAndUpdateView:void 0,checkNoChangesView:void 0,destroyView:void 0,resolveDep:void 0,createDebugContext:void 0,handleEvent:void 0,updateDirectives:void 0,updateRenderer:void 0,dirtyParentQueries:void 0};
687
694
  /**
688
695
  * @license
689
696
  * Copyright Google Inc. All Rights Reserved.
@@ -691,28 +698,28 @@ function dh(e,t,n){var r=e.state,o=1792&r;return o===t?(e.state=-1793&r|n,e.init
691
698
  * Use of this source code is governed by an MIT-style license that can be
692
699
  * found in the LICENSE file at https://angular.io/license
693
700
  */
694
- function bh(e,t,n,r){var o="ExpressionChangedAfterItHasBeenCheckedError: Expression has changed after it was checked. Previous value: '"+t+"'. Current value: '"+n+"'.";return r&&(o+=" It seems like the view has been created after its parent and its children have been dirty checked. Has it been created in a change detection hook ?"),function i(e,t){var n=new Error(e);return Ch(n,t),n}(o,e)}function Ch(e,t){e[Ff]=t,e[Lf]=t.logError.bind(t)}function xh(e){return new Error("ViewDestroyedError: Attempt to use a destroyed view: "+e)}
701
+ function Vh(e,t,n,r){var o="ExpressionChangedAfterItHasBeenCheckedError: Expression has changed after it was checked. Previous value: '"+t+"'. Current value: '"+n+"'.";return r&&(o+=" It seems like the view has been created after its parent and its children have been dirty checked. Has it been created in a change detection hook ?"),function i(e,t){var n=new Error(e);return Mh(n,t),n}(o,e)}function Mh(e,t){e[ed]=t,e[nd]=t.logError.bind(t)}function Fh(e){return new Error("ViewDestroyedError: Attempt to use a destroyed view: "+e)}
695
702
  /**
696
703
  * @license
697
704
  * Copyright Google Inc. All Rights Reserved.
698
705
  *
699
706
  * Use of this source code is governed by an MIT-style license that can be
700
707
  * found in the LICENSE file at https://angular.io/license
701
- */var Ih=function(){},kh=new Map;function Eh(e){var t=kh.get(e);return t||(t=te(e)+"_"+kh.size,kh.set(e,t)),t}var Oh=0;function Th(e,t,n,r){return!(!(2&e.state)&&ee(e.oldValues[t.bindingIndex+n],r))}function Ph(e,t,n,r){return!!Th(e,t,n,r)&&(e.oldValues[t.bindingIndex+n]=r,!0)}function Nh(e,t,n,r){var o=e.oldValues[t.bindingIndex+n];if(1&e.state||!dt(o,r)){var i=t.bindings[n].name;throw bh(wh.createDebugContext(e,t.nodeIndex),i+": "+o,i+": "+r,0!=(1&e.state))}}function Dh(e){for(var t=e;t;)2&t.def.flags&&(t.state|=8),t=t.viewContainerParent||t.parent}function Rh(e,t){for(var n=e;n&&n!==t;)n.state|=64,n=n.viewContainerParent||n.parent}function jh(e,t,n,r){try{return Dh(33554432&e.def.nodes[t].flags?vh(e,t).componentView:e),wh.handleEvent(e,t,n,r)}catch(t){e.root.errorHandler.handleError(t)}}function Ah(e){return e.parent?vh(e.parent,e.parentNodeDef.nodeIndex):null}function Sh(e){return e.parent?e.parentNodeDef.parent:null}function Vh(e,t){switch(201347067&t.flags){case 1:return vh(e,t.nodeIndex).renderElement;case 2:return hh(e,t.nodeIndex).renderText}}function Mh(e,t){return e?e+":"+t:t}function Fh(e){return!!e.parent&&!!(32768&e.parentNodeDef.flags)}function Hh(e){return!(!e.parent||32768&e.parentNodeDef.flags)}function Lh(e){return 1<<e%32}function Bh(e){var t={},n=0,r={};return e&&e.forEach(function(e){var o=c(e,2),i=o[0],a=o[1];"number"==typeof i?(t[i]=a,n|=Lh(i)):r[i]=a}),{matchedQueries:t,references:r,matchedQueryIds:n}}function Uh(e,t){return e.map(function(e){var n,r,o;return Array.isArray(e)?(o=(n=c(e,2))[0],r=n[1]):(o=0,r=e),r&&("function"==typeof r||"object"==typeof r)&&t&&Object.defineProperty(r,hr,{value:t,configurable:!0}),{flags:o,token:r,tokenKey:Eh(r)}})}function zh(t,n,r){var o=r.renderParent;return o?0==(1&o.flags)||0==(33554432&o.flags)||o.element.componentRendererType&&o.element.componentRendererType.encapsulation===e.ViewEncapsulation.Native?vh(t,r.renderParent.nodeIndex).renderElement:void 0:n}var Qh=new WeakMap;function Zh(e){var t=Qh.get(e);return t||((t=e(function(){return Ih})).factory=e,Qh.set(e,t)),t}function qh(e,t,n,r,o){3===t&&(n=e.renderer.parentNode(Vh(e,e.def.lastRenderRootNode))),Kh(e,t,0,e.def.nodes.length-1,n,r,o)}function Kh(e,t,n,r,o,i,a){for(var u=n;u<=r;u++){var s=e.def.nodes[u];11&s.flags&&Gh(e,s,t,o,i,a),u+=s.childCount}}function Wh(e,t,n,r,o,i){for(var a=e;a&&!Fh(a);)a=a.parent;for(var u=a.parent,s=Sh(a),l=s.nodeIndex+s.childCount,c=s.nodeIndex+1;c<=l;c++){var f=u.def.nodes[c];f.ngContentIndex===t&&Gh(u,f,n,r,o,i),c+=f.childCount}if(!u.parent){var d=e.root.projectableNodes[t];if(d)for(c=0;c<d.length;c++)Yh(e,d[c],n,r,o,i)}}function Gh(e,t,n,r,o,i){if(8&t.flags)Wh(e,t.ngContent.index,n,r,o,i);else{var a=Vh(e,t);if(3===n&&33554432&t.flags&&48&t.bindingFlags?(16&t.bindingFlags&&Yh(e,a,n,r,o,i),32&t.bindingFlags&&Yh(vh(e,t.nodeIndex).componentView,a,n,r,o,i)):Yh(e,a,n,r,o,i),16777216&t.flags)for(var u=vh(e,t.nodeIndex).viewContainer._embeddedViews,s=0;s<u.length;s++)qh(u[s],n,r,o,i);1&t.flags&&!t.element.name&&Kh(e,n,t.nodeIndex+1,t.nodeIndex+t.childCount,r,o,i)}}function Yh(e,t,n,r,o,i){var a=e.renderer;switch(n){case 1:a.appendChild(r,t);break;case 2:a.insertBefore(r,t,o);break;case 3:a.removeChild(r,t);break;case 0:i.push(t)}}var $h=/^:([^:]+):(.+)$/;function Jh(e){if(":"===e[0]){var t=e.match($h);return[t[1],t[2]]}return["",e]}function Xh(e){for(var t=0,n=0;n<e.length;n++)t|=e[n].flags;return t}function ev(e){return null!=e?e.toString():""}function tv(t,n,r){var o,i=r.element,a=t.root.selectorOrNode,u=t.renderer;if(t.parent||!a){o=i.name?u.createElement(i.name,i.ns):u.createComment("");var s=zh(t,n,r);s&&u.appendChild(s,o)}else o=u.selectRootElement(a,!!i.componentRendererType&&i.componentRendererType.encapsulation===e.ViewEncapsulation.ShadowDom);if(i.attrs)for(var l=0;l<i.attrs.length;l++){var f=c(i.attrs[l],3);u.setAttribute(o,f[1],f[2],f[0])}return o}function nv(e,t,n,r){for(var o=0;o<n.outputs.length;o++){var i=n.outputs[o],a=rv(e,n.nodeIndex,Mh(i.target,i.eventName)),u=i.target,s=e;"component"===i.target&&(u=null,s=t);var l=s.renderer.listen(u||r,i.eventName,a);e.disposables[n.outputIndex+o]=l}}function rv(e,t,n){return function(r){return jh(e,t,n,r)}}function ov(t,n,r,o){if(!Ph(t,n,r,o))return!1;var i=n.bindings[r],a=vh(t,n.nodeIndex),u=a.renderElement,s=i.name;switch(15&i.flags){case 1:!function l(e,t,n,r,o,i){var a=t.securityContext,u=a?e.root.sanitizer.sanitize(a,i):i;u=null!=u?u.toString():null;var s=e.renderer;null!=i?s.setAttribute(n,o,u,r):s.removeAttribute(n,o,r)}(t,i,u,i.ns,s,o);break;case 2:!function c(e,t,n,r){var o=e.renderer;r?o.addClass(t,n):o.removeClass(t,n)}(t,u,s,o);break;case 4:!function f(t,n,r,o,i){var a=t.root.sanitizer.sanitize(e.SecurityContext.STYLE,i);if(null!=a){a=a.toString();var u=n.suffix;null!=u&&(a+=u)}else a=null;var s=t.renderer;null!=a?s.setStyle(r,o,a):s.removeStyle(r,o)}(t,i,u,s,o);break;case 8:!function d(e,t,n,r,o){var i=t.securityContext,a=i?e.root.sanitizer.sanitize(i,o):o;e.renderer.setProperty(n,r,a)}
708
+ */var Hh=function(){},Lh=new Map;function Bh(e){var t=Lh.get(e);return t||(t=$(e)+"_"+Lh.size,Lh.set(e,t)),t}var Uh=0;function zh(e,t,n,r){return!(!(2&e.state)&&Y(e.oldValues[t.bindingIndex+n],r))}function Qh(e,t,n,r){return!!zh(e,t,n,r)&&(e.oldValues[t.bindingIndex+n]=r,!0)}function Zh(e,t,n,r){var o=e.oldValues[t.bindingIndex+n];if(1&e.state||!cr(o,r)){var i=t.bindings[n].name;throw Vh(Sh.createDebugContext(e,t.nodeIndex),i+": "+o,i+": "+r,0!=(1&e.state))}}function qh(e){for(var t=e;t;)2&t.def.flags&&(t.state|=8),t=t.viewContainerParent||t.parent}function Kh(e,t){for(var n=e;n&&n!==t;)n.state|=64,n=n.viewContainerParent||n.parent}function Wh(e,t,n,r){try{return qh(33554432&e.def.nodes[t].flags?Nh(e,t).componentView:e),Sh.handleEvent(e,t,n,r)}catch(t){e.root.errorHandler.handleError(t)}}function Gh(e){return e.parent?Nh(e.parent,e.parentNodeDef.nodeIndex):null}function Yh(e){return e.parent?e.parentNodeDef.parent:null}function $h(e,t){switch(201347067&t.flags){case 1:return Nh(e,t.nodeIndex).renderElement;case 2:return Ph(e,t.nodeIndex).renderText}}function Jh(e,t){return e?e+":"+t:t}function Xh(e){return!!e.parent&&!!(32768&e.parentNodeDef.flags)}function ev(e){return!(!e.parent||32768&e.parentNodeDef.flags)}function tv(e){return 1<<e%32}function nv(e){var t={},n=0,r={};return e&&e.forEach(function(e){var o=c(e,2),i=o[0],a=o[1];"number"==typeof i?(t[i]=a,n|=tv(i)):r[i]=a}),{matchedQueries:t,references:r,matchedQueryIds:n}}function rv(e,t){return e.map(function(e){var n,r,o;return Array.isArray(e)?(o=(n=c(e,2))[0],r=n[1]):(o=0,r=e),r&&("function"==typeof r||"object"==typeof r)&&t&&Object.defineProperty(r,au,{value:t,configurable:!0}),{flags:o,token:r,tokenKey:Bh(r)}})}function ov(t,n,r){var o=r.renderParent;return o?0==(1&o.flags)||0==(33554432&o.flags)||o.element.componentRendererType&&o.element.componentRendererType.encapsulation===e.ViewEncapsulation.Native?Nh(t,r.renderParent.nodeIndex).renderElement:void 0:n}var iv=new WeakMap;function av(e){var t=iv.get(e);return t||((t=e(function(){return Hh})).factory=e,iv.set(e,t)),t}function uv(e,t,n,r,o){3===t&&(n=e.renderer.parentNode($h(e,e.def.lastRenderRootNode))),sv(e,t,0,e.def.nodes.length-1,n,r,o)}function sv(e,t,n,r,o,i,a){for(var u=n;u<=r;u++){var s=e.def.nodes[u];11&s.flags&&cv(e,s,t,o,i,a),u+=s.childCount}}function lv(e,t,n,r,o,i){for(var a=e;a&&!Xh(a);)a=a.parent;for(var u=a.parent,s=Yh(a),l=s.nodeIndex+s.childCount,c=s.nodeIndex+1;c<=l;c++){var f=u.def.nodes[c];f.ngContentIndex===t&&cv(u,f,n,r,o,i),c+=f.childCount}if(!u.parent){var d=e.root.projectableNodes[t];if(d)for(c=0;c<d.length;c++)fv(e,d[c],n,r,o,i)}}function cv(e,t,n,r,o,i){if(8&t.flags)lv(e,t.ngContent.index,n,r,o,i);else{var a=$h(e,t);if(3===n&&33554432&t.flags&&48&t.bindingFlags?(16&t.bindingFlags&&fv(e,a,n,r,o,i),32&t.bindingFlags&&fv(Nh(e,t.nodeIndex).componentView,a,n,r,o,i)):fv(e,a,n,r,o,i),16777216&t.flags)for(var u=Nh(e,t.nodeIndex).viewContainer._embeddedViews,s=0;s<u.length;s++)uv(u[s],n,r,o,i);1&t.flags&&!t.element.name&&sv(e,n,t.nodeIndex+1,t.nodeIndex+t.childCount,r,o,i)}}function fv(e,t,n,r,o,i){var a=e.renderer;switch(n){case 1:a.appendChild(r,t);break;case 2:a.insertBefore(r,t,o);break;case 3:a.removeChild(r,t);break;case 0:i.push(t)}}var dv=/^:([^:]+):(.+)$/;function pv(e){if(":"===e[0]){var t=e.match(dv);return[t[1],t[2]]}return["",e]}function hv(e){for(var t=0,n=0;n<e.length;n++)t|=e[n].flags;return t}function vv(e){return null!=e?e.toString():""}function gv(t,n,r){var o,i=r.element,a=t.root.selectorOrNode,u=t.renderer;if(t.parent||!a){o=i.name?u.createElement(i.name,i.ns):u.createComment("");var s=ov(t,n,r);s&&u.appendChild(s,o)}else o=u.selectRootElement(a,!!i.componentRendererType&&i.componentRendererType.encapsulation===e.ViewEncapsulation.ShadowDom);if(i.attrs)for(var l=0;l<i.attrs.length;l++){var f=c(i.attrs[l],3);u.setAttribute(o,f[1],f[2],f[0])}return o}function yv(e,t,n,r){for(var o=0;o<n.outputs.length;o++){var i=n.outputs[o],a=mv(e,n.nodeIndex,Jh(i.target,i.eventName)),u=i.target,s=e;"component"===i.target&&(u=null,s=t);var l=s.renderer.listen(u||r,i.eventName,a);e.disposables[n.outputIndex+o]=l}}function mv(e,t,n){return function(r){return Wh(e,t,n,r)}}function _v(t,n,r,o){if(!Qh(t,n,r,o))return!1;var i=n.bindings[r],a=Nh(t,n.nodeIndex),u=a.renderElement,s=i.name;switch(15&i.flags){case 1:!function l(e,t,n,r,o,i){var a=t.securityContext,u=a?e.root.sanitizer.sanitize(a,i):i;u=null!=u?u.toString():null;var s=e.renderer;null!=i?s.setAttribute(n,o,u,r):s.removeAttribute(n,o,r)}(t,i,u,i.ns,s,o);break;case 2:!function c(e,t,n,r){var o=e.renderer;r?o.addClass(t,n):o.removeClass(t,n)}(t,u,s,o);break;case 4:!function f(t,n,r,o,i){var a=t.root.sanitizer.sanitize(e.SecurityContext.STYLE,i);if(null!=a){a=a.toString();var u=n.suffix;null!=u&&(a+=u)}else a=null;var s=t.renderer;null!=a?s.setStyle(r,o,a):s.removeStyle(r,o)}(t,i,u,s,o);break;case 8:!function d(e,t,n,r,o){var i=t.securityContext,a=i?e.root.sanitizer.sanitize(i,o):o;e.renderer.setProperty(n,r,a)}
702
709
  /**
703
710
  * @license
704
711
  * Copyright Google Inc. All Rights Reserved.
705
712
  *
706
713
  * Use of this source code is governed by an MIT-style license that can be
707
714
  * found in the LICENSE file at https://angular.io/license
708
- */(33554432&n.flags&&32&i.flags?a.componentView:t,i,u,s,o)}return!0}var iv=new Object,av=Eh(_r),uv=Eh(yr),sv=Eh(jr);function lv(e,t,n){void 0===n&&(n=_r.THROW_IF_NOT_FOUND);var r=Oe(e);try{if(8&t.flags)return t.token;if(2&t.flags&&(n=null),1&t.flags)return e._parent.get(t.token,n);var o=t.tokenKey;switch(o){case av:case uv:case sv:return e}var i,a=e._def.providersByKey[o];if(a){var u=e._providers[a.index];return void 0===u&&(u=e._providers[a.index]=cv(e,a)),u===iv?void 0:u}if((i=I(t.token))&&function s(e,t){return null!=t.providedIn&&(function n(e,t){return e._def.modules.indexOf(t)>-1}(e,t.providedIn)||"root"===t.providedIn&&e._def.isRoot)}(e,i)){var l=e._providers.length;return e._def.providersByKey[t.tokenKey]={flags:5120,value:i.factory,deps:[],index:l,token:t.token},e._providers[l]=iv,e._providers[l]=cv(e,e._def.providersByKey[t.tokenKey])}return 4&t.flags?n:e._parent.get(t.token,n)}finally{Oe(r)}}function cv(e,t){var n;switch(201347067&t.flags){case 512:n=function r(e,t,n){var r=n.length;switch(r){case 0:return new t;case 1:return new t(lv(e,n[0]));case 2:return new t(lv(e,n[0]),lv(e,n[1]));case 3:return new t(lv(e,n[0]),lv(e,n[1]),lv(e,n[2]));default:for(var o=new Array(r),i=0;i<r;i++)o[i]=lv(e,n[i]);return new(t.bind.apply(t,f([void 0],o)))}}(e,t.value,t.deps);break;case 1024:n=function o(e,t,n){var r=n.length;switch(r){case 0:return t();case 1:return t(lv(e,n[0]));case 2:return t(lv(e,n[0]),lv(e,n[1]));case 3:return t(lv(e,n[0]),lv(e,n[1]),lv(e,n[2]));default:for(var o=Array(r),i=0;i<r;i++)o[i]=lv(e,n[i]);return t.apply(void 0,f(o))}}(e,t.value,t.deps);break;case 2048:n=lv(e,t.deps[0]);break;case 256:n=t.value}return n===iv||null==n||"object"!=typeof n||131072&t.flags||"function"!=typeof n.ngOnDestroy||(t.flags|=131072),void 0===n?iv:n}function fv(e,t){var n=e.viewContainer._embeddedViews;if((null==t||t>=n.length)&&(t=n.length-1),t<0)return null;var r=n[t];return r.viewContainerParent=null,vv(n,t),wh.dirtyParentQueries(r),pv(r),r}function dv(e,t,n){var r=t?Vh(t,t.def.lastRenderRootNode):e.renderElement;qh(n,2,n.renderer.parentNode(r),n.renderer.nextSibling(r),void 0)}function pv(e){qh(e,3,null,null,void 0)}function hv(e,t,n){t>=e.length?e.push(n):e.splice(t,0,n)}function vv(e,t){t>=e.length-1?e.pop():e.splice(t,1)}
715
+ */(33554432&n.flags&&32&i.flags?a.componentView:t,i,u,s,o)}return!0}var wv=new Object,bv=Bh(fu),Cv=Bh(lu),xv=Bh(rs);function Iv(e,t,n){void 0===n&&(n=fu.THROW_IF_NOT_FOUND);var r=Rt(e);try{if(8&t.flags)return t.token;if(2&t.flags&&(n=null),1&t.flags)return e._parent.get(t.token,n);var o=t.tokenKey;switch(o){case bv:case Cv:case xv:return e}var i,a=e._def.providersByKey[o];if(a){var u=e._providers[a.index];return void 0===u&&(u=e._providers[a.index]=kv(e,a)),u===wv?void 0:u}if((i=I(t.token))&&function s(e,t){return null!=t.providedIn&&(function n(e,t){return e._def.modules.indexOf(t)>-1}(e,t.providedIn)||"root"===t.providedIn&&e._def.isRoot)}(e,i)){var l=e._providers.length;return e._def.providersByKey[t.tokenKey]={flags:5120,value:i.factory,deps:[],index:l,token:t.token},e._providers[l]=wv,e._providers[l]=kv(e,e._def.providersByKey[t.tokenKey])}return 4&t.flags?n:e._parent.get(t.token,n)}finally{Rt(r)}}function kv(e,t){var n;switch(201347067&t.flags){case 512:n=function r(e,t,n){var r=n.length;switch(r){case 0:return new t;case 1:return new t(Iv(e,n[0]));case 2:return new t(Iv(e,n[0]),Iv(e,n[1]));case 3:return new t(Iv(e,n[0]),Iv(e,n[1]),Iv(e,n[2]));default:for(var o=new Array(r),i=0;i<r;i++)o[i]=Iv(e,n[i]);return new(t.bind.apply(t,f([void 0],o)))}}(e,t.value,t.deps);break;case 1024:n=function o(e,t,n){var r=n.length;switch(r){case 0:return t();case 1:return t(Iv(e,n[0]));case 2:return t(Iv(e,n[0]),Iv(e,n[1]));case 3:return t(Iv(e,n[0]),Iv(e,n[1]),Iv(e,n[2]));default:for(var o=Array(r),i=0;i<r;i++)o[i]=Iv(e,n[i]);return t.apply(void 0,f(o))}}(e,t.value,t.deps);break;case 2048:n=Iv(e,t.deps[0]);break;case 256:n=t.value}return n===wv||null==n||"object"!=typeof n||131072&t.flags||"function"!=typeof n.ngOnDestroy||(t.flags|=131072),void 0===n?wv:n}function Ev(e,t){var n=e.viewContainer._embeddedViews;if((null==t||t>=n.length)&&(t=n.length-1),t<0)return null;var r=n[t];return r.viewContainerParent=null,Nv(n,t),Sh.dirtyParentQueries(r),Tv(r),r}function Ov(e,t,n){var r=t?$h(t,t.def.lastRenderRootNode):e.renderElement;uv(n,2,n.renderer.parentNode(r),n.renderer.nextSibling(r),void 0)}function Tv(e){uv(e,3,null,null,void 0)}function Pv(e,t,n){t>=e.length?e.push(n):e.splice(t,0,n)}function Nv(e,t){t>=e.length-1?e.pop():e.splice(t,1)}
709
716
  /**
710
717
  * @license
711
718
  * Copyright Google Inc. All Rights Reserved.
712
719
  *
713
720
  * Use of this source code is governed by an MIT-style license that can be
714
721
  * found in the LICENSE file at https://angular.io/license
715
- */var gv=new Object;function yv(e){return e.viewDefFactory}var mv=function(e){function t(t,n,r,o,i,a){var u=e.call(this)||this;return u.selector=t,u.componentType=n,u._inputs=o,u._outputs=i,u.ngContentSelectors=a,u.viewDefFactory=r,u}return o(t,e),Object.defineProperty(t.prototype,"inputs",{get:function(){var e=[],t=this._inputs;for(var n in t)e.push({propName:n,templateName:t[n]});return e},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"outputs",{get:function(){var e=[];for(var t in this._outputs)e.push({propName:t,templateName:this._outputs[t]});return e},enumerable:!0,configurable:!0}),t.prototype.create=function(e,t,n,r){if(!r)throw new Error("ngModule should be provided");var o=Zh(this.viewDefFactory),i=o.nodes[0].element.componentProvider.nodeIndex,a=wh.createRootView(e,t||[],n,o,r,gv),u=gh(a,i).instance;return n&&a.renderer.setAttribute(vh(a,0).renderElement,"ng-version",ms.full),new _v(a,new xv(a),u)},t}(Ju),_v=function(e){function t(t,n,r){var o=e.call(this)||this;return o._view=t,o._viewRef=n,o._component=r,o._elDef=o._view.def.nodes[0],o.hostView=n,o.changeDetectorRef=n,o.instance=r,o}return o(t,e),Object.defineProperty(t.prototype,"location",{get:function(){return new as(vh(this._view,this._elDef.nodeIndex).renderElement)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"injector",{get:function(){return new Ov(this._view,this._elDef)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"componentType",{get:function(){return this._component.constructor},enumerable:!0,configurable:!0}),t.prototype.destroy=function(){this._viewRef.destroy()},t.prototype.onDestroy=function(e){this._viewRef.onDestroy(e)},t}($u);function wv(e,t,n){return new bv(e,t,n)}var bv=function(){function e(e,t,n){this._view=e,this._elDef=t,this._data=n,this._embeddedViews=[]}return Object.defineProperty(e.prototype,"element",{get:function(){return new as(this._data.renderElement)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"injector",{get:function(){return new Ov(this._view,this._elDef)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"parentInjector",{get:function(){for(var e=this._view,t=this._elDef.parent;!t&&e;)t=Sh(e),e=e.parent;return e?new Ov(e,t):new Ov(this._view,null)},enumerable:!0,configurable:!0}),e.prototype.clear=function(){for(var e=this._embeddedViews.length-1;e>=0;e--){var t=fv(this._data,e);wh.destroyView(t)}},e.prototype.get=function(e){var t=this._embeddedViews[e];if(t){var n=new xv(t);return n.attachToViewContainerRef(this),n}return null},Object.defineProperty(e.prototype,"length",{get:function(){return this._embeddedViews.length},enumerable:!0,configurable:!0}),e.prototype.createEmbeddedView=function(e,t,n){var r=e.createEmbeddedView(t||{});return this.insert(r,n),r},e.prototype.createComponent=function(e,t,n,r,o){var i=n||this.parentInjector;o||e instanceof is||(o=i.get(jr));var a=e.create(i,r,void 0,o);return this.insert(a.hostView,t),a},e.prototype.insert=function(e,t){if(e.destroyed)throw new Error("Cannot insert a destroyed View in a ViewContainer!");var n=e;
722
+ */var Rv=new Object;function jv(e){return e.viewDefFactory}var Dv=function(e){function t(t,n,r,o,i,a){var u=e.call(this)||this;return u.selector=t,u.componentType=n,u._inputs=o,u._outputs=i,u.ngContentSelectors=a,u.viewDefFactory=r,u}return o(t,e),Object.defineProperty(t.prototype,"inputs",{get:function(){var e=[],t=this._inputs;for(var n in t)e.push({propName:n,templateName:t[n]});return e},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"outputs",{get:function(){var e=[];for(var t in this._outputs)e.push({propName:t,templateName:this._outputs[t]});return e},enumerable:!0,configurable:!0}),t.prototype.create=function(e,t,n,r){if(!r)throw new Error("ngModule should be provided");var o=av(this.viewDefFactory),i=o.nodes[0].element.componentProvider.nodeIndex,a=Sh.createRootView(e,t||[],n,o,r,Rv),u=Rh(a,i).instance;return n&&a.renderer.setAttribute(Nh(a,0).renderElement,"ng-version",xs.full),new Av(a,new Fv(a),u)},t}(Ku),Av=function(e){function t(t,n,r){var o=e.call(this)||this;return o._view=t,o._viewRef=n,o._component=r,o._elDef=o._view.def.nodes[0],o.hostView=n,o.changeDetectorRef=n,o.instance=r,o}return o(t,e),Object.defineProperty(t.prototype,"location",{get:function(){return new fs(Nh(this._view,this._elDef.nodeIndex).renderElement)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"injector",{get:function(){return new Uv(this._view,this._elDef)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"componentType",{get:function(){return this._component.constructor},enumerable:!0,configurable:!0}),t.prototype.destroy=function(){this._viewRef.destroy()},t.prototype.onDestroy=function(e){this._viewRef.onDestroy(e)},t}(qu);function Sv(e,t,n){return new Vv(e,t,n)}var Vv=function(){function e(e,t,n){this._view=e,this._elDef=t,this._data=n,this._embeddedViews=[]}return Object.defineProperty(e.prototype,"element",{get:function(){return new fs(this._data.renderElement)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"injector",{get:function(){return new Uv(this._view,this._elDef)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"parentInjector",{get:function(){for(var e=this._view,t=this._elDef.parent;!t&&e;)t=Yh(e),e=e.parent;return e?new Uv(e,t):new Uv(this._view,null)},enumerable:!0,configurable:!0}),e.prototype.clear=function(){for(var e=this._embeddedViews.length-1;e>=0;e--){var t=Ev(this._data,e);Sh.destroyView(t)}},e.prototype.get=function(e){var t=this._embeddedViews[e];if(t){var n=new Fv(t);return n.attachToViewContainerRef(this),n}return null},Object.defineProperty(e.prototype,"length",{get:function(){return this._embeddedViews.length},enumerable:!0,configurable:!0}),e.prototype.createEmbeddedView=function(e,t,n){var r=e.createEmbeddedView(t||{});return this.insert(r,n),r},e.prototype.createComponent=function(e,t,n,r,o){var i=n||this.parentInjector;o||e instanceof ns||(o=i.get(rs));var a=e.create(i,r,void 0,o);return this.insert(a.hostView,t),a},e.prototype.insert=function(e,t){if(e.destroyed)throw new Error("Cannot insert a destroyed View in a ViewContainer!");var n=e;
716
723
  /**
717
724
  * @license
718
725
  * Copyright Google Inc. All Rights Reserved.
@@ -720,56 +727,56 @@ function bh(e,t,n,r){var o="ExpressionChangedAfterItHasBeenCheckedError: Express
720
727
  * Use of this source code is governed by an MIT-style license that can be
721
728
  * found in the LICENSE file at https://angular.io/license
722
729
  */
723
- return function r(e,t,n,o){var i=t.viewContainer._embeddedViews;null!==n&&void 0!==n||(n=i.length),o.viewContainerParent=e,hv(i,n,o),function a(e,t){var n=Ah(t);if(n&&n!==e&&!(16&t.state)){t.state|=16;var r=n.template._projectedViews;r||(r=n.template._projectedViews=[]),r.push(t),function o(e,t){if(!(4&t.flags)){e.nodeFlags|=4,t.flags|=4;for(var n=t.parent;n;)n.childFlags|=4,n=n.parent}}(t.parent.def,t.parentNodeDef)}}(t,o),wh.dirtyParentQueries(o),dv(t,n>0?i[n-1]:null,o)}(this._view,this._data,t,n._view),n.attachToViewContainerRef(this),e},e.prototype.move=function(e,t){if(e.destroyed)throw new Error("Cannot move a destroyed View in a ViewContainer!");var n=this._embeddedViews.indexOf(e._view);return function r(e,t,n){var r=e.viewContainer._embeddedViews,o=r[t];vv(r,t),null==n&&(n=r.length),hv(r,n,o),wh.dirtyParentQueries(o),pv(o),dv(e,n>0?r[n-1]:null,o)}(this._data,n,t),e},e.prototype.indexOf=function(e){return this._embeddedViews.indexOf(e._view)},e.prototype.remove=function(e){var t=fv(this._data,e);t&&wh.destroyView(t)},e.prototype.detach=function(e){var t=fv(this._data,e);return t?new xv(t):null},e}();function Cv(e){return new xv(e)}var xv=function(){function e(e){this._view=e,this._viewContainerRef=null,this._appRef=null}return Object.defineProperty(e.prototype,"rootNodes",{get:function(){return function e(t){var n=[];return qh(t,0,void 0,void 0,n),n}(this._view)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"context",{get:function(){return this._view.context},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"destroyed",{get:function(){return 0!=(128&this._view.state)},enumerable:!0,configurable:!0}),e.prototype.markForCheck=function(){Dh(this._view)},e.prototype.detach=function(){this._view.state&=-5},e.prototype.detectChanges=function(){var e=this._view.root.rendererFactory;e.begin&&e.begin();try{wh.checkAndUpdateView(this._view)}finally{e.end&&e.end()}},e.prototype.checkNoChanges=function(){wh.checkNoChangesView(this._view)},e.prototype.reattach=function(){this._view.state|=4},e.prototype.onDestroy=function(e){this._view.disposables||(this._view.disposables=[]),this._view.disposables.push(e)},e.prototype.destroy=function(){this._appRef?this._appRef.detachView(this):this._viewContainerRef&&this._viewContainerRef.detach(this._viewContainerRef.indexOf(this)),wh.destroyView(this._view)},e.prototype.detachFromAppRef=function(){this._appRef=null,pv(this._view),wh.dirtyParentQueries(this._view)},e.prototype.attachToAppRef=function(e){if(this._viewContainerRef)throw new Error("This view is already attached to a ViewContainer!");this._appRef=e},e.prototype.attachToViewContainerRef=function(e){if(this._appRef)throw new Error("This view is already attached directly to the ApplicationRef!");this._viewContainerRef=e},e}();function Iv(e,t){return new kv(e,t)}var kv=function(e){function t(t,n){var r=e.call(this)||this;return r._parentView=t,r._def=n,r}return o(t,e),t.prototype.createEmbeddedView=function(e){return new xv(wh.createEmbeddedView(this._parentView,this._def,this._def.element.template,e))},Object.defineProperty(t.prototype,"elementRef",{get:function(){return new as(vh(this._parentView,this._def.nodeIndex).renderElement)},enumerable:!0,configurable:!0}),t}(oc);function Ev(e,t){return new Ov(e,t)}var Ov=function(){function e(e,t){this.view=e,this.elDef=t}return e.prototype.get=function(e,t){return void 0===t&&(t=_r.THROW_IF_NOT_FOUND),wh.resolveDep(this.view,this.elDef,!!this.elDef&&0!=(33554432&this.elDef.flags),{flags:0,token:e,tokenKey:Eh(e)},t)},e}();function Tv(e){return new Pv(e.renderer)}var Pv=function(){function e(e){this.delegate=e}return e.prototype.selectRootElement=function(e){return this.delegate.selectRootElement(e)},e.prototype.createElement=function(e,t){var n=c(Jh(t),2),r=this.delegate.createElement(n[1],n[0]);return e&&this.delegate.appendChild(e,r),r},e.prototype.createViewRoot=function(e){return e},e.prototype.createTemplateAnchor=function(e){var t=this.delegate.createComment("");return e&&this.delegate.appendChild(e,t),t},e.prototype.createText=function(e,t){var n=this.delegate.createText(t);return e&&this.delegate.appendChild(e,n),n},e.prototype.projectNodes=function(e,t){for(var n=0;n<t.length;n++)this.delegate.appendChild(e,t[n])},e.prototype.attachViewAfter=function(e,t){for(var n=this.delegate.parentNode(e),r=this.delegate.nextSibling(e),o=0;o<t.length;o++)this.delegate.insertBefore(n,t[o],r)},e.prototype.detachView=function(e){for(var t=0;t<e.length;t++){var n=e[t],r=this.delegate.parentNode(n);this.delegate.removeChild(r,n)}},e.prototype.destroyView=function(e,t){for(var n=0;n<t.length;n++)this.delegate.destroyNode(t[n])},e.prototype.listen=function(e,t,n){return this.delegate.listen(e,t,n)},e.prototype.listenGlobal=function(e,t,n){return this.delegate.listen(e,t,n)},e.prototype.setElementProperty=function(e,t,n){this.delegate.setProperty(e,t,n)},e.prototype.setElementAttribute=function(e,t,n){var r=c(Jh(t),2),o=r[0],i=r[1];null!=n?this.delegate.setAttribute(e,i,n,o):this.delegate.removeAttribute(e,i,o)},e.prototype.setBindingDebugInfo=function(e,t,n){},e.prototype.setElementClass=function(e,t,n){n?this.delegate.addClass(e,t):this.delegate.removeClass(e,t)},e.prototype.setElementStyle=function(e,t,n){null!=n?this.delegate.setStyle(e,t,n):this.delegate.removeStyle(e,t)},e.prototype.invokeElementMethod=function(e,t,n){e[t].apply(e,n)},e.prototype.setText=function(e,t){this.delegate.setValue(e,t)},e.prototype.animate=function(){throw new Error("Renderer.animate is no longer supported!")},e}();function Nv(e,t,n,r){return new Dv(e,t,n,r)}var Dv=function(){function t(e,t,n,r){this._moduleType=e,this._parent=t,this._bootstrapComponents=n,this._def=r,this._destroyListeners=[],this._destroyed=!1,this.injector=this,function o(e){for(var t=e._def,n=e._providers=new Array(t.providers.length),r=0;r<t.providers.length;r++){var o=t.providers[r];4096&o.flags||void 0===n[r]&&(n[r]=cv(e,o))}}(this)}return t.prototype.get=function(t,n,r){void 0===n&&(n=_r.THROW_IF_NOT_FOUND),void 0===r&&(r=e.InjectFlags.Default);var o=0;return r&e.InjectFlags.SkipSelf?o|=1:r&e.InjectFlags.Self&&(o|=4),lv(this,{token:t,tokenKey:Eh(t),flags:o},n)},Object.defineProperty(t.prototype,"instance",{get:function(){return this.get(this._moduleType)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"componentFactoryResolver",{get:function(){return this.get(rs)},enumerable:!0,configurable:!0}),t.prototype.destroy=function(){if(this._destroyed)throw new Error("The ng module "+te(this.instance.constructor)+" has already been destroyed.");this._destroyed=!0,function e(t,n){for(var r=t._def,o=new Set,i=0;i<r.providers.length;i++)if(131072&r.providers[i].flags){var a=t._providers[i];if(a&&a!==iv){var u=a.ngOnDestroy;"function"!=typeof u||o.has(a)||(u.apply(a),o.add(a))}}}(this),this._destroyListeners.forEach(function(e){return e()})},t.prototype.onDestroy=function(e){this._destroyListeners.push(e)},t}(),Rv=Eh(cs),jv=Eh(hs),Av=Eh(as),Sv=Eh(_p),Vv=Eh(oc),Mv=Eh(bp),Fv=Eh(_r),Hv=Eh(yr);
730
+ return function r(e,t,n,o){var i=t.viewContainer._embeddedViews;null!==n&&void 0!==n||(n=i.length),o.viewContainerParent=e,Pv(i,n,o),function a(e,t){var n=Gh(t);if(n&&n!==e&&!(16&t.state)){t.state|=16;var r=n.template._projectedViews;r||(r=n.template._projectedViews=[]),r.push(t),function o(e,t){if(!(4&t.flags)){e.nodeFlags|=4,t.flags|=4;for(var n=t.parent;n;)n.childFlags|=4,n=n.parent}}(t.parent.def,t.parentNodeDef)}}(t,o),Sh.dirtyParentQueries(o),Ov(t,n>0?i[n-1]:null,o)}(this._view,this._data,t,n._view),n.attachToViewContainerRef(this),e},e.prototype.move=function(e,t){if(e.destroyed)throw new Error("Cannot move a destroyed View in a ViewContainer!");var n=this._embeddedViews.indexOf(e._view);return function r(e,t,n){var r=e.viewContainer._embeddedViews,o=r[t];Nv(r,t),null==n&&(n=r.length),Pv(r,n,o),Sh.dirtyParentQueries(o),Tv(o),Ov(e,n>0?r[n-1]:null,o)}(this._data,n,t),e},e.prototype.indexOf=function(e){return this._embeddedViews.indexOf(e._view)},e.prototype.remove=function(e){var t=Ev(this._data,e);t&&Sh.destroyView(t)},e.prototype.detach=function(e){var t=Ev(this._data,e);return t?new Fv(t):null},e}();function Mv(e){return new Fv(e)}var Fv=function(){function e(e){this._view=e,this._viewContainerRef=null,this._appRef=null}return Object.defineProperty(e.prototype,"rootNodes",{get:function(){return function e(t){var n=[];return uv(t,0,void 0,void 0,n),n}(this._view)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"context",{get:function(){return this._view.context},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"destroyed",{get:function(){return 0!=(128&this._view.state)},enumerable:!0,configurable:!0}),e.prototype.markForCheck=function(){qh(this._view)},e.prototype.detach=function(){this._view.state&=-5},e.prototype.detectChanges=function(){var e=this._view.root.rendererFactory;e.begin&&e.begin();try{Sh.checkAndUpdateView(this._view)}finally{e.end&&e.end()}},e.prototype.checkNoChanges=function(){Sh.checkNoChangesView(this._view)},e.prototype.reattach=function(){this._view.state|=4},e.prototype.onDestroy=function(e){this._view.disposables||(this._view.disposables=[]),this._view.disposables.push(e)},e.prototype.destroy=function(){this._appRef?this._appRef.detachView(this):this._viewContainerRef&&this._viewContainerRef.detach(this._viewContainerRef.indexOf(this)),Sh.destroyView(this._view)},e.prototype.detachFromAppRef=function(){this._appRef=null,Tv(this._view),Sh.dirtyParentQueries(this._view)},e.prototype.attachToAppRef=function(e){if(this._viewContainerRef)throw new Error("This view is already attached to a ViewContainer!");this._appRef=e},e.prototype.attachToViewContainerRef=function(e){if(this._appRef)throw new Error("This view is already attached directly to the ApplicationRef!");this._viewContainerRef=e},e}();function Hv(e,t){return new Lv(e,t)}var Lv=function(e){function t(t,n){var r=e.call(this)||this;return r._parentView=t,r._def=n,r}return o(t,e),t.prototype.createEmbeddedView=function(e){return new Fv(Sh.createEmbeddedView(this._parentView,this._def,this._def.element.template,e))},Object.defineProperty(t.prototype,"elementRef",{get:function(){return new fs(Nh(this._parentView,this._def.nodeIndex).renderElement)},enumerable:!0,configurable:!0}),t}(cc);function Bv(e,t){return new Uv(e,t)}var Uv=function(){function e(e,t){this.view=e,this.elDef=t}return e.prototype.get=function(e,t){return void 0===t&&(t=fu.THROW_IF_NOT_FOUND),Sh.resolveDep(this.view,this.elDef,!!this.elDef&&0!=(33554432&this.elDef.flags),{flags:0,token:e,tokenKey:Bh(e)},t)},e}();function zv(e){return new Qv(e.renderer)}var Qv=function(){function e(e){this.delegate=e}return e.prototype.selectRootElement=function(e){return this.delegate.selectRootElement(e)},e.prototype.createElement=function(e,t){var n=c(pv(t),2),r=this.delegate.createElement(n[1],n[0]);return e&&this.delegate.appendChild(e,r),r},e.prototype.createViewRoot=function(e){return e},e.prototype.createTemplateAnchor=function(e){var t=this.delegate.createComment("");return e&&this.delegate.appendChild(e,t),t},e.prototype.createText=function(e,t){var n=this.delegate.createText(t);return e&&this.delegate.appendChild(e,n),n},e.prototype.projectNodes=function(e,t){for(var n=0;n<t.length;n++)this.delegate.appendChild(e,t[n])},e.prototype.attachViewAfter=function(e,t){for(var n=this.delegate.parentNode(e),r=this.delegate.nextSibling(e),o=0;o<t.length;o++)this.delegate.insertBefore(n,t[o],r)},e.prototype.detachView=function(e){for(var t=0;t<e.length;t++){var n=e[t],r=this.delegate.parentNode(n);this.delegate.removeChild(r,n)}},e.prototype.destroyView=function(e,t){for(var n=0;n<t.length;n++)this.delegate.destroyNode(t[n])},e.prototype.listen=function(e,t,n){return this.delegate.listen(e,t,n)},e.prototype.listenGlobal=function(e,t,n){return this.delegate.listen(e,t,n)},e.prototype.setElementProperty=function(e,t,n){this.delegate.setProperty(e,t,n)},e.prototype.setElementAttribute=function(e,t,n){var r=c(pv(t),2),o=r[0],i=r[1];null!=n?this.delegate.setAttribute(e,i,n,o):this.delegate.removeAttribute(e,i,o)},e.prototype.setBindingDebugInfo=function(e,t,n){},e.prototype.setElementClass=function(e,t,n){n?this.delegate.addClass(e,t):this.delegate.removeClass(e,t)},e.prototype.setElementStyle=function(e,t,n){null!=n?this.delegate.setStyle(e,t,n):this.delegate.removeStyle(e,t)},e.prototype.invokeElementMethod=function(e,t,n){e[t].apply(e,n)},e.prototype.setText=function(e,t){this.delegate.setValue(e,t)},e.prototype.animate=function(){throw new Error("Renderer.animate is no longer supported!")},e}();function Zv(e,t,n,r){return new qv(e,t,n,r)}var qv=function(){function t(e,t,n,r){this._moduleType=e,this._parent=t,this._bootstrapComponents=n,this._def=r,this._destroyListeners=[],this._destroyed=!1,this.injector=this,function o(e){for(var t=e._def,n=e._providers=new Array(t.providers.length),r=0;r<t.providers.length;r++){var o=t.providers[r];4096&o.flags||void 0===n[r]&&(n[r]=kv(e,o))}}(this)}return t.prototype.get=function(t,n,r){void 0===n&&(n=fu.THROW_IF_NOT_FOUND),void 0===r&&(r=e.InjectFlags.Default);var o=0;return r&e.InjectFlags.SkipSelf?o|=1:r&e.InjectFlags.Self&&(o|=4),Iv(this,{token:t,tokenKey:Bh(t),flags:o},n)},Object.defineProperty(t.prototype,"instance",{get:function(){return this.get(this._moduleType)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"componentFactoryResolver",{get:function(){return this.get(es)},enumerable:!0,configurable:!0}),t.prototype.destroy=function(){if(this._destroyed)throw new Error("The ng module "+$(this.instance.constructor)+" has already been destroyed.");this._destroyed=!0,function e(t,n){for(var r=t._def,o=new Set,i=0;i<r.providers.length;i++)if(131072&r.providers[i].flags){var a=t._providers[i];if(a&&a!==wv){var u=a.ngOnDestroy;"function"!=typeof u||o.has(a)||(u.apply(a),o.add(a))}}}(this),this._destroyListeners.forEach(function(e){return e()})},t.prototype.onDestroy=function(e){this._destroyListeners.push(e)},t}(),Kv=Bh(vs),Wv=Bh(_s),Gv=Bh(fs),Yv=Bh(Sp),$v=Bh(cc),Jv=Bh(Mp),Xv=Bh(fu),eg=Bh(lu);
724
731
  /**
725
732
  * @license
726
733
  * Copyright Google Inc. All Rights Reserved.
727
734
  *
728
735
  * Use of this source code is governed by an MIT-style license that can be
729
736
  * found in the LICENSE file at https://angular.io/license
730
- */function Lv(e,t,n,r,o,i,a,u,s){var l=Bh(n),c=l.matchedQueries,f=l.references,d=l.matchedQueryIds;s||(s=[]),u||(u=[]),i=pr(i);var p=Uh(a,te(o));return{nodeIndex:-1,parent:null,renderParent:null,bindingIndex:-1,outputIndex:-1,checkIndex:e,flags:t,childFlags:0,directChildFlags:0,childMatchedQueries:0,matchedQueries:c,matchedQueryIds:d,references:f,ngContentIndex:-1,childCount:r,bindings:u,bindingFlags:Xh(u),outputs:s,element:null,provider:{token:o,value:i,deps:p},text:null,query:null,ngContent:null}}function Bv(e,t){return Zv(e,t)}function Uv(e,t){for(var n=e;n.parent&&!Fh(n);)n=n.parent;return qv(n.parent,Sh(n),!0,t.provider.value,t.provider.deps)}function zv(e,t){var n=qv(e,t.parent,(32768&t.flags)>0,t.provider.value,t.provider.deps);if(t.outputs.length)for(var r=0;r<t.outputs.length;r++){var o=t.outputs[r],i=n[o.propName];if(!fd(i))throw new Error("@Output "+o.propName+" not initialized in '"+n.constructor.name+"'.");var a=i.subscribe(Qv(e,t.parent.nodeIndex,o.eventName));e.disposables[t.outputIndex+r]=a.unsubscribe.bind(a)}return n}function Qv(e,t,n){return function(r){return jh(e,t,n,r)}}function Zv(e,t){var n=(8192&t.flags)>0,r=t.provider;switch(201347067&t.flags){case 512:return qv(e,t.parent,n,r.value,r.deps);case 1024:return function o(e,t,n,r,i){var a=i.length;switch(a){case 0:return r();case 1:return r(Gv(e,t,n,i[0]));case 2:return r(Gv(e,t,n,i[0]),Gv(e,t,n,i[1]));case 3:return r(Gv(e,t,n,i[0]),Gv(e,t,n,i[1]),Gv(e,t,n,i[2]));default:for(var u=Array(a),s=0;s<a;s++)u[s]=Gv(e,t,n,i[s]);return r.apply(void 0,f(u))}}(e,t.parent,n,r.value,r.deps);case 2048:return Gv(e,t.parent,n,r.deps[0]);case 256:return r.value}}function qv(e,t,n,r,o){var i=o.length;switch(i){case 0:return new r;case 1:return new r(Gv(e,t,n,o[0]));case 2:return new r(Gv(e,t,n,o[0]),Gv(e,t,n,o[1]));case 3:return new r(Gv(e,t,n,o[0]),Gv(e,t,n,o[1]),Gv(e,t,n,o[2]));default:for(var a=new Array(i),u=0;u<i;u++)a[u]=Gv(e,t,n,o[u]);return new(r.bind.apply(r,f([void 0],a)))}}var Kv,Wv={};function Gv(e,t,n,r,o){if(void 0===o&&(o=_r.THROW_IF_NOT_FOUND),8&r.flags)return r.token;var i=e;2&r.flags&&(o=null);var a=r.tokenKey;a===Mv&&(n=!(!t||!t.element.componentView)),t&&1&r.flags&&(n=!1,t=t.parent);for(var u=e;u;){if(t)switch(a){case Rv:return Tv(Yv(u,t,n));case jv:return Yv(u,t,n).renderer;case Av:return new as(vh(u,t.nodeIndex).renderElement);case Sv:return vh(u,t.nodeIndex).viewContainer;case Vv:if(t.element.template)return vh(u,t.nodeIndex).template;break;case Mv:return Cv(Yv(u,t,n));case Fv:case Hv:return Ev(u,t);default:var s=(n?t.element.allProviders:t.element.publicProviders)[a];if(s){var l=gh(u,s.nodeIndex);return l||(l={instance:Zv(u,s)},u.nodes[s.nodeIndex]=l),l.instance}}n=Fh(u),t=Sh(u),u=u.parent,4&r.flags&&(u=null)}var c=i.root.injector.get(r.token,Wv);return c!==Wv||o===Wv?c:i.root.ngModule.injector.get(r.token,o)}function Yv(e,t,n){var r;if(n)r=vh(e,t.nodeIndex).componentView;else for(r=e;r.parent&&!Fh(r);)r=r.parent;return r}function $v(e,t,n,r,o,i){if(32768&n.flags){var a=vh(e,n.parent.nodeIndex).componentView;2&a.def.flags&&(a.state|=8)}if(t.instance[n.bindings[r].name]=o,524288&n.flags){i=i||{};var u=pt.unwrap(e.oldValues[n.bindingIndex+r]);i[n.bindings[r].nonMinifiedName]=new ht(u,o,0!=(2&e.state))}return e.oldValues[n.bindingIndex+r]=o,i}function Jv(e,t){if(e.def.nodeFlags&t)for(var n=e.def.nodes,r=0,o=0;o<n.length;o++){var i=n[o],a=i.parent;for(!a&&i.flags&t&&eg(e,o,i.flags&t,r++),0==(i.childFlags&t)&&(o+=i.childCount);a&&1&a.flags&&o===a.nodeIndex+a.childCount;)a.directChildFlags&t&&(r=Xv(e,a,t,r)),a=a.parent}}function Xv(e,t,n,r){for(var o=t.nodeIndex+1;o<=t.nodeIndex+t.childCount;o++){var i=e.def.nodes[o];i.flags&n&&eg(e,o,i.flags&n,r++),o+=i.childCount}return r}function eg(e,t,n,r){var o=gh(e,t);if(o){var i=o.instance;i&&(wh.setCurrentNode(e,t),1048576&n&&ph(e,512,r)&&i.ngAfterContentInit(),2097152&n&&i.ngAfterContentChecked(),4194304&n&&ph(e,768,r)&&i.ngAfterViewInit(),8388608&n&&i.ngAfterViewChecked(),131072&n&&i.ngOnDestroy())}}
737
+ */function tg(e,t,n,r,o,i,a,u,s){var l=nv(n),c=l.matchedQueries,f=l.references,d=l.matchedQueryIds;s||(s=[]),u||(u=[]),i=ee(i);var p=rv(a,$(o));return{nodeIndex:-1,parent:null,renderParent:null,bindingIndex:-1,outputIndex:-1,checkIndex:e,flags:t,childFlags:0,directChildFlags:0,childMatchedQueries:0,matchedQueries:c,matchedQueryIds:d,references:f,ngContentIndex:-1,childCount:r,bindings:u,bindingFlags:hv(u),outputs:s,element:null,provider:{token:o,value:i,deps:p},text:null,query:null,ngContent:null}}function ng(e,t){return ag(e,t)}function rg(e,t){for(var n=e;n.parent&&!Xh(n);)n=n.parent;return ug(n.parent,Yh(n),!0,t.provider.value,t.provider.deps)}function og(e,t){var n=ug(e,t.parent,(32768&t.flags)>0,t.provider.value,t.provider.deps);if(t.outputs.length)for(var r=0;r<t.outputs.length;r++){var o=t.outputs[r],i=n[o.propName];if(!Od(i))throw new Error("@Output "+o.propName+" not initialized in '"+n.constructor.name+"'.");var a=i.subscribe(ig(e,t.parent.nodeIndex,o.eventName));e.disposables[t.outputIndex+r]=a.unsubscribe.bind(a)}return n}function ig(e,t,n){return function(r){return Wh(e,t,n,r)}}function ag(e,t){var n=(8192&t.flags)>0,r=t.provider;switch(201347067&t.flags){case 512:return ug(e,t.parent,n,r.value,r.deps);case 1024:return function o(e,t,n,r,i){var a=i.length;switch(a){case 0:return r();case 1:return r(cg(e,t,n,i[0]));case 2:return r(cg(e,t,n,i[0]),cg(e,t,n,i[1]));case 3:return r(cg(e,t,n,i[0]),cg(e,t,n,i[1]),cg(e,t,n,i[2]));default:for(var u=Array(a),s=0;s<a;s++)u[s]=cg(e,t,n,i[s]);return r.apply(void 0,f(u))}}(e,t.parent,n,r.value,r.deps);case 2048:return cg(e,t.parent,n,r.deps[0]);case 256:return r.value}}function ug(e,t,n,r,o){var i=o.length;switch(i){case 0:return new r;case 1:return new r(cg(e,t,n,o[0]));case 2:return new r(cg(e,t,n,o[0]),cg(e,t,n,o[1]));case 3:return new r(cg(e,t,n,o[0]),cg(e,t,n,o[1]),cg(e,t,n,o[2]));default:for(var a=new Array(i),u=0;u<i;u++)a[u]=cg(e,t,n,o[u]);return new(r.bind.apply(r,f([void 0],a)))}}var sg,lg={};function cg(e,t,n,r,o){if(void 0===o&&(o=fu.THROW_IF_NOT_FOUND),8&r.flags)return r.token;var i=e;2&r.flags&&(o=null);var a=r.tokenKey;a===Jv&&(n=!(!t||!t.element.componentView)),t&&1&r.flags&&(n=!1,t=t.parent);for(var u=e;u;){if(t)switch(a){case Kv:return zv(fg(u,t,n));case Wv:return fg(u,t,n).renderer;case Gv:return new fs(Nh(u,t.nodeIndex).renderElement);case Yv:return Nh(u,t.nodeIndex).viewContainer;case $v:if(t.element.template)return Nh(u,t.nodeIndex).template;break;case Jv:return Mv(fg(u,t,n));case Xv:case eg:return Bv(u,t);default:var s=(n?t.element.allProviders:t.element.publicProviders)[a];if(s){var l=Rh(u,s.nodeIndex);return l||(l={instance:ag(u,s)},u.nodes[s.nodeIndex]=l),l.instance}}n=Xh(u),t=Yh(u),u=u.parent,4&r.flags&&(u=null)}var c=i.root.injector.get(r.token,lg);return c!==lg||o===lg?c:i.root.ngModule.injector.get(r.token,o)}function fg(e,t,n){var r;if(n)r=Nh(e,t.nodeIndex).componentView;else for(r=e;r.parent&&!Xh(r);)r=r.parent;return r}function dg(e,t,n,r,o,i){if(32768&n.flags){var a=Nh(e,n.parent.nodeIndex).componentView;2&a.def.flags&&(a.state|=8)}if(t.instance[n.bindings[r].name]=o,524288&n.flags){i=i||{};var u=fr.unwrap(e.oldValues[n.bindingIndex+r]);i[n.bindings[r].nonMinifiedName]=new dr(u,o,0!=(2&e.state))}return e.oldValues[n.bindingIndex+r]=o,i}function pg(e,t){if(e.def.nodeFlags&t)for(var n=e.def.nodes,r=0,o=0;o<n.length;o++){var i=n[o],a=i.parent;for(!a&&i.flags&t&&vg(e,o,i.flags&t,r++),0==(i.childFlags&t)&&(o+=i.childCount);a&&1&a.flags&&o===a.nodeIndex+a.childCount;)a.directChildFlags&t&&(r=hg(e,a,t,r)),a=a.parent}}function hg(e,t,n,r){for(var o=t.nodeIndex+1;o<=t.nodeIndex+t.childCount;o++){var i=e.def.nodes[o];i.flags&n&&vg(e,o,i.flags&n,r++),o+=i.childCount}return r}function vg(e,t,n,r){var o=Rh(e,t);if(o){var i=o.instance;i&&(Sh.setCurrentNode(e,t),1048576&n&&Th(e,512,r)&&i.ngAfterContentInit(),2097152&n&&i.ngAfterContentChecked(),4194304&n&&Th(e,768,r)&&i.ngAfterViewInit(),8388608&n&&i.ngAfterViewChecked(),131072&n&&i.ngOnDestroy())}}
731
738
  /**
732
739
  * @license
733
740
  * Copyright Google Inc. All Rights Reserved.
734
741
  *
735
742
  * Use of this source code is governed by an MIT-style license that can be
736
743
  * found in the LICENSE file at https://angular.io/license
737
- */function tg(e){for(var t=e.def.nodeMatchedQueries;e.parent&&Hh(e);){var n=e.parentNodeDef;e=e.parent;for(var r=n.nodeIndex+n.childCount,o=0;o<=r;o++)67108864&(i=e.def.nodes[o]).flags&&536870912&i.flags&&(i.query.filterId&t)===i.query.filterId&&mh(e,o).setDirty(),!(1&i.flags&&o+i.childCount<n.nodeIndex)&&67108864&i.childFlags&&536870912&i.childFlags||(o+=i.childCount)}if(134217728&e.def.nodeFlags)for(o=0;o<e.def.nodes.length;o++){var i;134217728&(i=e.def.nodes[o]).flags&&536870912&i.flags&&mh(e,o).setDirty(),o+=i.childCount}}function ng(e,t){var n=mh(e,t.nodeIndex);if(n.dirty){var r,o=void 0;if(67108864&t.flags){var i=t.parent.parent;o=rg(e,i.nodeIndex,i.nodeIndex+i.childCount,t.query,[]),r=gh(e,t.parent.nodeIndex).instance}else 134217728&t.flags&&(o=rg(e,0,e.def.nodes.length-1,t.query,[]),r=e.component);n.reset(o);for(var a=t.query.bindings,u=!1,s=0;s<a.length;s++){var l=a[s],c=void 0;switch(l.bindingType){case 0:c=n.first;break;case 1:c=n,u=!0}r[l.propName]=c}u&&n.notifyOnChanges()}}function rg(e,t,n,r,o){for(var i=t;i<=n;i++){var a=e.def.nodes[i],u=a.matchedQueries[r.id];if(null!=u&&o.push(og(e,a,u)),1&a.flags&&a.element.template&&(a.element.template.nodeMatchedQueries&r.filterId)===r.filterId){var s=vh(e,i);if((a.childMatchedQueries&r.filterId)===r.filterId&&(rg(e,i+1,i+a.childCount,r,o),i+=a.childCount),16777216&a.flags)for(var l=s.viewContainer._embeddedViews,c=0;c<l.length;c++){var f=l[c],d=Ah(f);d&&d===s&&rg(f,0,f.def.nodes.length-1,r,o)}var p=s.template._projectedViews;if(p)for(c=0;c<p.length;c++){var h=p[c];rg(h,0,h.def.nodes.length-1,r,o)}}(a.childMatchedQueries&r.filterId)!==r.filterId&&(i+=a.childCount)}return o}function og(e,t,n){if(null!=n)switch(n){case 1:return vh(e,t.nodeIndex).renderElement;case 0:return new as(vh(e,t.nodeIndex).renderElement);case 2:return vh(e,t.nodeIndex).template;case 3:return vh(e,t.nodeIndex).viewContainer;case 4:return gh(e,t.nodeIndex).instance}}
744
+ */function gg(e){for(var t=e.def.nodeMatchedQueries;e.parent&&ev(e);){var n=e.parentNodeDef;e=e.parent;for(var r=n.nodeIndex+n.childCount,o=0;o<=r;o++)67108864&(i=e.def.nodes[o]).flags&&536870912&i.flags&&(i.query.filterId&t)===i.query.filterId&&Dh(e,o).setDirty(),!(1&i.flags&&o+i.childCount<n.nodeIndex)&&67108864&i.childFlags&&536870912&i.childFlags||(o+=i.childCount)}if(134217728&e.def.nodeFlags)for(o=0;o<e.def.nodes.length;o++){var i;134217728&(i=e.def.nodes[o]).flags&&536870912&i.flags&&Dh(e,o).setDirty(),o+=i.childCount}}function yg(e,t){var n=Dh(e,t.nodeIndex);if(n.dirty){var r,o=void 0;if(67108864&t.flags){var i=t.parent.parent;o=mg(e,i.nodeIndex,i.nodeIndex+i.childCount,t.query,[]),r=Rh(e,t.parent.nodeIndex).instance}else 134217728&t.flags&&(o=mg(e,0,e.def.nodes.length-1,t.query,[]),r=e.component);n.reset(o);for(var a=t.query.bindings,u=!1,s=0;s<a.length;s++){var l=a[s],c=void 0;switch(l.bindingType){case 0:c=n.first;break;case 1:c=n,u=!0}r[l.propName]=c}u&&n.notifyOnChanges()}}function mg(e,t,n,r,o){for(var i=t;i<=n;i++){var a=e.def.nodes[i],u=a.matchedQueries[r.id];if(null!=u&&o.push(_g(e,a,u)),1&a.flags&&a.element.template&&(a.element.template.nodeMatchedQueries&r.filterId)===r.filterId){var s=Nh(e,i);if((a.childMatchedQueries&r.filterId)===r.filterId&&(mg(e,i+1,i+a.childCount,r,o),i+=a.childCount),16777216&a.flags)for(var l=s.viewContainer._embeddedViews,c=0;c<l.length;c++){var f=l[c],d=Gh(f);d&&d===s&&mg(f,0,f.def.nodes.length-1,r,o)}var p=s.template._projectedViews;if(p)for(c=0;c<p.length;c++){var h=p[c];mg(h,0,h.def.nodes.length-1,r,o)}}(a.childMatchedQueries&r.filterId)!==r.filterId&&(i+=a.childCount)}return o}function _g(e,t,n){if(null!=n)switch(n){case 1:return Nh(e,t.nodeIndex).renderElement;case 0:return new fs(Nh(e,t.nodeIndex).renderElement);case 2:return Nh(e,t.nodeIndex).template;case 3:return Nh(e,t.nodeIndex).viewContainer;case 4:return Rh(e,t.nodeIndex).instance}}
738
745
  /**
739
746
  * @license
740
747
  * Copyright Google Inc. All Rights Reserved.
741
748
  *
742
749
  * Use of this source code is governed by an MIT-style license that can be
743
750
  * found in the LICENSE file at https://angular.io/license
744
- */function ig(e,t,n){var r=zh(e,t,n);r&&Wh(e,n.ngContent.index,1,r,null,void 0)}
751
+ */function wg(e,t,n){var r=ov(e,t,n);r&&lv(e,n.ngContent.index,1,r,null,void 0)}
745
752
  /**
746
753
  * @license
747
754
  * Copyright Google Inc. All Rights Reserved.
748
755
  *
749
756
  * Use of this source code is governed by an MIT-style license that can be
750
757
  * found in the LICENSE file at https://angular.io/license
751
- */function ag(e,t,n){for(var r=new Array(n.length),o=0;o<n.length;o++){var i=n[o];r[o]={flags:8,name:i,ns:null,nonMinifiedName:i,securityContext:null,suffix:null}}return{nodeIndex:-1,parent:null,renderParent:null,bindingIndex:-1,outputIndex:-1,checkIndex:t,flags:e,childFlags:0,directChildFlags:0,childMatchedQueries:0,matchedQueries:{},matchedQueryIds:0,references:{},ngContentIndex:-1,childCount:0,bindings:r,bindingFlags:Xh(r),outputs:[],element:null,provider:null,text:null,query:null,ngContent:null}}function ug(e,t,n){var r,o=e.renderer;r=o.createText(n.text.prefix);var i=zh(e,t,n);return i&&o.appendChild(i,r),{renderText:r}}function sg(e,t){return(null!=e?e.toString():"")+t.suffix}
758
+ */function bg(e,t,n){for(var r=new Array(n.length),o=0;o<n.length;o++){var i=n[o];r[o]={flags:8,name:i,ns:null,nonMinifiedName:i,securityContext:null,suffix:null}}return{nodeIndex:-1,parent:null,renderParent:null,bindingIndex:-1,outputIndex:-1,checkIndex:t,flags:e,childFlags:0,directChildFlags:0,childMatchedQueries:0,matchedQueries:{},matchedQueryIds:0,references:{},ngContentIndex:-1,childCount:0,bindings:r,bindingFlags:hv(r),outputs:[],element:null,provider:null,text:null,query:null,ngContent:null}}function Cg(e,t,n){var r,o=e.renderer;r=o.createText(n.text.prefix);var i=ov(e,t,n);return i&&o.appendChild(i,r),{renderText:r}}function xg(e,t){return(null!=e?e.toString():"")+t.suffix}
752
759
  /**
753
760
  * @license
754
761
  * Copyright Google Inc. All Rights Reserved.
755
762
  *
756
763
  * Use of this source code is governed by an MIT-style license that can be
757
764
  * found in the LICENSE file at https://angular.io/license
758
- */function lg(e){return 0!=(1&e.flags)&&null===e.element.name}function cg(e,t,n){var r=t.element&&t.element.template;if(r){if(!r.lastRenderRootNode)throw new Error("Illegal State: Embedded templates without nodes are not allowed!");if(r.lastRenderRootNode&&16777216&r.lastRenderRootNode.flags)throw new Error("Illegal State: Last root node of a template can't have embedded views, at index "+t.nodeIndex+"!")}if(20224&t.flags&&0==(1&(e?e.flags:0)))throw new Error("Illegal State: StaticProvider/Directive nodes need to be children of elements or anchors, at index "+t.nodeIndex+"!");if(t.query){if(67108864&t.flags&&(!e||0==(16384&e.flags)))throw new Error("Illegal State: Content Query nodes need to be children of directives, at index "+t.nodeIndex+"!");if(134217728&t.flags&&e)throw new Error("Illegal State: View Query nodes have to be top level nodes, at index "+t.nodeIndex+"!")}if(t.childCount){var o=e?e.nodeIndex+e.childCount:n-1;if(t.nodeIndex<=o&&t.nodeIndex+t.childCount>o)throw new Error("Illegal State: childCount of node leads outside of parent, at index "+t.nodeIndex+"!")}}function fg(e,t,n,r){var o=hg(e.root,e.renderer,e,t,n);return vg(o,e.component,r),gg(o),o}function dg(e,t,n){var r=hg(e,e.renderer,null,null,t);return vg(r,n,n),gg(r),r}function pg(e,t,n,r){var o,i=t.element.componentRendererType;return o=i?e.root.rendererFactory.createRenderer(r,i):e.root.renderer,hg(e.root,o,e,t.element.componentProvider,n)}function hg(e,t,n,r,o){var i=new Array(o.nodes.length),a=o.outputCount?new Array(o.outputCount):null;return{def:o,parent:n,viewContainerParent:null,parentNodeDef:r,context:null,component:null,nodes:i,state:13,root:e,renderer:t,oldValues:new Array(o.bindingCount),disposables:a,initIndex:-1}}function vg(e,t,n){e.component=t,e.context=n}function gg(e){var t;Fh(e)&&(t=vh(e.parent,e.parentNodeDef.parent.nodeIndex).renderElement);for(var n=e.def,r=e.nodes,o=0;o<n.nodes.length;o++){var i=n.nodes[o];wh.setCurrentNode(e,o);var a=void 0;switch(201347067&i.flags){case 1:var u=tv(e,t,i),s=void 0;if(33554432&i.flags){var l=Zh(i.element.componentView);s=wh.createComponentView(e,i,l,u)}nv(e,s,i,u),a={renderElement:u,componentView:s,viewContainer:null,template:i.element.template?Iv(e,i):void 0},16777216&i.flags&&(a.viewContainer=wv(e,i,a));break;case 2:a=ug(e,t,i);break;case 512:case 1024:case 2048:case 256:(a=r[o])||4096&i.flags||(a={instance:Bv(e,i)});break;case 16:a={instance:Uv(e,i)};break;case 16384:(a=r[o])||(a={instance:zv(e,i)}),32768&i.flags&&vg(vh(e,i.parent.nodeIndex).componentView,a.instance,a.instance);break;case 32:case 64:case 128:a={value:void 0};break;case 67108864:case 134217728:a=new hp;break;case 8:ig(e,t,i),a=void 0}r[o]=a}Ig(e,Kv.CreateViewNodes),Tg(e,201326592,268435456,0)}function yg(e){wg(e),wh.updateDirectives(e,1),kg(e,Kv.CheckNoChanges),wh.updateRenderer(e,1),Ig(e,Kv.CheckNoChanges),e.state&=-97}function mg(e){1&e.state?(e.state&=-2,e.state|=2):e.state&=-3,dh(e,0,256),wg(e),wh.updateDirectives(e,0),kg(e,Kv.CheckAndUpdate),Tg(e,67108864,536870912,0);var t=dh(e,256,512);Jv(e,2097152|(t?1048576:0)),wh.updateRenderer(e,0),Ig(e,Kv.CheckAndUpdate),Tg(e,134217728,536870912,0),Jv(e,8388608|((t=dh(e,512,768))?4194304:0)),2&e.def.flags&&(e.state&=-9),e.state&=-97,dh(e,768,1024)}function _g(e,t,n,r,o,i,a,u,s,l,c,d,p){return 0===n?function h(e,t,n,r,o,i,a,u,s,l,c,f){switch(201347067&t.flags){case 1:return function d(e,t,n,r,o,i,a,u,s,l,c,f){var d=t.bindings.length,p=!1;return d>0&&ov(e,t,0,n)&&(p=!0),d>1&&ov(e,t,1,r)&&(p=!0),d>2&&ov(e,t,2,o)&&(p=!0),d>3&&ov(e,t,3,i)&&(p=!0),d>4&&ov(e,t,4,a)&&(p=!0),d>5&&ov(e,t,5,u)&&(p=!0),d>6&&ov(e,t,6,s)&&(p=!0),d>7&&ov(e,t,7,l)&&(p=!0),d>8&&ov(e,t,8,c)&&(p=!0),d>9&&ov(e,t,9,f)&&(p=!0),p}(e,t,n,r,o,i,a,u,s,l,c,f);case 2:return function p(e,t,n,r,o,i,a,u,s,l,c,f){var d=!1,p=t.bindings,h=p.length;if(h>0&&Ph(e,t,0,n)&&(d=!0),h>1&&Ph(e,t,1,r)&&(d=!0),h>2&&Ph(e,t,2,o)&&(d=!0),h>3&&Ph(e,t,3,i)&&(d=!0),h>4&&Ph(e,t,4,a)&&(d=!0),h>5&&Ph(e,t,5,u)&&(d=!0),h>6&&Ph(e,t,6,s)&&(d=!0),h>7&&Ph(e,t,7,l)&&(d=!0),h>8&&Ph(e,t,8,c)&&(d=!0),h>9&&Ph(e,t,9,f)&&(d=!0),d){var v=t.text.prefix;h>0&&(v+=sg(n,p[0])),h>1&&(v+=sg(r,p[1])),h>2&&(v+=sg(o,p[2])),h>3&&(v+=sg(i,p[3])),h>4&&(v+=sg(a,p[4])),h>5&&(v+=sg(u,p[5])),h>6&&(v+=sg(s,p[6])),h>7&&(v+=sg(l,p[7])),h>8&&(v+=sg(c,p[8])),h>9&&(v+=sg(f,p[9]));var g=hh(e,t.nodeIndex).renderText;e.renderer.setValue(g,v)}return d}(e,t,n,r,o,i,a,u,s,l,c,f);case 16384:return function h(e,t,n,r,o,i,a,u,s,l,c,f){var d=gh(e,t.nodeIndex),p=d.instance,h=!1,v=void 0,g=t.bindings.length;return g>0&&Th(e,t,0,n)&&(h=!0,v=$v(e,d,t,0,n,v)),g>1&&Th(e,t,1,r)&&(h=!0,v=$v(e,d,t,1,r,v)),g>2&&Th(e,t,2,o)&&(h=!0,v=$v(e,d,t,2,o,v)),g>3&&Th(e,t,3,i)&&(h=!0,v=$v(e,d,t,3,i,v)),g>4&&Th(e,t,4,a)&&(h=!0,v=$v(e,d,t,4,a,v)),g>5&&Th(e,t,5,u)&&(h=!0,v=$v(e,d,t,5,u,v)),g>6&&Th(e,t,6,s)&&(h=!0,v=$v(e,d,t,6,s,v)),g>7&&Th(e,t,7,l)&&(h=!0,v=$v(e,d,t,7,l,v)),g>8&&Th(e,t,8,c)&&(h=!0,v=$v(e,d,t,8,c,v)),g>9&&Th(e,t,9,f)&&(h=!0,v=$v(e,d,t,9,f,v)),v&&p.ngOnChanges(v),65536&t.flags&&ph(e,256,t.nodeIndex)&&p.ngOnInit(),262144&t.flags&&p.ngDoCheck(),h}(e,t,n,r,o,i,a,u,s,l,c,f);case 32:case 64:case 128:return function v(e,t,n,r,o,i,a,u,s,l,c,f){var d=t.bindings,p=!1,h=d.length;if(h>0&&Ph(e,t,0,n)&&(p=!0),h>1&&Ph(e,t,1,r)&&(p=!0),h>2&&Ph(e,t,2,o)&&(p=!0),h>3&&Ph(e,t,3,i)&&(p=!0),h>4&&Ph(e,t,4,a)&&(p=!0),h>5&&Ph(e,t,5,u)&&(p=!0),h>6&&Ph(e,t,6,s)&&(p=!0),h>7&&Ph(e,t,7,l)&&(p=!0),h>8&&Ph(e,t,8,c)&&(p=!0),h>9&&Ph(e,t,9,f)&&(p=!0),p){var v=yh(e,t.nodeIndex),g=void 0;switch(201347067&t.flags){case 32:g=new Array(d.length),h>0&&(g[0]=n),h>1&&(g[1]=r),h>2&&(g[2]=o),h>3&&(g[3]=i),h>4&&(g[4]=a),h>5&&(g[5]=u),h>6&&(g[6]=s),h>7&&(g[7]=l),h>8&&(g[8]=c),h>9&&(g[9]=f);break;case 64:g={},h>0&&(g[d[0].name]=n),h>1&&(g[d[1].name]=r),h>2&&(g[d[2].name]=o),h>3&&(g[d[3].name]=i),h>4&&(g[d[4].name]=a),h>5&&(g[d[5].name]=u),h>6&&(g[d[6].name]=s),h>7&&(g[d[7].name]=l),h>8&&(g[d[8].name]=c),h>9&&(g[d[9].name]=f);break;case 128:var y=n;switch(h){case 1:g=y.transform(n);break;case 2:g=y.transform(r);break;case 3:g=y.transform(r,o);break;case 4:g=y.transform(r,o,i);break;case 5:g=y.transform(r,o,i,a);break;case 6:g=y.transform(r,o,i,a,u);break;case 7:g=y.transform(r,o,i,a,u,s);break;case 8:g=y.transform(r,o,i,a,u,s,l);break;case 9:g=y.transform(r,o,i,a,u,s,l,c);break;case 10:g=y.transform(r,o,i,a,u,s,l,c,f)}}v.value=g}return p}(e,t,n,r,o,i,a,u,s,l,c,f);default:throw"unreachable"}}(e,t,r,o,i,a,u,s,l,c,d,p):function v(e,t,n){switch(201347067&t.flags){case 1:return function r(e,t,n){for(var r=!1,o=0;o<n.length;o++)ov(e,t,o,n[o])&&(r=!0);return r}(e,t,n);case 2:return function o(e,t,n){for(var r=t.bindings,o=!1,i=0;i<n.length;i++)Ph(e,t,i,n[i])&&(o=!0);if(o){var a="";for(i=0;i<n.length;i++)a+=sg(n[i],r[i]);a=t.text.prefix+a;var u=hh(e,t.nodeIndex).renderText;e.renderer.setValue(u,a)}return o}(e,t,n);case 16384:return function i(e,t,n){for(var r=gh(e,t.nodeIndex),o=r.instance,i=!1,a=void 0,u=0;u<n.length;u++)Th(e,t,u,n[u])&&(i=!0,a=$v(e,r,t,u,n[u],a));return a&&o.ngOnChanges(a),65536&t.flags&&ph(e,256,t.nodeIndex)&&o.ngOnInit(),262144&t.flags&&o.ngDoCheck(),i}(e,t,n);case 32:case 64:case 128:return function a(e,t,n){for(var r=t.bindings,o=!1,i=0;i<n.length;i++)Ph(e,t,i,n[i])&&(o=!0);if(o){var a=yh(e,t.nodeIndex),u=void 0;switch(201347067&t.flags){case 32:u=n;break;case 64:for(u={},i=0;i<n.length;i++)u[r[i].name]=n[i];break;case 128:var s=n[0],l=n.slice(1);u=s.transform.apply(s,f(l))}a.value=u}return o}
765
+ */function Ig(e){return 0!=(1&e.flags)&&null===e.element.name}function kg(e,t,n){var r=t.element&&t.element.template;if(r){if(!r.lastRenderRootNode)throw new Error("Illegal State: Embedded templates without nodes are not allowed!");if(r.lastRenderRootNode&&16777216&r.lastRenderRootNode.flags)throw new Error("Illegal State: Last root node of a template can't have embedded views, at index "+t.nodeIndex+"!")}if(20224&t.flags&&0==(1&(e?e.flags:0)))throw new Error("Illegal State: StaticProvider/Directive nodes need to be children of elements or anchors, at index "+t.nodeIndex+"!");if(t.query){if(67108864&t.flags&&(!e||0==(16384&e.flags)))throw new Error("Illegal State: Content Query nodes need to be children of directives, at index "+t.nodeIndex+"!");if(134217728&t.flags&&e)throw new Error("Illegal State: View Query nodes have to be top level nodes, at index "+t.nodeIndex+"!")}if(t.childCount){var o=e?e.nodeIndex+e.childCount:n-1;if(t.nodeIndex<=o&&t.nodeIndex+t.childCount>o)throw new Error("Illegal State: childCount of node leads outside of parent, at index "+t.nodeIndex+"!")}}function Eg(e,t,n,r){var o=Pg(e.root,e.renderer,e,t,n);return Ng(o,e.component,r),Rg(o),o}function Og(e,t,n){var r=Pg(e,e.renderer,null,null,t);return Ng(r,n,n),Rg(r),r}function Tg(e,t,n,r){var o,i=t.element.componentRendererType;return o=i?e.root.rendererFactory.createRenderer(r,i):e.root.renderer,Pg(e.root,o,e,t.element.componentProvider,n)}function Pg(e,t,n,r,o){var i=new Array(o.nodes.length),a=o.outputCount?new Array(o.outputCount):null;return{def:o,parent:n,viewContainerParent:null,parentNodeDef:r,context:null,component:null,nodes:i,state:13,root:e,renderer:t,oldValues:new Array(o.bindingCount),disposables:a,initIndex:-1}}function Ng(e,t,n){e.component=t,e.context=n}function Rg(e){var t;Xh(e)&&(t=Nh(e.parent,e.parentNodeDef.parent.nodeIndex).renderElement);for(var n=e.def,r=e.nodes,o=0;o<n.nodes.length;o++){var i=n.nodes[o];Sh.setCurrentNode(e,o);var a=void 0;switch(201347067&i.flags){case 1:var u=gv(e,t,i),s=void 0;if(33554432&i.flags){var l=av(i.element.componentView);s=Sh.createComponentView(e,i,l,u)}yv(e,s,i,u),a={renderElement:u,componentView:s,viewContainer:null,template:i.element.template?Hv(e,i):void 0},16777216&i.flags&&(a.viewContainer=Sv(e,i,a));break;case 2:a=Cg(e,t,i);break;case 512:case 1024:case 2048:case 256:(a=r[o])||4096&i.flags||(a={instance:ng(e,i)});break;case 16:a={instance:rg(e,i)};break;case 16384:(a=r[o])||(a={instance:og(e,i)}),32768&i.flags&&Ng(Nh(e,i.parent.nodeIndex).componentView,a.instance,a.instance);break;case 32:case 64:case 128:a={value:void 0};break;case 67108864:case 134217728:a=new Np;break;case 8:wg(e,t,i),a=void 0}r[o]=a}Hg(e,sg.CreateViewNodes),zg(e,201326592,268435456,0)}function jg(e){Sg(e),Sh.updateDirectives(e,1),Lg(e,sg.CheckNoChanges),Sh.updateRenderer(e,1),Hg(e,sg.CheckNoChanges),e.state&=-97}function Dg(e){1&e.state?(e.state&=-2,e.state|=2):e.state&=-3,Oh(e,0,256),Sg(e),Sh.updateDirectives(e,0),Lg(e,sg.CheckAndUpdate),zg(e,67108864,536870912,0);var t=Oh(e,256,512);pg(e,2097152|(t?1048576:0)),Sh.updateRenderer(e,0),Hg(e,sg.CheckAndUpdate),zg(e,134217728,536870912,0),pg(e,8388608|((t=Oh(e,512,768))?4194304:0)),2&e.def.flags&&(e.state&=-9),e.state&=-97,Oh(e,768,1024)}function Ag(e,t,n,r,o,i,a,u,s,l,c,d,p){return 0===n?function h(e,t,n,r,o,i,a,u,s,l,c,f){switch(201347067&t.flags){case 1:return function d(e,t,n,r,o,i,a,u,s,l,c,f){var d=t.bindings.length,p=!1;return d>0&&_v(e,t,0,n)&&(p=!0),d>1&&_v(e,t,1,r)&&(p=!0),d>2&&_v(e,t,2,o)&&(p=!0),d>3&&_v(e,t,3,i)&&(p=!0),d>4&&_v(e,t,4,a)&&(p=!0),d>5&&_v(e,t,5,u)&&(p=!0),d>6&&_v(e,t,6,s)&&(p=!0),d>7&&_v(e,t,7,l)&&(p=!0),d>8&&_v(e,t,8,c)&&(p=!0),d>9&&_v(e,t,9,f)&&(p=!0),p}(e,t,n,r,o,i,a,u,s,l,c,f);case 2:return function p(e,t,n,r,o,i,a,u,s,l,c,f){var d=!1,p=t.bindings,h=p.length;if(h>0&&Qh(e,t,0,n)&&(d=!0),h>1&&Qh(e,t,1,r)&&(d=!0),h>2&&Qh(e,t,2,o)&&(d=!0),h>3&&Qh(e,t,3,i)&&(d=!0),h>4&&Qh(e,t,4,a)&&(d=!0),h>5&&Qh(e,t,5,u)&&(d=!0),h>6&&Qh(e,t,6,s)&&(d=!0),h>7&&Qh(e,t,7,l)&&(d=!0),h>8&&Qh(e,t,8,c)&&(d=!0),h>9&&Qh(e,t,9,f)&&(d=!0),d){var v=t.text.prefix;h>0&&(v+=xg(n,p[0])),h>1&&(v+=xg(r,p[1])),h>2&&(v+=xg(o,p[2])),h>3&&(v+=xg(i,p[3])),h>4&&(v+=xg(a,p[4])),h>5&&(v+=xg(u,p[5])),h>6&&(v+=xg(s,p[6])),h>7&&(v+=xg(l,p[7])),h>8&&(v+=xg(c,p[8])),h>9&&(v+=xg(f,p[9]));var g=Ph(e,t.nodeIndex).renderText;e.renderer.setValue(g,v)}return d}(e,t,n,r,o,i,a,u,s,l,c,f);case 16384:return function h(e,t,n,r,o,i,a,u,s,l,c,f){var d=Rh(e,t.nodeIndex),p=d.instance,h=!1,v=void 0,g=t.bindings.length;return g>0&&zh(e,t,0,n)&&(h=!0,v=dg(e,d,t,0,n,v)),g>1&&zh(e,t,1,r)&&(h=!0,v=dg(e,d,t,1,r,v)),g>2&&zh(e,t,2,o)&&(h=!0,v=dg(e,d,t,2,o,v)),g>3&&zh(e,t,3,i)&&(h=!0,v=dg(e,d,t,3,i,v)),g>4&&zh(e,t,4,a)&&(h=!0,v=dg(e,d,t,4,a,v)),g>5&&zh(e,t,5,u)&&(h=!0,v=dg(e,d,t,5,u,v)),g>6&&zh(e,t,6,s)&&(h=!0,v=dg(e,d,t,6,s,v)),g>7&&zh(e,t,7,l)&&(h=!0,v=dg(e,d,t,7,l,v)),g>8&&zh(e,t,8,c)&&(h=!0,v=dg(e,d,t,8,c,v)),g>9&&zh(e,t,9,f)&&(h=!0,v=dg(e,d,t,9,f,v)),v&&p.ngOnChanges(v),65536&t.flags&&Th(e,256,t.nodeIndex)&&p.ngOnInit(),262144&t.flags&&p.ngDoCheck(),h}(e,t,n,r,o,i,a,u,s,l,c,f);case 32:case 64:case 128:return function v(e,t,n,r,o,i,a,u,s,l,c,f){var d=t.bindings,p=!1,h=d.length;if(h>0&&Qh(e,t,0,n)&&(p=!0),h>1&&Qh(e,t,1,r)&&(p=!0),h>2&&Qh(e,t,2,o)&&(p=!0),h>3&&Qh(e,t,3,i)&&(p=!0),h>4&&Qh(e,t,4,a)&&(p=!0),h>5&&Qh(e,t,5,u)&&(p=!0),h>6&&Qh(e,t,6,s)&&(p=!0),h>7&&Qh(e,t,7,l)&&(p=!0),h>8&&Qh(e,t,8,c)&&(p=!0),h>9&&Qh(e,t,9,f)&&(p=!0),p){var v=jh(e,t.nodeIndex),g=void 0;switch(201347067&t.flags){case 32:g=new Array(d.length),h>0&&(g[0]=n),h>1&&(g[1]=r),h>2&&(g[2]=o),h>3&&(g[3]=i),h>4&&(g[4]=a),h>5&&(g[5]=u),h>6&&(g[6]=s),h>7&&(g[7]=l),h>8&&(g[8]=c),h>9&&(g[9]=f);break;case 64:g={},h>0&&(g[d[0].name]=n),h>1&&(g[d[1].name]=r),h>2&&(g[d[2].name]=o),h>3&&(g[d[3].name]=i),h>4&&(g[d[4].name]=a),h>5&&(g[d[5].name]=u),h>6&&(g[d[6].name]=s),h>7&&(g[d[7].name]=l),h>8&&(g[d[8].name]=c),h>9&&(g[d[9].name]=f);break;case 128:var y=n;switch(h){case 1:g=y.transform(n);break;case 2:g=y.transform(r);break;case 3:g=y.transform(r,o);break;case 4:g=y.transform(r,o,i);break;case 5:g=y.transform(r,o,i,a);break;case 6:g=y.transform(r,o,i,a,u);break;case 7:g=y.transform(r,o,i,a,u,s);break;case 8:g=y.transform(r,o,i,a,u,s,l);break;case 9:g=y.transform(r,o,i,a,u,s,l,c);break;case 10:g=y.transform(r,o,i,a,u,s,l,c,f)}}v.value=g}return p}(e,t,n,r,o,i,a,u,s,l,c,f);default:throw"unreachable"}}(e,t,r,o,i,a,u,s,l,c,d,p):function v(e,t,n){switch(201347067&t.flags){case 1:return function r(e,t,n){for(var r=!1,o=0;o<n.length;o++)_v(e,t,o,n[o])&&(r=!0);return r}(e,t,n);case 2:return function o(e,t,n){for(var r=t.bindings,o=!1,i=0;i<n.length;i++)Qh(e,t,i,n[i])&&(o=!0);if(o){var a="";for(i=0;i<n.length;i++)a+=xg(n[i],r[i]);a=t.text.prefix+a;var u=Ph(e,t.nodeIndex).renderText;e.renderer.setValue(u,a)}return o}(e,t,n);case 16384:return function i(e,t,n){for(var r=Rh(e,t.nodeIndex),o=r.instance,i=!1,a=void 0,u=0;u<n.length;u++)zh(e,t,u,n[u])&&(i=!0,a=dg(e,r,t,u,n[u],a));return a&&o.ngOnChanges(a),65536&t.flags&&Th(e,256,t.nodeIndex)&&o.ngOnInit(),262144&t.flags&&o.ngDoCheck(),i}(e,t,n);case 32:case 64:case 128:return function a(e,t,n){for(var r=t.bindings,o=!1,i=0;i<n.length;i++)Qh(e,t,i,n[i])&&(o=!0);if(o){var a=jh(e,t.nodeIndex),u=void 0;switch(201347067&t.flags){case 32:u=n;break;case 64:for(u={},i=0;i<n.length;i++)u[r[i].name]=n[i];break;case 128:var s=n[0],l=n.slice(1);u=s.transform.apply(s,f(l))}a.value=u}return o}
759
766
  /**
760
767
  * @license
761
768
  * Copyright Google Inc. All Rights Reserved.
762
769
  *
763
770
  * Use of this source code is governed by an MIT-style license that can be
764
771
  * found in the LICENSE file at https://angular.io/license
765
- */(e,t,n);default:throw"unreachable"}}(e,t,r)}function wg(e){var t=e.def;if(4&t.nodeFlags)for(var n=0;n<t.nodes.length;n++){var r=t.nodes[n];if(4&r.flags){var o=vh(e,n).template._projectedViews;if(o)for(var i=0;i<o.length;i++){var a=o[i];a.state|=32,Rh(a,e)}}else 0==(4&r.childFlags)&&(n+=r.childCount)}}function bg(e,t,n,r,o,i,a,u,s,l,c,f,d){return 0===n?function p(e,t,n,r,o,i,a,u,s,l,c,f){var d=t.bindings.length;d>0&&Nh(e,t,0,n),d>1&&Nh(e,t,1,r),d>2&&Nh(e,t,2,o),d>3&&Nh(e,t,3,i),d>4&&Nh(e,t,4,a),d>5&&Nh(e,t,5,u),d>6&&Nh(e,t,6,s),d>7&&Nh(e,t,7,l),d>8&&Nh(e,t,8,c),d>9&&Nh(e,t,9,f)}(e,t,r,o,i,a,u,s,l,c,f,d):function h(e,t,n){for(var r=0;r<n.length;r++)Nh(e,t,r,n[r])}(e,t,r),!1}function Cg(e,t){if(mh(e,t.nodeIndex).dirty)throw bh(wh.createDebugContext(e,t.nodeIndex),"Query "+t.query.id+" not dirty","Query "+t.query.id+" dirty",0!=(1&e.state))}function xg(e){if(!(128&e.state)){if(kg(e,Kv.Destroy),Ig(e,Kv.Destroy),Jv(e,131072),e.disposables)for(var t=0;t<e.disposables.length;t++)e.disposables[t]();!function n(e){if(16&e.state){var t=Ah(e);if(t){var n=t.template._projectedViews;n&&(vv(n,n.indexOf(e)),wh.dirtyParentQueries(e))}}}(e),e.renderer.destroyNode&&function r(e){for(var t=e.def.nodes.length,n=0;n<t;n++){var r=e.def.nodes[n];1&r.flags?e.renderer.destroyNode(vh(e,n).renderElement):2&r.flags?e.renderer.destroyNode(hh(e,n).renderText):(67108864&r.flags||134217728&r.flags)&&mh(e,n).destroy()}}(e),Fh(e)&&e.renderer.destroy(),e.state|=128}}function Ig(e,t){var n=e.def;if(33554432&n.nodeFlags)for(var r=0;r<n.nodes.length;r++){var o=n.nodes[r];33554432&o.flags?Eg(vh(e,r).componentView,t):0==(33554432&o.childFlags)&&(r+=o.childCount)}}function kg(e,t){var n=e.def;if(16777216&n.nodeFlags)for(var r=0;r<n.nodes.length;r++){var o=n.nodes[r];if(16777216&o.flags)for(var i=vh(e,r).viewContainer._embeddedViews,a=0;a<i.length;a++)Eg(i[a],t);else 0==(16777216&o.childFlags)&&(r+=o.childCount)}}function Eg(e,t){var n=e.state;switch(t){case Kv.CheckNoChanges:0==(128&n)&&(12==(12&n)?yg(e):64&n&&Og(e,Kv.CheckNoChangesProjectedViews));break;case Kv.CheckNoChangesProjectedViews:0==(128&n)&&(32&n?yg(e):64&n&&Og(e,t));break;case Kv.CheckAndUpdate:0==(128&n)&&(12==(12&n)?mg(e):64&n&&Og(e,Kv.CheckAndUpdateProjectedViews));break;case Kv.CheckAndUpdateProjectedViews:0==(128&n)&&(32&n?mg(e):64&n&&Og(e,t));break;case Kv.Destroy:xg(e);break;case Kv.CreateViewNodes:gg(e)}}function Og(e,t){kg(e,t),Ig(e,t)}function Tg(e,t,n,r){if(e.def.nodeFlags&t&&e.def.nodeFlags&n)for(var o=e.def.nodes.length,i=0;i<o;i++){var a=e.def.nodes[i];if(a.flags&t&&a.flags&n)switch(wh.setCurrentNode(e,a.nodeIndex),r){case 0:ng(e,a);break;case 1:Cg(e,a)}a.childFlags&t&&a.childFlags&n||(i+=a.childCount)}}
772
+ */(e,t,n);default:throw"unreachable"}}(e,t,r)}function Sg(e){var t=e.def;if(4&t.nodeFlags)for(var n=0;n<t.nodes.length;n++){var r=t.nodes[n];if(4&r.flags){var o=Nh(e,n).template._projectedViews;if(o)for(var i=0;i<o.length;i++){var a=o[i];a.state|=32,Kh(a,e)}}else 0==(4&r.childFlags)&&(n+=r.childCount)}}function Vg(e,t,n,r,o,i,a,u,s,l,c,f,d){return 0===n?function p(e,t,n,r,o,i,a,u,s,l,c,f){var d=t.bindings.length;d>0&&Zh(e,t,0,n),d>1&&Zh(e,t,1,r),d>2&&Zh(e,t,2,o),d>3&&Zh(e,t,3,i),d>4&&Zh(e,t,4,a),d>5&&Zh(e,t,5,u),d>6&&Zh(e,t,6,s),d>7&&Zh(e,t,7,l),d>8&&Zh(e,t,8,c),d>9&&Zh(e,t,9,f)}(e,t,r,o,i,a,u,s,l,c,f,d):function h(e,t,n){for(var r=0;r<n.length;r++)Zh(e,t,r,n[r])}(e,t,r),!1}function Mg(e,t){if(Dh(e,t.nodeIndex).dirty)throw Vh(Sh.createDebugContext(e,t.nodeIndex),"Query "+t.query.id+" not dirty","Query "+t.query.id+" dirty",0!=(1&e.state))}function Fg(e){if(!(128&e.state)){if(Lg(e,sg.Destroy),Hg(e,sg.Destroy),pg(e,131072),e.disposables)for(var t=0;t<e.disposables.length;t++)e.disposables[t]();!function n(e){if(16&e.state){var t=Gh(e);if(t){var n=t.template._projectedViews;n&&(Nv(n,n.indexOf(e)),Sh.dirtyParentQueries(e))}}}(e),e.renderer.destroyNode&&function r(e){for(var t=e.def.nodes.length,n=0;n<t;n++){var r=e.def.nodes[n];1&r.flags?e.renderer.destroyNode(Nh(e,n).renderElement):2&r.flags?e.renderer.destroyNode(Ph(e,n).renderText):(67108864&r.flags||134217728&r.flags)&&Dh(e,n).destroy()}}(e),Xh(e)&&e.renderer.destroy(),e.state|=128}}function Hg(e,t){var n=e.def;if(33554432&n.nodeFlags)for(var r=0;r<n.nodes.length;r++){var o=n.nodes[r];33554432&o.flags?Bg(Nh(e,r).componentView,t):0==(33554432&o.childFlags)&&(r+=o.childCount)}}function Lg(e,t){var n=e.def;if(16777216&n.nodeFlags)for(var r=0;r<n.nodes.length;r++){var o=n.nodes[r];if(16777216&o.flags)for(var i=Nh(e,r).viewContainer._embeddedViews,a=0;a<i.length;a++)Bg(i[a],t);else 0==(16777216&o.childFlags)&&(r+=o.childCount)}}function Bg(e,t){var n=e.state;switch(t){case sg.CheckNoChanges:0==(128&n)&&(12==(12&n)?jg(e):64&n&&Ug(e,sg.CheckNoChangesProjectedViews));break;case sg.CheckNoChangesProjectedViews:0==(128&n)&&(32&n?jg(e):64&n&&Ug(e,t));break;case sg.CheckAndUpdate:0==(128&n)&&(12==(12&n)?Dg(e):64&n&&Ug(e,sg.CheckAndUpdateProjectedViews));break;case sg.CheckAndUpdateProjectedViews:0==(128&n)&&(32&n?Dg(e):64&n&&Ug(e,t));break;case sg.Destroy:Fg(e);break;case sg.CreateViewNodes:Rg(e)}}function Ug(e,t){Lg(e,t),Hg(e,t)}function zg(e,t,n,r){if(e.def.nodeFlags&t&&e.def.nodeFlags&n)for(var o=e.def.nodes.length,i=0;i<o;i++){var a=e.def.nodes[i];if(a.flags&t&&a.flags&n)switch(Sh.setCurrentNode(e,a.nodeIndex),r){case 0:yg(e,a);break;case 1:Mg(e,a)}a.childFlags&t&&a.childFlags&n||(i+=a.childCount)}}
766
773
  /**
767
774
  * @license
768
775
  * Copyright Google Inc. All Rights Reserved.
769
776
  *
770
777
  * Use of this source code is governed by an MIT-style license that can be
771
778
  * found in the LICENSE file at https://angular.io/license
772
- */!function(e){e[e.CreateViewNodes=0]="CreateViewNodes",e[e.CheckNoChanges=1]="CheckNoChanges",e[e.CheckNoChangesProjectedViews=2]="CheckNoChangesProjectedViews",e[e.CheckAndUpdate=3]="CheckAndUpdate",e[e.CheckAndUpdateProjectedViews=4]="CheckAndUpdateProjectedViews",e[e.Destroy=5]="Destroy"}(Kv||(Kv={}));var Pg=!1;function Ng(){if(!Pg){Pg=!0;var e=Ts()?function t(){return{setCurrentNode:Xg,createRootView:Rg,createEmbeddedView:Ag,createComponentView:Sg,createNgModuleRef:Vg,overrideProvider:Qg,overrideComponentView:Zg,clearOverrides:qg,checkAndUpdateView:Yg,checkNoChangesView:$g,destroyView:Jg,createDebugContext:function(e,t){return new uy(e,t)},handleEvent:ey,updateDirectives:ty,updateRenderer:ny}}():function n(){return{setCurrentNode:function(){},createRootView:Dg,createEmbeddedView:fg,createComponentView:pg,createNgModuleRef:Nv,overrideProvider:Ih,overrideComponentView:Ih,clearOverrides:Ih,checkAndUpdateView:mg,checkNoChangesView:yg,destroyView:xg,createDebugContext:function(e,t){return new uy(e,t)},handleEvent:function(e,t,n,r){return e.def.handleEvent(e,t,n,r)},updateDirectives:function(e,t){return e.def.updateDirectives(0===t?Wg:Gg,e)},updateRenderer:function(e,t){return e.def.updateRenderer(0===t?Wg:Gg,e)}}}();wh.setCurrentNode=e.setCurrentNode,wh.createRootView=e.createRootView,wh.createEmbeddedView=e.createEmbeddedView,wh.createComponentView=e.createComponentView,wh.createNgModuleRef=e.createNgModuleRef,wh.overrideProvider=e.overrideProvider,wh.overrideComponentView=e.overrideComponentView,wh.clearOverrides=e.clearOverrides,wh.checkAndUpdateView=e.checkAndUpdateView,wh.checkNoChangesView=e.checkNoChangesView,wh.destroyView=e.destroyView,wh.resolveDep=Gv,wh.createDebugContext=e.createDebugContext,wh.handleEvent=e.handleEvent,wh.updateDirectives=e.updateDirectives,wh.updateRenderer=e.updateRenderer,wh.dirtyParentQueries=tg}}function Dg(e,t,n,r,o,i){return dg(jg(e,o,o.injector.get(ds),t,n),r,i)}function Rg(e,t,n,r,o,i){var a=o.injector.get(ds),u=jg(e,o,new fy(a),t,n),s=Kg(r);return ly(Mg.create,dg,null,[u,s,i])}function jg(e,t,n,r,o){var i=t.injector.get(ys),a=t.injector.get(Qf);return{ngModule:t,injector:e,projectableNodes:r,selectorOrNode:o,sanitizer:i,rendererFactory:n,renderer:n.createRenderer(null,null),errorHandler:a}}function Ag(e,t,n,r){var o=Kg(n);return ly(Mg.create,fg,null,[e,t,o,r])}function Sg(e,t,n,r){return n=zg.get(t.element.componentProvider.provider.token)||Kg(n),ly(Mg.create,pg,null,[e,t,n,r])}function Vg(e,t,n,r){return Nv(e,t,n,function o(e){var t=function n(e){var t=!1,n=!1;return 0===Bg.size?{hasOverrides:t,hasDeprecatedOverrides:n}:(e.providers.forEach(function(e){var r=Bg.get(e.token);3840&e.flags&&r&&(t=!0,n=n||r.deprecatedBehavior)}),e.modules.forEach(function(e){Ug.forEach(function(r,o){I(o).providedIn===e&&(t=!0,n=n||r.deprecatedBehavior)})}),{hasOverrides:t,hasDeprecatedOverrides:n})}(e),r=t.hasDeprecatedOverrides;return t.hasOverrides?(function o(e){for(var t=0;t<e.providers.length;t++){var n=e.providers[t];r&&(n.flags|=4096);var o=Bg.get(n.token);o&&(n.flags=-3841&n.flags|o.flags,n.deps=Uh(o.deps),n.value=o.value)}if(Ug.size>0){var i=new Set(e.modules);Ug.forEach(function(t,n){if(i.has(I(n).providedIn)){var o={token:n,flags:t.flags|(r?4096:0),deps:Uh(t.deps),value:t.value,index:e.providers.length};e.providers.push(o),e.providersByKey[Eh(n)]=o}})}}(e=e.factory(function(){return Ih})),e):e}(r))}var Mg,Fg,Hg,Lg,Bg=new Map,Ug=new Map,zg=new Map;function Qg(e){var t;Bg.set(e.token,e),"function"==typeof e.token&&(t=I(e.token))&&"function"==typeof t.providedIn&&Ug.set(e.token,e)}function Zg(e,t){var n=Zh(Zh(yv(t)).nodes[0].element.componentView);zg.set(e,n)}function qg(){Bg.clear(),Ug.clear(),zg.clear()}function Kg(e){if(0===Bg.size)return e;var t=function n(e){for(var t=[],n=null,r=0;r<e.nodes.length;r++){var o=e.nodes[r];1&o.flags&&(n=o),n&&3840&o.flags&&Bg.has(o.provider.token)&&(t.push(n.nodeIndex),n=null)}return t}(e);if(0===t.length)return e;e=e.factory(function(){return Ih});for(var r=0;r<t.length;r++)o(e,t[r]);return e;function o(e,t){for(var n=t+1;n<e.nodes.length;n++){var r=e.nodes[n];if(1&r.flags)return;if(3840&r.flags){var o=r.provider,i=Bg.get(o.token);i&&(r.flags=-3841&r.flags|i.flags,o.deps=Uh(i.deps),o.value=i.value)}}}}function Wg(e,t,n,r,o,i,a,u,s,l,c,f,d){var p=e.def.nodes[t];return _g(e,p,n,r,o,i,a,u,s,l,c,f,d),224&p.flags?yh(e,t).value:void 0}function Gg(e,t,n,r,o,i,a,u,s,l,c,f,d){var p=e.def.nodes[t];return bg(e,p,n,r,o,i,a,u,s,l,c,f,d),224&p.flags?yh(e,t).value:void 0}function Yg(e){return ly(Mg.detectChanges,mg,null,[e])}function $g(e){return ly(Mg.checkNoChanges,yg,null,[e])}function Jg(e){return ly(Mg.destroy,xg,null,[e])}function Xg(e,t){Hg=e,Lg=t}function ey(e,t,n,r){return Xg(e,t),ly(Mg.handleEvent,e.def.handleEvent,null,[e,t,n,r])}function ty(e,t){if(128&e.state)throw xh(Mg[Fg]);return Xg(e,iy(e,0)),e.def.updateDirectives(function n(e,r,o){for(var i=[],a=3;a<arguments.length;a++)i[a-3]=arguments[a];var u=e.def.nodes[r];return 0===t?ry(e,u,o,i):oy(e,u,o,i),16384&u.flags&&Xg(e,iy(e,r)),224&u.flags?yh(e,u.nodeIndex).value:void 0},e)}function ny(e,t){if(128&e.state)throw xh(Mg[Fg]);return Xg(e,ay(e,0)),e.def.updateRenderer(function n(e,r,o){for(var i=[],a=3;a<arguments.length;a++)i[a-3]=arguments[a];var u=e.def.nodes[r];return 0===t?ry(e,u,o,i):oy(e,u,o,i),3&u.flags&&Xg(e,ay(e,r)),224&u.flags?yh(e,u.nodeIndex).value:void 0},e)}function ry(e,t,n,r){if(_g.apply(void 0,f([e,t,n],r))){var o=1===n?r[0]:r;if(16384&t.flags){for(var i={},a=0;a<t.bindings.length;a++){var u=t.bindings[a],s=o[a];8&u.flags&&(i[(h=u.nonMinifiedName,"ng-reflect-"+function l(e){return e.replace(Sr,function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];return"-"+e[1].toLowerCase()})}(h.replace(/[$@]/g,"_")))]=Vr(s))}var c=t.parent,d=vh(e,c.nodeIndex).renderElement;if(c.element.name)for(var p in i)null!=(s=i[p])?e.renderer.setAttribute(d,p,s):e.renderer.removeAttribute(d,p);else e.renderer.setValue(d,"bindings="+JSON.stringify(i,null,2))}}
779
+ */!function(e){e[e.CreateViewNodes=0]="CreateViewNodes",e[e.CheckNoChanges=1]="CheckNoChanges",e[e.CheckNoChangesProjectedViews=2]="CheckNoChangesProjectedViews",e[e.CheckAndUpdate=3]="CheckAndUpdate",e[e.CheckAndUpdateProjectedViews=4]="CheckAndUpdateProjectedViews",e[e.Destroy=5]="Destroy"}(sg||(sg={}));var Qg=!1;function Zg(){if(!Qg){Qg=!0;var e=Ds()?function t(){return{setCurrentNode:hy,createRootView:Kg,createEmbeddedView:Gg,createComponentView:Yg,createNgModuleRef:$g,overrideProvider:iy,overrideComponentView:ay,clearOverrides:uy,checkAndUpdateView:fy,checkNoChangesView:dy,destroyView:py,createDebugContext:function(e,t){return new Cy(e,t)},handleEvent:vy,updateDirectives:gy,updateRenderer:yy}}():function n(){return{setCurrentNode:function(){},createRootView:qg,createEmbeddedView:Eg,createComponentView:Tg,createNgModuleRef:Zv,overrideProvider:Hh,overrideComponentView:Hh,clearOverrides:Hh,checkAndUpdateView:Dg,checkNoChangesView:jg,destroyView:Fg,createDebugContext:function(e,t){return new Cy(e,t)},handleEvent:function(e,t,n,r){return e.def.handleEvent(e,t,n,r)},updateDirectives:function(e,t){return e.def.updateDirectives(0===t?ly:cy,e)},updateRenderer:function(e,t){return e.def.updateRenderer(0===t?ly:cy,e)}}}();Sh.setCurrentNode=e.setCurrentNode,Sh.createRootView=e.createRootView,Sh.createEmbeddedView=e.createEmbeddedView,Sh.createComponentView=e.createComponentView,Sh.createNgModuleRef=e.createNgModuleRef,Sh.overrideProvider=e.overrideProvider,Sh.overrideComponentView=e.overrideComponentView,Sh.clearOverrides=e.clearOverrides,Sh.checkAndUpdateView=e.checkAndUpdateView,Sh.checkNoChangesView=e.checkNoChangesView,Sh.destroyView=e.destroyView,Sh.resolveDep=cg,Sh.createDebugContext=e.createDebugContext,Sh.handleEvent=e.handleEvent,Sh.updateDirectives=e.updateDirectives,Sh.updateRenderer=e.updateRenderer,Sh.dirtyParentQueries=gg}}function qg(e,t,n,r,o,i){return Og(Wg(e,o,o.injector.get(ys),t,n),r,i)}function Kg(e,t,n,r,o,i){var a=o.injector.get(ys),u=Wg(e,o,new Ey(a),t,n),s=sy(r);return Iy(Jg.create,Og,null,[u,s,i])}function Wg(e,t,n,r,o){var i=t.injector.get(Cs),a=t.injector.get(ad);return{ngModule:t,injector:e,projectableNodes:r,selectorOrNode:o,sanitizer:i,rendererFactory:n,renderer:n.createRenderer(null,null),errorHandler:a}}function Gg(e,t,n,r){var o=sy(n);return Iy(Jg.create,Eg,null,[e,t,o,r])}function Yg(e,t,n,r){return n=oy.get(t.element.componentProvider.provider.token)||sy(n),Iy(Jg.create,Tg,null,[e,t,n,r])}function $g(e,t,n,r){return Zv(e,t,n,function o(e){var t=function n(e){var t=!1,n=!1;return 0===ny.size?{hasOverrides:t,hasDeprecatedOverrides:n}:(e.providers.forEach(function(e){var r=ny.get(e.token);3840&e.flags&&r&&(t=!0,n=n||r.deprecatedBehavior)}),e.modules.forEach(function(e){ry.forEach(function(r,o){I(o).providedIn===e&&(t=!0,n=n||r.deprecatedBehavior)})}),{hasOverrides:t,hasDeprecatedOverrides:n})}(e),r=t.hasDeprecatedOverrides;return t.hasOverrides?(function o(e){for(var t=0;t<e.providers.length;t++){var n=e.providers[t];r&&(n.flags|=4096);var o=ny.get(n.token);o&&(n.flags=-3841&n.flags|o.flags,n.deps=rv(o.deps),n.value=o.value)}if(ry.size>0){var i=new Set(e.modules);ry.forEach(function(t,n){if(i.has(I(n).providedIn)){var o={token:n,flags:t.flags|(r?4096:0),deps:rv(t.deps),value:t.value,index:e.providers.length};e.providers.push(o),e.providersByKey[Bh(n)]=o}})}}(e=e.factory(function(){return Hh})),e):e}(r))}var Jg,Xg,ey,ty,ny=new Map,ry=new Map,oy=new Map;function iy(e){var t;ny.set(e.token,e),"function"==typeof e.token&&(t=I(e.token))&&"function"==typeof t.providedIn&&ry.set(e.token,e)}function ay(e,t){var n=av(av(jv(t)).nodes[0].element.componentView);oy.set(e,n)}function uy(){ny.clear(),ry.clear(),oy.clear()}function sy(e){if(0===ny.size)return e;var t=function n(e){for(var t=[],n=null,r=0;r<e.nodes.length;r++){var o=e.nodes[r];1&o.flags&&(n=o),n&&3840&o.flags&&ny.has(o.provider.token)&&(t.push(n.nodeIndex),n=null)}return t}(e);if(0===t.length)return e;e=e.factory(function(){return Hh});for(var r=0;r<t.length;r++)o(e,t[r]);return e;function o(e,t){for(var n=t+1;n<e.nodes.length;n++){var r=e.nodes[n];if(1&r.flags)return;if(3840&r.flags){var o=r.provider,i=ny.get(o.token);i&&(r.flags=-3841&r.flags|i.flags,o.deps=rv(i.deps),o.value=i.value)}}}}function ly(e,t,n,r,o,i,a,u,s,l,c,f,d){var p=e.def.nodes[t];return Ag(e,p,n,r,o,i,a,u,s,l,c,f,d),224&p.flags?jh(e,t).value:void 0}function cy(e,t,n,r,o,i,a,u,s,l,c,f,d){var p=e.def.nodes[t];return Vg(e,p,n,r,o,i,a,u,s,l,c,f,d),224&p.flags?jh(e,t).value:void 0}function fy(e){return Iy(Jg.detectChanges,Dg,null,[e])}function dy(e){return Iy(Jg.checkNoChanges,jg,null,[e])}function py(e){return Iy(Jg.destroy,Fg,null,[e])}function hy(e,t){ey=e,ty=t}function vy(e,t,n,r){return hy(e,t),Iy(Jg.handleEvent,e.def.handleEvent,null,[e,t,n,r])}function gy(e,t){if(128&e.state)throw Fh(Jg[Xg]);return hy(e,wy(e,0)),e.def.updateDirectives(function n(e,r,o){for(var i=[],a=3;a<arguments.length;a++)i[a-3]=arguments[a];var u=e.def.nodes[r];return 0===t?my(e,u,o,i):_y(e,u,o,i),16384&u.flags&&hy(e,wy(e,r)),224&u.flags?jh(e,u.nodeIndex).value:void 0},e)}function yy(e,t){if(128&e.state)throw Fh(Jg[Xg]);return hy(e,by(e,0)),e.def.updateRenderer(function n(e,r,o){for(var i=[],a=3;a<arguments.length;a++)i[a-3]=arguments[a];var u=e.def.nodes[r];return 0===t?my(e,u,o,i):_y(e,u,o,i),3&u.flags&&hy(e,by(e,r)),224&u.flags?jh(e,u.nodeIndex).value:void 0},e)}function my(e,t,n,r){if(Ag.apply(void 0,f([e,t,n],r))){var o=1===n?r[0]:r;if(16384&t.flags){for(var i={},a=0;a<t.bindings.length;a++){var u=t.bindings[a],s=o[a];8&u.flags&&(i[(h=u.nonMinifiedName,"ng-reflect-"+function l(e){return e.replace(sr,function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];return"-"+e[1].toLowerCase()})}(h.replace(/[$@]/g,"_")))]=lr(s))}var c=t.parent,d=Nh(e,c.nodeIndex).renderElement;if(c.element.name)for(var p in i)null!=(s=i[p])?e.renderer.setAttribute(d,p,s):e.renderer.removeAttribute(d,p);else e.renderer.setValue(d,"bindings="+JSON.stringify(i,null,2))}}
773
780
  /**
774
781
  * @license
775
782
  * Copyright Google Inc. All Rights Reserved.
@@ -777,7 +784,7 @@ return function r(e,t,n,o){var i=t.viewContainer._embeddedViews;null!==n&&void 0
777
784
  * Use of this source code is governed by an MIT-style license that can be
778
785
  * found in the LICENSE file at https://angular.io/license
779
786
  */
780
- var h}function oy(e,t,n,r){bg.apply(void 0,f([e,t,n],r))}function iy(e,t){for(var n=t;n<e.def.nodes.length;n++){var r=e.def.nodes[n];if(16384&r.flags&&r.bindings&&r.bindings.length)return n}return null}function ay(e,t){for(var n=t;n<e.def.nodes.length;n++){var r=e.def.nodes[n];if(3&r.flags&&r.bindings&&r.bindings.length)return n}return null}!function(e){e[e.create=0]="create",e[e.detectChanges=1]="detectChanges",e[e.checkNoChanges=2]="checkNoChanges",e[e.destroy=3]="destroy",e[e.handleEvent=4]="handleEvent"}(Mg||(Mg={}));var uy=function(){function e(e,t){this.view=e,this.nodeIndex=t,null==t&&(this.nodeIndex=t=0),this.nodeDef=e.def.nodes[t];for(var n=this.nodeDef,r=e;n&&0==(1&n.flags);)n=n.parent;if(!n)for(;!n&&r;)n=Sh(r),r=r.parent;this.elDef=n,this.elView=r}return Object.defineProperty(e.prototype,"elOrCompView",{get:function(){return vh(this.elView,this.elDef.nodeIndex).componentView||this.view},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"injector",{get:function(){return Ev(this.elView,this.elDef)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"component",{get:function(){return this.elOrCompView.component},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"context",{get:function(){return this.elOrCompView.context},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"providerTokens",{get:function(){var e=[];if(this.elDef)for(var t=this.elDef.nodeIndex+1;t<=this.elDef.nodeIndex+this.elDef.childCount;t++){var n=this.elView.def.nodes[t];20224&n.flags&&e.push(n.provider.token),t+=n.childCount}return e},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"references",{get:function(){var e={};if(this.elDef){sy(this.elView,this.elDef,e);for(var t=this.elDef.nodeIndex+1;t<=this.elDef.nodeIndex+this.elDef.childCount;t++){var n=this.elView.def.nodes[t];20224&n.flags&&sy(this.elView,n,e),t+=n.childCount}}return e},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"componentRenderElement",{get:function(){var e=function t(e){for(;e&&!Fh(e);)e=e.parent;return e.parent?vh(e.parent,Sh(e).nodeIndex):null}(this.elOrCompView);return e?e.renderElement:void 0},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"renderNode",{get:function(){return 2&this.nodeDef.flags?Vh(this.view,this.nodeDef):Vh(this.elView,this.elDef)},enumerable:!0,configurable:!0}),e.prototype.logError=function(e){for(var t,n,r=[],o=1;o<arguments.length;o++)r[o-1]=arguments[o];2&this.nodeDef.flags?(t=this.view.def,n=this.nodeDef.nodeIndex):(t=this.elView.def,n=this.elDef.nodeIndex);var i=function a(e,t){for(var n=-1,r=0;r<=t;r++)3&e.nodes[r].flags&&n++;return n}(t,n),u=-1;t.factory(function(){var t;return++u===i?(t=e.error).bind.apply(t,f([e],r)):Ih}),u<i&&(e.error("Illegal state: the ViewDefinitionFactory did not call the logger!"),e.error.apply(e,f(r)))},e}();function sy(e,t,n){for(var r in t.references)n[r]=og(e,t,t.references[r])}function ly(e,t,n,r){var o=Fg,i=Hg,a=Lg;try{Fg=e;var u=t.apply(n,r);return Hg=i,Lg=a,Fg=o,u}catch(e){if(function s(e){return!!Bf(e)}(e)||!Hg)throw e;throw function l(e,t){return e instanceof Error||(e=new Error(e.toString())),Ch(e,t),e}(e,cy())}}function cy(){return Hg?new uy(Hg,Lg):null}var fy=function(){function e(e){this.delegate=e}return e.prototype.createRenderer=function(e,t){return new dy(this.delegate.createRenderer(e,t))},e.prototype.begin=function(){this.delegate.begin&&this.delegate.begin()},e.prototype.end=function(){this.delegate.end&&this.delegate.end()},e.prototype.whenRenderingDone=function(){return this.delegate.whenRenderingDone?this.delegate.whenRenderingDone():Promise.resolve(null)},e}(),dy=function(){function e(e){this.delegate=e,this.debugContextFactory=cy,this.data=this.delegate.data}return e.prototype.createDebugContext=function(e){return this.debugContextFactory(e)},e.prototype.destroyNode=function(e){!function t(e){Ap.delete(e.nativeNode)}(Vp(e)),this.delegate.destroyNode&&this.delegate.destroyNode(e)},e.prototype.destroy=function(){this.delegate.destroy()},e.prototype.createElement=function(e,t){var n=this.delegate.createElement(e,t),r=this.createDebugContext(n);if(r){var o=new Op(n,null,r);o.name=e,Fp(o)}return n},e.prototype.createComment=function(e){var t=this.delegate.createComment(e),n=this.createDebugContext(t);return n&&Fp(new Ep(t,null,n)),t},e.prototype.createText=function(e){var t=this.delegate.createText(e),n=this.createDebugContext(t);return n&&Fp(new Ep(t,null,n)),t},e.prototype.appendChild=function(e,t){var n=Vp(e),r=Vp(t);n&&r&&n instanceof Op&&n.addChild(r),this.delegate.appendChild(e,t)},e.prototype.insertBefore=function(e,t,n){var r=Vp(e),o=Vp(t),i=Vp(n);r&&o&&r instanceof Op&&r.insertBefore(i,o),this.delegate.insertBefore(e,t,n)},e.prototype.removeChild=function(e,t){var n=Vp(e),r=Vp(t);n&&r&&n instanceof Op&&n.removeChild(r),this.delegate.removeChild(e,t)},e.prototype.selectRootElement=function(e,t){var n=this.delegate.selectRootElement(e,t),r=cy();return r&&Fp(new Op(n,null,r)),n},e.prototype.setAttribute=function(e,t,n,r){var o=Vp(e);o&&o instanceof Op&&(o.attributes[r?r+":"+t:t]=n),this.delegate.setAttribute(e,t,n,r)},e.prototype.removeAttribute=function(e,t,n){var r=Vp(e);r&&r instanceof Op&&(r.attributes[n?n+":"+t:t]=null),this.delegate.removeAttribute(e,t,n)},e.prototype.addClass=function(e,t){var n=Vp(e);n&&n instanceof Op&&(n.classes[t]=!0),this.delegate.addClass(e,t)},e.prototype.removeClass=function(e,t){var n=Vp(e);n&&n instanceof Op&&(n.classes[t]=!1),this.delegate.removeClass(e,t)},e.prototype.setStyle=function(e,t,n,r){var o=Vp(e);o&&o instanceof Op&&(o.styles[t]=n),this.delegate.setStyle(e,t,n,r)},e.prototype.removeStyle=function(e,t,n){var r=Vp(e);r&&r instanceof Op&&(r.styles[t]=null),this.delegate.removeStyle(e,t,n)},e.prototype.setProperty=function(e,t,n){var r=Vp(e);r&&r instanceof Op&&(r.properties[t]=n),this.delegate.setProperty(e,t,n)},e.prototype.listen=function(e,t,n){if("string"!=typeof e){var r=Vp(e);r&&r.listeners.push(new kp(t,n))}return this.delegate.listen(e,t,n)},e.prototype.parentNode=function(e){return this.delegate.parentNode(e)},e.prototype.nextSibling=function(e){return this.delegate.nextSibling(e)},e.prototype.setValue=function(e,t){return this.delegate.setValue(e,t)},e}(),py=function(e){function t(t,n,r){var o=e.call(this)||this;return o.moduleType=t,o._bootstrapComponents=n,o._ngModuleDefFactory=r,o}return o(t,e),t.prototype.create=function(e){Ng();var t=function n(e){var t=Array.from(e.providers),n=Array.from(e.modules),r={};for(var o in e.providersByKey)r[o]=e.providersByKey[o];return{factory:e.factory,isRoot:e.isRoot,providers:t,modules:n,providersByKey:r}}(Zh(this._ngModuleDefFactory));return wh.createNgModuleRef(this.moduleType,e||_r.NULL,this._bootstrapComponents,t)},t}(Ar);
787
+ var h}function _y(e,t,n,r){Vg.apply(void 0,f([e,t,n],r))}function wy(e,t){for(var n=t;n<e.def.nodes.length;n++){var r=e.def.nodes[n];if(16384&r.flags&&r.bindings&&r.bindings.length)return n}return null}function by(e,t){for(var n=t;n<e.def.nodes.length;n++){var r=e.def.nodes[n];if(3&r.flags&&r.bindings&&r.bindings.length)return n}return null}!function(e){e[e.create=0]="create",e[e.detectChanges=1]="detectChanges",e[e.checkNoChanges=2]="checkNoChanges",e[e.destroy=3]="destroy",e[e.handleEvent=4]="handleEvent"}(Jg||(Jg={}));var Cy=function(){function e(e,t){this.view=e,this.nodeIndex=t,null==t&&(this.nodeIndex=t=0),this.nodeDef=e.def.nodes[t];for(var n=this.nodeDef,r=e;n&&0==(1&n.flags);)n=n.parent;if(!n)for(;!n&&r;)n=Yh(r),r=r.parent;this.elDef=n,this.elView=r}return Object.defineProperty(e.prototype,"elOrCompView",{get:function(){return Nh(this.elView,this.elDef.nodeIndex).componentView||this.view},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"injector",{get:function(){return Bv(this.elView,this.elDef)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"component",{get:function(){return this.elOrCompView.component},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"context",{get:function(){return this.elOrCompView.context},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"providerTokens",{get:function(){var e=[];if(this.elDef)for(var t=this.elDef.nodeIndex+1;t<=this.elDef.nodeIndex+this.elDef.childCount;t++){var n=this.elView.def.nodes[t];20224&n.flags&&e.push(n.provider.token),t+=n.childCount}return e},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"references",{get:function(){var e={};if(this.elDef){xy(this.elView,this.elDef,e);for(var t=this.elDef.nodeIndex+1;t<=this.elDef.nodeIndex+this.elDef.childCount;t++){var n=this.elView.def.nodes[t];20224&n.flags&&xy(this.elView,n,e),t+=n.childCount}}return e},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"componentRenderElement",{get:function(){var e=function t(e){for(;e&&!Xh(e);)e=e.parent;return e.parent?Nh(e.parent,Yh(e).nodeIndex):null}(this.elOrCompView);return e?e.renderElement:void 0},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"renderNode",{get:function(){return 2&this.nodeDef.flags?$h(this.view,this.nodeDef):$h(this.elView,this.elDef)},enumerable:!0,configurable:!0}),e.prototype.logError=function(e){for(var t,n,r=[],o=1;o<arguments.length;o++)r[o-1]=arguments[o];2&this.nodeDef.flags?(t=this.view.def,n=this.nodeDef.nodeIndex):(t=this.elView.def,n=this.elDef.nodeIndex);var i=function a(e,t){for(var n=-1,r=0;r<=t;r++)3&e.nodes[r].flags&&n++;return n}(t,n),u=-1;t.factory(function(){var t;return++u===i?(t=e.error).bind.apply(t,f([e],r)):Hh}),u<i&&(e.error("Illegal state: the ViewDefinitionFactory did not call the logger!"),e.error.apply(e,f(r)))},e}();function xy(e,t,n){for(var r in t.references)n[r]=_g(e,t,t.references[r])}function Iy(e,t,n,r){var o=Xg,i=ey,a=ty;try{Xg=e;var u=t.apply(n,r);return ey=i,ty=a,Xg=o,u}catch(e){if(function s(e){return!!rd(e)}(e)||!ey)throw e;throw function l(e,t){return e instanceof Error||(e=new Error(e.toString())),Mh(e,t),e}(e,ky())}}function ky(){return ey?new Cy(ey,ty):null}var Ey=function(){function e(e){this.delegate=e}return e.prototype.createRenderer=function(e,t){return new Oy(this.delegate.createRenderer(e,t))},e.prototype.begin=function(){this.delegate.begin&&this.delegate.begin()},e.prototype.end=function(){this.delegate.end&&this.delegate.end()},e.prototype.whenRenderingDone=function(){return this.delegate.whenRenderingDone?this.delegate.whenRenderingDone():Promise.resolve(null)},e}(),Oy=function(){function e(e){this.delegate=e,this.debugContextFactory=ky,this.data=this.delegate.data}return e.prototype.createDebugContext=function(e){return this.debugContextFactory(e)},e.prototype.destroyNode=function(e){!function t(e){Gp.delete(e.nativeNode)}($p(e)),this.delegate.destroyNode&&this.delegate.destroyNode(e)},e.prototype.destroy=function(){this.delegate.destroy()},e.prototype.createElement=function(e,t){var n=this.delegate.createElement(e,t),r=this.createDebugContext(n);if(r){var o=new zp(n,null,r);o.name=e,Xp(o)}return n},e.prototype.createComment=function(e){var t=this.delegate.createComment(e),n=this.createDebugContext(t);return n&&Xp(new Up(t,null,n)),t},e.prototype.createText=function(e){var t=this.delegate.createText(e),n=this.createDebugContext(t);return n&&Xp(new Up(t,null,n)),t},e.prototype.appendChild=function(e,t){var n=$p(e),r=$p(t);n&&r&&n instanceof zp&&n.addChild(r),this.delegate.appendChild(e,t)},e.prototype.insertBefore=function(e,t,n){var r=$p(e),o=$p(t),i=$p(n);r&&o&&r instanceof zp&&r.insertBefore(i,o),this.delegate.insertBefore(e,t,n)},e.prototype.removeChild=function(e,t){var n=$p(e),r=$p(t);n&&r&&n instanceof zp&&n.removeChild(r),this.delegate.removeChild(e,t)},e.prototype.selectRootElement=function(e,t){var n=this.delegate.selectRootElement(e,t),r=ky();return r&&Xp(new zp(n,null,r)),n},e.prototype.setAttribute=function(e,t,n,r){var o=$p(e);o&&o instanceof zp&&(o.attributes[r?r+":"+t:t]=n),this.delegate.setAttribute(e,t,n,r)},e.prototype.removeAttribute=function(e,t,n){var r=$p(e);r&&r instanceof zp&&(r.attributes[n?n+":"+t:t]=null),this.delegate.removeAttribute(e,t,n)},e.prototype.addClass=function(e,t){var n=$p(e);n&&n instanceof zp&&(n.classes[t]=!0),this.delegate.addClass(e,t)},e.prototype.removeClass=function(e,t){var n=$p(e);n&&n instanceof zp&&(n.classes[t]=!1),this.delegate.removeClass(e,t)},e.prototype.setStyle=function(e,t,n,r){var o=$p(e);o&&o instanceof zp&&(o.styles[t]=n),this.delegate.setStyle(e,t,n,r)},e.prototype.removeStyle=function(e,t,n){var r=$p(e);r&&r instanceof zp&&(r.styles[t]=null),this.delegate.removeStyle(e,t,n)},e.prototype.setProperty=function(e,t,n){var r=$p(e);r&&r instanceof zp&&(r.properties[t]=n),this.delegate.setProperty(e,t,n)},e.prototype.listen=function(e,t,n){if("string"!=typeof e){var r=$p(e);r&&r.listeners.push(new Bp(t,n))}return this.delegate.listen(e,t,n)},e.prototype.parentNode=function(e){return this.delegate.parentNode(e)},e.prototype.nextSibling=function(e){return this.delegate.nextSibling(e)},e.prototype.setValue=function(e,t){return this.delegate.setValue(e,t)},e}(),Ty=function(e){function t(t,n,r){var o=e.call(this)||this;return o.moduleType=t,o._bootstrapComponents=n,o._ngModuleDefFactory=r,o}return o(t,e),t.prototype.create=function(e){Zg();var t=function n(e){var t=Array.from(e.providers),n=Array.from(e.modules),r={};for(var o in e.providersByKey)r[o]=e.providersByKey[o];return{factory:e.factory,isRoot:e.isRoot,providers:t,modules:n,providersByKey:r}}(av(this._ngModuleDefFactory));return Sh.createNgModuleRef(this.moduleType,e||fu.NULL,this._bootstrapComponents,t)},t}(os);
781
788
  /**
782
789
  * @license
783
790
  * Copyright Google Inc. All Rights Reserved.
@@ -827,21 +834,7 @@ var h}function oy(e,t,n,r){bg.apply(void 0,f([e,t,n],r))}function iy(e,t){for(va
827
834
  * Use of this source code is governed by an MIT-style license that can be
828
835
  * found in the LICENSE file at https://angular.io/license
829
836
  */
830
- e.ɵangular_packages_core_core_r=ch,e.ɵangular_packages_core_core_o=uh,e.ɵangular_packages_core_core_p=sh,e.ɵangular_packages_core_core_q=lh,e.ɵangular_packages_core_core_g=vd,e.ɵangular_packages_core_core_m=Bp,e.ɵangular_packages_core_core_n=Gp,e.ɵangular_packages_core_core_l=Op,e.ɵangular_packages_core_core_k=Ep,e.ɵangular_packages_core_core_c=Pe,e.ɵangular_packages_core_core_d=ld,e.ɵangular_packages_core_core_e=Jf,e.ɵangular_packages_core_core_f=rd,e.ɵangular_packages_core_core_s=Hd,e.ɵangular_packages_core_core_u=Sd,e.ɵangular_packages_core_core_t=Ad,e.ɵangular_packages_core_core_x=Fd,e.ɵangular_packages_core_core_v=Vd,e.ɵangular_packages_core_core_w=Md,e.ɵangular_packages_core_core_ba=zn,e.ɵangular_packages_core_core_bi=g,e.ɵangular_packages_core_core_bb=Ua,e.ɵangular_packages_core_core_bc=ln,e.ɵangular_packages_core_core_bd=mn,e.ɵangular_packages_core_core_be=Rn,e.ɵangular_packages_core_core_bh=bo,e.ɵangular_packages_core_core_bl=xt,e.ɵangular_packages_core_core_h=ou,e.ɵangular_packages_core_core_i=iu,e.ɵangular_packages_core_core_j=uu,e.ɵangular_packages_core_core_a=R,e.ɵangular_packages_core_core_b=j,e.ɵangular_packages_core_core_bj=d,e.ɵangular_packages_core_core_y=Lv,e.ɵangular_packages_core_core_z=_h,e.createPlatform=op,e.assertPlatform=ap,e.destroyPlatform=function hy(){$d&&!$d.destroyed&&$d.destroy()},e.getPlatform=up,e.PlatformRef=sp,e.ApplicationRef=cp,e.createPlatformFactory=ip,e.NgProbeToken=rp,e.enableProdMode=function vy(){if(Os)throw new Error("Cannot enable prod mode after platform setup.");Es=!1},e.isDevMode=Ts,e.APP_ID=hd,e.PACKAGE_ROOT_URL=bd,e.PLATFORM_INITIALIZER=md,e.PLATFORM_ID=_d,e.APP_BOOTSTRAP_LISTENER=wd,e.APP_INITIALIZER=dd,e.ApplicationInitStatus=pd,e.DebugElement=Lp,e.DebugNode=Hp,e.asNativeElements=function gy(e){return e.map(function(e){return e.nativeElement})},e.getDebugNode=Vp,e.Testability=Xd,e.TestabilityRegistry=ep,e.setTestabilityGetter=function yy(e){tp=e},e.TRANSLATIONS=ih,e.TRANSLATIONS_FORMAT=ah,e.LOCALE_ID=oh,e.ApplicationModule=fh,e.wtfCreateScope=Bd,e.wtfLeave=Ud,e.wtfStartTimeRange=zd,e.wtfEndTimeRange=Qd,e.Type=Ac,e.EventEmitter=rc,e.ErrorHandler=Qf,e.Sanitizer=ys,e.ANALYZE_FOR_ENTRY_COMPONENTS=M,e.Attribute=F,e.ContentChild=L,e.ContentChildren=H,e.Query=V,e.ViewChild=U,e.ViewChildren=B,e.Component=cf,e.Directive=lf,e.HostBinding=vf,e.HostListener=gf,e.Input=pf,e.Output=hf,e.Pipe=ff,e.CUSTOM_ELEMENTS_SCHEMA={name:"custom-elements"},e.NO_ERRORS_SCHEMA={name:"no-errors-schema"},e.NgModule=Ef,e.Version=gs,e.VERSION=ms,e.defineInjectable=C,e.defineInjector=x,e.forwardRef=dr,e.resolveForwardRef=pr,e.Injectable=Sf,e.INJECTOR=yr,e.Injector=_r,e.inject=Ne,e.ReflectiveInjector=sd,e.createInjector=Vu,e.ResolvedReflectiveFactory=td,e.ReflectiveKey=Gf,e.InjectionToken=E,e.Inject=we,e.Optional=be,e.Self=Ce,e.SkipSelf=xe,e.Host=Ie,e.NgZone=Zd,e.ɵNoopNgZone=Jd,e.RenderComponentType=ss,e.Renderer=cs,e.Renderer2=hs,e.RendererFactory2=ds,e.RootRenderer=fs,e.COMPILER_OPTIONS=Rd,e.Compiler=Dd,e.CompilerFactory=jd,e.ModuleWithComponentFactories=xd,e.ComponentFactory=Ju,e.ComponentRef=$u,e.ComponentFactoryResolver=rs,e.ElementRef=as,e.NgModuleFactory=Ar,e.NgModuleRef=jr,e.NgModuleFactoryLoader=dp,e.getModuleFactory=function my(e){var t=pp.get(e);if(!t)throw new Error("No module with ID "+e+" loaded");return t}
831
- /**
832
- * @license
833
- * Copyright Google Inc. All Rights Reserved.
834
- *
835
- * Use of this source code is governed by an MIT-style license that can be
836
- * found in the LICENSE file at https://angular.io/license
837
- */,e.QueryList=hp,e.SystemJsNgModuleLoader=yp,e.SystemJsNgModuleLoaderConfig=vp,e.TemplateRef=oc,e.ViewContainerRef=_p,e.EmbeddedViewRef=Ip,e.ViewRef=xp,e.ChangeDetectorRef=bp,e.DefaultIterableDiffer=zp,e.IterableDiffers=Jp,e.KeyValueDiffers=Xp,e.SimpleChange=ht,e.WrappedValue=pt,e.platformCore=rh,e.ɵALLOW_MULTIPLE_PLATFORMS=np,e.ɵAPP_ID_RANDOM_PROVIDER=gd,e.ɵdefaultIterableDiffers=th,e.ɵdefaultKeyValueDiffers=nh,e.ɵdevModeEqual=dt,e.ɵisListLikeIterable=vt,e.ɵisDefaultChangeDetectionStrategy=function _y(t){return null==t||t===e.ChangeDetectionStrategy.Default}
838
- /**
839
- * @license
840
- * Copyright Google Inc. All Rights Reserved.
841
- *
842
- * Use of this source code is governed by an MIT-style license that can be
843
- * found in the LICENSE file at https://angular.io/license
844
- */,e.ɵConsole=Cd,e.ɵgetInjectableDef=I,e.ɵinject=Ne,e.ɵsetCurrentInjector=Oe,e.ɵAPP_ROOT=Nu,e.ɵivyEnabled=!1,e.ɵComponentFactory=Ju,e.ɵCodegenComponentFactoryResolver=os,e.ɵresolveComponentResources=function wy(e){var t=[],n=new Map;function r(r){var o=n.get(r);if(!o){var i=e(r);n.set(r,o=i.then(q)),t.push(o)}return o}return Q.forEach(function(e){e.templateUrl&&r(e.templateUrl).then(function(t){e.template=t,e.templateUrl=void 0});var t=e.styleUrls,n=e.styles||(e.styles=[]),o=e.styles.length;t&&t.forEach(function(i,a){n.push(""),r(i).then(function(r){n[o+a]=r,t.splice(t.indexOf(i),1),0==t.length&&(e.styleUrls=void 0)})})}),Q.clear(),Promise.all(t).then(function(){return null})},e.ɵReflectionCapabilities=Hc,e.ɵRenderDebugInfo=ls,e.ɵ_sanitizeHtml=Js,e.ɵ_sanitizeStyle=Oc,e.ɵ_sanitizeUrl=Rs,e.ɵglobal=G,e.ɵlooseIdentical=ee,e.ɵstringify=te,e.ɵmakeDecorator=N,e.ɵisObservable=fd,e.ɵisPromise=cd,e.ɵclearOverrides=function by(){return Ng(),wh.clearOverrides()},e.ɵinitServicesIfNeeded=Ng,e.ɵoverrideComponentView=function Cy(e,t){return Ng(),wh.overrideComponentView(e,t)},e.ɵoverrideProvider=
837
+ e.ɵangular_packages_core_core_s=kh,e.ɵangular_packages_core_core_p=Ch,e.ɵangular_packages_core_core_q=xh,e.ɵangular_packages_core_core_r=Ih,e.ɵangular_packages_core_core_g=Rd,e.ɵangular_packages_core_core_n=nh,e.ɵangular_packages_core_core_o=ch,e.ɵangular_packages_core_core_m=zp,e.ɵangular_packages_core_core_l=Up,e.ɵangular_packages_core_core_c=Dt,e.ɵangular_packages_core_core_d=kd,e.ɵangular_packages_core_core_e=hd,e.ɵangular_packages_core_core_f=_d,e.ɵangular_packages_core_core_k=Qc,e.ɵangular_packages_core_core_t=rp,e.ɵangular_packages_core_core_v=Xd,e.ɵangular_packages_core_core_u=Jd,e.ɵangular_packages_core_core_y=np,e.ɵangular_packages_core_core_w=ep,e.ɵangular_packages_core_core_x=tp,e.ɵangular_packages_core_core_bb=Nn,e.ɵangular_packages_core_core_bi=g,e.ɵangular_packages_core_core_bc=Xt,e.ɵangular_packages_core_core_bd=tn,e.ɵangular_packages_core_core_be=_n,e.ɵangular_packages_core_core_bh=io,e.ɵangular_packages_core_core_bl=Je,e.ɵangular_packages_core_core_h=us,e.ɵangular_packages_core_core_i=ss,e.ɵangular_packages_core_core_j=ls,e.ɵangular_packages_core_core_a=j,e.ɵangular_packages_core_core_b=D,e.ɵangular_packages_core_core_bj=d,e.ɵangular_packages_core_core_z=tg,e.ɵangular_packages_core_core_ba=Ah,e.createPlatform=Cp,e.assertPlatform=Ip,e.destroyPlatform=function Py(){vp&&!vp.destroyed&&vp.destroy()},e.getPlatform=kp,e.PlatformRef=Ep,e.ApplicationRef=Tp,e.createPlatformFactory=xp,e.NgProbeToken=bp,e.enableProdMode=function Ny(){if(js)throw new Error("Cannot enable prod mode after platform setup.");Rs=!1},e.isDevMode=Ds,e.APP_ID=Nd,e.PACKAGE_ROOT_URL=Md,e.PLATFORM_INITIALIZER=Ad,e.PLATFORM_ID=Sd,e.APP_BOOTSTRAP_LISTENER=Vd,e.APP_INITIALIZER=Td,e.ApplicationInitStatus=Pd,e.DebugElement=th,e.DebugNode=eh,e.asNativeElements=function Ry(e){return e.map(function(e){return e.nativeElement})},e.getDebugNode=$p,e.Testability=yp,e.TestabilityRegistry=mp,e.setTestabilityGetter=function jy(e){_p=e},e.TRANSLATIONS=wh,e.TRANSLATIONS_FORMAT=bh,e.LOCALE_ID=_h,e.ApplicationModule=Eh,e.wtfCreateScope=ip,e.wtfLeave=ap,e.wtfStartTimeRange=up,e.wtfEndTimeRange=sp,e.Type=Kc,e.EventEmitter=lc,e.ErrorHandler=ad,e.Sanitizer=Cs,e.ANALYZE_FOR_ENTRY_COMPONENTS=M,e.Attribute=F,e.ContentChild=L,e.ContentChildren=H,e.Query=V,e.ViewChild=U,e.ViewChildren=B,e.Component=Ef,e.Directive=kf,e.HostBinding=Rf,e.HostListener=jf,e.Input=Pf,e.Output=Nf,e.Pipe=Of,e.CUSTOM_ELEMENTS_SCHEMA={name:"custom-elements"},e.NO_ERRORS_SCHEMA={name:"no-errors-schema"},e.NgModule=Uf,e.Version=bs,e.VERSION=xs,e.defineInjectable=C,e.defineInjector=x,e.forwardRef=X,e.resolveForwardRef=ee,e.Injectable=$f,e.INJECTOR=lu,e.Injector=fu,e.inject=At,e.ReflectiveInjector=Id,e.createInjector=Ru,e.ResolvedReflectiveFactory=yd,e.ReflectiveKey=fd,e.InjectionToken=E,e.Inject=xt,e.Optional=It,e.Self=kt,e.SkipSelf=Et,e.Host=Ot,e.NgZone=lp,e.ɵNoopNgZone=gp,e.RenderComponentType=ps,e.Renderer=vs,e.Renderer2=_s,e.RendererFactory2=ys,e.RootRenderer=gs,e.COMPILER_OPTIONS=Yd,e.Compiler=Gd,e.CompilerFactory=$d,e.ModuleWithComponentFactories=Hd,e.ComponentFactory=Ku,e.ComponentRef=qu,e.ComponentFactoryResolver=es,e.ElementRef=fs,e.NgModuleFactory=os,e.NgModuleRef=rs,e.NgModuleFactoryLoader=Bc,e.getModuleFactory=Zc,e.QueryList=Np,e.SystemJsNgModuleLoader=Dp,e.SystemJsNgModuleLoaderConfig=Rp,e.TemplateRef=cc,e.ViewContainerRef=Sp,e.EmbeddedViewRef=Lp,e.ViewRef=Hp,e.ChangeDetectorRef=Mp,e.DefaultIterableDiffer=oh,e.IterableDiffers=ph,e.KeyValueDiffers=hh,e.SimpleChange=dr,e.WrappedValue=fr,e.platformCore=mh,e.ɵALLOW_MULTIPLE_PLATFORMS=wp,e.ɵAPP_ID_RANDOM_PROVIDER=jd,e.ɵdefaultIterableDiffers=gh,e.ɵdefaultKeyValueDiffers=yh,e.ɵdevModeEqual=cr,e.ɵisListLikeIterable=pr,e.ɵisDefaultChangeDetectionStrategy=function Dy(t){return null==t||t===e.ChangeDetectionStrategy.Default},e.ɵConsole=Fd,e.ɵgetInjectableDef=I,e.ɵinject=At,e.ɵsetCurrentInjector=Rt,e.ɵAPP_ROOT=ku,e.ɵivyEnabled=!1,e.ɵComponentFactory=Ku,e.ɵCodegenComponentFactoryResolver=ts,e.ɵresolveComponentResources=function Ay(e){var t=[],n=new Map;function r(r){var o=n.get(r);if(!o){var i=e(r);n.set(r,o=i.then(oe)),t.push(o)}return o}return ne.forEach(function(e){e.templateUrl&&r(e.templateUrl).then(function(t){e.template=t,e.templateUrl=void 0});var t=e.styleUrls,n=e.styles||(e.styles=[]),o=e.styles.length;t&&t.forEach(function(i,a){n.push(""),r(i).then(function(r){n[o+a]=r,t.splice(t.indexOf(i),1),0==t.length&&(e.styleUrls=void 0)})})}),ne.clear(),Promise.all(t).then(function(){return null})},e.ɵReflectionCapabilities=Jc,e.ɵRenderDebugInfo=hs,e.ɵ_sanitizeHtml=rl,e.ɵ_sanitizeStyle=Dc,e.ɵ_sanitizeUrl=Ms,e.ɵglobal=Z,e.ɵlooseIdentical=Y,e.ɵstringify=$,e.ɵmakeDecorator=N,e.ɵisObservable=Od,e.ɵisPromise=Ed,e.ɵclearOverrides=function Sy(){return Zg(),Sh.clearOverrides()},e.ɵinitServicesIfNeeded=Zg,e.ɵoverrideComponentView=function Vy(e,t){return Zg(),Sh.overrideComponentView(e,t)},e.ɵoverrideProvider=
845
838
  /**
846
839
  * @license
847
840
  * Copyright Google Inc. All Rights Reserved.
@@ -849,7 +842,7 @@ e.ɵangular_packages_core_core_r=ch,e.ɵangular_packages_core_core_o=uh,e.ɵangu
849
842
  * Use of this source code is governed by an MIT-style license that can be
850
843
  * found in the LICENSE file at https://angular.io/license
851
844
  */
852
- function xy(e){return Ng(),wh.overrideProvider(e)},e.ɵNOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR=Wv,e.ɵdefineBase=ce,e.ɵdefineComponent=ie,e.ɵdefineDirective=de,e.ɵdefinePipe=pe,e.ɵdefineNgModule=se,e.ɵdetectChanges=xa,e.ɵrenderComponent=function Iy(e,t){void 0===t&&(t={});var n=t.rendererFactory||Br,r=t.sanitizer||null,o=he(e);o.type!=e&&(o.type=e);var i,a=ji(n,t.host||o.selectors[0][0]),u=o.onPush?68:66,s=Cu(t.scheduler,t.playerHandler),l=n.createRenderer(a,o),c=di(null,Di(-1,null,1,0,null,null,null),s,u,n,l,void 0,t.injector||null),f=Dn(c,null);try{n.begin&&n.begin(),i=bu(wu(a,o,c,n,l,r),o,c,s,t.hostFeatures||null),fi(c,null)}finally{jn(f),n.end&&n.end()}return i},e.ɵRender3ComponentFactory=Is,e.ɵRender3ComponentRef=ks,e.ɵdirectiveInject=Ka,e.ɵinjectAttribute=Wa,e.ɵgetFactoryOf=Jn,e.ɵgetInheritedFactory=Xn,e.ɵtemplateRefExtractor=bc,e.ɵProvidersFeature=Yu,e.ɵInheritDefinitionFeature=ku,e.ɵNgOnChangesFeature=Tu,e.ɵLifecycleHooksFeature=xu,e.ɵRender3NgModuleRef=Fl,e.ɵmarkDirty=Ea,e.ɵNgModuleFactory=Hl,e.ɵNO_CHANGE=wo,e.ɵcontainer=sa,e.ɵnextContext=yi,e.ɵelementStart=Oi,e.ɵnamespaceHTML=xi,e.ɵnamespaceMathML=Ci,e.ɵnamespaceSVG=bi,e.ɵelement=Ii,e.ɵlistener=Ai,e.ɵtext=Gi,e.ɵembeddedViewStart=da,e.ɵquery=_c,e.ɵregisterContentQuery=Ga,e.ɵprojection=ma,e.ɵbind=Oa,e.ɵinterpolation1=Pa,e.ɵinterpolation2=Na,e.ɵinterpolation3=Da,e.ɵinterpolation4=Ra,e.ɵinterpolation5=ja,e.ɵinterpolation6=Aa,e.ɵinterpolation7=Sa,e.ɵinterpolation8=Va,e.ɵinterpolationV=Ta,e.ɵpipeBind1=$l,e.ɵpipeBind2=Jl,e.ɵpipeBind3=Xl,e.ɵpipeBind4=ec,e.ɵpipeBindV=tc,e.ɵpureFunction0=Ll,e.ɵpureFunction1=Bl,e.ɵpureFunction2=Ul,e.ɵpureFunction3=zl,e.ɵpureFunction4=Ql,e.ɵpureFunction5=Zl,e.ɵpureFunction6=ql,e.ɵpureFunction7=Kl,e.ɵpureFunction8=Wl,e.ɵpureFunctionV=Gl,e.ɵgetCurrentView=an,e.ɵrestoreView=sn,e.ɵcontainerRefreshStart=ca,e.ɵcontainerRefreshEnd=fa,e.ɵqueryRefresh=wc,e.ɵloadQueryList=Ha,e.ɵelementEnd=Mi,e.ɵelementProperty=Hi,e.ɵprojectionDef=ga,e.ɵreference=Fa,e.ɵenableBindings=rn,e.ɵdisableBindings=on,e.ɵelementAttribute=Fi,e.ɵelementContainerStart=ki,e.ɵelementContainerEnd=Ei,e.ɵelementStyling=Qi,e.ɵelementStylingMap=Ki,e.ɵelementStyleProp=qi,e.ɵelementStylingApply=Zi,e.ɵelementClassProp=zi,e.ɵtextBinding=Yi,e.ɵtemplate=ua,e.ɵembeddedViewEnd=pa,e.ɵstore=Ma,e.ɵload=La,e.ɵpipe=Yl,e.ɵwhenRendered=function ky(e){return function t(e){return At(e)[We]}(e).clean},e.ɵi18n=El,e.ɵi18nAttributes=Ol,e.ɵi18nExp=Dl,e.ɵi18nStart=wl,e.ɵi18nEnd=xl,e.ɵi18nApply=Rl,e.ɵi18nPostprocess=Cl,e.ɵsetClassMetadata=
845
+ function My(e){return Zg(),Sh.overrideProvider(e)},e.ɵNOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR=lg,e.ɵdefineBase=pe,e.ɵdefineComponent=se,e.ɵdefineDirective=he,e.ɵdefinePipe=ve,e.ɵdefineNgModule=fe,e.ɵdetectChanges=ya,e.ɵrenderComponent=function Fy(e,t){void 0===t&&(t={});var n=t.rendererFactory||Er,r=t.sanitizer||null,o=ge(e);o.type!=e&&(o.type=e);var i,a=Pi(n,t.host||o.selectors[0][0]),u=o.onPush?136:132,s=$a(t.scheduler,t.playerHandler),l=n.createRenderer(a,o),c=si(null,Oi(-1,null,1,0,null,null,null),s,u,n,l,void 0,t.injector||null),f=mn(c,null);try{n.begin&&n.begin(),i=Ya(Ga(a,o,c,n,l,r),o,c,s,t.hostFeatures||null),ui(c),c[Ce]&=-2,ui(c)}finally{wn(f),n.end&&n.end()}return i},e.ɵRender3ComponentFactory=Ps,e.ɵRender3ComponentRef=Ns,e.ɵdirectiveInject=Ma,e.ɵinjectAttribute=Fa,e.ɵgetFactoryOf=Hn,e.ɵgetInheritedFactory=Ln,e.ɵtemplateRefExtractor=Oc,e.ɵProvidersFeature=Zu,e.ɵInheritDefinitionFeature=eu,e.ɵNgOnChangesFeature=ru,e.ɵLifecycleHooksFeature=Ja,e.ɵRender3NgModuleRef=zl,e.ɵmarkDirty=ba,e.ɵNgModuleFactory=Ql,e.ɵNO_CHANGE=gr,e.ɵcontainer=oa,e.ɵnextContext=pi,e.ɵelementStart=xi,e.ɵnamespaceHTML=_i,e.ɵnamespaceMathML=mi,e.ɵnamespaceSVG=yi,e.ɵelement=wi,e.ɵlistener=Ni,e.ɵtext=qi,e.ɵembeddedViewStart=sa,e.ɵquery=kc,e.ɵregisterContentQuery=Ha,e.ɵprojection=da,e.ɵbind=Ca,e.ɵinterpolation1=ka,e.ɵinterpolation2=Ea,e.ɵinterpolation3=Oa,e.ɵinterpolation4=Ta,e.ɵinterpolation5=Pa,e.ɵinterpolation6=Na,e.ɵinterpolation7=Ra,e.ɵinterpolation8=ja,e.ɵinterpolationV=Ia,e.ɵpipeBind1=nc,e.ɵpipeBind2=rc,e.ɵpipeBind3=oc,e.ɵpipeBind4=ic,e.ɵpipeBindV=ac,e.ɵpureFunction0=Zl,e.ɵpureFunction1=ql,e.ɵpureFunction2=Kl,e.ɵpureFunction3=Wl,e.ɵpureFunction4=Gl,e.ɵpureFunction5=Yl,e.ɵpureFunction6=$l,e.ɵpureFunction7=Jl,e.ɵpureFunction8=Xl,e.ɵpureFunctionV=ec,e.ɵgetCurrentView=Ua,e.ɵgetHostElement=rr,e.ɵrestoreView=en,e.ɵcontainerRefreshStart=aa,e.ɵcontainerRefreshEnd=ua,e.ɵqueryRefresh=Ec,e.ɵloadQueryList=Sa,e.ɵelementEnd=Ri,e.ɵelementProperty=Di,e.ɵcomponentHostSyntheticProperty=Ai,e.ɵprojectionDef=ca,e.ɵreference=Aa,e.ɵenableBindings=$t,e.ɵdisableBindings=Jt,e.ɵallocHostVars=xa,e.ɵelementAttribute=ji,e.ɵelementContainerStart=bi,e.ɵelementContainerEnd=Ci,e.ɵelementStyling=Li,e.ɵelementHostAttrs=Bi,e.ɵelementStylingMap=Zi,e.ɵelementStyleProp=zi,e.ɵelementStylingApply=Ui,e.ɵelementClassProp=Qi,e.ɵtextBinding=Ki,e.ɵtemplate=ra,e.ɵembeddedViewEnd=la,e.ɵstore=Da,e.ɵload=Va,e.ɵpipe=tc,e.ɵwhenRendered=function Hy(e){return function t(e){return lt(e)[Ne]}(e).clean},e.ɵi18n=Rl,e.ɵi18nAttributes=jl,e.ɵi18nExp=Vl,e.ɵi18nStart=kl,e.ɵi18nEnd=Tl,e.ɵi18nApply=Ml,e.ɵi18nPostprocess=Ol,e.ɵsetClassMetadata=
853
846
  /**
854
847
  * @license
855
848
  * Copyright Google Inc. All Rights Reserved.
@@ -857,7 +850,7 @@ function xy(e){return Ng(),wh.overrideProvider(e)},e.ɵNOT_FOUND_CHECK_ONLY_ELEM
857
850
  * Use of this source code is governed by an MIT-style license that can be
858
851
  * found in the LICENSE file at https://angular.io/license
859
852
  */
860
- function Ey(e,t,n,r){var o,a=e;null!==t&&(void 0!==a.decorators?(o=a.decorators).push.apply(o,f(t)):a.decorators=t),null!==n&&(a.ctorParameters=n),null!==r&&(a.propDecorators=void 0!==a.propDecorators?i({},a.propDecorators,r):r)},e.ɵcompileComponent=ef,e.ɵcompileDirective=tf,e.ɵcompileNgModule=Kc,e.ɵcompileNgModuleDefs=Wc,e.ɵpatchComponentDefWithScope=Gc,e.ɵcompilePipe=sf,e.ɵsanitizeHtml=Tc,e.ɵsanitizeStyle=Pc,e.ɵsanitizeUrl=Nc,e.ɵsanitizeResourceUrl=Dc,e.ɵbypassSanitizationTrustHtml=function Oy(e){return Ic(e,"Html")},e.ɵbypassSanitizationTrustStyle=function Ty(e){return Ic(e,"Style")},e.ɵbypassSanitizationTrustScript=function Py(e){return Ic(e,"Script")},e.ɵbypassSanitizationTrustUrl=function Ny(e){return Ic(e,"Url")},e.ɵbypassSanitizationTrustResourceUrl=function Dy(e){return Ic(e,"ResourceUrl")},e.ɵgetContext=er,e.ɵbindPlayerFactory=function Ry(e,t){return new bo(e,t)},e.ɵaddPlayer=function jy(e,t){var n=er(e);if(n){var r=n.native,o=n.lViewData,i=function a(e,t){if(!(t=t||er(e)))return null;var n=Io(t.nodeIndex-rt,t.lViewData);return Eo(n)||Oo(n)}(r,n),u=cu(o);ko(i,u,r,t,0,e),ba(u,2)}},e.ɵgetPlayers=gu,e.ɵcompileNgModuleFactory__POST_R3__=function Ay(e,t,n){return Promise.resolve(new Hl(n))},e.ɵSWITCH_COMPILE_COMPONENT__POST_R3__=yf,e.ɵSWITCH_COMPILE_DIRECTIVE__POST_R3__=mf,e.ɵSWITCH_COMPILE_PIPE__POST_R3__=_f,e.ɵSWITCH_COMPILE_NGMODULE__POST_R3__=Of,e.ɵSWITCH_COMPILE_INJECTABLE__POST_R3__=
853
+ function Ly(e,t,n,r){var o,a=e;null!==t&&(void 0!==a.decorators?(o=a.decorators).push.apply(o,f(t)):a.decorators=t),null!==n&&(a.ctorParameters=n),null!==r&&(a.propDecorators=void 0!==a.propDecorators?i({},a.propDecorators,r):r)},e.ɵcompileComponent=mf,e.ɵcompileDirective=_f,e.ɵcompileNgModule=cf,e.ɵcompileNgModuleDefs=ff,e.ɵpatchComponentDefWithScope=pf,e.ɵresetCompiledComponents=function By(){new Map,new Map,uf.length=0},e.ɵcompilePipe=If,e.ɵsanitizeHtml=Ac,e.ɵsanitizeStyle=Sc,e.ɵsanitizeUrl=Vc,e.ɵsanitizeResourceUrl=Mc,e.ɵbypassSanitizationTrustHtml=function Uy(e){return Nc(e,"Html")},e.ɵbypassSanitizationTrustStyle=function zy(e){return Nc(e,"Style")},e.ɵbypassSanitizationTrustScript=function Qy(e){return Nc(e,"Script")},e.ɵbypassSanitizationTrustUrl=function Zy(e){return Nc(e,"Url")},e.ɵbypassSanitizationTrustResourceUrl=function qy(e){return Nc(e,"ResourceUrl")},e.ɵgetLContext=Bn,e.ɵbindPlayerFactory=function Ky(e,t){return new io(e,t)},e.ɵaddPlayer=function Wy(e,t){var n=Bn(e);if(n){var r=n.native,o=n.lView,i=function a(e,t){if(!(t=t||Bn(e)))return null;var n=lo(t.nodeIndex,t.lView);return po(n)||ho(n)}(r,n),u=Jn(o);fo(i,u,r,t,0,e),va(u,2)}},e.ɵgetPlayers=Za,e.ɵcompileNgModuleFactory__POST_R3__=function Gy(e,t,n){return Promise.resolve(new Ql(n))},e.ɵSWITCH_COMPILE_COMPONENT__POST_R3__=Df,e.ɵSWITCH_COMPILE_DIRECTIVE__POST_R3__=Af,e.ɵSWITCH_COMPILE_PIPE__POST_R3__=Sf,e.ɵSWITCH_COMPILE_NGMODULE__POST_R3__=zf,e.ɵgetDebugNode__POST_R3__=Yp,e.ɵSWITCH_COMPILE_INJECTABLE__POST_R3__=
861
854
  /**
862
855
  * @license
863
856
  * Copyright Google Inc. All Rights Reserved.
@@ -872,7 +865,7 @@ function Ey(e,t,n,r){var o,a=e;null!==t&&(void 0!==a.decorators?(o=a.decorators)
872
865
  * Use of this source code is governed by an MIT-style license that can be
873
866
  * found in the LICENSE file at https://angular.io/license
874
867
  */
875
- function Sy(e,t){var n=null;e.hasOwnProperty(g)||Object.defineProperty(e,g,{get:function(){if(null===n){var r=t||{providedIn:null},o=Df(r)||jf(r)||Rf(r)||Af(r),i={name:e.name,type:e,providedIn:r.providedIn,ctorDeps:Qc(e),userDeps:void 0};if((Df(r)||jf(r))&&void 0!==r.deps&&(i.userDeps=Zc(r.deps)),o)if(Df(r))i.useClass=r.useClass;else if(Rf(r))i.useValue=r.useValue;else if(jf(r))i.useFactory=r.useFactory;else{if(!Af(r))throw new Error("Unreachable state.");i.useExisting=r.useExisting}else i.useClass=e;n=me().compileInjectable(Rc,"ng://"+e.name+"/ngInjectableDef.js",i)}return n}})},e.ɵSWITCH_IVY_ENABLED__POST_R3__=!0,e.ɵSWITCH_CHANGE_DETECTOR_REF_FACTORY__POST_R3__=function Vy(){return uu(ln(),mn(),null)},e.ɵSWITCH_ELEMENT_REF_FACTORY__POST_R3__=function My(e){return ou(e,ln(),mn())},e.ɵSWITCH_TEMPLATE_REF_FACTORY__POST_R3__=function Fy(e,t){return iu(e,t,ln(),mn())},e.ɵSWITCH_VIEW_CONTAINER_REF_FACTORY__POST_R3__=function Hy(e,t){return function n(e,t,r,i){var a;tu||(tu=function(e){function n(t,n,r){var o=e.call(this)||this;return o._lContainer=t,o._hostTNode=n,o._hostView=r,o._viewRefs=[],o}return o(n,e),Object.defineProperty(n.prototype,"element",{get:function(){return ou(t,this._hostTNode,this._hostView)},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"injector",{get:function(){return new au(this._hostTNode,this._hostView)},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"parentInjector",{get:function(){var e=Bn(this._hostTNode,this._hostView),t=Bt(e,this._hostView),n=function r(e,t,n){if(n.parent&&-1!==n.parent.injectorIndex){for(var r=n.parent.injectorIndex,o=n.parent;null!=o.parent&&r==o.injectorIndex;)o=o.parent;return o}for(var i=Lt(e),a=t,u=t[Ze];i>1;)u=(a=a[nt])[Ze],i--;return u}(e,this._hostView,this._hostTNode);return Ft(e)&&null!=n?new au(n,t):new mr},enumerable:!0,configurable:!0}),n.prototype.clear=function(){for(;this._lContainer[mt].length;)this.remove(0)},n.prototype.get=function(e){return this._viewRefs[e]||null},Object.defineProperty(n.prototype,"length",{get:function(){return this._lContainer[mt].length},enumerable:!0,configurable:!0}),n.prototype.createEmbeddedView=function(e,t,n){var r=this._adjustIndex(n),o=e.createEmbeddedView(t||{},this._lContainer,this._hostTNode,this._hostView,r);return o.attachToViewContainerRef(this),this._viewRefs.splice(r,0,o),o},n.prototype.createComponent=function(e,t,n,r,o){var i=n||this.parentInjector;!o&&i&&(o=i.get(jr,null));var a=e.create(i,r,void 0,o);return this.insert(a.hostView,t),a},n.prototype.insert=function(e,t){if(e.destroyed)throw new Error("Cannot insert a destroyed View in a ViewContainer!");var n=e._view,r=this._adjustIndex(t);return Jr(n,this._lContainer,this._hostView,r,this._hostTNode.index),$r(n,!0,fo(r,this._lContainer[mt],this._lContainer[_t])),e.attachToViewContainerRef(this),this._viewRefs.splice(r,0,e),e},n.prototype.move=function(e,t){if(e.destroyed)throw new Error("Cannot move a destroyed View in a ViewContainer!");var n=this.indexOf(e);return this.detach(n),this.insert(e,this._adjustIndex(t)),e},n.prototype.indexOf=function(e){return this._viewRefs.indexOf(e)},n.prototype.remove=function(e){var t=this._adjustIndex(e,-1);eo(this._lContainer,this._hostTNode,t),this._viewRefs.splice(t,1)},n.prototype.detach=function(e){var t=this._adjustIndex(e,-1);return Xr(this._lContainer,t,!!this._hostTNode.detached),this._viewRefs.splice(t,1)[0]||null},n.prototype._adjustIndex=function(e,t){return void 0===t&&(t=0),null==e?this._lContainer[mt].length+t:e},n}(e));var u=i[r.index];if(Rt(u))(a=u)[yt]=-1;else{var s=i[$e].createComment("");if(jt(i)){var l=i[$e],c=Et(r,i);uo(l,so(l,c),s,function f(e,t){return Lr(e)?e.nextSibling(t):t.nextSibling}(l,c))}else lo(s,r,i);i[r.index]=a=aa(u,r,i,s,!0),_a(i,r.index,a)}return new tu(a,r,i)}(e,t,ln(),mn())},e.ɵSWITCH_RENDERER2_FACTORY__POST_R3__=function Ly(){return function e(t){var n=t[$e];if(Lr(n))return n;throw new Error("Cannot inject Renderer2 when the application uses Renderer3!")}(mn())},e.ɵpublishGlobalUtil=_u,e.ɵpublishDefaultGlobalUtils=function By(){mu||(mu=!0,_u("getComponent",su),_u("getViewComponent",lu),_u("getHostElement",vu),_u("getInjector",du),_u("getRootComponents",fu),_u("getDirectives",pu),_u("getPlayers",gu),_u("markDirty",Ea))},e.ɵSWITCH_INJECTOR_FACTORY__POST_R3__=function(){return function e(){var e=ln();return new $n(e,mn())}()},e.ɵregisterModuleFactory=function Uy(e,t){var n=pp.get(e);if(n)throw new Error("Duplicate module registered for "+e+" - "+n.moduleType.name+" vs "+t.moduleType.name);pp.set(e,t)},e.ɵEMPTY_ARRAY=[],e.ɵEMPTY_MAP={},e.ɵand=
868
+ function Yy(e,t){var n=null;e.hasOwnProperty(g)||Object.defineProperty(e,g,{get:function(){if(null===n){var r=t||{providedIn:null},o=Kf(r)||Gf(r)||Wf(r)||Yf(r),i={name:e.name,type:e,typeArgumentCount:0,providedIn:r.providedIn,ctorDeps:rf(e),userDeps:void 0};if((Kf(r)||Gf(r))&&void 0!==r.deps&&(i.userDeps=of(r.deps)),o)if(Kf(r))i.useClass=r.useClass;else if(Wf(r))i.useValue=r.useValue;else if(Gf(r))i.useFactory=r.useFactory;else{if(!Yf(r))throw new Error("Unreachable state.");i.useExisting=r.useExisting}else i.useClass=e;n=bt().compileInjectable(Hc,"ng://"+e.name+"/ngInjectableDef.js",i)}return n}})},e.ɵSWITCH_IVY_ENABLED__POST_R3__=!0,e.ɵSWITCH_CHANGE_DETECTOR_REF_FACTORY__POST_R3__=function $y(){return ls(tn(),Xt(),null)},e.ɵCompiler_compileModuleSync__POST_R3__=zd,e.ɵCompiler_compileModuleAsync__POST_R3__=function(e){return Promise.resolve(zd(e))},e.ɵCompiler_compileModuleAndAllComponentsSync__POST_R3__=qd,e.ɵCompiler_compileModuleAndAllComponentsAsync__POST_R3__=function(e){return Promise.resolve(qd(e))},e.ɵSWITCH_ELEMENT_REF_FACTORY__POST_R3__=function Jy(e){return us(e,tn(),Xt())},e.ɵSWITCH_TEMPLATE_REF_FACTORY__POST_R3__=function Xy(e,t){return ss(e,t,tn(),Xt())},e.ɵSWITCH_VIEW_CONTAINER_REF_FACTORY__POST_R3__=function em(e,t){return function n(e,t,r,i){var a;$u||($u=function(e){function n(t,n,r){var o=e.call(this)||this;return o._lContainer=t,o._hostTNode=n,o._hostView=r,o._viewRefs=[],o}return o(n,e),Object.defineProperty(n.prototype,"element",{get:function(){return us(t,this._hostTNode,this._hostView)},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"injector",{get:function(){return new Fn(this._hostTNode,this._hostView)},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"parentInjector",{get:function(){var e=Tn(this._hostTNode,this._hostView),t=gt(e,this._hostView),n=function r(e,t,n){if(n.parent&&-1!==n.parent.injectorIndex){for(var r=n.parent.injectorIndex,o=n.parent;null!=o.parent&&r==o.injectorIndex;)o=o.parent;return o}for(var i=vt(e),a=t,u=t[Oe];i>1;)u=(a=a[Fe])[Oe],i--;return u}(e,this._hostView,this._hostTNode);return pt(e)&&null!=n?new Fn(n,t):new Fn(null,this._hostView)},enumerable:!0,configurable:!0}),n.prototype.clear=function(){for(;this._lContainer[Be].length;)this.remove(0)},n.prototype.get=function(e){return this._viewRefs[e]||null},Object.defineProperty(n.prototype,"length",{get:function(){return this._lContainer[Be].length},enumerable:!0,configurable:!0}),n.prototype.createEmbeddedView=function(e,t,n){var r=this._adjustIndex(n),o=e.createEmbeddedView(t||{},this._lContainer,this._hostTNode,this._hostView,r);return o.attachToViewContainerRef(this),this._viewRefs.splice(r,0,o),o},n.prototype.createComponent=function(e,t,n,r,o){var i=n||this.parentInjector;!o&&null==e.ngModule&&i&&(o=i.get(rs,null));var a=e.create(i,r,void 0,o);return this.insert(a.hostView,t),a},n.prototype.insert=function(e,t){if(e.destroyed)throw new Error("Cannot insert a destroyed View in a ViewContainer!");var n=e._lView,r=this._adjustIndex(t);return Vr(n,this._lContainer,this._hostView,r,this._hostTNode.index),Sr(n,!0,Gr(r,this._lContainer[Be],this._lContainer[Ue])),e.attachToViewContainerRef(this),this._viewRefs.splice(r,0,e),e},n.prototype.move=function(e,t){if(e.destroyed)throw new Error("Cannot move a destroyed View in a ViewContainer!");var n=this.indexOf(e);return this.detach(n),this.insert(e,this._adjustIndex(t)),e},n.prototype.indexOf=function(e){return this._viewRefs.indexOf(e)},n.prototype.remove=function(e){var t=this._adjustIndex(e,-1);Fr(this._lContainer,this._hostTNode,t),this._viewRefs.splice(t,1)},n.prototype.detach=function(e){var t=this._adjustIndex(e,-1),n=Mr(this._lContainer,t,!!this._hostTNode.detached);return null!=this._viewRefs.splice(t,1)[0]?new is(n,n[Ne],n[Ve]):null},n.prototype._adjustIndex=function(e,t){return void 0===t&&(t=0),null==e?this._lContainer[Be].length+t:e},n}(e));var u=i[r.index];if(ut(u))(a=u)[Le]=-1;else{var s=i[De].createComment("");if(st(i)){var l=i[De],c=tt(r,i);Zr(l,qr(l,c),s,function f(e,t){return kr(e)?e.nextSibling(t):t.nextSibling}(l,c))}else Kr(s,r,i);i[r.index]=a=na(u,r,i,s,!0),pa(i,r.index,a)}return new $u(a,r,i)}(e,t,tn(),Xt())},e.ɵSWITCH_RENDERER2_FACTORY__POST_R3__=function tm(){return function e(t){var n=t[De];if(kr(n))return n;throw new Error("Cannot inject Renderer2 when the application uses Renderer3!")}(Xt())},e.ɵgetModuleFactory__POST_R3__=function nm(e){var t=Uc.get(e);if(!t)throw qc(e);return new Ql(t)},e.ɵpublishGlobalUtil=Wa,e.ɵpublishDefaultGlobalUtils=function rm(){Ka||(Ka=!0,Wa("getComponent",Gn),Wa("getContext",Yn),Wa("getListeners",ar),Wa("getViewComponent",$n),Wa("getHostElement",rr),Wa("getInjector",er),Wa("getRootComponents",Xn),Wa("getDirectives",tr),Wa("getPlayers",Za),Wa("markDirty",ba))},e.ɵSWITCH_INJECTOR_FACTORY__POST_R3__=function(){return function e(){var e=tn();return new Fn(e,Xt())}()},e.ɵregisterModuleFactory=function om(e,t){var n=Uc.get(e);zc(e,n&&n.moduleType),Uc.set(e,t)},e.ɵEMPTY_ARRAY=[],e.ɵEMPTY_MAP={},e.ɵand=
876
869
  /**
877
870
  * @license
878
871
  * Copyright Google Inc. All Rights Reserved.
@@ -880,4 +873,4 @@ function Sy(e,t){var n=null;e.hasOwnProperty(g)||Object.defineProperty(e,g,{get:
880
873
  * Use of this source code is governed by an MIT-style license that can be
881
874
  * found in the LICENSE file at https://angular.io/license
882
875
  */
883
- function zy(e,t,n,r,o,i){e|=1;var a=Bh(t);return{nodeIndex:-1,parent:null,renderParent:null,bindingIndex:-1,outputIndex:-1,flags:e,checkIndex:-1,childFlags:0,directChildFlags:0,childMatchedQueries:0,matchedQueries:a.matchedQueries,matchedQueryIds:a.matchedQueryIds,references:a.references,ngContentIndex:n,childCount:r,bindings:[],bindingFlags:0,outputs:[],element:{ns:null,name:null,attrs:null,template:i?Zh(i):null,componentProvider:null,componentView:null,componentRendererType:null,publicProviders:null,allProviders:null,handleEvent:o||Ih},provider:null,text:null,query:null,ngContent:null}},e.ɵccf=function Qy(e,t,n,r,o,i){return new mv(e,t,n,r,o,i)},e.ɵcmf=function Zy(e,t,n){return new py(e,t,n)},e.ɵcrt=function qy(e){return{id:"$$undefined",styles:e.styles,encapsulation:e.encapsulation,data:e.data}},e.ɵdid=function Ky(e,t,n,r,o,i,a,u){var s=[];if(a)for(var l in a){var f=c(a[l],2);s[f[0]]={flags:8,name:l,nonMinifiedName:f[1],ns:null,securityContext:null,suffix:null}}var d=[];if(u)for(var p in u)d.push({type:1,propName:p,target:null,eventName:u[p]});return Lv(e,t|=16384,n,r,o,o,i,s,d)},e.ɵeld=function Wy(t,n,r,o,i,a,u,s,l,f,d,p){var h;void 0===u&&(u=[]),f||(f=Ih);var v=Bh(r),g=v.matchedQueries,y=v.references,m=v.matchedQueryIds,_=null,w=null;a&&(_=(h=c(Jh(a),2))[0],w=h[1]),s=s||[];for(var b=new Array(s.length),C=0;C<s.length;C++){var x=c(s[C],3),I=x[0],k=x[2],E=c(Jh(x[1]),2),O=E[0],T=E[1],P=void 0,N=void 0;switch(15&I){case 4:N=k;break;case 1:case 8:P=k}b[C]={flags:I,ns:O,name:T,nonMinifiedName:T,securityContext:P,suffix:N}}l=l||[];var D=new Array(l.length);for(C=0;C<l.length;C++){var R=c(l[C],2);D[C]={type:0,target:R[0],eventName:R[1],propName:null}}var j=(u=u||[]).map(function(e){var t=c(e,2),n=t[1],r=c(Jh(t[0]),2);return[r[0],r[1],n]});return p=function A(t){if(t&&"$$undefined"===t.id){var n=null!=t.encapsulation&&t.encapsulation!==e.ViewEncapsulation.None||t.styles.length||Object.keys(t.data).length;t.id=n?"c"+Oh++:"$$empty"}return t&&"$$empty"===t.id&&(t=null),t||null}(p),d&&(n|=33554432),{nodeIndex:-1,parent:null,renderParent:null,bindingIndex:-1,outputIndex:-1,checkIndex:t,flags:n|=1,childFlags:0,directChildFlags:0,childMatchedQueries:0,matchedQueries:g,matchedQueryIds:m,references:y,ngContentIndex:o,childCount:i,bindings:b,bindingFlags:Xh(b),outputs:D,element:{ns:_,name:w,attrs:j,template:null,componentProvider:null,componentView:d||null,componentRendererType:p,publicProviders:null,allProviders:null,handleEvent:f||Ih},provider:null,text:null,query:null,ngContent:null}},e.ɵelementEventFullName=Mh,e.ɵgetComponentViewDefinitionFactory=yv,e.ɵinlineInterpolate=function Gy(e,t,n,r,o,i,a,u,s,l,c,f,d,p,h,v,g,y,m,_){switch(e){case 1:return t+ev(n)+r;case 2:return t+ev(n)+r+ev(o)+i;case 3:return t+ev(n)+r+ev(o)+i+ev(a)+u;case 4:return t+ev(n)+r+ev(o)+i+ev(a)+u+ev(s)+l;case 5:return t+ev(n)+r+ev(o)+i+ev(a)+u+ev(s)+l+ev(c)+f;case 6:return t+ev(n)+r+ev(o)+i+ev(a)+u+ev(s)+l+ev(c)+f+ev(d)+p;case 7:return t+ev(n)+r+ev(o)+i+ev(a)+u+ev(s)+l+ev(c)+f+ev(d)+p+ev(h)+v;case 8:return t+ev(n)+r+ev(o)+i+ev(a)+u+ev(s)+l+ev(c)+f+ev(d)+p+ev(h)+v+ev(g)+y;case 9:return t+ev(n)+r+ev(o)+i+ev(a)+u+ev(s)+l+ev(c)+f+ev(d)+p+ev(h)+v+ev(g)+y+ev(m)+_;default:throw new Error("Does not support more than 9 expressions")}},e.ɵinterpolate=function Yy(e,t){for(var n="",r=0;r<2*e;r+=2)n=n+t[r]+ev(t[r+1]);return n+t[2*e]},e.ɵmod=function $y(e){for(var t={},n=[],r=!1,o=0;o<e.length;o++){var i=e[o];i.token===Nu&&!0===i.value&&(r=!0),1073741824&i.flags&&n.push(i.token),i.index=o,t[Eh(i.token)]=i}return{factory:null,providersByKey:t,providers:e,modules:n,isRoot:r}},e.ɵmpd=function Jy(e,t,n,r){return n=pr(n),{index:-1,deps:Uh(r,te(t)),flags:e,token:t,value:n}},e.ɵncd=function Xy(e,t){return{nodeIndex:-1,parent:null,renderParent:null,bindingIndex:-1,outputIndex:-1,checkIndex:-1,flags:8,childFlags:0,directChildFlags:0,childMatchedQueries:0,matchedQueries:{},matchedQueryIds:0,references:{},ngContentIndex:e,childCount:0,bindings:[],bindingFlags:0,outputs:[],element:null,provider:null,text:null,query:null,ngContent:{index:t}}},e.ɵnov=function em(e,t){var n=e.def.nodes[t];if(1&n.flags){var r=vh(e,n.nodeIndex);return n.element.template?r.template:r.renderElement}if(2&n.flags)return hh(e,n.nodeIndex).renderText;if(20240&n.flags)return gh(e,n.nodeIndex).instance;throw new Error("Illegal state: read nodeValue for node index "+t)},e.ɵpid=function tm(e,t,n){return Lv(-1,e|=16,null,0,t,t,n)},e.ɵprd=function nm(e,t,n,r,o){return Lv(-1,e,t,0,n,r,o)},e.ɵpad=function rm(e,t){return ag(32,e,new Array(t))},e.ɵpod=function om(e,t){for(var n=Object.keys(t),r=n.length,o=new Array(r),i=0;i<r;i++){var a=n[i];o[t[a]]=a}return ag(64,e,o)},e.ɵppd=function im(e,t){return ag(128,e,new Array(t+1))},e.ɵqud=function am(e,t,n){var r=[];for(var o in n)r.push({propName:o,bindingType:n[o]});return{nodeIndex:-1,parent:null,renderParent:null,bindingIndex:-1,outputIndex:-1,checkIndex:-1,flags:e,childFlags:0,directChildFlags:0,childMatchedQueries:0,ngContentIndex:-1,matchedQueries:{},matchedQueryIds:0,references:{},childCount:0,bindings:[],bindingFlags:0,outputs:[],element:null,provider:null,text:null,query:{id:t,filterId:Lh(t),bindings:r},ngContent:null}},e.ɵted=function um(e,t,n){for(var r=new Array(n.length-1),o=1;o<n.length;o++)r[o-1]={flags:8,name:null,ns:null,nonMinifiedName:null,securityContext:null,suffix:n[o]};return{nodeIndex:-1,parent:null,renderParent:null,bindingIndex:-1,outputIndex:-1,checkIndex:e,flags:2,childFlags:0,directChildFlags:0,childMatchedQueries:0,matchedQueries:{},matchedQueryIds:0,references:{},ngContentIndex:t,childCount:0,bindings:r,bindingFlags:8,outputs:[],element:null,provider:null,text:{prefix:n[0]},query:null,ngContent:null}},e.ɵunv=function sm(e,t,n,r){if(pt.isWrapped(r)){r=pt.unwrap(r);var o=e.def.nodes[t].bindingIndex+n,i=pt.unwrap(e.oldValues[o]);e.oldValues[o]=new pt(i)}return r},e.ɵvid=function lm(e,t,n,r){for(var o=0,i=0,a=0,u=0,s=0,l=null,c=null,f=!1,d=!1,p=null,h=0;h<t.length;h++){var v=t[h];if(v.nodeIndex=h,v.parent=l,v.bindingIndex=o,v.outputIndex=i,v.renderParent=c,a|=v.flags,s|=v.matchedQueryIds,v.element){var g=v.element;g.publicProviders=l?l.element.publicProviders:Object.create(null),g.allProviders=g.publicProviders,f=!1,d=!1,v.element.template&&(s|=v.element.template.nodeMatchedQueries)}if(cg(l,v,t.length),o+=v.bindings.length,i+=v.outputs.length,!c&&3&v.flags&&(p=v),20224&v.flags){f||(f=!0,l.element.publicProviders=Object.create(l.element.publicProviders),l.element.allProviders=l.element.publicProviders);var y=0!=(32768&v.flags);0==(8192&v.flags)||y?l.element.publicProviders[Eh(v.provider.token)]=v:(d||(d=!0,l.element.allProviders=Object.create(l.element.publicProviders)),l.element.allProviders[Eh(v.provider.token)]=v),y&&(l.element.componentProvider=v)}if(l?(l.childFlags|=v.flags,l.directChildFlags|=v.flags,l.childMatchedQueries|=v.matchedQueryIds,v.element&&v.element.template&&(l.childMatchedQueries|=v.element.template.nodeMatchedQueries)):u|=v.flags,v.childCount>0)l=v,lg(v)||(c=v);else for(;l&&h===l.nodeIndex+l.childCount;){var m=l.parent;m&&(m.childFlags|=l.childFlags,m.childMatchedQueries|=l.childMatchedQueries),c=(l=m)&&lg(l)?l.renderParent:l}}return{factory:null,nodeFlags:a,rootNodeFlags:u,nodeMatchedQueries:s,flags:e,nodes:t,updateDirectives:n||Ih,updateRenderer:r||Ih,handleEvent:function(e,n,r,o){return t[n].element.handleEvent(e,r,o)},bindingCount:o,outputCount:i,lastRenderRootNode:p}},Object.defineProperty(e,"__esModule",{value:!0})});
876
+ function im(e,t,n,r,o,i){e|=1;var a=nv(t);return{nodeIndex:-1,parent:null,renderParent:null,bindingIndex:-1,outputIndex:-1,flags:e,checkIndex:-1,childFlags:0,directChildFlags:0,childMatchedQueries:0,matchedQueries:a.matchedQueries,matchedQueryIds:a.matchedQueryIds,references:a.references,ngContentIndex:n,childCount:r,bindings:[],bindingFlags:0,outputs:[],element:{ns:null,name:null,attrs:null,template:i?av(i):null,componentProvider:null,componentView:null,componentRendererType:null,publicProviders:null,allProviders:null,handleEvent:o||Hh},provider:null,text:null,query:null,ngContent:null}},e.ɵccf=function am(e,t,n,r,o,i){return new Dv(e,t,n,r,o,i)},e.ɵcmf=function um(e,t,n){return new Ty(e,t,n)},e.ɵcrt=function sm(e){return{id:"$$undefined",styles:e.styles,encapsulation:e.encapsulation,data:e.data}},e.ɵdid=function lm(e,t,n,r,o,i,a,u){var s=[];if(a)for(var l in a){var f=c(a[l],2);s[f[0]]={flags:8,name:l,nonMinifiedName:f[1],ns:null,securityContext:null,suffix:null}}var d=[];if(u)for(var p in u)d.push({type:1,propName:p,target:null,eventName:u[p]});return tg(e,t|=16384,n,r,o,o,i,s,d)},e.ɵeld=function cm(t,n,r,o,i,a,u,s,l,f,d,p){var h;void 0===u&&(u=[]),f||(f=Hh);var v=nv(r),g=v.matchedQueries,y=v.references,m=v.matchedQueryIds,_=null,w=null;a&&(_=(h=c(pv(a),2))[0],w=h[1]),s=s||[];for(var b=new Array(s.length),C=0;C<s.length;C++){var x=c(s[C],3),I=x[0],k=x[2],E=c(pv(x[1]),2),O=E[0],T=E[1],P=void 0,N=void 0;switch(15&I){case 4:N=k;break;case 1:case 8:P=k}b[C]={flags:I,ns:O,name:T,nonMinifiedName:T,securityContext:P,suffix:N}}l=l||[];var R=new Array(l.length);for(C=0;C<l.length;C++){var j=c(l[C],2);R[C]={type:0,target:j[0],eventName:j[1],propName:null}}var D=(u=u||[]).map(function(e){var t=c(e,2),n=t[1],r=c(pv(t[0]),2);return[r[0],r[1],n]});return p=function A(t){if(t&&"$$undefined"===t.id){var n=null!=t.encapsulation&&t.encapsulation!==e.ViewEncapsulation.None||t.styles.length||Object.keys(t.data).length;t.id=n?"c"+Uh++:"$$empty"}return t&&"$$empty"===t.id&&(t=null),t||null}(p),d&&(n|=33554432),{nodeIndex:-1,parent:null,renderParent:null,bindingIndex:-1,outputIndex:-1,checkIndex:t,flags:n|=1,childFlags:0,directChildFlags:0,childMatchedQueries:0,matchedQueries:g,matchedQueryIds:m,references:y,ngContentIndex:o,childCount:i,bindings:b,bindingFlags:hv(b),outputs:R,element:{ns:_,name:w,attrs:D,template:null,componentProvider:null,componentView:d||null,componentRendererType:p,publicProviders:null,allProviders:null,handleEvent:f||Hh},provider:null,text:null,query:null,ngContent:null}},e.ɵelementEventFullName=Jh,e.ɵgetComponentViewDefinitionFactory=jv,e.ɵinlineInterpolate=function fm(e,t,n,r,o,i,a,u,s,l,c,f,d,p,h,v,g,y,m,_){switch(e){case 1:return t+vv(n)+r;case 2:return t+vv(n)+r+vv(o)+i;case 3:return t+vv(n)+r+vv(o)+i+vv(a)+u;case 4:return t+vv(n)+r+vv(o)+i+vv(a)+u+vv(s)+l;case 5:return t+vv(n)+r+vv(o)+i+vv(a)+u+vv(s)+l+vv(c)+f;case 6:return t+vv(n)+r+vv(o)+i+vv(a)+u+vv(s)+l+vv(c)+f+vv(d)+p;case 7:return t+vv(n)+r+vv(o)+i+vv(a)+u+vv(s)+l+vv(c)+f+vv(d)+p+vv(h)+v;case 8:return t+vv(n)+r+vv(o)+i+vv(a)+u+vv(s)+l+vv(c)+f+vv(d)+p+vv(h)+v+vv(g)+y;case 9:return t+vv(n)+r+vv(o)+i+vv(a)+u+vv(s)+l+vv(c)+f+vv(d)+p+vv(h)+v+vv(g)+y+vv(m)+_;default:throw new Error("Does not support more than 9 expressions")}},e.ɵinterpolate=function dm(e,t){for(var n="",r=0;r<2*e;r+=2)n=n+t[r]+vv(t[r+1]);return n+t[2*e]},e.ɵmod=function pm(e){for(var t={},n=[],r=!1,o=0;o<e.length;o++){var i=e[o];i.token===ku&&!0===i.value&&(r=!0),1073741824&i.flags&&n.push(i.token),i.index=o,t[Bh(i.token)]=i}return{factory:null,providersByKey:t,providers:e,modules:n,isRoot:r}},e.ɵmpd=function hm(e,t,n,r){return n=ee(n),{index:-1,deps:rv(r,$(t)),flags:e,token:t,value:n}},e.ɵncd=function vm(e,t){return{nodeIndex:-1,parent:null,renderParent:null,bindingIndex:-1,outputIndex:-1,checkIndex:-1,flags:8,childFlags:0,directChildFlags:0,childMatchedQueries:0,matchedQueries:{},matchedQueryIds:0,references:{},ngContentIndex:e,childCount:0,bindings:[],bindingFlags:0,outputs:[],element:null,provider:null,text:null,query:null,ngContent:{index:t}}},e.ɵnov=function gm(e,t){var n=e.def.nodes[t];if(1&n.flags){var r=Nh(e,n.nodeIndex);return n.element.template?r.template:r.renderElement}if(2&n.flags)return Ph(e,n.nodeIndex).renderText;if(20240&n.flags)return Rh(e,n.nodeIndex).instance;throw new Error("Illegal state: read nodeValue for node index "+t)},e.ɵpid=function ym(e,t,n){return tg(-1,e|=16,null,0,t,t,n)},e.ɵprd=function mm(e,t,n,r,o){return tg(-1,e,t,0,n,r,o)},e.ɵpad=function _m(e,t){return bg(32,e,new Array(t))},e.ɵpod=function wm(e,t){for(var n=Object.keys(t),r=n.length,o=new Array(r),i=0;i<r;i++){var a=n[i];o[t[a]]=a}return bg(64,e,o)},e.ɵppd=function bm(e,t){return bg(128,e,new Array(t+1))},e.ɵqud=function Cm(e,t,n){var r=[];for(var o in n)r.push({propName:o,bindingType:n[o]});return{nodeIndex:-1,parent:null,renderParent:null,bindingIndex:-1,outputIndex:-1,checkIndex:-1,flags:e,childFlags:0,directChildFlags:0,childMatchedQueries:0,ngContentIndex:-1,matchedQueries:{},matchedQueryIds:0,references:{},childCount:0,bindings:[],bindingFlags:0,outputs:[],element:null,provider:null,text:null,query:{id:t,filterId:tv(t),bindings:r},ngContent:null}},e.ɵted=function xm(e,t,n){for(var r=new Array(n.length-1),o=1;o<n.length;o++)r[o-1]={flags:8,name:null,ns:null,nonMinifiedName:null,securityContext:null,suffix:n[o]};return{nodeIndex:-1,parent:null,renderParent:null,bindingIndex:-1,outputIndex:-1,checkIndex:e,flags:2,childFlags:0,directChildFlags:0,childMatchedQueries:0,matchedQueries:{},matchedQueryIds:0,references:{},ngContentIndex:t,childCount:0,bindings:r,bindingFlags:8,outputs:[],element:null,provider:null,text:{prefix:n[0]},query:null,ngContent:null}},e.ɵunv=function Im(e,t,n,r){if(fr.isWrapped(r)){r=fr.unwrap(r);var o=e.def.nodes[t].bindingIndex+n,i=fr.unwrap(e.oldValues[o]);e.oldValues[o]=new fr(i)}return r},e.ɵvid=function km(e,t,n,r){for(var o=0,i=0,a=0,u=0,s=0,l=null,c=null,f=!1,d=!1,p=null,h=0;h<t.length;h++){var v=t[h];if(v.nodeIndex=h,v.parent=l,v.bindingIndex=o,v.outputIndex=i,v.renderParent=c,a|=v.flags,s|=v.matchedQueryIds,v.element){var g=v.element;g.publicProviders=l?l.element.publicProviders:Object.create(null),g.allProviders=g.publicProviders,f=!1,d=!1,v.element.template&&(s|=v.element.template.nodeMatchedQueries)}if(kg(l,v,t.length),o+=v.bindings.length,i+=v.outputs.length,!c&&3&v.flags&&(p=v),20224&v.flags){f||(f=!0,l.element.publicProviders=Object.create(l.element.publicProviders),l.element.allProviders=l.element.publicProviders);var y=0!=(32768&v.flags);0==(8192&v.flags)||y?l.element.publicProviders[Bh(v.provider.token)]=v:(d||(d=!0,l.element.allProviders=Object.create(l.element.publicProviders)),l.element.allProviders[Bh(v.provider.token)]=v),y&&(l.element.componentProvider=v)}if(l?(l.childFlags|=v.flags,l.directChildFlags|=v.flags,l.childMatchedQueries|=v.matchedQueryIds,v.element&&v.element.template&&(l.childMatchedQueries|=v.element.template.nodeMatchedQueries)):u|=v.flags,v.childCount>0)l=v,Ig(v)||(c=v);else for(;l&&h===l.nodeIndex+l.childCount;){var m=l.parent;m&&(m.childFlags|=l.childFlags,m.childMatchedQueries|=l.childMatchedQueries),c=(l=m)&&Ig(l)?l.renderParent:l}}return{factory:null,nodeFlags:a,rootNodeFlags:u,nodeMatchedQueries:s,flags:e,nodes:t,updateDirectives:n||Hh,updateRenderer:r||Hh,handleEvent:function(e,n,r,o){return t[n].element.handleEvent(e,r,o)},bindingCount:o,outputCount:i,lastRenderRootNode:p}},Object.defineProperty(e,"__esModule",{value:!0})});