@hmcts/rpx-xui-common-lib 2.0.17 → 2.0.18-angular-upgrade-17

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 (281) hide show
  1. package/esm2022/lib/components/accessibility/accessibility.component.mjs +725 -0
  2. package/esm2022/lib/components/checkbox-list/checkbox-list.component.mjs +232 -0
  3. package/esm2022/lib/components/contact-details/contact-details.component.mjs +104 -0
  4. package/esm2022/lib/components/cookie-banner/cookie-banner.component.mjs +151 -0
  5. package/esm2022/lib/components/due-date/due-date.component.mjs +141 -0
  6. package/esm2022/lib/components/exui-main-wrapper/exui-page-wrapper.component.mjs +80 -0
  7. package/esm2022/lib/components/find-location/find-location.component.mjs +220 -0
  8. package/esm2022/lib/components/find-person/find-person.component.mjs +234 -0
  9. package/esm2022/lib/components/find-service/find-service.component.mjs +193 -0
  10. package/{esm2020 → esm2022}/lib/components/find-task-name/find-task-name.component.mjs +53 -53
  11. package/{esm2020 → esm2022}/lib/components/generic-filter/generic-filter-utils.mjs +1 -1
  12. package/esm2022/lib/components/generic-filter/generic-filter.component.mjs +1184 -0
  13. package/esm2022/lib/components/hmcts-session-dialog/hmcts-session-dialog.component.mjs +56 -0
  14. package/esm2022/lib/components/invite-user-form/invite-user-form.component.mjs +51 -0
  15. package/esm2022/lib/components/invite-user-permissions/invite-user-permission.component.mjs +54 -0
  16. package/esm2022/lib/components/loading-spinner/loading-spinner.component.mjs +33 -0
  17. package/esm2022/lib/components/pagination/pagination.component.mjs +92 -0
  18. package/esm2022/lib/components/search-judicials/search-judicials.component.mjs +185 -0
  19. package/esm2022/lib/components/search-location/search-location.component.mjs +237 -0
  20. package/esm2022/lib/components/search-service/search-service.component.mjs +83 -0
  21. package/esm2022/lib/components/search-venue/search-venue.component.mjs +188 -0
  22. package/esm2022/lib/components/selected-case/selected-case.component.mjs +379 -0
  23. package/esm2022/lib/components/selected-case-confirm/selected-case-confirm.component.mjs +135 -0
  24. package/esm2022/lib/components/selected-case-list/selected-case-list.component.mjs +98 -0
  25. package/esm2022/lib/components/service-message/service-message.component.mjs +51 -0
  26. package/esm2022/lib/components/service-messages/service-messages.component.mjs +76 -0
  27. package/esm2022/lib/components/share-case/share-case.component.mjs +420 -0
  28. package/esm2022/lib/components/share-case-confirm/share-case-confirm.component.mjs +85 -0
  29. package/esm2022/lib/components/tab/tab.component.mjs +40 -0
  30. package/esm2022/lib/components/tc-confirm/tc-confirm.component.mjs +66 -0
  31. package/esm2022/lib/components/terms-and-conditions/tc-display/tc-display-html/tc-display-html.component.mjs +17 -0
  32. package/esm2022/lib/components/terms-and-conditions/tc-display/tc-display-plain/tc-display-plain.component.mjs +17 -0
  33. package/esm2022/lib/components/terms-and-conditions/terms-and-conditions.component.mjs +58 -0
  34. package/esm2022/lib/components/user-details/user-details.component.mjs +273 -0
  35. package/esm2022/lib/components/user-list/user-list.component.mjs +100 -0
  36. package/esm2022/lib/components/user-select/user-select.component.mjs +94 -0
  37. package/esm2022/lib/components/write-address/write-address.component.mjs +342 -0
  38. package/esm2022/lib/components/write-address-inputs/write-address-inputs.component.mjs +165 -0
  39. package/esm2022/lib/directives/feature-toggle/feature-toggle.directive.mjs +41 -0
  40. package/{esm2020 → esm2022}/lib/directives/let/let.directive.mjs +5 -5
  41. package/{esm2020 → esm2022}/lib/exui-common-lib.module.mjs +15 -15
  42. package/esm2022/lib/gov-ui/components/gov-uk-checkbox/gov-uk-checkbox.component.mjs +55 -0
  43. package/esm2022/lib/gov-ui/components/gov-uk-checkboxes/gov-uk-checkboxes.component.mjs +137 -0
  44. package/esm2022/lib/gov-ui/components/gov-uk-date/gov-uk-date.component.mjs +121 -0
  45. package/esm2022/lib/gov-ui/components/gov-uk-error-message/gov-uk-error-message.component.mjs +46 -0
  46. package/esm2022/lib/gov-ui/components/gov-uk-fieldset/gov-uk-fieldset.component.mjs +79 -0
  47. package/esm2022/lib/gov-ui/components/gov-uk-file-upload/gov-uk-file-upload.component.mjs +79 -0
  48. package/esm2022/lib/gov-ui/components/gov-uk-form-group-wrapper/gov-uk-form-group-wrapper.component.mjs +45 -0
  49. package/esm2022/lib/gov-ui/components/gov-uk-input/gov-uk-input.component.mjs +71 -0
  50. package/esm2022/lib/gov-ui/components/gov-uk-label/gov-uk-label.component.mjs +84 -0
  51. package/esm2022/lib/gov-ui/components/gov-uk-radio/gov-uk-radio.component.mjs +48 -0
  52. package/esm2022/lib/gov-ui/components/gov-uk-radios/gov-uk-radios.component.mjs +42 -0
  53. package/esm2022/lib/gov-ui/components/gov-uk-select/gov-uk-select.component.mjs +80 -0
  54. package/esm2022/lib/gov-ui/components/gov-uk-table/gov-uk-table.component.mjs +185 -0
  55. package/esm2022/lib/gov-ui/components/gov-uk-textarea/gov-uk-textarea.component.mjs +57 -0
  56. package/esm2022/lib/gov-ui/components/hmcts-banner/hmcts-banner.component.mjs +111 -0
  57. package/esm2022/lib/gov-ui/components/hmcts-error-summary/hmcts-error-summary.component.mjs +140 -0
  58. package/esm2022/lib/gov-ui/components/hmcts-identity-bar/hmcts-identity-bar.component.mjs +34 -0
  59. package/esm2022/lib/gov-ui/components/hmcts-main-wrapper/hmcts-main-wrapper.component.mjs +129 -0
  60. package/esm2022/lib/gov-ui/components/hmcts-pagination/hmcts-pagination.component.mjs +204 -0
  61. package/esm2022/lib/gov-ui/components/hmcts-primary-navigation/hmcts-primary-navigation.component.mjs +60 -0
  62. package/esm2022/lib/gov-ui/components/hmcts-sub-navigation/hmcts-sub-navigation.component.mjs +58 -0
  63. package/esm2022/lib/gov-ui/directives/remove-host.directive.mjs +30 -0
  64. package/{esm2020 → esm2022}/lib/gov-ui/gov-ui.service.mjs +5 -5
  65. package/esm2022/lib/gov-ui/util/helpers/html-templates.helper.mjs +22 -0
  66. package/esm2022/lib/gov-ui/util/session-storage/session-storage-utils.mjs +22 -0
  67. package/{esm2020 → esm2022}/lib/gov-ui/validators/checkboxes-be-checked.validator.mjs +1 -1
  68. package/{esm2020 → esm2022}/lib/gov-ui/validators/date.validator.mjs +1 -1
  69. package/esm2022/lib/gov-ui/validators/radio-group.validator.mjs +15 -0
  70. package/esm2022/lib/models/address-option.model.mjs +21 -0
  71. package/{esm2020 → esm2022}/lib/pipes/capitalize/capitalize.pipe.mjs +4 -4
  72. package/esm2022/lib/services/address/address-parser.mjs +76 -0
  73. package/esm2022/lib/services/address/address.service.mjs +55 -0
  74. package/esm2022/lib/services/case-sharing-state/case-sharing-state.service.mjs +170 -0
  75. package/{esm2020 → esm2022}/lib/services/cookie/cookie.service.mjs +6 -6
  76. package/{esm2020 → esm2022}/lib/services/feature-toggle/feature-toggle.guard.mjs +5 -5
  77. package/{esm2020 → esm2022}/lib/services/feature-toggle/feature-toggle.service.mjs +4 -4
  78. package/esm2022/lib/services/feature-toggle/launch-darkly.service.mjs +65 -0
  79. package/esm2022/lib/services/filter/filter.service.mjs +95 -0
  80. package/esm2022/lib/services/find-person/find-person.service.mjs +114 -0
  81. package/esm2022/lib/services/google-analytics/google-analytics.service.mjs +68 -0
  82. package/esm2022/lib/services/google-tag-manager/google-tag-manager.service.mjs +71 -0
  83. package/{esm2020 → esm2022}/lib/services/loading/loading.service.mjs +4 -4
  84. package/{esm2020 → esm2022}/lib/services/locations/location.service.mjs +5 -5
  85. package/{esm2020 → esm2022}/lib/services/manage-session/manage-session.services.mjs +5 -5
  86. package/esm2022/lib/services/ref-data/ref-data-data-access/ref-data-data-access.service.mjs +33 -0
  87. package/esm2022/lib/services/ref-data/ref-data.service.mjs +34 -0
  88. package/{esm2020 → esm2022}/lib/services/role-guard/role.guard.mjs +5 -5
  89. package/{esm2020 → esm2022}/lib/services/role-guard/role.service.mjs +4 -4
  90. package/esm2022/lib/services/storage/session-storage/session-storage.service.mjs +43 -0
  91. package/esm2022/lib/services/task-name/task-name.service.mjs +35 -0
  92. package/{esm2020 → esm2022}/lib/services/timeout-notifications/timeout-notifications.service.mjs +5 -5
  93. package/{fesm2020 → fesm2022}/hmcts-rpx-xui-common-lib.mjs +2879 -2873
  94. package/fesm2022/hmcts-rpx-xui-common-lib.mjs.map +1 -0
  95. package/lib/components/checkbox-list/checkbox-list.component.d.ts +1 -1
  96. package/lib/components/contact-details/contact-details.component.d.ts +1 -1
  97. package/lib/components/cookie-banner/cookie-banner.component.d.ts +1 -1
  98. package/lib/components/due-date/due-date.component.d.ts +1 -1
  99. package/lib/components/exui-main-wrapper/exui-page-wrapper.component.d.ts +1 -1
  100. package/lib/components/find-location/find-location.component.d.ts +1 -1
  101. package/lib/components/find-person/find-person.component.d.ts +1 -1
  102. package/lib/components/find-service/find-service.component.d.ts +1 -1
  103. package/lib/components/find-task-name/find-task-name.component.d.ts +1 -1
  104. package/lib/components/generic-filter/generic-filter.component.d.ts +1 -1
  105. package/lib/components/hmcts-session-dialog/hmcts-session-dialog.component.d.ts +1 -1
  106. package/lib/components/invite-user-form/invite-user-form.component.d.ts +1 -1
  107. package/lib/components/invite-user-permissions/invite-user-permission.component.d.ts +1 -1
  108. package/lib/components/loading-spinner/loading-spinner.component.d.ts +1 -1
  109. package/lib/components/pagination/pagination.component.d.ts +1 -1
  110. package/lib/components/search-judicials/search-judicials.component.d.ts +1 -1
  111. package/lib/components/search-location/search-location.component.d.ts +1 -1
  112. package/lib/components/search-service/search-service.component.d.ts +1 -1
  113. package/lib/components/search-venue/search-venue.component.d.ts +1 -1
  114. package/lib/components/selected-case/selected-case.component.d.ts +1 -1
  115. package/lib/components/selected-case-confirm/selected-case-confirm.component.d.ts +1 -1
  116. package/lib/components/selected-case-list/selected-case-list.component.d.ts +1 -1
  117. package/lib/components/service-message/service-message.component.d.ts +1 -1
  118. package/lib/components/service-messages/service-messages.component.d.ts +1 -1
  119. package/lib/components/share-case/share-case.component.d.ts +1 -1
  120. package/lib/components/share-case-confirm/share-case-confirm.component.d.ts +1 -1
  121. package/lib/components/tab/tab.component.d.ts +1 -1
  122. package/lib/components/tc-confirm/tc-confirm.component.d.ts +1 -1
  123. package/lib/components/terms-and-conditions/terms-and-conditions.component.d.ts +1 -1
  124. package/lib/components/user-details/user-details.component.d.ts +1 -1
  125. package/lib/components/user-list/user-list.component.d.ts +1 -1
  126. package/lib/components/user-select/user-select.component.d.ts +1 -1
  127. package/lib/components/write-address/write-address.component.d.ts +1 -1
  128. package/lib/components/write-address-inputs/write-address-inputs.component.d.ts +1 -1
  129. package/lib/directives/feature-toggle/feature-toggle.directive.d.ts +1 -1
  130. package/lib/directives/let/let.directive.d.ts +1 -1
  131. package/lib/gov-ui/components/gov-uk-checkbox/gov-uk-checkbox.component.d.ts +1 -1
  132. package/lib/gov-ui/components/gov-uk-checkboxes/gov-uk-checkboxes.component.d.ts +1 -1
  133. package/lib/gov-ui/components/gov-uk-date/gov-uk-date.component.d.ts +1 -1
  134. package/lib/gov-ui/components/gov-uk-error-message/gov-uk-error-message.component.d.ts +1 -1
  135. package/lib/gov-ui/components/gov-uk-fieldset/gov-uk-fieldset.component.d.ts +1 -1
  136. package/lib/gov-ui/components/gov-uk-file-upload/gov-uk-file-upload.component.d.ts +1 -1
  137. package/lib/gov-ui/components/gov-uk-form-group-wrapper/gov-uk-form-group-wrapper.component.d.ts +1 -1
  138. package/lib/gov-ui/components/gov-uk-input/gov-uk-input.component.d.ts +1 -1
  139. package/lib/gov-ui/components/gov-uk-label/gov-uk-label.component.d.ts +1 -1
  140. package/lib/gov-ui/components/gov-uk-radio/gov-uk-radio.component.d.ts +1 -1
  141. package/lib/gov-ui/components/gov-uk-radios/gov-uk-radios.component.d.ts +1 -1
  142. package/lib/gov-ui/components/gov-uk-select/gov-uk-select.component.d.ts +1 -1
  143. package/lib/gov-ui/components/gov-uk-table/gov-uk-table.component.d.ts +1 -1
  144. package/lib/gov-ui/components/gov-uk-textarea/gov-uk-textarea.component.d.ts +1 -1
  145. package/lib/gov-ui/components/hmcts-banner/hmcts-banner.component.d.ts +1 -1
  146. package/lib/gov-ui/components/hmcts-error-summary/hmcts-error-summary.component.d.ts +1 -1
  147. package/lib/gov-ui/components/hmcts-identity-bar/hmcts-identity-bar.component.d.ts +1 -1
  148. package/lib/gov-ui/components/hmcts-main-wrapper/hmcts-main-wrapper.component.d.ts +1 -1
  149. package/lib/gov-ui/components/hmcts-pagination/hmcts-pagination.component.d.ts +1 -1
  150. package/lib/gov-ui/components/hmcts-primary-navigation/hmcts-primary-navigation.component.d.ts +1 -1
  151. package/lib/gov-ui/components/hmcts-sub-navigation/hmcts-sub-navigation.component.d.ts +1 -1
  152. package/lib/services/feature-toggle/feature-toggle.guard.d.ts +2 -2
  153. package/lib/services/role-guard/role.guard.d.ts +2 -2
  154. package/package.json +5 -11
  155. package/esm2020/lib/components/accessibility/accessibility.component.mjs +0 -737
  156. package/esm2020/lib/components/checkbox-list/checkbox-list.component.mjs +0 -231
  157. package/esm2020/lib/components/contact-details/contact-details.component.mjs +0 -107
  158. package/esm2020/lib/components/cookie-banner/cookie-banner.component.mjs +0 -150
  159. package/esm2020/lib/components/due-date/due-date.component.mjs +0 -140
  160. package/esm2020/lib/components/exui-main-wrapper/exui-page-wrapper.component.mjs +0 -79
  161. package/esm2020/lib/components/find-location/find-location.component.mjs +0 -219
  162. package/esm2020/lib/components/find-person/find-person.component.mjs +0 -234
  163. package/esm2020/lib/components/find-service/find-service.component.mjs +0 -187
  164. package/esm2020/lib/components/generic-filter/generic-filter.component.mjs +0 -1198
  165. package/esm2020/lib/components/hmcts-session-dialog/hmcts-session-dialog.component.mjs +0 -55
  166. package/esm2020/lib/components/invite-user-form/invite-user-form.component.mjs +0 -50
  167. package/esm2020/lib/components/invite-user-permissions/invite-user-permission.component.mjs +0 -54
  168. package/esm2020/lib/components/loading-spinner/loading-spinner.component.mjs +0 -32
  169. package/esm2020/lib/components/pagination/pagination.component.mjs +0 -93
  170. package/esm2020/lib/components/search-judicials/search-judicials.component.mjs +0 -184
  171. package/esm2020/lib/components/search-location/search-location.component.mjs +0 -236
  172. package/esm2020/lib/components/search-service/search-service.component.mjs +0 -81
  173. package/esm2020/lib/components/search-venue/search-venue.component.mjs +0 -188
  174. package/esm2020/lib/components/selected-case/selected-case.component.mjs +0 -380
  175. package/esm2020/lib/components/selected-case-confirm/selected-case-confirm.component.mjs +0 -130
  176. package/esm2020/lib/components/selected-case-list/selected-case-list.component.mjs +0 -98
  177. package/esm2020/lib/components/service-message/service-message.component.mjs +0 -50
  178. package/esm2020/lib/components/service-messages/service-messages.component.mjs +0 -75
  179. package/esm2020/lib/components/share-case/share-case.component.mjs +0 -410
  180. package/esm2020/lib/components/share-case-confirm/share-case-confirm.component.mjs +0 -85
  181. package/esm2020/lib/components/tab/tab.component.mjs +0 -39
  182. package/esm2020/lib/components/tc-confirm/tc-confirm.component.mjs +0 -65
  183. package/esm2020/lib/components/terms-and-conditions/tc-display/tc-display-html/tc-display-html.component.mjs +0 -16
  184. package/esm2020/lib/components/terms-and-conditions/tc-display/tc-display-plain/tc-display-plain.component.mjs +0 -16
  185. package/esm2020/lib/components/terms-and-conditions/terms-and-conditions.component.mjs +0 -59
  186. package/esm2020/lib/components/user-details/user-details.component.mjs +0 -281
  187. package/esm2020/lib/components/user-list/user-list.component.mjs +0 -99
  188. package/esm2020/lib/components/user-select/user-select.component.mjs +0 -92
  189. package/esm2020/lib/components/write-address/write-address.component.mjs +0 -345
  190. package/esm2020/lib/components/write-address-inputs/write-address-inputs.component.mjs +0 -165
  191. package/esm2020/lib/directives/feature-toggle/feature-toggle.directive.mjs +0 -41
  192. package/esm2020/lib/gov-ui/components/gov-uk-checkbox/gov-uk-checkbox.component.mjs +0 -54
  193. package/esm2020/lib/gov-ui/components/gov-uk-checkboxes/gov-uk-checkboxes.component.mjs +0 -136
  194. package/esm2020/lib/gov-ui/components/gov-uk-date/gov-uk-date.component.mjs +0 -120
  195. package/esm2020/lib/gov-ui/components/gov-uk-error-message/gov-uk-error-message.component.mjs +0 -45
  196. package/esm2020/lib/gov-ui/components/gov-uk-fieldset/gov-uk-fieldset.component.mjs +0 -80
  197. package/esm2020/lib/gov-ui/components/gov-uk-file-upload/gov-uk-file-upload.component.mjs +0 -78
  198. package/esm2020/lib/gov-ui/components/gov-uk-form-group-wrapper/gov-uk-form-group-wrapper.component.mjs +0 -45
  199. package/esm2020/lib/gov-ui/components/gov-uk-input/gov-uk-input.component.mjs +0 -70
  200. package/esm2020/lib/gov-ui/components/gov-uk-label/gov-uk-label.component.mjs +0 -84
  201. package/esm2020/lib/gov-ui/components/gov-uk-radio/gov-uk-radio.component.mjs +0 -47
  202. package/esm2020/lib/gov-ui/components/gov-uk-radios/gov-uk-radios.component.mjs +0 -41
  203. package/esm2020/lib/gov-ui/components/gov-uk-select/gov-uk-select.component.mjs +0 -79
  204. package/esm2020/lib/gov-ui/components/gov-uk-table/gov-uk-table.component.mjs +0 -188
  205. package/esm2020/lib/gov-ui/components/gov-uk-textarea/gov-uk-textarea.component.mjs +0 -56
  206. package/esm2020/lib/gov-ui/components/hmcts-banner/hmcts-banner.component.mjs +0 -112
  207. package/esm2020/lib/gov-ui/components/hmcts-error-summary/hmcts-error-summary.component.mjs +0 -141
  208. package/esm2020/lib/gov-ui/components/hmcts-identity-bar/hmcts-identity-bar.component.mjs +0 -33
  209. package/esm2020/lib/gov-ui/components/hmcts-main-wrapper/hmcts-main-wrapper.component.mjs +0 -130
  210. package/esm2020/lib/gov-ui/components/hmcts-pagination/hmcts-pagination.component.mjs +0 -204
  211. package/esm2020/lib/gov-ui/components/hmcts-primary-navigation/hmcts-primary-navigation.component.mjs +0 -59
  212. package/esm2020/lib/gov-ui/components/hmcts-sub-navigation/hmcts-sub-navigation.component.mjs +0 -57
  213. package/esm2020/lib/gov-ui/directives/remove-host.directive.mjs +0 -30
  214. package/esm2020/lib/gov-ui/util/helpers/html-templates.helper.mjs +0 -22
  215. package/esm2020/lib/gov-ui/util/session-storage/session-storage-utils.mjs +0 -22
  216. package/esm2020/lib/gov-ui/validators/radio-group.validator.mjs +0 -15
  217. package/esm2020/lib/models/address-option.model.mjs +0 -21
  218. package/esm2020/lib/services/address/address-parser.mjs +0 -76
  219. package/esm2020/lib/services/address/address.service.mjs +0 -55
  220. package/esm2020/lib/services/case-sharing-state/case-sharing-state.service.mjs +0 -170
  221. package/esm2020/lib/services/feature-toggle/launch-darkly.service.mjs +0 -65
  222. package/esm2020/lib/services/filter/filter.service.mjs +0 -95
  223. package/esm2020/lib/services/find-person/find-person.service.mjs +0 -114
  224. package/esm2020/lib/services/google-analytics/google-analytics.service.mjs +0 -68
  225. package/esm2020/lib/services/google-tag-manager/google-tag-manager.service.mjs +0 -71
  226. package/esm2020/lib/services/ref-data/ref-data-data-access/ref-data-data-access.service.mjs +0 -33
  227. package/esm2020/lib/services/ref-data/ref-data.service.mjs +0 -34
  228. package/esm2020/lib/services/storage/session-storage/session-storage.service.mjs +0 -43
  229. package/esm2020/lib/services/task-name/task-name.service.mjs +0 -35
  230. package/fesm2015/hmcts-rpx-xui-common-lib.mjs +0 -11104
  231. package/fesm2015/hmcts-rpx-xui-common-lib.mjs.map +0 -1
  232. package/fesm2020/hmcts-rpx-xui-common-lib.mjs.map +0 -1
  233. /package/{esm2020 → esm2022}/hmcts-rpx-xui-common-lib.mjs +0 -0
  234. /package/{esm2020 → esm2022}/lib/components/index.mjs +0 -0
  235. /package/{esm2020 → esm2022}/lib/components/public_api.mjs +0 -0
  236. /package/{esm2020 → esm2022}/lib/directives/index.mjs +0 -0
  237. /package/{esm2020 → esm2022}/lib/directives/public-api.mjs +0 -0
  238. /package/{esm2020 → esm2022}/lib/gov-ui/components/hmcts-banner/hmcts-banner-info.interface.mjs +0 -0
  239. /package/{esm2020 → esm2022}/lib/gov-ui/components/index.mjs +0 -0
  240. /package/{esm2020 → esm2022}/lib/gov-ui/components/public_api.mjs +0 -0
  241. /package/{esm2020 → esm2022}/lib/gov-ui/index.mjs +0 -0
  242. /package/{esm2020 → esm2022}/lib/gov-ui/models/checkboxes-model.mjs +0 -0
  243. /package/{esm2020 → esm2022}/lib/gov-ui/models/error-messages-model.mjs +0 -0
  244. /package/{esm2020 → esm2022}/lib/gov-ui/models/gov-ui-config-model.mjs +0 -0
  245. /package/{esm2020 → esm2022}/lib/gov-ui/models/index.mjs +0 -0
  246. /package/{esm2020 → esm2022}/lib/gov-ui/models/isession-storage.interface.mjs +0 -0
  247. /package/{esm2020 → esm2022}/lib/gov-ui/models/public_api.mjs +0 -0
  248. /package/{esm2020 → esm2022}/lib/gov-ui/models/radio-buttons.model.mjs +0 -0
  249. /package/{esm2020 → esm2022}/lib/gov-ui/public_api.mjs +0 -0
  250. /package/{esm2020 → esm2022}/lib/gov-ui/validators/index.mjs +0 -0
  251. /package/{esm2020 → esm2022}/lib/gov-ui/validators/public_api.mjs +0 -0
  252. /package/{esm2020 → esm2022}/lib/models/address-message.enum.mjs +0 -0
  253. /package/{esm2020 → esm2022}/lib/models/address.model.mjs +0 -0
  254. /package/{esm2020 → esm2022}/lib/models/case-share.model.mjs +0 -0
  255. /package/{esm2020 → esm2022}/lib/models/contact-details.model.mjs +0 -0
  256. /package/{esm2020 → esm2022}/lib/models/due-date.model.mjs +0 -0
  257. /package/{esm2020 → esm2022}/lib/models/feature-user.mjs +0 -0
  258. /package/{esm2020 → esm2022}/lib/models/filter.model.mjs +0 -0
  259. /package/{esm2020 → esm2022}/lib/models/idle-config.model.mjs +0 -0
  260. /package/{esm2020 → esm2022}/lib/models/index.mjs +0 -0
  261. /package/{esm2020 → esm2022}/lib/models/location.model.mjs +0 -0
  262. /package/{esm2020 → esm2022}/lib/models/pagination.model.mjs +0 -0
  263. /package/{esm2020 → esm2022}/lib/models/person.model.mjs +0 -0
  264. /package/{esm2020 → esm2022}/lib/models/public_api.mjs +0 -0
  265. /package/{esm2020 → esm2022}/lib/models/search-options.model.mjs +0 -0
  266. /package/{esm2020 → esm2022}/lib/models/task-name.model.mjs +0 -0
  267. /package/{esm2020 → esm2022}/lib/models/tcDocument.model.mjs +0 -0
  268. /package/{esm2020 → esm2022}/lib/models/timeout-notification.model.mjs +0 -0
  269. /package/{esm2020 → esm2022}/lib/models/user-access-type.model.mjs +0 -0
  270. /package/{esm2020 → esm2022}/lib/models/user-details.model.mjs +0 -0
  271. /package/{esm2020 → esm2022}/lib/models/user.model.mjs +0 -0
  272. /package/{esm2020 → esm2022}/lib/pipes/index.mjs +0 -0
  273. /package/{esm2020 → esm2022}/lib/services/address/address-type.enum.mjs +0 -0
  274. /package/{esm2020 → esm2022}/lib/services/index.mjs +0 -0
  275. /package/{esm2020 → esm2022}/lib/services/public-api.mjs +0 -0
  276. /package/{esm2020 → esm2022}/lib/services/ref-data/index.mjs +0 -0
  277. /package/{esm2020 → esm2022}/lib/services/ref-data/models/ref-data-htmcs-service.model.mjs +0 -0
  278. /package/{esm2020 → esm2022}/lib/services/ref-data/models/ref-data-region.model.mjs +0 -0
  279. /package/{esm2020 → esm2022}/lib/services/ref-data/ref-data-data-access/models/ref-data-locations-by-service-code-response.model.mjs +0 -0
  280. /package/{esm2020 → esm2022}/lib/window.mjs +0 -0
  281. /package/{esm2020 → esm2022}/public-api.mjs +0 -0
