@ksremp/ngx-ksremp-app-lib 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +46 -0
- package/esm2022/ksremp-ngx-ksremp-app-lib.mjs +5 -0
- package/esm2022/lib/annimations/app-animations.mjs +37 -0
- package/esm2022/lib/components/add-employer/add-employer.component.mjs +2655 -0
- package/esm2022/lib/components/add-participant/add-participant.component.mjs +399 -0
- package/esm2022/lib/components/add-payment/add-payment.component.mjs +201 -0
- package/esm2022/lib/components/address/address.component.mjs +565 -0
- package/esm2022/lib/components/bank-details/bank-details.component.mjs +416 -0
- package/esm2022/lib/components/captcha/captcha.component.mjs +181 -0
- package/esm2022/lib/components/card/card.component.mjs +55 -0
- package/esm2022/lib/components/contact-us/contact-us.component.mjs +984 -0
- package/esm2022/lib/components/content/content.component.mjs +61 -0
- package/esm2022/lib/components/correspondence-download/correspondence-download.component.mjs +89 -0
- package/esm2022/lib/components/dashboard-card/dashboard-card.component.mjs +223 -0
- package/esm2022/lib/components/dependent-grid/dependent-grid.component.mjs +301 -0
- package/esm2022/lib/components/disclosure/disclosure.component.mjs +60 -0
- package/esm2022/lib/components/dropdown/dropdown.component.mjs +1974 -0
- package/esm2022/lib/components/dropdown/dropdown.interface.mjs +2 -0
- package/esm2022/lib/components/email-update/email-update.component.mjs +376 -0
- package/esm2022/lib/components/employer-grid/employer-grid.component.mjs +1102 -0
- package/esm2022/lib/components/error/error.component.mjs +86 -0
- package/esm2022/lib/components/fav-menu/fav-menu.component.mjs +163 -0
- package/esm2022/lib/components/file-download/file-download.component.mjs +104 -0
- package/esm2022/lib/components/file-uploader/file-uploader.component.mjs +315 -0
- package/esm2022/lib/components/footer/footer.component.mjs +350 -0
- package/esm2022/lib/components/header/header.component.mjs +535 -0
- package/esm2022/lib/components/help/help.component.mjs +49 -0
- package/esm2022/lib/components/idle-detector/idle-detector.component.mjs +76 -0
- package/esm2022/lib/components/info/info.component.mjs +187 -0
- package/esm2022/lib/components/job-search-result-page/job-search-result-page.component.mjs +212 -0
- package/esm2022/lib/components/job-title/job-title.component.mjs +162 -0
- package/esm2022/lib/components/legal-disclaimar/legal-disclaimar.component.mjs +617 -0
- package/esm2022/lib/components/lexis-nexis/lexis-nexis.component.mjs +402 -0
- package/esm2022/lib/components/link/link.component.mjs +131 -0
- package/esm2022/lib/components/maintenance-detector/maintenance-detector.component.mjs +43 -0
- package/esm2022/lib/components/mask/mask.component.mjs +48 -0
- package/esm2022/lib/components/menu/menu.component.mjs +452 -0
- package/esm2022/lib/components/mfa/mfa.component.mjs +574 -0
- package/esm2022/lib/components/mfa-popup/mfa-popup.component.mjs +57 -0
- package/esm2022/lib/components/mfa2/mfa2.component.mjs +285 -0
- package/esm2022/lib/components/money-expect/money-expect.component.mjs +98 -0
- package/esm2022/lib/components/msg/msg.component.mjs +48 -0
- package/esm2022/lib/components/news/news.component.mjs +90 -0
- package/esm2022/lib/components/overlay-info/overlay-info.component.mjs +213 -0
- package/esm2022/lib/components/page/page.component.mjs +136 -0
- package/esm2022/lib/components/profile/profile.component.mjs +505 -0
- package/esm2022/lib/components/profile-redirect/profile-redirect.component.mjs +70 -0
- package/esm2022/lib/components/questionnaire/AppValidators.mjs +541 -0
- package/esm2022/lib/components/questionnaire/FbConstants.mjs +8 -0
- package/esm2022/lib/components/questionnaire/SelectItem.mjs +2 -0
- package/esm2022/lib/components/questionnaire/account-success/account-success.page.mjs +310 -0
- package/esm2022/lib/components/questionnaire/common-success/common-success.page.mjs +528 -0
- package/esm2022/lib/components/questionnaire/dynamic-form-panel.component.mjs +1115 -0
- package/esm2022/lib/components/questionnaire/dynamic-form-question.component.mjs +2521 -0
- package/esm2022/lib/components/questionnaire/dynamic-form.component.mjs +1788 -0
- package/esm2022/lib/components/questionnaire/form-builder/form-builder.page.mjs +256 -0
- package/esm2022/lib/components/questionnaire/input-focus.directive.mjs +44 -0
- package/esm2022/lib/components/questionnaire/multi-questionnaire/multi-questionnaire.component.mjs +255 -0
- package/esm2022/lib/components/questionnaire/question-base.mjs +3 -0
- package/esm2022/lib/components/questionnaire/question-control.service.mjs +408 -0
- package/esm2022/lib/components/questionnaire/question.service.mjs +33 -0
- package/esm2022/lib/components/questionnaire/render-questionnaire/render-questionnaire.page.mjs +282 -0
- package/esm2022/lib/components/read-more/read-more.component.mjs +72 -0
- package/esm2022/lib/components/requalify-lift-previous-issues/requalify-lift-previous-issues.component.mjs +690 -0
- package/esm2022/lib/components/search-employer/search-employer.component.mjs +132 -0
- package/esm2022/lib/components/security-question/security-question.component.mjs +199 -0
- package/esm2022/lib/components/select/select.component.mjs +159 -0
- package/esm2022/lib/components/sign-ssn/sign-ssn.component.mjs +141 -0
- package/esm2022/lib/components/ssn/ssn.component.mjs +44 -0
- package/esm2022/lib/components/ssn-reverify/ssn-reverify.component.mjs +171 -0
- package/esm2022/lib/components/test/test.component.mjs +19 -0
- package/esm2022/lib/components/user-login/user-login.component.mjs +619 -0
- package/esm2022/lib/components/weekly-cert-employer/weekly-cert-employer.component.mjs +772 -0
- package/esm2022/lib/components/weekly-cert-employer-grid/weekly-cert-employer-grid.component.mjs +356 -0
- package/esm2022/lib/directives/auto-focus/auto-focus.directive.mjs +31 -0
- package/esm2022/lib/directives/caps-lock.directive.mjs +38 -0
- package/esm2022/lib/directives/required-roles/required-roles.directive.mjs +30 -0
- package/esm2022/lib/enums/EmailStatusEnum.mjs +9 -0
- package/esm2022/lib/guards/auth.guard.mjs +138 -0
- package/esm2022/lib/guards/no-login/no-login.guard.mjs +21 -0
- package/esm2022/lib/interceptors/error-interceptor/http-error-interceptor.mjs +107 -0
- package/esm2022/lib/interceptors/header-interceptor/http-header.interceptor.mjs +99 -0
- package/esm2022/lib/models/AddressComponentModel.mjs +3 -0
- package/esm2022/lib/models/BankDetailsComponentModel.mjs +3 -0
- package/esm2022/lib/models/BankDetailsModel.mjs +3 -0
- package/esm2022/lib/models/CinRequalificationCriteriaModel.mjs +3 -0
- package/esm2022/lib/models/EmployerDetailSearchResult.mjs +6 -0
- package/esm2022/lib/models/ErrorModel.mjs +6 -0
- package/esm2022/lib/models/FileModel.mjs +2 -0
- package/esm2022/lib/models/LexisNexisAccountCreationModel.mjs +2 -0
- package/esm2022/lib/models/LexisNexisAuthSelectionRequestModel.mjs +2 -0
- package/esm2022/lib/models/LexisNexisAuthSelectionResponseModel.mjs +2 -0
- package/esm2022/lib/models/LexisNexisEnabledResponseModel.mjs +2 -0
- package/esm2022/lib/models/LexisNexisResponseModel.mjs +3 -0
- package/esm2022/lib/models/LibConstants.mjs +132 -0
- package/esm2022/lib/models/NewsAndAnnouncementModel.mjs +3 -0
- package/esm2022/lib/models/NotificationModel.mjs +6 -0
- package/esm2022/lib/models/OtpAuthModel.mjs +3 -0
- package/esm2022/lib/models/PartialEmploymentModel.mjs +3 -0
- package/esm2022/lib/models/PaymentComponentModel.mjs +2 -0
- package/esm2022/lib/models/RequalifyLiftPageModel.mjs +11 -0
- package/esm2022/lib/models/SecurityQuestionModel.mjs +3 -0
- package/esm2022/lib/models/SsaVerificationModel.mjs +3 -0
- package/esm2022/lib/models/TrendModel.mjs +3 -0
- package/esm2022/lib/models/UserDetailsModel.mjs +3 -0
- package/esm2022/lib/models/UserModel.mjs +6 -0
- package/esm2022/lib/models/case/CaseAttachmentModel.mjs +3 -0
- package/esm2022/lib/models/claimant/ClaimantModel.mjs +3 -0
- package/esm2022/lib/models/claimant/JobResultsData.mjs +3 -0
- package/esm2022/lib/models/claimant/MatchingJobs.mjs +3 -0
- package/esm2022/lib/models/claimant/ResetPasswordModel.mjs +3 -0
- package/esm2022/lib/models/cmp/CaseCoreModel.mjs +3 -0
- package/esm2022/lib/models/cmp/ComplaintCategoryModel.mjs +3 -0
- package/esm2022/lib/models/cmp/ComplaintCategoryOutputModel.mjs +5 -0
- package/esm2022/lib/models/cmp/ContactUsModel.mjs +3 -0
- package/esm2022/lib/models/cmp/EmailTemplateModel.mjs +3 -0
- package/esm2022/lib/models/cmp/contactUsInqueryModel.mjs +7 -0
- package/esm2022/lib/models/cmp/messageRourceModel.mjs +3 -0
- package/esm2022/lib/models/dashboard-model.mjs +3 -0
- package/esm2022/lib/models/dependent.model.mjs +8 -0
- package/esm2022/lib/models/questionnaire/AutocoderModel.mjs +3 -0
- package/esm2022/lib/models/questionnaire/ClaimAppEmpRequestModel.mjs +3 -0
- package/esm2022/lib/models/questionnaire/ClaimAppEmpResponseModel.mjs +8 -0
- package/esm2022/lib/models/questionnaire/ClaimAppEmployerDetailsModel.mjs +6 -0
- package/esm2022/lib/models/questionnaire/ClaimOnlyEmployerDataModel.mjs +3 -0
- package/esm2022/lib/models/questionnaire/ComboModel.mjs +1010 -0
- package/esm2022/lib/models/questionnaire/ElementsModel.mjs +8 -0
- package/esm2022/lib/models/questionnaire/EmployerDetailSearchResult.mjs +3 -0
- package/esm2022/lib/models/questionnaire/EmployerWagesModel.mjs +3 -0
- package/esm2022/lib/models/questionnaire/FBConfigModel.mjs +6 -0
- package/esm2022/lib/models/questionnaire/KeyValueModel.mjs +3 -0
- package/esm2022/lib/models/questionnaire/LegalDiscaimarModel.mjs +3 -0
- package/esm2022/lib/models/questionnaire/LoaderModel.mjs +3 -0
- package/esm2022/lib/models/questionnaire/PollingStatusModel.mjs +3 -0
- package/esm2022/lib/models/questionnaire/QtrYearEmployerWageModel.mjs +3 -0
- package/esm2022/lib/models/questionnaire/QuestionnaireQueryModel.mjs +8 -0
- package/esm2022/lib/models/questionnaire/QuestionnaireReturnModel.mjs +11 -0
- package/esm2022/lib/models/questionnaire/QuestionnaireSaveModel.mjs +3 -0
- package/esm2022/lib/models/questionnaire/RequalifyLiftIssuesModel.mjs +3 -0
- package/esm2022/lib/models/questionnaire/ServiceActionResponseModel.mjs +3 -0
- package/esm2022/lib/models/questionnaire/StatusModel.mjs +6 -0
- package/esm2022/lib/models/questionnaire/SuccessPageElement.mjs +3 -0
- package/esm2022/lib/models/questionnaire/UI512AResponseModel.mjs +3 -0
- package/esm2022/lib/models/questionnaire/ValidationModel.mjs +3 -0
- package/esm2022/lib/ngx-reusa-app-lib.component.mjs +23 -0
- package/esm2022/lib/ngx-reusa-app-lib.module.mjs +410 -0
- package/esm2022/lib/ngx-reusa-app-lib.service.mjs +14 -0
- package/esm2022/lib/pages/BasePage.mjs +98 -0
- package/esm2022/lib/pages/common/accessibility-policy/accessibility-policy.page.mjs +77 -0
- package/esm2022/lib/pages/common/change-password/change-password.page.mjs +471 -0
- package/esm2022/lib/pages/common/landing/landing.component.mjs +209 -0
- package/esm2022/lib/pages/common/landing2/landing2.component.mjs +244 -0
- package/esm2022/lib/pages/common/login/login.component.mjs +533 -0
- package/esm2022/lib/pages/common/not-found/not-found.page.mjs +24 -0
- package/esm2022/lib/pages/common/privacy-disclaimer/privacy-disclaimer.page.mjs +306 -0
- package/esm2022/lib/pages/common/security-policy/security-policy.page.mjs +61 -0
- package/esm2022/lib/pages/common/unauthorized/unauthorized.page.mjs +24 -0
- package/esm2022/lib/pages/popovers/language/language.page.mjs +62 -0
- package/esm2022/lib/pages/popovers/my-notifications/my-notifications.page.mjs +204 -0
- package/esm2022/lib/pages/popovers/my-profile/my-profile.page.mjs +129 -0
- package/esm2022/lib/pages/popovers/user-search/user-search.component.mjs +251 -0
- package/esm2022/lib/pipes/filter.pipe.mjs +30 -0
- package/esm2022/lib/pipes/mask/mask.email.pipe.mjs +23 -0
- package/esm2022/lib/pipes/proper-case/proper-case.pipe.mjs +27 -0
- package/esm2022/lib/pipes/translate/dynamic-translate.pipe.mjs +44 -0
- package/esm2022/lib/pipes/trust-html/trust-html.pipe.mjs +20 -0
- package/esm2022/lib/services/base-service.mjs +50 -0
- package/esm2022/lib/services/captcha/captcha.service.mjs +46 -0
- package/esm2022/lib/services/case-service/case.service.mjs +47 -0
- package/esm2022/lib/services/chatbot/chatbot.service.mjs +258 -0
- package/esm2022/lib/services/chatbot/script.const.mjs +42 -0
- package/esm2022/lib/services/claimant/claimant.service.mjs +31 -0
- package/esm2022/lib/services/claimant-context/claimant-context.service.mjs +48 -0
- package/esm2022/lib/services/claimant-service/claimant-usps-redirect.service.mjs +36 -0
- package/esm2022/lib/services/claimant-service/claimant.service.mjs +62 -0
- package/esm2022/lib/services/claims/claims.service.mjs +102 -0
- package/esm2022/lib/services/cmp-service/cmp.service.mjs +84 -0
- package/esm2022/lib/services/dms-service/dms.service.mjs +60 -0
- package/esm2022/lib/services/fpjs/fingerprint.service.mjs +70 -0
- package/esm2022/lib/services/google-analytics/google-analytics.service.mjs +29 -0
- package/esm2022/lib/services/help/help.service.mjs +63 -0
- package/esm2022/lib/services/idle/idle.service.mjs +159 -0
- package/esm2022/lib/services/lexis-nexis/lexis.nexis.service.mjs +60 -0
- package/esm2022/lib/services/logger/logger.service.mjs +67 -0
- package/esm2022/lib/services/login/login.service.mjs +343 -0
- package/esm2022/lib/services/maintenance/maintenance.service.mjs +21 -0
- package/esm2022/lib/services/notification/notification.service.mjs +113 -0
- package/esm2022/lib/services/ovp/ovp.service.mjs +43 -0
- package/esm2022/lib/services/questionnaire/questionnaire.service.mjs +69 -0
- package/esm2022/lib/services/questionnaire/validation.service.mjs +59 -0
- package/esm2022/lib/services/security-service/security.service.mjs +42 -0
- package/esm2022/lib/services/tour/tour.service.mjs +60 -0
- package/esm2022/lib/services/util/util.service.mjs +450 -0
- package/esm2022/lib/services/weekly-cert/weekly-cert-v2.service.mjs +42 -0
- package/esm2022/lib/validations/AppRegex.mjs +51 -0
- package/esm2022/lib/validations/AppValidators.mjs +253 -0
- package/esm2022/public-api.mjs +138 -0
- package/fesm2022/ksremp-ngx-ksremp-app-lib.mjs +33786 -0
- package/fesm2022/ksremp-ngx-ksremp-app-lib.mjs.map +1 -0
- package/index.d.ts +6 -0
- package/ksremp-ngx-ksremp-app-lib.d.ts.map +1 -0
- package/lib/annimations/app-animations.d.ts +4 -0
- package/lib/annimations/app-animations.d.ts.map +1 -0
- package/lib/components/add-employer/add-employer.component.d.ts +234 -0
- package/lib/components/add-employer/add-employer.component.d.ts.map +1 -0
- package/lib/components/add-participant/add-participant.component.d.ts +49 -0
- package/lib/components/add-participant/add-participant.component.d.ts.map +1 -0
- package/lib/components/add-payment/add-payment.component.d.ts +33 -0
- package/lib/components/add-payment/add-payment.component.d.ts.map +1 -0
- package/lib/components/address/address.component.d.ts +81 -0
- package/lib/components/address/address.component.d.ts.map +1 -0
- package/lib/components/bank-details/bank-details.component.d.ts +62 -0
- package/lib/components/bank-details/bank-details.component.d.ts.map +1 -0
- package/lib/components/captcha/captcha.component.d.ts +45 -0
- package/lib/components/captcha/captcha.component.d.ts.map +1 -0
- package/lib/components/card/card.component.d.ts +12 -0
- package/lib/components/card/card.component.d.ts.map +1 -0
- package/lib/components/contact-us/contact-us.component.d.ts +109 -0
- package/lib/components/contact-us/contact-us.component.d.ts.map +1 -0
- package/lib/components/content/content.component.d.ts +14 -0
- package/lib/components/content/content.component.d.ts.map +1 -0
- package/lib/components/correspondence-download/correspondence-download.component.d.ts +22 -0
- package/lib/components/correspondence-download/correspondence-download.component.d.ts.map +1 -0
- package/lib/components/dashboard-card/dashboard-card.component.d.ts +26 -0
- package/lib/components/dashboard-card/dashboard-card.component.d.ts.map +1 -0
- package/lib/components/dependent-grid/dependent-grid.component.d.ts +36 -0
- package/lib/components/dependent-grid/dependent-grid.component.d.ts.map +1 -0
- package/lib/components/disclosure/disclosure.component.d.ts +13 -0
- package/lib/components/disclosure/disclosure.component.d.ts.map +1 -0
- package/lib/components/dropdown/dropdown.component.d.ts +582 -0
- package/lib/components/dropdown/dropdown.component.d.ts.map +1 -0
- package/lib/components/dropdown/dropdown.interface.d.ts +155 -0
- package/lib/components/dropdown/dropdown.interface.d.ts.map +1 -0
- package/lib/components/email-update/email-update.component.d.ts +43 -0
- package/lib/components/email-update/email-update.component.d.ts.map +1 -0
- package/lib/components/employer-grid/employer-grid.component.d.ts +90 -0
- package/lib/components/employer-grid/employer-grid.component.d.ts.map +1 -0
- package/lib/components/error/error.component.d.ts +18 -0
- package/lib/components/error/error.component.d.ts.map +1 -0
- package/lib/components/fav-menu/fav-menu.component.d.ts +22 -0
- package/lib/components/fav-menu/fav-menu.component.d.ts.map +1 -0
- package/lib/components/file-download/file-download.component.d.ts +23 -0
- package/lib/components/file-download/file-download.component.d.ts.map +1 -0
- package/lib/components/file-uploader/file-uploader.component.d.ts +48 -0
- package/lib/components/file-uploader/file-uploader.component.d.ts.map +1 -0
- package/lib/components/footer/footer.component.d.ts +37 -0
- package/lib/components/footer/footer.component.d.ts.map +1 -0
- package/lib/components/header/header.component.d.ts +64 -0
- package/lib/components/header/header.component.d.ts.map +1 -0
- package/lib/components/help/help.component.d.ts +11 -0
- package/lib/components/help/help.component.d.ts.map +1 -0
- package/lib/components/idle-detector/idle-detector.component.d.ts +16 -0
- package/lib/components/idle-detector/idle-detector.component.d.ts.map +1 -0
- package/lib/components/info/info.component.d.ts +23 -0
- package/lib/components/info/info.component.d.ts.map +1 -0
- package/lib/components/job-search-result-page/job-search-result-page.component.d.ts +24 -0
- package/lib/components/job-search-result-page/job-search-result-page.component.d.ts.map +1 -0
- package/lib/components/job-title/job-title.component.d.ts +38 -0
- package/lib/components/job-title/job-title.component.d.ts.map +1 -0
- package/lib/components/legal-disclaimar/legal-disclaimar.component.d.ts +39 -0
- package/lib/components/legal-disclaimar/legal-disclaimar.component.d.ts.map +1 -0
- package/lib/components/lexis-nexis/lexis-nexis.component.d.ts +59 -0
- package/lib/components/lexis-nexis/lexis-nexis.component.d.ts.map +1 -0
- package/lib/components/link/link.component.d.ts +35 -0
- package/lib/components/link/link.component.d.ts.map +1 -0
- package/lib/components/maintenance-detector/maintenance-detector.component.d.ts +16 -0
- package/lib/components/maintenance-detector/maintenance-detector.component.d.ts.map +1 -0
- package/lib/components/mask/mask.component.d.ts +12 -0
- package/lib/components/mask/mask.component.d.ts.map +1 -0
- package/lib/components/menu/menu.component.d.ts +54 -0
- package/lib/components/menu/menu.component.d.ts.map +1 -0
- package/lib/components/mfa/mfa.component.d.ts +72 -0
- package/lib/components/mfa/mfa.component.d.ts.map +1 -0
- package/lib/components/mfa-popup/mfa-popup.component.d.ts +19 -0
- package/lib/components/mfa-popup/mfa-popup.component.d.ts.map +1 -0
- package/lib/components/mfa2/mfa2.component.d.ts +48 -0
- package/lib/components/mfa2/mfa2.component.d.ts.map +1 -0
- package/lib/components/money-expect/money-expect.component.d.ts +19 -0
- package/lib/components/money-expect/money-expect.component.d.ts.map +1 -0
- package/lib/components/msg/msg.component.d.ts +11 -0
- package/lib/components/msg/msg.component.d.ts.map +1 -0
- package/lib/components/news/news.component.d.ts +15 -0
- package/lib/components/news/news.component.d.ts.map +1 -0
- package/lib/components/overlay-info/overlay-info.component.d.ts +35 -0
- package/lib/components/overlay-info/overlay-info.component.d.ts.map +1 -0
- package/lib/components/page/page.component.d.ts +24 -0
- package/lib/components/page/page.component.d.ts.map +1 -0
- package/lib/components/profile/profile.component.d.ts +74 -0
- package/lib/components/profile/profile.component.d.ts.map +1 -0
- package/lib/components/profile-redirect/profile-redirect.component.d.ts +14 -0
- package/lib/components/profile-redirect/profile-redirect.component.d.ts.map +1 -0
- package/lib/components/questionnaire/AppValidators.d.ts +16 -0
- package/lib/components/questionnaire/AppValidators.d.ts.map +1 -0
- package/lib/components/questionnaire/FbConstants.d.ts +8 -0
- package/lib/components/questionnaire/FbConstants.d.ts.map +1 -0
- package/lib/components/questionnaire/SelectItem.d.ts +5 -0
- package/lib/components/questionnaire/SelectItem.d.ts.map +1 -0
- package/lib/components/questionnaire/account-success/account-success.page.d.ts +61 -0
- package/lib/components/questionnaire/account-success/account-success.page.d.ts.map +1 -0
- package/lib/components/questionnaire/common-success/common-success.page.d.ts +77 -0
- package/lib/components/questionnaire/common-success/common-success.page.d.ts.map +1 -0
- package/lib/components/questionnaire/dynamic-form-panel.component.d.ts +47 -0
- package/lib/components/questionnaire/dynamic-form-panel.component.d.ts.map +1 -0
- package/lib/components/questionnaire/dynamic-form-question.component.d.ts +128 -0
- package/lib/components/questionnaire/dynamic-form-question.component.d.ts.map +1 -0
- package/lib/components/questionnaire/dynamic-form.component.d.ts +161 -0
- package/lib/components/questionnaire/dynamic-form.component.d.ts.map +1 -0
- package/lib/components/questionnaire/form-builder/form-builder.page.d.ts +74 -0
- package/lib/components/questionnaire/form-builder/form-builder.page.d.ts.map +1 -0
- package/lib/components/questionnaire/input-focus.directive.d.ts +12 -0
- package/lib/components/questionnaire/input-focus.directive.d.ts.map +1 -0
- package/lib/components/questionnaire/multi-questionnaire/multi-questionnaire.component.d.ts +39 -0
- package/lib/components/questionnaire/multi-questionnaire/multi-questionnaire.component.d.ts.map +1 -0
- package/lib/components/questionnaire/question-base.d.ts +17 -0
- package/lib/components/questionnaire/question-base.d.ts.map +1 -0
- package/lib/components/questionnaire/question-control.service.d.ts +21 -0
- package/lib/components/questionnaire/question-control.service.d.ts.map +1 -0
- package/lib/components/questionnaire/question.service.d.ts +19 -0
- package/lib/components/questionnaire/question.service.d.ts.map +1 -0
- package/lib/components/questionnaire/render-questionnaire/render-questionnaire.page.d.ts +83 -0
- package/lib/components/questionnaire/render-questionnaire/render-questionnaire.page.d.ts.map +1 -0
- package/lib/components/read-more/read-more.component.d.ts +15 -0
- package/lib/components/read-more/read-more.component.d.ts.map +1 -0
- package/lib/components/requalify-lift-previous-issues/requalify-lift-previous-issues.component.d.ts +68 -0
- package/lib/components/requalify-lift-previous-issues/requalify-lift-previous-issues.component.d.ts.map +1 -0
- package/lib/components/search-employer/search-employer.component.d.ts +40 -0
- package/lib/components/search-employer/search-employer.component.d.ts.map +1 -0
- package/lib/components/security-question/security-question.component.d.ts +37 -0
- package/lib/components/security-question/security-question.component.d.ts.map +1 -0
- package/lib/components/select/select.component.d.ts +56 -0
- package/lib/components/select/select.component.d.ts.map +1 -0
- package/lib/components/sign-ssn/sign-ssn.component.d.ts +34 -0
- package/lib/components/sign-ssn/sign-ssn.component.d.ts.map +1 -0
- package/lib/components/ssn/ssn.component.d.ts +12 -0
- package/lib/components/ssn/ssn.component.d.ts.map +1 -0
- package/lib/components/ssn-reverify/ssn-reverify.component.d.ts +27 -0
- package/lib/components/ssn-reverify/ssn-reverify.component.d.ts.map +1 -0
- package/lib/components/test/test.component.d.ts +9 -0
- package/lib/components/test/test.component.d.ts.map +1 -0
- package/lib/components/user-login/user-login.component.d.ts +82 -0
- package/lib/components/user-login/user-login.component.d.ts.map +1 -0
- package/lib/components/weekly-cert-employer/weekly-cert-employer.component.d.ts +67 -0
- package/lib/components/weekly-cert-employer/weekly-cert-employer.component.d.ts.map +1 -0
- package/lib/components/weekly-cert-employer-grid/weekly-cert-employer-grid.component.d.ts +47 -0
- package/lib/components/weekly-cert-employer-grid/weekly-cert-employer-grid.component.d.ts.map +1 -0
- package/lib/directives/auto-focus/auto-focus.directive.d.ts +13 -0
- package/lib/directives/auto-focus/auto-focus.directive.d.ts.map +1 -0
- package/lib/directives/caps-lock.directive.d.ts +12 -0
- package/lib/directives/caps-lock.directive.d.ts.map +1 -0
- package/lib/directives/required-roles/required-roles.directive.d.ts +15 -0
- package/lib/directives/required-roles/required-roles.directive.d.ts.map +1 -0
- package/lib/enums/EmailStatusEnum.d.ts +8 -0
- package/lib/enums/EmailStatusEnum.d.ts.map +1 -0
- package/lib/guards/auth.guard.d.ts +29 -0
- package/lib/guards/auth.guard.d.ts.map +1 -0
- package/lib/guards/no-login/no-login.guard.d.ts +12 -0
- package/lib/guards/no-login/no-login.guard.d.ts.map +1 -0
- package/lib/interceptors/error-interceptor/http-error-interceptor.d.ts +23 -0
- package/lib/interceptors/error-interceptor/http-error-interceptor.d.ts.map +1 -0
- package/lib/interceptors/header-interceptor/http-header.interceptor.d.ts +22 -0
- package/lib/interceptors/header-interceptor/http-header.interceptor.d.ts.map +1 -0
- package/lib/models/AddressComponentModel.d.ts +14 -0
- package/lib/models/AddressComponentModel.d.ts.map +1 -0
- package/lib/models/BankDetailsComponentModel.d.ts +12 -0
- package/lib/models/BankDetailsComponentModel.d.ts.map +1 -0
- package/lib/models/BankDetailsModel.d.ts +5 -0
- package/lib/models/BankDetailsModel.d.ts.map +1 -0
- package/lib/models/CinRequalificationCriteriaModel.d.ts +11 -0
- package/lib/models/CinRequalificationCriteriaModel.d.ts.map +1 -0
- package/lib/models/EmployerDetailSearchResult.d.ts +51 -0
- package/lib/models/EmployerDetailSearchResult.d.ts.map +1 -0
- package/lib/models/ErrorModel.d.ts +7 -0
- package/lib/models/ErrorModel.d.ts.map +1 -0
- package/lib/models/FileModel.d.ts +5 -0
- package/lib/models/FileModel.d.ts.map +1 -0
- package/lib/models/LexisNexisAccountCreationModel.d.ts +15 -0
- package/lib/models/LexisNexisAccountCreationModel.d.ts.map +1 -0
- package/lib/models/LexisNexisAuthSelectionRequestModel.d.ts +16 -0
- package/lib/models/LexisNexisAuthSelectionRequestModel.d.ts.map +1 -0
- package/lib/models/LexisNexisAuthSelectionResponseModel.d.ts +39 -0
- package/lib/models/LexisNexisAuthSelectionResponseModel.d.ts.map +1 -0
- package/lib/models/LexisNexisEnabledResponseModel.d.ts +5 -0
- package/lib/models/LexisNexisEnabledResponseModel.d.ts.map +1 -0
- package/lib/models/LexisNexisResponseModel.d.ts +7 -0
- package/lib/models/LexisNexisResponseModel.d.ts.map +1 -0
- package/lib/models/LibConstants.d.ts +125 -0
- package/lib/models/LibConstants.d.ts.map +1 -0
- package/lib/models/NewsAndAnnouncementModel.d.ts +6 -0
- package/lib/models/NewsAndAnnouncementModel.d.ts.map +1 -0
- package/lib/models/NotificationModel.d.ts +11 -0
- package/lib/models/NotificationModel.d.ts.map +1 -0
- package/lib/models/OtpAuthModel.d.ts +8 -0
- package/lib/models/OtpAuthModel.d.ts.map +1 -0
- package/lib/models/PartialEmploymentModel.d.ts +6 -0
- package/lib/models/PartialEmploymentModel.d.ts.map +1 -0
- package/lib/models/PaymentComponentModel.d.ts +8 -0
- package/lib/models/PaymentComponentModel.d.ts.map +1 -0
- package/lib/models/RequalifyLiftPageModel.d.ts +12 -0
- package/lib/models/RequalifyLiftPageModel.d.ts.map +1 -0
- package/lib/models/SecurityQuestionModel.d.ts +7 -0
- package/lib/models/SecurityQuestionModel.d.ts.map +1 -0
- package/lib/models/SsaVerificationModel.d.ts +9 -0
- package/lib/models/SsaVerificationModel.d.ts.map +1 -0
- package/lib/models/TrendModel.d.ts +14 -0
- package/lib/models/TrendModel.d.ts.map +1 -0
- package/lib/models/UserDetailsModel.d.ts +10 -0
- package/lib/models/UserDetailsModel.d.ts.map +1 -0
- package/lib/models/UserModel.d.ts +48 -0
- package/lib/models/UserModel.d.ts.map +1 -0
- package/lib/models/case/CaseAttachmentModel.d.ts +6 -0
- package/lib/models/case/CaseAttachmentModel.d.ts.map +1 -0
- package/lib/models/claimant/ClaimantModel.d.ts +23 -0
- package/lib/models/claimant/ClaimantModel.d.ts.map +1 -0
- package/lib/models/claimant/JobResultsData.d.ts +8 -0
- package/lib/models/claimant/JobResultsData.d.ts.map +1 -0
- package/lib/models/claimant/MatchingJobs.d.ts +13 -0
- package/lib/models/claimant/MatchingJobs.d.ts.map +1 -0
- package/lib/models/claimant/ResetPasswordModel.d.ts +9 -0
- package/lib/models/claimant/ResetPasswordModel.d.ts.map +1 -0
- package/lib/models/cmp/CaseCoreModel.d.ts +21 -0
- package/lib/models/cmp/CaseCoreModel.d.ts.map +1 -0
- package/lib/models/cmp/ComplaintCategoryModel.d.ts +9 -0
- package/lib/models/cmp/ComplaintCategoryModel.d.ts.map +1 -0
- package/lib/models/cmp/ComplaintCategoryOutputModel.d.ts +6 -0
- package/lib/models/cmp/ComplaintCategoryOutputModel.d.ts.map +1 -0
- package/lib/models/cmp/ContactUsModel.d.ts +23 -0
- package/lib/models/cmp/ContactUsModel.d.ts.map +1 -0
- package/lib/models/cmp/EmailTemplateModel.d.ts +7 -0
- package/lib/models/cmp/EmailTemplateModel.d.ts.map +1 -0
- package/lib/models/cmp/contactUsInqueryModel.d.ts +47 -0
- package/lib/models/cmp/contactUsInqueryModel.d.ts.map +1 -0
- package/lib/models/cmp/messageRourceModel.d.ts +6 -0
- package/lib/models/cmp/messageRourceModel.d.ts.map +1 -0
- package/lib/models/dashboard-model.d.ts +44 -0
- package/lib/models/dashboard-model.d.ts.map +1 -0
- package/lib/models/dependent.model.d.ts +20 -0
- package/lib/models/dependent.model.d.ts.map +1 -0
- package/lib/models/questionnaire/AutocoderModel.d.ts +9 -0
- package/lib/models/questionnaire/AutocoderModel.d.ts.map +1 -0
- package/lib/models/questionnaire/ClaimAppEmpRequestModel.d.ts +9 -0
- package/lib/models/questionnaire/ClaimAppEmpRequestModel.d.ts.map +1 -0
- package/lib/models/questionnaire/ClaimAppEmpResponseModel.d.ts +18 -0
- package/lib/models/questionnaire/ClaimAppEmpResponseModel.d.ts.map +1 -0
- package/lib/models/questionnaire/ClaimAppEmployerDetailsModel.d.ts +156 -0
- package/lib/models/questionnaire/ClaimAppEmployerDetailsModel.d.ts.map +1 -0
- package/lib/models/questionnaire/ClaimOnlyEmployerDataModel.d.ts +18 -0
- package/lib/models/questionnaire/ClaimOnlyEmployerDataModel.d.ts.map +1 -0
- package/lib/models/questionnaire/ComboModel.d.ts +178 -0
- package/lib/models/questionnaire/ComboModel.d.ts.map +1 -0
- package/lib/models/questionnaire/ElementsModel.d.ts +71 -0
- package/lib/models/questionnaire/ElementsModel.d.ts.map +1 -0
- package/lib/models/questionnaire/EmployerDetailSearchResult.d.ts +18 -0
- package/lib/models/questionnaire/EmployerDetailSearchResult.d.ts.map +1 -0
- package/lib/models/questionnaire/EmployerWagesModel.d.ts +5 -0
- package/lib/models/questionnaire/EmployerWagesModel.d.ts.map +1 -0
- package/lib/models/questionnaire/FBConfigModel.d.ts +12 -0
- package/lib/models/questionnaire/FBConfigModel.d.ts.map +1 -0
- package/lib/models/questionnaire/KeyValueModel.d.ts +11 -0
- package/lib/models/questionnaire/KeyValueModel.d.ts.map +1 -0
- package/lib/models/questionnaire/LegalDiscaimarModel.d.ts +11 -0
- package/lib/models/questionnaire/LegalDiscaimarModel.d.ts.map +1 -0
- package/lib/models/questionnaire/LoaderModel.d.ts +5 -0
- package/lib/models/questionnaire/LoaderModel.d.ts.map +1 -0
- package/lib/models/questionnaire/PollingStatusModel.d.ts +7 -0
- package/lib/models/questionnaire/PollingStatusModel.d.ts.map +1 -0
- package/lib/models/questionnaire/QtrYearEmployerWageModel.d.ts +9 -0
- package/lib/models/questionnaire/QtrYearEmployerWageModel.d.ts.map +1 -0
- package/lib/models/questionnaire/QuestionnaireQueryModel.d.ts +24 -0
- package/lib/models/questionnaire/QuestionnaireQueryModel.d.ts.map +1 -0
- package/lib/models/questionnaire/QuestionnaireReturnModel.d.ts +21 -0
- package/lib/models/questionnaire/QuestionnaireReturnModel.d.ts.map +1 -0
- package/lib/models/questionnaire/QuestionnaireSaveModel.d.ts +26 -0
- package/lib/models/questionnaire/QuestionnaireSaveModel.d.ts.map +1 -0
- package/lib/models/questionnaire/RequalifyLiftIssuesModel.d.ts +14 -0
- package/lib/models/questionnaire/RequalifyLiftIssuesModel.d.ts.map +1 -0
- package/lib/models/questionnaire/ServiceActionResponseModel.d.ts +7 -0
- package/lib/models/questionnaire/ServiceActionResponseModel.d.ts.map +1 -0
- package/lib/models/questionnaire/StatusModel.d.ts +16 -0
- package/lib/models/questionnaire/StatusModel.d.ts.map +1 -0
- package/lib/models/questionnaire/SuccessPageElement.d.ts +9 -0
- package/lib/models/questionnaire/SuccessPageElement.d.ts.map +1 -0
- package/lib/models/questionnaire/UI512AResponseModel.d.ts +13 -0
- package/lib/models/questionnaire/UI512AResponseModel.d.ts.map +1 -0
- package/lib/models/questionnaire/ValidationModel.d.ts +18 -0
- package/lib/models/questionnaire/ValidationModel.d.ts.map +1 -0
- package/lib/ngx-reusa-app-lib.component.d.ts +9 -0
- package/lib/ngx-reusa-app-lib.component.d.ts.map +1 -0
- package/lib/ngx-reusa-app-lib.module.d.ts +155 -0
- package/lib/ngx-reusa-app-lib.module.d.ts.map +1 -0
- package/lib/ngx-reusa-app-lib.service.d.ts +7 -0
- package/lib/ngx-reusa-app-lib.service.d.ts.map +1 -0
- package/lib/pages/BasePage.d.ts +32 -0
- package/lib/pages/BasePage.d.ts.map +1 -0
- package/lib/pages/common/accessibility-policy/accessibility-policy.page.d.ts +12 -0
- package/lib/pages/common/accessibility-policy/accessibility-policy.page.d.ts.map +1 -0
- package/lib/pages/common/change-password/change-password.page.d.ts +41 -0
- package/lib/pages/common/change-password/change-password.page.d.ts.map +1 -0
- package/lib/pages/common/landing/landing.component.d.ts +25 -0
- package/lib/pages/common/landing/landing.component.d.ts.map +1 -0
- package/lib/pages/common/landing2/landing2.component.d.ts +31 -0
- package/lib/pages/common/landing2/landing2.component.d.ts.map +1 -0
- package/lib/pages/common/login/login.component.d.ts +65 -0
- package/lib/pages/common/login/login.component.d.ts.map +1 -0
- package/lib/pages/common/not-found/not-found.page.d.ts +9 -0
- package/lib/pages/common/not-found/not-found.page.d.ts.map +1 -0
- package/lib/pages/common/privacy-disclaimer/privacy-disclaimer.page.d.ts +12 -0
- package/lib/pages/common/privacy-disclaimer/privacy-disclaimer.page.d.ts.map +1 -0
- package/lib/pages/common/security-policy/security-policy.page.d.ts +12 -0
- package/lib/pages/common/security-policy/security-policy.page.d.ts.map +1 -0
- package/lib/pages/common/unauthorized/unauthorized.page.d.ts +9 -0
- package/lib/pages/common/unauthorized/unauthorized.page.d.ts.map +1 -0
- package/lib/pages/popovers/language/language.page.d.ts +17 -0
- package/lib/pages/popovers/language/language.page.d.ts.map +1 -0
- package/lib/pages/popovers/my-notifications/my-notifications.page.d.ts +22 -0
- package/lib/pages/popovers/my-notifications/my-notifications.page.d.ts.map +1 -0
- package/lib/pages/popovers/my-profile/my-profile.page.d.ts +21 -0
- package/lib/pages/popovers/my-profile/my-profile.page.d.ts.map +1 -0
- package/lib/pages/popovers/user-search/user-search.component.d.ts +32 -0
- package/lib/pages/popovers/user-search/user-search.component.d.ts.map +1 -0
- package/lib/pipes/filter.pipe.d.ts +8 -0
- package/lib/pipes/filter.pipe.d.ts.map +1 -0
- package/lib/pipes/mask/mask.email.pipe.d.ts +11 -0
- package/lib/pipes/mask/mask.email.pipe.d.ts.map +1 -0
- package/lib/pipes/proper-case/proper-case.pipe.d.ts +9 -0
- package/lib/pipes/proper-case/proper-case.pipe.d.ts.map +1 -0
- package/lib/pipes/translate/dynamic-translate.pipe.d.ts +11 -0
- package/lib/pipes/translate/dynamic-translate.pipe.d.ts.map +1 -0
- package/lib/pipes/trust-html/trust-html.pipe.d.ts +11 -0
- package/lib/pipes/trust-html/trust-html.pipe.d.ts.map +1 -0
- package/lib/services/base-service.d.ts +93 -0
- package/lib/services/base-service.d.ts.map +1 -0
- package/lib/services/captcha/captcha.service.d.ts +16 -0
- package/lib/services/captcha/captcha.service.d.ts.map +1 -0
- package/lib/services/case-service/case.service.d.ts +20 -0
- package/lib/services/case-service/case.service.d.ts.map +1 -0
- package/lib/services/chatbot/chatbot.service.d.ts +61 -0
- package/lib/services/chatbot/chatbot.service.d.ts.map +1 -0
- package/lib/services/chatbot/script.const.d.ts +16 -0
- package/lib/services/chatbot/script.const.d.ts.map +1 -0
- package/lib/services/claimant/claimant.service.d.ts +18 -0
- package/lib/services/claimant/claimant.service.d.ts.map +1 -0
- package/lib/services/claimant-context/claimant-context.service.d.ts +19 -0
- package/lib/services/claimant-context/claimant-context.service.d.ts.map +1 -0
- package/lib/services/claimant-service/claimant-usps-redirect.service.d.ts +16 -0
- package/lib/services/claimant-service/claimant-usps-redirect.service.d.ts.map +1 -0
- package/lib/services/claimant-service/claimant.service.d.ts +26 -0
- package/lib/services/claimant-service/claimant.service.d.ts.map +1 -0
- package/lib/services/claims/claims.service.d.ts +42 -0
- package/lib/services/claims/claims.service.d.ts.map +1 -0
- package/lib/services/cmp-service/cmp.service.d.ts +34 -0
- package/lib/services/cmp-service/cmp.service.d.ts.map +1 -0
- package/lib/services/dms-service/dms.service.d.ts +24 -0
- package/lib/services/dms-service/dms.service.d.ts.map +1 -0
- package/lib/services/fpjs/fingerprint.service.d.ts +19 -0
- package/lib/services/fpjs/fingerprint.service.d.ts.map +1 -0
- package/lib/services/google-analytics/google-analytics.service.d.ts +9 -0
- package/lib/services/google-analytics/google-analytics.service.d.ts.map +1 -0
- package/lib/services/help/help.service.d.ts +26 -0
- package/lib/services/help/help.service.d.ts.map +1 -0
- package/lib/services/idle/idle.service.d.ts +44 -0
- package/lib/services/idle/idle.service.d.ts.map +1 -0
- package/lib/services/lexis-nexis/lexis.nexis.service.d.ts +26 -0
- package/lib/services/lexis-nexis/lexis.nexis.service.d.ts.map +1 -0
- package/lib/services/logger/logger.service.d.ts +32 -0
- package/lib/services/logger/logger.service.d.ts.map +1 -0
- package/lib/services/login/login.service.d.ts +79 -0
- package/lib/services/login/login.service.d.ts.map +1 -0
- package/lib/services/maintenance/maintenance.service.d.ts +16 -0
- package/lib/services/maintenance/maintenance.service.d.ts.map +1 -0
- package/lib/services/notification/notification.service.d.ts +39 -0
- package/lib/services/notification/notification.service.d.ts.map +1 -0
- package/lib/services/ovp/ovp.service.d.ts +17 -0
- package/lib/services/ovp/ovp.service.d.ts.map +1 -0
- package/lib/services/questionnaire/questionnaire.service.d.ts +36 -0
- package/lib/services/questionnaire/questionnaire.service.d.ts.map +1 -0
- package/lib/services/questionnaire/validation.service.d.ts +82 -0
- package/lib/services/questionnaire/validation.service.d.ts.map +1 -0
- package/lib/services/security-service/security.service.d.ts +18 -0
- package/lib/services/security-service/security.service.d.ts.map +1 -0
- package/lib/services/tour/tour.service.d.ts +25 -0
- package/lib/services/tour/tour.service.d.ts.map +1 -0
- package/lib/services/util/util.service.d.ts +194 -0
- package/lib/services/util/util.service.d.ts.map +1 -0
- package/lib/services/weekly-cert/weekly-cert-v2.service.d.ts +17 -0
- package/lib/services/weekly-cert/weekly-cert-v2.service.d.ts.map +1 -0
- package/lib/validations/AppRegex.d.ts +50 -0
- package/lib/validations/AppRegex.d.ts.map +1 -0
- package/lib/validations/AppValidators.d.ts +82 -0
- package/lib/validations/AppValidators.d.ts.map +1 -0
- package/package.json +28 -0
- package/public-api.d.ts +128 -0
- package/public-api.d.ts.map +1 -0
|
@@ -0,0 +1,505 @@
|
|
|
1
|
+
import { Component, EventEmitter, Output, ViewChild } from '@angular/core';
|
|
2
|
+
import { ComboOption } from '../../models/questionnaire/ComboModel';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "../../services/util/util.service";
|
|
5
|
+
import * as i2 from "../../services/login/login.service";
|
|
6
|
+
import * as i3 from "@ionic/angular";
|
|
7
|
+
import * as i4 from "../../services/claimant-service/claimant.service";
|
|
8
|
+
import * as i5 from "@angular/router";
|
|
9
|
+
import * as i6 from "../../services/claimant-service/claimant-usps-redirect.service";
|
|
10
|
+
import * as i7 from "../../services/lexis-nexis/lexis.nexis.service";
|
|
11
|
+
import * as i8 from "@angular/common";
|
|
12
|
+
import * as i9 from "primeng/api";
|
|
13
|
+
import * as i10 from "@angular/forms";
|
|
14
|
+
import * as i11 from "primeng/dialog";
|
|
15
|
+
import * as i12 from "primeng/selectbutton";
|
|
16
|
+
import * as i13 from "../questionnaire/form-builder/form-builder.page";
|
|
17
|
+
import * as i14 from "../security-question/security-question.component";
|
|
18
|
+
import * as i15 from "../lexis-nexis/lexis-nexis.component";
|
|
19
|
+
import * as i16 from "@ngx-translate/core";
|
|
20
|
+
const _c0 = ["fb"];
|
|
21
|
+
function ProfileComponent_ng_template_1_Template(rf, ctx) { if (rf & 1) {
|
|
22
|
+
const _r8 = i0.ɵɵgetCurrentView();
|
|
23
|
+
i0.ɵɵelementStart(0, "ion-grid")(1, "ion-row")(2, "ion-col", 7);
|
|
24
|
+
i0.ɵɵtext(3);
|
|
25
|
+
i0.ɵɵpipe(4, "translate");
|
|
26
|
+
i0.ɵɵelementStart(5, "span", 8);
|
|
27
|
+
i0.ɵɵtext(6);
|
|
28
|
+
i0.ɵɵelementEnd()()();
|
|
29
|
+
i0.ɵɵelementStart(7, "ion-row")(8, "ion-col")(9, "p-selectButton", 9);
|
|
30
|
+
i0.ɵɵlistener("ngModelChange", function ProfileComponent_ng_template_1_Template_p_selectButton_ngModelChange_9_listener($event) { i0.ɵɵrestoreView(_r8); const ctx_r7 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r7.selected = $event); })("onOptionClick", function ProfileComponent_ng_template_1_Template_p_selectButton_onOptionClick_9_listener($event) { i0.ɵɵrestoreView(_r8); const ctx_r9 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r9.onValueChange($event)); });
|
|
31
|
+
i0.ɵɵelementEnd()()()();
|
|
32
|
+
} if (rf & 2) {
|
|
33
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
|
34
|
+
i0.ɵɵadvance(3);
|
|
35
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(4, 4, "header.account.your.account"), "");
|
|
36
|
+
i0.ɵɵadvance(3);
|
|
37
|
+
i0.ɵɵtextInterpolate1("(CID ", ctx_r0.ls.getUser().claimantId, ")");
|
|
38
|
+
i0.ɵɵadvance(3);
|
|
39
|
+
i0.ɵɵproperty("options", ctx_r0.profileOpts)("ngModel", ctx_r0.selected);
|
|
40
|
+
} }
|
|
41
|
+
function ProfileComponent_div_2_div_1_Template(rf, ctx) { if (rf & 1) {
|
|
42
|
+
i0.ɵɵelementStart(0, "div");
|
|
43
|
+
i0.ɵɵtext(1);
|
|
44
|
+
i0.ɵɵelementEnd();
|
|
45
|
+
} if (rf & 2) {
|
|
46
|
+
const ctx_r10 = i0.ɵɵnextContext(2);
|
|
47
|
+
i0.ɵɵadvance(1);
|
|
48
|
+
i0.ɵɵtextInterpolate1(" ", ctx_r10.getSecQuestionsPaymentOptions(), " ");
|
|
49
|
+
} }
|
|
50
|
+
function ProfileComponent_div_2_app_form_builder_2_Template(rf, ctx) { if (rf & 1) {
|
|
51
|
+
const _r16 = i0.ɵɵgetCurrentView();
|
|
52
|
+
i0.ɵɵelementStart(0, "app-form-builder", 12, 13);
|
|
53
|
+
i0.ɵɵlistener("onError", function ProfileComponent_div_2_app_form_builder_2_Template_app_form_builder_onError_0_listener($event) { i0.ɵɵrestoreView(_r16); const ctx_r15 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r15.handleError($event)); })("onComplete", function ProfileComponent_div_2_app_form_builder_2_Template_app_form_builder_onComplete_0_listener($event) { i0.ɵɵrestoreView(_r16); const ctx_r17 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r17.success($event)); });
|
|
54
|
+
i0.ɵɵelementEnd();
|
|
55
|
+
} if (rf & 2) {
|
|
56
|
+
const ctx_r11 = i0.ɵɵnextContext(2);
|
|
57
|
+
i0.ɵɵproperty("flowKey", ctx_r11.selected)("showOnlyQuestion", true)("hideHeader", true)("hideFooter", true)("sizeXs", 12)("sizeSm", 12)("sizeMd", 12)("sizeLg", 12)("sizeXl", 12)("offsetXl", 0)("offsetLg", 0);
|
|
58
|
+
} }
|
|
59
|
+
function ProfileComponent_div_2_app_form_builder_3_Template(rf, ctx) { if (rf & 1) {
|
|
60
|
+
const _r20 = i0.ɵɵgetCurrentView();
|
|
61
|
+
i0.ɵɵelementStart(0, "app-form-builder", 12, 13);
|
|
62
|
+
i0.ɵɵlistener("onError", function ProfileComponent_div_2_app_form_builder_3_Template_app_form_builder_onError_0_listener($event) { i0.ɵɵrestoreView(_r20); const ctx_r19 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r19.handleError($event)); })("onComplete", function ProfileComponent_div_2_app_form_builder_3_Template_app_form_builder_onComplete_0_listener($event) { i0.ɵɵrestoreView(_r20); const ctx_r21 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r21.success($event)); });
|
|
63
|
+
i0.ɵɵelementEnd();
|
|
64
|
+
} if (rf & 2) {
|
|
65
|
+
const ctx_r12 = i0.ɵɵnextContext(2);
|
|
66
|
+
i0.ɵɵproperty("flowKey", ctx_r12.selected)("showOnlyQuestion", true)("hideHeader", true)("hideFooter", true)("sizeXs", 12)("sizeSm", 12)("sizeMd", 12)("sizeLg", 12)("sizeXl", 12)("offsetXl", 0)("offsetLg", 0);
|
|
67
|
+
} }
|
|
68
|
+
function ProfileComponent_div_2_div_4_app_form_builder_1_Template(rf, ctx) { if (rf & 1) {
|
|
69
|
+
const _r25 = i0.ɵɵgetCurrentView();
|
|
70
|
+
i0.ɵɵelementStart(0, "app-form-builder", 12, 13);
|
|
71
|
+
i0.ɵɵlistener("onError", function ProfileComponent_div_2_div_4_app_form_builder_1_Template_app_form_builder_onError_0_listener($event) { i0.ɵɵrestoreView(_r25); const ctx_r24 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r24.handleError($event)); })("onComplete", function ProfileComponent_div_2_div_4_app_form_builder_1_Template_app_form_builder_onComplete_0_listener($event) { i0.ɵɵrestoreView(_r25); const ctx_r26 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r26.success($event)); });
|
|
72
|
+
i0.ɵɵelementEnd();
|
|
73
|
+
} if (rf & 2) {
|
|
74
|
+
const ctx_r22 = i0.ɵɵnextContext(3);
|
|
75
|
+
i0.ɵɵproperty("flowKey", ctx_r22.selected)("showOnlyQuestion", true)("hideHeader", true)("hideFooter", true)("sizeXs", 12)("sizeSm", 12)("sizeMd", 12)("sizeLg", 12)("sizeXl", 12)("offsetXl", 0)("offsetLg", 0);
|
|
76
|
+
} }
|
|
77
|
+
function ProfileComponent_div_2_div_4_Template(rf, ctx) { if (rf & 1) {
|
|
78
|
+
i0.ɵɵelementStart(0, "div");
|
|
79
|
+
i0.ɵɵtemplate(1, ProfileComponent_div_2_div_4_app_form_builder_1_Template, 2, 11, "app-form-builder", 11);
|
|
80
|
+
i0.ɵɵelementEnd();
|
|
81
|
+
} if (rf & 2) {
|
|
82
|
+
const ctx_r13 = i0.ɵɵnextContext(2);
|
|
83
|
+
i0.ɵɵadvance(1);
|
|
84
|
+
i0.ɵɵproperty("ngIf", ctx_r13.selected == "payment-details");
|
|
85
|
+
} }
|
|
86
|
+
function ProfileComponent_div_2_Template(rf, ctx) { if (rf & 1) {
|
|
87
|
+
i0.ɵɵelementStart(0, "div", 10);
|
|
88
|
+
i0.ɵɵtemplate(1, ProfileComponent_div_2_div_1_Template, 2, 1, "div", 3)(2, ProfileComponent_div_2_app_form_builder_2_Template, 2, 11, "app-form-builder", 11)(3, ProfileComponent_div_2_app_form_builder_3_Template, 2, 11, "app-form-builder", 11)(4, ProfileComponent_div_2_div_4_Template, 2, 1, "div", 3);
|
|
89
|
+
i0.ɵɵelementEnd();
|
|
90
|
+
} if (rf & 2) {
|
|
91
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
|
92
|
+
i0.ɵɵadvance(1);
|
|
93
|
+
i0.ɵɵproperty("ngIf", ctx_r1.selected == "payment-details" && !ctx_r1.isPaymentOptionQuestionsEnabled && ctx_r1.isPaymentOptionDivEnabled);
|
|
94
|
+
i0.ɵɵadvance(1);
|
|
95
|
+
i0.ɵɵproperty("ngIf", ctx_r1.selected == "personal-details");
|
|
96
|
+
i0.ɵɵadvance(1);
|
|
97
|
+
i0.ɵɵproperty("ngIf", ctx_r1.selected == "contact-details");
|
|
98
|
+
i0.ɵɵadvance(1);
|
|
99
|
+
i0.ɵɵproperty("ngIf", ctx_r1.isPaymentOptionQuestionsEnabled);
|
|
100
|
+
} }
|
|
101
|
+
function ProfileComponent_div_3_Template(rf, ctx) { if (rf & 1) {
|
|
102
|
+
i0.ɵɵelementStart(0, "div")(1, "div", 14);
|
|
103
|
+
i0.ɵɵelement(2, "ion-icon", 15);
|
|
104
|
+
i0.ɵɵelementStart(3, "h1");
|
|
105
|
+
i0.ɵɵtext(4);
|
|
106
|
+
i0.ɵɵpipe(5, "translate");
|
|
107
|
+
i0.ɵɵelementEnd()()();
|
|
108
|
+
} if (rf & 2) {
|
|
109
|
+
i0.ɵɵadvance(4);
|
|
110
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(5, 1, "header.account.saved.successfully"));
|
|
111
|
+
} }
|
|
112
|
+
function ProfileComponent_div_4_Template(rf, ctx) { if (rf & 1) {
|
|
113
|
+
i0.ɵɵelementStart(0, "div")(1, "div", 14);
|
|
114
|
+
i0.ɵɵelement(2, "ion-icon", 16);
|
|
115
|
+
i0.ɵɵelementStart(3, "h1");
|
|
116
|
+
i0.ɵɵtext(4);
|
|
117
|
+
i0.ɵɵpipe(5, "translate");
|
|
118
|
+
i0.ɵɵelementEnd()()();
|
|
119
|
+
} if (rf & 2) {
|
|
120
|
+
const ctx_r3 = i0.ɵɵnextContext();
|
|
121
|
+
i0.ɵɵadvance(4);
|
|
122
|
+
i0.ɵɵtextInterpolate(ctx_r3.errorText ? ctx_r3.errorText : i0.ɵɵpipeBind1(5, 1, "header.account.could.not.process"));
|
|
123
|
+
} }
|
|
124
|
+
function ProfileComponent_ng_template_5_ion_button_10_Template(rf, ctx) { if (rf & 1) {
|
|
125
|
+
const _r29 = i0.ɵɵgetCurrentView();
|
|
126
|
+
i0.ɵɵelementStart(0, "ion-button", 22);
|
|
127
|
+
i0.ɵɵlistener("click", function ProfileComponent_ng_template_5_ion_button_10_Template_ion_button_click_0_listener() { i0.ɵɵrestoreView(_r29); const ctx_r28 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r28.save()); })("keydown.enter", function ProfileComponent_ng_template_5_ion_button_10_Template_ion_button_keydown_enter_0_listener() { i0.ɵɵrestoreView(_r29); const ctx_r30 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r30.save()); });
|
|
128
|
+
i0.ɵɵtext(1);
|
|
129
|
+
i0.ɵɵpipe(2, "translate");
|
|
130
|
+
i0.ɵɵelementEnd();
|
|
131
|
+
} if (rf & 2) {
|
|
132
|
+
const ctx_r27 = i0.ɵɵnextContext(2);
|
|
133
|
+
i0.ɵɵproperty("disabled", ctx_r27.isButtonDisabled);
|
|
134
|
+
i0.ɵɵadvance(1);
|
|
135
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 2, "header.account.save"));
|
|
136
|
+
} }
|
|
137
|
+
function ProfileComponent_ng_template_5_Template(rf, ctx) { if (rf & 1) {
|
|
138
|
+
const _r32 = i0.ɵɵgetCurrentView();
|
|
139
|
+
i0.ɵɵelementStart(0, "ion-grid")(1, "ion-row")(2, "ion-col", 17)(3, "ion-button", 18);
|
|
140
|
+
i0.ɵɵlistener("click", function ProfileComponent_ng_template_5_Template_ion_button_click_3_listener() { i0.ɵɵrestoreView(_r32); const ctx_r31 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r31.logout()); })("keydown.enter", function ProfileComponent_ng_template_5_Template_ion_button_keydown_enter_3_listener() { i0.ɵɵrestoreView(_r32); const ctx_r33 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r33.logout()); });
|
|
141
|
+
i0.ɵɵtext(4);
|
|
142
|
+
i0.ɵɵpipe(5, "translate");
|
|
143
|
+
i0.ɵɵelementEnd()();
|
|
144
|
+
i0.ɵɵelementStart(6, "ion-col", 19)(7, "ion-button", 20);
|
|
145
|
+
i0.ɵɵlistener("click", function ProfileComponent_ng_template_5_Template_ion_button_click_7_listener() { i0.ɵɵrestoreView(_r32); const ctx_r34 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r34.cancel()); })("keydown.enter", function ProfileComponent_ng_template_5_Template_ion_button_keydown_enter_7_listener() { i0.ɵɵrestoreView(_r32); const ctx_r35 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r35.cancel()); });
|
|
146
|
+
i0.ɵɵtext(8);
|
|
147
|
+
i0.ɵɵpipe(9, "translate");
|
|
148
|
+
i0.ɵɵelementEnd();
|
|
149
|
+
i0.ɵɵtemplate(10, ProfileComponent_ng_template_5_ion_button_10_Template, 3, 4, "ion-button", 21);
|
|
150
|
+
i0.ɵɵelementEnd()()();
|
|
151
|
+
} if (rf & 2) {
|
|
152
|
+
const ctx_r4 = i0.ɵɵnextContext();
|
|
153
|
+
i0.ɵɵadvance(3);
|
|
154
|
+
i0.ɵɵproperty("disabled", ctx_r4.isButtonDisabled);
|
|
155
|
+
i0.ɵɵadvance(1);
|
|
156
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(5, 5, "header.account.logout"));
|
|
157
|
+
i0.ɵɵadvance(3);
|
|
158
|
+
i0.ɵɵproperty("disabled", ctx_r4.isButtonDisabled);
|
|
159
|
+
i0.ɵɵadvance(1);
|
|
160
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(9, 7, "header.account.close"));
|
|
161
|
+
i0.ɵɵadvance(2);
|
|
162
|
+
i0.ɵɵproperty("ngIf", !(ctx_r4.showSuccess || ctx_r4.showError));
|
|
163
|
+
} }
|
|
164
|
+
function ProfileComponent_app_lexis_nexis_6_Template(rf, ctx) { if (rf & 1) {
|
|
165
|
+
const _r37 = i0.ɵɵgetCurrentView();
|
|
166
|
+
i0.ɵɵelementStart(0, "app-lexis-nexis", 23);
|
|
167
|
+
i0.ɵɵlistener("success", function ProfileComponent_app_lexis_nexis_6_Template_app_lexis_nexis_success_0_listener() { i0.ɵɵrestoreView(_r37); const ctx_r36 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r36.onSecurityQuestionSuccess()); })("error", function ProfileComponent_app_lexis_nexis_6_Template_app_lexis_nexis_error_0_listener() { i0.ɵɵrestoreView(_r37); const ctx_r38 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r38.triggerUdol()); })("usps", function ProfileComponent_app_lexis_nexis_6_Template_app_lexis_nexis_usps_0_listener() { i0.ɵɵrestoreView(_r37); const ctx_r39 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r39.triggerUdol()); });
|
|
168
|
+
i0.ɵɵelementEnd();
|
|
169
|
+
} if (rf & 2) {
|
|
170
|
+
const ctx_r5 = i0.ɵɵnextContext();
|
|
171
|
+
i0.ɵɵproperty("display", ctx_r5.isLexisNexisPopupEnabled)("userName", ctx_r5.userName)("customerEventType", ctx_r5.customerEventType);
|
|
172
|
+
} }
|
|
173
|
+
function ProfileComponent_app_security_question_7_Template(rf, ctx) { if (rf & 1) {
|
|
174
|
+
const _r41 = i0.ɵɵgetCurrentView();
|
|
175
|
+
i0.ɵɵelementStart(0, "app-security-question", 24);
|
|
176
|
+
i0.ɵɵlistener("success", function ProfileComponent_app_security_question_7_Template_app_security_question_success_0_listener() { i0.ɵɵrestoreView(_r41); const ctx_r40 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r40.onSecurityQuestionSuccess()); })("clear", function ProfileComponent_app_security_question_7_Template_app_security_question_clear_0_listener() { i0.ɵɵrestoreView(_r41); const ctx_r42 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r42.enableLexisNexis()); });
|
|
177
|
+
i0.ɵɵelementEnd();
|
|
178
|
+
} if (rf & 2) {
|
|
179
|
+
const ctx_r6 = i0.ɵɵnextContext();
|
|
180
|
+
i0.ɵɵproperty("display", ctx_r6.isSecurityQuestionEnabled)("questionsAndAnswers", ctx_r6.usersQuesAndAns)("questionsAndKeysOfUser", ctx_r6.mappedKeysQuestionsForUser);
|
|
181
|
+
} }
|
|
182
|
+
const _c1 = () => ({ width: "60vw" });
|
|
183
|
+
const _c2 = () => ({ "1024px": "75vw", "768px": "85vw", "640px": "100vw" });
|
|
184
|
+
export class ProfileComponent {
|
|
185
|
+
constructor(util, ls, nav, cs, router, ur, ln) {
|
|
186
|
+
this.util = util;
|
|
187
|
+
this.ls = ls;
|
|
188
|
+
this.nav = nav;
|
|
189
|
+
this.cs = cs;
|
|
190
|
+
this.router = router;
|
|
191
|
+
this.ur = ur;
|
|
192
|
+
this.ln = ln;
|
|
193
|
+
this.showSuccess = false;
|
|
194
|
+
this.showError = false;
|
|
195
|
+
this.onCancel = new EventEmitter();
|
|
196
|
+
this.error = new EventEmitter();
|
|
197
|
+
this.profileOpts = ComboOption.CLAIMANT_PROFILE_OPTS;
|
|
198
|
+
this.selected = 'personal-details';
|
|
199
|
+
this.isReturningUser = true;
|
|
200
|
+
this.isSecurityQuestionEnabled = false;
|
|
201
|
+
this.isPaymentOptionQuestionsEnabled = false;
|
|
202
|
+
this.isPaymentOptionDivEnabled = true;
|
|
203
|
+
this.isLexisNexisPopupEnabled = false;
|
|
204
|
+
this.isButtonDisabled = false;
|
|
205
|
+
this.isLexisNexisProofedWithinTwentyFourHours = false;
|
|
206
|
+
}
|
|
207
|
+
ngOnInit() {
|
|
208
|
+
if (localStorage.getItem("language") === "es") {
|
|
209
|
+
this.profileOpts = ComboOption.CLAIMANT_PROFILE_OPTS_ES;
|
|
210
|
+
}
|
|
211
|
+
else {
|
|
212
|
+
this.profileOpts = ComboOption.CLAIMANT_PROFILE_OPTS;
|
|
213
|
+
}
|
|
214
|
+
this.getUserDetails();
|
|
215
|
+
//Get user personal-details
|
|
216
|
+
this.getPersonalDetails();
|
|
217
|
+
}
|
|
218
|
+
ngAfterViewInit() {
|
|
219
|
+
const pDialog = document.querySelector('div[role=dialog]');
|
|
220
|
+
pDialog?.setAttribute('aria-labelledby', 'pdialog-title');
|
|
221
|
+
setTimeout(() => {
|
|
222
|
+
document.querySelectorAll('div .ionButton').forEach(element => {
|
|
223
|
+
element.setAttribute('role', 'button');
|
|
224
|
+
});
|
|
225
|
+
}, 1000);
|
|
226
|
+
}
|
|
227
|
+
getUserDetails() {
|
|
228
|
+
this.cs.getUserDetailsForLoggedInUser().subscribe((res) => {
|
|
229
|
+
this.ssn = res?.ssn;
|
|
230
|
+
this.verificationPreference = res;
|
|
231
|
+
this.userName = res?.userName;
|
|
232
|
+
this.isLexisNexisProofedWithin24Hours(this.userName);
|
|
233
|
+
}, (err) => {
|
|
234
|
+
console.log(err);
|
|
235
|
+
});
|
|
236
|
+
}
|
|
237
|
+
isLexisNexisProofedWithin24Hours(ssn) {
|
|
238
|
+
this.ln.isLexisNexisProofedWithin24Hours(this.userName).subscribe((res) => {
|
|
239
|
+
this.isLexisNexisProofedWithinTwentyFourHours = res;
|
|
240
|
+
});
|
|
241
|
+
}
|
|
242
|
+
onValueChange(event) {
|
|
243
|
+
this.showError = false;
|
|
244
|
+
this.showSuccess = false;
|
|
245
|
+
if (this.selected != 'payment-details') {
|
|
246
|
+
this.isPaymentOptionQuestionsEnabled = true;
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
cancel() {
|
|
250
|
+
this.util.hideLoader();
|
|
251
|
+
this.onCancel.emit();
|
|
252
|
+
}
|
|
253
|
+
save() {
|
|
254
|
+
if (this.fb.invalid) {
|
|
255
|
+
console.log(this.fb);
|
|
256
|
+
return;
|
|
257
|
+
}
|
|
258
|
+
const dirtyItems = this.fb.getDirtyItems();
|
|
259
|
+
this.util.showLoader();
|
|
260
|
+
// this.saveQuestionnaire(); // First saving the change in the db
|
|
261
|
+
if (this.selected === 'personal-details') {
|
|
262
|
+
const nameControls = ['fstname', 'middlename', 'lstname'];
|
|
263
|
+
if (dirtyItems.some(item => nameControls.includes(item))) {
|
|
264
|
+
this.customerEventType = 'name';
|
|
265
|
+
// Uncomment to enable Lexis Nexis
|
|
266
|
+
const dirtyItemWithValues = this.fb.getDirtyItemsWithValues();
|
|
267
|
+
if (this.isLexisNexisProofedWithinTwentyFourHours && this.validateNameChange(dirtyItemWithValues)) {
|
|
268
|
+
this.util.hideLoader();
|
|
269
|
+
this.enableLexisNexis();
|
|
270
|
+
}
|
|
271
|
+
else {
|
|
272
|
+
this.util.showLoader();
|
|
273
|
+
this.saveQuestionnaire();
|
|
274
|
+
}
|
|
275
|
+
// Comment to enable Lexis Nexis
|
|
276
|
+
// this.onCancel.emit();
|
|
277
|
+
// this.triggerUdol();
|
|
278
|
+
}
|
|
279
|
+
else {
|
|
280
|
+
this.util.showLoader();
|
|
281
|
+
this.saveQuestionnaire();
|
|
282
|
+
}
|
|
283
|
+
this.util.hideLoader();
|
|
284
|
+
}
|
|
285
|
+
else if (this.selected === 'contact-details') {
|
|
286
|
+
const contactdetailsControls = ['phone'];
|
|
287
|
+
// dirtyItems.forEach((item) => {
|
|
288
|
+
if (dirtyItems.some(item => contactdetailsControls.includes(item))) {
|
|
289
|
+
// if (item === 'phone') {
|
|
290
|
+
this.customerEventType = 'phone';
|
|
291
|
+
this.util.hideLoader();
|
|
292
|
+
if (this.isLexisNexisProofedWithinTwentyFourHours) {
|
|
293
|
+
this.getAllSecurityQuestions();
|
|
294
|
+
}
|
|
295
|
+
else {
|
|
296
|
+
this.saveQuestionnaire();
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
else {
|
|
300
|
+
this.saveQuestionnaire();
|
|
301
|
+
}
|
|
302
|
+
// });
|
|
303
|
+
}
|
|
304
|
+
else if (this.selected === 'payment-details') {
|
|
305
|
+
this.saveQuestionnaire();
|
|
306
|
+
// this.isPaymentOptionQuestionsEnabled=false;
|
|
307
|
+
this.isSecurityQuestionEnabled = false;
|
|
308
|
+
this.isLexisNexisPopupEnabled = false;
|
|
309
|
+
this.isButtonDisabled = false;
|
|
310
|
+
// this.isPaymentOptionDivEnabled=true;
|
|
311
|
+
}
|
|
312
|
+
}
|
|
313
|
+
onSecurityQuestionSuccess() {
|
|
314
|
+
if (this.selected != 'payment-details') {
|
|
315
|
+
this.util.showLoader();
|
|
316
|
+
this.saveQuestionnaire();
|
|
317
|
+
}
|
|
318
|
+
else {
|
|
319
|
+
this.isPaymentOptionQuestionsEnabled = true;
|
|
320
|
+
// this.isPaymentOptionDivEnabled=true;
|
|
321
|
+
}
|
|
322
|
+
this.isSecurityQuestionEnabled = false;
|
|
323
|
+
this.isLexisNexisPopupEnabled = false;
|
|
324
|
+
this.isButtonDisabled = false;
|
|
325
|
+
}
|
|
326
|
+
saveQuestionnaire() {
|
|
327
|
+
this.fb.submitQuestionnaire();
|
|
328
|
+
}
|
|
329
|
+
getAllSecurityQuestions() {
|
|
330
|
+
this.cs.getAllSecurityQuestion().subscribe((res) => {
|
|
331
|
+
this.allSecurityQuestions = res;
|
|
332
|
+
this.loadSecurityQuestionsOfClaimant(res);
|
|
333
|
+
// this.saveQuestionnaire();
|
|
334
|
+
}, (err) => { });
|
|
335
|
+
}
|
|
336
|
+
loadSecurityQuestionsOfClaimant(allQuestionWithKeys) {
|
|
337
|
+
var userName = this.userName;
|
|
338
|
+
this.util.get(`user/security/${userName}`).subscribe((res) => {
|
|
339
|
+
this.usersQuesAndAns = res;
|
|
340
|
+
// Initialize mappedKeysQuestionsForUser
|
|
341
|
+
this.mappedKeysQuestionsForUser = [];
|
|
342
|
+
// List of possible security question fields
|
|
343
|
+
const securityQuestionFields = [
|
|
344
|
+
'securityQuestion',
|
|
345
|
+
'securityQuestion2',
|
|
346
|
+
'securityQuestion3',
|
|
347
|
+
];
|
|
348
|
+
// Create a map for quick lookup of question descriptions
|
|
349
|
+
const questionMap = new Map();
|
|
350
|
+
for (const item of allQuestionWithKeys) {
|
|
351
|
+
questionMap.set(item.key, item.description || '');
|
|
352
|
+
}
|
|
353
|
+
// Iterate through each security question field
|
|
354
|
+
for (const field of securityQuestionFields) {
|
|
355
|
+
const fieldValue = this.usersQuesAndAns[field];
|
|
356
|
+
if (fieldValue && questionMap.has(fieldValue)) {
|
|
357
|
+
this.mappedKeysQuestionsForUser.push({
|
|
358
|
+
question: questionMap.get(fieldValue),
|
|
359
|
+
questionKey: fieldValue,
|
|
360
|
+
});
|
|
361
|
+
}
|
|
362
|
+
}
|
|
363
|
+
this.isSecurityQuestionEnabled = true;
|
|
364
|
+
}, (err) => {
|
|
365
|
+
console.error('Error loading security questions:', err);
|
|
366
|
+
});
|
|
367
|
+
}
|
|
368
|
+
enableLexisNexis() {
|
|
369
|
+
this.util.showLoader();
|
|
370
|
+
this.isButtonDisabled = true;
|
|
371
|
+
this.isSecurityQuestionEnabled = false;
|
|
372
|
+
this.ln.isLexisNexisIdProofingEnabledWithUserId(this.userName).subscribe((res) => {
|
|
373
|
+
// If lexis-nexis id proofing is enabled
|
|
374
|
+
if (res) {
|
|
375
|
+
this.isLexisNexisPopupEnabled = true;
|
|
376
|
+
}
|
|
377
|
+
else {
|
|
378
|
+
this.util.showError("The claimant account with user name" + this.userName + " has been blocked. Please contact KDOL.");
|
|
379
|
+
}
|
|
380
|
+
});
|
|
381
|
+
//this.onCancel.emit();
|
|
382
|
+
// usps redirect call
|
|
383
|
+
//this.triggerUdol();
|
|
384
|
+
}
|
|
385
|
+
triggerUdol() {
|
|
386
|
+
this.onCancel.emit();
|
|
387
|
+
this.util.hideLoader();
|
|
388
|
+
console.log("usps is triggered");
|
|
389
|
+
localStorage.setItem('userId', this.userName);
|
|
390
|
+
this.ls.logout();
|
|
391
|
+
setTimeout(() => this.router.navigate(['/usps-redirect', ""]), 1000);
|
|
392
|
+
}
|
|
393
|
+
handleError(error) {
|
|
394
|
+
if (error?.errorCode == '422') {
|
|
395
|
+
this.errorText = error.msg[0];
|
|
396
|
+
}
|
|
397
|
+
this.showError = true;
|
|
398
|
+
}
|
|
399
|
+
success(msg) {
|
|
400
|
+
this.showSuccess = true;
|
|
401
|
+
}
|
|
402
|
+
logout() {
|
|
403
|
+
this.nav.navigateRoot('/landing');
|
|
404
|
+
this.ls.logout();
|
|
405
|
+
}
|
|
406
|
+
getPersonalDetails() {
|
|
407
|
+
this.cs.getUserPersonalDetails().subscribe({
|
|
408
|
+
next: (res) => {
|
|
409
|
+
if (res) {
|
|
410
|
+
this.userPersonalDetail = res;
|
|
411
|
+
}
|
|
412
|
+
else {
|
|
413
|
+
this.util.showError("Failed to get the user info.");
|
|
414
|
+
}
|
|
415
|
+
},
|
|
416
|
+
error: (err) => {
|
|
417
|
+
// Log the error for debugging purposes
|
|
418
|
+
console.error('Error fetching user details:', err);
|
|
419
|
+
this.util.showError("An error occurred while fetching user information.");
|
|
420
|
+
}
|
|
421
|
+
});
|
|
422
|
+
}
|
|
423
|
+
getSecQuestionsPaymentOptions() {
|
|
424
|
+
if (this.selected === 'payment-details') {
|
|
425
|
+
this.isPaymentOptionDivEnabled = false;
|
|
426
|
+
this.customerEventType = 'account';
|
|
427
|
+
this.util.hideLoader();
|
|
428
|
+
// this.isLexisNexisProofedWithinTwentyFourHours=true;
|
|
429
|
+
if (this.isLexisNexisProofedWithinTwentyFourHours) {
|
|
430
|
+
this.getAllSecurityQuestions();
|
|
431
|
+
}
|
|
432
|
+
else {
|
|
433
|
+
//this.saveQuestionnaire();
|
|
434
|
+
this.isPaymentOptionDivEnabled = false;
|
|
435
|
+
this.isPaymentOptionQuestionsEnabled = true;
|
|
436
|
+
}
|
|
437
|
+
}
|
|
438
|
+
}
|
|
439
|
+
validateNameChange(formData) {
|
|
440
|
+
const keysToCheck = ['fstname', 'middlename', 'lstname'];
|
|
441
|
+
// Iterate through the form data and check if the control has changed
|
|
442
|
+
for (let item of formData) {
|
|
443
|
+
const controlName = item.controlName.toLowerCase();
|
|
444
|
+
// Find the matching key in the response data
|
|
445
|
+
const matchedKey = keysToCheck.find(key => key.toLowerCase() === controlName);
|
|
446
|
+
if (matchedKey) {
|
|
447
|
+
// Retrieve the current value from the user data and the form value
|
|
448
|
+
const userPersonValue = this.userPersonalDetail.data[matchedKey];
|
|
449
|
+
const formControlValue = item.controlValue;
|
|
450
|
+
// Check if values are null, undefined, or empty, or if they differ (ignoring case)
|
|
451
|
+
const userIsEmpty = this.isNullOrEmpty(userPersonValue);
|
|
452
|
+
const formIsEmpty = this.isNullOrEmpty(formControlValue);
|
|
453
|
+
// Case-insensitive comparison of the values
|
|
454
|
+
if ((userIsEmpty && !formIsEmpty) || (!userIsEmpty && formIsEmpty) ||
|
|
455
|
+
(userPersonValue && formControlValue && userPersonValue.toLowerCase() !== formControlValue.toLowerCase())) {
|
|
456
|
+
// If values differ (ignoring case), return true (change detected)
|
|
457
|
+
return true;
|
|
458
|
+
}
|
|
459
|
+
}
|
|
460
|
+
}
|
|
461
|
+
// If no differences were found, return false (no changes)
|
|
462
|
+
return false;
|
|
463
|
+
}
|
|
464
|
+
// Utility method to check for null,undefined or empty string
|
|
465
|
+
isNullOrEmpty(value) {
|
|
466
|
+
return value === null || value === "" || value === undefined;
|
|
467
|
+
}
|
|
468
|
+
static { this.ɵfac = function ProfileComponent_Factory(t) { return new (t || ProfileComponent)(i0.ɵɵdirectiveInject(i1.UtilService), i0.ɵɵdirectiveInject(i2.LoginService), i0.ɵɵdirectiveInject(i3.NavController), i0.ɵɵdirectiveInject(i4.ClaimantService), i0.ɵɵdirectiveInject(i5.Router), i0.ɵɵdirectiveInject(i6.ClaimantUspsRedirectService), i0.ɵɵdirectiveInject(i7.LexisNexisService)); }; }
|
|
469
|
+
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ProfileComponent, selectors: [["app-profile"]], viewQuery: function ProfileComponent_Query(rf, ctx) { if (rf & 1) {
|
|
470
|
+
i0.ɵɵviewQuery(_c0, 5);
|
|
471
|
+
} if (rf & 2) {
|
|
472
|
+
let _t;
|
|
473
|
+
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.fb = _t.first);
|
|
474
|
+
} }, outputs: { onCancel: "onCancel", error: "error" }, decls: 8, vars: 10, consts: [["visible", "true", "modal", "true", "appendTo", "body", "position", "top", 3, "breakpoints"], ["pTemplate", "header"], ["style", "margin-left: -8px;", 4, "ngIf"], [4, "ngIf"], ["pTemplate", "footer"], [3, "display", "userName", "customerEventType", "success", "error", "usps", 4, "ngIf"], [3, "display", "questionsAndAnswers", "questionsAndKeysOfUser", "success", "clear", 4, "ngIf"], ["id", "pdialog-title", 1, "ion-text-left", "heading", 2, "padding-left", "24px"], [2, "font-size", "16px"], ["styleClass", "ion-padding-start", "optionLabel", "text", "optionValue", "value", 3, "options", "ngModel", "ngModelChange", "onOptionClick"], [2, "margin-left", "-8px"], [3, "flowKey", "showOnlyQuestion", "hideHeader", "hideFooter", "sizeXs", "sizeSm", "sizeMd", "sizeLg", "sizeXl", "offsetXl", "offsetLg", "onError", "onComplete", 4, "ngIf"], [3, "flowKey", "showOnlyQuestion", "hideHeader", "hideFooter", "sizeXs", "sizeSm", "sizeMd", "sizeLg", "sizeXl", "offsetXl", "offsetLg", "onError", "onComplete"], ["fb", ""], [1, "ion-text-center", "ion-padding-top"], ["name", "checkmark-circle", 2, "font-size", "80px", "color", "var(--ion-color-green)"], ["name", "close-circle-outline", 2, "font-size", "80px", "color", "var(--ion-color-danger)"], ["size", "12", "sizeXl", "4", "sizeLg", "4", "sizeMd", "5", 1, "ion-text-left"], ["tabindex", "0", "shape", "round", "fill", "outline", "type", "button", 1, "ionButton", 3, "disabled", "click", "keydown.enter"], ["size", "12", "sizeXl", "8", "sizeLg", "8", "sizeMd", "7", 1, "ion-text-right"], ["tabindex", "0", "shape", "round", "fill", "outline", "type", "reset", 1, "ionButton", 3, "disabled", "click", "keydown.enter"], ["tabindex", "0", "shape", "round", "type", "submit", "class", "ionButton", 3, "disabled", "click", "keydown.enter", 4, "ngIf"], ["tabindex", "0", "shape", "round", "type", "submit", 1, "ionButton", 3, "disabled", "click", "keydown.enter"], [3, "display", "userName", "customerEventType", "success", "error", "usps"], [3, "display", "questionsAndAnswers", "questionsAndKeysOfUser", "success", "clear"]], template: function ProfileComponent_Template(rf, ctx) { if (rf & 1) {
|
|
475
|
+
i0.ɵɵelementStart(0, "p-dialog", 0);
|
|
476
|
+
i0.ɵɵtemplate(1, ProfileComponent_ng_template_1_Template, 10, 6, "ng-template", 1)(2, ProfileComponent_div_2_Template, 5, 4, "div", 2)(3, ProfileComponent_div_3_Template, 6, 3, "div", 3)(4, ProfileComponent_div_4_Template, 6, 3, "div", 3)(5, ProfileComponent_ng_template_5_Template, 11, 9, "ng-template", 4)(6, ProfileComponent_app_lexis_nexis_6_Template, 1, 3, "app-lexis-nexis", 5)(7, ProfileComponent_app_security_question_7_Template, 1, 3, "app-security-question", 6);
|
|
477
|
+
i0.ɵɵelementEnd();
|
|
478
|
+
} if (rf & 2) {
|
|
479
|
+
i0.ɵɵstyleMap(i0.ɵɵpureFunction0(8, _c1));
|
|
480
|
+
i0.ɵɵproperty("breakpoints", i0.ɵɵpureFunction0(9, _c2));
|
|
481
|
+
i0.ɵɵadvance(2);
|
|
482
|
+
i0.ɵɵproperty("ngIf", !(ctx.showSuccess || ctx.showError));
|
|
483
|
+
i0.ɵɵadvance(1);
|
|
484
|
+
i0.ɵɵproperty("ngIf", ctx.showSuccess);
|
|
485
|
+
i0.ɵɵadvance(1);
|
|
486
|
+
i0.ɵɵproperty("ngIf", ctx.showError);
|
|
487
|
+
i0.ɵɵadvance(2);
|
|
488
|
+
i0.ɵɵproperty("ngIf", ctx.isLexisNexisPopupEnabled);
|
|
489
|
+
i0.ɵɵadvance(1);
|
|
490
|
+
i0.ɵɵproperty("ngIf", ctx.isSecurityQuestionEnabled);
|
|
491
|
+
} }, dependencies: [i3.IonButton, i3.IonCol, i3.IonGrid, i3.IonIcon, i3.IonRow, i8.NgIf, i9.PrimeTemplate, i10.NgControlStatus, i10.NgModel, i11.Dialog, i12.SelectButton, i13.FormBuilderPage, i14.SecurityQuestionComponent, i15.LexisNexisComponent, i16.TranslatePipe], styles: ["ion-col[_ngcontent-%COMP%]{margin-left:0!important}ion-button[_ngcontent-%COMP%]:focus{outline:none}"] }); }
|
|
492
|
+
}
|
|
493
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ProfileComponent, [{
|
|
494
|
+
type: Component,
|
|
495
|
+
args: [{ selector: 'app-profile', template: "<p-dialog visible=\"true\" modal=\"true\" appendTo=\"body\" [breakpoints]=\"{'1024px': '75vw', '768px': '85vw', '640px': '100vw'}\"\r\n [style]=\"{width: '60vw'}\" position=\"top\">\r\n <ng-template pTemplate=\"header\">\r\n <ion-grid>\r\n <ion-row>\r\n <ion-col class=\"ion-text-left heading\" style=\"padding-left: 24px;\" id=\"pdialog-title\">\r\n {{'header.account.your.account' | translate}}<span style=\"font-size: 16px;\">(CID\r\n {{ls.getUser().claimantId}})</span>\r\n </ion-col>\r\n </ion-row>\r\n <ion-row>\r\n <ion-col>\r\n <p-selectButton styleClass=\"ion-padding-start\" [options]=\"profileOpts\" optionLabel=\"text\"\r\n optionValue=\"value\" [(ngModel)]=\"selected\" (onOptionClick)=\"onValueChange($event)\">\r\n </p-selectButton>\r\n </ion-col>\r\n </ion-row>\r\n </ion-grid>\r\n </ng-template> \r\n \r\n <div *ngIf=\"!(showSuccess || showError)\" style=\"margin-left: -8px;\">\r\n <div *ngIf=\"selected == 'payment-details' && !isPaymentOptionQuestionsEnabled && isPaymentOptionDivEnabled\"> \r\n {{ getSecQuestionsPaymentOptions() }} \r\n </div>\r\n <app-form-builder #fb *ngIf=\"selected == 'personal-details'\" [flowKey]=\"selected\" [showOnlyQuestion]=\"true\" [hideHeader]=\"true\" [hideFooter]=\"true\"\r\n [sizeXs]=\"12\" [sizeSm]=\"12\" [sizeMd]=\"12\" [sizeLg]=\"12\" [sizeXl]=\"12\" [offsetXl]=\"0\" [offsetLg]=\"0\" (onError)=\"handleError($event)\" (onComplete)=\"success($event)\">\r\n </app-form-builder>\r\n <app-form-builder #fb *ngIf=\"selected == 'contact-details'\" [flowKey]=\"selected\" [showOnlyQuestion]=\"true\" [hideHeader]=\"true\" [hideFooter]=\"true\"\r\n [sizeXs]=\"12\" [sizeSm]=\"12\" [sizeMd]=\"12\" [sizeLg]=\"12\" [sizeXl]=\"12\" [offsetXl]=\"0\" [offsetLg]=\"0\" (onError)=\"handleError($event)\" (onComplete)=\"success($event)\">\r\n </app-form-builder>\r\n <div *ngIf=\"(isPaymentOptionQuestionsEnabled)\">\r\n <app-form-builder #fb *ngIf=\"selected == 'payment-details'\" [flowKey]=\"selected\" [showOnlyQuestion]=\"true\" [hideHeader]=\"true\" [hideFooter]=\"true\"\r\n [sizeXs]=\"12\" [sizeSm]=\"12\" [sizeMd]=\"12\" [sizeLg]=\"12\" [sizeXl]=\"12\" [offsetXl]=\"0\" [offsetLg]=\"0\" (onError)=\"handleError($event)\" (onComplete)=\"success($event)\">\r\n </app-form-builder>\r\n </div>\r\n </div>\r\n <div *ngIf=\"showSuccess\">\r\n <div class=\"ion-text-center ion-padding-top\">\r\n <ion-icon name=\"checkmark-circle\" style=\"font-size: 80px; color: var(--ion-color-green);\"></ion-icon>\r\n <h1>{{'header.account.saved.successfully' | translate}}</h1>\r\n </div>\r\n </div>\r\n\r\n <div *ngIf=\"showError\">\r\n <div class=\"ion-text-center ion-padding-top\">\r\n <ion-icon name=\"close-circle-outline\" style=\"font-size: 80px; color: var(--ion-color-danger);\"></ion-icon>\r\n <h1>{{errorText ? errorText : 'header.account.could.not.process' | translate}}</h1>\r\n </div>\r\n </div>\r\n \r\n <ng-template pTemplate=\"footer\">\r\n <ion-grid>\r\n <ion-row>\r\n <ion-col class=\"ion-text-left\" size=\"12\" sizeXl=\"4\" sizeLg=\"4\" sizeMd=\"5\">\r\n <ion-button tabindex=\"0\" shape=\"round\" fill=\"outline\" type=\"button\" [disabled]=\"isButtonDisabled\" (click)=\"logout()\" (keydown.enter)=\"logout()\" class=\"ionButton\">{{'header.account.logout' | translate}}</ion-button>\r\n </ion-col>\r\n <ion-col class=\"ion-text-right\" size=\"12\" sizeXl=\"8\" sizeLg=\"8\" sizeMd=\"7\">\r\n <ion-button tabindex=\"0\" shape=\"round\" fill=\"outline\" type=\"reset\" [disabled]=\"isButtonDisabled\" (click)=\"cancel()\" (keydown.enter)=\"cancel()\" class=\"ionButton\">{{'header.account.close' | translate}}</ion-button>\r\n <ion-button tabindex=\"0\" shape=\"round\" type=\"submit\" [disabled]=\"isButtonDisabled\" (click)=\"save()\" (keydown.enter)=\"save()\" *ngIf=\"!(showSuccess || showError)\" class=\"ionButton\">{{'header.account.save' | translate}}</ion-button>\r\n </ion-col>\r\n </ion-row>\r\n </ion-grid>\r\n </ng-template>\r\n <app-lexis-nexis *ngIf=\"isLexisNexisPopupEnabled\" [display]=\"isLexisNexisPopupEnabled\" [userName] = 'this.userName' [customerEventType] = 'this.customerEventType' (success)=\"onSecurityQuestionSuccess()\" (error)=\"triggerUdol()\" (usps)=\"triggerUdol()\"></app-lexis-nexis>\r\n <!-- Uncomment to enable lexis - nexis -->\r\n <app-security-question *ngIf=\"isSecurityQuestionEnabled\" [display]=\"isSecurityQuestionEnabled\" [questionsAndAnswers]=\"usersQuesAndAns\" [questionsAndKeysOfUser]=\"mappedKeysQuestionsForUser\" (success)=\"onSecurityQuestionSuccess()\" (clear)=\"enableLexisNexis()\"></app-security-question>\r\n <!-- Comment when lexis nexis is enabled -->\r\n <!-- <app-security-question *ngIf=\"isSecurityQuestionEnabled\" [display]=\"isSecurityQuestionEnabled\" [questionsAndAnswers]=\"usersQuesAndAns\" [questionsAndKeysOfUser]=\"mappedKeysQuestionsForUser\" (success)=\"onSecurityQuestionSuccess()\" (clear)=\"triggerUdol()\"></app-security-question> -->\r\n \r\n</p-dialog>", styles: ["ion-col{margin-left:0!important}ion-button:focus{outline:none}\n"] }]
|
|
496
|
+
}], () => [{ type: i1.UtilService }, { type: i2.LoginService }, { type: i3.NavController }, { type: i4.ClaimantService }, { type: i5.Router }, { type: i6.ClaimantUspsRedirectService }, { type: i7.LexisNexisService }], { fb: [{
|
|
497
|
+
type: ViewChild,
|
|
498
|
+
args: ['fb']
|
|
499
|
+
}], onCancel: [{
|
|
500
|
+
type: Output
|
|
501
|
+
}], error: [{
|
|
502
|
+
type: Output
|
|
503
|
+
}] }); })();
|
|
504
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ProfileComponent, { className: "ProfileComponent", filePath: "lib\\components\\profile\\profile.component.ts", lineNumber: 19 }); })();
|
|
505
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJvZmlsZS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9uZ3gtcmV1c2EtYXBwLWxpYi9zcmMvbGliL2NvbXBvbmVudHMvcHJvZmlsZS9wcm9maWxlLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL25neC1yZXVzYS1hcHAtbGliL3NyYy9saWIvY29tcG9uZW50cy9wcm9maWxlL3Byb2ZpbGUuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFpQixTQUFTLEVBQUUsWUFBWSxFQUFVLE1BQU0sRUFBRSxTQUFTLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDbEcsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLHVDQUF1QyxDQUFDOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7SUNFNUQsZ0NBQVUsY0FBQSxpQkFBQTtJQUdFLFlBQTZDOztJQUFBLCtCQUErQjtJQUFBLFlBQzVDO0lBQUEsaUJBQU8sRUFBQSxFQUFBO0lBRy9DLCtCQUFTLGNBQUEsd0JBQUE7SUFHbUIsK09BQXNCLHNMQUFrQixlQUFBLDRCQUFxQixDQUFBLElBQXZDO0lBQzlDLGlCQUFpQixFQUFBLEVBQUEsRUFBQTs7O0lBUmIsZUFBNkM7SUFBN0MsbUZBQTZDO0lBQStCLGVBQzVDO0lBRDRDLG1FQUM1QztJQUtlLGVBQXVCO0lBQXZCLDRDQUF1Qiw0QkFBQTs7O0lBU2xGLDJCQUE2RztJQUNqRyxZQUNaO0lBQUEsaUJBQU07OztJQURNLGVBQ1o7SUFEWSx3RUFDWjs7OztJQUNBLGdEQUN1SztJQUEvRCx1TUFBVyxlQUFBLDJCQUFtQixDQUFBLElBQUMsZ01BQWUsZUFBQSx1QkFBZSxDQUFBLElBQTlCO0lBQ3ZJLGlCQUFtQjs7O0lBRjBDLDBDQUFvQiwwQkFBQSxvQkFBQSxvQkFBQSxjQUFBLGNBQUEsY0FBQSxjQUFBLGNBQUEsZUFBQSxlQUFBOzs7O0lBR2pGLGdEQUN1SztJQUEvRCx1TUFBVyxlQUFBLDJCQUFtQixDQUFBLElBQUMsZ01BQWUsZUFBQSx1QkFBZSxDQUFBLElBQTlCO0lBQ3ZJLGlCQUFtQjs7O0lBRnlDLDBDQUFvQiwwQkFBQSxvQkFBQSxvQkFBQSxjQUFBLGNBQUEsY0FBQSxjQUFBLGNBQUEsZUFBQSxlQUFBOzs7O0lBSWhGLGdEQUNtSztJQUEvRCw2TUFBVyxlQUFBLDJCQUFtQixDQUFBLElBQUMsc01BQWUsZUFBQSx1QkFBZSxDQUFBLElBQTlCO0lBQ3ZJLGlCQUFtQjs7O0lBRjZDLDBDQUFvQiwwQkFBQSxvQkFBQSxvQkFBQSxjQUFBLGNBQUEsY0FBQSxjQUFBLGNBQUEsZUFBQSxlQUFBOzs7SUFEaEYsMkJBQWdEO0lBQ2hELHlHQUVlO0lBQ25CLGlCQUFNOzs7SUFIcUIsZUFBbUM7SUFBbkMsNERBQW1DOzs7SUFYOUQsK0JBQW9FO0lBQ2hFLHVFQUVNLHNGQUFBLHNGQUFBLDBEQUFBO0lBWVYsaUJBQU07OztJQWRLLGVBQW9HO0lBQXBHLDBJQUFvRztJQUdwRixlQUFvQztJQUFwQyw0REFBb0M7SUFHcEMsZUFBbUM7SUFBbkMsMkRBQW1DO0lBR25ELGVBQXVDO0lBQXZDLDZEQUF1Qzs7O0lBTWxELDJCQUF5QixjQUFBO0lBRWpCLCtCQUFxRztJQUNyRywwQkFBSTtJQUFBLFlBQW1EOztJQUFBLGlCQUFLLEVBQUEsRUFBQTs7SUFBeEQsZUFBbUQ7SUFBbkQsK0VBQW1EOzs7SUFJL0QsMkJBQXVCLGNBQUE7SUFFZiwrQkFBMEc7SUFDMUcsMEJBQUk7SUFBQSxZQUEwRTs7SUFBQSxpQkFBSyxFQUFBLEVBQUE7OztJQUEvRSxlQUEwRTtJQUExRSxvSEFBMEU7Ozs7SUFZdEUsc0NBQW9MO0lBQWhHLDBMQUFTLGVBQUEsY0FBTSxDQUFBLElBQUMsNkxBQWtCLGVBQUEsY0FBTSxDQUFBLElBQXhCO0lBQWdGLFlBQXFDOztJQUFBLGlCQUFhOzs7SUFBaEwsbURBQTZCO0lBQWlHLGVBQXFDO0lBQXJDLGlFQUFxQzs7OztJQVByTyxnQ0FBVSxjQUFBLGtCQUFBLHFCQUFBO0lBR29HLDJLQUFTLGVBQUEsZ0JBQVEsQ0FBQSxJQUFDLDhLQUFrQixlQUFBLGdCQUFRLENBQUEsSUFBMUI7SUFBOEMsWUFBdUM7O0lBQUEsaUJBQWEsRUFBQTtJQUUxTixtQ0FBMkUscUJBQUE7SUFDMEIsMktBQVMsZUFBQSxnQkFBUSxDQUFBLElBQUMsOEtBQWtCLGVBQUEsZ0JBQVEsQ0FBQSxJQUExQjtJQUE4QyxZQUFzQzs7SUFBQSxpQkFBYTtJQUNwTixnR0FBc087SUFDMU8saUJBQVUsRUFBQSxFQUFBOzs7SUFMOEQsZUFBNkI7SUFBN0Isa0RBQTZCO0lBQWlFLGVBQXVDO0lBQXZDLG1FQUF1QztJQUd0SSxlQUE2QjtJQUE3QixrREFBNkI7SUFBaUUsZUFBc0M7SUFBdEMsa0VBQXNDO0lBQ3hFLGVBQWlDO0lBQWpDLGdFQUFpQzs7OztJQUtoTCwyQ0FBMFA7SUFBdkYsd0xBQVcsZUFBQSxtQ0FBMkIsQ0FBQSxJQUFDLHVLQUFVLGVBQUEscUJBQWEsQ0FBQSxJQUF2QixxS0FBaUMsZUFBQSxxQkFBYSxDQUFBLElBQTlDO0lBQWdELGlCQUFrQjs7O0lBQTFOLHlEQUFvQyw2QkFBQSwrQ0FBQTs7OztJQUV0RixpREFBa1E7SUFBckUsb01BQVcsZUFBQSxtQ0FBMkIsQ0FBQSxJQUFDLG1MQUFVLGVBQUEsMEJBQWtCLENBQUEsSUFBNUI7SUFBOEIsaUJBQXdCOzs7SUFBak8sMERBQXFDLCtDQUFBLDZEQUFBOzs7O0FEL0NsRyxNQUFNLE9BQU8sZ0JBQWdCO0lBcUMzQixZQUNTLElBQWlCLEVBQ2pCLEVBQWdCLEVBQ2hCLEdBQWtCLEVBQ2xCLEVBQW1CLEVBQ25CLE1BQWMsRUFDZCxFQUErQixFQUMvQixFQUFxQjtRQU5yQixTQUFJLEdBQUosSUFBSSxDQUFhO1FBQ2pCLE9BQUUsR0FBRixFQUFFLENBQWM7UUFDaEIsUUFBRyxHQUFILEdBQUcsQ0FBZTtRQUNsQixPQUFFLEdBQUYsRUFBRSxDQUFpQjtRQUNuQixXQUFNLEdBQU4sTUFBTSxDQUFRO1FBQ2QsT0FBRSxHQUFGLEVBQUUsQ0FBNkI7UUFDL0IsT0FBRSxHQUFGLEVBQUUsQ0FBbUI7UUEzQzlCLGdCQUFXLEdBQUcsS0FBSyxDQUFDO1FBQ3BCLGNBQVMsR0FBRyxLQUFLLENBQUM7UUFLbEIsYUFBUSxHQUFzQixJQUFJLFlBQVksRUFBRSxDQUFDO1FBR2pELFVBQUssR0FBc0IsSUFBSSxZQUFZLEVBQUUsQ0FBQztRQUV2QyxnQkFBVyxHQUFHLFdBQVcsQ0FBQyxxQkFBcUIsQ0FBQztRQUVoRCxhQUFRLEdBQUcsa0JBQWtCLENBQUM7UUFFOUIsb0JBQWUsR0FBWSxJQUFJLENBQUM7UUFVaEMsOEJBQXlCLEdBQVksS0FBSyxDQUFDO1FBQzNDLG9DQUErQixHQUFZLEtBQUssQ0FBQztRQUNqRCw4QkFBeUIsR0FBWSxJQUFJLENBQUM7UUFDMUMsNkJBQXdCLEdBQVksS0FBSyxDQUFDO1FBRzFDLHFCQUFnQixHQUFZLEtBQUssQ0FBQztRQUNsQyw2Q0FBd0MsR0FBWSxLQUFLLENBQUM7SUFZOUQsQ0FBQztJQUVKLFFBQVE7UUFDTixJQUFHLFlBQVksQ0FBQyxPQUFPLENBQUMsVUFBVSxDQUFDLEtBQUssSUFBSSxFQUFDO1lBQzNDLElBQUksQ0FBQyxXQUFXLEdBQUcsV0FBVyxDQUFDLHdCQUF3QixDQUFDO1NBQ3pEO2FBQUs7WUFDSixJQUFJLENBQUMsV0FBVyxHQUFHLFdBQVcsQ0FBQyxxQkFBcUIsQ0FBQztTQUN0RDtRQUNELElBQUksQ0FBQyxjQUFjLEVBQUUsQ0FBQztRQUV0QiwyQkFBMkI7UUFDM0IsSUFBSSxDQUFDLGtCQUFrQixFQUFFLENBQUM7SUFDNUIsQ0FBQztJQUVELGVBQWU7UUFDWCxNQUFNLE9BQU8sR0FBRyxRQUFRLENBQUMsYUFBYSxDQUFDLGtCQUFrQixDQUFDLENBQUM7UUFDM0QsT0FBTyxFQUFFLFlBQVksQ0FBQyxpQkFBaUIsRUFBRSxlQUFlLENBQUMsQ0FBQztRQUUxRCxVQUFVLENBQUMsR0FBRyxFQUFFO1lBQ2QsUUFBUSxDQUFDLGdCQUFnQixDQUFDLGdCQUFnQixDQUFDLENBQUMsT0FBTyxDQUFDLE9BQU8sQ0FBQyxFQUFFO2dCQUM1RCxPQUFPLENBQUMsWUFBWSxDQUFDLE1BQU0sRUFBRSxRQUFRLENBQUMsQ0FBQztZQUN6QyxDQUFDLENBQUMsQ0FBQztRQUNMLENBQUMsRUFBRSxJQUFJLENBQUMsQ0FBQTtJQUVaLENBQUM7SUFHRCxjQUFjO1FBQ1osSUFBSSxDQUFDLEVBQUUsQ0FBQyw2QkFBNkIsRUFBRSxDQUFDLFNBQVMsQ0FDL0MsQ0FBQyxHQUFRLEVBQUUsRUFBRTtZQUNYLElBQUksQ0FBQyxHQUFHLEdBQUcsR0FBRyxFQUFFLEdBQUcsQ0FBQztZQUNwQixJQUFJLENBQUMsc0JBQXNCLEdBQUcsR0FBRyxDQUFDO1lBQ2xDLElBQUksQ0FBQyxRQUFRLEdBQUcsR0FBRyxFQUFFLFFBQVEsQ0FBQztZQUM5QixJQUFJLENBQUMsZ0NBQWdDLENBQUMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxDQUFDO1FBQ3ZELENBQUMsRUFDRCxDQUFDLEdBQUcsRUFBRSxFQUFFO1lBQ04sT0FBTyxDQUFDLEdBQUcsQ0FBQyxHQUFHLENBQUMsQ0FBQztRQUNuQixDQUFDLENBQ0YsQ0FBQztJQUNKLENBQUM7SUFFRCxnQ0FBZ0MsQ0FBQyxHQUFZO1FBQzNDLElBQUksQ0FBQyxFQUFFLENBQUMsZ0NBQWdDLENBQUMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxDQUFDLFNBQVMsQ0FBQyxDQUFDLEdBQWEsRUFBRSxFQUFFO1lBQ2xGLElBQUksQ0FBQyx3Q0FBd0MsR0FBRyxHQUFHLENBQUM7UUFDdEQsQ0FBQyxDQUFDLENBQUM7SUFDTCxDQUFDO0lBRUQsYUFBYSxDQUFDLEtBQUs7UUFDakIsSUFBSSxDQUFDLFNBQVMsR0FBRyxLQUFLLENBQUM7UUFDdkIsSUFBSSxDQUFDLFdBQVcsR0FBRyxLQUFLLENBQUM7UUFDekIsSUFBRyxJQUFJLENBQUMsUUFBUSxJQUFJLGlCQUFpQixFQUFDO1lBQ3BDLElBQUksQ0FBQywrQkFBK0IsR0FBQyxJQUFJLENBQUM7U0FDNUM7SUFDRixDQUFDO0lBRUQsTUFBTTtRQUNKLElBQUksQ0FBQyxJQUFJLENBQUMsVUFBVSxFQUFFLENBQUM7UUFDdkIsSUFBSSxDQUFDLFFBQVEsQ0FBQyxJQUFJLEVBQUUsQ0FBQztJQUN2QixDQUFDO0lBRUQsSUFBSTtRQUNGLElBQUksSUFBSSxDQUFDLEVBQUUsQ0FBQyxPQUFPLEVBQUU7WUFDbkIsT0FBTyxDQUFDLEdBQUcsQ0FBQyxJQUFJLENBQUMsRUFBRSxDQUFDLENBQUM7WUFDckIsT0FBTztTQUNSO1FBQ0QsTUFBTSxVQUFVLEdBQUcsSUFBSSxDQUFDLEVBQUUsQ0FBQyxhQUFhLEVBQUUsQ0FBQztRQUMzQyxJQUFJLENBQUMsSUFBSSxDQUFDLFVBQVUsRUFBRSxDQUFDO1FBRXhCLGlFQUFpRTtRQUU5RCxJQUFJLElBQUksQ0FBQyxRQUFRLEtBQUssa0JBQWtCLEVBQUU7WUFDdEMsTUFBTSxZQUFZLEdBQUcsQ0FBQyxTQUFTLEVBQUUsWUFBWSxFQUFFLFNBQVMsQ0FBQyxDQUFDO1lBQzFELElBQUksVUFBVSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsRUFBRSxDQUFDLFlBQVksQ0FBQyxRQUFRLENBQUMsSUFBSSxDQUFDLENBQUMsRUFBRTtnQkFDcEQsSUFBSSxDQUFDLGlCQUFpQixHQUFHLE1BQU0sQ0FBQztnQkFDaEMsa0NBQWtDO2dCQUNsQyxNQUFNLG1CQUFtQixHQUFHLElBQUksQ0FBQyxFQUFFLENBQUMsdUJBQXVCLEVBQUUsQ0FBQztnQkFDNUQsSUFBSSxJQUFJLENBQUMsd0NBQXdDLElBQUksSUFBSSxDQUFDLGtCQUFrQixDQUFDLG1CQUFtQixDQUFDLEVBQUU7b0JBQ2pHLElBQUksQ0FBQyxJQUFJLENBQUMsVUFBVSxFQUFFLENBQUM7b0JBQ3JCLElBQUksQ0FBQyxnQkFBZ0IsRUFBRSxDQUFDO2lCQUMzQjtxQkFBSTtvQkFDSCxJQUFJLENBQUMsSUFBSSxDQUFDLFVBQVUsRUFBRSxDQUFDO29CQUN0QixJQUFJLENBQUMsaUJBQWlCLEVBQUUsQ0FBQztpQkFDM0I7Z0JBQ0gsZ0NBQWdDO2dCQUNoQyx3QkFBd0I7Z0JBQ3hCLHNCQUFzQjthQUMzQjtpQkFBSTtnQkFDSCxJQUFJLENBQUMsSUFBSSxDQUFDLFVBQVUsRUFBRSxDQUFDO2dCQUN0QixJQUFJLENBQUMsaUJBQWlCLEVBQUUsQ0FBQzthQUMzQjtZQUNDLElBQUksQ0FBQyxJQUFJLENBQUMsVUFBVSxFQUFFLENBQUM7U0FDNUI7YUFBTSxJQUFJLElBQUksQ0FBQyxRQUFRLEtBQUssaUJBQWlCLEVBQUU7WUFDOUMsTUFBTSxzQkFBc0IsR0FBRyxDQUFDLE9BQU8sQ0FBQyxDQUFDO1lBQ3RDLGlDQUFpQztZQUNoQyxJQUFJLFVBQVUsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLEVBQUUsQ0FBQyxzQkFBc0IsQ0FBQyxRQUFRLENBQUMsSUFBSSxDQUFDLENBQUMsRUFBRTtnQkFDdEUsNkJBQTZCO2dCQUNuQixJQUFJLENBQUMsaUJBQWlCLEdBQUcsT0FBTyxDQUFDO2dCQUNoQyxJQUFJLENBQUMsSUFBSSxDQUFDLFVBQVUsRUFBRSxDQUFDO2dCQUMxQixJQUFHLElBQUksQ0FBQyx3Q0FBd0MsRUFBQztvQkFDNUMsSUFBSSxDQUFDLHVCQUF1QixFQUFFLENBQUM7aUJBQ25DO3FCQUFJO29CQUNELElBQUksQ0FBQyxpQkFBaUIsRUFBRSxDQUFDO2lCQUM1QjthQUNGO2lCQUFJO2dCQUNGLElBQUksQ0FBQyxpQkFBaUIsRUFBRSxDQUFDO2FBQzNCO1lBQ1IsUUFBUTtTQUVaO2FBQU0sSUFBSSxJQUFJLENBQUMsUUFBUSxLQUFLLGlCQUFpQixFQUFFO1lBQ3RDLElBQUksQ0FBQyxpQkFBaUIsRUFBRSxDQUFDO1lBQ3pCLCtDQUErQztZQUNoRCxJQUFJLENBQUMseUJBQXlCLEdBQUcsS0FBSyxDQUFDO1lBQ3ZDLElBQUksQ0FBQyx3QkFBd0IsR0FBRyxLQUFLLENBQUM7WUFDdEMsSUFBSSxDQUFDLGdCQUFnQixHQUFHLEtBQUssQ0FBQztZQUUvQix1Q0FBdUM7U0FDOUM7SUFFSCxDQUFDO0lBRUQseUJBQXlCO1FBQ3ZCLElBQUcsSUFBSSxDQUFDLFFBQVEsSUFBSSxpQkFBaUIsRUFBQztZQUNuQyxJQUFJLENBQUMsSUFBSSxDQUFDLFVBQVUsRUFBRSxDQUFDO1lBQ3ZCLElBQUksQ0FBQyxpQkFBaUIsRUFBRSxDQUFDO1NBQzNCO2FBQUk7WUFDSCxJQUFJLENBQUMsK0JBQStCLEdBQUMsSUFBSSxDQUFDO1lBQzVDLHdDQUF3QztTQUN2QztRQUNELElBQUksQ0FBQyx5QkFBeUIsR0FBRyxLQUFLLENBQUM7UUFDdkMsSUFBSSxDQUFDLHdCQUF3QixHQUFHLEtBQUssQ0FBQztRQUN0QyxJQUFJLENBQUMsZ0JBQWdCLEdBQUcsS0FBSyxDQUFDO0lBRWhDLENBQUM7SUFFRCxpQkFBaUI7UUFDZixJQUFJLENBQUMsRUFBRSxDQUFDLG1CQUFtQixFQUFFLENBQUM7SUFDaEMsQ0FBQztJQUVELHVCQUF1QjtRQUNyQixJQUFJLENBQUMsRUFBRSxDQUFDLHNCQUFzQixFQUFFLENBQUMsU0FBUyxDQUN4QyxDQUFDLEdBQUcsRUFBRSxFQUFFO1lBQ04sSUFBSSxDQUFDLG9CQUFvQixHQUFHLEdBQUcsQ0FBQztZQUNoQyxJQUFJLENBQUMsK0JBQStCLENBQUMsR0FBRyxDQUFDLENBQUM7WUFDM0MsNEJBQTRCO1FBQzdCLENBQUMsRUFDRCxDQUFDLEdBQUcsRUFBRSxFQUFFLEdBQUUsQ0FBQyxDQUNaLENBQUM7SUFDSixDQUFDO0lBRUQsK0JBQStCLENBQzdCLG1CQUE0QztRQUU1QyxJQUFJLFFBQVEsR0FBRyxJQUFJLENBQUMsUUFBUSxDQUFDO1FBQzdCLElBQUksQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFZLGlCQUFpQixRQUFRLEVBQUUsQ0FBQyxDQUFDLFNBQVMsQ0FDN0QsQ0FBQyxHQUFHLEVBQUUsRUFBRTtZQUNOLElBQUksQ0FBQyxlQUFlLEdBQUcsR0FBRyxDQUFDO1lBQzNCLHdDQUF3QztZQUN4QyxJQUFJLENBQUMsMEJBQTBCLEdBQUcsRUFBRSxDQUFDO1lBQ3JDLDRDQUE0QztZQUM1QyxNQUFNLHNCQUFzQixHQUFHO2dCQUM3QixrQkFBa0I7Z0JBQ2xCLG1CQUFtQjtnQkFDbkIsbUJBQW1CO2FBQ3BCLENBQUM7WUFDRix5REFBeUQ7WUFDekQsTUFBTSxXQUFXLEdBQUcsSUFBSSxHQUFHLEVBQWtCLENBQUM7WUFFOUMsS0FBSyxNQUFNLElBQUksSUFBSSxtQkFBbUIsRUFBRTtnQkFDdEMsV0FBVyxDQUFDLEdBQUcsQ0FBQyxJQUFJLENBQUMsR0FBRyxFQUFFLElBQUksQ0FBQyxXQUFXLElBQUksRUFBRSxDQUFDLENBQUM7YUFDbkQ7WUFFRCwrQ0FBK0M7WUFDL0MsS0FBSyxNQUFNLEtBQUssSUFBSSxzQkFBc0IsRUFBRTtnQkFDMUMsTUFBTSxVQUFVLEdBQUcsSUFBSSxDQUFDLGVBQWUsQ0FBQyxLQUFLLENBQUMsQ0FBQztnQkFFL0MsSUFBSSxVQUFVLElBQUksV0FBVyxDQUFDLEdBQUcsQ0FBQyxVQUFVLENBQUMsRUFBRTtvQkFDN0MsSUFBSSxDQUFDLDBCQUEwQixDQUFDLElBQUksQ0FBQzt3QkFDbkMsUUFBUSxFQUFFLFdBQVcsQ0FBQyxHQUFHLENBQUMsVUFBVSxDQUFDO3dCQUNyQyxXQUFXLEVBQUUsVUFBVTtxQkFDeEIsQ0FBQyxDQUFDO2lCQUNKO2FBQ0Y7WUFDRCxJQUFJLENBQUMseUJBQXlCLEdBQUcsSUFBSSxDQUFDO1FBRXhDLENBQUMsRUFDRCxDQUFDLEdBQUcsRUFBRSxFQUFFO1lBQ04sT0FBTyxDQUFDLEtBQUssQ0FBQyxtQ0FBbUMsRUFBRSxHQUFHLENBQUMsQ0FBQztRQUMxRCxDQUFDLENBQ0YsQ0FBQztJQUNKLENBQUM7SUFFRCxnQkFBZ0I7UUFDZCxJQUFJLENBQUMsSUFBSSxDQUFDLFVBQVUsRUFBRSxDQUFDO1FBQ3ZCLElBQUksQ0FBQyxnQkFBZ0IsR0FBRyxJQUFJLENBQUM7UUFDN0IsSUFBSSxDQUFDLHlCQUF5QixHQUFHLEtBQUssQ0FBQztRQUN2QyxJQUFJLENBQUMsRUFBRSxDQUFDLHVDQUF1QyxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsQ0FBQyxTQUFTLENBQUMsQ0FBQyxHQUFHLEVBQUUsRUFBRTtZQUMvRSx3Q0FBd0M7WUFDeEMsSUFBSSxHQUFHLEVBQUU7Z0JBQ1AsSUFBSSxDQUFDLHdCQUF3QixHQUFHLElBQUksQ0FBQzthQUN0QztpQkFBTTtnQkFDTCxJQUFJLENBQUMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxxQ0FBcUMsR0FBRyxJQUFJLENBQUMsUUFBUSxHQUFHLHlDQUF5QyxDQUFDLENBQUE7YUFDdkg7UUFDSCxDQUFDLENBQUMsQ0FBQztRQUNILHVCQUF1QjtRQUN2QixxQkFBcUI7UUFDckIscUJBQXFCO0lBQ3ZCLENBQUM7SUFFRCxXQUFXO1FBQ1QsSUFBSSxDQUFDLFFBQVEsQ0FBQyxJQUFJLEVBQUUsQ0FBQztRQUNyQixJQUFJLENBQUMsSUFBSSxDQUFDLFVBQVUsRUFBRSxDQUFDO1FBQ3ZCLE9BQU8sQ0FBQyxHQUFHLENBQUMsbUJBQW1CLENBQUMsQ0FBQTtRQUNoQyxZQUFZLENBQUMsT0FBTyxDQUFDLFFBQVEsRUFBRSxJQUFJLENBQUMsUUFBUSxDQUFDLENBQUM7UUFDOUMsSUFBSSxDQUFDLEVBQUUsQ0FBQyxNQUFNLEVBQUUsQ0FBQztRQUNqQixVQUFVLENBQUMsR0FBRyxFQUFFLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxRQUFRLENBQUMsQ0FBQyxnQkFBZ0IsRUFBRSxFQUFFLENBQUMsQ0FBQyxFQUFFLElBQUksQ0FBQyxDQUFDO0lBQ3ZFLENBQUM7SUFFRCxXQUFXLENBQUMsS0FBSztRQUNmLElBQUksS0FBSyxFQUFFLFNBQVMsSUFBSSxLQUFLLEVBQUU7WUFDN0IsSUFBSSxDQUFDLFNBQVMsR0FBRyxLQUFLLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQyxDQUFDO1NBQy9CO1FBQ0QsSUFBSSxDQUFDLFNBQVMsR0FBRyxJQUFJLENBQUM7SUFDeEIsQ0FBQztJQUVELE9BQU8sQ0FBQyxHQUFHO1FBQ1QsSUFBSSxDQUFDLFdBQVcsR0FBRyxJQUFJLENBQUM7SUFDMUIsQ0FBQztJQUVELE1BQU07UUFDSixJQUFJLENBQUMsR0FBRyxDQUFDLFlBQVksQ0FBQyxVQUFVLENBQUMsQ0FBQztRQUNsQyxJQUFJLENBQUMsRUFBRSxDQUFDLE1BQU0sRUFBRSxDQUFDO0lBQ25CLENBQUM7SUFFRCxrQkFBa0I7UUFDaEIsSUFBSSxDQUFDLEVBQUUsQ0FBQyxzQkFBc0IsRUFBRSxDQUFDLFNBQVMsQ0FBQztZQUN6QyxJQUFJLEVBQUUsQ0FBQyxHQUFHLEVBQUUsRUFBRTtnQkFDWixJQUFJLEdBQUcsRUFBRTtvQkFDUCxJQUFJLENBQUMsa0JBQWtCLEdBQUcsR0FBRyxDQUFDO2lCQUMvQjtxQkFBTTtvQkFDTCxJQUFJLENBQUMsSUFBSSxDQUFDLFNBQVMsQ0FBQyw4QkFBOEIsQ0FBQyxDQUFDO2lCQUNyRDtZQUNILENBQUM7WUFDRCxLQUFLLEVBQUUsQ0FBQyxHQUFHLEVBQUUsRUFBRTtnQkFDYix1Q0FBdUM7Z0JBQ3ZDLE9BQU8sQ0FBQyxLQUFLLENBQUMsOEJBQThCLEVBQUUsR0FBRyxDQUFDLENBQUM7Z0JBQ25ELElBQUksQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDLG9EQUFvRCxDQUFDLENBQUM7WUFDNUUsQ0FBQztTQUNGLENBQUMsQ0FBQztJQUNMLENBQUM7SUFDRCw2QkFBNkI7UUFDM0IsSUFBSSxJQUFJLENBQUMsUUFBUSxLQUFLLGlCQUFpQixFQUFFO1lBQ3JDLElBQUksQ0FBQyx5QkFBeUIsR0FBQyxLQUFLLENBQUM7WUFDbkMsSUFBSSxDQUFDLGlCQUFpQixHQUFHLFNBQVMsQ0FBQztZQUNuQyxJQUFJLENBQUMsSUFBSSxDQUFDLFVBQVUsRUFBRSxDQUFDO1lBQ3hCLDZEQUE2RDtZQUNwRCxJQUFHLElBQUksQ0FBQyx3Q0FBd0MsRUFBQztnQkFDL0MsSUFBSSxDQUFDLHVCQUF1QixFQUFFLENBQUM7YUFDaEM7aUJBQUk7Z0JBQ0gsMkJBQTJCO2dCQUMzQixJQUFJLENBQUMseUJBQXlCLEdBQUMsS0FBSyxDQUFDO2dCQUNyQyxJQUFJLENBQUMsK0JBQStCLEdBQUMsSUFBSSxDQUFDO2FBRzNDO1NBQ0Y7SUFDakIsQ0FBQztJQUVDLGtCQUFrQixDQUFDLFFBQTJEO1FBQzVFLE1BQU0sV0FBVyxHQUFHLENBQUMsU0FBUyxFQUFFLFlBQVksRUFBRSxTQUFTLENBQUMsQ0FBQztRQUV6RCxxRUFBcUU7UUFDckUsS0FBSyxJQUFJLElBQUksSUFBSSxRQUFRLEVBQUU7WUFDekIsTUFBTSxXQUFXLEdBQUcsSUFBSSxDQUFDLFdBQVcsQ0FBQyxXQUFXLEVBQUUsQ0FBQztZQUVuRCw2Q0FBNkM7WUFDN0MsTUFBTSxVQUFVLEdBQUcsV0FBVyxDQUFDLElBQUksQ0FBQyxHQUFHLENBQUMsRUFBRSxDQUFDLEdBQUcsQ0FBQyxXQUFXLEVBQUUsS0FBSyxXQUFXLENBQUMsQ0FBQztZQUU5RSxJQUFJLFVBQVUsRUFBRTtnQkFDZCxtRUFBbUU7Z0JBQ25FLE1BQU0sZUFBZSxHQUFHLElBQUksQ0FBQyxrQkFBa0IsQ0FBQyxJQUFJLENBQUMsVUFBVSxDQUFDLENBQUM7Z0JBQ2pFLE1BQU0sZ0JBQWdCLEdBQUcsSUFBSSxDQUFDLFlBQVksQ0FBQztnQkFFM0MsbUZBQW1GO2dCQUNuRixNQUFNLFdBQVcsR0FBRyxJQUFJLENBQUMsYUFBYSxDQUFDLGVBQWUsQ0FBQyxDQUFDO2dCQUN4RCxNQUFNLFdBQVcsR0FBRyxJQUFJLENBQUMsYUFBYSxDQUFDLGdCQUFnQixDQUFDLENBQUM7Z0JBRXpELDRDQUE0QztnQkFDNUMsSUFBSSxDQUFDLFdBQVcsSUFBSSxDQUFDLFdBQVcsQ0FBQyxJQUFJLENBQUMsQ0FBQyxXQUFXLElBQUksV0FBVyxDQUFDO29CQUM5RCxDQUFDLGVBQWUsSUFBSSxnQkFBZ0IsSUFBSSxlQUFlLENBQUMsV0FBVyxFQUFFLEtBQUssZ0JBQWdCLENBQUMsV0FBVyxFQUFFLENBQUMsRUFBRTtvQkFDN0csa0VBQWtFO29CQUNsRSxPQUFPLElBQUksQ0FBQztpQkFDYjthQUNGO1NBQ0Y7UUFFRCwwREFBMEQ7UUFDMUQsT0FBTyxLQUFLLENBQUM7SUFDZixDQUFDO0lBRUQsOERBQThEO0lBQzlELGFBQWEsQ0FBQyxLQUFVO1FBQ3RCLE9BQU8sS0FBSyxLQUFLLElBQUksSUFBSSxLQUFLLEtBQUssRUFBRSxJQUFJLEtBQUssS0FBSyxTQUFTLENBQUM7SUFDL0QsQ0FBQztpRkEzVlUsZ0JBQWdCO29FQUFoQixnQkFBZ0I7Ozs7OztZQ2xCN0IsbUNBQzZDO1lBQ3pDLGtGQWdCYyxvREFBQSxvREFBQSxvREFBQSxxRUFBQSw0RUFBQSx3RkFBQTtZQW1EbEIsaUJBQVc7O1lBcEVQLHlDQUF5QjtZQUR5Qix3REFBcUU7WUFvQmpILGVBQWlDO1lBQWpDLDBEQUFpQztZQWdCakMsZUFBaUI7WUFBakIsc0NBQWlCO1lBT2pCLGVBQWU7WUFBZixvQ0FBZTtZQW9CSCxlQUE4QjtZQUE5QixtREFBOEI7WUFFeEIsZUFBK0I7WUFBL0Isb0RBQStCOzs7aUZEL0M5QyxnQkFBZ0I7Y0FMNUIsU0FBUzsyQkFDRSxhQUFhO2dPQVFOLEVBQUU7a0JBQWxCLFNBQVM7bUJBQUMsSUFBSTtZQUdmLFFBQVE7a0JBRFAsTUFBTTtZQUlQLEtBQUs7a0JBREosTUFBTTs7a0ZBVEksZ0JBQWdCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQWZ0ZXJWaWV3SW5pdCwgQ29tcG9uZW50LCBFdmVudEVtaXR0ZXIsIE9uSW5pdCwgT3V0cHV0LCBWaWV3Q2hpbGQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgQ29tYm9PcHRpb24gfSBmcm9tICcuLi8uLi9tb2RlbHMvcXVlc3Rpb25uYWlyZS9Db21ib01vZGVsJztcclxuaW1wb3J0IHsgTG9naW5TZXJ2aWNlIH0gZnJvbSAnLi4vLi4vc2VydmljZXMvbG9naW4vbG9naW4uc2VydmljZSc7XHJcbmltcG9ydCB7IENsYWltYW50U2VydmljZSB9IGZyb20gJy4uLy4uL3NlcnZpY2VzL2NsYWltYW50LXNlcnZpY2UvY2xhaW1hbnQuc2VydmljZSc7XHJcbmltcG9ydCB7IFV0aWxTZXJ2aWNlIH0gZnJvbSAnLi4vLi4vc2VydmljZXMvdXRpbC91dGlsLnNlcnZpY2UnO1xyXG5pbXBvcnQgeyBGb3JtQnVpbGRlclBhZ2UgfSBmcm9tICcuLi9xdWVzdGlvbm5haXJlL2Zvcm0tYnVpbGRlci9mb3JtLWJ1aWxkZXIucGFnZSc7XHJcbmltcG9ydCB7IE5hdkNvbnRyb2xsZXIgfSBmcm9tICdAaW9uaWMvYW5ndWxhcic7XHJcbmltcG9ydCB7IFVzZXJNb2RlbCB9IGZyb20gJy4uLy4uL21vZGVscy9Vc2VyTW9kZWwnO1xyXG5pbXBvcnQgeyBTZWN1cml0eVF1ZXN0aW9uTW9kZWwgfSBmcm9tICcuLi8uLi9tb2RlbHMvU2VjdXJpdHlRdWVzdGlvbk1vZGVsJztcclxuaW1wb3J0IHsgUm91dGVyIH0gZnJvbSAnQGFuZ3VsYXIvcm91dGVyJztcclxuaW1wb3J0IHsgQ2xhaW1hbnRVc3BzUmVkaXJlY3RTZXJ2aWNlIH0gZnJvbSAnLi4vLi4vc2VydmljZXMvY2xhaW1hbnQtc2VydmljZS9jbGFpbWFudC11c3BzLXJlZGlyZWN0LnNlcnZpY2UnO1xyXG5pbXBvcnQgeyBMZXhpc05leGlzU2VydmljZSB9IGZyb20gJy4uLy4uL3NlcnZpY2VzL2xleGlzLW5leGlzL2xleGlzLm5leGlzLnNlcnZpY2UnO1xyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgc2VsZWN0b3I6ICdhcHAtcHJvZmlsZScsXHJcbiAgdGVtcGxhdGVVcmw6ICcuL3Byb2ZpbGUuY29tcG9uZW50Lmh0bWwnLFxyXG4gIHN0eWxlVXJsczogWycuL3Byb2ZpbGUuY29tcG9uZW50LnNjc3MnXSxcclxufSlcclxuZXhwb3J0IGNsYXNzIFByb2ZpbGVDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQsIEFmdGVyVmlld0luaXQge1xyXG4gIHNob3dTdWNjZXNzID0gZmFsc2U7XHJcbiAgc2hvd0Vycm9yID0gZmFsc2U7XHJcbiAgZXJyb3JUZXh0OiBzdHJpbmc7XHJcbiAgQFZpZXdDaGlsZCgnZmInKSBmYjogRm9ybUJ1aWxkZXJQYWdlO1xyXG5cclxuICBAT3V0cHV0KClcclxuICBvbkNhbmNlbDogRXZlbnRFbWl0dGVyPGFueT4gPSBuZXcgRXZlbnRFbWl0dGVyKCk7XHJcblxyXG4gIEBPdXRwdXQoKVxyXG4gIGVycm9yOiBFdmVudEVtaXR0ZXI8YW55PiA9IG5ldyBFdmVudEVtaXR0ZXIoKTtcclxuXHJcbiAgcHVibGljIHByb2ZpbGVPcHRzID0gQ29tYm9PcHRpb24uQ0xBSU1BTlRfUFJPRklMRV9PUFRTO1xyXG5cclxuICBwdWJsaWMgc2VsZWN0ZWQgPSAncGVyc29uYWwtZGV0YWlscyc7XHJcblxyXG4gIHB1YmxpYyBpc1JldHVybmluZ1VzZXI6IGJvb2xlYW4gPSB0cnVlO1xyXG4gIHB1YmxpYyB2ZXJpZmljYXRpb25QcmVmZXJlbmNlO1xyXG5cclxuICBwdWJsaWMgc3NuOiBzdHJpbmc7XHJcbiAgcHVibGljIHVzZXJOYW1lOiBzdHJpbmc7XHJcbiAgcHVibGljIGN1c3RvbWVyRXZlbnRUeXBlIDogc3RyaW5nO1xyXG4gIHB1YmxpYyBhbGxTZWN1cml0eVF1ZXN0aW9ucztcclxuICBwdWJsaWMgdXNlcnNRdWVzQW5kQW5zO1xyXG4gIHB1YmxpYyBtYXBwZWRLZXlzUXVlc3Rpb25zRm9yVXNlcjtcclxuXHJcbiAgcHVibGljIGlzU2VjdXJpdHlRdWVzdGlvbkVuYWJsZWQ6IGJvb2xlYW4gPSBmYWxzZTtcclxuICBwdWJsaWMgaXNQYXltZW50T3B0aW9uUXVlc3Rpb25zRW5hYmxlZDogYm9vbGVhbiA9IGZhbHNlO1xyXG4gIHB1YmxpYyBpc1BheW1lbnRPcHRpb25EaXZFbmFibGVkOiBib29sZWFuID0gdHJ1ZTtcclxuICBwdWJsaWMgaXNMZXhpc05leGlzUG9wdXBFbmFibGVkOiBib29sZWFuID0gZmFsc2U7XHJcbiAgcHVibGljIHVzcHNSZWRpcmVjdFVybDogc3RyaW5nO1xyXG5cclxuICBwdWJsaWMgaXNCdXR0b25EaXNhYmxlZDogYm9vbGVhbiA9IGZhbHNlO1xyXG4gIHB1YmxpYyBpc0xleGlzTmV4aXNQcm9vZmVkV2l0aGluVHdlbnR5Rm91ckhvdXJzOiBib29sZWFuID0gZmFsc2U7XHJcblxyXG4gIHB1YmxpYyB1c2VyUGVyc29uYWxEZXRhaWw6IGFueTtcclxuXHJcbiAgY29uc3RydWN0b3IoXHJcbiAgICBwdWJsaWMgdXRpbDogVXRpbFNlcnZpY2UsXHJcbiAgICBwdWJsaWMgbHM6IExvZ2luU2VydmljZSxcclxuICAgIHB1YmxpYyBuYXY6IE5hdkNvbnRyb2xsZXIsXHJcbiAgICBwdWJsaWMgY3M6IENsYWltYW50U2VydmljZSxcclxuICAgIHB1YmxpYyByb3V0ZXI6IFJvdXRlcixcclxuICAgIHB1YmxpYyB1cjogQ2xhaW1hbnRVc3BzUmVkaXJlY3RTZXJ2aWNlLFxyXG4gICAgcHVibGljIGxuOiBMZXhpc05leGlzU2VydmljZVxyXG4gICkge31cclxuXHJcbiAgbmdPbkluaXQoKTogdm9pZCB7XHJcbiAgICBpZihsb2NhbFN0b3JhZ2UuZ2V0SXRlbShcImxhbmd1YWdlXCIpID09PSBcImVzXCIpe1xyXG4gICAgICB0aGlzLnByb2ZpbGVPcHRzID0gQ29tYm9PcHRpb24uQ0xBSU1BTlRfUFJPRklMRV9PUFRTX0VTO1xyXG4gICAgfSBlbHNle1xyXG4gICAgICB0aGlzLnByb2ZpbGVPcHRzID0gQ29tYm9PcHRpb24uQ0xBSU1BTlRfUFJPRklMRV9PUFRTO1xyXG4gICAgfVxyXG4gICAgdGhpcy5nZXRVc2VyRGV0YWlscygpO1xyXG5cclxuICAgIC8vR2V0IHVzZXIgcGVyc29uYWwtZGV0YWlsc1xyXG4gICAgdGhpcy5nZXRQZXJzb25hbERldGFpbHMoKTtcclxuICB9XHJcblxyXG4gIG5nQWZ0ZXJWaWV3SW5pdCgpOiB2b2lkIHtcclxuICAgICAgY29uc3QgcERpYWxvZyA9IGRvY3VtZW50LnF1ZXJ5U2VsZWN0b3IoJ2Rpdltyb2xlPWRpYWxvZ10nKTtcclxuICAgICAgcERpYWxvZz8uc2V0QXR0cmlidXRlKCdhcmlhLWxhYmVsbGVkYnknLCAncGRpYWxvZy10aXRsZScpOyBcclxuICAgICAgXHJcbiAgICAgIHNldFRpbWVvdXQoKCkgPT4ge1xyXG4gICAgICAgIGRvY3VtZW50LnF1ZXJ5U2VsZWN0b3JBbGwoJ2RpdiAuaW9uQnV0dG9uJykuZm9yRWFjaChlbGVtZW50ID0+IHtcclxuICAgICAgICAgIGVsZW1lbnQuc2V0QXR0cmlidXRlKCdyb2xlJywgJ2J1dHRvbicpO1xyXG4gICAgICAgIH0pO1xyXG4gICAgICB9LCAxMDAwKVxyXG4gICAgICBcclxuICB9XHJcblxyXG4gIFxyXG4gIGdldFVzZXJEZXRhaWxzKCkge1xyXG4gICAgdGhpcy5jcy5nZXRVc2VyRGV0YWlsc0ZvckxvZ2dlZEluVXNlcigpLnN1YnNjcmliZShcclxuICAgICAgKHJlczogYW55KSA9PiB7XHJcbiAgICAgICAgdGhpcy5zc24gPSByZXM/LnNzbjtcclxuICAgICAgICB0aGlzLnZlcmlmaWNhdGlvblByZWZlcmVuY2UgPSByZXM7XHJcbiAgICAgICAgdGhpcy51c2VyTmFtZSA9IHJlcz8udXNlck5hbWU7XHJcbiAgICAgICAgdGhpcy5pc0xleGlzTmV4aXNQcm9vZmVkV2l0aGluMjRIb3Vycyh0aGlzLnVzZXJOYW1lKTtcclxuICAgICAgfSxcclxuICAgICAgKGVycikgPT4ge1xyXG4gICAgICAgIGNvbnNvbGUubG9nKGVycik7XHJcbiAgICAgIH1cclxuICAgICk7XHJcbiAgfVxyXG5cclxuICBpc0xleGlzTmV4aXNQcm9vZmVkV2l0aGluMjRIb3Vycyhzc24gOiBTdHJpbmcpe1xyXG4gICAgdGhpcy5sbi5pc0xleGlzTmV4aXNQcm9vZmVkV2l0aGluMjRIb3Vycyh0aGlzLnVzZXJOYW1lKS5zdWJzY3JpYmUoKHJlcyA6IGJvb2xlYW4pID0+IHtcclxuICAgICAgdGhpcy5pc0xleGlzTmV4aXNQcm9vZmVkV2l0aGluVHdlbnR5Rm91ckhvdXJzID0gcmVzO1xyXG4gICAgfSk7XHJcbiAgfVxyXG5cclxuICBvblZhbHVlQ2hhbmdlKGV2ZW50KSB7XHJcbiAgICB0aGlzLnNob3dFcnJvciA9IGZhbHNlO1xyXG4gICAgdGhpcy5zaG93U3VjY2VzcyA9IGZhbHNlOyAgXHJcbiAgICBpZih0aGlzLnNlbGVjdGVkICE9ICdwYXltZW50LWRldGFpbHMnKXtcclxuICAgICAgdGhpcy5pc1BheW1lbnRPcHRpb25RdWVzdGlvbnNFbmFibGVkPXRydWU7XHJcbiAgIH1cclxuICB9XHJcblxyXG4gIGNhbmNlbCgpIHtcclxuICAgIHRoaXMudXRpbC5oaWRlTG9hZGVyKCk7XHJcbiAgICB0aGlzLm9uQ2FuY2VsLmVtaXQoKTtcclxuICB9XHJcblxyXG4gIHNhdmUoKSB7XHJcbiAgICBpZiggdGhpcy5mYi5pbnZhbGlkKSB7XHJcbiAgICAgIGNvbnNvbGUubG9nKHRoaXMuZmIpO1xyXG4gICAgICByZXR1cm47XHJcbiAgICB9XHJcbiAgICBjb25zdCBkaXJ0eUl0ZW1zID0gdGhpcy5mYi5nZXREaXJ0eUl0ZW1zKCk7XHJcbiAgICB0aGlzLnV0aWwuc2hvd0xvYWRlcigpO1xyXG5cclxuICAgLy8gdGhpcy5zYXZlUXVlc3Rpb25uYWlyZSgpOyAvLyBGaXJzdCBzYXZpbmcgdGhlIGNoYW5nZSBpbiB0aGUgZGJcclxuXHJcbiAgICAgIGlmICh0aGlzLnNlbGVjdGVkID09PSAncGVyc29uYWwtZGV0YWlscycpIHtcclxuICAgICAgICAgIGNvbnN0IG5hbWVDb250cm9scyA9IFsnZnN0bmFtZScsICdtaWRkbGVuYW1lJywgJ2xzdG5hbWUnXTtcclxuICAgICAgICAgIGlmIChkaXJ0eUl0ZW1zLnNvbWUoaXRlbSA9PiBuYW1lQ29udHJvbHMuaW5jbHVkZXMoaXRlbSkpKSB7XHJcbiAgICAgICAgICAgICAgICB0aGlzLmN1c3RvbWVyRXZlbnRUeXBlID0gJ25hbWUnOyAgICAgICAgICAgICAgICBcclxuICAgICAgICAgICAgICAgIC8vIFVuY29tbWVudCB0byBlbmFibGUgTGV4aXMgTmV4aXNcclxuICAgICAgICAgICAgICAgIGNvbnN0IGRpcnR5SXRlbVdpdGhWYWx1ZXMgPSB0aGlzLmZiLmdldERpcnR5SXRlbXNXaXRoVmFsdWVzKCk7XHJcbiAgICAgICAgICAgICAgICAgIGlmICh0aGlzLmlzTGV4aXNOZXhpc1Byb29mZWRXaXRoaW5Ud2VudHlGb3VySG91cnMgJiYgdGhpcy52YWxpZGF0ZU5hbWVDaGFuZ2UoZGlydHlJdGVtV2l0aFZhbHVlcykpIHtcclxuICAgICAgICAgICAgICAgICAgICB0aGlzLnV0aWwuaGlkZUxvYWRlcigpOyAgICAgIFxyXG4gICAgICAgICAgICAgICAgICAgICAgdGhpcy5lbmFibGVMZXhpc05leGlzKCk7XHJcbiAgICAgICAgICAgICAgICAgIH1lbHNleyAgIFxyXG4gICAgICAgICAgICAgICAgICAgIHRoaXMudXRpbC5zaG93TG9hZGVyKCk7ICAgICAgICAgICAgICAgXHJcbiAgICAgICAgICAgICAgICAgICAgIHRoaXMuc2F2ZVF1ZXN0aW9ubmFpcmUoKTtcclxuICAgICAgICAgICAgICAgICAgfSAgICAgIFxyXG4gICAgICAgICAgICAgICAgLy8gQ29tbWVudCB0byBlbmFibGUgTGV4aXMgTmV4aXNcclxuICAgICAgICAgICAgICAgIC8vIHRoaXMub25DYW5jZWwuZW1pdCgpO1xyXG4gICAgICAgICAgICAgICAgLy8gdGhpcy50cmlnZ2VyVWRvbCgpO1xyXG4gICAgICAgICAgfWVsc2V7ICBcclxuICAgICAgICAgICAgdGhpcy51dGlsLnNob3dMb2FkZXIoKTsgICAgICAgXHJcbiAgICAgICAgICAgICB0aGlzLnNhdmVRdWVzdGlvbm5haXJlKCk7XHJcbiAgICAgICAgICB9XHJcbiAgICAgICAgICAgIHRoaXMudXRpbC5oaWRlTG9hZGVyKCk7XHJcbiAgICAgIH0gZWxzZSBpZiAodGhpcy5zZWxlY3RlZCA9PT0gJ2NvbnRhY3QtZGV0YWlscycpIHsgIFxyXG4gICAgICAgIGNvbnN0IGNvbnRhY3RkZXRhaWxzQ29udHJvbHMgPSBbJ3Bob25lJ107ICAgICAgIFxyXG4gICAgICAgICAgIC8vIGRpcnR5SXRlbXMuZm9yRWFjaCgoaXRlbSkgPT4ge1xyXG4gICAgICAgICAgICBpZiAoZGlydHlJdGVtcy5zb21lKGl0ZW0gPT4gY29udGFjdGRldGFpbHNDb250cm9scy5pbmNsdWRlcyhpdGVtKSkpIHtcclxuICAgICAgICAgIC8vICAgIGlmIChpdGVtID09PSAncGhvbmUnKSB7XHJcbiAgICAgICAgICAgICAgICAgICAgdGhpcy5jdXN0b21lckV2ZW50VHlwZSA9ICdwaG9uZSc7XHJcbiAgICAgICAgICAgICAgICAgICAgIHRoaXMudXRpbC5oaWRlTG9hZGVyKCk7XHJcbiAgICAgICAgICAgICAgICAgIGlmKHRoaXMuaXNMZXhpc05leGlzUHJvb2ZlZFdpdGhpblR3ZW50eUZvdXJIb3Vycyl7XHJcbiAgICAgICAgICAgICAgICAgICAgICAgdGhpcy5nZXRBbGxTZWN1cml0eVF1ZXN0aW9ucygpO1xyXG4gICAgICAgICAgICAgICAgICB9ZWxzZXsgICAgICAgICAgICAgICAgICBcclxuICAgICAgICAgICAgICAgICAgICAgIHRoaXMuc2F2ZVF1ZXN0aW9ubmFpcmUoKTtcclxuICAgICAgICAgICAgICAgICAgfVxyXG4gICAgICAgICAgICAgICAgfWVsc2V7ICAgICAgICAgICAgICAgICBcclxuICAgICAgICAgICAgICAgICAgIHRoaXMuc2F2ZVF1ZXN0aW9ubmFpcmUoKTtcclxuICAgICAgICAgICAgICAgIH1cclxuICAgICAgICAgLy8gICB9KTtcclxuICAgICAgICAgICAgXHJcbiAgICB9IGVsc2UgaWYgKHRoaXMuc2VsZWN0ZWQgPT09ICdwYXltZW50LWRldGFpbHMnKSB7ICAgICAgICAgICBcclxuICAgICAgICAgICAgICB0aGlzLnNhdmVRdWVzdGlvbm5haXJlKCk7IFxyXG4gICAgICAgICAgICAgIC8vICB0aGlzLmlzUGF5bWVudE9wdGlvblF1ZXN0aW9uc0VuYWJsZWQ9ZmFsc2U7XHJcbiAgICAgICAgICAgICB0aGlzLmlzU2VjdXJpdHlRdWVzdGlvbkVuYWJsZWQgPSBmYWxzZTtcclxuICAgICAgICAgICAgIHRoaXMuaXNMZXhpc05leGlzUG9wdXBFbmFibGVkID0gZmFsc2U7XHJcbiAgICAgICAgICAgICB0aGlzLmlzQnV0dG9uRGlzYWJsZWQgPSBmYWxzZTsgXHJcbiAgICAgICAgICAgICBcclxuICAgICAgICAgICAgLy8gdGhpcy5pc1BheW1lbnRPcHRpb25EaXZFbmFibGVkPXRydWU7XHJcbiAgICB9XHJcbiAgICAgXHJcbiAgfVxyXG5cclxuICBvblNlY3VyaXR5UXVlc3Rpb25TdWNjZXNzKCl7XHJcbiAgICBpZih0aGlzLnNlbGVjdGVkICE9ICdwYXltZW50LWRldGFpbHMnKXtcclxuICAgICAgIHRoaXMudXRpbC5zaG93TG9hZGVyKCk7XHJcbiAgICAgICB0aGlzLnNhdmVRdWVzdGlvbm5haXJlKCk7XHJcbiAgICB9ZWxzZXtcclxuICAgICAgdGhpcy5pc1BheW1lbnRPcHRpb25RdWVzdGlvbnNFbmFibGVkPXRydWU7XHJcbiAgICAvLyAgdGhpcy5pc1BheW1lbnRPcHRpb25EaXZFbmFibGVkPXRydWU7XHJcbiAgICB9XHJcbiAgICB0aGlzLmlzU2VjdXJpdHlRdWVzdGlvbkVuYWJsZWQgPSBmYWxzZTtcclxuICAgIHRoaXMuaXNMZXhpc05leGlzUG9wdXBFbmFibGVkID0gZmFsc2U7XHJcbiAgICB0aGlzLmlzQnV0dG9uRGlzYWJsZWQgPSBmYWxzZTtcclxuICAgXHJcbiAgfVxyXG5cclxuICBzYXZlUXVlc3Rpb25uYWlyZSgpIHsgICAgXHJcbiAgICB0aGlzLmZiLnN1Ym1pdFF1ZXN0aW9ubmFpcmUoKTtcclxuICB9XHJcblxyXG4gIGdldEFsbFNlY3VyaXR5UXVlc3Rpb25zKCkge1xyXG4gICAgdGhpcy5jcy5nZXRBbGxTZWN1cml0eVF1ZXN0aW9uKCkuc3Vic2NyaWJlKFxyXG4gICAgICAocmVzKSA9PiB7XHJcbiAgICAgICAgdGhpcy5hbGxTZWN1cml0eVF1ZXN0aW9ucyA9IHJlcztcclxuICAgICAgICB0aGlzLmxvYWRTZWN1cml0eVF1ZXN0aW9uc09mQ2xhaW1hbnQocmVzKTtcclxuICAgICAgIC8vIHRoaXMuc2F2ZVF1ZXN0aW9ubmFpcmUoKTtcclxuICAgICAgfSxcclxuICAgICAgKGVycikgPT4ge31cclxuICAgICk7XHJcbiAgfVxyXG5cclxuICBsb2FkU2VjdXJpdHlRdWVzdGlvbnNPZkNsYWltYW50KFxyXG4gICAgYWxsUXVlc3Rpb25XaXRoS2V5czogU2VjdXJpdHlRdWVzdGlvbk1vZGVsW11cclxuICApIHtcclxuICAgIHZhciB1c2VyTmFtZSA9IHRoaXMudXNlck5hbWU7XHJcbiAgICB0aGlzLnV0aWwuZ2V0PFVzZXJNb2RlbD4oYHVzZXIvc2VjdXJpdHkvJHt1c2VyTmFtZX1gKS5zdWJzY3JpYmUoXHJcbiAgICAgIChyZXMpID0+IHtcclxuICAgICAgICB0aGlzLnVzZXJzUXVlc0FuZEFucyA9IHJlcztcclxuICAgICAgICAvLyBJbml0aWFsaXplIG1hcHBlZEtleXNRdWVzdGlvbnNGb3JVc2VyXHJcbiAgICAgICAgdGhpcy5tYXBwZWRLZXlzUXVlc3Rpb25zRm9yVXNlciA9IFtdO1xyXG4gICAgICAgIC8vIExpc3Qgb2YgcG9zc2libGUgc2VjdXJpdHkgcXVlc3Rpb24gZmllbGRzXHJcbiAgICAgICAgY29uc3Qgc2VjdXJpdHlRdWVzdGlvbkZpZWxkcyA9IFtcclxuICAgICAgICAgICdzZWN1cml0eVF1ZXN0aW9uJyxcclxuICAgICAgICAgICdzZWN1cml0eVF1ZXN0aW9uMicsXHJcbiAgICAgICAgICAnc2VjdXJpdHlRdWVzdGlvbjMnLFxyXG4gICAgICAgIF07XHJcbiAgICAgICAgLy8gQ3JlYXRlIGEgbWFwIGZvciBxdWljayBsb29rdXAgb2YgcXVlc3Rpb24gZGVzY3JpcHRpb25zXHJcbiAgICAgICAgY29uc3QgcXVlc3Rpb25NYXAgPSBuZXcgTWFwPHN0cmluZywgc3RyaW5nPigpO1xyXG5cclxuICAgICAgICBmb3IgKGNvbnN0IGl0ZW0gb2YgYWxsUXVlc3Rpb25XaXRoS2V5cykge1xyXG4gICAgICAgICAgcXVlc3Rpb25NYXAuc2V0KGl0ZW0ua2V5LCBpdGVtLmRlc2NyaXB0aW9uIHx8ICcnKTtcclxuICAgICAgICB9XHJcblxyXG4gICAgICAgIC8vIEl0ZXJhdGUgdGhyb3VnaCBlYWNoIHNlY3VyaXR5IHF1ZXN0aW9uIGZpZWxkXHJcbiAgICAgICAgZm9yIChjb25zdCBmaWVsZCBvZiBzZWN1cml0eVF1ZXN0aW9uRmllbGRzKSB7XHJcbiAgICAgICAgICBjb25zdCBmaWVsZFZhbHVlID0gdGhpcy51c2Vyc1F1ZXNBbmRBbnNbZmllbGRdO1xyXG5cclxuICAgICAgICAgIGlmIChmaWVsZFZhbHVlICYmIHF1ZXN0aW9uTWFwLmhhcyhmaWVsZFZhbHVlKSkge1xyXG4gICAgICAgICAgICB0aGlzLm1hcHBlZEtleXNRdWVzdGlvbnNGb3JVc2VyLnB1c2goe1xyXG4gICAgICAgICAgICAgIHF1ZXN0aW9uOiBxdWVzdGlvbk1hcC5nZXQoZmllbGRWYWx1ZSksXHJcbiAgICAgICAgICAgICAgcXVlc3Rpb25LZXk6IGZpZWxkVmFsdWUsXHJcbiAgICAgICAgICAgIH0pO1xyXG4gICAgICAgICAgfVxyXG4gICAgICAgIH1cclxuICAgICAgICB0aGlzLmlzU2VjdXJpdHlRdWVzdGlvbkVuYWJsZWQgPSB0cnVlO1xyXG4gICAgICAgXHJcbiAgICAgIH0sXHJcbiAgICAgIChlcnIpID0+IHtcclxuICAgICAgICBjb25zb2xlLmVycm9yKCdFcnJvciBsb2FkaW5nIHNlY3VyaXR5IHF1ZXN0aW9uczonLCBlcnIpO1xyXG4gICAgICB9XHJcbiAgICApO1xyXG4gIH1cclxuXHJcbiAgZW5hYmxlTGV4aXNOZXhpcygpIHtcclxuICAgIHRoaXMudXRpbC5zaG93TG9hZGVyKCk7XHJcbiAgICB0aGlzLmlzQnV0dG9uRGlzYWJsZWQgPSB0cnVlO1xyXG4gICAgdGhpcy5pc1NlY3VyaXR5UXVlc3Rpb25FbmFibGVkID0gZmFsc2U7XHJcbiAgICB0aGlzLmxuLmlzTGV4aXNOZXhpc0lkUHJvb2ZpbmdFbmFibGVkV2l0aFVzZXJJZCh0aGlzLnVzZXJOYW1lKS5zdWJzY3JpYmUoKHJlcykgPT4ge1xyXG4gICAgICAvLyBJZiBsZXhpcy1uZXhpcyBpZCBwcm9vZmluZyBpcyBlbmFibGVkXHJcbiAgICAgIGlmIChyZXMpIHtcclxuICAgICAgICB0aGlzLmlzTGV4aXNOZXhpc1BvcHVwRW5hYmxlZCA9IHRydWU7XHJcbiAgICAgIH0gZWxzZSB7XHJcbiAgICAgICAgdGhpcy51dGlsLnNob3dFcnJvcihcIlRoZSBjbGFpbWFudCBhY2NvdW50IHdpdGggdXNlciBuYW1lXCIgKyB0aGlzLnVzZXJOYW1lICsgXCIgaGFzIGJlZW4gYmxvY2tlZC4gUGxlYXNlIGNvbnRhY3QgS0RPTC5cIilcclxuICAgICAgfVxyXG4gICAgfSk7XHJcbiAgICAvL3RoaXMub25DYW5jZWwuZW1pdCgpO1xyXG4gICAgLy8gdXNwcyByZWRpcmVjdCBjYWxsXHJcbiAgICAvL3RoaXMudHJpZ2dlclVkb2woKTtcclxuICB9XHJcblxyXG4gIHRyaWdnZXJVZG9sKCkge1xyXG4gICAgdGhpcy5vbkNhbmNlbC5lbWl0KCk7XHJcbiAgICB0aGlzLnV0aWwuaGlkZUxvYWRlcigpO1xyXG4gICAgY29uc29sZS5sb2coXCJ1c3BzIGlzIHRyaWdnZXJlZFwiKVxyXG4gICAgbG9jYWxTdG9yYWdlLnNldEl0ZW0oJ3VzZXJJZCcsIHRoaXMudXNlck5hbWUpO1xyXG4gICAgdGhpcy5scy5sb2dvdXQoKTtcclxuICAgIHNldFRpbWVvdXQoKCkgPT4gdGhpcy5yb3V0ZXIubmF2aWdhdGUoWycvdXNwcy1yZWRpcmVjdCcsIFwiXCJdKSwgMTAwMCk7XHJcbiAgfVxyXG5cclxuICBoYW5kbGVFcnJvcihlcnJvcikge1xyXG4gICAgaWYgKGVycm9yPy5lcnJvckNvZGUgPT0gJzQyMicpIHtcclxuICAgICAgdGhpcy5lcnJvclRleHQgPSBlcnJvci5tc2dbMF07XHJcbiAgICB9XHJcbiAgICB0aGlzLnNob3dFcnJvciA9IHRydWU7XHJcbiAgfVxyXG5cclxuICBzdWNjZXNzKG1zZykge1xyXG4gICAgdGhpcy5zaG93U3VjY2VzcyA9IHRydWU7XHJcbiAgfVxyXG5cclxuICBsb2dvdXQoKSB7XHJcbiAgICB0aGlzLm5hdi5uYXZpZ2F0ZVJvb3QoJy9sYW5kaW5nJyk7XHJcbiAgICB0aGlzLmxzLmxvZ291dCgpO1xyXG4gIH1cclxuXHJcbiAgZ2V0UGVyc29uYWxEZXRhaWxzKCkge1xyXG4gICAgdGhpcy5jcy5nZXRVc2VyUGVyc29uYWxEZXRhaWxzKCkuc3Vic2NyaWJlKHtcclxuICAgICAgbmV4dDogKHJlcykgPT4ge1xyXG4gICAgICAgIGlmIChyZXMpIHtcclxuICAgICAgICAgIHRoaXMudXNlclBlcnNvbmFsRGV0YWlsID0gcmVzO1xyXG4gICAgICAgIH0gZWxzZSB7XHJcbiAgICAgICAgICB0aGlzLnV0aWwuc2hvd0Vycm9yKFwiRmFpbGVkIHRvIGdldCB0aGUgdXNlciBpbmZvLlwiKTtcclxuICAgICAgICB9XHJcbiAgICAgIH0sXHJcbiAgICAgIGVycm9yOiAoZXJyKSA9PiB7XHJcbiAgICAgICAgLy8gTG9nIHRoZSBlcnJvciBmb3IgZGVidWdnaW5nIHB1cnBvc2VzXHJcbiAgICAgICAgY29uc29sZS5lcnJvcignRXJyb3IgZmV0Y2hpbmcgdXNlciBkZXRhaWxzOicsIGVycik7XHJcbiAgICAgICAgdGhpcy51dGlsLnNob3dFcnJvcihcIkFuIGVycm9yIG9jY3VycmVkIHdoaWxlIGZldGNoaW5nIHVzZXIgaW5mb3JtYXRpb24uXCIpO1xyXG4gICAgICB9XHJcbiAgICB9KTtcclxuICB9XHJcbiAgZ2V0U2VjUXVlc3Rpb25zUGF5bWVudE9wdGlvbnMoKXtcclxuICAgIGlmICh0aGlzLnNlbGVjdGVkID09PSAncGF5bWVudC1kZXRhaWxzJykgeyAgXHJcbiAgICAgICAgdGhpcy5pc1BheW1lbnRPcHRpb25EaXZFbmFibGVkPWZhbHNlOyAgIFxyXG4gICAgICAgICAgdGhpcy5jdXN0b21lckV2ZW50VHlwZSA9ICdhY2NvdW50JztcclxuICAgICAgICAgIHRoaXMudXRpbC5oaWRlTG9hZGVyKCk7ICAgICBcclxuICAgICAgICAgLy8gdGhpcy5pc0xleGlzTmV4aXNQcm9vZmVkV2l0aGluVHdlbnR5Rm91ckhvdXJzPXRydWU7ICAgICAgIFxyXG4gICAgICAgICAgICAgICAgICBpZih0aGlzLmlzTGV4aXNOZXhpc1Byb29mZWRXaXRoaW5Ud2VudHlGb3VySG91cnMpe1xyXG4gICAgICAgICAgICAgICAgICAgIHRoaXMuZ2V0QWxsU2VjdXJpdHlRdWVzdGlvbnMoKTtcclxuICAgICAgICAgICAgICAgICAgfWVsc2V7XHJcbiAgICAgICAgICAgICAgICAgICAgLy90aGlzLnNhdmVRdWVzdGlvbm5haXJlKCk7XHJcbiAgICAgICAgICAgICAgICAgICAgdGhpcy5pc1BheW1lbnRPcHRpb25EaXZFbmFibGVkPWZhbHNlO1xyXG4gICAgICAgICAgICAgICAgICAgIHRoaXMuaXNQYXltZW50T3B0aW9uUXVlc3Rpb25zRW5hYmxlZD10cnVlO1xyXG4gICAgICAgICAgICAgICAgICAgIFxyXG4gICAgICAgICAgICAgICAgICAgIFxyXG4gICAgICAgICAgICAgICAgICB9XHJcbiAgICAgICAgICAgICAgICB9XHJcbn1cclxuXHJcbiAgdmFsaWRhdGVOYW1lQ2hhbmdlKGZvcm1EYXRhOiBBcnJheTx7IGNvbnRyb2xOYW1lOiBzdHJpbmcsIGNvbnRyb2xWYWx1ZTogYW55IH0+KTogYm9vbGVhbiB7XHJcbiAgICBjb25zdCBrZXlzVG9DaGVjayA9IFsnZnN0bmFtZScsICdtaWRkbGVuYW1lJywgJ2xzdG5hbWUnXTtcclxuICBcclxuICAgIC8vIEl0ZXJhdGUgdGhyb3VnaCB0aGUgZm9ybSBkYXRhIGFuZCBjaGVjayBpZiB0aGUgY29udHJvbCBoYXMgY2hhbmdlZFxyXG4gICAgZm9yIChsZXQgaXRlbSBvZiBmb3JtRGF0YSkge1xyXG4gICAgICBjb25zdCBjb250cm9sTmFtZSA9IGl0ZW0uY29udHJvbE5hbWUudG9Mb3dlckNhc2UoKTtcclxuICAgICAgXHJcbiAgICAgIC8vIEZpbmQgdGhlIG1hdGNoaW5nIGtleSBpbiB0aGUgcmVzcG9uc2UgZGF0YVxyXG4gICAgICBjb25zdCBtYXRjaGVkS2V5ID0ga2V5c1RvQ2hlY2suZmluZChrZXkgPT4ga2V5LnRvTG93ZXJDYXNlKCkgPT09IGNvbnRyb2xOYW1lKTtcclxuICBcclxuICAgICAgaWYgKG1hdGNoZWRLZXkpIHtcclxuICAgICAgICAvLyBSZXRyaWV2ZSB0aGUgY3VycmVudCB2YWx1ZSBmcm9tIHRoZSB1c2VyIGRhdGEgYW5kIHRoZSBmb3JtIHZhbHVlXHJcbiAgICAgICAgY29uc3QgdXNlclBlcnNvblZhbHVlID0gdGhpcy51c2VyUGVyc29uYWxEZXRhaWwuZGF0YVttYXRjaGVkS2V5XTtcclxuICAgICAgICBjb25zdCBmb3JtQ29udHJvbFZhbHVlID0gaXRlbS5jb250cm9sVmFsdWU7XHJcbiAgICAgICAgXHJcbiAgICAgICAgLy8gQ2hlY2sgaWYgdmFsdWVzIGFyZSBudWxsLCB1bmRlZmluZWQsIG9yIGVtcHR5LCBvciBpZiB0aGV5IGRpZmZlciAoaWdub3JpbmcgY2FzZSlcclxuICAgICAgICBjb25zdCB1c2VySXNFbXB0eSA9IHRoaXMuaXNOdWxsT3JFbXB0eSh1c2VyUGVyc29uVmFsdWUpO1xyXG4gICAgICAgIGNvbnN0IGZvcm1Jc0VtcHR5ID0gdGhpcy5pc051bGxPckVtcHR5KGZvcm1Db250cm9sVmFsdWUpO1xyXG5cclxuICAgICAgICAvLyBDYXNlLWluc2Vuc2l0aXZlIGNvbXBhcmlzb24gb2YgdGhlIHZhbHVlc1xyXG4gICAgICAgIGlmICgodXNlcklzRW1wdHkgJiYgIWZvcm1Jc0VtcHR5KSB8fCAoIXVzZXJJc0VtcHR5ICYmIGZvcm1Jc0VtcHR5KSB8fFxyXG4gICAgICAgICAgICAodXNlclBlcnNvblZhbHVlICYmIGZvcm1Db250cm9sVmFsdWUgJiYgdXNlclBlcnNvblZhbHVlLnRvTG93ZXJDYXNlKCkgIT09IGZvcm1Db250cm9sVmFsdWUudG9Mb3dlckNhc2UoKSkpIHtcclxuICAgICAgICAgIC8vIElmIHZhbHVlcyBkaWZmZXIgKGlnbm9yaW5nIGNhc2UpLCByZXR1cm4gdHJ1ZSAoY2hhbmdlIGRldGVjdGVkKVxyXG4gICAgICAgICAgcmV0dXJuIHRydWU7XHJcbiAgICAgICAgfVxyXG4gICAgICB9XHJcbiAgICB9XHJcbiAgXHJcbiAgICAvLyBJZiBubyBkaWZmZXJlbmNlcyB3ZXJlIGZvdW5kLCByZXR1cm4gZmFsc2UgKG5vIGNoYW5nZXMpXHJcbiAgICByZXR1cm4gZmFsc2U7XHJcbiAgfVxyXG5cclxuICAvLyBVdGlsaXR5IG1ldGhvZCB0byBjaGVjayBmb3IgbnVsbCx1bmRlZmluZWQgIG9yIGVtcHR5IHN0cmluZ1xyXG4gIGlzTnVsbE9yRW1wdHkodmFsdWU6IGFueSk6IGJvb2xlYW4ge1xyXG4gICAgcmV0dXJuIHZhbHVlID09PSBudWxsIHx8IHZhbHVlID09PSBcIlwiIHx8IHZhbHVlID09PSB1bmRlZmluZWQ7XHJcbiAgfVxyXG5cclxuICBcclxuICBcclxufVxyXG4iLCI8cC1kaWFsb2cgdmlzaWJsZT1cInRydWVcIiBtb2RhbD1cInRydWVcIiBhcHBlbmRUbz1cImJvZHlcIiBbYnJlYWtwb2ludHNdPVwieycxMDI0cHgnOiAnNzV2dycsICc3NjhweCc6ICc4NXZ3JywgJzY0MHB4JzogJzEwMHZ3J31cIlxyXG4gICAgW3N0eWxlXT1cInt3aWR0aDogJzYwdncnfVwiIHBvc2l0aW9uPVwidG9wXCI+XHJcbiAgICA8bmctdGVtcGxhdGUgcFRlbXBsYXRlPVwiaGVhZGVyXCI+XHJcbiAgICAgICAgPGlvbi1ncmlkPlxyXG4gICAgICAgICAgICA8aW9uLXJvdz5cclxuICAgICAgICAgICAgICAgIDxpb24tY29sIGNsYXNzPVwiaW9uLXRleHQtbGVmdCBoZWFkaW5nXCIgc3R5bGU9XCJwYWRkaW5nLWxlZnQ6IDI0cHg7XCIgaWQ9XCJwZGlhbG9nLXRpdGxlXCI+XHJcbiAgICAgICAgICAgICAgICAgICAge3snaGVhZGVyLmFjY291bnQueW91ci5hY2NvdW50JyB8IHRyYW5zbGF0ZX19PHNwYW4gc3R5bGU9XCJmb250LXNpemU6IDE2cHg7XCI+KENJRFxyXG4gICAgICAgICAgICAgICAgICAgICAgICB7e2xzLmdldFVzZXIoKS5jbGFpbWFudElkfX0pPC9zcGFuPlxyXG4gICAgICAgICAgICAgICAgPC9pb24tY29sPlxyXG4gICAgICAgICAgICA8L2lvbi1yb3c+XHJcbiAgICAgICAgICAgIDxpb24tcm93PlxyXG4gICAgICAgICAgICAgICAgPGlvbi1jb2w+XHJcbiAgICAgICAgICAgICAgICAgICAgPHAtc2VsZWN0QnV0dG9uIHN0eWxlQ2xhc3M9XCJpb24tcGFkZGluZy1zdGFydFwiIFtvcHRpb25zXT1cInByb2ZpbGVPcHRzXCIgb3B0aW9uTGFiZWw9XCJ0ZXh0XCJcclxuICAgICAgICAgICAgICAgICAgICBvcHRpb25WYWx1ZT1cInZhbHVlXCIgWyhuZ01vZGVsKV09XCJzZWxlY3RlZFwiIChvbk9wdGlvbkNsaWNrKT1cIm9uVmFsdWVDaGFuZ2UoJGV2ZW50KVwiPlxyXG4gICAgICAgICAgICAgICAgPC9wLXNlbGVjdEJ1dHRvbj5cclxuICAgICAgICAgICAgICAgIDwvaW9uLWNvbD5cclxuICAgICAgICAgICAgPC9pb24tcm93PlxyXG4gICAgICAgIDwvaW9uLWdyaWQ+XHJcbiAgICA8L25nLXRlbXBsYXRlPiBcclxuIFxyXG4gICAgPGRpdiAqbmdJZj1cIiEoc2hvd1N1Y2Nlc3MgfHwgc2hvd0Vycm9yKVwiIHN0eWxlPVwibWFyZ2luLWxlZnQ6IC04cHg7XCI+XHJcbiAgICAgICAgPGRpdiAgKm5nSWY9XCJzZWxlY3RlZCA9PSAncGF5bWVudC1kZXRhaWxzJyAmJiAhaXNQYXltZW50T3B0aW9uUXVlc3Rpb25zRW5hYmxlZCAmJiBpc1BheW1lbnRPcHRpb25EaXZFbmFibGVkXCI+ICAgICAgICBcclxuICAgICAgICAgICAgICAgICAgICB7eyBnZXRTZWNRdWVzdGlvbnNQYXltZW50T3B0aW9ucygpIH19ICAgICAgICAgXHJcbiAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgPGFwcC1mb3JtLWJ1aWxkZXIgI2ZiICpuZ0lmPVwic2VsZWN0ZWQgPT0gJ3BlcnNvbmFsLWRldGFpbHMnXCIgW2Zsb3dLZXldPVwic2VsZWN0ZWRcIiBbc2hvd09ubHlRdWVzdGlvbl09XCJ0cnVlXCIgW2hpZGVIZWFkZXJdPVwidHJ1ZVwiIFtoaWRlRm9vdGVyXT1cInRydWVcIlxyXG4gICAgICAgICAgICBbc2l6ZVhzXT1cIjEyXCIgW3NpemVTbV09XCIxMlwiIFtzaXplTWRdPVwiMTJcIiBbc2l6ZUxnXT1cIjEyXCIgW3NpemVYbF09XCIxMlwiIFtvZmZzZXRYbF09XCIwXCIgW29mZnNldExnXT1cIjBcIiAob25FcnJvcik9XCJoYW5kbGVFcnJvcigkZXZlbnQpXCIgKG9uQ29tcGxldGUpPVwic3VjY2VzcygkZXZlbnQpXCI+XHJcbiAgICAgICAgPC9hcHAtZm9ybS1idWlsZGVyPlxyXG4gICAgICAgIDxhcHAtZm9ybS1idWlsZGVyICNmYiAqbmdJZj1cInNlbGVjdGVkID09ICdjb250YWN0LWRldGFpbHMnXCIgW2Zsb3dLZXldPVwic2VsZWN0ZWRcIiBbc2hvd09ubHlRdWVzdGlvbl09XCJ0cnVlXCIgW2hpZGVIZWFkZXJdPVwidHJ1ZVwiIFtoaWRlRm9vdGVyXT1cInRydWVcIlxyXG4gICAgICAgICAgICBbc2l6ZVhzXT1cIjEyXCIgW3NpemVTbV09XCIxMlwiIFtzaXplTWRdPVwiMTJcIiBbc2l6ZUxnXT1cIjEyXCIgW3NpemVYbF09XCIxMlwiIFtvZmZzZXRYbF09XCIwXCIgW29mZnNldExnXT1cIjBcIiAob25FcnJvcik9XCJoYW5kbGVFcnJvcigkZXZlbnQpXCIgKG9uQ29tcGxldGUpPVwic3VjY2VzcygkZXZlbnQpXCI+XHJcbiAgICAgICAgPC9hcHAtZm9ybS1idWlsZGVyPlxyXG4gICAgICAgIDxkaXYgICpuZ0lmPVwiKGlzUGF5bWVudE9wdGlvblF1ZXN0aW9uc0VuYWJsZWQpXCI+XHJcbiAgICAgICAgPGFwcC1mb3JtLWJ1aWxkZXIgI2ZiICpuZ0lmPVwic2VsZWN0ZWQgPT0gJ3BheW1lbnQtZGV0YWlscydcIiBbZmxvd0tleV09XCJzZWxlY3RlZFwiIFtzaG93T25seVF1ZXN0aW9uXT1cInRydWVcIiBbaGlkZUhlYWRlcl09XCJ0cnVlXCIgW2hpZGVGb290ZXJdPVwidHJ1ZVwiXHJcbiAgICAgICAgW3NpemVYc109XCIxMlwiIFtzaXplU21dPVwiMTJcIiBbc2l6ZU1kXT1cIjEyXCIgW3NpemVMZ109XCIxMlwiIFtzaXplWGxdPVwiMTJcIiBbb2Zmc2V0WGxdPVwiMFwiIFtvZmZzZXRMZ109XCIwXCIgKG9uRXJyb3IpPVwiaGFuZGxlRXJyb3IoJGV2ZW50KVwiIChvbkNvbXBsZXRlKT1cInN1Y2Nlc3MoJGV2ZW50KVwiPlxyXG4gICAgPC9hcHAtZm9ybS1idWlsZGVyPlxyXG4gICAgPC9kaXY+XHJcbiAgICA8L2Rpdj5cclxuICAgIDxkaXYgKm5nSWY9XCJzaG93U3VjY2Vzc1wiPlxyXG4gICAgICAgIDxkaXYgY2xhc3M9XCJpb24tdGV4dC1jZW50ZXIgaW9uLXBhZGRpbmctdG9wXCI+XHJcbiAgICAgICAgICAgIDxpb24taWNvbiBuYW1lPVwiY2hlY2ttYXJrLWNpcmNsZVwiIHN0eWxlPVwiZm9udC1zaXplOiA4MHB4OyBjb2xvcjogdmFyKC0taW9uLWNvbG9yLWdyZWVuKTtcIj48L2lvbi1pY29uPlxyXG4gICAgICAgICAgICA8aDE+e3snaGVhZGVyLmFjY291bnQuc2F2ZWQuc3VjY2Vzc2Z1bGx5JyB8IHRyYW5zbGF0ZX19PC9oMT5cclxuICAgICAgICA8L2Rpdj5cclxuICAgIDwvZGl2PlxyXG5cclxuICAgIDxkaXYgKm5nSWY9XCJzaG93RXJyb3JcIj5cclxuICAgICAgICA8ZGl2IGNsYXNzPVwiaW9uLXRleHQtY2VudGVyIGlvbi1wYWRkaW5nLXRvcFwiPlxyXG4gICAgICAgICAgICA8aW9uLWljb24gbmFtZT1cImNsb3NlLWNpcmNsZS1vdXRsaW5lXCIgc3R5bGU9XCJmb250LXNpemU6IDgwcHg7IGNvbG9yOiB2YXIoLS1pb24tY29sb3ItZGFuZ2VyKTtcIj48L2lvbi1pY29uPlxyXG4gICAgICAgICAgICA8aDE+e3tlcnJvclRleHQgPyBlcnJvclRleHQgOiAnaGVhZGVyLmFjY291bnQuY291bGQubm90LnByb2Nlc3MnIHwgdHJhbnNsYXRlfX08L2gxPlxyXG4gICAgICAgIDwvZGl2PlxyXG4gICAgPC9kaXY+XHJcbiAgICBcclxuICAgIDxuZy10ZW1wbGF0ZSBwVGVtcGxhdGU9XCJmb290ZXJcIj5cclxuICAgICAgICA8aW9uLWdyaWQ+XHJcbiAgICAgICAgICAgIDxpb24tcm93PlxyXG4gICAgICAgICAgICAgICAgPGlvbi1jb2wgY2xhc3M9XCJpb24tdGV4dC1sZWZ0XCIgc2l6ZT1cIjEyXCIgc2l6ZVhsPVwiNFwiIHNpemVMZz1cIjRcIiBzaXplTWQ9XCI1XCI+XHJcbiAgICAgICAgICAgICAgICAgICAgPGlvbi1idXR0b24gdGFiaW5kZXg9XCIwXCIgc2hhcGU9XCJyb3VuZFwiIGZpbGw9XCJvdXRsaW5lXCIgdHlwZT1cImJ1dHRvblwiIFtkaXNhYmxlZF09XCJpc0J1dHRvbkRpc2FibGVkXCIgKGNsaWNrKT1cImxvZ291dCgpXCIgKGtleWRvd24uZW50ZXIpPVwibG9nb3V0KClcIiBjbGFzcz1cImlvbkJ1dHRvblwiPnt7J2hlYWRlci5hY2NvdW50LmxvZ291dCcgfCB0cmFuc2xhdGV9fTwvaW9uLWJ1dHRvbj5cclxuICAgICAgICAgICAgICAgIDwvaW9uLWNvbD5cclxuICAgICAgICAgICAgICAgIDxpb24tY29sIGNsYXNzPVwiaW9uLXRleHQtcmlnaHRcIiBzaXplPVwiMTJcIiBzaXplWGw9XCI4XCIgc2l6ZUxnPVwiOFwiIHNpemVNZD1cIjdcIj5cclxuICAgICAgICAgICAgICAgICAgICA8aW9uLWJ1dHRvbiB0YWJpbmRleD1cIjBcIiBzaGFwZT1cInJvdW5kXCIgZmlsbD1cIm91dGxpbmVcIiB0eXBlPVwicmVzZXRcIiBbZGlzYWJsZWRdPVwiaXNCdXR0b25EaXNhYmxlZFwiIChjbGljayk9XCJjYW5jZWwoKVwiIChrZXlkb3duLmVudGVyKT1cImNhbmNlbCgpXCIgY2xhc3M9XCJpb25CdXR0b25cIj57eydoZWFkZXIuYWNjb3VudC5jbG9zZScgfCB0cmFuc2xhdGV9fTwvaW9uLWJ1dHRvbj5cclxuICAgICAgICAgICAgICAgICAgICA8aW9uLWJ1dHRvbiB0YWJpbmRleD1cIjBcIiBzaGFwZT1cInJvdW5kXCIgdHlwZT1cInN1Ym1pdFwiICBbZGlzYWJsZWRdPVwiaXNCdXR0b25EaXNhYmxlZFwiIChjbGljayk9XCJzYXZlKClcIiAoa2V5ZG93bi5lbnRlcik9XCJzYXZlKClcIiAqbmdJZj1cIiEoc2hvd1N1Y2Nlc3MgfHwgc2hvd0Vycm9yKVwiIGNsYXNzPVwiaW9uQnV0dG9uXCI+e3snaGVhZGVyLmFjY291bnQuc2F2ZScgfCB0cmFuc2xhdGV9fTwvaW9uLWJ1dHRvbj5cclxuICAgICAgICAgICAgICAgIDwvaW9uLWNvbD5cclxuICAgICAgICAgICAgPC9pb24tcm93PlxyXG4gICAgICAgIDwvaW9uLWdyaWQ+XHJcbiAgICA8L25nLXRlbXBsYXRlPlxyXG4gICAgPGFwcC1sZXhpcy1uZXhpcyAqbmdJZj1cImlzTGV4aXNOZXhpc1BvcHVwRW5hYmxlZFwiIFtkaXNwbGF5XT1cImlzTGV4aXNOZXhpc1BvcHVwRW5hYmxlZFwiIFt1c2VyTmFtZV0gPSAndGhpcy51c2VyTmFtZScgW2N1c3RvbWVyRXZlbnRUeXBlXSA9ICd0aGlzLmN1c3RvbWVyRXZlbnRUeXBlJyAoc3VjY2Vzcyk9XCJvblNlY3VyaXR5UXVlc3Rpb25TdWNjZXNzKClcIiAoZXJyb3IpPVwidHJpZ2dlclVkb2woKVwiICh1c3BzKT1cInRyaWdnZXJVZG9sKClcIj48L2FwcC1sZXhpcy1uZXhpcz5cclxuICAgIDwhLS0gVW5jb21tZW50IHRvIGVuYWJsZSBsZXhpcyAtIG5leGlzIC0tPlxyXG4gICAgPGFwcC1zZWN1cml0eS1xdWVzdGlvbiAqbmdJZj1cImlzU2VjdXJpdHlRdWVzdGlvbkVuYWJsZWRcIiBbZGlzcGxheV09XCJpc1NlY3VyaXR5UXVlc3Rpb25FbmFibGVkXCIgW3F1ZXN0aW9uc0FuZEFuc3dlcnNdPVwidXNlcnNRdWVzQW5kQW5zXCIgW3F1ZXN0aW9uc0FuZEtleXNPZlVzZXJdPVwibWFwcGVkS2V5c1F1ZXN0aW9uc0ZvclVzZXJcIiAoc3VjY2Vzcyk9XCJvblNlY3VyaXR5UXVlc3Rpb25TdWNjZXNzKClcIiAoY2xlYXIpPVwiZW5hYmxlTGV4aXNOZXhpcygpXCI+PC9hcHAtc2VjdXJpdHktcXVlc3Rpb24+XHJcbiAgICA8IS0tIENvbW1lbnQgd2hlbiBsZXhpcyBuZXhpcyBpcyBlbmFibGVkIC0tPlxyXG4gICAgPCEtLSA8YXBwLXNlY3VyaXR5LXF1ZXN0aW9uICpuZ0lmPVwiaXNTZWN1cml0eVF1ZXN0aW9uRW5hYmxlZFwiIFtkaXNwbGF5XT1cImlzU2VjdXJpdHlRdWVzdGlvbkVuYWJsZWRcIiBbcXVlc3Rpb25zQW5kQW5zd2Vyc109XCJ1c2Vyc1F1ZXNBbmRBbnNcIiBbcXVlc3Rpb25zQW5kS2V5c09mVXNlcl09XCJtYXBwZWRLZXlzUXVlc3Rpb25zRm9yVXNlclwiIChzdWNjZXNzKT1cIm9uU2VjdXJpdHlRdWVzdGlvblN1Y2Nlc3MoKVwiIChjbGVhcik9XCJ0cmlnZ2VyVWRvbCgpXCI+PC9hcHAtc2VjdXJpdHktcXVlc3Rpb24+IC0tPlxyXG4gICBcclxuPC9wLWRpYWxvZz4iXX0=
|