@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,350 @@
|
|
|
1
|
+
import { Component, Input } from '@angular/core';
|
|
2
|
+
import { LibConstants } from '../../models/LibConstants';
|
|
3
|
+
import { AccessibilityPolicyPage } from '../../pages/common/accessibility-policy/accessibility-policy.page';
|
|
4
|
+
import { PrivacyDisclaimerPage } from '../../pages/common/privacy-disclaimer/privacy-disclaimer.page';
|
|
5
|
+
import { SecurityPolicyPage } from '../../pages/common/security-policy/security-policy.page';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
import * as i1 from "@ionic/angular";
|
|
8
|
+
import * as i2 from "ngx-joyride";
|
|
9
|
+
import * as i3 from "../../services/util/util.service";
|
|
10
|
+
import * as i4 from "../../services/tour/tour.service";
|
|
11
|
+
import * as i5 from "../../services/login/login.service";
|
|
12
|
+
import * as i6 from "../../services/chatbot/chatbot.service";
|
|
13
|
+
import * as i7 from "../../services/logger/logger.service";
|
|
14
|
+
import * as i8 from "@angular/common";
|
|
15
|
+
import * as i9 from "primeng/tooltip";
|
|
16
|
+
import * as i10 from "@ngx-translate/core";
|
|
17
|
+
function FooterComponent_div_0_Template(rf, ctx) { if (rf & 1) {
|
|
18
|
+
i0.ɵɵelementStart(0, "div", 4)(1, "div", 5)(2, "div", 6)(3, "div", 7)(4, "div", 8)(5, "b");
|
|
19
|
+
i0.ɵɵtext(6, "Policies");
|
|
20
|
+
i0.ɵɵelementEnd();
|
|
21
|
+
i0.ɵɵelement(7, "br");
|
|
22
|
+
i0.ɵɵelementStart(8, "ul")(9, "li");
|
|
23
|
+
i0.ɵɵtext(10, "Follow us on social media or sign");
|
|
24
|
+
i0.ɵɵelement(11, "br");
|
|
25
|
+
i0.ɵɵtext(12, "up for email alerts.");
|
|
26
|
+
i0.ɵɵelementEnd()();
|
|
27
|
+
i0.ɵɵelementStart(13, "ul")(14, "li")(15, "a", 9);
|
|
28
|
+
i0.ɵɵelement(16, "img", 10);
|
|
29
|
+
i0.ɵɵelementEnd()();
|
|
30
|
+
i0.ɵɵelementStart(17, "li")(18, "a", 11);
|
|
31
|
+
i0.ɵɵelement(19, "img", 12);
|
|
32
|
+
i0.ɵɵelementEnd()();
|
|
33
|
+
i0.ɵɵelementStart(20, "li")(21, "a", 13);
|
|
34
|
+
i0.ɵɵelement(22, "img", 14);
|
|
35
|
+
i0.ɵɵelementEnd()()();
|
|
36
|
+
i0.ɵɵelementStart(23, "ul")(24, "li");
|
|
37
|
+
i0.ɵɵtext(25, "Copyright @ 2017");
|
|
38
|
+
i0.ɵɵelement(26, "br");
|
|
39
|
+
i0.ɵɵtext(27, " All rights reserved.");
|
|
40
|
+
i0.ɵɵelementEnd();
|
|
41
|
+
i0.ɵɵelementStart(28, "li");
|
|
42
|
+
i0.ɵɵtext(29);
|
|
43
|
+
i0.ɵɵelementEnd()()();
|
|
44
|
+
i0.ɵɵelementStart(30, "div", 15)(31, "b");
|
|
45
|
+
i0.ɵɵtext(32, "Find it by Topic");
|
|
46
|
+
i0.ɵɵelementEnd();
|
|
47
|
+
i0.ɵɵelement(33, "br");
|
|
48
|
+
i0.ɵɵelementStart(34, "ul")(35, "li")(36, "a", 16);
|
|
49
|
+
i0.ɵɵtext(37, "Child Labor Laws ");
|
|
50
|
+
i0.ɵɵelementEnd()();
|
|
51
|
+
i0.ɵɵelementStart(38, "li")(39, "a", 17);
|
|
52
|
+
i0.ɵɵtext(40, "Employment and Training Services");
|
|
53
|
+
i0.ɵɵelementEnd()();
|
|
54
|
+
i0.ɵɵelementStart(41, "li")(42, "a", 18);
|
|
55
|
+
i0.ɵɵtext(43, "Free Labor Posters");
|
|
56
|
+
i0.ɵɵelementEnd()();
|
|
57
|
+
i0.ɵɵelementStart(44, "li")(45, "a", 19);
|
|
58
|
+
i0.ɵɵtext(46, "Workplace Safety Consultations");
|
|
59
|
+
i0.ɵɵelementEnd()();
|
|
60
|
+
i0.ɵɵelementStart(47, "li")(48, "a", 20);
|
|
61
|
+
i0.ɵɵtext(49, "Labor Market Information");
|
|
62
|
+
i0.ɵɵelementEnd()();
|
|
63
|
+
i0.ɵɵelementStart(50, "li")(51, "a", 21);
|
|
64
|
+
i0.ɵɵtext(52, "Labor Laws");
|
|
65
|
+
i0.ɵɵelementEnd()();
|
|
66
|
+
i0.ɵɵelementStart(53, "li")(54, "a", 22);
|
|
67
|
+
i0.ɵɵtext(55, "Rehabilitation/Disability Services");
|
|
68
|
+
i0.ɵɵelementEnd()();
|
|
69
|
+
i0.ɵɵelementStart(56, "li")(57, "a", 23);
|
|
70
|
+
i0.ɵɵtext(58, "Unemployment Appeals ");
|
|
71
|
+
i0.ɵɵelementEnd()();
|
|
72
|
+
i0.ɵɵelementStart(59, "li")(60, "a", 24);
|
|
73
|
+
i0.ɵɵtext(61, "Unemployment Benefits");
|
|
74
|
+
i0.ɵɵelementEnd()();
|
|
75
|
+
i0.ɵɵelementStart(62, "li")(63, "a", 25);
|
|
76
|
+
i0.ɵɵtext(64, "Unemployment Rate");
|
|
77
|
+
i0.ɵɵelementEnd()();
|
|
78
|
+
i0.ɵɵelementStart(65, "li")(66, "a", 26);
|
|
79
|
+
i0.ɵɵtext(67, "Unemployment Tax ");
|
|
80
|
+
i0.ɵɵelementEnd()();
|
|
81
|
+
i0.ɵɵelementStart(68, "li")(69, "a", 27);
|
|
82
|
+
i0.ɵɵtext(70, "Work Permits");
|
|
83
|
+
i0.ɵɵelementEnd()()()();
|
|
84
|
+
i0.ɵɵelementStart(71, "div", 15)(72, "b");
|
|
85
|
+
i0.ɵɵtext(73, "Find it by Audience");
|
|
86
|
+
i0.ɵɵelementEnd();
|
|
87
|
+
i0.ɵɵelement(74, "br");
|
|
88
|
+
i0.ɵɵelementStart(75, "ul")(76, "li")(77, "a", 28);
|
|
89
|
+
i0.ɵɵtext(78, "Workers");
|
|
90
|
+
i0.ɵɵelementEnd()();
|
|
91
|
+
i0.ɵɵelementStart(79, "li")(80, "a", 29);
|
|
92
|
+
i0.ɵɵtext(81, "Job Seekers");
|
|
93
|
+
i0.ɵɵelementEnd()();
|
|
94
|
+
i0.ɵɵelementStart(82, "li")(83, "a", 30);
|
|
95
|
+
i0.ɵɵtext(84, "Employers / Businesses");
|
|
96
|
+
i0.ɵɵelementEnd()()()();
|
|
97
|
+
i0.ɵɵelementStart(85, "div", 15)(86, "b");
|
|
98
|
+
i0.ɵɵtext(87, "Find it by Agency");
|
|
99
|
+
i0.ɵɵelementEnd();
|
|
100
|
+
i0.ɵɵelement(88, "br");
|
|
101
|
+
i0.ɵɵelementStart(89, "ul")(90, "li")(91, "a", 31);
|
|
102
|
+
i0.ɵɵtext(92, "Bureau of Employment Services");
|
|
103
|
+
i0.ɵɵelementEnd()();
|
|
104
|
+
i0.ɵɵelementStart(93, "li")(94, "a", 32);
|
|
105
|
+
i0.ɵɵtext(95, "Bureau of Labor Standards");
|
|
106
|
+
i0.ɵɵelementEnd()();
|
|
107
|
+
i0.ɵɵelementStart(96, "li")(97, "a", 33);
|
|
108
|
+
i0.ɵɵtext(98, "Bureau of Rehabilitation Services");
|
|
109
|
+
i0.ɵɵelementEnd()();
|
|
110
|
+
i0.ɵɵelementStart(99, "li")(100, "a", 34);
|
|
111
|
+
i0.ɵɵtext(101, "Bureau of Unemployment Compensation");
|
|
112
|
+
i0.ɵɵelementEnd()();
|
|
113
|
+
i0.ɵɵelementStart(102, "li")(103, "a", 20);
|
|
114
|
+
i0.ɵɵtext(104, "Center for Workforce Research and Information");
|
|
115
|
+
i0.ɵɵelementEnd()()();
|
|
116
|
+
i0.ɵɵelement(105, "br");
|
|
117
|
+
i0.ɵɵelementStart(106, "ul")(107, "li");
|
|
118
|
+
i0.ɵɵtext(108, "The Department of Labor is an equal opportunity provider. Auxiliary aids and services are available to individuals with disabilities upon request.");
|
|
119
|
+
i0.ɵɵelementEnd()()();
|
|
120
|
+
i0.ɵɵelementStart(109, "div", 15)(110, "b");
|
|
121
|
+
i0.ɵɵtext(111, "Services");
|
|
122
|
+
i0.ɵɵelementEnd();
|
|
123
|
+
i0.ɵɵelement(112, "br");
|
|
124
|
+
i0.ɵɵelementStart(113, "ul")(114, "li")(115, "a", 35);
|
|
125
|
+
i0.ɵɵelement(116, "img", 36);
|
|
126
|
+
i0.ɵɵelementEnd()();
|
|
127
|
+
i0.ɵɵelementStart(117, "li")(118, "a", 37);
|
|
128
|
+
i0.ɵɵelement(119, "img", 38);
|
|
129
|
+
i0.ɵɵelementEnd()();
|
|
130
|
+
i0.ɵɵelementStart(120, "li")(121, "a", 39);
|
|
131
|
+
i0.ɵɵelement(122, "img", 40);
|
|
132
|
+
i0.ɵɵelementEnd()()()()()()()();
|
|
133
|
+
} if (rf & 2) {
|
|
134
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
|
135
|
+
i0.ɵɵadvance(29);
|
|
136
|
+
i0.ɵɵtextInterpolate1("Build No. ", ctx_r0.appVersion, "");
|
|
137
|
+
} }
|
|
138
|
+
function FooterComponent_div_1_a_6_Template(rf, ctx) { if (rf & 1) {
|
|
139
|
+
const _r7 = i0.ɵɵgetCurrentView();
|
|
140
|
+
i0.ɵɵelementStart(0, "a", 57);
|
|
141
|
+
i0.ɵɵlistener("keydown.enter", function FooterComponent_div_1_a_6_Template_a_keydown_enter_0_listener() { const restoredCtx = i0.ɵɵrestoreView(_r7); const footerLink_r5 = restoredCtx.$implicit; const ctx_r6 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r6.openPopup(footerLink_r5)); })("click", function FooterComponent_div_1_a_6_Template_a_click_0_listener() { const restoredCtx = i0.ɵɵrestoreView(_r7); const footerLink_r5 = restoredCtx.$implicit; const ctx_r8 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r8.openPopup(footerLink_r5)); });
|
|
142
|
+
i0.ɵɵtext(1);
|
|
143
|
+
i0.ɵɵpipe(2, "translate");
|
|
144
|
+
i0.ɵɵelementEnd();
|
|
145
|
+
} if (rf & 2) {
|
|
146
|
+
const footerLink_r5 = ctx.$implicit;
|
|
147
|
+
i0.ɵɵadvance(1);
|
|
148
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 1, footerLink_r5.name));
|
|
149
|
+
} }
|
|
150
|
+
function FooterComponent_div_1_Template(rf, ctx) { if (rf & 1) {
|
|
151
|
+
i0.ɵɵelementStart(0, "div", 6)(1, "div", 7)(2, "ion-footer", 41)(3, "ion-row")(4, "ion-col", 42)(5, "div", 43);
|
|
152
|
+
i0.ɵɵtemplate(6, FooterComponent_div_1_a_6_Template, 3, 3, "a", 44);
|
|
153
|
+
i0.ɵɵelementStart(7, "div", 45)(8, "a", 46);
|
|
154
|
+
i0.ɵɵelement(9, "i", 47);
|
|
155
|
+
i0.ɵɵelementEnd();
|
|
156
|
+
i0.ɵɵelementStart(10, "a", 48);
|
|
157
|
+
i0.ɵɵelement(11, "i", 49);
|
|
158
|
+
i0.ɵɵelementEnd();
|
|
159
|
+
i0.ɵɵelementStart(12, "a", 50);
|
|
160
|
+
i0.ɵɵelement(13, "i", 51);
|
|
161
|
+
i0.ɵɵelementEnd();
|
|
162
|
+
i0.ɵɵelementStart(14, "a", 52);
|
|
163
|
+
i0.ɵɵelement(15, "i", 53);
|
|
164
|
+
i0.ɵɵelementEnd();
|
|
165
|
+
i0.ɵɵelementStart(16, "a", 54);
|
|
166
|
+
i0.ɵɵelement(17, "i", 55);
|
|
167
|
+
i0.ɵɵelementEnd()();
|
|
168
|
+
i0.ɵɵelementStart(18, "ion-text");
|
|
169
|
+
i0.ɵɵtext(19);
|
|
170
|
+
i0.ɵɵpipe(20, "translate");
|
|
171
|
+
i0.ɵɵelementEnd();
|
|
172
|
+
i0.ɵɵelement(21, "br");
|
|
173
|
+
i0.ɵɵelementStart(22, "p", 56);
|
|
174
|
+
i0.ɵɵtext(23);
|
|
175
|
+
i0.ɵɵpipe(24, "translate");
|
|
176
|
+
i0.ɵɵelementEnd()()()()()()();
|
|
177
|
+
} if (rf & 2) {
|
|
178
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
|
179
|
+
i0.ɵɵadvance(6);
|
|
180
|
+
i0.ɵɵproperty("ngForOf", ctx_r1.footerLinks);
|
|
181
|
+
i0.ɵɵadvance(13);
|
|
182
|
+
i0.ɵɵtextInterpolate1("\u00A9\u00A0", i0.ɵɵpipeBind1(20, 4, "2024.kdol"), "");
|
|
183
|
+
i0.ɵɵadvance(4);
|
|
184
|
+
i0.ɵɵtextInterpolate2("", i0.ɵɵpipeBind1(24, 6, "Build No."), " ", ctx_r1.appVersion, "");
|
|
185
|
+
} }
|
|
186
|
+
function FooterComponent_ion_fab_2_ion_fab_button_4_Template(rf, ctx) { if (rf & 1) {
|
|
187
|
+
i0.ɵɵelementStart(0, "ion-fab-button", 65);
|
|
188
|
+
i0.ɵɵpipe(1, "translate");
|
|
189
|
+
i0.ɵɵelement(2, "ion-icon", 66);
|
|
190
|
+
i0.ɵɵelementEnd();
|
|
191
|
+
} if (rf & 2) {
|
|
192
|
+
i0.ɵɵpropertyInterpolate("pTooltip", i0.ɵɵpipeBind1(1, 1, "FAQ"));
|
|
193
|
+
} }
|
|
194
|
+
function FooterComponent_ion_fab_2_ion_fab_button_5_Template(rf, ctx) { if (rf & 1) {
|
|
195
|
+
i0.ɵɵelementStart(0, "ion-fab-button", 67);
|
|
196
|
+
i0.ɵɵpipe(1, "translate");
|
|
197
|
+
i0.ɵɵelement(2, "ion-icon", 66);
|
|
198
|
+
i0.ɵɵelementEnd();
|
|
199
|
+
} if (rf & 2) {
|
|
200
|
+
i0.ɵɵpropertyInterpolate("pTooltip", i0.ɵɵpipeBind1(1, 1, "FAQ"));
|
|
201
|
+
} }
|
|
202
|
+
function FooterComponent_ion_fab_2_ion_fab_button_6_Template(rf, ctx) { if (rf & 1) {
|
|
203
|
+
const _r14 = i0.ɵɵgetCurrentView();
|
|
204
|
+
i0.ɵɵelementStart(0, "ion-fab-button", 68);
|
|
205
|
+
i0.ɵɵlistener("click", function FooterComponent_ion_fab_2_ion_fab_button_6_Template_ion_fab_button_click_0_listener() { i0.ɵɵrestoreView(_r14); const ctx_r13 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r13.tour()); });
|
|
206
|
+
i0.ɵɵpipe(1, "translate");
|
|
207
|
+
i0.ɵɵelement(2, "ion-icon", 69);
|
|
208
|
+
i0.ɵɵelementEnd();
|
|
209
|
+
} if (rf & 2) {
|
|
210
|
+
i0.ɵɵpropertyInterpolate("pTooltip", i0.ɵɵpipeBind1(1, 1, "Screen Guide"));
|
|
211
|
+
} }
|
|
212
|
+
function FooterComponent_ion_fab_2_ion_fab_button_7_Template(rf, ctx) { if (rf & 1) {
|
|
213
|
+
const _r16 = i0.ɵɵgetCurrentView();
|
|
214
|
+
i0.ɵɵelementStart(0, "ion-fab-button", 68);
|
|
215
|
+
i0.ɵɵlistener("click", function FooterComponent_ion_fab_2_ion_fab_button_7_Template_ion_fab_button_click_0_listener() { i0.ɵɵrestoreView(_r16); const ctx_r15 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r15.initializeChatbot()); });
|
|
216
|
+
i0.ɵɵpipe(1, "translate");
|
|
217
|
+
i0.ɵɵelement(2, "ion-icon", 70);
|
|
218
|
+
i0.ɵɵelementEnd();
|
|
219
|
+
} if (rf & 2) {
|
|
220
|
+
i0.ɵɵpropertyInterpolate("pTooltip", i0.ɵɵpipeBind1(1, 1, "Chat with Sippi"));
|
|
221
|
+
} }
|
|
222
|
+
function FooterComponent_ion_fab_2_Template(rf, ctx) { if (rf & 1) {
|
|
223
|
+
i0.ɵɵelementStart(0, "ion-fab", 58)(1, "ion-fab-button", 59);
|
|
224
|
+
i0.ɵɵelement(2, "ion-icon", 60);
|
|
225
|
+
i0.ɵɵelementEnd();
|
|
226
|
+
i0.ɵɵelementStart(3, "ion-fab-list", 61);
|
|
227
|
+
i0.ɵɵtemplate(4, FooterComponent_ion_fab_2_ion_fab_button_4_Template, 3, 3, "ion-fab-button", 62)(5, FooterComponent_ion_fab_2_ion_fab_button_5_Template, 3, 3, "ion-fab-button", 63)(6, FooterComponent_ion_fab_2_ion_fab_button_6_Template, 3, 3, "ion-fab-button", 64)(7, FooterComponent_ion_fab_2_ion_fab_button_7_Template, 3, 3, "ion-fab-button", 64);
|
|
228
|
+
i0.ɵɵelementEnd()();
|
|
229
|
+
} if (rf & 2) {
|
|
230
|
+
const ctx_r2 = i0.ɵɵnextContext();
|
|
231
|
+
i0.ɵɵadvance(4);
|
|
232
|
+
i0.ɵɵproperty("ngIf", ctx_r2.util.getState() == "MS");
|
|
233
|
+
i0.ɵɵadvance(1);
|
|
234
|
+
i0.ɵɵproperty("ngIf", ctx_r2.util.getState() == "ME");
|
|
235
|
+
i0.ɵɵadvance(1);
|
|
236
|
+
i0.ɵɵproperty("ngIf", ctx_r2.stepCounts != 0);
|
|
237
|
+
i0.ɵɵadvance(1);
|
|
238
|
+
i0.ɵɵproperty("ngIf", ctx_r2.util.getState() == "MS" && ctx_r2.showChatbot);
|
|
239
|
+
} }
|
|
240
|
+
function FooterComponent_ion_fab_3_Template(rf, ctx) { if (rf & 1) {
|
|
241
|
+
const _r18 = i0.ɵɵgetCurrentView();
|
|
242
|
+
i0.ɵɵelementStart(0, "ion-fab", 71)(1, "ion-fab-button", 72);
|
|
243
|
+
i0.ɵɵlistener("click", function FooterComponent_ion_fab_3_Template_ion_fab_button_click_1_listener() { i0.ɵɵrestoreView(_r18); const ctx_r17 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r17.initializeChatbot()); });
|
|
244
|
+
i0.ɵɵpipe(2, "translate");
|
|
245
|
+
i0.ɵɵelement(3, "img", 73);
|
|
246
|
+
i0.ɵɵelementEnd()();
|
|
247
|
+
} if (rf & 2) {
|
|
248
|
+
i0.ɵɵadvance(1);
|
|
249
|
+
i0.ɵɵpropertyInterpolate("pTooltip", i0.ɵɵpipeBind1(2, 1, "Chat with Blue"));
|
|
250
|
+
} }
|
|
251
|
+
export class FooterComponent {
|
|
252
|
+
constructor(popup, joyride, util, tourService, ls, cs, log) {
|
|
253
|
+
this.popup = popup;
|
|
254
|
+
this.joyride = joyride;
|
|
255
|
+
this.util = util;
|
|
256
|
+
this.tourService = tourService;
|
|
257
|
+
this.ls = ls;
|
|
258
|
+
this.cs = cs;
|
|
259
|
+
this.log = log;
|
|
260
|
+
this.showHelp = false;
|
|
261
|
+
this.appVersion = LibConstants.appVersion;
|
|
262
|
+
this.showChatbot = (LibConstants.enableChatbot == 'true');
|
|
263
|
+
}
|
|
264
|
+
ngOnInit() {
|
|
265
|
+
this.tourService.getCurrentStepsCount().subscribe((value) => {
|
|
266
|
+
this.stepCounts = value;
|
|
267
|
+
});
|
|
268
|
+
if (localStorage.getItem("language") === "es") {
|
|
269
|
+
this.footerLinks = [{
|
|
270
|
+
name: 'Kansas Department of Labor',
|
|
271
|
+
url: 'https://www.dol.ks.gov/'
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
name: 'Seguridad de la Privacidad',
|
|
275
|
+
url: 'https://www.dol.ks.gov/labor-market-information/privacy-and-security'
|
|
276
|
+
}];
|
|
277
|
+
}
|
|
278
|
+
else {
|
|
279
|
+
this.footerLinks = [{
|
|
280
|
+
name: 'Kansas Department of Labor',
|
|
281
|
+
url: 'https://www.dol.ks.gov/'
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
name: 'Privacy Security',
|
|
285
|
+
url: 'https://www.dol.ks.gov/labor-market-information/privacy-and-security'
|
|
286
|
+
}];
|
|
287
|
+
}
|
|
288
|
+
}
|
|
289
|
+
tour() {
|
|
290
|
+
const allSteps = this.tourService.getSteps(this.stepCounts);
|
|
291
|
+
this.joyride.startTour({ steps: allSteps }).subscribe(step => {
|
|
292
|
+
}, error => {
|
|
293
|
+
}, () => {
|
|
294
|
+
});
|
|
295
|
+
}
|
|
296
|
+
async openPrivacyDisclaimer(event) {
|
|
297
|
+
const popover = await this.popup.create({
|
|
298
|
+
component: PrivacyDisclaimerPage,
|
|
299
|
+
translucent: true,
|
|
300
|
+
backdropDismiss: true,
|
|
301
|
+
cssClass: 'footer-popover',
|
|
302
|
+
});
|
|
303
|
+
return await popover.present();
|
|
304
|
+
}
|
|
305
|
+
async openSecurityDisclaimer(event) {
|
|
306
|
+
const popover = await this.popup.create({
|
|
307
|
+
component: SecurityPolicyPage,
|
|
308
|
+
translucent: true,
|
|
309
|
+
backdropDismiss: true,
|
|
310
|
+
cssClass: 'footer-popover',
|
|
311
|
+
});
|
|
312
|
+
return await popover.present();
|
|
313
|
+
}
|
|
314
|
+
async openAccessibilityDisclaimer(event) {
|
|
315
|
+
const popover = await this.popup.create({
|
|
316
|
+
component: AccessibilityPolicyPage,
|
|
317
|
+
translucent: true,
|
|
318
|
+
backdropDismiss: true,
|
|
319
|
+
cssClass: 'footer-popover',
|
|
320
|
+
});
|
|
321
|
+
return await popover.present();
|
|
322
|
+
}
|
|
323
|
+
openPopup(footerLink) {
|
|
324
|
+
window.open(`${footerLink.url}`, "_blank", `width=526, height=626`);
|
|
325
|
+
}
|
|
326
|
+
initializeChatbot() {
|
|
327
|
+
this.cs.initializeChatbot();
|
|
328
|
+
}
|
|
329
|
+
static { this.ɵfac = function FooterComponent_Factory(t) { return new (t || FooterComponent)(i0.ɵɵdirectiveInject(i1.PopoverController), i0.ɵɵdirectiveInject(i2.JoyrideService), i0.ɵɵdirectiveInject(i3.UtilService), i0.ɵɵdirectiveInject(i4.TourService), i0.ɵɵdirectiveInject(i5.LoginService), i0.ɵɵdirectiveInject(i6.ChatbotService), i0.ɵɵdirectiveInject(i7.LoggerService)); }; }
|
|
330
|
+
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: FooterComponent, selectors: [["app-footer"]], inputs: { showHelp: "showHelp" }, decls: 4, vars: 4, consts: [["class", "app-body", 4, "ngIf"], ["class", "app-footer", 4, "ngIf"], ["vertical", "bottom", "horizontal", "end", "slot", "fixed", "color", "success", "style", "position: fixed !important;", 4, "ngIf"], ["vertical", "bottom", "horizontal", "end", "edge", "", "slot", "fixed", "class", "me-chat-fab", 4, "ngIf"], [1, "app-body"], [1, "app-wrapper"], [1, "app-footer"], [1, "grid"], [1, "col-12", "lg:col-2", "md:col-2", "lg:col-offset-1", "md:col-offset-1"], ["href", "https://www.facebook.com/MaineDOL", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["src", "https://www.maine.gov/labor/images/facebook.jpg", "alt", "Follow us on Facebook", "width", "120", "height", "39"], ["href", "https://twitter.com/maine_labor", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["src", "https://www.maine.gov/labor/images/twitter.jpg", "alt", "Follow us on Twitter", "width", "120", "height", "39"], ["href", "https://public.govdelivery.com/accounts/MEDOL/subscriber/new", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["src", "https://www.maine.gov/labor/images/email.jpg", "alt", "Sign-up for Email Updates", "width", "120", "height", "39"], [1, "col-12", "lg:col-2", "md:col-2"], ["href", "http://www.maine.gov/labor/labor_laws/publications/minorsguide.html", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["href", "http://www.mainecareercenter.com", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["href", "http://www.maine.gov/labor/posters/index.html", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["href", "http://www.safetyworksmaine.com/consultations/", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["href", "http://www.maine.gov/labor/cwri/index.html", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["href", "http://www.maine.gov/labor/labor_laws/index.html", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["href", "http://www.maine.gov/rehab/", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["href", "http://www.maine.gov/labor/appeals/index.shtml", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["href", "http://www.maine.gov/labor/unemployment/benefits.html", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["href", "http://www.maine.gov/labor/cwri/laus.html", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["href", "http://www.maine.gov/labor/unemployment/tax.html", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["href", "http://www.maine.gov/labor/labor_laws/publications/minorsguide.html#Work", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["href", "https://www.maine.gov/labor/for_workers/", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["href", "https://www.maine.gov/labor/for_job_seekers/", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["href", "http://www.maine.gov/labor/for_employers/", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["href", "http://www.maine.gov/labor/bes/index.shtml", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["href", "http://www.maine.gov/labor/bls/index.shtml", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["href", "http://www.maine.gov/rehab", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["href", "http://www.maine.gov/labor/unemployment/index.html", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["href", "http://www.maine.gov/reemployme", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["src", "assets/icon/reme_footer.jpg", "alt", "File for Unemployment", "width", "150", "height", "31"], ["href", "http://www.mainecareercenter.gov", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["src", "https://www.maine.gov/labor/images/ccenterlogoamericanjobcenter2017.gif", "alt", "CareerCenter"], ["href", "http://www.safetyworksmaine.gov", "rel", "noreferrer noopener", "target", "_blank", 1, "ui-link", "ui-widget"], ["src", "https://www.maine.gov/labor/images/safetyworks.gif", "alt", "SafetyWorks!", "width", "150", "height", "80"], [1, "footer-copy"], ["size", "12"], [1, "footer-links", "ion-text-center", "footer-grid"], ["button", "", "tabindex", "0", "role", "button", "class", "ion-padding-start ion-padding-end ion-padding-bottom link", 3, "keydown.enter", "click", 4, "ngFor", "ngForOf"], [1, "social-media"], ["target", "_blank", "aria-label", "Visit Kansas Department Of Labor Facebook page", "href", "https://www.facebook.com/KansasDOL"], [1, "pi", "pi-facebook"], ["target", "_blank", "aria-label", "Visit Kansas Department Of Labor Twitter page", "href", "https://twitter.com/KansasDOL"], [1, "pi", "pi-twitter"], ["target", "_blank", "aria-label", "Visit Kansas Department Of Labor linkedin page", "href", "https://www.linkedin.com/company/kdol"], [1, "pi", "pi-linkedin"], ["target", "_blank", "aria-label", "Visit Kansas Department Of Labor Instagram page", "href", "https://www.instagram.com/ks_dol/"], [1, "pi", "pi-instagram"], ["target", "_blank", "aria-label", "Visit Kansas Department Of Labor Youtube channel", "href", "https://www.youtube.com/channel/UCNtiSdvj_w22SGaO7qsxMFg"], [1, "pi", "pi-youtube"], [2, "font-size", "x-small"], ["button", "", "tabindex", "0", "role", "button", 1, "ion-padding-start", "ion-padding-end", "ion-padding-bottom", "link", 3, "keydown.enter", "click"], ["vertical", "bottom", "horizontal", "end", "slot", "fixed", "color", "success", 2, "position", "fixed !important"], ["color", "success", "pTooltip", "Select for options to self-help", "tooltipPosition", "left"], ["name", "caret-up-circle-sharp"], ["side", "top"], ["tooltipPosition", "left", "color", "success", "rel", "noreferrer", "href", "https://mdes.ms.gov/unemployment-faqs/", "target", "_blank", 3, "pTooltip", 4, "ngIf"], ["tooltipPosition", "left", "color", "success", "rel", "noreferrer", "href", "https://www.maine.gov/labor/faqs.html", "target", "_blank", 3, "pTooltip", 4, "ngIf"], ["tooltipPosition", "left", "color", "success", 3, "pTooltip", "click", 4, "ngIf"], ["tooltipPosition", "left", "color", "success", "rel", "noreferrer", "href", "https://mdes.ms.gov/unemployment-faqs/", "target", "_blank", 3, "pTooltip"], ["name", "help-sharp"], ["tooltipPosition", "left", "color", "success", "rel", "noreferrer", "href", "https://www.maine.gov/labor/faqs.html", "target", "_blank", 3, "pTooltip"], ["tooltipPosition", "left", "color", "success", 3, "pTooltip", "click"], ["name", "eye-sharp"], ["name", "chatbubbles-sharp"], ["vertical", "bottom", "horizontal", "end", "edge", "", "slot", "fixed", 1, "me-chat-fab"], ["tooltipPosition", "left", 1, "me-chat-button", 3, "pTooltip", "click"], ["src", "assets/icon/me-chatbot-icon.svg", 2, "max-width", "95%"]], template: function FooterComponent_Template(rf, ctx) { if (rf & 1) {
|
|
331
|
+
i0.ɵɵtemplate(0, FooterComponent_div_0_Template, 123, 1, "div", 0)(1, FooterComponent_div_1_Template, 25, 8, "div", 1)(2, FooterComponent_ion_fab_2_Template, 8, 4, "ion-fab", 2)(3, FooterComponent_ion_fab_3_Template, 4, 3, "ion-fab", 3);
|
|
332
|
+
} if (rf & 2) {
|
|
333
|
+
i0.ɵɵproperty("ngIf", ctx.util.getState() == "ME");
|
|
334
|
+
i0.ɵɵadvance(1);
|
|
335
|
+
i0.ɵɵproperty("ngIf", ctx.util.getState() == "KS");
|
|
336
|
+
i0.ɵɵadvance(1);
|
|
337
|
+
i0.ɵɵproperty("ngIf", ctx.showHelp && !ctx.util.isState("me"));
|
|
338
|
+
i0.ɵɵadvance(1);
|
|
339
|
+
i0.ɵɵproperty("ngIf", ctx.showHelp && ctx.util.isState("me"));
|
|
340
|
+
} }, dependencies: [i1.IonCol, i1.IonFab, i1.IonFabButton, i1.IonFabList, i1.IonFooter, i1.IonIcon, i1.IonRow, i1.IonText, i8.NgForOf, i8.NgIf, i9.Tooltip, i10.TranslatePipe], styles: [".social-media[_ngcontent-%COMP%]{margin:10px 5px 0 0}.social-media[_ngcontent-%COMP%] ion-icon[_ngcontent-%COMP%], .social-media[_ngcontent-%COMP%] i[_ngcontent-%COMP%]{color:#fff;background-color:#00008b;height:24px;margin:4px;border-radius:4px;width:28px;padding:4px 2px;cursor:pointer}ion-chip[_ngcontent-%COMP%]{background:#3e465c}a[_ngcontent-%COMP%]{cursor:pointer;text-decoration:none}.white[_ngcontent-%COMP%]{color:#fff}.app-big-icon[_ngcontent-%COMP%]{font-size:20px}ion-toolbar[_ngcontent-%COMP%]{border-bottom-left-radius:5px!important;border-bottom-right-radius:5px!important}.app-body[_ngcontent-%COMP%]{padding:0}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-header[_ngcontent-%COMP%]{background:var(--ion-color-dark);background-size:cover;height:60px;position:relative}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-header[_ngcontent-%COMP%] .app-topbar[_ngcontent-%COMP%]{height:60px;padding:15px 150px;background-color:var(--ion-color-dark);position:fixed;z-index:100;width:100%;box-shadow:0 2px 6px #0000003d}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-header[_ngcontent-%COMP%] .app-topbar[_ngcontent-%COMP%]:after{content:\"\";display:table;clear:both}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-header[_ngcontent-%COMP%] .app-topbar[_ngcontent-%COMP%] img[_ngcontent-%COMP%]{height:30px;vertical-align:middle}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-header[_ngcontent-%COMP%] .app-topbar[_ngcontent-%COMP%] .app-title[_ngcontent-%COMP%]{color:#fff;font-size:24px;vertical-align:middle;margin-left:24px}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-header[_ngcontent-%COMP%] .app-topbar[_ngcontent-%COMP%] #app-menu-button[_ngcontent-%COMP%]{display:none;color:#fff;font-size:24px}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-header[_ngcontent-%COMP%] .app-topbar[_ngcontent-%COMP%] ul[_ngcontent-%COMP%]{list-style:none;float:right;margin:6px 0 0}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-header[_ngcontent-%COMP%] .app-topbar[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{display:inline-block;margin-left:36px}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-header[_ngcontent-%COMP%] .app-topbar[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] a[_ngcontent-%COMP%]{color:#dadada;transition:color .2s}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-header[_ngcontent-%COMP%] .app-topbar[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] a[_ngcontent-%COMP%]:hover{color:#ffb900}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-header[_ngcontent-%COMP%] .app-topbar[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%]:first-child{margin-left:0}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-header[_ngcontent-%COMP%] .app-header-content[_ngcontent-%COMP%]{padding:85px 0 0 150px}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-header[_ngcontent-%COMP%] .app-header-content[_ngcontent-%COMP%] h1[_ngcontent-%COMP%]{font-size:28px;font-weight:700;color:#fff;margin:0}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-header[_ngcontent-%COMP%] .app-header-content[_ngcontent-%COMP%] p[_ngcontent-%COMP%]{font-size:17px;color:#fff;margin:16px 0 32px;text-align:center}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-features[_ngcontent-%COMP%]{padding:12px 200px}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-features[_ngcontent-%COMP%] .feature-box[_ngcontent-%COMP%]{padding:12px;position:relative;border:1px solid rgba(218,218,218,.5);box-shadow:0 2px 16px #00000014;height:100%}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-features[_ngcontent-%COMP%] .feature-box[_ngcontent-%COMP%]:after{content:\"\";display:table;clear:both}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-features[_ngcontent-%COMP%] .feature-box[_ngcontent-%COMP%] img[_ngcontent-%COMP%]{width:32px;top:50%;left:24px;margin-top:-16px;position:absolute}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-features[_ngcontent-%COMP%] .feature-box[_ngcontent-%COMP%] > div[_ngcontent-%COMP%] h3[_ngcontent-%COMP%]{color:var(--ion-color-dark);margin:0 0 8px;text-align:center}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-features[_ngcontent-%COMP%] .feature-box[_ngcontent-%COMP%] > div[_ngcontent-%COMP%] p[_ngcontent-%COMP%]{margin:0;text-align:justify}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-news[_ngcontent-%COMP%]{background-color:#2e353a;padding:24px 12px;text-align:center}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-news[_ngcontent-%COMP%] h3[_ngcontent-%COMP%]{font-size:28px;color:#f8f8f8;font-weight:400;margin:0}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-news[_ngcontent-%COMP%] p[_ngcontent-%COMP%]{font-size:17px;color:#dadada;margin:16px 0 32px}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-services[_ngcontent-%COMP%]{background-color:#fff;padding:12px 200px}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-services[_ngcontent-%COMP%] .services-box[_ngcontent-%COMP%]{box-shadow:0 2px 16px #00000014;background-color:#fff;border:1px solid rgba(218,218,218,.5);height:100%}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-services[_ngcontent-%COMP%] .services-box[_ngcontent-%COMP%] .services-box-header[_ngcontent-%COMP%]{padding:12px;background-color:#feedbc;text-align:center}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-services[_ngcontent-%COMP%] .services-box[_ngcontent-%COMP%] .services-box-header[_ngcontent-%COMP%] h3[_ngcontent-%COMP%]{font-size:21px;color:var(--ion-color-dark);margin:0 0 4px}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-services[_ngcontent-%COMP%] .services-box[_ngcontent-%COMP%] .services-box-header[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{font-weight:700}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-services[_ngcontent-%COMP%] .services-box[_ngcontent-%COMP%] .services-box-content[_ngcontent-%COMP%]{padding:32px;position:relative;min-height:300px}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-services[_ngcontent-%COMP%] .services-box[_ngcontent-%COMP%] .services-box-content[_ngcontent-%COMP%] ul[_ngcontent-%COMP%]{list-style-type:none;margin:0;padding:0}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-services[_ngcontent-%COMP%] .services-box[_ngcontent-%COMP%] .services-box-content[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{padding-top:8px;padding-bottom:8px;font-size:16px}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-services[_ngcontent-%COMP%] .services-box[_ngcontent-%COMP%] .services-box-content[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] i[_ngcontent-%COMP%]{margin-right:8px;color:#61b5a1}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-services[_ngcontent-%COMP%] .services-box[_ngcontent-%COMP%] .services-box-content[_ngcontent-%COMP%] button[_ngcontent-%COMP%]{width:100px;position:absolute;bottom:32px;left:50%;margin-left:-50px}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-multimedia[_ngcontent-%COMP%]{background-color:#2e353a;padding:24px;color:var(--ion-color-primary);text-align:center}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-multimedia[_ngcontent-%COMP%] h3[_ngcontent-%COMP%]{font-size:28px;color:#f8f8f8;font-weight:400;margin:0}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-multimedia[_ngcontent-%COMP%] p[_ngcontent-%COMP%]{font-size:17px;color:#dadada;margin:16px 0 32px}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-multimedia[_ngcontent-%COMP%] .video-container[_ngcontent-%COMP%] iframe[_ngcontent-%COMP%]{width:560px;height:315px}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-footer[_ngcontent-%COMP%]{background-color:var(--ion-color-light-grey);padding:15px 70px 25px;font-size:12px}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-footer[_ngcontent-%COMP%] a[_ngcontent-%COMP%]{color:var(--ion-color-primary);transition:color .2s}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-footer[_ngcontent-%COMP%] a[_ngcontent-%COMP%]:hover{text-decoration:underline;text-underline-offset:3px}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-footer[_ngcontent-%COMP%] img[_ngcontent-%COMP%]{height:30px}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-footer[_ngcontent-%COMP%] h4[_ngcontent-%COMP%]{margin:0 0 12px;font-size:16px}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-footer[_ngcontent-%COMP%] ul[_ngcontent-%COMP%]{list-style-type:none;margin:0;padding:0}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-footer[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{padding:4px 0}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-footer[_ngcontent-%COMP%] i[_ngcontent-%COMP%]{font-size:24px;margin-right:8px}@media screen and (max-width: 64em){.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-header[_ngcontent-%COMP%]{height:auto}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-header[_ngcontent-%COMP%] .app-topbar[_ngcontent-%COMP%]{height:60px;padding:15px 24px}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-header[_ngcontent-%COMP%] .app-topbar[_ngcontent-%COMP%] #app-menu-button[_ngcontent-%COMP%]{display:block;float:right}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-header[_ngcontent-%COMP%] .app-topbar[_ngcontent-%COMP%] ul[_ngcontent-%COMP%]{display:none;animation-duration:.2s;position:fixed;margin:0;padding:16px 24px;top:61px;left:0;width:100%;z-index:100;background-color:#3a3e45;box-shadow:0 2px 10px #00000029}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-header[_ngcontent-%COMP%] .app-topbar[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{display:block;padding:8px 0;margin:0;font-size:16px}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-header[_ngcontent-%COMP%] .app-topbar[_ngcontent-%COMP%] ul.app-menu-active[_ngcontent-%COMP%]{display:block}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-header[_ngcontent-%COMP%] .app-header-content[_ngcontent-%COMP%]{padding:108px 24px;text-align:center}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-features[_ngcontent-%COMP%], .app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-services[_ngcontent-%COMP%]{padding:70px 24px}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-multimedia[_ngcontent-%COMP%] .video-container[_ngcontent-%COMP%] iframe[_ngcontent-%COMP%]{width:auto;height:auto}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-footer[_ngcontent-%COMP%]{text-align:center;padding:24px 0}.app-body[_ngcontent-%COMP%] .app-wrapper[_ngcontent-%COMP%] .app-footer[_ngcontent-%COMP%] h4[_ngcontent-%COMP%]{margin-top:12px}.app-body.app-body-block-scroll[_ngcontent-%COMP%]{overflow:hidden}}ion-footer[_ngcontent-%COMP%]{background:var(--ion-color-light-grey)!important;bottom:-10px}ion-toolbar[_ngcontent-%COMP%]{--background: var(--ion-color-light-grey) !important}ion-title[_ngcontent-%COMP%]{font-size:10pt;justify-content:center;margin-bottom:20px;display:inline-block}.footer-links[_ngcontent-%COMP%]{color:var(--ion-color-primary-shade)!important;font-size:.9rem}.footer-links[_ngcontent-%COMP%] .link[_ngcontent-%COMP%]{color:var(--ion-color-primary-shade)!important}@media (max-width: 576px){.footer-grid[_ngcontent-%COMP%]{display:grid}}@media (max-width: 768px){.footer-grid[_ngcontent-%COMP%]{display:grid}}"] }); }
|
|
341
|
+
}
|
|
342
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(FooterComponent, [{
|
|
343
|
+
type: Component,
|
|
344
|
+
args: [{ selector: 'app-footer', template: "<div class=\"app-body\" *ngIf=\"util.getState() == 'ME'\">\r\n <div class=\"app-wrapper\">\r\n <div class=\"app-footer\">\r\n <div class=\"grid\">\r\n <div class=\"col-12 lg:col-2 md:col-2 lg:col-offset-1 md:col-offset-1\">\r\n <b>Policies</b>\r\n <br/>\r\n <ul>\r\n <li>Follow us on social media or sign<br/>up for email alerts.</li>\r\n </ul>\r\n <ul>\r\n <li><a href=\"https://www.facebook.com/MaineDOL\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\"><img src=\"https://www.maine.gov/labor/images/facebook.jpg\" alt=\"Follow us on Facebook\" width=\"120\" height=\"39\"></a></li>\r\n <li><a href=\"https://twitter.com/maine_labor\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\"><img src=\"https://www.maine.gov/labor/images/twitter.jpg\" alt=\"Follow us on Twitter\" width=\"120\" height=\"39\"></a></li>\r\n <li><a href=\"https://public.govdelivery.com/accounts/MEDOL/subscriber/new\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\"><img src=\"https://www.maine.gov/labor/images/email.jpg\" alt=\"Sign-up for Email Updates\" width=\"120\" height=\"39\"></a></li>\r\n </ul>\r\n <ul>\r\n <li>Copyright @ 2017<br/>\r\n All rights reserved.</li>\r\n <li>Build No. {{appVersion}}</li>\r\n </ul>\r\n </div>\r\n\r\n <div class=\"col-12 lg:col-2 md:col-2\">\r\n <b>Find it by Topic</b>\r\n <br/>\r\n <ul>\r\n <li><a href=\"http://www.maine.gov/labor/labor_laws/publications/minorsguide.html\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\">Child Labor Laws </a>\r\n </li>\r\n <li><a href=\"http://www.mainecareercenter.com\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\">Employment and Training Services</a></li>\r\n <li><a href=\"http://www.maine.gov/labor/posters/index.html\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\">Free Labor Posters</a>\r\n </li>\r\n <li><a href=\"http://www.safetyworksmaine.com/consultations/\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\">Workplace Safety Consultations</a>\r\n </li>\r\n <li><a href=\"http://www.maine.gov/labor/cwri/index.html\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\">Labor Market Information</a>\r\n </li>\r\n <li><a href=\"http://www.maine.gov/labor/labor_laws/index.html\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\">Labor Laws</a>\r\n </li>\r\n <li><a href=\"http://www.maine.gov/rehab/\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\">Rehabilitation/Disability Services</a>\r\n </li>\r\n <li><a href=\"http://www.maine.gov/labor/appeals/index.shtml\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\">Unemployment Appeals </a>\r\n </li>\r\n <li><a href=\"http://www.maine.gov/labor/unemployment/benefits.html\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\">Unemployment Benefits</a>\r\n </li>\r\n <li><a href=\"http://www.maine.gov/labor/cwri/laus.html\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\">Unemployment Rate</a>\r\n </li>\r\n <li><a href=\"http://www.maine.gov/labor/unemployment/tax.html\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\">Unemployment Tax </a>\r\n </li>\r\n <li><a href=\"http://www.maine.gov/labor/labor_laws/publications/minorsguide.html#Work\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\">Work Permits</a>\r\n </li>\r\n </ul>\r\n </div>\r\n\r\n <div class=\"col-12 lg:col-2 md:col-2\">\r\n <b>Find it by Audience</b>\r\n <br/>\r\n <ul>\r\n <li><a href=\"https://www.maine.gov/labor/for_workers/\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\">Workers</a></li>\r\n\t\t\t\t\t\t<li><a href=\"https://www.maine.gov/labor/for_job_seekers/\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\">Job Seekers</a></li>\r\n <li><a href=\"http://www.maine.gov/labor/for_employers/\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\">Employers / Businesses</a></li>\r\n </ul>\r\n </div>\r\n\r\n <div class=\"col-12 lg:col-2 md:col-2\">\r\n <b>Find it by Agency</b>\r\n <br/>\r\n <ul>\r\n <li><a href=\"http://www.maine.gov/labor/bes/index.shtml\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\">Bureau of Employment Services</a></li>\r\n <li><a href=\"http://www.maine.gov/labor/bls/index.shtml\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\">Bureau of Labor Standards</a></li>\r\n <li><a href=\"http://www.maine.gov/rehab\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\">Bureau of Rehabilitation Services</a></li>\r\n <li><a href=\"http://www.maine.gov/labor/unemployment/index.html\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\">Bureau of Unemployment Compensation</a></li>\r\n <li><a href=\"http://www.maine.gov/labor/cwri/index.html\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\">Center for Workforce Research and Information</a></li>\r\n </ul>\r\n\r\n <br/>\r\n <ul>\r\n <li>The Department of Labor is an equal opportunity provider. Auxiliary aids and services are available to individuals with disabilities upon request.</li>\r\n </ul>\r\n </div>\r\n\r\n <div class=\"col-12 lg:col-2 md:col-2\">\r\n <b>Services</b>\r\n <br/>\r\n <ul>\r\n <li><a href=\"http://www.maine.gov/reemployme\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\"><img src=\"assets/icon/reme_footer.jpg\" alt=\"File for Unemployment\" width=\"150\" height=\"31\"></a></li>\r\n <li><a href=\"http://www.mainecareercenter.gov\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\"><img src=\"https://www.maine.gov/labor/images/ccenterlogoamericanjobcenter2017.gif\" alt=\"CareerCenter\"></a></li>\r\n <li><a href=\"http://www.safetyworksmaine.gov\" class=\"ui-link ui-widget\" rel=\"noreferrer noopener\" target=\"_blank\"><img src=\"https://www.maine.gov/labor/images/safetyworks.gif\" alt=\"SafetyWorks!\" width=\"150\" height=\"80\"></a></li>\r\n </ul>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n \r\n</div>\r\n\r\n<div class=\"app-footer\" *ngIf=\"util.getState() == 'KS'\">\r\n <div class=\"grid\">\r\n <ion-footer class=\"footer-copy\">\r\n <ion-row>\r\n <ion-col size=\"12\">\r\n <div class=\"footer-links ion-text-center footer-grid\" >\r\n <a button tabindex=\"0\" role=\"button\" (keydown.enter)=\"openPopup(footerLink)\" (click)=\"openPopup(footerLink)\" class=\"ion-padding-start ion-padding-end ion-padding-bottom link\" *ngFor=\"let footerLink of footerLinks\">{{footerLink.name | translate}}</a>\r\n <div class=\"social-media\">\r\n <a target=\"_blank\" aria-label=\"Visit Kansas Department Of Labor Facebook page\" href=\"https://www.facebook.com/KansasDOL\"><i class=\"pi pi-facebook\"></i></a>\r\n <a target=\"_blank\" aria-label=\"Visit Kansas Department Of Labor Twitter page\" href=\"https://twitter.com/KansasDOL\"><i class=\"pi pi-twitter\"></i></a>\r\n <a target=\"_blank\" aria-label=\"Visit Kansas Department Of Labor linkedin page\" href=\"https://www.linkedin.com/company/kdol\"><i class=\"pi pi-linkedin\"></i></a>\r\n <a target=\"_blank\" aria-label=\"Visit Kansas Department Of Labor Instagram page\" href=\"https://www.instagram.com/ks_dol/\"><i class=\"pi pi-instagram\"></i></a>\r\n <a target=\"_blank\" aria-label=\"Visit Kansas Department Of Labor Youtube channel\" href=\"https://www.youtube.com/channel/UCNtiSdvj_w22SGaO7qsxMFg\"><i class=\"pi pi-youtube\"></i></a>\r\n </div>\r\n <ion-text>© {{'2024.kdol' | translate}}</ion-text><br/>\r\n <p style=\"font-size: x-small;\">{{'Build No.' | translate}} {{appVersion}}</p>\r\n </div>\r\n </ion-col>\r\n </ion-row>\r\n </ion-footer>\r\n </div>\r\n</div>\r\n<!-- fab placed in the center of the content with a list on each side -->\r\n<ion-fab vertical=\"bottom\" horizontal=\"end\" slot=\"fixed\" color=\"success\" style=\"position: fixed !important;\" *ngIf=\"showHelp && !util.isState('me')\">\r\n <ion-fab-button color=\"success\" pTooltip=\"Select for options to self-help\" tooltipPosition=\"left\">\r\n <ion-icon name=\"caret-up-circle-sharp\"></ion-icon>\r\n </ion-fab-button>\r\n <ion-fab-list side=\"top\">\r\n <ion-fab-button pTooltip=\"{{'FAQ' | translate}}\" tooltipPosition=\"left\" color=\"success\" rel=\"noreferrer\" href=\"https://mdes.ms.gov/unemployment-faqs/\" target=\"_blank\" *ngIf=\"util.getState() == 'MS'\">\r\n <ion-icon name=\"help-sharp\"></ion-icon>\r\n </ion-fab-button>\r\n <ion-fab-button pTooltip=\"{{'FAQ' | translate}}\" tooltipPosition=\"left\" color=\"success\" rel=\"noreferrer\" href=\"https://www.maine.gov/labor/faqs.html\" target=\"_blank\" *ngIf=\"util.getState() == 'ME'\">\r\n <ion-icon name=\"help-sharp\"></ion-icon>\r\n </ion-fab-button>\r\n <ion-fab-button pTooltip=\"{{'Screen Guide' | translate}}\" tooltipPosition=\"left\" color=\"success\" (click)=\"tour()\" *ngIf=\"stepCounts!=0\">\r\n <ion-icon name=\"eye-sharp\"></ion-icon>\r\n </ion-fab-button>\r\n <ion-fab-button pTooltip=\"{{'Chat with Sippi' | translate}}\" tooltipPosition=\"left\" (click)=\"initializeChatbot()\" color=\"success\" *ngIf=\"util.getState() == 'MS' && showChatbot\">\r\n <ion-icon name=\"chatbubbles-sharp\"></ion-icon>\r\n </ion-fab-button>\r\n </ion-fab-list>\r\n</ion-fab>\r\n<ion-fab vertical=\"bottom\" horizontal=\"end\" edge slot=\"fixed\" class=\"me-chat-fab\" *ngIf=\"showHelp && util.isState('me')\">\r\n <ion-fab-button (click)=\"initializeChatbot()\" pTooltip=\"{{'Chat with Blue' | translate}}\" tooltipPosition=\"left\" class=\"me-chat-button\">\r\n <img src=\"assets/icon/me-chatbot-icon.svg\" style=\"max-width: 95%\"/>\r\n </ion-fab-button>\r\n</ion-fab>\r\n", styles: [".social-media{margin:10px 5px 0 0}.social-media ion-icon,.social-media i{color:#fff;background-color:#00008b;height:24px;margin:4px;border-radius:4px;width:28px;padding:4px 2px;cursor:pointer}ion-chip{background:#3e465c}a{cursor:pointer;text-decoration:none}.white{color:#fff}.app-big-icon{font-size:20px}ion-toolbar{border-bottom-left-radius:5px!important;border-bottom-right-radius:5px!important}.app-body{padding:0}.app-body .app-wrapper .app-header{background:var(--ion-color-dark);background-size:cover;height:60px;position:relative}.app-body .app-wrapper .app-header .app-topbar{height:60px;padding:15px 150px;background-color:var(--ion-color-dark);position:fixed;z-index:100;width:100%;box-shadow:0 2px 6px #0000003d}.app-body .app-wrapper .app-header .app-topbar:after{content:\"\";display:table;clear:both}.app-body .app-wrapper .app-header .app-topbar img{height:30px;vertical-align:middle}.app-body .app-wrapper .app-header .app-topbar .app-title{color:#fff;font-size:24px;vertical-align:middle;margin-left:24px}.app-body .app-wrapper .app-header .app-topbar #app-menu-button{display:none;color:#fff;font-size:24px}.app-body .app-wrapper .app-header .app-topbar ul{list-style:none;float:right;margin:6px 0 0}.app-body .app-wrapper .app-header .app-topbar ul li{display:inline-block;margin-left:36px}.app-body .app-wrapper .app-header .app-topbar ul li a{color:#dadada;transition:color .2s}.app-body .app-wrapper .app-header .app-topbar ul li a:hover{color:#ffb900}.app-body .app-wrapper .app-header .app-topbar ul li:first-child{margin-left:0}.app-body .app-wrapper .app-header .app-header-content{padding:85px 0 0 150px}.app-body .app-wrapper .app-header .app-header-content h1{font-size:28px;font-weight:700;color:#fff;margin:0}.app-body .app-wrapper .app-header .app-header-content p{font-size:17px;color:#fff;margin:16px 0 32px;text-align:center}.app-body .app-wrapper .app-features{padding:12px 200px}.app-body .app-wrapper .app-features .feature-box{padding:12px;position:relative;border:1px solid rgba(218,218,218,.5);box-shadow:0 2px 16px #00000014;height:100%}.app-body .app-wrapper .app-features .feature-box:after{content:\"\";display:table;clear:both}.app-body .app-wrapper .app-features .feature-box img{width:32px;top:50%;left:24px;margin-top:-16px;position:absolute}.app-body .app-wrapper .app-features .feature-box>div h3{color:var(--ion-color-dark);margin:0 0 8px;text-align:center}.app-body .app-wrapper .app-features .feature-box>div p{margin:0;text-align:justify}.app-body .app-wrapper .app-news{background-color:#2e353a;padding:24px 12px;text-align:center}.app-body .app-wrapper .app-news h3{font-size:28px;color:#f8f8f8;font-weight:400;margin:0}.app-body .app-wrapper .app-news p{font-size:17px;color:#dadada;margin:16px 0 32px}.app-body .app-wrapper .app-services{background-color:#fff;padding:12px 200px}.app-body .app-wrapper .app-services .services-box{box-shadow:0 2px 16px #00000014;background-color:#fff;border:1px solid rgba(218,218,218,.5);height:100%}.app-body .app-wrapper .app-services .services-box .services-box-header{padding:12px;background-color:#feedbc;text-align:center}.app-body .app-wrapper .app-services .services-box .services-box-header h3{font-size:21px;color:var(--ion-color-dark);margin:0 0 4px}.app-body .app-wrapper .app-services .services-box .services-box-header span{font-weight:700}.app-body .app-wrapper .app-services .services-box .services-box-content{padding:32px;position:relative;min-height:300px}.app-body .app-wrapper .app-services .services-box .services-box-content ul{list-style-type:none;margin:0;padding:0}.app-body .app-wrapper .app-services .services-box .services-box-content ul li{padding-top:8px;padding-bottom:8px;font-size:16px}.app-body .app-wrapper .app-services .services-box .services-box-content ul li i{margin-right:8px;color:#61b5a1}.app-body .app-wrapper .app-services .services-box .services-box-content button{width:100px;position:absolute;bottom:32px;left:50%;margin-left:-50px}.app-body .app-wrapper .app-multimedia{background-color:#2e353a;padding:24px;color:var(--ion-color-primary);text-align:center}.app-body .app-wrapper .app-multimedia h3{font-size:28px;color:#f8f8f8;font-weight:400;margin:0}.app-body .app-wrapper .app-multimedia p{font-size:17px;color:#dadada;margin:16px 0 32px}.app-body .app-wrapper .app-multimedia .video-container iframe{width:560px;height:315px}.app-body .app-wrapper .app-footer{background-color:var(--ion-color-light-grey);padding:15px 70px 25px;font-size:12px}.app-body .app-wrapper .app-footer a{color:var(--ion-color-primary);transition:color .2s}.app-body .app-wrapper .app-footer a:hover{text-decoration:underline;text-underline-offset:3px}.app-body .app-wrapper .app-footer img{height:30px}.app-body .app-wrapper .app-footer h4{margin:0 0 12px;font-size:16px}.app-body .app-wrapper .app-footer ul{list-style-type:none;margin:0;padding:0}.app-body .app-wrapper .app-footer ul li{padding:4px 0}.app-body .app-wrapper .app-footer i{font-size:24px;margin-right:8px}@media screen and (max-width: 64em){.app-body .app-wrapper .app-header{height:auto}.app-body .app-wrapper .app-header .app-topbar{height:60px;padding:15px 24px}.app-body .app-wrapper .app-header .app-topbar #app-menu-button{display:block;float:right}.app-body .app-wrapper .app-header .app-topbar ul{display:none;animation-duration:.2s;position:fixed;margin:0;padding:16px 24px;top:61px;left:0;width:100%;z-index:100;background-color:#3a3e45;box-shadow:0 2px 10px #00000029}.app-body .app-wrapper .app-header .app-topbar ul li{display:block;padding:8px 0;margin:0;font-size:16px}.app-body .app-wrapper .app-header .app-topbar ul.app-menu-active{display:block}.app-body .app-wrapper .app-header .app-header-content{padding:108px 24px;text-align:center}.app-body .app-wrapper .app-features,.app-body .app-wrapper .app-services{padding:70px 24px}.app-body .app-wrapper .app-multimedia .video-container iframe{width:auto;height:auto}.app-body .app-wrapper .app-footer{text-align:center;padding:24px 0}.app-body .app-wrapper .app-footer h4{margin-top:12px}.app-body.app-body-block-scroll{overflow:hidden}}ion-footer{background:var(--ion-color-light-grey)!important;bottom:-10px}ion-toolbar{--background: var(--ion-color-light-grey) !important}ion-title{font-size:10pt;justify-content:center;margin-bottom:20px;display:inline-block}.footer-links{color:var(--ion-color-primary-shade)!important;font-size:.9rem}.footer-links .link{color:var(--ion-color-primary-shade)!important}@media (max-width: 576px){.footer-grid{display:grid}}@media (max-width: 768px){.footer-grid{display:grid}}\n"] }]
|
|
345
|
+
}], () => [{ type: i1.PopoverController }, { type: i2.JoyrideService }, { type: i3.UtilService }, { type: i4.TourService }, { type: i5.LoginService }, { type: i6.ChatbotService }, { type: i7.LoggerService }], { showHelp: [{
|
|
346
|
+
type: Input,
|
|
347
|
+
args: ['showHelp']
|
|
348
|
+
}] }); })();
|
|
349
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(FooterComponent, { className: "FooterComponent", filePath: "lib\\components\\footer\\footer.component.ts", lineNumber: 19 }); })();
|
|
350
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9vdGVyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL25neC1yZXVzYS1hcHAtbGliL3NyYy9saWIvY29tcG9uZW50cy9mb290ZXIvZm9vdGVyLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL25neC1yZXVzYS1hcHAtbGliL3NyYy9saWIvY29tcG9uZW50cy9mb290ZXIvZm9vdGVyLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFVLE1BQU0sZUFBZSxDQUFDO0FBR3pELE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSwyQkFBMkIsQ0FBQztBQUN6RCxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsTUFBTSxtRUFBbUUsQ0FBQztBQUM1RyxPQUFPLEVBQUUscUJBQXFCLEVBQUUsTUFBTSwrREFBK0QsQ0FBQztBQUN0RyxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSx5REFBeUQsQ0FBQzs7Ozs7Ozs7Ozs7OztJQ043Riw4QkFBc0QsYUFBQSxhQUFBLGFBQUEsYUFBQSxRQUFBO0lBS3pDLHdCQUFRO0lBQUEsaUJBQUk7SUFDZixxQkFBSztJQUNMLDBCQUFJLFNBQUE7SUFDRSxrREFBaUM7SUFBQSxzQkFBSztJQUFBLHFDQUFvQjtJQUFBLGlCQUFLLEVBQUE7SUFFckUsMkJBQUksVUFBQSxZQUFBO0lBQ2tILDJCQUErRztJQUFBLGlCQUFJLEVBQUE7SUFDdk8sMkJBQUksYUFBQTtJQUE4RywyQkFBNkc7SUFBQSxpQkFBSSxFQUFBO0lBQ25PLDJCQUFJLGFBQUE7SUFBMkksMkJBQWdIO0lBQUEsaUJBQUksRUFBQSxFQUFBO0lBRXJRLDJCQUFJLFVBQUE7SUFDRSxpQ0FBb0I7SUFBQSxzQkFBSztJQUMzQixzQ0FBb0I7SUFBQSxpQkFBSztJQUMzQiwyQkFBSTtJQUFBLGFBQXdCO0lBQUEs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O1NBQzNCLENBQUMsQ0FBQztRQUVILE9BQU8sTUFBTSxPQUFPLENBQUMsT0FBTyxFQUFFLENBQUM7SUFDakMsQ0FBQztJQUVELFNBQVMsQ0FBQyxVQUFVO1FBQ2xCLE1BQU0sQ0FBQyxJQUFJLENBQUMsR0FBRyxVQUFVLENBQUMsR0FBRyxFQUFFLEVBQUUsUUFBUSxFQUFFLHVCQUF1QixDQUFDLENBQUM7SUFDdEUsQ0FBQztJQUVELGlCQUFpQjtRQUNmLElBQUksQ0FBQyxFQUFFLENBQUMsaUJBQWlCLEVBQUUsQ0FBQztJQUM5QixDQUFDO2dGQTFGVSxlQUFlO29FQUFmLGVBQWU7WUNsQjVCLGtFQTRGTSxvREFBQSwyREFBQSwyREFBQTs7WUE1RmlCLGtEQUE2QjtZQThGM0IsZUFBNkI7WUFBN0Isa0RBQTZCO1lBdUJ3RCxlQUFxQztZQUFyQyw4REFBcUM7WUFtQmhFLGVBQW9DO1lBQXBDLDZEQUFvQzs7O2lGRHRIMUcsZUFBZTtjQUwzQixTQUFTOzJCQUNFLFlBQVk7dU5BT2YsUUFBUTtrQkFEZCxLQUFLO21CQUFDLFVBQVU7O2tGQUZOLGVBQWUiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIElucHV0LCBPbkluaXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgUG9wb3ZlckNvbnRyb2xsZXIgfSBmcm9tICdAaW9uaWMvYW5ndWxhcic7XHJcbmltcG9ydCB7IEpveXJpZGVTZXJ2aWNlIH0gZnJvbSAnbmd4LWpveXJpZGUnO1xyXG5pbXBvcnQgeyBMaWJDb25zdGFudHMgfSBmcm9tICcuLi8uLi9tb2RlbHMvTGliQ29uc3RhbnRzJztcclxuaW1wb3J0IHsgQWNjZXNzaWJpbGl0eVBvbGljeVBhZ2UgfSBmcm9tICcuLi8uLi9wYWdlcy9jb21tb24vYWNjZXNzaWJpbGl0eS1wb2xpY3kvYWNjZXNzaWJpbGl0eS1wb2xpY3kucGFnZSc7XHJcbmltcG9ydCB7IFByaXZhY3lEaXNjbGFpbWVyUGFnZSB9IGZyb20gJy4uLy4uL3BhZ2VzL2NvbW1vbi9wcml2YWN5LWRpc2NsYWltZXIvcHJpdmFjeS1kaXNjbGFpbWVyLnBhZ2UnO1xyXG5pbXBvcnQgeyBTZWN1cml0eVBvbGljeVBhZ2UgfSBmcm9tICcuLi8uLi9wYWdlcy9jb21tb24vc2VjdXJpdHktcG9saWN5L3NlY3VyaXR5LXBvbGljeS5wYWdlJztcclxuaW1wb3J0IHsgQ2hhdGJvdFNlcnZpY2UgfSBmcm9tICcuLi8uLi9zZXJ2aWNlcy9jaGF0Ym90L2NoYXRib3Quc2VydmljZSc7XHJcbmltcG9ydCB7IExvZ2dlclNlcnZpY2UgfSBmcm9tICcuLi8uLi9zZXJ2aWNlcy9sb2dnZXIvbG9nZ2VyLnNlcnZpY2UnO1xyXG5pbXBvcnQgeyBMb2dpblNlcnZpY2UgfSBmcm9tICcuLi8uLi9zZXJ2aWNlcy9sb2dpbi9sb2dpbi5zZXJ2aWNlJztcclxuaW1wb3J0IHsgVG91clNlcnZpY2UgfSBmcm9tICcuLi8uLi9zZXJ2aWNlcy90b3VyL3RvdXIuc2VydmljZSc7XHJcbmltcG9ydCB7IFV0aWxTZXJ2aWNlIH0gZnJvbSAnLi4vLi4vc2VydmljZXMvdXRpbC91dGlsLnNlcnZpY2UnO1xyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgc2VsZWN0b3I6ICdhcHAtZm9vdGVyJyxcclxuICB0ZW1wbGF0ZVVybDogJy4vZm9vdGVyLmNvbXBvbmVudC5odG1sJyxcclxuICBzdHlsZVVybHM6IFsnLi9mb290ZXIuY29tcG9uZW50LmNzcyddXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBGb290ZXJDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xyXG5cclxuICBASW5wdXQoJ3Nob3dIZWxwJylcclxuICBwdWJsaWMgc2hvd0hlbHAgOiBib29sZWFuID0gZmFsc2U7XHJcblxyXG4gIHB1YmxpYyBzdGVwQ291bnRzO1xyXG5cclxuICBwdWJsaWMgYXBwVmVyc2lvbiA9IExpYkNvbnN0YW50cy5hcHBWZXJzaW9uO1xyXG4gIHB1YmxpYyBzaG93Q2hhdGJvdCA6IGJvb2xlYW4gPSAoTGliQ29uc3RhbnRzLmVuYWJsZUNoYXRib3QgPT0gJ3RydWUnKTtcclxuICBwdWJsaWMgZm9vdGVyTGlua3M6IEFycmF5PHtuYW1lOiBzdHJpbmcsIHVybDogc3RyaW5nfT5cclxuICBjb25zdHJ1Y3RvcihwdWJsaWMgcG9wdXA6IFBvcG92ZXJDb250cm9sbGVyLCBwcml2YXRlIGpveXJpZGU6IEpveXJpZGVTZXJ2aWNlLFxyXG4gICAgICAgICAgICAgIHB1YmxpYyB1dGlsOiBVdGlsU2VydmljZSwgcHVibGljIHRvdXJTZXJ2aWNlOiBUb3VyU2VydmljZSwgcHJpdmF0ZSBsczogTG9naW5TZXJ2aWNlLFxyXG4gICAgICAgICAgICAgIHByaXZhdGUgY3MgOiBDaGF0Ym90U2VydmljZSwgcHJpdmF0ZSBsb2c6IExvZ2dlclNlcnZpY2UpIHsgfVxyXG5cclxuICBuZ09uSW5pdCgpIHtcclxuICAgIHRoaXMudG91clNlcnZpY2UuZ2V0Q3VycmVudFN0ZXBzQ291bnQoKS5zdWJzY3JpYmUoKHZhbHVlKSA9PiB7XHJcbiAgICAgIHRoaXMuc3RlcENvdW50cyA9IHZhbHVlO1xyXG4gICAgfSk7XHJcbiAgICBpZihsb2NhbFN0b3JhZ2UuZ2V0SXRlbShcImxhbmd1YWdlXCIpID09PSBcImVzXCIpe1xyXG4gICAgICB0aGlzLmZvb3RlckxpbmtzID0gW3tcclxuICAgICAgICBuYW1lOiAnS2Fuc2FzIERlcGFydG1lbnQgb2YgTGFib3InLFxyXG4gICAgICAgIHVybCA6ICdodHRwczovL3d3dy5kb2wua3MuZ292LydcclxuICAgICAgfSxcclxuICAgICAge1xyXG4gICAgICAgIG5hbWU6ICdTZWd1cmlkYWQgZGUgbGEgUHJpdmFjaWRhZCcsXHJcbiAgICAgICAgdXJsIDogJ2h0dHBzOi8vd3d3LmRvbC5rcy5nb3YvbGFib3ItbWFya2V0LWluZm9ybWF0aW9uL3ByaXZhY3ktYW5kLXNlY3VyaXR5J1xyXG4gICAgICB9XTtcclxuICAgIH1lbHNlIHtcclxuICAgICAgdGhpcy5mb290ZXJMaW5rcyA9IFt7XHJcbiAgICAgICAgbmFtZTogJ0thbnNhcyBEZXBhcnRtZW50IG9mIExhYm9yJyxcclxuICAgICAgICB1cmwgOiAnaHR0cHM6Ly93d3cuZG9sLmtzLmdvdi8nXHJcbiAgICAgIH0sXHJcbiAgICAgIHtcclxuICAgICAgICBuYW1lOiAnUHJpdmFjeSBTZWN1cml0eScsXHJcbiAgICAgICAgdXJsIDogJ2h0dHBzOi8vd3d3LmRvbC5rcy5nb3YvbGFib3ItbWFya2V0LWluZm9ybWF0aW9uL3ByaXZhY3ktYW5kLXNlY3VyaXR5J1xyXG4gICAgICB9XTtcclxuICAgIH1cclxuICB9XHJcblxyXG4gIHRvdXIoKSB7XHJcbiAgICBjb25zdCBhbGxTdGVwcyA9IHRoaXMudG91clNlcnZpY2UuZ2V0U3RlcHModGhpcy5zdGVwQ291bnRzKTtcclxuICAgIHRoaXMuam95cmlkZS5zdGFydFRvdXIoICB7c3RlcHM6IGFsbFN0ZXBzfSkuc3Vic2NyaWJlKFxyXG4gICAgICBzdGVwID0+IHtcclxuICAgICAgfSxcclxuICAgICAgZXJyb3IgPT4ge1xyXG4gICAgICB9LFxyXG4gICAgICAoKSA9PiB7XHJcbiAgICAgIH1cclxuICApO1xyXG4gIH1cclxuXHJcbiAgYXN5bmMgb3BlblByaXZhY3lEaXNjbGFpbWVyKGV2ZW50KSB7XHJcbiAgICBjb25zdCBwb3BvdmVyID0gYXdhaXQgdGhpcy5wb3B1cC5jcmVhdGUoe1xyXG4gICAgICBjb21wb25lbnQ6IFByaXZhY3lEaXNjbGFpbWVyUGFnZSxcclxuICAgICAgdHJhbnNsdWNlbnQ6IHRydWUsXHJcbiAgICAgIGJhY2tkcm9wRGlzbWlzczogdHJ1ZSxcclxuICAgICAgY3NzQ2xhc3M6ICdmb290ZXItcG9wb3ZlcicsXHJcbiAgICB9KTtcclxuXHJcbiAgICByZXR1cm4gYXdhaXQgcG9wb3Zlci5wcmVzZW50KCk7XHJcbiAgfVxyXG5cclxuICBhc3luYyBvcGVuU2VjdXJpdHlEaXNjbGFpbWVyKGV2ZW50KSB7XHJcbiAgICBjb25zdCBwb3BvdmVyID0gYXdhaXQgdGhpcy5wb3B1cC5jcmVhdGUoe1xyXG4gICAgICBjb21wb25lbnQ6IFNlY3VyaXR5UG9saWN5UGFnZSxcclxuICAgICAgdHJhbnNsdWNlbnQ6IHRydWUsXHJcbiAgICAgIGJhY2tkcm9wRGlzbWlzczogdHJ1ZSxcclxuICAgICAgY3NzQ2xhc3M6ICdmb290ZXItcG9wb3ZlcicsXHJcbiAgICB9KTtcclxuXHJcbiAgICByZXR1cm4gYXdhaXQgcG9wb3Zlci5wcmVzZW50KCk7XHJcbiAgfVxyXG5cclxuICBhc3luYyBvcGVuQWNjZXNzaWJpbGl0eURpc2NsYWltZXIoZXZlbnQpIHtcclxuICAgIGNvbnN0IHBvcG92ZXIgPSBhd2FpdCB0aGlzLnBvcHVwLmNyZWF0ZSh7XHJcbiAgICAgIGNvbXBvbmVudDogQWNjZXNzaWJpbGl0eVBvbGljeVBhZ2UsXHJcbiAgICAgIHRyYW5zbHVjZW50OiB0cnVlLFxyXG4gICAgICBiYWNrZHJvcERpc21pc3M6IHRydWUsXHJcbiAgICAgIGNzc0NsYXNzOiAnZm9vdGVyLXBvcG92ZXInLFxyXG4gICAgfSk7XHJcblxyXG4gICAgcmV0dXJuIGF3YWl0IHBvcG92ZXIucHJlc2VudCgpO1xyXG4gIH1cclxuXHJcbiAgb3BlblBvcHVwKGZvb3Rlckxpbmspe1xyXG4gICAgd2luZG93Lm9wZW4oYCR7Zm9vdGVyTGluay51cmx9YCwgXCJfYmxhbmtcIiwgYHdpZHRoPTUyNiwgaGVpZ2h0PTYyNmApO1xyXG4gIH1cclxuXHJcbiAgaW5pdGlhbGl6ZUNoYXRib3QoKXtcclxuICAgIHRoaXMuY3MuaW5pdGlhbGl6ZUNoYXRib3QoKTtcclxuICB9XHJcblxyXG59XHJcbiIsIjxkaXYgY2xhc3M9XCJhcHAtYm9keVwiICpuZ0lmPVwidXRpbC5nZXRTdGF0ZSgpID09ICdNRSdcIj5cclxuICA8ZGl2IGNsYXNzPVwiYXBwLXdyYXBwZXJcIj5cclxuICAgIDxkaXYgY2xhc3M9XCJhcHAtZm9vdGVyXCI+XHJcbiAgICAgIDxkaXYgY2xhc3M9XCJncmlkXCI+XHJcbiAgICAgICAgPGRpdiBjbGFzcz1cImNvbC0xMiBsZzpjb2wtMiBtZDpjb2wtMiBsZzpjb2wtb2Zmc2V0LTEgbWQ6Y29sLW9mZnNldC0xXCI+XHJcbiAgICAgICAgICA8Yj5Qb2xpY2llczwvYj5cclxuICAgICAgICAgIDxici8+XHJcbiAgICAgICAgICA8dWw+XHJcbiAgICAgICAgICAgIDxsaT5Gb2xsb3cgdXMgb24gc29jaWFsIG1lZGlhIG9yIHNpZ248YnIvPnVwIGZvciBlbWFpbCBhbGVydHMuPC9saT5cclxuICAgICAgICAgIDwvdWw+XHJcbiAgICAgICAgICA8dWw+XHJcbiAgICAgICAgICAgIDxsaT48YSBocmVmPVwiaHR0cHM6Ly93d3cuZmFjZWJvb2suY29tL01haW5lRE9MXCIgY2xhc3M9XCJ1aS1saW5rIHVpLXdpZGdldFwiIHJlbD1cIm5vcmVmZXJyZXIgbm9vcGVuZXJcIiB0YXJnZXQ9XCJfYmxhbmtcIj48aW1nIHNyYz1cImh0dHBzOi8vd3d3Lm1haW5lLmdvdi9sYWJvci9pbWFnZXMvZmFjZWJvb2suanBnXCIgYWx0PVwiRm9sbG93IHVzIG9uIEZhY2Vib29rXCIgd2lkdGg9XCIxMjBcIiBoZWlnaHQ9XCIzOVwiPjwvYT48L2xpPlxyXG4gICAgICAgICAgICA8bGk+PGEgaHJlZj1cImh0dHBzOi8vdHdpdHRlci5jb20vbWFpbmVfbGFib3JcIiBjbGFzcz1cInVpLWxpbmsgdWktd2lkZ2V0XCIgcmVsPVwibm9yZWZlcnJlciBub29wZW5lclwiIHRhcmdldD1cIl9ibGFua1wiPjxpbWcgc3JjPVwiaHR0cHM6Ly93d3cubWFpbmUuZ292L2xhYm9yL2ltYWdlcy90d2l0dGVyLmpwZ1wiIGFsdD1cIkZvbGxvdyB1cyBvbiBUd2l0dGVyXCIgd2lkdGg9XCIxMjBcIiBoZWlnaHQ9XCIzOVwiPjwvYT48L2xpPlxyXG4gICAgICAgICAgICA8bGk+PGEgaHJlZj1cImh0dHBzOi8vcHVibGljLmdvdmRlbGl2ZXJ5LmNvbS9hY2NvdW50cy9NRURPTC9zdWJzY3JpYmVyL25ld1wiIGNsYXNzPVwidWktbGluayB1aS13aWRnZXRcIiByZWw9XCJub3JlZmVycmVyIG5vb3BlbmVyXCIgdGFyZ2V0PVwiX2JsYW5rXCI+PGltZyBzcmM9XCJodHRwczovL3d3dy5tYWluZS5nb3YvbGFib3IvaW1hZ2VzL2VtYWlsLmpwZ1wiIGFsdD1cIlNpZ24tdXAgZm9yIEVtYWlsIFVwZGF0ZXNcIiB3aWR0aD1cIjEyMFwiIGhlaWdodD1cIjM5XCI+PC9hPjwvbGk+XHJcbiAgICAgICAgICA8L3VsPlxyXG4gICAgICAgICAgPHVsPlxyXG4gICAgICAgICAgICA8bGk+Q29weXJpZ2h0ICYjNjQ7IDIwMTc8YnIvPlxyXG4gICAgICAgICAgICAgIEFsbCByaWdodHMgcmVzZXJ2ZWQuPC9saT5cclxuICAgICAgICAgICAgPGxpPkJ1aWxkIE5vLiB7e2FwcFZlcnNpb259fTwvbGk+XHJcbiAgICAgICAgICA8L3VsPlxyXG4gICAgICAgIDwvZGl2PlxyXG5cclxuICAgICAgICA8ZGl2IGNsYXNzPVwiY29sLTEyIGxnOmNvbC0yIG1kOmNvbC0yXCI+XHJcbiAgICAgICAgICA8Yj5GaW5kIGl0IGJ5IFRvcGljPC9iPlxyXG4gICAgICAgICAgPGJyLz5cclxuICAgICAgICAgIDx1bD5cclxuICAgICAgICAgICAgPGxpPjxhIGhyZWY9XCJodHRwOi8vd3d3Lm1haW5lLmdvdi9sYWJvci9sYWJvcl9sYXdzL3B1YmxpY2F0aW9ucy9taW5vcnNndWlkZS5odG1sXCIgY2xhc3M9XCJ1aS1saW5rIHVpLXdpZGdldFwiIHJlbD1cIm5vcmVmZXJyZXIgbm9vcGVuZXJcIiB0YXJnZXQ9XCJfYmxhbmtcIj5DaGlsZCBMYWJvciBMYXdzIDwvYT5cclxuICAgICAgICAgICAgPC9saT5cclxuICAgICAgICAgICAgPGxpPjxhIGhyZWY9XCJodHRwOi8vd3d3Lm1haW5lY2FyZWVyY2VudGVyLmNvbVwiIGNsYXNzPVwidWktbGluayB1aS13aWRnZXRcIiByZWw9XCJub3JlZmVycmVyIG5vb3BlbmVyXCIgdGFyZ2V0PVwiX2JsYW5rXCI+RW1wbG95bWVudCBhbmQgVHJhaW5pbmcgU2VydmljZXM8L2E+PC9saT5cclxuICAgICAgICAgICAgPGxpPjxhIGhyZWY9XCJodHRwOi8vd3d3Lm1haW5lLmdvdi9sYWJvci9wb3N0ZXJzL2luZGV4Lmh0bWxcIiBjbGFzcz1cInVpLWxpbmsgdWktd2lkZ2V0XCIgcmVsPVwibm9yZWZlcnJlciBub29wZW5lclwiIHRhcmdldD1cIl9ibGFua1wiPkZyZWUgTGFib3IgUG9zdGVyczwvYT5cclxuICAgICAgICAgICAgPC9saT5cclxuICAgICAgICAgICAgPGxpPjxhIGhyZWY9XCJodHRwOi8vd3d3LnNhZmV0eXdvcmtzbWFpbmUuY29tL2NvbnN1bHRhdGlvbnMvXCIgY2xhc3M9XCJ1aS1saW5rIHVpLXdpZGdldFwiIHJlbD1cIm5vcmVmZXJyZXIgbm9vcGVuZXJcIiB0YXJnZXQ9XCJfYmxhbmtcIj5Xb3JrcGxhY2UgU2FmZXR5ICAgQ29uc3VsdGF0aW9uczwvYT5cclxuICAgICAgICAgICAgPC9saT5cclxuICAgICAgICAgICAgPGxpPjxhIGhyZWY9XCJodHRwOi8vd3d3Lm1haW5lLmdvdi9sYWJvci9jd3JpL2luZGV4Lmh0bWxcIiBjbGFzcz1cInVpLWxpbmsgdWktd2lkZ2V0XCIgcmVsPVwibm9yZWZlcnJlciBub29wZW5lclwiIHRhcmdldD1cIl9ibGFua1wiPkxhYm9yIE1hcmtldCBJbmZvcm1hdGlvbjwvYT5cclxuICAgICAgICAgICAgPC9saT5cclxuICAgICAgICAgICAgPGxpPjxhIGhyZWY9XCJodHRwOi8vd3d3Lm1haW5lLmdvdi9sYWJvci9sYWJvcl9sYXdzL2luZGV4Lmh0bWxcIiBjbGFzcz1cInVpLWxpbmsgdWktd2lkZ2V0XCIgcmVsPVwibm9yZWZlcnJlciBub29wZW5lclwiIHRhcmdldD1cIl9ibGFua1wiPkxhYm9yIExhd3M8L2E+XHJcbiAgICAgICAgICAgIDwvbGk+XHJcbiAgICAgICAgICAgIDxsaT48YSBocmVmPVwiaHR0cDovL3d3dy5tYWluZS5nb3YvcmVoYWIvXCIgY2xhc3M9XCJ1aS1saW5rIHVpLXdpZGdldFwiIHJlbD1cIm5vcmVmZXJyZXIgbm9vcGVuZXJcIiB0YXJnZXQ9XCJfYmxhbmtcIj5SZWhhYmlsaXRhdGlvbi9EaXNhYmlsaXR5IFNlcnZpY2VzPC9hPlxyXG4gICAgICAgICAgICA8L2xpPlxyXG4gICAgICAgICAgICA8bGk+PGEgaHJlZj1cImh0dHA6Ly93d3cubWFpbmUuZ292L2xhYm9yL2FwcGVhbHMvaW5kZXguc2h0bWxcIiBjbGFzcz1cInVpLWxpbmsgdWktd2lkZ2V0XCIgcmVsPVwibm9yZWZlcnJlciBub29wZW5lclwiIHRhcmdldD1cIl9ibGFua1wiPlVuZW1wbG95bWVudCBBcHBlYWxzIDwvYT5cclxuICAgICAgICAgICAgPC9saT5cclxuICAgICAgICAgICAgPGxpPjxhIGhyZWY9XCJodHRwOi8vd3d3Lm1haW5lLmdvdi9sYWJvci91bmVtcGxveW1lbnQvYmVuZWZpdHMuaHRtbFwiIGNsYXNzPVwidWktbGluayB1aS13aWRnZXRcIiByZWw9XCJub3JlZmVycmVyIG5vb3BlbmVyXCIgdGFyZ2V0PVwiX2JsYW5rXCI+VW5lbXBsb3ltZW50IEJlbmVmaXRzPC9hPlxyXG4gICAgICAgICAgICA8L2xpPlxyXG4gICAgICAgICAgICA8bGk+PGEgaHJlZj1cImh0dHA6Ly93d3cubWFpbmUuZ292L2xhYm9yL2N3cmkvbGF1cy5odG1sXCIgY2xhc3M9XCJ1aS1saW5rIHVpLXdpZGdldFwiIHJlbD1cIm5vcmVmZXJyZXIgbm9vcGVuZXJcIiB0YXJnZXQ9XCJfYmxhbmtcIj5VbmVtcGxveW1lbnQgUmF0ZTwvYT5cclxuICAgICAgICAgICAgPC9saT5cclxuICAgICAgICAgICAgPGxpPjxhIGhyZWY9XCJodHRwOi8vd3d3Lm1haW5lLmdvdi9sYWJvci91bmVtcGxveW1lbnQvdGF4Lmh0bWxcIiBjbGFzcz1cInVpLWxpbmsgdWktd2lkZ2V0XCIgcmVsPVwibm9yZWZlcnJlciBub29wZW5lclwiIHRhcmdldD1cIl9ibGFua1wiPlVuZW1wbG95bWVudCBUYXggPC9hPlxyXG4gICAgICAgICAgICA8L2xpPlxyXG4gICAgICAgICAgICA8bGk+PGEgaHJlZj1cImh0dHA6Ly93d3cubWFpbmUuZ292L2xhYm9yL2xhYm9yX2xhd3MvcHVibGljYXRpb25zL21pbm9yc2d1aWRlLmh0bWwjV29ya1wiIGNsYXNzPVwidWktbGluayB1aS13aWRnZXRcIiByZWw9XCJub3JlZmVycmVyIG5vb3BlbmVyXCIgdGFyZ2V0PVwiX2JsYW5rXCI+V29yayBQZXJtaXRzPC9hPlxyXG4gICAgICAgICAgICA8L2xpPlxyXG4gICAgICAgICAgPC91bD5cclxuICAgICAgICA8L2Rpdj5cclxuXHJcbiAgICAgICAgPGRpdiBjbGFzcz1cImNvbC0xMiBsZzpjb2wtMiBtZDpjb2wtMlwiPlxyXG4gICAgICAgICAgPGI+RmluZCBpdCBieSBBdWRpZW5jZTwvYj5cclxuICAgICAgICAgIDxici8+XHJcbiAgICAgICAgICA8dWw+XHJcbiAgICAgICAgICAgIDxsaT48YSBocmVmPVwiaHR0cHM6Ly93d3cubWFpbmUuZ292L2xhYm9yL2Zvcl93b3JrZXJzL1wiIGNsYXNzPVwidWktbGluayB1aS13aWRnZXRcIiByZWw9XCJub3JlZmVycmVyIG5vb3BlbmVyXCIgdGFyZ2V0PVwiX2JsYW5rXCI+V29ya2VyczwvYT48L2xpPlxyXG5cdFx0XHRcdFx0XHQ8bGk+PGEgaHJlZj1cImh0dHBzOi8vd3d3Lm1haW5lLmdvdi9sYWJvci9mb3Jfam9iX3NlZWtlcnMvXCIgY2xhc3M9XCJ1aS1saW5rIHVpLXdpZGdldFwiIHJlbD1cIm5vcmVmZXJyZXIgbm9vcGVuZXJcIiB0YXJnZXQ9XCJfYmxhbmtcIj5Kb2IgU2Vla2VyczwvYT48L2xpPlxyXG4gICAgICAgICAgICA8bGk+PGEgaHJlZj1cImh0dHA6Ly93d3cubWFpbmUuZ292L2xhYm9yL2Zvcl9lbXBsb3llcnMvXCIgY2xhc3M9XCJ1aS1saW5rIHVpLXdpZGdldFwiIHJlbD1cIm5vcmVmZXJyZXIgbm9vcGVuZXJcIiB0YXJnZXQ9XCJfYmxhbmtcIj5FbXBsb3llcnMgLyBCdXNpbmVzc2VzPC9hPjwvbGk+XHJcbiAgICAgICAgICA8L3VsPlxyXG4gICAgICAgIDwvZGl2PlxyXG5cclxuICAgICAgICA8ZGl2IGNsYXNzPVwiY29sLTEyIGxnOmNvbC0yIG1kOmNvbC0yXCI+XHJcbiAgICAgICAgICA8Yj5GaW5kIGl0IGJ5IEFnZW5jeTwvYj5cclxuICAgICAgICAgIDxici8+XHJcbiAgICAgICAgICA8dWw+XHJcbiAgICAgICAgICAgIDxsaT48YSBocmVmPVwiaHR0cDovL3d3dy5tYWluZS5nb3YvbGFib3IvYmVzL2luZGV4LnNodG1sXCIgY2xhc3M9XCJ1aS1saW5rIHVpLXdpZGdldFwiIHJlbD1cIm5vcmVmZXJyZXIgbm9vcGVuZXJcIiB0YXJnZXQ9XCJfYmxhbmtcIj5CdXJlYXUgb2YgRW1wbG95bWVudCBTZXJ2aWNlczwvYT48L2xpPlxyXG4gICAgICAgICAgICA8bGk+PGEgaHJlZj1cImh0dHA6Ly93d3cubWFpbmUuZ292L2xhYm9yL2Jscy9pbmRleC5zaHRtbFwiIGNsYXNzPVwidWktbGluayB1aS13aWRnZXRcIiByZWw9XCJub3JlZmVycmVyIG5vb3BlbmVyXCIgdGFyZ2V0PVwiX2JsYW5rXCI+QnVyZWF1IG9mIExhYm9yIFN0YW5kYXJkczwvYT48L2xpPlxyXG4gICAgICAgICAgICA8bGk+PGEgaHJlZj1cImh0dHA6Ly93d3cubWFpbmUuZ292L3JlaGFiXCIgY2xhc3M9XCJ1aS1saW5rIHVpLXdpZGdldFwiIHJlbD1cIm5vcmVmZXJyZXIgbm9vcGVuZXJcIiB0YXJnZXQ9XCJfYmxhbmtcIj5CdXJlYXUgb2YgUmVoYWJpbGl0YXRpb24gU2VydmljZXM8L2E+PC9saT5cclxuICAgICAgICAgICAgPGxpPjxhIGhyZWY9XCJodHRwOi8vd3d3Lm1haW5lLmdvdi9sYWJvci91bmVtcGxveW1lbnQvaW5kZXguaHRtbFwiIGNsYXNzPVwidWktbGluayB1aS13aWRnZXRcIiByZWw9XCJub3JlZmVycmVyIG5vb3BlbmVyXCIgdGFyZ2V0PVwiX2JsYW5rXCI+QnVyZWF1IG9mIFVuZW1wbG95bWVudCBDb21wZW5zYXRpb248L2E+PC9saT5cclxuICAgICAgICAgICAgPGxpPjxhIGhyZWY9XCJodHRwOi8vd3d3Lm1haW5lLmdvdi9sYWJvci9jd3JpL2luZGV4Lmh0bWxcIiBjbGFzcz1cInVpLWxpbmsgdWktd2lkZ2V0XCIgcmVsPVwibm9yZWZlcnJlciBub29wZW5lclwiIHRhcmdldD1cIl9ibGFua1wiPkNlbnRlciBmb3IgV29ya2ZvcmNlIFJlc2VhcmNoIGFuZCBJbmZvcm1hdGlvbjwvYT48L2xpPlxyXG4gICAgICAgICAgPC91bD5cclxuXHJcbiAgICAgICAgICA8YnIvPlxyXG4gICAgICAgICAgPHVsPlxyXG4gICAgICAgICAgICA8bGk+VGhlIERlcGFydG1lbnQgb2YgTGFib3IgaXMgYW4gZXF1YWwgb3Bwb3J0dW5pdHkgcHJvdmlkZXIuIEF1eGlsaWFyeSBhaWRzIGFuZCBzZXJ2aWNlcyBhcmUgYXZhaWxhYmxlIHRvIGluZGl2aWR1YWxzIHdpdGggZGlzYWJpbGl0aWVzIHVwb24gcmVxdWVzdC48L2xpPlxyXG4gICAgICAgICAgPC91bD5cclxuICAgICAgICA8L2Rpdj5cclxuXHJcbiAgICAgICAgPGRpdiBjbGFzcz1cImNvbC0xMiBsZzpjb2wtMiBtZDpjb2wtMlwiPlxyXG4gICAgICAgICAgPGI+U2VydmljZXM8L2I+XHJcbiAgICAgICAgICA8YnIvPlxyXG4gICAgICAgICAgPHVsPlxyXG4gICAgICAgICAgICA8bGk+PGEgaHJlZj1cImh0dHA6Ly93d3cubWFpbmUuZ292L3JlZW1wbG95bWVcIiBjbGFzcz1cInVpLWxpbmsgdWktd2lkZ2V0XCIgcmVsPVwibm9yZWZlcnJlciBub29wZW5lclwiIHRhcmdldD1cIl9ibGFua1wiPjxpbWcgc3JjPVwiYXNzZXRzL2ljb24vcmVtZV9mb290ZXIuanBnXCIgYWx0PVwiRmlsZSBmb3IgVW5lbXBsb3ltZW50XCIgd2lkdGg9XCIxNTBcIiBoZWlnaHQ9XCIzMVwiPjwvYT48L2xpPlxyXG4gICAgICAgICAgICA8bGk+PGEgaHJlZj1cImh0dHA6Ly93d3cubWFpbmVjYXJlZXJjZW50ZXIuZ292XCIgY2xhc3M9XCJ1aS1saW5rIHVpLXdpZGdldFwiIHJlbD1cIm5vcmVmZXJyZXIgbm9vcGVuZXJcIiB0YXJnZXQ9XCJfYmxhbmtcIj48aW1nIHNyYz1cImh0dHBzOi8vd3d3Lm1haW5lLmdvdi9sYWJvci9pbWFnZXMvY2NlbnRlcmxvZ29hbWVyaWNhbmpvYmNlbnRlcjIwMTcuZ2lmXCIgYWx0PVwiQ2FyZWVyQ2VudGVyXCI+PC9hPjwvbGk+XHJcbiAgICAgICAgICAgIDxsaT48YSBocmVmPVwiaHR0cDovL3d3dy5zYWZldHl3b3Jrc21haW5lLmdvdlwiIGNsYXNzPVwidWktbGluayB1aS13aWRnZXRcIiByZWw9XCJub3JlZmVycmVyIG5vb3BlbmVyXCIgdGFyZ2V0PVwiX2JsYW5rXCI+PGltZyBzcmM9XCJodHRwczovL3d3dy5tYWluZS5nb3YvbGFib3IvaW1hZ2VzL3NhZmV0eXdvcmtzLmdpZlwiIGFsdD1cIlNhZmV0eVdvcmtzIVwiIHdpZHRoPVwiMTUwXCIgaGVpZ2h0PVwiODBcIj48L2E+PC9saT5cclxuICAgICAgICAgIDwvdWw+XHJcbiAgICAgICAgPC9kaXY+XHJcbiAgICAgIDwvZGl2PlxyXG4gICAgPC9kaXY+XHJcbiAgPC9kaXY+XHJcbiAgXHJcbjwvZGl2PlxyXG5cclxuPGRpdiBjbGFzcz1cImFwcC1mb290ZXJcIiAqbmdJZj1cInV0aWwuZ2V0U3RhdGUoKSA9PSAnS1MnXCI+XHJcbiAgPGRpdiBjbGFzcz1cImdyaWRcIj5cclxuICAgIDxpb24tZm9vdGVyIGNsYXNzPVwiZm9vdGVyLWNvcHlcIj5cclxuICAgICAgPGlvbi1yb3c+XHJcbiAgICAgICAgPGlvbi1jb2wgIHNpemU9XCIxMlwiPlxyXG4gICAgICAgICAgPGRpdiBjbGFzcz1cImZvb3Rlci1saW5rcyBpb24tdGV4dC1jZW50ZXIgZm9vdGVyLWdyaWRcIiA+XHJcbiAgICAgICAgICAgIDxhIGJ1dHRvbiB0YWJpbmRleD1cIjBcIiByb2xlPVwiYnV0dG9uXCIgKGtleWRvd24uZW50ZXIpPVwib3BlblBvcHVwKGZvb3RlckxpbmspXCIgKGNsaWNrKT1cIm9wZW5Qb3B1cChmb290ZXJMaW5rKVwiIGNsYXNzPVwiaW9uLXBhZGRpbmctc3RhcnQgaW9uLXBhZGRpbmctZW5kIGlvbi1wYWRkaW5nLWJvdHRvbSBsaW5rXCIgKm5nRm9yPVwibGV0IGZvb3Rlckxpbmsgb2YgZm9vdGVyTGlua3NcIj57e2Zvb3RlckxpbmsubmFtZSB8IHRyYW5zbGF0ZX19PC9hPlxyXG4gICAgICAgICAgICA8ZGl2IGNsYXNzPVwic29jaWFsLW1lZGlhXCI+XHJcbiAgICAgICAgICAgICAgPGEgdGFyZ2V0PVwiX2JsYW5rXCIgYXJpYS1sYWJlbD1cIlZpc2l0IEthbnNhcyBEZXBhcnRtZW50IE9mIExhYm9yIEZhY2Vib29rIHBhZ2VcIiBocmVmPVwiaHR0cHM6Ly93d3cuZmFjZWJvb2suY29tL0thbnNhc0RPTFwiPjxpIGNsYXNzPVwicGkgcGktZmFjZWJvb2tcIj48L2k+PC9hPlxyXG4gICAgICAgICAgICAgIDxhIHRhcmdldD1cIl9ibGFua1wiIGFyaWEtbGFiZWw9XCJWaXNpdCBLYW5zYXMgRGVwYXJ0bWVudCBPZiBMYWJvciBUd2l0dGVyIHBhZ2VcIiBocmVmPVwiaHR0cHM6Ly90d2l0dGVyLmNvbS9LYW5zYXNET0xcIj48aSBjbGFzcz1cInBpIHBpLXR3aXR0ZXJcIj48L2k+PC9hPlxyXG4gICAgICAgICAgICAgIDxhIHRhcmdldD1cIl9ibGFua1wiIGFyaWEtbGFiZWw9XCJWaXNpdCBLYW5zYXMgRGVwYXJ0bWVudCBPZiBMYWJvciBsaW5rZWRpbiBwYWdlXCIgaHJlZj1cImh0dHBzOi8vd3d3LmxpbmtlZGluLmNvbS9jb21wYW55L2tkb2xcIj48aSBjbGFzcz1cInBpIHBpLWxpbmtlZGluXCI+PC9pPjwvYT5cclxuICAgICAgICAgICAgICA8YSB0YXJnZXQ9XCJfYmxhbmtcIiBhcmlhLWxhYmVsPVwiVmlzaXQgS2Fuc2FzIERlcGFydG1lbnQgT2YgTGFib3IgSW5zdGFncmFtIHBhZ2VcIiBocmVmPVwiaHR0cHM6Ly93d3cuaW5zdGFncmFtLmNvbS9rc19kb2wvXCI+PGkgY2xhc3M9XCJwaSBwaS1pbnN0YWdyYW1cIj48L2k+PC9hPlxyXG4gICAgICAgICAgICAgIDxhIHRhcmdldD1cIl9ibGFua1wiIGFyaWEtbGFiZWw9XCJWaXNpdCBLYW5zYXMgRGVwYXJ0bWVudCBPZiBMYWJvciBZb3V0dWJlIGNoYW5uZWxcIiBocmVmPVwiaHR0cHM6Ly93d3cueW91dHViZS5jb20vY2hhbm5lbC9VQ050aVNkdmpfdzIyU0dhTzdxc3hNRmdcIj48aSBjbGFzcz1cInBpIHBpLXlvdXR1YmVcIj48L2k+PC9hPlxyXG4gICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgPGlvbi10ZXh0PiZjb3B5OyZuYnNwO3t7JzIwMjQua2RvbCcgfCB0cmFuc2xhdGV9fTwvaW9uLXRleHQ+PGJyLz5cclxuICAgICAgICAgICAgPHAgc3R5bGU9XCJmb250LXNpemU6IHgtc21hbGw7XCI+e3snQnVpbGQgTm8uJyB8IHRyYW5zbGF0ZX19IHt7YXBwVmVyc2lvbn19PC9wPlxyXG4gICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgPC9pb24tY29sPlxyXG4gICAgICA8L2lvbi1yb3c+XHJcbiAgICA8L2lvbi1mb290ZXI+XHJcbiAgPC9kaXY+XHJcbjwvZGl2PlxyXG48IS0tIGZhYiBwbGFjZWQgaW4gdGhlIGNlbnRlciBvZiB0aGUgY29udGVudCB3aXRoIGEgbGlzdCBvbiBlYWNoIHNpZGUgLS0+XHJcbjxpb24tZmFiIHZlcnRpY2FsPVwiYm90dG9tXCIgaG9yaXpvbnRhbD1cImVuZFwiIHNsb3Q9XCJmaXhlZFwiIGNvbG9yPVwic3VjY2Vzc1wiIHN0eWxlPVwicG9zaXRpb246IGZpeGVkICFpbXBvcnRhbnQ7XCIgKm5nSWY9XCJzaG93SGVscCAmJiAhdXRpbC5pc1N0YXRlKCdtZScpXCI+XHJcbiAgPGlvbi1mYWItYnV0dG9uIGNvbG9yPVwic3VjY2Vzc1wiIHBUb29sdGlwPVwiU2VsZWN0IGZvciBvcHRpb25zIHRvIHNlbGYtaGVscFwiIHRvb2x0aXBQb3NpdGlvbj1cImxlZnRcIj5cclxuICAgIDxpb24taWNvbiBuYW1lPVwiY2FyZXQtdXAtY2lyY2xlLXNoYXJwXCI+PC9pb24taWNvbj5cclxuICA8L2lvbi1mYWItYnV0dG9uPlxyXG4gIDxpb24tZmFiLWxpc3Qgc2lkZT1cInRvcFwiPlxyXG4gICAgPGlvbi1mYWItYnV0dG9uIHBUb29sdGlwPVwie3snRkFRJyB8IHRyYW5zbGF0ZX19XCIgdG9vbHRpcFBvc2l0aW9uPVwibGVmdFwiIGNvbG9yPVwic3VjY2Vzc1wiIHJlbD1cIm5vcmVmZXJyZXJcIiBocmVmPVwiaHR0cHM6Ly9tZGVzLm1zLmdvdi91bmVtcGxveW1lbnQtZmFxcy9cIiB0YXJnZXQ9XCJfYmxhbmtcIiAqbmdJZj1cInV0aWwuZ2V0U3RhdGUoKSA9PSAnTVMnXCI+XHJcbiAgICAgIDxpb24taWNvbiBuYW1lPVwiaGVscC1zaGFycFwiPjwvaW9uLWljb24+XHJcbiAgICA8L2lvbi1mYWItYnV0dG9uPlxyXG4gICAgPGlvbi1mYWItYnV0dG9uIHBUb29sdGlwPVwie3snRkFRJyB8IHRyYW5zbGF0ZX19XCIgdG9vbHRpcFBvc2l0aW9uPVwibGVmdFwiIGNvbG9yPVwic3VjY2Vzc1wiIHJlbD1cIm5vcmVmZXJyZXJcIiBocmVmPVwiaHR0cHM6Ly93d3cubWFpbmUuZ292L2xhYm9yL2ZhcXMuaHRtbFwiIHRhcmdldD1cIl9ibGFua1wiICpuZ0lmPVwidXRpbC5nZXRTdGF0ZSgpID09ICdNRSdcIj5cclxuICAgICAgPGlvbi1pY29uIG5hbWU9XCJoZWxwLXNoYXJwXCI+PC9pb24taWNvbj5cclxuICAgIDwvaW9uLWZhYi1idXR0b24+XHJcbiAgICA8aW9uLWZhYi1idXR0b24gcFRvb2x0aXA9XCJ7eydTY3JlZW4gR3VpZGUnIHwgdHJhbnNsYXRlfX1cIiB0b29sdGlwUG9zaXRpb249XCJsZWZ0XCIgY29sb3I9XCJzdWNjZXNzXCIgKGNsaWNrKT1cInRvdXIoKVwiICpuZ0lmPVwic3RlcENvdW50cyE9MFwiPlxyXG4gICAgICA8aW9uLWljb24gbmFtZT1cImV5ZS1zaGFycFwiPjwvaW9uLWljb24+XHJcbiAgICA8L2lvbi1mYWItYnV0dG9uPlxyXG4gICAgPGlvbi1mYWItYnV0dG9uIHBUb29sdGlwPVwie3snQ2hhdCB3aXRoIFNpcHBpJyB8IHRyYW5zbGF0ZX19XCIgdG9vbHRpcFBvc2l0aW9uPVwibGVmdFwiIChjbGljayk9XCJpbml0aWFsaXplQ2hhdGJvdCgpXCIgY29sb3I9XCJzdWNjZXNzXCIgKm5nSWY9XCJ1dGlsLmdldFN0YXRlKCkgPT0gJ01TJyAmJiBzaG93Q2hhdGJvdFwiPlxyXG4gICAgICA8aW9uLWljb24gbmFtZT1cImNoYXRidWJibGVzLXNoYXJwXCI+PC9pb24taWNvbj5cclxuICAgIDwvaW9uLWZhYi1idXR0b24+XHJcbiAgPC9pb24tZmFiLWxpc3Q+XHJcbjwvaW9uLWZhYj5cclxuPGlvbi1mYWIgdmVydGljYWw9XCJib3R0b21cIiBob3Jpem9udGFsPVwiZW5kXCIgZWRnZSBzbG90PVwiZml4ZWRcIiBjbGFzcz1cIm1lLWNoYXQtZmFiXCIgKm5nSWY9XCJzaG93SGVscCAmJiB1dGlsLmlzU3RhdGUoJ21lJylcIj5cclxuICA8aW9uLWZhYi1idXR0b24gKGNsaWNrKT1cImluaXRpYWxpemVDaGF0Ym90KClcIiBwVG9vbHRpcD1cInt7J0NoYXQgd2l0aCBCbHVlJyB8IHRyYW5zbGF0ZX19XCIgdG9vbHRpcFBvc2l0aW9uPVwibGVmdFwiIGNsYXNzPVwibWUtY2hhdC1idXR0b25cIj5cclxuICAgIDxpbWcgc3JjPVwiYXNzZXRzL2ljb24vbWUtY2hhdGJvdC1pY29uLnN2Z1wiIHN0eWxlPVwibWF4LXdpZHRoOiA5NSVcIi8+XHJcbiAgPC9pb24tZmFiLWJ1dHRvbj5cclxuPC9pb24tZmFiPlxyXG4iXX0=
|