@@ -0,0 +1,725 @@
1
+ import { Component } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "@angular/common";
4
+ import * as i2 from "rpx-xui-translation";
5
+ function AccessibilityComponent_li_25_Template(rf, ctx) { if (rf & 1) {
6
+ i0.ɵɵelementStart(0, "li");
7
+ i0.ɵɵtext(1);
8
+ i0.ɵɵpipe(2, "rpxTranslate");
9
+ i0.ɵɵelementEnd();
10
+ } if (rf & 2) {
11
+ i0.ɵɵadvance();
12
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 1, "zoom in up to 300% without the text spilling off the screen"));
13
+ } }
14
+ function AccessibilityComponent_li_57_Template(rf, ctx) { if (rf & 1) {
15
+ i0.ɵɵelementStart(0, "li");
16
+ i0.ɵɵtext(1);
17
+ i0.ɵɵpipe(2, "rpxTranslate");
18
+ i0.ɵɵelementEnd();
19
+ } if (rf & 2) {
20
+ i0.ɵɵadvance();
21
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 1, "some pages do not follow a logical tabbing order"));
22
+ } }
23
+ function AccessibilityComponent_li_58_Template(rf, ctx) { if (rf & 1) {
24
+ i0.ɵɵelementStart(0, "li");
25
+ i0.ɵɵtext(1);
26
+ i0.ɵɵpipe(2, "rpxTranslate");
27
+ i0.ɵɵelementEnd();
28
+ } if (rf & 2) {
29
+ i0.ɵɵadvance();
30
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 1, "some headings levels are skipped"));
31
+ } }
32
+ function AccessibilityComponent_li_59_Template(rf, ctx) { if (rf & 1) {
33
+ i0.ɵɵelementStart(0, "li");
34
+ i0.ɵɵtext(1);
35
+ i0.ɵɵpipe(2, "rpxTranslate");
36
+ i0.ɵɵelementEnd();
37
+ } if (rf & 2) {
38
+ i0.ɵɵadvance();
39
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 1, "some links do not work"));
40
+ } }
41
+ function AccessibilityComponent_li_60_Template(rf, ctx) { if (rf & 1) {
42
+ i0.ɵɵelementStart(0, "li");
43
+ i0.ɵɵtext(1);
44
+ i0.ɵɵpipe(2, "rpxTranslate");
45
+ i0.ɵɵelementEnd();
46
+ } if (rf & 2) {
47
+ i0.ɵɵadvance();
48
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 1, "it may be difficult to navigate between pages"));
49
+ } }
50
+ function AccessibilityComponent_li_61_Template(rf, ctx) { if (rf & 1) {
51
+ i0.ɵɵelementStart(0, "li");
52
+ i0.ɵɵtext(1);
53
+ i0.ɵɵpipe(2, "rpxTranslate");
54
+ i0.ɵɵelementEnd();
55
+ } if (rf & 2) {
56
+ i0.ɵɵadvance();
57
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 1, "some headings and labels aren't specific enough"));
58
+ } }
59
+ function AccessibilityComponent_li_65_Template(rf, ctx) { if (rf & 1) {
60
+ i0.ɵɵelementStart(0, "li");
61
+ i0.ɵɵtext(1);
62
+ i0.ɵɵpipe(2, "rpxTranslate");
63
+ i0.ɵɵelementEnd();
64
+ } if (rf & 2) {
65
+ i0.ɵɵadvance();
66
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 1, "some buttons may not communicate collapsed status on mobile"));
67
+ } }
68
+ function AccessibilityComponent_li_162_Template(rf, ctx) { if (rf & 1) {
69
+ i0.ɵɵelementStart(0, "li")(1, "a", 38);
70
+ i0.ɵɵtext(2, "customer.service@justice.gov.uk");
71
+ i0.ɵɵelementEnd()();
72
+ } }
73
+ function AccessibilityComponent_p_228_Template(rf, ctx) { if (rf & 1) {
74
+ i0.ɵɵelementStart(0, "p", 1);
75
+ i0.ɵɵtext(1);
76
+ i0.ɵɵpipe(2, "rpxTranslate");
77
+ i0.ɵɵelementEnd();
78
+ } if (rf & 2) {
79
+ i0.ɵɵadvance();
80
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 1, "It is difficult to understand how some pages are related to one another, and where they are in the context of the whole site. This fails WCAG 2.1 success criterion 2.4.5: Multiple Ways (Level AA)"));
81
+ } }
82
+ function AccessibilityComponent_p_229_Template(rf, ctx) { if (rf & 1) {
83
+ i0.ɵɵelementStart(0, "p", 1);
84
+ i0.ɵɵtext(1);
85
+ i0.ɵɵpipe(2, "rpxTranslate");
86
+ i0.ɵɵelementEnd();
87
+ } if (rf & 2) {
88
+ i0.ɵɵadvance();
89
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 1, "Some users may struggle with keyboard order when tabbing after an error is presented. This fails WCAG 2.1 success criterion 2.4.3: Focus Order (Level A)."));
90
+ } }
91
+ function AccessibilityComponent_p_230_Template(rf, ctx) { if (rf & 1) {
92
+ i0.ɵɵelementStart(0, "p", 1);
93
+ i0.ɵɵtext(1);
94
+ i0.ɵɵpipe(2, "rpxTranslate");
95
+ i0.ɵɵelementEnd();
96
+ } if (rf & 2) {
97
+ i0.ɵɵadvance();
98
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 1, "Some headings are skipped, so some users may struggle to navigate with screen reader via headings. This fails WCAG 2.1 success criterion 2.4.6: Headings and labels (Level AA)."));
99
+ } }
100
+ function AccessibilityComponent_p_231_Template(rf, ctx) { if (rf & 1) {
101
+ i0.ɵɵelementStart(0, "p", 1);
102
+ i0.ɵɵtext(1);
103
+ i0.ɵɵpipe(2, "rpxTranslate");
104
+ i0.ɵɵelementEnd();
105
+ } if (rf & 2) {
106
+ i0.ɵɵadvance();
107
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 1, "Some error links do not take the user to the specific error field, so some people may struggle with interacting with the links. This fails WCAG 2.1 success criterion 3.2.1: On Focus (Level A)."));
108
+ } }
109
+ function AccessibilityComponent_p_232_Template(rf, ctx) { if (rf & 1) {
110
+ i0.ɵɵelementStart(0, "p", 1);
111
+ i0.ɵɵtext(1);
112
+ i0.ɵɵpipe(2, "rpxTranslate");
113
+ i0.ɵɵelementEnd();
114
+ } if (rf & 2) {
115
+ i0.ɵɵadvance();
116
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 1, "The heading 'Filter' together with the non-unique 'Case List' headings heavily imply that a user is filtering one 'Case List' table, to which they have access, according to the filters they select. However, this is not the case. Some users may struggle with heading filters as it is not clear which ones correspond to the table data. This fails WCAG 2.1 success criterion 2.4.6: Headings and labels (Level AA)"));
117
+ } }
118
+ function AccessibilityComponent_p_233_Template(rf, ctx) { if (rf & 1) {
119
+ i0.ɵɵelementStart(0, "p", 1);
120
+ i0.ɵɵtext(1);
121
+ i0.ɵɵpipe(2, "rpxTranslate");
122
+ i0.ɵɵelementEnd();
123
+ } if (rf & 2) {
124
+ i0.ɵɵadvance();
125
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 1, "Some users may struggle on mobile where a screen reader doesn't indicate that buttons are collapsible. This fails WCAG 2.1 success criterion 4.1.2: Name, Role, Value (Level A)"));
126
+ } }
127
+ function AccessibilityComponent_h2_234_Template(rf, ctx) { if (rf & 1) {
128
+ i0.ɵɵelementStart(0, "h2", 39);
129
+ i0.ɵɵtext(1);
130
+ i0.ɵɵpipe(2, "rpxTranslate");
131
+ i0.ɵɵelementEnd();
132
+ } if (rf & 2) {
133
+ i0.ɵɵadvance();
134
+ i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(2, 1, "Disproportionate burden"), " ");
135
+ } }
136
+ function AccessibilityComponent_p_235_Template(rf, ctx) { if (rf & 1) {
137
+ i0.ɵɵelementStart(0, "p", 1);
138
+ i0.ɵɵtext(1);
139
+ i0.ɵɵpipe(2, "rpxTranslate");
140
+ i0.ɵɵelementStart(3, "a", 40);
141
+ i0.ɵɵtext(4);
142
+ i0.ɵɵpipe(5, "rpxTranslate");
143
+ i0.ɵɵelementEnd();
144
+ i0.ɵɵtext(6);
145
+ i0.ɵɵpipe(7, "rpxTranslate");
146
+ i0.ɵɵelementEnd();
147
+ } if (rf & 2) {
148
+ i0.ɵɵadvance();
149
+ i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(2, 3, "We're considering if fixing some issues would be a"), " ");
150
+ i0.ɵɵadvance(3);
151
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(5, 5, "disproportionate burden"));
152
+ i0.ɵɵadvance(2);
153
+ i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(7, 7, "within the meaning of the accessibility regulations. These issues are:"), "");
154
+ } }
155
+ function AccessibilityComponent_ul_236_Template(rf, ctx) { if (rf & 1) {
156
+ i0.ɵɵelementStart(0, "ul", 5)(1, "li");
157
+ i0.ɵɵtext(2);
158
+ i0.ɵɵpipe(3, "rpxTranslate");
159
+ i0.ɵɵelementEnd();
160
+ i0.ɵɵelementStart(4, "li");
161
+ i0.ɵɵtext(5);
162
+ i0.ɵɵpipe(6, "rpxTranslate");
163
+ i0.ɵɵelementEnd();
164
+ i0.ɵɵelementStart(7, "li");
165
+ i0.ɵɵtext(8);
166
+ i0.ɵɵpipe(9, "rpxTranslate");
167
+ i0.ɵɵelementEnd()();
168
+ } if (rf & 2) {
169
+ i0.ɵɵadvance(2);
170
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(3, 3, "Screen readers not picking up how pages are related to one another, and where they are in the context of the whole site"));
171
+ i0.ɵɵadvance(3);
172
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(6, 5, "Screen readers not picking up on non-unique table headings on the same page"));
173
+ i0.ɵɵadvance(3);
174
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(9, 7, "Some labels, fields, error messages and other content not being clearly identified by screen readers and voice activation software on mobile devices."));
175
+ } }
176
+ function AccessibilityComponent_p_237_Template(rf, ctx) { if (rf & 1) {
177
+ i0.ɵɵelementStart(0, "p", 1);
178
+ i0.ɵɵtext(1);
179
+ i0.ɵɵpipe(2, "rpxTranslate");
180
+ i0.ɵɵelementEnd();
181
+ } if (rf & 2) {
182
+ i0.ɵɵadvance();
183
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 1, "When this assessment is complete, we will update this accessibility statement, to cover whether or not disproportionate burden is being claimed."));
184
+ } }
185
+ export class AccessibilityComponent {
186
+ constructor() {
187
+ }
188
+ ngOnInit() {
189
+ const urlRef = window.location.href;
190
+ // pointing to MC & preview. May need to refactor this if
191
+ // more applications added than MO & MC
192
+ if (urlRef.includes('manage-case')
193
+ || urlRef.includes('xui-webapp')
194
+ && !urlRef.includes('xui-mo-webapp')) {
195
+ this.isEndpointMC = true;
196
+ }
197
+ else {
198
+ this.isEndpointMC = false;
199
+ }
200
+ }
201
+ static { this.ɵfac = function AccessibilityComponent_Factory(t) { return new (t || AccessibilityComponent)(); }; }
202
+ static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: AccessibilityComponent, selectors: [["xuilib-accessibility"]], decls: 276, vars: 261, consts: [["id", "Accessibility-statement-for-Expert-UI", 1, "govuk-heading-xl"], [1, "govuk-body"], [1, "govuk-list"], ["href", "accessibility#Immigration-and-asylum-chamber"], ["href", "accessibility#Family-public-law"], [1, "govuk-list", "govuk-list--bullet"], [4, "ngIf"], ["rel", "noopener noreferrer", "target", "_blank", "href", "https://mcmw.abilitynet.org.uk/"], ["id", "How-accessible-this-website-is", 1, "govuk-heading-l"], ["id", "What-to-do-if-you-cannot-access-parts-of-this-website", 1, "govuk-heading-l"], ["href", "mailto:HMCTSforms@justice.gov.uk"], ["id", "Adoption", 1, "govuk-heading-l"], ["id", "Divorce-and-financial-remedy", 1, "govuk-heading-l"], ["id", "Civil-damages-service", 1, "govuk-heading-l"], ["id", "Family-public-law", 1, "govuk-heading-l"], ["id", "Immigration-and-asylum-chamber", 1, "govuk-heading-l"], ["id", "Online-civil-money-claims", 1, "govuk-heading-l"], ["id", "Private-law", 1, "govuk-heading-l"], ["id", "Probate", 1, "govuk-heading-l"], ["id", "Social-security-and-child-support", 1, "govuk-heading-l"], ["id", "Reporting-accessibility-problems-with-this-website", 1, "govuk-heading-l"], ["href", "mailto:MCTSforms@justice.gov.uk"], ["id", "Enforcement-procedure ", 1, "govuk-heading-l"], ["rel", "noopener noreferrer", "target", "_blank", "href", "https://www.equalityadvisoryservice.com/"], ["id", "Contacting-us-by-phone-or-visiting-us-in-person", 1, "govuk-heading-l"], ["target", "_blank", "href", "https://courttribunalfinder.service.gov.uk/search/"], ["id", "Technical-information-about-this-website-accessibility", 1, "govuk-heading-l"], ["id", "Compliance-status", 1, "govuk-heading-l"], ["target", "_blank", "href", "https://www.w3.org/TR/WCAG21/"], ["id", "Non-accessible-content", 1, "govuk-heading-l"], ["id", "Non-compliance-with-the-accessibility-regulations", 1, "govuk-heading-l"], ["class", "govuk-body", 4, "ngIf"], ["class", "govuk-heading-m", "id", "Disproportionate-burden", 4, "ngIf"], ["class", "govuk-list govuk-list--bullet", 4, "ngIf"], ["id", "Content-that\u2019s-not-within-the-scope-of-the-accessibility-regulations", 1, "govuk-heading-m"], ["id", "what-to-improve-accessibility", 1, "govuk-heading-l"], ["target", "_blank", "href", "https://digitalaccessibilitycentre.org/"], ["id", "preparation-of-this-accessibility-statement", 1, "govuk-heading-l"], ["href", "mailto:customer.service@justice.gov.uk"], ["id", "Disproportionate-burden", 1, "govuk-heading-m"], ["target", "_blank", "href", "https://www.legislation.gov.uk/uksi/2018/952/regulation/7/made/"]], template: function AccessibilityComponent_Template(rf, ctx) { if (rf & 1) {
203
+ i0.ɵɵelementStart(0, "h1", 0);
204
+ i0.ɵɵtext(1);
205
+ i0.ɵɵpipe(2, "rpxTranslate");
206
+ i0.ɵɵpipe(3, "rpxTranslate");
207
+ i0.ɵɵelementEnd();
208
+ i0.ɵɵelementStart(4, "p", 1);
209
+ i0.ɵɵtext(5);
210
+ i0.ɵɵpipe(6, "rpxTranslate");
211
+ i0.ɵɵpipe(7, "rpxTranslate");
212
+ i0.ɵɵpipe(8, "rpxTranslate");
213
+ i0.ɵɵelementEnd();
214
+ i0.ɵɵelementStart(9, "ul", 2)(10, "li")(11, "a", 3);
215
+ i0.ɵɵtext(12);
216
+ i0.ɵɵpipe(13, "rpxTranslate");
217
+ i0.ɵɵelementEnd()();
218
+ i0.ɵɵelementStart(14, "li")(15, "a", 4);
219
+ i0.ɵɵtext(16);
220
+ i0.ɵɵpipe(17, "rpxTranslate");
221
+ i0.ɵɵelementEnd()()();
222
+ i0.ɵɵelementStart(18, "p", 1);
223
+ i0.ɵɵtext(19);
224
+ i0.ɵɵpipe(20, "rpxTranslate");
225
+ i0.ɵɵelementEnd();
226
+ i0.ɵɵelementStart(21, "ul", 5)(22, "li");
227
+ i0.ɵɵtext(23);
228
+ i0.ɵɵpipe(24, "rpxTranslate");
229
+ i0.ɵɵelementEnd();
230
+ i0.ɵɵtemplate(25, AccessibilityComponent_li_25_Template, 3, 3, "li", 6);
231
+ i0.ɵɵelementStart(26, "li");
232
+ i0.ɵɵtext(27);
233
+ i0.ɵɵpipe(28, "rpxTranslate");
234
+ i0.ɵɵelementEnd();
235
+ i0.ɵɵelementStart(29, "li");
236
+ i0.ɵɵtext(30);
237
+ i0.ɵɵpipe(31, "rpxTranslate");
238
+ i0.ɵɵelementEnd();
239
+ i0.ɵɵelementStart(32, "li");
240
+ i0.ɵɵtext(33);
241
+ i0.ɵɵpipe(34, "rpxTranslate");
242
+ i0.ɵɵelementEnd()();
243
+ i0.ɵɵelementStart(35, "p", 1);
244
+ i0.ɵɵtext(36);
245
+ i0.ɵɵpipe(37, "rpxTranslate");
246
+ i0.ɵɵelementEnd();
247
+ i0.ɵɵelementStart(38, "p", 1)(39, "a", 7);
248
+ i0.ɵɵtext(40);
249
+ i0.ɵɵpipe(41, "rpxTranslate");
250
+ i0.ɵɵelementEnd();
251
+ i0.ɵɵtext(42);
252
+ i0.ɵɵpipe(43, "rpxTranslate");
253
+ i0.ɵɵelementEnd();
254
+ i0.ɵɵelementStart(44, "h2", 8);
255
+ i0.ɵɵtext(45);
256
+ i0.ɵɵpipe(46, "rpxTranslate");
257
+ i0.ɵɵelementEnd();
258
+ i0.ɵɵelementStart(47, "p", 1);
259
+ i0.ɵɵtext(48);
260
+ i0.ɵɵpipe(49, "rpxTranslate");
261
+ i0.ɵɵelementEnd();
262
+ i0.ɵɵelementStart(50, "ul", 5)(51, "li");
263
+ i0.ɵɵtext(52);
264
+ i0.ɵɵpipe(53, "rpxTranslate");
265
+ i0.ɵɵelementEnd();
266
+ i0.ɵɵelementStart(54, "li");
267
+ i0.ɵɵtext(55);
268
+ i0.ɵɵpipe(56, "rpxTranslate");
269
+ i0.ɵɵelementEnd();
270
+ i0.ɵɵtemplate(57, AccessibilityComponent_li_57_Template, 3, 3, "li", 6)(58, AccessibilityComponent_li_58_Template, 3, 3, "li", 6)(59, AccessibilityComponent_li_59_Template, 3, 3, "li", 6)(60, AccessibilityComponent_li_60_Template, 3, 3, "li", 6)(61, AccessibilityComponent_li_61_Template, 3, 3, "li", 6);
271
+ i0.ɵɵelementStart(62, "li");
272
+ i0.ɵɵtext(63);
273
+ i0.ɵɵpipe(64, "rpxTranslate");
274
+ i0.ɵɵelementEnd();
275
+ i0.ɵɵtemplate(65, AccessibilityComponent_li_65_Template, 3, 3, "li", 6);
276
+ i0.ɵɵelementEnd();
277
+ i0.ɵɵelementStart(66, "h2", 9);
278
+ i0.ɵɵtext(67);
279
+ i0.ɵɵpipe(68, "rpxTranslate");
280
+ i0.ɵɵelementEnd();
281
+ i0.ɵɵelementStart(69, "p", 1);
282
+ i0.ɵɵtext(70);
283
+ i0.ɵɵpipe(71, "rpxTranslate");
284
+ i0.ɵɵelementEnd();
285
+ i0.ɵɵelementStart(72, "ul", 5)(73, "li");
286
+ i0.ɵɵtext(74);
287
+ i0.ɵɵpipe(75, "rpxTranslate");
288
+ i0.ɵɵelementStart(76, "a", 10);
289
+ i0.ɵɵtext(77, " HMCTSforms@justice.gov.uk");
290
+ i0.ɵɵelementEnd()();
291
+ i0.ɵɵelementStart(78, "li");
292
+ i0.ɵɵtext(79);
293
+ i0.ɵɵpipe(80, "rpxTranslate");
294
+ i0.ɵɵelementEnd()();
295
+ i0.ɵɵelementStart(81, "h2", 11);
296
+ i0.ɵɵtext(82);
297
+ i0.ɵɵpipe(83, "rpxTranslate");
298
+ i0.ɵɵelementEnd();
299
+ i0.ɵɵelementStart(84, "ul", 5)(85, "li");
300
+ i0.ɵɵtext(86);
301
+ i0.ɵɵpipe(87, "rpxTranslate");
302
+ i0.ɵɵelementEnd()();
303
+ i0.ɵɵelementStart(88, "h2", 12);
304
+ i0.ɵɵtext(89);
305
+ i0.ɵɵpipe(90, "rpxTranslate");
306
+ i0.ɵɵelementEnd();
307
+ i0.ɵɵelementStart(91, "ul", 5)(92, "li");
308
+ i0.ɵɵtext(93);
309
+ i0.ɵɵpipe(94, "rpxTranslate");
310
+ i0.ɵɵelementEnd()();
311
+ i0.ɵɵelementStart(95, "h2", 13);
312
+ i0.ɵɵtext(96);
313
+ i0.ɵɵpipe(97, "rpxTranslate");
314
+ i0.ɵɵelementEnd();
315
+ i0.ɵɵelementStart(98, "ul", 5)(99, "li");
316
+ i0.ɵɵtext(100);
317
+ i0.ɵɵpipe(101, "rpxTranslate");
318
+ i0.ɵɵelementEnd()();
319
+ i0.ɵɵelementStart(102, "h2", 14);
320
+ i0.ɵɵtext(103);
321
+ i0.ɵɵpipe(104, "rpxTranslate");
322
+ i0.ɵɵelementEnd();
323
+ i0.ɵɵelementStart(105, "ul", 5)(106, "li");
324
+ i0.ɵɵtext(107);
325
+ i0.ɵɵpipe(108, "rpxTranslate");
326
+ i0.ɵɵelementEnd()();
327
+ i0.ɵɵelementStart(109, "h2", 15);
328
+ i0.ɵɵtext(110);
329
+ i0.ɵɵpipe(111, "rpxTranslate");
330
+ i0.ɵɵelementEnd();
331
+ i0.ɵɵelementStart(112, "ul", 5)(113, "li");
332
+ i0.ɵɵtext(114);
333
+ i0.ɵɵpipe(115, "rpxTranslate");
334
+ i0.ɵɵelementEnd()();
335
+ i0.ɵɵelementStart(116, "h2", 16);
336
+ i0.ɵɵtext(117);
337
+ i0.ɵɵpipe(118, "rpxTranslate");
338
+ i0.ɵɵelementEnd();
339
+ i0.ɵɵelementStart(119, "ul", 5)(120, "li");
340
+ i0.ɵɵtext(121);
341
+ i0.ɵɵpipe(122, "rpxTranslate");
342
+ i0.ɵɵelementEnd()();
343
+ i0.ɵɵelementStart(123, "h2", 17);
344
+ i0.ɵɵtext(124);
345
+ i0.ɵɵpipe(125, "rpxTranslate");
346
+ i0.ɵɵelementEnd();
347
+ i0.ɵɵelementStart(126, "ul", 5)(127, "li");
348
+ i0.ɵɵtext(128);
349
+ i0.ɵɵpipe(129, "rpxTranslate");
350
+ i0.ɵɵelementEnd()();
351
+ i0.ɵɵelementStart(130, "h2", 18);
352
+ i0.ɵɵtext(131);
353
+ i0.ɵɵpipe(132, "rpxTranslate");
354
+ i0.ɵɵelementEnd();
355
+ i0.ɵɵelementStart(133, "ul", 5)(134, "li");
356
+ i0.ɵɵtext(135);
357
+ i0.ɵɵpipe(136, "rpxTranslate");
358
+ i0.ɵɵelementEnd()();
359
+ i0.ɵɵelementStart(137, "h2", 19);
360
+ i0.ɵɵtext(138);
361
+ i0.ɵɵpipe(139, "rpxTranslate");
362
+ i0.ɵɵelementEnd();
363
+ i0.ɵɵelementStart(140, "ul", 5)(141, "li");
364
+ i0.ɵɵtext(142);
365
+ i0.ɵɵpipe(143, "rpxTranslate");
366
+ i0.ɵɵelementEnd()();
367
+ i0.ɵɵelementStart(144, "p", 1);
368
+ i0.ɵɵtext(145);
369
+ i0.ɵɵpipe(146, "rpxTranslate");
370
+ i0.ɵɵelementEnd();
371
+ i0.ɵɵelementStart(147, "p", 1);
372
+ i0.ɵɵtext(148);
373
+ i0.ɵɵpipe(149, "rpxTranslate");
374
+ i0.ɵɵelementEnd();
375
+ i0.ɵɵelementStart(150, "h2", 20);
376
+ i0.ɵɵtext(151);
377
+ i0.ɵɵpipe(152, "rpxTranslate");
378
+ i0.ɵɵelementEnd();
379
+ i0.ɵɵelementStart(153, "p", 1);
380
+ i0.ɵɵtext(154);
381
+ i0.ɵɵpipe(155, "rpxTranslate");
382
+ i0.ɵɵelementEnd();
383
+ i0.ɵɵelementStart(156, "ul", 5)(157, "li");
384
+ i0.ɵɵtext(158);
385
+ i0.ɵɵpipe(159, "rpxTranslate");
386
+ i0.ɵɵelementStart(160, "a", 21);
387
+ i0.ɵɵtext(161, " HMCTSforms@justice.gov.uk");
388
+ i0.ɵɵelementEnd()();
389
+ i0.ɵɵtemplate(162, AccessibilityComponent_li_162_Template, 3, 0, "li", 6);
390
+ i0.ɵɵelementStart(163, "li");
391
+ i0.ɵɵtext(164, "call the service you require as listed above.");
392
+ i0.ɵɵelementEnd()();
393
+ i0.ɵɵelementStart(165, "p", 1);
394
+ i0.ɵɵtext(166);
395
+ i0.ɵɵpipe(167, "rpxTranslate");
396
+ i0.ɵɵelementEnd();
397
+ i0.ɵɵelementStart(168, "h2", 22);
398
+ i0.ɵɵtext(169);
399
+ i0.ɵɵpipe(170, "rpxTranslate");
400
+ i0.ɵɵelementEnd();
401
+ i0.ɵɵelementStart(171, "p", 1);
402
+ i0.ɵɵtext(172);
403
+ i0.ɵɵpipe(173, "rpxTranslate");
404
+ i0.ɵɵelementEnd();
405
+ i0.ɵɵelementStart(174, "p", 1);
406
+ i0.ɵɵtext(175);
407
+ i0.ɵɵpipe(176, "rpxTranslate");
408
+ i0.ɵɵelementStart(177, "a", 23);
409
+ i0.ɵɵtext(178);
410
+ i0.ɵɵpipe(179, "rpxTranslate");
411
+ i0.ɵɵelementEnd()();
412
+ i0.ɵɵelementStart(180, "h1", 24);
413
+ i0.ɵɵtext(181);
414
+ i0.ɵɵpipe(182, "rpxTranslate");
415
+ i0.ɵɵelementEnd();
416
+ i0.ɵɵelementStart(183, "p", 1);
417
+ i0.ɵɵtext(184);
418
+ i0.ɵɵpipe(185, "rpxTranslate");
419
+ i0.ɵɵelementEnd();
420
+ i0.ɵɵelementStart(186, "p", 1);
421
+ i0.ɵɵtext(187);
422
+ i0.ɵɵpipe(188, "rpxTranslate");
423
+ i0.ɵɵelementEnd();
424
+ i0.ɵɵelementStart(189, "p", 1);
425
+ i0.ɵɵtext(190);
426
+ i0.ɵɵpipe(191, "rpxTranslate");
427
+ i0.ɵɵelementStart(192, "a", 25);
428
+ i0.ɵɵtext(193);
429
+ i0.ɵɵpipe(194, "rpxTranslate");
430
+ i0.ɵɵelementEnd();
431
+ i0.ɵɵtext(195, ". ");
432
+ i0.ɵɵelementEnd();
433
+ i0.ɵɵelementStart(196, "h2", 26);
434
+ i0.ɵɵtext(197);
435
+ i0.ɵɵpipe(198, "rpxTranslate");
436
+ i0.ɵɵelementEnd();
437
+ i0.ɵɵelementStart(199, "p", 1);
438
+ i0.ɵɵtext(200);
439
+ i0.ɵɵpipe(201, "rpxTranslate");
440
+ i0.ɵɵelementEnd();
441
+ i0.ɵɵelementStart(202, "h2", 27);
442
+ i0.ɵɵtext(203);
443
+ i0.ɵɵpipe(204, "rpxTranslate");
444
+ i0.ɵɵelementEnd();
445
+ i0.ɵɵelementStart(205, "p", 1);
446
+ i0.ɵɵtext(206);
447
+ i0.ɵɵpipe(207, "rpxTranslate");
448
+ i0.ɵɵelementStart(208, "a", 28);
449
+ i0.ɵɵtext(209);
450
+ i0.ɵɵpipe(210, "rpxTranslate");
451
+ i0.ɵɵelementEnd();
452
+ i0.ɵɵtext(211);
453
+ i0.ɵɵpipe(212, "rpxTranslate");
454
+ i0.ɵɵelementEnd();
455
+ i0.ɵɵelementStart(213, "h2", 29);
456
+ i0.ɵɵtext(214);
457
+ i0.ɵɵpipe(215, "rpxTranslate");
458
+ i0.ɵɵelementEnd();
459
+ i0.ɵɵelementStart(216, "p", 1);
460
+ i0.ɵɵtext(217);
461
+ i0.ɵɵpipe(218, "rpxTranslate");
462
+ i0.ɵɵelementEnd();
463
+ i0.ɵɵelementStart(219, "h2", 30);
464
+ i0.ɵɵtext(220);
465
+ i0.ɵɵpipe(221, "rpxTranslate");
466
+ i0.ɵɵelementEnd();
467
+ i0.ɵɵelementStart(222, "p", 1);
468
+ i0.ɵɵtext(223);
469
+ i0.ɵɵpipe(224, "rpxTranslate");
470
+ i0.ɵɵelementEnd();
471
+ i0.ɵɵelementStart(225, "p", 1);
472
+ i0.ɵɵtext(226);
473
+ i0.ɵɵpipe(227, "rpxTranslate");
474
+ i0.ɵɵelementEnd();
475
+ i0.ɵɵtemplate(228, AccessibilityComponent_p_228_Template, 3, 3, "p", 31)(229, AccessibilityComponent_p_229_Template, 3, 3, "p", 31)(230, AccessibilityComponent_p_230_Template, 3, 3, "p", 31)(231, AccessibilityComponent_p_231_Template, 3, 3, "p", 31)(232, AccessibilityComponent_p_232_Template, 3, 3, "p", 31)(233, AccessibilityComponent_p_233_Template, 3, 3, "p", 31)(234, AccessibilityComponent_h2_234_Template, 3, 3, "h2", 32)(235, AccessibilityComponent_p_235_Template, 8, 9, "p", 31)(236, AccessibilityComponent_ul_236_Template, 10, 9, "ul", 33)(237, AccessibilityComponent_p_237_Template, 3, 3, "p", 31);
476
+ i0.ɵɵelementStart(238, "h2", 34);
477
+ i0.ɵɵtext(239);
478
+ i0.ɵɵpipe(240, "rpxTranslate");
479
+ i0.ɵɵelementEnd();
480
+ i0.ɵɵelementStart(241, "p", 1);
481
+ i0.ɵɵtext(242);
482
+ i0.ɵɵpipe(243, "rpxTranslate");
483
+ i0.ɵɵelementEnd();
484
+ i0.ɵɵelementStart(244, "p", 1);
485
+ i0.ɵɵtext(245);
486
+ i0.ɵɵpipe(246, "rpxTranslate");
487
+ i0.ɵɵelementEnd();
488
+ i0.ɵɵelementStart(247, "h2", 35);
489
+ i0.ɵɵtext(248);
490
+ i0.ɵɵpipe(249, "rpxTranslate");
491
+ i0.ɵɵelementEnd();
492
+ i0.ɵɵelementStart(250, "p", 1);
493
+ i0.ɵɵtext(251);
494
+ i0.ɵɵpipe(252, "rpxTranslate");
495
+ i0.ɵɵelementEnd();
496
+ i0.ɵɵelementStart(253, "p", 1);
497
+ i0.ɵɵtext(254);
498
+ i0.ɵɵpipe(255, "rpxTranslate");
499
+ i0.ɵɵelementEnd();
500
+ i0.ɵɵelementStart(256, "p", 1);
501
+ i0.ɵɵtext(257);
502
+ i0.ɵɵpipe(258, "rpxTranslate");
503
+ i0.ɵɵelementStart(259, "a", 36);
504
+ i0.ɵɵtext(260);
505
+ i0.ɵɵpipe(261, "rpxTranslate");
506
+ i0.ɵɵelementEnd()();
507
+ i0.ɵɵelementStart(262, "h2", 37);
508
+ i0.ɵɵtext(263);
509
+ i0.ɵɵpipe(264, "rpxTranslate");
510
+ i0.ɵɵelementEnd();
511
+ i0.ɵɵelementStart(265, "p", 1);
512
+ i0.ɵɵtext(266);
513
+ i0.ɵɵpipe(267, "rpxTranslate");
514
+ i0.ɵɵelementEnd();
515
+ i0.ɵɵelementStart(268, "p", 1);
516
+ i0.ɵɵtext(269);
517
+ i0.ɵɵpipe(270, "rpxTranslate");
518
+ i0.ɵɵelementStart(271, "a", 36);
519
+ i0.ɵɵtext(272);
520
+ i0.ɵɵpipe(273, "rpxTranslate");
521
+ i0.ɵɵelementEnd();
522
+ i0.ɵɵtext(274);
523
+ i0.ɵɵpipe(275, "rpxTranslate");
524
+ i0.ɵɵelementEnd();
525
+ } if (rf & 2) {
526
+ i0.ɵɵadvance();
527
+ i0.ɵɵtextInterpolate2("", i0.ɵɵpipeBind1(2, 99, "Accessibility statement for MyHMCTS"), " ", ctx.isEndpointMC ? "Manage Cases" : i0.ɵɵpipeBind1(3, 101, "Manage Organisation"), "");
528
+ i0.ɵɵadvance(4);
529
+ i0.ɵɵtextInterpolate3("", i0.ɵɵpipeBind1(6, 103, "MyHMCTS"), " ", ctx.isEndpointMC ? "Manage Cases" : i0.ɵɵpipeBind1(7, 105, "Manage Organisation"), " ", i0.ɵɵpipeBind1(8, 107, "is used across several services. Please use links to find contact information for each service."), "");
530
+ i0.ɵɵadvance(7);
531
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(13, 109, "Immigration and Asylum"));
532
+ i0.ɵɵadvance(4);
533
+ i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(17, 111, "Family Public Law"), " ");
534
+ i0.ɵɵadvance(3);
535
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(20, 113, "This website is run by HM Courts & Tribunals Service. We want as many people as possible to be able to use this website. For example, you should be able to:"));
536
+ i0.ɵɵadvance(4);
537
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(24, 115, "change colours, contrast levels and fonts"));
538
+ i0.ɵɵadvance(2);
539
+ i0.ɵɵproperty("ngIf", ctx.isEndpointMC);
540
+ i0.ɵɵadvance(2);
541
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(28, 117, "navigate most of the website using just a keyboard"));
542
+ i0.ɵɵadvance(3);
543
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(31, 119, "navigate most of the website using speech recognition software"));
544
+ i0.ɵɵadvance(3);
545
+ i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(34, 121, "listen to most of the website using a screen reader (including the most recent versions of JAWS, NVDA and VoiceOver)"), " ");
546
+ i0.ɵɵadvance(3);
547
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(37, 123, "We\u2019ve also made the website text as simple as possible to understand."));
548
+ i0.ɵɵadvance(4);
549
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(41, 125, "AbilityNet"));
550
+ i0.ɵɵadvance(2);
551
+ i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(43, 127, "has advice on making your device easier to use if you have a disability."), "");
552
+ i0.ɵɵadvance(3);
553
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(46, 129, "How accessible this website is"));
554
+ i0.ɵɵadvance(3);
555
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(49, 131, "We know some parts of the website are not fully accessible:"));
556
+ i0.ɵɵadvance(4);
557
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(53, 133, "some pages can't be zoomed in to 400% without content overlapping"));
558
+ i0.ɵɵadvance(3);
559
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(56, 135, "some page titles aren't page specific"));
560
+ i0.ɵɵadvance(2);
561
+ i0.ɵɵproperty("ngIf", !ctx.isEndpointMC);
562
+ i0.ɵɵadvance();
563
+ i0.ɵɵproperty("ngIf", !ctx.isEndpointMC);
564
+ i0.ɵɵadvance();
565
+ i0.ɵɵproperty("ngIf", !ctx.isEndpointMC);
566
+ i0.ɵɵadvance();
567
+ i0.ɵɵproperty("ngIf", ctx.isEndpointMC);
568
+ i0.ɵɵadvance();
569
+ i0.ɵɵproperty("ngIf", ctx.isEndpointMC);
570
+ i0.ɵɵadvance(2);
571
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(64, 137, "some PDFs may not be fully accessible to a screen reader"));
572
+ i0.ɵɵadvance(2);
573
+ i0.ɵɵproperty("ngIf", ctx.isEndpointMC);
574
+ i0.ɵɵadvance(2);
575
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(68, 139, "Feedback and contact information"));
576
+ i0.ɵɵadvance(3);
577
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(71, 141, "If you're a legal professional and need information on this website in a different format like accessible PDF, large print, easy read, audio recording or braille, you can:"));
578
+ i0.ɵɵadvance(4);
579
+ i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(75, 143, "email:"), " ");
580
+ i0.ɵɵadvance(5);
581
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(80, 145, "call the service you require, as listed below."));
582
+ i0.ɵɵadvance(3);
583
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(83, 147, "Adoption"));
584
+ i0.ɵɵadvance(4);
585
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(87, 149, "call: 01634 887900"));
586
+ i0.ɵɵadvance(3);
587
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(90, 151, "Divorce and Financial Remedy"));
588
+ i0.ɵɵadvance(4);
589
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(94, 153, "call: 0300 123 1372"));
590
+ i0.ɵɵadvance(3);
591
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(97, 155, "Civil Damages Service"));
592
+ i0.ɵɵadvance(4);
593
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(101, 157, "call: 0300 123 1372"));
594
+ i0.ɵɵadvance(3);
595
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(104, 159, "Family Public Law"));
596
+ i0.ɵɵadvance(4);
597
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(108, 161, "call: 0330 808 4424"));
598
+ i0.ɵɵadvance(3);
599
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(111, 163, "Immigration and Asylum Chamber"));
600
+ i0.ɵɵadvance(4);
601
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(115, 165, "call: 0300 123 1711"));
602
+ i0.ɵɵadvance(3);
603
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(118, 167, "Online Civil Money Claims"));
604
+ i0.ɵɵadvance(4);
605
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(122, 169, "call: 0300 123 7050"));
606
+ i0.ɵɵadvance(3);
607
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(125, 171, "Private Law"));
608
+ i0.ɵɵadvance(4);
609
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(129, 173, "call: 0300 323 0185"));
610
+ i0.ɵɵadvance(3);
611
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(132, 175, "Probate"));
612
+ i0.ɵɵadvance(4);
613
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(136, 177, "call: 0300 303 0648"));
614
+ i0.ɵɵadvance(3);
615
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(139, 179, "Social Security and Child Support"));
616
+ i0.ɵɵadvance(4);
617
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(143, 181, "call: 0300 123 1142"));
618
+ i0.ɵɵadvance(3);
619
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(146, 183, "We'll consider your request and get back to you in 10 working days."));
620
+ i0.ɵɵadvance(3);
621
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(149, 185, "If you a member of HMCTS staff or the Judiciary speak to your line manager or equivalent in the first instance."));
622
+ i0.ɵɵadvance(3);
623
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(152, 187, "Reporting accessibility problems with this website"));
624
+ i0.ɵɵadvance(3);
625
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(155, 189, "We're always looking to improve the accessibility of this website. If you're a legal professional and find any problems not listed on this page or think we're not meeting accessibility requirements, contact:"));
626
+ i0.ɵɵadvance(4);
627
+ i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(159, 191, "email:"), " ");
628
+ i0.ɵɵadvance(4);
629
+ i0.ɵɵproperty("ngIf", ctx.isEndpointMC);
630
+ i0.ɵɵadvance(4);
631
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(167, 193, "If you a member of HMCTS staff or the Judiciary speak to your line manager or equivalent in the first instance."));
632
+ i0.ɵɵadvance(3);
633
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(170, 195, "Enforcement procedure"));
634
+ i0.ɵɵadvance(3);
635
+ i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(173, 197, "The Equality and Human Rights Commission (EHRC) is responsible for enforcing the Public Sector Bodies (Websites and Mobile Applications) (No. 2) Accessibility Regulations 2018 (the \u2018accessibility regulations\u2019)."), " ");
636
+ i0.ɵɵadvance(3);
637
+ i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(176, 199, "If you\u2019re not happy with how we respond to your complaint,"), " ");
638
+ i0.ɵɵadvance(3);
639
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(179, 201, "contact the Equality Advisory and Support Service (EASS)."));
640
+ i0.ɵɵadvance(3);
641
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(182, 203, "Contacting us by phone or visiting us in person"));
642
+ i0.ɵɵadvance(3);
643
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(185, 205, "We provide a text relay service for people who are D/deaf, hearing impaired or have a speech impediment."));
644
+ i0.ɵɵadvance(3);
645
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(188, 207, "Our offices and tribunal venues have audio induction loops, or if you contact us before your visit we can arrange a British Sign Language (BSL) interpreter. You can also request step-free access or a foreign language interpreter."));
646
+ i0.ɵɵadvance(3);
647
+ i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(191, 209, "Find out how to contact us using the contact details above or "), " ");
648
+ i0.ɵɵadvance(3);
649
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(194, 211, "find the contact details for court and tribunal venues"));
650
+ i0.ɵɵadvance(4);
651
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(198, 213, "Technical information about this website\u2019s accessibility"));
652
+ i0.ɵɵadvance(3);
653
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(201, 215, "HMCTS is committed to making its website accessible, in accordance with the Public Sector Bodies (Websites and Mobile Applications) (No.2) Accessibility Regulations 2018."));
654
+ i0.ɵɵadvance(3);
655
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(204, 217, "Compliance Status"));
656
+ i0.ɵɵadvance(3);
657
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(207, 219, "This website is partially compliant with the "));
658
+ i0.ɵɵadvance(3);
659
+ i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(210, 221, "Web Content Accessibility Guidelines version 2.1 "), "");
660
+ i0.ɵɵadvance(2);
661
+ i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(212, 223, "due to the non-compliances listed below."), "\n");
662
+ i0.ɵɵadvance(3);
663
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(215, 225, "Non-accessible content"));
664
+ i0.ɵɵadvance(3);
665
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(218, 227, "The content listed below is non-compliant for the following reasons."));
666
+ i0.ɵɵadvance(3);
667
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(221, 229, "Non-compliance with the accessibility regulations"));
668
+ i0.ɵɵadvance(3);
669
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(224, 231, "When zoomed in 200%, content overlaps and does not reflow, so some people will have difficulty viewing pages. This fails WCAG 2.1 success criterion 1.4.10: Reflow (Level AA)."));
670
+ i0.ɵɵadvance(3);
671
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(227, 233, "Some page titles are not unique to the screens, so screenreader users may struggle to know which page they are on. This fails WCAG 2.1 success criterion 2.4.2: Page Titled (Level A)"));
672
+ i0.ɵɵadvance(2);
673
+ i0.ɵɵproperty("ngIf", ctx.isEndpointMC);
674
+ i0.ɵɵadvance();
675
+ i0.ɵɵproperty("ngIf", !ctx.isEndpointMC);
676
+ i0.ɵɵadvance();
677
+ i0.ɵɵproperty("ngIf", !ctx.isEndpointMC);
678
+ i0.ɵɵadvance();
679
+ i0.ɵɵproperty("ngIf", !ctx.isEndpointMC);
680
+ i0.ɵɵadvance();
681
+ i0.ɵɵproperty("ngIf", ctx.isEndpointMC);
682
+ i0.ɵɵadvance();
683
+ i0.ɵɵproperty("ngIf", ctx.isEndpointMC);
684
+ i0.ɵɵadvance();
685
+ i0.ɵɵproperty("ngIf", !ctx.isEndpointMC);
686
+ i0.ɵɵadvance();
687
+ i0.ɵɵproperty("ngIf", !ctx.isEndpointMC);
688
+ i0.ɵɵadvance();
689
+ i0.ɵɵproperty("ngIf", !ctx.isEndpointMC);
690
+ i0.ɵɵadvance();
691
+ i0.ɵɵproperty("ngIf", !ctx.isEndpointMC);
692
+ i0.ɵɵadvance(2);
693
+ i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(240, 235, "Content that\u2019s not within the scope of the accessibility regulations"), " ");
694
+ i0.ɵɵadvance(3);
695
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(243, 237, "PDFs, documents and attachments to email notifications published before 23 September 2018 may not meet accessibility standards. For example, they may not be structured so they\u2019re accessible to a screen reader."));
696
+ i0.ɵɵadvance(3);
697
+ i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(246, 239, "Any new PDFs or Word documents we publish will meet accessibility standards."), "\n");
698
+ i0.ɵɵadvance(3);
699
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(249, 241, "What we\u2019re doing to improve accessibility"));
700
+ i0.ɵɵadvance(3);
701
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(252, 243, "We\u2019re committed to ensuring our services are accessible to all our users and that they comply with level AA of the Web Content Accessibility Guidelines \u2013 WCAG 2.1."));
702
+ i0.ɵɵadvance(3);
703
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(255, 245, "We\u2019re actively working to improve the identified issues and aiming to make them AA-compliant by December 2024."));
704
+ i0.ɵɵadvance(3);
705
+ i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(258, 247, "We\u2019re currently preparing for an external audit carried out by the "), " ");
706
+ i0.ɵɵadvance(3);
707
+ i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(261, 249, "Digital Accessibility Centre (DAC)."), " ");
708
+ i0.ɵɵadvance(3);
709
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(264, 251, "Preparation of this accessibility statement"));
710
+ i0.ɵɵadvance(3);
711
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(267, 253, "This statement was prepared on 16 September 2019. It was last reviewed in Spring/Summer 2023."));
712
+ i0.ɵɵadvance(3);
713
+ i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(270, 255, "This website was last tested on 19 May 2020. The service will be tested by"), " ");
714
+ i0.ɵɵadvance(3);
715
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(273, 257, "Digital Accessibility Centre (DAC)"));
716
+ i0.ɵɵadvance(2);
717
+ i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(275, 259, "on 20 November 2023."), "");
718
+ } }, dependencies: [i1.NgIf, i2.RpxTranslatePipe], styles: [".govuk-list--alpha[_ngcontent-%COMP%]{padding-left:20px;list-style-type:lower-alpha}"] }); }
719
+ }
720
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AccessibilityComponent, [{
721
+ type: Component,
722
+ args: [{ selector: 'xuilib-accessibility', template: "<h1 class=\"govuk-heading-xl\" id=\"Accessibility-statement-for-Expert-UI\">{{'Accessibility statement for MyHMCTS' |\n rpxTranslate }}\n {{isEndpointMC ? 'Manage Cases' : 'Manage Organisation' | rpxTranslate}}</h1>\n\n<p class=\"govuk-body\">{{'MyHMCTS' |rpxTranslate}} {{isEndpointMC ? 'Manage Cases' : 'Manage Organisation' |\n rpxTranslate}} {{'is used across several services. Please use links to find contact information for each service.' |\n rpxTranslate}}</p>\n\n<ul class=\"govuk-list\">\n <li><a href=\"accessibility#Immigration-and-asylum-chamber\">{{'Immigration and Asylum' | rpxTranslate}}</a></li>\n <li><a href=\"accessibility#Family-public-law\">{{'Family Public Law' | rpxTranslate}} </a></li>\n</ul>\n\n<p class=\"govuk-body\">{{'This website is run by HM Courts & Tribunals Service. We want as many people as possible to be\n able to use this website. For example, you should be able to:' | rpxTranslate}}</p>\n\n<ul class=\"govuk-list govuk-list--bullet\">\n <li>{{'change colours, contrast levels and fonts' | rpxTranslate}}</li>\n <li *ngIf=\"isEndpointMC\">{{'zoom in up to 300% without the text spilling off the screen' | rpxTranslate}}</li>\n <li>{{'navigate most of the website using just a keyboard' | rpxTranslate}}</li>\n <li>{{'navigate most of the website using speech recognition software' | rpxTranslate}}</li>\n <li>{{'listen to most of the website using a screen reader (including the most recent versions of JAWS, NVDA and\n VoiceOver)' | rpxTranslate}}\n </li>\n</ul>\n\n<p class=\"govuk-body\">{{'We\\\u2019ve also made the website text as simple as possible to understand.' | rpxTranslate}}</p>\n\n<p class=\"govuk-body\"><a rel=\"noopener noreferrer\" target=\"_blank\" href=\"https://mcmw.abilitynet.org.uk/\">{{'AbilityNet'\n | rpxTranslate}}</a>\n {{'has advice on making your device easier to use if you have a disability.' | rpxTranslate}}</p>\n\n<h2 class=\"govuk-heading-l\" id=\"How-accessible-this-website-is\">{{'How accessible this website is' | rpxTranslate}}</h2>\n\n<p class=\"govuk-body\">{{'We know some parts of the website are not fully accessible:' | rpxTranslate}}</p>\n\n<ul class=\"govuk-list govuk-list--bullet\">\n <li>{{'some pages can\\'t be zoomed in to 400% without content overlapping' | rpxTranslate}}</li>\n <li>{{'some page titles aren\\'t page specific' | rpxTranslate}}</li>\n <li *ngIf=\"!isEndpointMC\">{{'some pages do not follow a logical tabbing order' | rpxTranslate}}</li>\n <li *ngIf=\"!isEndpointMC\">{{'some headings levels are skipped' | rpxTranslate}}</li>\n <li *ngIf=\"!isEndpointMC\">{{'some links do not work' | rpxTranslate}}</li>\n <li *ngIf=\"isEndpointMC\">{{'it may be difficult to navigate between pages' | rpxTranslate}}</li>\n <li *ngIf=\"isEndpointMC\">{{'some headings and labels aren\\'t specific enough' | rpxTranslate}}</li>\n <li>{{'some PDFs may not be fully accessible to a screen reader' | rpxTranslate}}</li>\n <li *ngIf=\"isEndpointMC\">{{'some buttons may not communicate collapsed status on mobile' | rpxTranslate}}</li>\n</ul>\n\n<h2 class=\"govuk-heading-l\" id=\"What-to-do-if-you-cannot-access-parts-of-this-website\">{{'Feedback and contact\n information' | rpxTranslate}}</h2>\n\n<p class=\"govuk-body\">{{'If you\\'re a legal professional and need information on this website in a different format like\n accessible PDF, large print, easy read, audio recording or braille, you can:' | rpxTranslate}}</p>\n\n<ul class=\"govuk-list govuk-list--bullet\">\n <li>{{'email:' | rpxTranslate}} <a href=\"mailto:HMCTSforms@justice.gov.uk\"> HMCTSforms&#64;justice.gov.uk</a></li>\n <li>{{'call the service you require, as listed below.' | rpxTranslate}}</li>\n</ul>\n\n\n<h2 class=\"govuk-heading-l\" id=\"Adoption\">{{'Adoption' | rpxTranslate}}</h2>\n<ul class=\"govuk-list govuk-list--bullet\">\n <li>{{'call: 01634 887900' | rpxTranslate}}</li>\n</ul>\n\n<h2 class=\"govuk-heading-l\" id=\"Divorce-and-financial-remedy\">{{'Divorce and Financial Remedy' | rpxTranslate}}</h2>\n<ul class=\"govuk-list govuk-list--bullet\">\n <li>{{'call: 0300 123 1372' | rpxTranslate}}</li>\n</ul>\n\n<h2 class=\"govuk-heading-l\" id=\"Civil-damages-service\">{{'Civil Damages Service' | rpxTranslate}}</h2>\n<ul class=\"govuk-list govuk-list--bullet\">\n <li>{{'call: 0300 123 1372' | rpxTranslate}}</li>\n</ul>\n\n<h2 class=\"govuk-heading-l\" id=\"Family-public-law\">{{'Family Public Law' | rpxTranslate}}</h2>\n<ul class=\"govuk-list govuk-list--bullet\">\n <li>{{'call: 0330 808 4424' | rpxTranslate}}</li>\n</ul>\n\n<h2 class=\"govuk-heading-l\" id=\"Immigration-and-asylum-chamber\">{{'Immigration and Asylum Chamber' | rpxTranslate}}</h2>\n<ul class=\"govuk-list govuk-list--bullet\">\n <li>{{'call: 0300 123 1711' | rpxTranslate}}</li>\n</ul>\n\n<h2 class=\"govuk-heading-l\" id=\"Online-civil-money-claims\">{{'Online Civil Money Claims' | rpxTranslate}}</h2>\n<ul class=\"govuk-list govuk-list--bullet\">\n <li>{{'call: 0300 123 7050' | rpxTranslate}}</li>\n</ul>\n\n<h2 class=\"govuk-heading-l\" id=\"Private-law\">{{'Private Law' | rpxTranslate}}</h2>\n<ul class=\"govuk-list govuk-list--bullet\">\n <li>{{'call: 0300 323 0185' | rpxTranslate}}</li>\n</ul>\n\n<h2 class=\"govuk-heading-l\" id=\"Probate\">{{'Probate' | rpxTranslate}}</h2>\n<ul class=\"govuk-list govuk-list--bullet\">\n <li>{{'call: 0300 303 0648' | rpxTranslate}}</li>\n</ul>\n\n<h2 class=\"govuk-heading-l\" id=\"Social-security-and-child-support\">{{'Social Security and Child Support' |\n rpxTranslate}}</h2>\n<ul class=\"govuk-list govuk-list--bullet\">\n <li>{{'call: 0300 123 1142' | rpxTranslate}}</li>\n</ul>\n\n<p class=\"govuk-body\">{{'We\\'ll consider your request and get back to you in 10 working days.' | rpxTranslate}}</p>\n<p class=\"govuk-body\">{{'If you a member of HMCTS staff or the Judiciary speak to your line manager or equivalent in the\n first instance.' | rpxTranslate}}</p>\n\n<h2 class=\"govuk-heading-l\" id=\"Reporting-accessibility-problems-with-this-website\">{{'Reporting accessibility problems\n with this website' | rpxTranslate}}</h2>\n\n<p class=\"govuk-body\">{{'We\\'re always looking to improve the accessibility of this website. If you\\'re a legal professional and find any problems not listed on this page or think we\\'re not meeting accessibility requirements, contact:' | rpxTranslate}}</p>\n\n<ul class=\"govuk-list govuk-list--bullet\">\n <li>{{'email:' | rpxTranslate}} <a href=\"mailto:MCTSforms@justice.gov.uk\"> HMCTSforms&#64;justice.gov.uk</a></li>\n <li *ngIf=\"isEndpointMC\"><a href=\"mailto:customer.service@justice.gov.uk\">customer.service&#64;justice.gov.uk</a></li>\n <li>call the service you require as listed above.</li>\n</ul>\n\n<p class=\"govuk-body\">{{'If you a member of HMCTS staff or the Judiciary speak to your line manager or equivalent in the\n first instance.' | rpxTranslate}}</p>\n\n\n<h2 class=\"govuk-heading-l\" id=\"Enforcement-procedure \">{{'Enforcement procedure' | rpxTranslate}}</h2>\n\n<p class=\"govuk-body\">{{'The Equality and Human Rights Commission (EHRC) is responsible for enforcing the Public Sector\n Bodies (Websites and Mobile Applications) (No. 2) Accessibility Regulations 2018 (the \\\u2018accessibility\n regulations\\\u2019).' | rpxTranslate}} </p>\n\n<p class=\"govuk-body\">{{'If you\\\u2019re not happy with how we respond to your complaint,' | rpxTranslate}} <a\n rel=\"noopener noreferrer\" target=\"_blank\" href=\"https://www.equalityadvisoryservice.com/\">{{'contact\n the Equality Advisory and Support Service (EASS).' | rpxTranslate}}</a></p>\n\n<h1 class=\"govuk-heading-l\" id=\"Contacting-us-by-phone-or-visiting-us-in-person\">{{'Contacting us by phone or visiting\n us\n in person' | rpxTranslate}}</h1>\n\n<p class=\"govuk-body\">{{'We provide a text relay service for people who are D/deaf, hearing impaired or have a speech\n impediment.' | rpxTranslate}}</p>\n\n<p class=\"govuk-body\">{{'Our offices and tribunal venues have audio induction loops, or if you contact us before your\n visit\n we can arrange a British Sign Language (BSL) interpreter. You can also request step-free access or a foreign language\n interpreter.' | rpxTranslate}}</p>\n\n<p class=\"govuk-body\">{{'Find out how to contact us using the contact details above or ' | rpxTranslate}} <a\n target=\"_blank\" href=\"https://courttribunalfinder.service.gov.uk/search/\">{{'find\n the contact details for court and tribunal venues' | rpxTranslate}}</a>. </p>\n\n\n<h2 class=\"govuk-heading-l\" id=\"Technical-information-about-this-website-accessibility\">{{'Technical information about\n this website\\\u2019s accessibility' | rpxTranslate}}</h2>\n\n<p class=\"govuk-body\">{{'HMCTS is committed to making its website accessible, in accordance with the Public Sector\n Bodies (Websites and Mobile Applications) (No.2)\n Accessibility Regulations 2018.' | rpxTranslate}}</p>\n\n\n<h2 class=\"govuk-heading-l\" id=\"Compliance-status\">{{'Compliance Status' | rpxTranslate}}</h2>\n\n<p class=\"govuk-body\">{{'This website is partially compliant with the ' | rpxTranslate}}<a target=\"_blank\"\n href=\"https://www.w3.org/TR/WCAG21/\">\n {{'Web Content Accessibility Guidelines version 2.1 ' | rpxTranslate}}</a>\n {{'due to the non-compliances listed below.' | rpxTranslate}}\n</p>\n<h2 class=\"govuk-heading-l\" id=\"Non-accessible-content\">{{'Non-accessible content' | rpxTranslate}}</h2>\n\n<p class=\"govuk-body\">{{'The content listed below is non-compliant for the following reasons.' | rpxTranslate}}</p>\n\n\n<h2 class=\"govuk-heading-l\" id=\"Non-compliance-with-the-accessibility-regulations\">{{'Non-compliance with the\n accessibility\n regulations' | rpxTranslate}}</h2>\n\n<p class=\"govuk-body\">{{'When zoomed in 200%, content overlaps and does not reflow, so some people will have difficulty\n viewing pages.\n This fails WCAG 2.1 success criterion 1.4.10: Reflow (Level AA).' | rpxTranslate}}</p>\n\n<p class=\"govuk-body\">{{'Some page titles are not unique to the screens, so screenreader users may struggle to know\n which page they are on.\n This fails WCAG 2.1 success criterion 2.4.2: Page Titled (Level A)' | rpxTranslate}}</p>\n\n<p *ngIf=\"isEndpointMC\" class=\"govuk-body\">{{'It is difficult to understand how some pages are related to one another,\n and where they are in\n the context of the whole site.\n This fails WCAG 2.1 success criterion 2.4.5: Multiple Ways (Level AA)' | rpxTranslate}}</p>\n\n<p *ngIf=\"!isEndpointMC\" class=\"govuk-body\">{{'Some users may struggle with keyboard order when tabbing after an error\n is presented. This fails WCAG 2.1 success criterion 2.4.3: Focus Order (Level A).' | rpxTranslate}}</p>\n<p *ngIf=\"!isEndpointMC\" class=\"govuk-body\">{{'Some headings are skipped, so some users may struggle to navigate with\n screen reader via headings. This fails WCAG 2.1 success criterion 2.4.6: Headings and labels (Level AA).' |\n rpxTranslate}}</p>\n<p *ngIf=\"!isEndpointMC\" class=\"govuk-body\">{{'Some error links do not take the user to the specific error field, so\n some people may struggle with interacting with the links. This fails WCAG 2.1 success criterion 3.2.1: On Focus (Level\n A).' | rpxTranslate}}</p>\n<p *ngIf=\"isEndpointMC\" class=\"govuk-body\">{{'The heading \\'Filter\\' together with the non-unique \\'Case List\\' headings\n heavily imply that a user is filtering one \\'Case List\\' table, to which they have access, according to the filters they select. However, this is\n not the case. Some users may struggle with heading filters as it is not clear which ones correspond to the table data.\n This fails WCAG 2.1 success criterion 2.4.6: Headings and labels (Level AA)' | rpxTranslate}}</p>\n\n<p *ngIf=\"isEndpointMC\" class=\"govuk-body\">{{'Some users may struggle on mobile where a screen reader doesn\\'t indicate\n that buttons are collapsible. This fails WCAG 2.1 success criterion 4.1.2: Name, Role, Value (Level A)' | rpxTranslate}}</p>\n\n<h2 *ngIf=\"!isEndpointMC\" class=\"govuk-heading-m\" id=\"Disproportionate-burden\">{{'Disproportionate burden' | rpxTranslate}} </h2>\n\n<p *ngIf=\"!isEndpointMC\" class=\"govuk-body\">{{'We\\'re considering if fixing some issues would be a' | rpxTranslate}} <a\n target=\"_blank\" href=\"https://www.legislation.gov.uk/uksi/2018/952/regulation/7/made/\">{{'disproportionate burden' |\n rpxTranslate}}</a> {{'within the meaning of\n the accessibility regulations. These issues are:' | rpxTranslate}}</p>\n\n<ul *ngIf=\"!isEndpointMC\" class=\"govuk-list govuk-list--bullet\">\n <li>{{'Screen readers not picking up how pages are related to one another, and where they are in the context of the\n whole site' | rpxTranslate}}</li>\n <li>{{'Screen readers not picking up on non-unique table headings on the same page' | rpxTranslate}}</li>\n <li>{{'Some labels, fields, error messages and other content not being clearly identified by screen readers and voice\n activation software on mobile devices.' | rpxTranslate}}</li>\n</ul>\n\n<p *ngIf=\"!isEndpointMC\" class=\"govuk-body\">{{'When this assessment is complete, we will update this accessibility\n statement, to cover whether or not disproportionate burden is being claimed.' | rpxTranslate}}</p>\n\n<h2 class=\"govuk-heading-m\" id=\"Content-that\u2019s-not-within-the-scope-of-the-accessibility-regulations\">{{'Content that\\\u2019s\n not\n within the scope of the accessibility regulations' | rpxTranslate}} </h2>\n\n<p class=\"govuk-body\">{{'PDFs, documents and attachments to email notifications published before 23 September 2018 may\n not\n meet accessibility standards. For example, they may not be structured so they\\\u2019re accessible to a screen reader.' |\n rpxTranslate}}</p>\n\n<p class=\"govuk-body\">{{'Any new PDFs or Word documents we publish will meet accessibility standards.' | rpxTranslate}}\n</p>\n\n<h2 class=\"govuk-heading-l\" id=\"what-to-improve-accessibility\">{{'What we\\\u2019re doing to improve accessibility' |\n rpxTranslate}}</h2>\n\n<p class=\"govuk-body\">{{'We\\\u2019re committed to ensuring our services are accessible to all our users and that they comply\n with\n level AA of the Web Content Accessibility Guidelines \u2013 WCAG 2.1.' | rpxTranslate}}</p>\n\n<p class=\"govuk-body\">{{'We\\\u2019re actively working to improve the identified issues and aiming to make them AA-compliant\n by December 2024.' | rpxTranslate}}</p>\n<p class=\"govuk-body\">{{'We\\\u2019re currently preparing for an external audit carried out by the ' | rpxTranslate}}\n <a target=\"_blank\" href=\"https://digitalaccessibilitycentre.org/\"> {{'Digital Accessibility Centre (DAC).' |\n rpxTranslate}} </a>\n</p>\n\n<h2 class=\"govuk-heading-l\" id=\"preparation-of-this-accessibility-statement\">{{'Preparation of this accessibility\n statement' | rpxTranslate}}</h2>\n\n<p class=\"govuk-body\">{{'This statement was prepared on 16 September 2019. It was last reviewed in Spring/Summer 2023.'\n | rpxTranslate}}</p>\n\n<p class=\"govuk-body\">{{'This website was last tested on 19 May 2020. The service will be tested by' | rpxTranslate}} <a\n target=\"_blank\" href=\"https://digitalaccessibilitycentre.org/\">{{'Digital\n Accessibility Centre (DAC)' | rpxTranslate}}</a> {{'on 20 November 2023.' | rpxTranslate}}</p>", styles: [".govuk-list--alpha{padding-left:20px;list-style-type:lower-alpha}\n"] }]
723
+ }], () => [], null); })();
724
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(AccessibilityComponent, { className: "AccessibilityComponent", filePath: "lib/components/accessibility/accessibility.component.ts", lineNumber: 9 }); })();
725
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWNjZXNzaWJpbGl0eS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9leHVpLWNvbW1vbi1saWIvc3JjL2xpYi9jb21wb25lbnRzL2FjY2Vzc2liaWxpdHkvYWNjZXNzaWJpbGl0eS5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9leHVpLWNvbW1vbi1saWIvc3JjL2xpYi9jb21wb25lbnRzL2FjY2Vzc2liaWxpdHkvYWNjZXNzaWJpbGl0eS5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFVLE1BQU0sZUFBZSxDQUFDOzs7OztJQ2tCaEQsMEJBQXlCO0lBQUEsWUFBZ0Y7O0lBQUEsaUJBQUs7O0lBQXJGLGNBQWdGO0lBQWhGLHlHQUFnRjs7O0lBcUJ6RywwQkFBMEI7SUFBQSxZQUFxRTs7SUFBQSxpQkFBSzs7SUFBMUUsY0FBcUU7SUFBckUsOEZBQXFFOzs7SUFDL0YsMEJBQTBCO0lBQUEsWUFBcUQ7O0lBQUEsaUJBQUs7O0lBQTFELGNBQXFEO0lBQXJELDhFQUFxRDs7O0lBQy9FLDBCQUEwQjtJQUFBLFlBQTJDOztJQUFBLGlCQUFLOztJQUFoRCxjQUEyQztJQUEzQyxvRUFBMkM7OztJQUNyRSwwQkFBeUI7SUFBQSxZQUFrRTs7SUFBQSxpQkFBSzs7SUFBdkUsY0FBa0U7SUFBbEUsMkZBQWtFOzs7SUFDM0YsMEJBQXlCO0lBQUEsWUFBcUU7O0lBQUEsaUJBQUs7O0lBQTFFLGNBQXFFO0lBQXJFLDZGQUFxRTs7O0lBRTlGLDBCQUF5QjtJQUFBLFlBQWdGOztJQUFBLGlCQUFLOztJQUFyRixjQUFnRjtJQUFoRix5R0FBZ0Y7OztJQXdFaEYsQUFBekIsMEJBQXlCLFlBQWlEO0lBQUEsK0NBQW1DO0lBQUksQUFBSixpQkFBSSxFQUFLOzs7SUFtRXhILDRCQUEyQztJQUFBLFlBRzhDOztJQUFBLGlC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Q3hFLGVBQ0Y7WUFERSxzR0FDRjtZQUN3RCxlQUEyQztZQUEzQyx3RUFBMkM7WUFFN0UsZUFBeUY7WUFBekYsc0hBQXlGO1lBRzVCLGVBRXBEO1lBRm9ELG1HQUVwRDtZQUVULGVBRThEO1lBRjlELGdPQUU4RDtZQUU5RCxlQUVnRTtZQUZoRSx1T0FFZ0U7WUFFbEYsZUFBa0I7WUFBbEIsdUNBQWtCO1lBS2xCLGNBQW1CO1lBQW5CLHdDQUFtQjtZQUVuQixjQUFtQjtZQUFuQix3Q0FBbUI7WUFHbkIsY0FBbUI7WUFBbkIsd0NBQW1CO1lBR25CLGNBQWtCO1lBQWxCLHVDQUFrQjtZQUtsQixjQUFrQjtZQUFsQix1Q0FBa0I7WUFHakIsY0FBbUI7WUFBbkIsd0NBQW1CO1lBRXBCLGNBQW1CO1lBQW5CLHdDQUFtQjtZQUtsQixjQUFtQjtZQUFuQix3Q0FBbUI7WUFRcEIsY0FBbUI7WUFBbkIsd0NBQW1CO1lBRytFLGVBRWhDO1lBRmdDLHFJQUVoQztZQUVoRCxlQUdOO1lBSE0sd1FBR047WUFFTSxlQUN0QjtZQURzQix5SUFDdEI7WUFFK0QsZUFDL0M7WUFEK0MsZ0dBQy9DO1lBRU0sZUFFOEQ7WUFGOUQsK05BRThEO1lBRTlELGVBQ2U7WUFEZixxS0FDZTtZQUNmLGVBQ3BCO1lBRG9CLG9JQUNwQjtZQUFtRSxlQUNsRDtZQURrRCxnR0FDbEQ7WUFHMEQsZUFDaEQ7WUFEZ0QsNkZBQ2hEO1lBRVAsZUFDSjtZQURJLCtJQUNKO1lBRUksZUFBZ0c7WUFBaEcsc0lBQWdHO1lBQ25ELGVBQ25CO1lBRG1CLG9GQUNuQjtZQUFLLGVBQXlDO1lBQXpDLGdGQUF5Qzs7O2lGRHpQakYsc0JBQXNCO2NBTmxDLFNBQVM7MkJBQ0Usc0JBQXNCOztrRkFLckIsc0JBQXNCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBPbkluaXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAneHVpbGliLWFjY2Vzc2liaWxpdHknLFxuICB0ZW1wbGF0ZVVybDogJy4vYWNjZXNzaWJpbGl0eS5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL2FjY2Vzc2liaWxpdHkuY29tcG9uZW50LnNjc3MnXVxufSlcblxuZXhwb3J0IGNsYXNzIEFjY2Vzc2liaWxpdHlDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xuICBwdWJsaWMgaXNFbmRwb2ludE1DOiBib29sZWFuO1xuICBjb25zdHJ1Y3RvcigpIHtcbiAgfVxuXG4gIHB1YmxpYyBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgICBjb25zdCB1cmxSZWYgPSB3aW5kb3cubG9jYXRpb24uaHJlZjtcbiAgICAvLyBwb2ludGluZyB0byBNQyAmIHByZXZpZXcuIE1heSBuZWVkIHRvIHJlZmFjdG9yIHRoaXMgaWZcbiAgICAvLyBtb3JlIGFwcGxpY2F0aW9ucyBhZGRlZCB0aGFuIE1PICYgTUNcbiAgICBpZiAodXJsUmVmLmluY2x1ZGVzKCdtYW5hZ2UtY2FzZScpXG4gICAgICB8fCB1cmxSZWYuaW5jbHVkZXMoJ3h1aS13ZWJhcHAnKVxuICAgICAgJiYgIXVybFJlZi5pbmNsdWRlcygneHVpLW1vLXdlYmFwcCcpKSB7XG4gICAgICB0aGlzLmlzRW5kcG9pbnRNQyA9IHRydWU7XG4gICAgfSBlbHNlIHtcbiAgICAgIHRoaXMuaXNFbmRwb2ludE1DID0gZmFsc2U7XG4gICAgfVxuICB9XG59XG4iLCI8aDEgY2xhc3M9XCJnb3Z1ay1oZWFkaW5nLXhsXCIgaWQ9XCJBY2Nlc3NpYmlsaXR5LXN0YXRlbWVudC1mb3ItRXhwZXJ0LVVJXCI+e3snQWNjZXNzaWJpbGl0eSBzdGF0ZW1lbnQgZm9yIE15SE1DVFMnIHxcbiAgcnB4VHJhbnNsYXRlIH19XG4gIHt7aXNFbmRwb2ludE1DID8gJ01hbmFnZSBDYXNlcycgOiAnTWFuYWdlIE9yZ2FuaXNhdGlvbicgfCBycHhUcmFuc2xhdGV9fTwvaDE+XG5cbjxwIGNsYXNzPVwiZ292dWstYm9keVwiPnt7J015SE1DVFMnIHxycHhUcmFuc2xhdGV9fSB7e2lzRW5kcG9pbnRNQyA/ICdNYW5hZ2UgQ2FzZXMnIDogJ01hbmFnZSBPcmdhbmlzYXRpb24nIHxcbiAgcnB4VHJhbnNsYXRlfX0ge3snaXMgdXNlZCBhY3Jvc3Mgc2V2ZXJhbCBzZXJ2aWNlcy4gUGxlYXNlIHVzZSBsaW5rcyB0byBmaW5kIGNvbnRhY3QgaW5mb3JtYXRpb24gZm9yIGVhY2ggc2VydmljZS4nIHxcbiAgcnB4VHJhbnNsYXRlfX08L3A+XG5cbjx1bCBjbGFzcz1cImdvdnVrLWxpc3RcIj5cbiAgPGxpPjxhIGhyZWY9XCJhY2Nlc3NpYmlsaXR5I0ltbWlncmF0aW9uLWFuZC1hc3lsdW0tY2hhbWJlclwiPnt7J0ltbWlncmF0aW9uIGFuZCBBc3lsdW0nIHwgcnB4VHJhbnNsYXRlfX08L2E+PC9saT5cbiAgPGxpPjxhIGhyZWY9XCJhY2Nlc3NpYmlsaXR5I0ZhbWlseS1wdWJsaWMtbGF3XCI+e3snRmFtaWx5IFB1YmxpYyBMYXcnIHwgcnB4VHJhbnNsYXRlfX0gPC9hPjwvbGk+XG48L3VsPlxuXG48cCBjbGFzcz1cImdvdnVrLWJvZHlcIj57eydUaGlzIHdlYnNpdGUgaXMgcnVuIGJ5IEhNIENvdXJ0cyAmIFRyaWJ1bmFscyBTZXJ2aWNlLiBXZSB3YW50IGFzIG1hbnkgcGVvcGxlIGFzIHBvc3NpYmxlIHRvIGJlXG4gIGFibGUgdG8gdXNlIHRoaXMgd2Vic2l0ZS4gRm9yIGV4YW1wbGUsIHlvdSBzaG91bGQgYmUgYWJsZSB0bzonIHwgcnB4VHJhbnNsYXRlfX08L3A+XG5cbjx1bCBjbGFzcz1cImdvdnVrLWxpc3QgZ292dWstbGlzdC0tYnVsbGV0XCI+XG4gIDxsaT57eydjaGFuZ2UgY29sb3VycywgY29udHJhc3QgbGV2ZWxzIGFuZCBmb250cycgfCBycHhUcmFuc2xhdGV9fTwvbGk+XG4gIDxsaSAqbmdJZj1cImlzRW5kcG9pbnRNQ1wiPnt7J3pvb20gaW4gdXAgdG8gMzAwJSB3aXRob3V0IHRoZSB0ZXh0IHNwaWxsaW5nIG9mZiB0aGUgc2NyZWVuJyB8IHJweFRyYW5zbGF0ZX19PC9saT5cbiAgPGxpPnt7J25hdmlnYXRlIG1vc3Qgb2YgdGhlIHdlYnNpdGUgdXNpbmcganVzdCBhIGtleWJvYXJkJyB8IHJweFRyYW5zbGF0ZX19PC9saT5cbiAgPGxpPnt7J25hdmlnYXRlIG1vc3Qgb2YgdGhlIHdlYnNpdGUgdXNpbmcgc3BlZWNoIHJlY29nbml0aW9uIHNvZnR3YXJlJyB8IHJweFRyYW5zbGF0ZX19PC9saT5cbiAgPGxpPnt7J2xpc3RlbiB0byBtb3N0IG9mIHRoZSB3ZWJzaXRlIHVzaW5nIGEgc2NyZWVuIHJlYWRlciAoaW5jbHVkaW5nIHRoZSBtb3N0IHJlY2VudCB2ZXJzaW9ucyBvZiBKQVdTLCBOVkRBIGFuZFxuICAgIFZvaWNlT3ZlciknIHwgcnB4VHJhbnNsYXRlfX1cbiAgPC9saT5cbjwvdWw+XG5cbjxwIGNsYXNzPVwiZ292dWstYm9keVwiPnt7J1dlXFzigJl2ZSBhbHNvIG1hZGUgdGhlIHdlYnNpdGUgdGV4dCBhcyBzaW1wbGUgYXMgcG9zc2libGUgdG8gdW5kZXJzdGFuZC4nIHwgcnB4VHJhbnNsYXRlfX08L3A+XG5cbjxwIGNsYXNzPVwiZ292dWstYm9keVwiPjxhIHJlbD1cIm5vb3BlbmVyIG5vcmVmZXJyZXJcIiB0YXJnZXQ9XCJfYmxhbmtcIiBocmVmPVwiaHR0cHM6Ly9tY213LmFiaWxpdHluZXQub3JnLnVrL1wiPnt7J0FiaWxpdHlOZXQnXG4gICAgfCBycHhUcmFuc2xhdGV9fTwvYT5cbiAge3snaGFzIGFkdmljZSBvbiBtYWtpbmcgeW91ciBkZXZpY2UgZWFzaWVyIHRvIHVzZSBpZiB5b3UgaGF2ZSBhIGRpc2FiaWxpdHkuJyB8IHJweFRyYW5zbGF0ZX19PC9wPlxuXG48aDIgY2xhc3M9XCJnb3Z1ay1oZWFkaW5nLWxcIiBpZD1cIkhvdy1hY2Nlc3NpYmxlLXRoaXMtd2Vic2l0ZS1pc1wiPnt7J0hvdyBhY2Nlc3NpYmxlIHRoaXMgd2Vic2l0ZSBpcycgfCBycHhUcmFuc2xhdGV9fTwvaDI+XG5cbjxwIGNsYXNzPVwiZ292dWstYm9keVwiPnt7J1dlIGtub3cgc29tZSBwYXJ0cyBvZiB0aGUgd2Vic2l0ZSBhcmUgbm90IGZ1bGx5IGFjY2Vzc2libGU6JyB8IHJweFRyYW5zbGF0ZX19PC9wPlxuXG48dWwgY2xhc3M9XCJnb3Z1ay1saXN0IGdvdnVrLWxpc3QtLWJ1bGxldFwiPlxuICA8bGk+e3snc29tZSBwYWdlcyBjYW5cXCd0IGJlIHpvb21lZCBpbiB0byA0MDAlIHdpdGhvdXQgY29udGVudCBvdmVybGFwcGluZycgfCBycHhUcmFuc2xhdGV9fTwvbGk+XG4gIDxsaT57eydzb21lIHBhZ2UgdGl0bGVzIGFyZW5cXCd0IHBhZ2Ugc3BlY2lmaWMnIHwgcnB4VHJhbnNsYXRlfX08L2xpPlxuICA8bGkgKm5nSWY9XCIhaXNFbmRwb2ludE1DXCI+e3snc29tZSBwYWdlcyBkbyBub3QgZm9sbG93IGEgbG9naWNhbCB0YWJiaW5nIG9yZGVyJyB8IHJweFRyYW5zbGF0ZX19PC9saT5cbiAgPGxpICpuZ0lmPVwiIWlzRW5kcG9pbnRNQ1wiPnt7J3NvbWUgaGVhZGluZ3MgbGV2ZWxzIGFyZSBza2lwcGVkJyB8IHJweFRyYW5zbGF0ZX19PC9saT5cbiAgPGxpICpuZ0lmPVwiIWlzRW5kcG9pbnRNQ1wiPnt7J3NvbWUgbGlua3MgZG8gbm90IHdvcmsnIHwgcnB4VHJhbnNsYXRlfX08L2xpPlxuICA8bGkgKm5nSWY9XCJpc0VuZHBvaW50TUNcIj57eydpdCBtYXkgYmUgZGlmZmljdWx0IHRvIG5hdmlnYXRlIGJldHdlZW4gcGFnZXMnIHwgcnB4VHJhbnNsYXRlfX08L2xpPlxuICA8bGkgKm5nSWY9XCJpc0VuZHBvaW50TUNcIj57eydzb21lIGhlYWRpbmdzIGFuZCBsYWJlbHMgYXJlblxcJ3Qgc3BlY2lmaWMgZW5vdWdoJyB8IHJweFRyYW5zbGF0ZX19PC9saT5cbiAgPGxpPnt7J3NvbWUgUERGcyBtYXkgbm90IGJlIGZ1bGx5IGFjY2Vzc2libGUgdG8gYSBzY3JlZW4gcmVhZGVyJyB8IHJweFRyYW5zbGF0ZX19PC9saT5cbiAgPGxpICpuZ0lmPVwiaXNFbmRwb2ludE1DXCI+e3snc29tZSBidXR0b25zIG1heSBub3QgY29tbXVuaWNhdGUgY29sbGFwc2VkIHN0YXR1cyBvbiBtb2JpbGUnIHwgcnB4VHJhbnNsYXRlfX08L2xpPlxuPC91bD5cblxuPGgyIGNsYXNzPVwiZ292dWstaGVhZGluZy1sXCIgaWQ9XCJXaGF0LXRvLWRvLWlmLXlvdS1jYW5ub3QtYWNjZXNzLXBhcnRzLW9mLXRoaXMtd2Vic2l0ZVwiPnt7J0ZlZWRiYWNrIGFuZCBjb250YWN0XG4gIGluZm9ybWF0aW9uJyB8IHJweFRyYW5zbGF0ZX19PC9oMj5cblxuPHAgY2xhc3M9XCJnb3Z1ay1ib2R5XCI+e3snSWYgeW91XFwncmUgYSBsZWdhbCBwcm9mZXNzaW9uYWwgYW5kIG5lZWQgaW5mb3JtYXRpb24gb24gdGhpcyB3ZWJzaXRlIGluIGEgZGlmZmVyZW50IGZvcm1hdCBsaWtlXG4gIGFjY2Vzc2libGUgUERGLCBsYXJnZSBwcmludCwgZWFzeSByZWFkLCBhdWRpbyByZWNvcmRpbmcgb3IgYnJhaWxsZSwgeW91IGNhbjonIHwgcnB4VHJhbnNsYXRlfX08L3A+XG5cbjx1bCBjbGFzcz1cImdvdnVrLWxpc3QgZ292dWstbGlzdC0tYnVsbGV0XCI+XG4gIDxsaT57eydlbWFpbDonIHwgcnB4VHJhbnNsYXRlfX0gPGEgaHJlZj1cIm1haWx0bzpITUNUU2Zvcm1zQGp1c3RpY2UuZ292LnVrXCI+IEhNQ1RTZm9ybXMmIzY0O2p1c3RpY2UuZ292LnVrPC9hPjwvbGk+XG4gIDxsaT57eydjYWxsIHRoZSBzZXJ2aWNlIHlvdSByZXF1aXJlLCBhcyBsaXN0ZWQgYmVsb3cuJyB8IHJweFRyYW5zbGF0ZX19PC9saT5cbjwvdWw+XG5cblxuPGgyIGNsYXNzPVwiZ292dWstaGVhZGluZy1sXCIgaWQ9XCJBZG9wdGlvblwiPnt7J0Fkb3B0aW9uJyB8IHJweFRyYW5zbGF0ZX19PC9oMj5cbjx1bCBjbGFzcz1cImdvdnVrLWxpc3QgZ292dWstbGlzdC0tYnVsbGV0XCI+XG4gIDxsaT57eydjYWxsOiAwMTYzNCA4ODc5MDAnIHwgcnB4VHJhbnNsYXRlfX08L2xpPlxuPC91bD5cblxuPGgyIGNsYXNzPVwiZ292dWstaGVhZGluZy1sXCIgaWQ9XCJEaXZvcmNlLWFuZC1maW5hbmNpYWwtcmVtZWR5XCI+e3snRGl2b3JjZSBhbmQgRmluYW5jaWFsIFJlbWVkeScgfCBycHhUcmFuc2xhdGV9fTwvaDI+XG48dWwgY2xhc3M9XCJnb3Z1ay1saXN0IGdvdnVrLWxpc3QtLWJ1bGxldFwiPlxuICA8bGk+e3snY2FsbDogMDMwMCAxMjMgMTM3MicgfCBycHhUcmFuc2xhdGV9fTwvbGk+XG48L3VsPlxuXG48aDIgY2xhc3M9XCJnb3Z1ay1oZWFkaW5nLWxcIiBpZD1cIkNpdmlsLWRhbWFnZXMtc2VydmljZVwiPnt7J0NpdmlsIERhbWFnZXMgU2VydmljZScgfCBycHhUcmFuc2xhdGV9fTwvaDI+XG48dWwgY2xhc3M9XCJnb3Z1ay1saXN0IGdvdnVrLWxpc3QtLWJ1bGxldFwiPlxuICA8bGk+e3snY2FsbDogMDMwMCAxMjMgMTM3MicgfCBycHhUcmFuc2xhdGV9fTwvbGk+XG48L3VsPlxuXG48aDIgY2xhc3M9XCJnb3Z1ay1oZWFkaW5nLWxcIiBpZD1cIkZhbWlseS1wdWJsaWMtbGF3XCI+e3snRmFtaWx5IFB1YmxpYyBMYXcnIHwgcnB4VHJhbnNsYXRlfX08L2gyPlxuPHVsIGNsYXNzPVwiZ292dWstbGlzdCBnb3Z1ay1saXN0LS1idWxsZXRcIj5cbiAgPGxpPnt7J2NhbGw6IDAzMzAgODA4IDQ0MjQnIHwgcnB4VHJhbnNsYXRlfX08L2xpPlxuPC91bD5cblxuPGgyIGNsYXNzPVwiZ292dWstaGVhZGluZy1sXCIgaWQ9XCJJbW1pZ3JhdGlvbi1hbmQtYXN5bHVtLWNoYW1iZXJcIj57eydJbW1pZ3JhdGlvbiBhbmQgQXN5bHVtIENoYW1iZXInIHwgcnB4VHJhbnNsYXRlfX08L2gyPlxuPHVsIGNsYXNzPVwiZ292dWstbGlzdCBnb3Z1ay1saXN0LS1idWxsZXRcIj5cbiAgPGxpPnt7J2NhbGw6IDAzMDAgMTIzIDE3MTEnIHwgcnB4VHJhbnNsYXRlfX08L2xpPlxuPC91bD5cblxuPGgyIGNsYXNzPVwiZ292dWstaGVhZGluZy1sXCIgaWQ9XCJPbmxpbmUtY2l2aWwtbW9uZXktY2xhaW1zXCI+e3snT25saW5lIENpdmlsIE1vbmV5IENsYWltcycgfCBycHhUcmFuc2xhdGV9fTwvaDI+XG48dWwgY2xhc3M9XCJnb3Z1ay1saXN0IGdvdnVrLWxpc3QtLWJ1bGxldFwiPlxuICA8bGk+e3snY2FsbDogMDMwMCAxMjMgNzA1MCcgfCBycHhUcmFuc2xhdGV9fTwvbGk+XG48L3VsPlxuXG48aDIgY2xhc3M9XCJnb3Z1ay1oZWFkaW5nLWxcIiBpZD1cIlByaXZhdGUtbGF3XCI+e3snUHJpdmF0ZSBMYXcnIHwgcnB4VHJhbnNsYXRlfX08L2gyPlxuPHVsIGNsYXNzPVwiZ292dWstbGlzdCBnb3Z1ay1saXN0LS1idWxsZXRcIj5cbiAgPGxpPnt7J2NhbGw6IDAzMDAgMzIzIDAxODUnIHwgcnB4VHJhbnNsYXRlfX08L2xpPlxuPC91bD5cblxuPGgyIGNsYXNzPVwiZ292dWstaGVhZGluZy1sXCIgaWQ9XCJQcm9iYXRlXCI+e3snUHJvYmF0ZScgfCBycHhUcmFuc2xhdGV9fTwvaDI+XG48dWwgY2xhc3M9XCJnb3Z1ay1saXN0IGdvdnVrLWxpc3QtLWJ1bGxldFwiPlxuICA8bGk+e3snY2FsbDogMDMwMCAzMDMgMDY0OCcgfCBycHhUcmFuc2xhdGV9fTwvbGk+XG48L3VsPlxuXG48aDIgY2xhc3M9XCJnb3Z1ay1oZWFkaW5nLWxcIiBpZD1cIlNvY2lhbC1zZWN1cml0eS1hbmQtY2hpbGQtc3VwcG9ydFwiPnt7J1NvY2lhbCBTZWN1cml0eSBhbmQgQ2hpbGQgU3VwcG9ydCcgfFxuICBycHhUcmFuc2xhdGV9fTwvaDI+XG48dWwgY2xhc3M9XCJnb3Z1ay1saXN0IGdvdnVrLWxpc3QtLWJ1bGxldFwiPlxuICA8bGk+e3snY2FsbDogMDMwMCAxMjMgMTE0MicgfCBycHhUcmFuc2xhdGV9fTwvbGk+XG48L3VsPlxuXG48cCBjbGFzcz1cImdvdnVrLWJvZHlcIj57eydXZVxcJ2xsIGNvbnNpZGVyIHlvdXIgcmVxdWVzdCBhbmQgZ2V0IGJhY2sgdG8geW91IGluIDEwIHdvcmtpbmcgZGF5cy4nIHwgcnB4VHJhbnNsYXRlfX08L3A+XG48cCBjbGFzcz1cImdvdnVrLWJvZHlcIj57eydJZiB5b3UgYSBtZW1iZXIgb2YgSE1DVFMgc3RhZmYgb3IgdGhlIEp1ZGljaWFyeSBzcGVhayB0byB5b3VyIGxpbmUgbWFuYWdlciBvciBlcXVpdmFsZW50IGluIHRoZVxuICBmaXJzdCBpbnN0YW5jZS4nIHwgcnB4VHJhbnNsYXRlfX08L3A+XG5cbjxoMiBjbGFzcz1cImdvdnVrLWhlYWRpbmctbFwiIGlkPVwiUmVwb3J0aW5nLWFjY2Vzc2liaWxpdHktcHJvYmxlbXMtd2l0aC10aGlzLXdlYnNpdGVcIj57eydSZXBvcnRpbmcgYWNjZXNzaWJpbGl0eSBwcm9ibGVtc1xuICB3aXRoIHRoaXMgd2Vic2l0ZScgfCBycHhUcmFuc2xhdGV9fTwvaDI+XG5cbjxwIGNsYXNzPVwiZ292dWstYm9keVwiPnt7J1dlXFwncmUgYWx3YXlzIGxvb2tpbmcgdG8gaW1wcm92ZSB0aGUgYWNjZXNzaWJpbGl0eSBvZiB0aGlzIHdlYnNpdGUuIElmIHlvdVxcJ3JlIGEgbGVnYWwgcHJvZmVzc2lvbmFsIGFuZCBmaW5kIGFueSBwcm9ibGVtcyBub3QgbGlzdGVkIG9uIHRoaXMgcGFnZSBvciB0aGluayB3ZVxcJ3JlIG5vdCBtZWV0aW5nIGFjY2Vzc2liaWxpdHkgcmVxdWlyZW1lbnRzLCBjb250YWN0OicgfCBycHhUcmFuc2xhdGV9fTwvcD5cblxuPHVsIGNsYXNzPVwiZ292dWstbGlzdCBnb3Z1ay1saXN0LS1idWxsZXRcIj5cbiAgPGxpPnt7J2VtYWlsOicgfCBycHhUcmFuc2xhdGV9fSA8YSBocmVmPVwibWFpbHRvOk1DVFNmb3Jtc0BqdXN0aWNlLmdvdi51a1wiPiBITUNUU2Zvcm1zJiM2NDtqdXN0aWNlLmdvdi51azwvYT48L2xpPlxuICA8bGkgKm5nSWY9XCJpc0VuZHBvaW50TUNcIj48YSBocmVmPVwibWFpbHRvOmN1c3RvbWVyLnNlcnZpY2VAanVzdGljZS5nb3YudWtcIj5jdXN0b21lci5zZXJ2aWNlJiM2NDtqdXN0aWNlLmdvdi51azwvYT48L2xpPlxuICA8bGk+Y2FsbCB0aGUgc2VydmljZSB5b3UgcmVxdWlyZSBhcyBsaXN0ZWQgYWJvdmUuPC9saT5cbjwvdWw+XG5cbjxwIGNsYXNzPVwiZ292dWstYm9keVwiPnt7J0lmIHlvdSBhIG1lbWJlciBvZiBITUNUUyBzdGFmZiBvciB0aGUgSnVkaWNpYXJ5IHNwZWFrIHRvIHlvdXIgbGluZSBtYW5hZ2VyIG9yIGVxdWl2YWxlbnQgaW4gdGhlXG4gIGZpcnN0IGluc3RhbmNlLicgfCBycHhUcmFuc2xhdGV9fTwvcD5cblxuXG48aDIgY2xhc3M9XCJnb3Z1ay1oZWFkaW5nLWxcIiBpZD1cIkVuZm9yY2VtZW50LXByb2NlZHVyZSBcIj57eydFbmZvcmNlbWVudCBwcm9jZWR1cmUnIHwgcnB4VHJhbnNsYXRlfX08L2gyPlxuXG48cCBjbGFzcz1cImdvdnVrLWJvZHlcIj57eydUaGUgRXF1YWxpdHkgYW5kIEh1bWFuIFJpZ2h0cyBDb21taXNzaW9uIChFSFJDKSBpcyByZXNwb25zaWJsZSBmb3IgZW5mb3JjaW5nIHRoZSBQdWJsaWMgU2VjdG9yXG4gIEJvZGllcyAoV2Vic2l0ZXMgYW5kIE1vYmlsZSBBcHBsaWNhdGlvbnMpIChOby4gMikgQWNjZXNzaWJpbGl0eSBSZWd1bGF0aW9ucyAyMDE4ICh0aGUgXFzigJhhY2Nlc3NpYmlsaXR5XG4gIHJlZ3VsYXRpb25zXFzigJkpLicgfCBycHhUcmFuc2xhdGV9fSA8L3A+XG5cbjxwIGNsYXNzPVwiZ292dWstYm9keVwiPnt7J0lmIHlvdVxc4oCZcmUgbm90IGhhcHB5IHdpdGggaG93IHdlIHJlc3BvbmQgdG8geW91ciBjb21wbGFpbnQsJyB8IHJweFRyYW5zbGF0ZX19IDxhXG4gICAgcmVsPVwibm9vcGVuZXIgbm9yZWZlcnJlclwiIHRhcmdldD1cIl9ibGFua1wiIGhyZWY9XCJodHRwczovL3d3dy5lcXVhbGl0eWFkdmlzb3J5c2VydmljZS5jb20vXCI+e3snY29udGFjdFxuICAgIHRoZSBFcXVhbGl0eSBBZHZpc29yeSBhbmQgU3VwcG9ydCBTZXJ2aWNlIChFQVNTKS4nIHwgcnB4VHJhbnNsYXRlfX08L2E+PC9wPlxuXG48aDEgY2xhc3M9XCJnb3Z1ay1oZWFkaW5nLWxcIiBpZD1cIkNvbnRhY3RpbmctdXMtYnktcGhvbmUtb3ItdmlzaXRpbmctdXMtaW4tcGVyc29uXCI+e3snQ29udGFjdGluZyB1cyBieSBwaG9uZSBvciB2aXNpdGluZ1xuICB1c1xuICBpbiBwZXJzb24nIHwgcnB4VHJhbnNsYXRlfX08L2gxPlxuXG48cCBjbGFzcz1cImdvdnVrLWJvZHlcIj57eydXZSBwcm92aWRlIGEgdGV4dCByZWxheSBzZXJ2aWNlIGZvciBwZW9wbGUgd2hvIGFyZSBEL2RlYWYsIGhlYXJpbmcgaW1wYWlyZWQgb3IgaGF2ZSBhIHNwZWVjaFxuICBpbXBlZGltZW50LicgfCBycHhUcmFuc2xhdGV9fTwvcD5cblxuPHAgY2xhc3M9XCJnb3Z1ay1ib2R5XCI+e3snT3VyIG9mZmljZXMgYW5kIHRyaWJ1bmFsIHZlbnVlcyBoYXZlIGF1ZGlvIGluZHVjdGlvbiBsb29wcywgb3IgaWYgeW91IGNvbnRhY3QgdXMgYmVmb3JlIHlvdXJcbiAgdmlzaXRcbiAgd2UgY2FuIGFycmFuZ2UgYSBCcml0aXNoIFNpZ24gTGFuZ3VhZ2UgKEJTTCkgaW50ZXJwcmV0ZXIuIFlvdSBjYW4gYWxzbyByZXF1ZXN0IHN0ZXAtZnJlZSBhY2Nlc3Mgb3IgYSBmb3JlaWduIGxhbmd1YWdlXG4gIGludGVycHJldGVyLicgfCBycHhUcmFuc2xhdGV9fTwvcD5cblxuPHAgY2xhc3M9XCJnb3Z1ay1ib2R5XCI+e3snRmluZCBvdXQgaG93IHRvIGNvbnRhY3QgdXMgdXNpbmcgdGhlIGNvbnRhY3QgZGV0YWlscyBhYm92ZSBvciAnIHwgcnB4VHJhbnNsYXRlfX0gPGFcbiAgICB0YXJnZXQ9XCJfYmxhbmtcIiBocmVmPVwiaHR0cHM6Ly9jb3VydHRyaWJ1bmFsZmluZGVyLnNlcnZpY2UuZ292LnVrL3NlYXJjaC9cIj57eydmaW5kXG4gICAgdGhlIGNvbnRhY3QgZGV0YWlscyBmb3IgY291cnQgYW5kIHRyaWJ1bmFsIHZlbnVlcycgfCBycHhUcmFuc2xhdGV9fTwvYT4uIDwvcD5cblxuXG48aDIgY2xhc3M9XCJnb3Z1ay1oZWFkaW5nLWxcIiBpZD1cIlRlY2huaWNhbC1pbmZvcm1hdGlvbi1hYm91dC10aGlzLXdlYnNpdGUtYWNjZXNzaWJpbGl0eVwiPnt7J1RlY2huaWNhbCBpbmZvcm1hdGlvbiBhYm91dFxuICB0aGlzIHdlYnNpdGVcXOKAmXMgYWNjZXNzaWJpbGl0eScgfCBycHhUcmFuc2xhdGV9fTwvaDI+XG5cbjxwIGNsYXNzPVwiZ292dWstYm9keVwiPnt7J0hNQ1RTIGlzIGNvbW1pdHRlZCB0byBtYWtpbmcgaXRzIHdlYnNpdGUgYWNjZXNzaWJsZSwgaW4gYWNjb3JkYW5jZSB3aXRoIHRoZSBQdWJsaWMgU2VjdG9yXG4gIEJvZGllcyAoV2Vic2l0ZXMgYW5kIE1vYmlsZSBBcHBsaWNhdGlvbnMpIChOby4yKVxuICBBY2Nlc3NpYmlsaXR5IFJlZ3VsYXRpb25zIDIwMTguJyB8IHJweFRyYW5zbGF0ZX19PC9wPlxuXG5cbjxoMiBjbGFzcz1cImdvdnVrLWhlYWRpbmctbFwiIGlkPVwiQ29tcGxpYW5jZS1zdGF0dXNcIj57eydDb21wbGlhbmNlIFN0YXR1cycgfCBycHhUcmFuc2xhdGV9fTwvaDI+XG5cbjxwIGNsYXNzPVwiZ292dWstYm9keVwiPnt7J1RoaXMgd2Vic2l0ZSBpcyBwYXJ0aWFsbHkgY29tcGxpYW50IHdpdGggdGhlICcgfCBycHhUcmFuc2xhdGV9fTxhIHRhcmdldD1cIl9ibGFua1wiXG4gICAgaHJlZj1cImh0dHBzOi8vd3d3LnczLm9yZy9UUi9XQ0FHMjEvXCI+XG4gICAge3snV2ViIENvbnRlbnQgQWNjZXNzaWJpbGl0eSBHdWlkZWxpbmVzIHZlcnNpb24gMi4xICcgfCBycHhUcmFuc2xhdGV9fTwvYT5cbiAge3snZHVlIHRvIHRoZSBub24tY29tcGxpYW5jZXMgbGlzdGVkIGJlbG93LicgfCBycHhUcmFuc2xhdGV9fVxuPC9wPlxuPGgyIGNsYXNzPVwiZ292dWstaGVhZGluZy1sXCIgaWQ9XCJOb24tYWNjZXNzaWJsZS1jb250ZW50XCI+e3snTm9uLWFjY2Vzc2libGUgY29udGVudCcgfCBycHhUcmFuc2xhdGV9fTwvaDI+XG5cbjxwIGNsYXNzPVwiZ292dWstYm9keVwiPnt7J1RoZSBjb250ZW50IGxpc3RlZCBiZWxvdyBpcyBub24tY29tcGxpYW50IGZvciB0aGUgZm9sbG93aW5nIHJlYXNvbnMuJyB8IHJweFRyYW5zbGF0ZX19PC9wPlxuXG5cbjxoMiBjbGFzcz1cImdvdnVrLWhlYWRpbmctbFwiIGlkPVwiTm9uLWNvbXBsaWFuY2Utd2l0aC10aGUtYWNjZXNzaWJpbGl0eS1yZWd1bGF0aW9uc1wiPnt7J05vbi1jb21wbGlhbmNlIHdpdGggdGhlXG4gIGFjY2Vzc2liaWxpdHlcbiAgcmVndWxhdGlvbnMnIHwgcnB4VHJhbnNsYXRlfX08L2gyPlxuXG48cCBjbGFzcz1cImdvdnVrLWJvZHlcIj57eydXaGVuIHpvb21lZCBpbiAyMDAlLCBjb250ZW50IG92ZXJsYXBzIGFuZCBkb2VzIG5vdCByZWZsb3csIHNvIHNvbWUgcGVvcGxlIHdpbGwgaGF2ZSBkaWZmaWN1bHR5XG4gIHZpZXdpbmcgcGFnZXMuXG4gIFRoaXMgZmFpbHMgV0NBRyAyLjEgc3VjY2VzcyBjcml0ZXJpb24gMS40LjEwOiBSZWZsb3cgKExldmVsIEFBKS4nIHwgcnB4VHJhbnNsYXRlfX08L3A+XG5cbjxwIGNsYXNzPVwiZ292dWstYm9keVwiPnt7J1NvbWUgcGFnZSB0aXRsZXMgYXJlIG5vdCB1bmlxdWUgdG8gdGhlIHNjcmVlbnMsIHNvIHNjcmVlbnJlYWRlciB1c2VycyBtYXkgc3RydWdnbGUgdG8ga25vd1xuICB3aGljaCBwYWdlIHRoZXkgYXJlIG9uLlxuICBUaGlzIGZhaWxzIFdDQUcgMi4xIHN1Y2Nlc3MgY3JpdGVyaW9uIDIuNC4yOiBQYWdlIFRpdGxlZCAoTGV2ZWwgQSknIHwgcnB4VHJhbnNsYXRlfX08L3A+XG5cbjxwICpuZ0lmPVwiaXNFbmRwb2ludE1DXCIgY2xhc3M9XCJnb3Z1ay1ib2R5XCI+e3snSXQgaXMgZGlmZmljdWx0IHRvIHVuZGVyc3RhbmQgaG93IHNvbWUgcGFnZXMgYXJlIHJlbGF0ZWQgdG8gb25lIGFub3RoZXIsXG4gIGFuZCB3aGVyZSB0aGV5IGFyZSBpblxuICB0aGUgY29udGV4dCBvZiB0aGUgd2hvbGUgc2l0ZS5cbiAgVGhpcyBmYWlscyBXQ0FHIDIuMSBzdWNjZXNzIGNyaXRlcmlvbiAyLjQuNTogTXVsdGlwbGUgV2F5cyAoTGV2ZWwgQUEpJyB8IHJweFRyYW5zbGF0ZX19PC9wPlxuXG48cCAqbmdJZj1cIiFpc0VuZHBvaW50TUNcIiBjbGFzcz1cImdvdnVrLWJvZHlcIj57eydTb21lIHVzZXJzIG1heSBzdHJ1Z2dsZSB3aXRoIGtleWJvYXJkIG9yZGVyIHdoZW4gdGFiYmluZyBhZnRlciBhbiBlcnJvclxuICBpcyBwcmVzZW50ZWQuIFRoaXMgZmFpbHMgV0NBRyAyLjEgc3VjY2VzcyBjcml0ZXJpb24gMi40LjM6IEZvY3VzIE9yZGVyIChMZXZlbCBBKS4nIHwgcnB4VHJhbnNsYXRlfX08L3A+XG48cCAqbmdJZj1cIiFpc0VuZHBvaW50TUNcIiBjbGFzcz1cImdvdnVrLWJvZHlcIj57eydTb21lIGhlYWRpbmdzIGFyZSBza2lwcGVkLCBzbyBzb21lIHVzZXJzIG1heSBzdHJ1Z2dsZSB0byBuYXZpZ2F0ZSB3aXRoXG4gIHNjcmVlbiByZWFkZXIgdmlhIGhlYWRpbmdzLiBUaGlzIGZhaWxzIFdDQUcgMi4xIHN1Y2Nlc3MgY3JpdGVyaW9uIDIuNC42OiBIZWFkaW5ncyBhbmQgbGFiZWxzIChMZXZlbCBBQSkuJyB8XG4gIHJweFRyYW5zbGF0ZX19PC9wPlxuPHAgKm5nSWY9XCIhaXNFbmRwb2ludE1DXCIgY2xhc3M9XCJnb3Z1ay1ib2R5XCI+e3snU29tZSBlcnJvciBsaW5rcyBkbyBub3QgdGFrZSB0aGUgdXNlciB0byB0aGUgc3BlY2lmaWMgZXJyb3IgZmllbGQsIHNvXG4gIHNvbWUgcGVvcGxlIG1heSBzdHJ1Z2dsZSB3aXRoIGludGVyYWN0aW5nIHdpdGggdGhlIGxpbmtzLiBUaGlzIGZhaWxzIFdDQUcgMi4xIHN1Y2Nlc3MgY3JpdGVyaW9uIDMuMi4xOiBPbiBGb2N1cyAoTGV2ZWxcbiAgQSkuJyB8IHJweFRyYW5zbGF0ZX19PC9wPlxuPHAgKm5nSWY9XCJpc0VuZHBvaW50TUNcIiBjbGFzcz1cImdvdnVrLWJvZHlcIj57eydUaGUgaGVhZGluZyBcXCdGaWx0ZXJcXCcgdG9nZXRoZXIgd2l0aCB0aGUgbm9uLXVuaXF1ZSBcXCdDYXNlIExpc3RcXCcgaGVhZGluZ3NcbiAgaGVhdmlseSBpbXBseSB0aGF0IGEgdXNlciBpcyBmaWx0ZXJpbmcgb25lIFxcJ0Nhc2UgTGlzdFxcJyB0YWJsZSwgdG8gd2hpY2ggdGhleSBoYXZlIGFjY2VzcywgYWNjb3JkaW5nIHRvIHRoZSBmaWx0ZXJzIHRoZXkgc2VsZWN0LiBIb3dldmVyLCB0aGlzIGlzXG4gIG5vdCB0aGUgY2FzZS4gU29tZSB1c2VycyBtYXkgc3RydWdnbGUgd2l0aCBoZWFkaW5nIGZpbHRlcnMgYXMgaXQgaXMgbm90IGNsZWFyIHdoaWNoIG9uZXMgY29ycmVzcG9uZCB0byB0aGUgdGFibGUgZGF0YS5cbiAgVGhpcyBmYWlscyBXQ0FHIDIuMSBzdWNjZXNzIGNyaXRlcmlvbiAyLjQuNjogSGVhZGluZ3MgYW5kIGxhYmVscyAoTGV2ZWwgQUEpJyB8IHJweFRyYW5zbGF0ZX19PC9wPlxuXG48cCAqbmdJZj1cImlzRW5kcG9pbnRNQ1wiIGNsYXNzPVwiZ292dWstYm9keVwiPnt7J1NvbWUgdXNlcnMgbWF5IHN0cnVnZ2xlIG9uIG1vYmlsZSB3aGVyZSBhIHNjcmVlbiByZWFkZXIgZG9lc25cXCd0IGluZGljYXRlXG4gIHRoYXQgYnV0dG9ucyBhcmUgY29sbGFwc2libGUuIFRoaXMgZmFpbHMgV0NBRyAyLjEgc3VjY2VzcyBjcml0ZXJpb24gNC4xLjI6IE5hbWUsIFJvbGUsIFZhbHVlIChMZXZlbCBBKScgfCBycHhUcmFuc2xhdGV9fTwvcD5cblxuPGgyICpuZ0lmPVwiIWlzRW5kcG9pbnRNQ1wiIGNsYXNzPVwiZ292dWstaGVhZGluZy1tXCIgaWQ9XCJEaXNwcm9wb3J0aW9uYXRlLWJ1cmRlblwiPnt7J0Rpc3Byb3BvcnRpb25hdGUgYnVyZGVuJyB8IHJweFRyYW5zbGF0ZX19IDwvaDI+XG5cbjxwICpuZ0lmPVwiIWlzRW5kcG9pbnRNQ1wiIGNsYXNzPVwiZ292dWstYm9keVwiPnt7J1dlXFwncmUgY29uc2lkZXJpbmcgaWYgZml4aW5nIHNvbWUgaXNzdWVzIHdvdWxkIGJlIGEnIHwgcnB4VHJhbnNsYXRlfX0gPGFcbiAgICB0YXJnZXQ9XCJfYmxhbmtcIiBocmVmPVwiaHR0cHM6Ly93d3cubGVnaXNsYXRpb24uZ292LnVrL3Vrc2kvMjAxOC85NTIvcmVndWxhdGlvbi83L21hZGUvXCI+e3snZGlzcHJvcG9ydGlvbmF0ZSBidXJkZW4nIHxcbiAgICBycHhUcmFuc2xhdGV9fTwvYT4ge3snd2l0aGluIHRoZSBtZWFuaW5nIG9mXG4gIHRoZSBhY2Nlc3NpYmlsaXR5IHJlZ3VsYXRpb25zLiBUaGVzZSBpc3N1ZXMgYXJlOicgfCBycHhUcmFuc2xhdGV9fTwvcD5cblxuPHVsICpuZ0lmPVwiIWlzRW5kcG9pbnRNQ1wiIGNsYXNzPVwiZ292dWstbGlzdCBnb3Z1ay1saXN0LS1idWxsZXRcIj5cbiAgPGxpPnt7J1NjcmVlbiByZWFkZXJzIG5vdCBwaWNraW5nIHVwIGhvdyBwYWdlcyBhcmUgcmVsYXRlZCB0byBvbmUgYW5vdGhlciwgYW5kIHdoZXJlIHRoZXkgYXJlIGluIHRoZSBjb250ZXh0IG9mIHRoZVxuICAgIHdob2xlIHNpdGUnIHwgcnB4VHJhbnNsYXRlfX08L2xpPlxuICA8bGk+e3snU2NyZWVuIHJlYWRlcnMgbm90IHBpY2tpbmcgdXAgb24gbm9uLXVuaXF1ZSB0YWJsZSBoZWFkaW5ncyBvbiB0aGUgc2FtZSBwYWdlJyB8IHJweFRyYW5zbGF0ZX19PC9saT5cbiAgPGxpPnt7J1NvbWUgbGFiZWxzLCBmaWVsZHMsIGVycm9yIG1lc3NhZ2VzIGFuZCBvdGhlciBjb250ZW50IG5vdCBiZWluZyBjbGVhcmx5IGlkZW50aWZpZWQgYnkgc2NyZWVuIHJlYWRlcnMgYW5kIHZvaWNlXG4gICAgYWN0aXZhdGlvbiBzb2Z0d2FyZSBvbiBtb2JpbGUgZGV2aWNlcy4nIHwgcnB4VHJhbnNsYXRlfX08L2xpPlxuPC91bD5cblxuPHAgKm5nSWY9XCIhaXNFbmRwb2ludE1DXCIgY2xhc3M9XCJnb3Z1ay1ib2R5XCI+e3snV2hlbiB0aGlzIGFzc2Vzc21lbnQgaXMgY29tcGxldGUsIHdlIHdpbGwgdXBkYXRlIHRoaXMgYWNjZXNzaWJpbGl0eVxuICBzdGF0ZW1lbnQsIHRvIGNvdmVyIHdoZXRoZXIgb3Igbm90IGRpc3Byb3BvcnRpb25hdGUgYnVyZGVuIGlzIGJlaW5nIGNsYWltZWQuJyB8IHJweFRyYW5zbGF0ZX19PC9wPlxuXG48aDIgY2xhc3M9XCJnb3Z1ay1oZWFkaW5nLW1cIiBpZD1cIkNvbnRlbnQtdGhhdOKAmXMtbm90LXdpdGhpbi10aGUtc2NvcGUtb2YtdGhlLWFjY2Vzc2liaWxpdHktcmVndWxhdGlvbnNcIj57eydDb250ZW50IHRoYXRcXOKAmXNcbiAgbm90XG4gIHdpdGhpbiB0aGUgc2NvcGUgb2YgdGhlIGFjY2Vzc2liaWxpdHkgcmVndWxhdGlvbnMnIHwgcnB4VHJhbnNsYXRlfX0gPC9oMj5cblxuPHAgY2xhc3M9XCJnb3Z1ay1ib2R5XCI+e3snUERGcywgZG9jdW1lbnRzIGFuZCBhdHRhY2htZW50cyB0byBlbWFpbCBub3RpZmljYXRpb25zIHB1Ymxpc2hlZCBiZWZvcmUgMjMgU2VwdGVtYmVyIDIwMTggbWF5XG4gIG5vdFxuICBtZWV0IGFjY2Vzc2liaWxpdHkgc3RhbmRhcmRzLiBGb3IgZXhhbXBsZSwgdGhleSBtYXkgbm90IGJlIHN0cnVjdHVyZWQgc28gdGhleVxc4oCZcmUgYWNjZXNzaWJsZSB0byBhIHNjcmVlbiByZWFkZXIuJyB8XG4gIHJweFRyYW5zbGF0ZX19PC9wPlxuXG48cCBjbGFzcz1cImdvdnVrLWJvZHlcIj57eydBbnkgbmV3IFBERnMgb3IgV29yZCBkb2N1bWVudHMgd2UgcHVibGlzaCB3aWxsIG1lZXQgYWNjZXNzaWJpbGl0eSBzdGFuZGFyZHMuJyB8IHJweFRyYW5zbGF0ZX19XG48L3A+XG5cbjxoMiBjbGFzcz1cImdvdnVrLWhlYWRpbmctbFwiIGlkPVwid2hhdC10by1pbXByb3ZlLWFjY2Vzc2liaWxpdHlcIj57eydXaGF0IHdlXFzigJlyZSBkb2luZyB0byBpbXByb3ZlIGFjY2Vzc2liaWxpdHknIHxcbiAgcnB4VHJhbnNsYXRlfX08L2gyPlxuXG48cCBjbGFzcz1cImdvdnVrLWJvZHlcIj57eydXZVxc4oCZcmUgY29tbWl0dGVkIHRvIGVuc3VyaW5nIG91ciBzZXJ2aWNlcyBhcmUgYWNjZXNzaWJsZSB0byBhbGwgb3VyIHVzZXJzIGFuZCB0aGF0IHRoZXkgY29tcGx5XG4gIHdpdGhcbiAgbGV2ZWwgQUEgb2YgdGhlIFdlYiBDb250ZW50IEFjY2Vzc2liaWxpdHkgR3VpZGVsaW5lcyDigJMgV0NBRyAyLjEuJyB8IHJweFRyYW5zbGF0ZX19PC9wPlxuXG48cCBjbGFzcz1cImdvdnVrLWJvZHlcIj57eydXZVxc4oCZcmUgYWN0aXZlbHkgd29ya2luZyB0byBpbXByb3ZlIHRoZSBpZGVudGlmaWVkIGlzc3VlcyBhbmQgYWltaW5nIHRvIG1ha2UgdGhlbSBBQS1jb21wbGlhbnRcbiAgYnkgRGVjZW1iZXIgMjAyNC4nIHwgcnB4VHJhbnNsYXRlfX08L3A+XG48cCBjbGFzcz1cImdvdnVrLWJvZHlcIj57eydXZVxc4oCZcmUgY3VycmVudGx5IHByZXBhcmluZyBmb3IgYW4gZXh0ZXJuYWwgYXVkaXQgY2FycmllZCBvdXQgYnkgdGhlICcgfCBycHhUcmFuc2xhdGV9fVxuICA8YSB0YXJnZXQ9XCJfYmxhbmtcIiBocmVmPVwiaHR0cHM6Ly9kaWdpdGFsYWNjZXNzaWJpbGl0eWNlbnRyZS5vcmcvXCI+IHt7J0RpZ2l0YWwgQWNjZXNzaWJpbGl0eSBDZW50cmUgKERBQykuJyB8XG4gICAgcnB4VHJhbnNsYXRlfX0gPC9hPlxuPC9wPlxuXG48aDIgY2xhc3M9XCJnb3Z1ay1oZWFkaW5nLWxcIiBpZD1cInByZXBhcmF0aW9uLW9mLXRoaXMtYWNjZXNzaWJpbGl0eS1zdGF0ZW1lbnRcIj57eydQcmVwYXJhdGlvbiBvZiB0aGlzIGFjY2Vzc2liaWxpdHlcbiAgc3RhdGVtZW50JyB8IHJweFRyYW5zbGF0ZX19PC9oMj5cblxuPHAgY2xhc3M9XCJnb3Z1ay1ib2R5XCI+e3snVGhpcyBzdGF0ZW1lbnQgd2FzIHByZXBhcmVkIG9uIDE2IFNlcHRlbWJlciAyMDE5LiBJdCB3YXMgbGFzdCByZXZpZXdlZCBpbiBTcHJpbmcvU3VtbWVyIDIwMjMuJ1xuICB8IHJweFRyYW5zbGF0ZX19PC9wPlxuXG48cCBjbGFzcz1cImdvdnVrLWJvZHlcIj57eydUaGlzIHdlYnNpdGUgd2FzIGxhc3QgdGVzdGVkIG9uIDE5IE1heSAyMDIwLiBUaGUgc2VydmljZSB3aWxsIGJlIHRlc3RlZCBieScgfCBycHhUcmFuc2xhdGV9fSA8YVxuICAgIHRhcmdldD1cIl9ibGFua1wiIGhyZWY9XCJodHRwczovL2RpZ2l0YWxhY2Nlc3NpYmlsaXR5Y2VudHJlLm9yZy9cIj57eydEaWdpdGFsXG4gICAgQWNjZXNzaWJpbGl0eSBDZW50cmUgKERBQyknIHwgcnB4VHJhbnNsYXRlfX08L2E+IHt7J29uIDIwIE5vdmVtYmVyIDIwMjMuJyB8IHJweFRyYW5zbGF0ZX19PC9wPiJdfQ==